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

com.pulumi.azurenative.datafactory.inputs.IntegrationRuntimeVNetPropertiesArgs 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.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


/**
 * VNet properties for managed integration runtime.
 * 
 */
public final class IntegrationRuntimeVNetPropertiesArgs extends com.pulumi.resources.ResourceArgs {

    public static final IntegrationRuntimeVNetPropertiesArgs Empty = new IntegrationRuntimeVNetPropertiesArgs();

    /**
     * Resource IDs of the public IP addresses that this integration runtime will use.
     * 
     */
    @Import(name="publicIPs")
    private @Nullable Output> publicIPs;

    /**
     * @return Resource IDs of the public IP addresses that this integration runtime will use.
     * 
     */
    public Optional>> publicIPs() {
        return Optional.ofNullable(this.publicIPs);
    }

    /**
     * The name of the subnet this integration runtime will join.
     * 
     */
    @Import(name="subnet")
    private @Nullable Output subnet;

    /**
     * @return The name of the subnet this integration runtime will join.
     * 
     */
    public Optional> subnet() {
        return Optional.ofNullable(this.subnet);
    }

    /**
     * The ID of subnet, to which this Azure-SSIS integration runtime will be joined.
     * 
     */
    @Import(name="subnetId")
    private @Nullable Output subnetId;

    /**
     * @return The ID of subnet, to which this Azure-SSIS integration runtime will be joined.
     * 
     */
    public Optional> subnetId() {
        return Optional.ofNullable(this.subnetId);
    }

    /**
     * The ID of the VNet that this integration runtime will join.
     * 
     */
    @Import(name="vNetId")
    private @Nullable Output vNetId;

    /**
     * @return The ID of the VNet that this integration runtime will join.
     * 
     */
    public Optional> vNetId() {
        return Optional.ofNullable(this.vNetId);
    }

    private IntegrationRuntimeVNetPropertiesArgs() {}

    private IntegrationRuntimeVNetPropertiesArgs(IntegrationRuntimeVNetPropertiesArgs $) {
        this.publicIPs = $.publicIPs;
        this.subnet = $.subnet;
        this.subnetId = $.subnetId;
        this.vNetId = $.vNetId;
    }

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

    public static final class Builder {
        private IntegrationRuntimeVNetPropertiesArgs $;

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

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

        /**
         * @param publicIPs Resource IDs of the public IP addresses that this integration runtime will use.
         * 
         * @return builder
         * 
         */
        public Builder publicIPs(@Nullable Output> publicIPs) {
            $.publicIPs = publicIPs;
            return this;
        }

        /**
         * @param publicIPs Resource IDs of the public IP addresses that this integration runtime will use.
         * 
         * @return builder
         * 
         */
        public Builder publicIPs(List publicIPs) {
            return publicIPs(Output.of(publicIPs));
        }

        /**
         * @param publicIPs Resource IDs of the public IP addresses that this integration runtime will use.
         * 
         * @return builder
         * 
         */
        public Builder publicIPs(String... publicIPs) {
            return publicIPs(List.of(publicIPs));
        }

        /**
         * @param subnet The name of the subnet this integration runtime will join.
         * 
         * @return builder
         * 
         */
        public Builder subnet(@Nullable Output subnet) {
            $.subnet = subnet;
            return this;
        }

        /**
         * @param subnet The name of the subnet this integration runtime will join.
         * 
         * @return builder
         * 
         */
        public Builder subnet(String subnet) {
            return subnet(Output.of(subnet));
        }

        /**
         * @param subnetId The ID of subnet, to which this Azure-SSIS integration runtime will be joined.
         * 
         * @return builder
         * 
         */
        public Builder subnetId(@Nullable Output subnetId) {
            $.subnetId = subnetId;
            return this;
        }

        /**
         * @param subnetId The ID of subnet, to which this Azure-SSIS integration runtime will be joined.
         * 
         * @return builder
         * 
         */
        public Builder subnetId(String subnetId) {
            return subnetId(Output.of(subnetId));
        }

        /**
         * @param vNetId The ID of the VNet that this integration runtime will join.
         * 
         * @return builder
         * 
         */
        public Builder vNetId(@Nullable Output vNetId) {
            $.vNetId = vNetId;
            return this;
        }

        /**
         * @param vNetId The ID of the VNet that this integration runtime will join.
         * 
         * @return builder
         * 
         */
        public Builder vNetId(String vNetId) {
            return vNetId(Output.of(vNetId));
        }

        public IntegrationRuntimeVNetPropertiesArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy