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

com.pulumi.azurenative.orbital.inputs.ContactProfilesPropertiesNetworkConfigurationArgs Maven / Gradle / Ivy

// *** 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.orbital.inputs;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;


/**
 * Network configuration of customer virtual network.
 * 
 */
public final class ContactProfilesPropertiesNetworkConfigurationArgs extends com.pulumi.resources.ResourceArgs {

    public static final ContactProfilesPropertiesNetworkConfigurationArgs Empty = new ContactProfilesPropertiesNetworkConfigurationArgs();

    /**
     * ARM resource identifier of the subnet delegated to the Microsoft.Orbital/orbitalGateways. Needs to be at least a class C subnet, and should not have any IP created in it.
     * 
     */
    @Import(name="subnetId", required=true)
    private Output subnetId;

    /**
     * @return ARM resource identifier of the subnet delegated to the Microsoft.Orbital/orbitalGateways. Needs to be at least a class C subnet, and should not have any IP created in it.
     * 
     */
    public Output subnetId() {
        return this.subnetId;
    }

    private ContactProfilesPropertiesNetworkConfigurationArgs() {}

    private ContactProfilesPropertiesNetworkConfigurationArgs(ContactProfilesPropertiesNetworkConfigurationArgs $) {
        this.subnetId = $.subnetId;
    }

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

    public static final class Builder {
        private ContactProfilesPropertiesNetworkConfigurationArgs $;

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

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

        /**
         * @param subnetId ARM resource identifier of the subnet delegated to the Microsoft.Orbital/orbitalGateways. Needs to be at least a class C subnet, and should not have any IP created in it.
         * 
         * @return builder
         * 
         */
        public Builder subnetId(Output subnetId) {
            $.subnetId = subnetId;
            return this;
        }

        /**
         * @param subnetId ARM resource identifier of the subnet delegated to the Microsoft.Orbital/orbitalGateways. Needs to be at least a class C subnet, and should not have any IP created in it.
         * 
         * @return builder
         * 
         */
        public Builder subnetId(String subnetId) {
            return subnetId(Output.of(subnetId));
        }

        public ContactProfilesPropertiesNetworkConfigurationArgs build() {
            if ($.subnetId == null) {
                throw new MissingRequiredPropertyException("ContactProfilesPropertiesNetworkConfigurationArgs", "subnetId");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy