
com.pulumi.azurenative.orbital.outputs.ContactProfilesPropertiesResponseNetworkConfiguration 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.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class ContactProfilesPropertiesResponseNetworkConfiguration {
/**
* @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.
*
*/
private String subnetId;
private ContactProfilesPropertiesResponseNetworkConfiguration() {}
/**
* @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 String subnetId() {
return this.subnetId;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ContactProfilesPropertiesResponseNetworkConfiguration defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String subnetId;
public Builder() {}
public Builder(ContactProfilesPropertiesResponseNetworkConfiguration defaults) {
Objects.requireNonNull(defaults);
this.subnetId = defaults.subnetId;
}
@CustomType.Setter
public Builder subnetId(String subnetId) {
if (subnetId == null) {
throw new MissingRequiredPropertyException("ContactProfilesPropertiesResponseNetworkConfiguration", "subnetId");
}
this.subnetId = subnetId;
return this;
}
public ContactProfilesPropertiesResponseNetworkConfiguration build() {
final var _resultValue = new ContactProfilesPropertiesResponseNetworkConfiguration();
_resultValue.subnetId = subnetId;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy