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

com.pulumi.azure.datafactory.inputs.IntegrationRuntimeSsisPipelineExternalComputeScaleArgs Maven / Gradle / Ivy

Go to download

A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.

There is a newer version: 6.10.0-alpha.1731737215
Show newest version
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***

package com.pulumi.azure.datafactory.inputs;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.Integer;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


public final class IntegrationRuntimeSsisPipelineExternalComputeScaleArgs extends com.pulumi.resources.ResourceArgs {

    public static final IntegrationRuntimeSsisPipelineExternalComputeScaleArgs Empty = new IntegrationRuntimeSsisPipelineExternalComputeScaleArgs();

    /**
     * Specifies the number of the external nodes, which should be greater than `0` and less than `11`.
     * 
     */
    @Import(name="numberOfExternalNodes")
    private @Nullable Output numberOfExternalNodes;

    /**
     * @return Specifies the number of the external nodes, which should be greater than `0` and less than `11`.
     * 
     */
    public Optional> numberOfExternalNodes() {
        return Optional.ofNullable(this.numberOfExternalNodes);
    }

    /**
     * Specifies the number of the pipeline nodes, which should be greater than `0` and less than `11`.
     * 
     */
    @Import(name="numberOfPipelineNodes")
    private @Nullable Output numberOfPipelineNodes;

    /**
     * @return Specifies the number of the pipeline nodes, which should be greater than `0` and less than `11`.
     * 
     */
    public Optional> numberOfPipelineNodes() {
        return Optional.ofNullable(this.numberOfPipelineNodes);
    }

    /**
     * Specifies the time to live (in minutes) setting of integration runtime which will execute copy activity. Possible values are at least `5`.
     * 
     */
    @Import(name="timeToLive")
    private @Nullable Output timeToLive;

    /**
     * @return Specifies the time to live (in minutes) setting of integration runtime which will execute copy activity. Possible values are at least `5`.
     * 
     */
    public Optional> timeToLive() {
        return Optional.ofNullable(this.timeToLive);
    }

    private IntegrationRuntimeSsisPipelineExternalComputeScaleArgs() {}

    private IntegrationRuntimeSsisPipelineExternalComputeScaleArgs(IntegrationRuntimeSsisPipelineExternalComputeScaleArgs $) {
        this.numberOfExternalNodes = $.numberOfExternalNodes;
        this.numberOfPipelineNodes = $.numberOfPipelineNodes;
        this.timeToLive = $.timeToLive;
    }

    public static Builder builder() {
        return new Builder();
    }
    public static Builder builder(IntegrationRuntimeSsisPipelineExternalComputeScaleArgs defaults) {
        return new Builder(defaults);
    }

    public static final class Builder {
        private IntegrationRuntimeSsisPipelineExternalComputeScaleArgs $;

        public Builder() {
            $ = new IntegrationRuntimeSsisPipelineExternalComputeScaleArgs();
        }

        public Builder(IntegrationRuntimeSsisPipelineExternalComputeScaleArgs defaults) {
            $ = new IntegrationRuntimeSsisPipelineExternalComputeScaleArgs(Objects.requireNonNull(defaults));
        }

        /**
         * @param numberOfExternalNodes Specifies the number of the external nodes, which should be greater than `0` and less than `11`.
         * 
         * @return builder
         * 
         */
        public Builder numberOfExternalNodes(@Nullable Output numberOfExternalNodes) {
            $.numberOfExternalNodes = numberOfExternalNodes;
            return this;
        }

        /**
         * @param numberOfExternalNodes Specifies the number of the external nodes, which should be greater than `0` and less than `11`.
         * 
         * @return builder
         * 
         */
        public Builder numberOfExternalNodes(Integer numberOfExternalNodes) {
            return numberOfExternalNodes(Output.of(numberOfExternalNodes));
        }

        /**
         * @param numberOfPipelineNodes Specifies the number of the pipeline nodes, which should be greater than `0` and less than `11`.
         * 
         * @return builder
         * 
         */
        public Builder numberOfPipelineNodes(@Nullable Output numberOfPipelineNodes) {
            $.numberOfPipelineNodes = numberOfPipelineNodes;
            return this;
        }

        /**
         * @param numberOfPipelineNodes Specifies the number of the pipeline nodes, which should be greater than `0` and less than `11`.
         * 
         * @return builder
         * 
         */
        public Builder numberOfPipelineNodes(Integer numberOfPipelineNodes) {
            return numberOfPipelineNodes(Output.of(numberOfPipelineNodes));
        }

        /**
         * @param timeToLive Specifies the time to live (in minutes) setting of integration runtime which will execute copy activity. Possible values are at least `5`.
         * 
         * @return builder
         * 
         */
        public Builder timeToLive(@Nullable Output timeToLive) {
            $.timeToLive = timeToLive;
            return this;
        }

        /**
         * @param timeToLive Specifies the time to live (in minutes) setting of integration runtime which will execute copy activity. Possible values are at least `5`.
         * 
         * @return builder
         * 
         */
        public Builder timeToLive(Integer timeToLive) {
            return timeToLive(Output.of(timeToLive));
        }

        public IntegrationRuntimeSsisPipelineExternalComputeScaleArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy