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

com.pulumi.azurenative.datafactory.inputs.ManagedIntegrationRuntimeArgs Maven / Gradle / Ivy

There is a newer version: 2.72.0
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.azurenative.datafactory.inputs;

import com.pulumi.azurenative.datafactory.inputs.IntegrationRuntimeComputePropertiesArgs;
import com.pulumi.azurenative.datafactory.inputs.IntegrationRuntimeCustomerVirtualNetworkArgs;
import com.pulumi.azurenative.datafactory.inputs.IntegrationRuntimeSsisPropertiesArgs;
import com.pulumi.azurenative.datafactory.inputs.ManagedVirtualNetworkReferenceArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.core.internal.Codegen;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


/**
 * Managed integration runtime, including managed elastic and managed dedicated integration runtimes.
 * 
 */
public final class ManagedIntegrationRuntimeArgs extends com.pulumi.resources.ResourceArgs {

    public static final ManagedIntegrationRuntimeArgs Empty = new ManagedIntegrationRuntimeArgs();

    /**
     * The compute resource for managed integration runtime.
     * 
     */
    @Import(name="computeProperties")
    private @Nullable Output computeProperties;

    /**
     * @return The compute resource for managed integration runtime.
     * 
     */
    public Optional> computeProperties() {
        return Optional.ofNullable(this.computeProperties);
    }

    /**
     * The name of virtual network to which Azure-SSIS integration runtime will join
     * 
     */
    @Import(name="customerVirtualNetwork")
    private @Nullable Output customerVirtualNetwork;

    /**
     * @return The name of virtual network to which Azure-SSIS integration runtime will join
     * 
     */
    public Optional> customerVirtualNetwork() {
        return Optional.ofNullable(this.customerVirtualNetwork);
    }

    /**
     * Integration runtime description.
     * 
     */
    @Import(name="description")
    private @Nullable Output description;

    /**
     * @return Integration runtime description.
     * 
     */
    public Optional> description() {
        return Optional.ofNullable(this.description);
    }

    /**
     * Managed Virtual Network reference.
     * 
     */
    @Import(name="managedVirtualNetwork")
    private @Nullable Output managedVirtualNetwork;

    /**
     * @return Managed Virtual Network reference.
     * 
     */
    public Optional> managedVirtualNetwork() {
        return Optional.ofNullable(this.managedVirtualNetwork);
    }

    /**
     * SSIS properties for managed integration runtime.
     * 
     */
    @Import(name="ssisProperties")
    private @Nullable Output ssisProperties;

    /**
     * @return SSIS properties for managed integration runtime.
     * 
     */
    public Optional> ssisProperties() {
        return Optional.ofNullable(this.ssisProperties);
    }

    /**
     * The type of integration runtime.
     * Expected value is 'Managed'.
     * 
     */
    @Import(name="type", required=true)
    private Output type;

    /**
     * @return The type of integration runtime.
     * Expected value is 'Managed'.
     * 
     */
    public Output type() {
        return this.type;
    }

    private ManagedIntegrationRuntimeArgs() {}

    private ManagedIntegrationRuntimeArgs(ManagedIntegrationRuntimeArgs $) {
        this.computeProperties = $.computeProperties;
        this.customerVirtualNetwork = $.customerVirtualNetwork;
        this.description = $.description;
        this.managedVirtualNetwork = $.managedVirtualNetwork;
        this.ssisProperties = $.ssisProperties;
        this.type = $.type;
    }

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

    public static final class Builder {
        private ManagedIntegrationRuntimeArgs $;

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

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

        /**
         * @param computeProperties The compute resource for managed integration runtime.
         * 
         * @return builder
         * 
         */
        public Builder computeProperties(@Nullable Output computeProperties) {
            $.computeProperties = computeProperties;
            return this;
        }

        /**
         * @param computeProperties The compute resource for managed integration runtime.
         * 
         * @return builder
         * 
         */
        public Builder computeProperties(IntegrationRuntimeComputePropertiesArgs computeProperties) {
            return computeProperties(Output.of(computeProperties));
        }

        /**
         * @param customerVirtualNetwork The name of virtual network to which Azure-SSIS integration runtime will join
         * 
         * @return builder
         * 
         */
        public Builder customerVirtualNetwork(@Nullable Output customerVirtualNetwork) {
            $.customerVirtualNetwork = customerVirtualNetwork;
            return this;
        }

        /**
         * @param customerVirtualNetwork The name of virtual network to which Azure-SSIS integration runtime will join
         * 
         * @return builder
         * 
         */
        public Builder customerVirtualNetwork(IntegrationRuntimeCustomerVirtualNetworkArgs customerVirtualNetwork) {
            return customerVirtualNetwork(Output.of(customerVirtualNetwork));
        }

        /**
         * @param description Integration runtime description.
         * 
         * @return builder
         * 
         */
        public Builder description(@Nullable Output description) {
            $.description = description;
            return this;
        }

        /**
         * @param description Integration runtime description.
         * 
         * @return builder
         * 
         */
        public Builder description(String description) {
            return description(Output.of(description));
        }

        /**
         * @param managedVirtualNetwork Managed Virtual Network reference.
         * 
         * @return builder
         * 
         */
        public Builder managedVirtualNetwork(@Nullable Output managedVirtualNetwork) {
            $.managedVirtualNetwork = managedVirtualNetwork;
            return this;
        }

        /**
         * @param managedVirtualNetwork Managed Virtual Network reference.
         * 
         * @return builder
         * 
         */
        public Builder managedVirtualNetwork(ManagedVirtualNetworkReferenceArgs managedVirtualNetwork) {
            return managedVirtualNetwork(Output.of(managedVirtualNetwork));
        }

        /**
         * @param ssisProperties SSIS properties for managed integration runtime.
         * 
         * @return builder
         * 
         */
        public Builder ssisProperties(@Nullable Output ssisProperties) {
            $.ssisProperties = ssisProperties;
            return this;
        }

        /**
         * @param ssisProperties SSIS properties for managed integration runtime.
         * 
         * @return builder
         * 
         */
        public Builder ssisProperties(IntegrationRuntimeSsisPropertiesArgs ssisProperties) {
            return ssisProperties(Output.of(ssisProperties));
        }

        /**
         * @param type The type of integration runtime.
         * Expected value is 'Managed'.
         * 
         * @return builder
         * 
         */
        public Builder type(Output type) {
            $.type = type;
            return this;
        }

        /**
         * @param type The type of integration runtime.
         * Expected value is 'Managed'.
         * 
         * @return builder
         * 
         */
        public Builder type(String type) {
            return type(Output.of(type));
        }

        public ManagedIntegrationRuntimeArgs build() {
            $.type = Codegen.stringProp("type").output().arg($.type).require();
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy