com.pulumi.azure.mobile.outputs.GetNetworkSimPolicyResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure Show documentation
Show all versions of azure Show documentation
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.
// *** 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.mobile.outputs;
import com.pulumi.azure.mobile.outputs.GetNetworkSimPolicySlice;
import com.pulumi.azure.mobile.outputs.GetNetworkSimPolicyUserEquipmentAggregateMaximumBitRate;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Integer;
import java.lang.String;
import java.util.List;
import java.util.Map;
import java.util.Objects;
@CustomType
public final class GetNetworkSimPolicyResult {
/**
* @return The ID of default slice to use if the UE does not explicitly specify it.
*
*/
private String defaultSliceId;
/**
* @return The provider-assigned unique ID for this managed resource.
*
*/
private String id;
/**
* @return The Azure Region where the Mobile Network Sim Policy should exist.
*
*/
private String location;
private String mobileNetworkId;
private String name;
/**
* @return RAT/Frequency Selection Priority Index, defined in 3GPP TS 36.413.
*
*/
private Integer ratFrequencySelectionPriorityIndex;
/**
* @return Interval for the UE periodic registration update procedure.
*
*/
private Integer registrationTimerInSeconds;
/**
* @return An array of `slice` block as defined below. The allowed slices and the settings to use for them.
*
*/
private List slices;
/**
* @return A mapping of tags which should be assigned to the Mobile Network Sim Policies.
*
*/
private Map tags;
/**
* @return A `user_equipment_aggregate_maximum_bit_rate` block as defined below.
*
*/
private List userEquipmentAggregateMaximumBitRates;
private GetNetworkSimPolicyResult() {}
/**
* @return The ID of default slice to use if the UE does not explicitly specify it.
*
*/
public String defaultSliceId() {
return this.defaultSliceId;
}
/**
* @return The provider-assigned unique ID for this managed resource.
*
*/
public String id() {
return this.id;
}
/**
* @return The Azure Region where the Mobile Network Sim Policy should exist.
*
*/
public String location() {
return this.location;
}
public String mobileNetworkId() {
return this.mobileNetworkId;
}
public String name() {
return this.name;
}
/**
* @return RAT/Frequency Selection Priority Index, defined in 3GPP TS 36.413.
*
*/
public Integer ratFrequencySelectionPriorityIndex() {
return this.ratFrequencySelectionPriorityIndex;
}
/**
* @return Interval for the UE periodic registration update procedure.
*
*/
public Integer registrationTimerInSeconds() {
return this.registrationTimerInSeconds;
}
/**
* @return An array of `slice` block as defined below. The allowed slices and the settings to use for them.
*
*/
public List slices() {
return this.slices;
}
/**
* @return A mapping of tags which should be assigned to the Mobile Network Sim Policies.
*
*/
public Map tags() {
return this.tags;
}
/**
* @return A `user_equipment_aggregate_maximum_bit_rate` block as defined below.
*
*/
public List userEquipmentAggregateMaximumBitRates() {
return this.userEquipmentAggregateMaximumBitRates;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetNetworkSimPolicyResult defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String defaultSliceId;
private String id;
private String location;
private String mobileNetworkId;
private String name;
private Integer ratFrequencySelectionPriorityIndex;
private Integer registrationTimerInSeconds;
private List slices;
private Map tags;
private List userEquipmentAggregateMaximumBitRates;
public Builder() {}
public Builder(GetNetworkSimPolicyResult defaults) {
Objects.requireNonNull(defaults);
this.defaultSliceId = defaults.defaultSliceId;
this.id = defaults.id;
this.location = defaults.location;
this.mobileNetworkId = defaults.mobileNetworkId;
this.name = defaults.name;
this.ratFrequencySelectionPriorityIndex = defaults.ratFrequencySelectionPriorityIndex;
this.registrationTimerInSeconds = defaults.registrationTimerInSeconds;
this.slices = defaults.slices;
this.tags = defaults.tags;
this.userEquipmentAggregateMaximumBitRates = defaults.userEquipmentAggregateMaximumBitRates;
}
@CustomType.Setter
public Builder defaultSliceId(String defaultSliceId) {
if (defaultSliceId == null) {
throw new MissingRequiredPropertyException("GetNetworkSimPolicyResult", "defaultSliceId");
}
this.defaultSliceId = defaultSliceId;
return this;
}
@CustomType.Setter
public Builder id(String id) {
if (id == null) {
throw new MissingRequiredPropertyException("GetNetworkSimPolicyResult", "id");
}
this.id = id;
return this;
}
@CustomType.Setter
public Builder location(String location) {
if (location == null) {
throw new MissingRequiredPropertyException("GetNetworkSimPolicyResult", "location");
}
this.location = location;
return this;
}
@CustomType.Setter
public Builder mobileNetworkId(String mobileNetworkId) {
if (mobileNetworkId == null) {
throw new MissingRequiredPropertyException("GetNetworkSimPolicyResult", "mobileNetworkId");
}
this.mobileNetworkId = mobileNetworkId;
return this;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("GetNetworkSimPolicyResult", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder ratFrequencySelectionPriorityIndex(Integer ratFrequencySelectionPriorityIndex) {
if (ratFrequencySelectionPriorityIndex == null) {
throw new MissingRequiredPropertyException("GetNetworkSimPolicyResult", "ratFrequencySelectionPriorityIndex");
}
this.ratFrequencySelectionPriorityIndex = ratFrequencySelectionPriorityIndex;
return this;
}
@CustomType.Setter
public Builder registrationTimerInSeconds(Integer registrationTimerInSeconds) {
if (registrationTimerInSeconds == null) {
throw new MissingRequiredPropertyException("GetNetworkSimPolicyResult", "registrationTimerInSeconds");
}
this.registrationTimerInSeconds = registrationTimerInSeconds;
return this;
}
@CustomType.Setter
public Builder slices(List slices) {
if (slices == null) {
throw new MissingRequiredPropertyException("GetNetworkSimPolicyResult", "slices");
}
this.slices = slices;
return this;
}
public Builder slices(GetNetworkSimPolicySlice... slices) {
return slices(List.of(slices));
}
@CustomType.Setter
public Builder tags(Map tags) {
if (tags == null) {
throw new MissingRequiredPropertyException("GetNetworkSimPolicyResult", "tags");
}
this.tags = tags;
return this;
}
@CustomType.Setter
public Builder userEquipmentAggregateMaximumBitRates(List userEquipmentAggregateMaximumBitRates) {
if (userEquipmentAggregateMaximumBitRates == null) {
throw new MissingRequiredPropertyException("GetNetworkSimPolicyResult", "userEquipmentAggregateMaximumBitRates");
}
this.userEquipmentAggregateMaximumBitRates = userEquipmentAggregateMaximumBitRates;
return this;
}
public Builder userEquipmentAggregateMaximumBitRates(GetNetworkSimPolicyUserEquipmentAggregateMaximumBitRate... userEquipmentAggregateMaximumBitRates) {
return userEquipmentAggregateMaximumBitRates(List.of(userEquipmentAggregateMaximumBitRates));
}
public GetNetworkSimPolicyResult build() {
final var _resultValue = new GetNetworkSimPolicyResult();
_resultValue.defaultSliceId = defaultSliceId;
_resultValue.id = id;
_resultValue.location = location;
_resultValue.mobileNetworkId = mobileNetworkId;
_resultValue.name = name;
_resultValue.ratFrequencySelectionPriorityIndex = ratFrequencySelectionPriorityIndex;
_resultValue.registrationTimerInSeconds = registrationTimerInSeconds;
_resultValue.slices = slices;
_resultValue.tags = tags;
_resultValue.userEquipmentAggregateMaximumBitRates = userEquipmentAggregateMaximumBitRates;
return _resultValue;
}
}
}