All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.cloudsnorkel.cdk.github.runners.Ec2Runner Maven / Gradle / Ivy

Go to download

CDK construct to create GitHub Actions self-hosted runners. A webhook listens to events and creates ephemeral runners on the fly.

There is a newer version: 0.14.6
Show newest version
package com.cloudsnorkel.cdk.github.runners;

/**
 * @deprecated use {@link Ec2RunnerProvider }
 */
@javax.annotation.Generated(value = "jsii-pacmak/1.103.1 (build bef2dea)", date = "2024-09-14T02:42:19.406Z")
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Deprecated)
@Deprecated
@software.amazon.jsii.Jsii(module = com.cloudsnorkel.cdk.github.runners.$Module.class, fqn = "@cloudsnorkel/cdk-github-runners.Ec2Runner")
public class Ec2Runner extends com.cloudsnorkel.cdk.github.runners.Ec2RunnerProvider {

    protected Ec2Runner(final software.amazon.jsii.JsiiObjectRef objRef) {
        super(objRef);
    }

    protected Ec2Runner(final software.amazon.jsii.JsiiObject.InitializationMode initializationMode) {
        super(initializationMode);
    }

    /**
     * @param scope This parameter is required.
     * @param id This parameter is required.
     * @param props
     */
    @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
    public Ec2Runner(final @org.jetbrains.annotations.NotNull software.constructs.Construct scope, final @org.jetbrains.annotations.NotNull java.lang.String id, final @org.jetbrains.annotations.Nullable com.cloudsnorkel.cdk.github.runners.Ec2RunnerProviderProps props) {
        super(software.amazon.jsii.JsiiObject.InitializationMode.JSII);
        software.amazon.jsii.JsiiEngine.getInstance().createNewObject(this, new Object[] { java.util.Objects.requireNonNull(scope, "scope is required"), java.util.Objects.requireNonNull(id, "id is required"), props });
    }

    /**
     * @param scope This parameter is required.
     * @param id This parameter is required.
     */
    @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
    public Ec2Runner(final @org.jetbrains.annotations.NotNull software.constructs.Construct scope, final @org.jetbrains.annotations.NotNull java.lang.String id) {
        super(software.amazon.jsii.JsiiObject.InitializationMode.JSII);
        software.amazon.jsii.JsiiEngine.getInstance().createNewObject(this, new Object[] { java.util.Objects.requireNonNull(scope, "scope is required"), java.util.Objects.requireNonNull(id, "id is required") });
    }

    /**
     * (experimental) A fluent builder for {@link com.cloudsnorkel.cdk.github.runners.Ec2Runner}.
     */
    @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
    public static final class Builder implements software.amazon.jsii.Builder {
        /**
         * @return a new instance of {@link Builder}.
         * @param scope This parameter is required.
         * @param id This parameter is required.
         */
        @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
        public static Builder create(final software.constructs.Construct scope, final java.lang.String id) {
            return new Builder(scope, id);
        }

        private final software.constructs.Construct scope;
        private final java.lang.String id;
        private com.cloudsnorkel.cdk.github.runners.Ec2RunnerProviderProps.Builder props;

        private Builder(final software.constructs.Construct scope, final java.lang.String id) {
            this.scope = scope;
            this.id = id;
        }

        /**
         * (experimental) The number of days log events are kept in CloudWatch Logs.
         * 

* When updating * this property, unsetting it doesn't remove the log retention policy. To * remove the retention policy, set the value to INFINITE. *

* Default: logs.RetentionDays.ONE_MONTH *

* @return {@code this} * @param logRetention The number of days log events are kept in CloudWatch Logs. This parameter is required. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public Builder logRetention(final software.amazon.awscdk.services.logs.RetentionDays logRetention) { this.props().logRetention(logRetention); return this; } /** * @return {@code this} * @deprecated use {@link retryOptions } on {@link GitHubRunners } instead * @param retryOptions This parameter is required. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Deprecated) @Deprecated public Builder retryOptions(final com.cloudsnorkel.cdk.github.runners.ProviderRetryOptions retryOptions) { this.props().retryOptions(retryOptions); return this; } /** * @return {@code this} * @deprecated use imageBuilder * @param amiBuilder This parameter is required. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Deprecated) @Deprecated public Builder amiBuilder(final com.cloudsnorkel.cdk.github.runners.IRunnerImageBuilder amiBuilder) { this.props().amiBuilder(amiBuilder); return this; } /** * (experimental) Runner image builder used to build AMI containing GitHub Runner and all requirements. *

* The image builder determines the OS and architecture of the runner. *

* Default: Ec2RunnerProvider.imageBuilder() *

* @return {@code this} * @param imageBuilder Runner image builder used to build AMI containing GitHub Runner and all requirements. This parameter is required. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public Builder imageBuilder(final com.cloudsnorkel.cdk.github.runners.IRunnerImageBuilder imageBuilder) { this.props().imageBuilder(imageBuilder); return this; } /** * (experimental) Instance type for launched runner instances. *

* Default: m6i.large *

* @return {@code this} * @param instanceType Instance type for launched runner instances. This parameter is required. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public Builder instanceType(final software.amazon.awscdk.services.ec2.InstanceType instanceType) { this.props().instanceType(instanceType); return this; } /** * (experimental) GitHub Actions labels used for this provider. *

* These labels are used to identify which provider should spawn a new on-demand runner. Every job sends a webhook with the labels it's looking for * based on runs-on. We match the labels from the webhook with the labels specified here. If all the labels specified here are present in the * job's labels, this provider will be chosen and spawn a new runner. *

* Default: ['ec2'] *

* @return {@code this} * @param labels GitHub Actions labels used for this provider. This parameter is required. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public Builder labels(final java.util.List labels) { this.props().labels(labels); return this; } /** * (deprecated) Security Group to assign to launched runner instances. *

* Default: a new security group *

* @return {@code this} * @deprecated use {@link securityGroups } * @param securityGroup Security Group to assign to launched runner instances. This parameter is required. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Deprecated) @Deprecated public Builder securityGroup(final software.amazon.awscdk.services.ec2.ISecurityGroup securityGroup) { this.props().securityGroup(securityGroup); return this; } /** * (experimental) Security groups to assign to launched runner instances. *

* Default: a new security group *

* @return {@code this} * @param securityGroups Security groups to assign to launched runner instances. This parameter is required. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public Builder securityGroups(final java.util.List securityGroups) { this.props().securityGroups(securityGroups); return this; } /** * (experimental) Use spot instances to save money. *

* Spot instances are cheaper but not always available and can be stopped prematurely. *

* Default: false *

* @return {@code this} * @param spot Use spot instances to save money. This parameter is required. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public Builder spot(final java.lang.Boolean spot) { this.props().spot(spot); return this; } /** * (experimental) Set a maximum price for spot instances. *

* Default: no max price (you will pay current spot price) *

* @return {@code this} * @param spotMaxPrice Set a maximum price for spot instances. This parameter is required. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public Builder spotMaxPrice(final java.lang.String spotMaxPrice) { this.props().spotMaxPrice(spotMaxPrice); return this; } /** * (experimental) Size of volume available for launched runner instances. *

* This modifies the boot volume size and doesn't add any additional volumes. *

* Default: 30GB *

* @return {@code this} * @param storageSize Size of volume available for launched runner instances. This parameter is required. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public Builder storageSize(final software.amazon.awscdk.Size storageSize) { this.props().storageSize(storageSize); return this; } /** * (deprecated) Subnet where the runner instances will be launched. *

* Default: default subnet of account's default VPC *

* @return {@code this} * @deprecated use {@link vpc } and {@link subnetSelection } * @param subnet Subnet where the runner instances will be launched. This parameter is required. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Deprecated) @Deprecated public Builder subnet(final software.amazon.awscdk.services.ec2.ISubnet subnet) { this.props().subnet(subnet); return this; } /** * (experimental) Where to place the network interfaces within the VPC. *

* Only the first matched subnet will be used. *

* Default: default VPC subnet *

* @return {@code this} * @param subnetSelection Where to place the network interfaces within the VPC. This parameter is required. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public Builder subnetSelection(final software.amazon.awscdk.services.ec2.SubnetSelection subnetSelection) { this.props().subnetSelection(subnetSelection); return this; } /** * (experimental) VPC where runner instances will be launched. *

* Default: default account VPC *

* @return {@code this} * @param vpc VPC where runner instances will be launched. This parameter is required. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public Builder vpc(final software.amazon.awscdk.services.ec2.IVpc vpc) { this.props().vpc(vpc); return this; } /** * @return a newly built instance of {@link com.cloudsnorkel.cdk.github.runners.Ec2Runner}. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) @Override public com.cloudsnorkel.cdk.github.runners.Ec2Runner build() { return new com.cloudsnorkel.cdk.github.runners.Ec2Runner( this.scope, this.id, this.props != null ? this.props.build() : null ); } private com.cloudsnorkel.cdk.github.runners.Ec2RunnerProviderProps.Builder props() { if (this.props == null) { this.props = new com.cloudsnorkel.cdk.github.runners.Ec2RunnerProviderProps.Builder(); } return this.props; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy