1. Packages
  2. Azure Classic
  3. API Docs
  4. mobile
  5. getNetworkSimPolicy

We recommend using Azure Native.

Azure v6.22.0 published on Tuesday, Apr 1, 2025 by Pulumi

azure.mobile.getNetworkSimPolicy

Explore with Pulumi AI

We recommend using Azure Native.

Azure v6.22.0 published on Tuesday, Apr 1, 2025 by Pulumi

Get information about a Mobile Network Sim Policy.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";

const example = azure.mobile.getNetwork({
    name: "example-mn",
    resourceGroupName: "example-rg",
});
const exampleGetNetworkSimPolicy = example.then(example => azure.mobile.getNetworkSimPolicy({
    name: "example-mnsp",
    mobileNetworkId: example.id,
}));
Copy
import pulumi
import pulumi_azure as azure

example = azure.mobile.get_network(name="example-mn",
    resource_group_name="example-rg")
example_get_network_sim_policy = azure.mobile.get_network_sim_policy(name="example-mnsp",
    mobile_network_id=example.id)
Copy
package main

import (
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/mobile"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		example, err := mobile.LookupNetwork(ctx, &mobile.LookupNetworkArgs{
			Name:              "example-mn",
			ResourceGroupName: "example-rg",
		}, nil)
		if err != nil {
			return err
		}
		_, err = mobile.LookupNetworkSimPolicy(ctx, &mobile.LookupNetworkSimPolicyArgs{
			Name:            "example-mnsp",
			MobileNetworkId: example.Id,
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;

return await Deployment.RunAsync(() => 
{
    var example = Azure.Mobile.GetNetwork.Invoke(new()
    {
        Name = "example-mn",
        ResourceGroupName = "example-rg",
    });

    var exampleGetNetworkSimPolicy = Azure.Mobile.GetNetworkSimPolicy.Invoke(new()
    {
        Name = "example-mnsp",
        MobileNetworkId = example.Apply(getNetworkResult => getNetworkResult.Id),
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.mobile.MobileFunctions;
import com.pulumi.azure.mobile.inputs.GetNetworkArgs;
import com.pulumi.azure.mobile.inputs.GetNetworkSimPolicyArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        final var example = MobileFunctions.getNetwork(GetNetworkArgs.builder()
            .name("example-mn")
            .resourceGroupName("example-rg")
            .build());

        final var exampleGetNetworkSimPolicy = MobileFunctions.getNetworkSimPolicy(GetNetworkSimPolicyArgs.builder()
            .name("example-mnsp")
            .mobileNetworkId(example.applyValue(getNetworkResult -> getNetworkResult.id()))
            .build());

    }
}
Copy
variables:
  example:
    fn::invoke:
      function: azure:mobile:getNetwork
      arguments:
        name: example-mn
        resourceGroupName: example-rg
  exampleGetNetworkSimPolicy:
    fn::invoke:
      function: azure:mobile:getNetworkSimPolicy
      arguments:
        name: example-mnsp
        mobileNetworkId: ${example.id}
Copy

Using getNetworkSimPolicy

Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

function getNetworkSimPolicy(args: GetNetworkSimPolicyArgs, opts?: InvokeOptions): Promise<GetNetworkSimPolicyResult>
function getNetworkSimPolicyOutput(args: GetNetworkSimPolicyOutputArgs, opts?: InvokeOptions): Output<GetNetworkSimPolicyResult>
Copy
def get_network_sim_policy(mobile_network_id: Optional[str] = None,
                           name: Optional[str] = None,
                           opts: Optional[InvokeOptions] = None) -> GetNetworkSimPolicyResult
def get_network_sim_policy_output(mobile_network_id: Optional[pulumi.Input[str]] = None,
                           name: Optional[pulumi.Input[str]] = None,
                           opts: Optional[InvokeOptions] = None) -> Output[GetNetworkSimPolicyResult]
Copy
func LookupNetworkSimPolicy(ctx *Context, args *LookupNetworkSimPolicyArgs, opts ...InvokeOption) (*LookupNetworkSimPolicyResult, error)
func LookupNetworkSimPolicyOutput(ctx *Context, args *LookupNetworkSimPolicyOutputArgs, opts ...InvokeOption) LookupNetworkSimPolicyResultOutput
Copy

> Note: This function is named LookupNetworkSimPolicy in the Go SDK.

public static class GetNetworkSimPolicy 
{
    public static Task<GetNetworkSimPolicyResult> InvokeAsync(GetNetworkSimPolicyArgs args, InvokeOptions? opts = null)
    public static Output<GetNetworkSimPolicyResult> Invoke(GetNetworkSimPolicyInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetNetworkSimPolicyResult> getNetworkSimPolicy(GetNetworkSimPolicyArgs args, InvokeOptions options)
public static Output<GetNetworkSimPolicyResult> getNetworkSimPolicy(GetNetworkSimPolicyArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: azure:mobile/getNetworkSimPolicy:getNetworkSimPolicy
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

MobileNetworkId This property is required. string
The ID of the Mobile Network which the Sim Policy belongs to.
Name This property is required. string
The name which should be used for this Mobile Network Sim Policies.
MobileNetworkId This property is required. string
The ID of the Mobile Network which the Sim Policy belongs to.
Name This property is required. string
The name which should be used for this Mobile Network Sim Policies.
mobileNetworkId This property is required. String
The ID of the Mobile Network which the Sim Policy belongs to.
name This property is required. String
The name which should be used for this Mobile Network Sim Policies.
mobileNetworkId This property is required. string
The ID of the Mobile Network which the Sim Policy belongs to.
name This property is required. string
The name which should be used for this Mobile Network Sim Policies.
mobile_network_id This property is required. str
The ID of the Mobile Network which the Sim Policy belongs to.
name This property is required. str
The name which should be used for this Mobile Network Sim Policies.
mobileNetworkId This property is required. String
The ID of the Mobile Network which the Sim Policy belongs to.
name This property is required. String
The name which should be used for this Mobile Network Sim Policies.

getNetworkSimPolicy Result

The following output properties are available:

DefaultSliceId string
The ID of default slice to use if the UE does not explicitly specify it.
Id string
The provider-assigned unique ID for this managed resource.
Location string
The Azure Region where the Mobile Network Sim Policy should exist.
MobileNetworkId string
Name string
RatFrequencySelectionPriorityIndex int
RAT/Frequency Selection Priority Index, defined in 3GPP TS 36.413.
RegistrationTimerInSeconds int
Interval for the UE periodic registration update procedure.
Slices List<GetNetworkSimPolicySlice>
An array of slice block as defined below. The allowed slices and the settings to use for them.
Tags Dictionary<string, string>
A mapping of tags which should be assigned to the Mobile Network Sim Policies.
UserEquipmentAggregateMaximumBitRates List<GetNetworkSimPolicyUserEquipmentAggregateMaximumBitRate>
A user_equipment_aggregate_maximum_bit_rate block as defined below.
DefaultSliceId string
The ID of default slice to use if the UE does not explicitly specify it.
Id string
The provider-assigned unique ID for this managed resource.
Location string
The Azure Region where the Mobile Network Sim Policy should exist.
MobileNetworkId string
Name string
RatFrequencySelectionPriorityIndex int
RAT/Frequency Selection Priority Index, defined in 3GPP TS 36.413.
RegistrationTimerInSeconds int
Interval for the UE periodic registration update procedure.
Slices []GetNetworkSimPolicySlice
An array of slice block as defined below. The allowed slices and the settings to use for them.
Tags map[string]string
A mapping of tags which should be assigned to the Mobile Network Sim Policies.
UserEquipmentAggregateMaximumBitRates []GetNetworkSimPolicyUserEquipmentAggregateMaximumBitRate
A user_equipment_aggregate_maximum_bit_rate block as defined below.
defaultSliceId String
The ID of default slice to use if the UE does not explicitly specify it.
id String
The provider-assigned unique ID for this managed resource.
location String
The Azure Region where the Mobile Network Sim Policy should exist.
mobileNetworkId String
name String
ratFrequencySelectionPriorityIndex Integer
RAT/Frequency Selection Priority Index, defined in 3GPP TS 36.413.
registrationTimerInSeconds Integer
Interval for the UE periodic registration update procedure.
slices List<GetNetworkSimPolicySlice>
An array of slice block as defined below. The allowed slices and the settings to use for them.
tags Map<String,String>
A mapping of tags which should be assigned to the Mobile Network Sim Policies.
userEquipmentAggregateMaximumBitRates List<GetNetworkSimPolicyUserEquipmentAggregateMaximumBitRate>
A user_equipment_aggregate_maximum_bit_rate block as defined below.
defaultSliceId string
The ID of default slice to use if the UE does not explicitly specify it.
id string
The provider-assigned unique ID for this managed resource.
location string
The Azure Region where the Mobile Network Sim Policy should exist.
mobileNetworkId string
name string
ratFrequencySelectionPriorityIndex number
RAT/Frequency Selection Priority Index, defined in 3GPP TS 36.413.
registrationTimerInSeconds number
Interval for the UE periodic registration update procedure.
slices GetNetworkSimPolicySlice[]
An array of slice block as defined below. The allowed slices and the settings to use for them.
tags {[key: string]: string}
A mapping of tags which should be assigned to the Mobile Network Sim Policies.
userEquipmentAggregateMaximumBitRates GetNetworkSimPolicyUserEquipmentAggregateMaximumBitRate[]
A user_equipment_aggregate_maximum_bit_rate block as defined below.
default_slice_id str
The ID of default slice to use if the UE does not explicitly specify it.
id str
The provider-assigned unique ID for this managed resource.
location str
The Azure Region where the Mobile Network Sim Policy should exist.
mobile_network_id str
name str
rat_frequency_selection_priority_index int
RAT/Frequency Selection Priority Index, defined in 3GPP TS 36.413.
registration_timer_in_seconds int
Interval for the UE periodic registration update procedure.
slices Sequence[GetNetworkSimPolicySlice]
An array of slice block as defined below. The allowed slices and the settings to use for them.
tags Mapping[str, str]
A mapping of tags which should be assigned to the Mobile Network Sim Policies.
user_equipment_aggregate_maximum_bit_rates Sequence[GetNetworkSimPolicyUserEquipmentAggregateMaximumBitRate]
A user_equipment_aggregate_maximum_bit_rate block as defined below.
defaultSliceId String
The ID of default slice to use if the UE does not explicitly specify it.
id String
The provider-assigned unique ID for this managed resource.
location String
The Azure Region where the Mobile Network Sim Policy should exist.
mobileNetworkId String
name String
ratFrequencySelectionPriorityIndex Number
RAT/Frequency Selection Priority Index, defined in 3GPP TS 36.413.
registrationTimerInSeconds Number
Interval for the UE periodic registration update procedure.
slices List<Property Map>
An array of slice block as defined below. The allowed slices and the settings to use for them.
tags Map<String>
A mapping of tags which should be assigned to the Mobile Network Sim Policies.
userEquipmentAggregateMaximumBitRates List<Property Map>
A user_equipment_aggregate_maximum_bit_rate block as defined below.

Supporting Types

GetNetworkSimPolicySlice

DataNetworks This property is required. List<GetNetworkSimPolicySliceDataNetwork>
An array of data_network block as defined below.
DefaultDataNetworkId This property is required. string
The ID of default data network to use if the UE does not explicitly specify it.
SliceId This property is required. string
The ID of the slice that these settings apply to.
DataNetworks This property is required. []GetNetworkSimPolicySliceDataNetwork
An array of data_network block as defined below.
DefaultDataNetworkId This property is required. string
The ID of default data network to use if the UE does not explicitly specify it.
SliceId This property is required. string
The ID of the slice that these settings apply to.
dataNetworks This property is required. List<GetNetworkSimPolicySliceDataNetwork>
An array of data_network block as defined below.
defaultDataNetworkId This property is required. String
The ID of default data network to use if the UE does not explicitly specify it.
sliceId This property is required. String
The ID of the slice that these settings apply to.
dataNetworks This property is required. GetNetworkSimPolicySliceDataNetwork[]
An array of data_network block as defined below.
defaultDataNetworkId This property is required. string
The ID of default data network to use if the UE does not explicitly specify it.
sliceId This property is required. string
The ID of the slice that these settings apply to.
data_networks This property is required. Sequence[GetNetworkSimPolicySliceDataNetwork]
An array of data_network block as defined below.
default_data_network_id This property is required. str
The ID of default data network to use if the UE does not explicitly specify it.
slice_id This property is required. str
The ID of the slice that these settings apply to.
dataNetworks This property is required. List<Property Map>
An array of data_network block as defined below.
defaultDataNetworkId This property is required. String
The ID of default data network to use if the UE does not explicitly specify it.
sliceId This property is required. String
The ID of the slice that these settings apply to.

GetNetworkSimPolicySliceDataNetwork

AdditionalAllowedSessionTypes This property is required. List<string>
Allowed session types in addition to the default session type.
AllocationAndRetentionPriorityLevel This property is required. int
Default QoS Flow allocation and retention priority (ARP) level. Flows with higher priority preempt flows with lower priority, if the settings of preemption_capability and preemption_vulnerability allow it. 1 is the highest level of priority. If this field is not specified then qos_indicator is used to derive the ARP value. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
AllowedServicesIds This property is required. List<string>
An array of IDs of services that can be used as part of this SIM policy.
DataNetworkId This property is required. string
The ID of Mobile Network Data Network which these settings apply to.
DefaultSessionType This property is required. string
The default PDU session type, which is used if the UE does not request a specific session type.
MaxBufferedPackets This property is required. int
The maximum number of downlink packets to buffer at the user plane for High Latency Communication - Extended Buffering.
PreemptionCapability This property is required. string
The Preemption Capability of a QoS Flow controls whether it can preempt another QoS Flow with a lower priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
PreemptionVulnerability This property is required. string
The Preemption Vulnerability of a QoS Flow controls whether it can be preempted by QoS Flow with a higher priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
QosIndicator This property is required. int
The QoS Indicator (5QI for 5G network /QCI for 4G net work) value identifies a set of QoS characteristics that control QoS forwarding treatment for QoS flows or EPS bearers.
SessionAggregateMaximumBitRates This property is required. List<GetNetworkSimPolicySliceDataNetworkSessionAggregateMaximumBitRate>
A session_aggregate_maximum_bit_rate block as defined below.
AdditionalAllowedSessionTypes This property is required. []string
Allowed session types in addition to the default session type.
AllocationAndRetentionPriorityLevel This property is required. int
Default QoS Flow allocation and retention priority (ARP) level. Flows with higher priority preempt flows with lower priority, if the settings of preemption_capability and preemption_vulnerability allow it. 1 is the highest level of priority. If this field is not specified then qos_indicator is used to derive the ARP value. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
AllowedServicesIds This property is required. []string
An array of IDs of services that can be used as part of this SIM policy.
DataNetworkId This property is required. string
The ID of Mobile Network Data Network which these settings apply to.
DefaultSessionType This property is required. string
The default PDU session type, which is used if the UE does not request a specific session type.
MaxBufferedPackets This property is required. int
The maximum number of downlink packets to buffer at the user plane for High Latency Communication - Extended Buffering.
PreemptionCapability This property is required. string
The Preemption Capability of a QoS Flow controls whether it can preempt another QoS Flow with a lower priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
PreemptionVulnerability This property is required. string
The Preemption Vulnerability of a QoS Flow controls whether it can be preempted by QoS Flow with a higher priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
QosIndicator This property is required. int
The QoS Indicator (5QI for 5G network /QCI for 4G net work) value identifies a set of QoS characteristics that control QoS forwarding treatment for QoS flows or EPS bearers.
SessionAggregateMaximumBitRates This property is required. []GetNetworkSimPolicySliceDataNetworkSessionAggregateMaximumBitRate
A session_aggregate_maximum_bit_rate block as defined below.
additionalAllowedSessionTypes This property is required. List<String>
Allowed session types in addition to the default session type.
allocationAndRetentionPriorityLevel This property is required. Integer
Default QoS Flow allocation and retention priority (ARP) level. Flows with higher priority preempt flows with lower priority, if the settings of preemption_capability and preemption_vulnerability allow it. 1 is the highest level of priority. If this field is not specified then qos_indicator is used to derive the ARP value. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
allowedServicesIds This property is required. List<String>
An array of IDs of services that can be used as part of this SIM policy.
dataNetworkId This property is required. String
The ID of Mobile Network Data Network which these settings apply to.
defaultSessionType This property is required. String
The default PDU session type, which is used if the UE does not request a specific session type.
maxBufferedPackets This property is required. Integer
The maximum number of downlink packets to buffer at the user plane for High Latency Communication - Extended Buffering.
preemptionCapability This property is required. String
The Preemption Capability of a QoS Flow controls whether it can preempt another QoS Flow with a lower priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
preemptionVulnerability This property is required. String
The Preemption Vulnerability of a QoS Flow controls whether it can be preempted by QoS Flow with a higher priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
qosIndicator This property is required. Integer
The QoS Indicator (5QI for 5G network /QCI for 4G net work) value identifies a set of QoS characteristics that control QoS forwarding treatment for QoS flows or EPS bearers.
sessionAggregateMaximumBitRates This property is required. List<GetNetworkSimPolicySliceDataNetworkSessionAggregateMaximumBitRate>
A session_aggregate_maximum_bit_rate block as defined below.
additionalAllowedSessionTypes This property is required. string[]
Allowed session types in addition to the default session type.
allocationAndRetentionPriorityLevel This property is required. number
Default QoS Flow allocation and retention priority (ARP) level. Flows with higher priority preempt flows with lower priority, if the settings of preemption_capability and preemption_vulnerability allow it. 1 is the highest level of priority. If this field is not specified then qos_indicator is used to derive the ARP value. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
allowedServicesIds This property is required. string[]
An array of IDs of services that can be used as part of this SIM policy.
dataNetworkId This property is required. string
The ID of Mobile Network Data Network which these settings apply to.
defaultSessionType This property is required. string
The default PDU session type, which is used if the UE does not request a specific session type.
maxBufferedPackets This property is required. number
The maximum number of downlink packets to buffer at the user plane for High Latency Communication - Extended Buffering.
preemptionCapability This property is required. string
The Preemption Capability of a QoS Flow controls whether it can preempt another QoS Flow with a lower priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
preemptionVulnerability This property is required. string
The Preemption Vulnerability of a QoS Flow controls whether it can be preempted by QoS Flow with a higher priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
qosIndicator This property is required. number
The QoS Indicator (5QI for 5G network /QCI for 4G net work) value identifies a set of QoS characteristics that control QoS forwarding treatment for QoS flows or EPS bearers.
sessionAggregateMaximumBitRates This property is required. GetNetworkSimPolicySliceDataNetworkSessionAggregateMaximumBitRate[]
A session_aggregate_maximum_bit_rate block as defined below.
additional_allowed_session_types This property is required. Sequence[str]
Allowed session types in addition to the default session type.
allocation_and_retention_priority_level This property is required. int
Default QoS Flow allocation and retention priority (ARP) level. Flows with higher priority preempt flows with lower priority, if the settings of preemption_capability and preemption_vulnerability allow it. 1 is the highest level of priority. If this field is not specified then qos_indicator is used to derive the ARP value. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
allowed_services_ids This property is required. Sequence[str]
An array of IDs of services that can be used as part of this SIM policy.
data_network_id This property is required. str
The ID of Mobile Network Data Network which these settings apply to.
default_session_type This property is required. str
The default PDU session type, which is used if the UE does not request a specific session type.
max_buffered_packets This property is required. int
The maximum number of downlink packets to buffer at the user plane for High Latency Communication - Extended Buffering.
preemption_capability This property is required. str
The Preemption Capability of a QoS Flow controls whether it can preempt another QoS Flow with a lower priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
preemption_vulnerability This property is required. str
The Preemption Vulnerability of a QoS Flow controls whether it can be preempted by QoS Flow with a higher priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
qos_indicator This property is required. int
The QoS Indicator (5QI for 5G network /QCI for 4G net work) value identifies a set of QoS characteristics that control QoS forwarding treatment for QoS flows or EPS bearers.
session_aggregate_maximum_bit_rates This property is required. Sequence[GetNetworkSimPolicySliceDataNetworkSessionAggregateMaximumBitRate]
A session_aggregate_maximum_bit_rate block as defined below.
additionalAllowedSessionTypes This property is required. List<String>
Allowed session types in addition to the default session type.
allocationAndRetentionPriorityLevel This property is required. Number
Default QoS Flow allocation and retention priority (ARP) level. Flows with higher priority preempt flows with lower priority, if the settings of preemption_capability and preemption_vulnerability allow it. 1 is the highest level of priority. If this field is not specified then qos_indicator is used to derive the ARP value. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
allowedServicesIds This property is required. List<String>
An array of IDs of services that can be used as part of this SIM policy.
dataNetworkId This property is required. String
The ID of Mobile Network Data Network which these settings apply to.
defaultSessionType This property is required. String
The default PDU session type, which is used if the UE does not request a specific session type.
maxBufferedPackets This property is required. Number
The maximum number of downlink packets to buffer at the user plane for High Latency Communication - Extended Buffering.
preemptionCapability This property is required. String
The Preemption Capability of a QoS Flow controls whether it can preempt another QoS Flow with a lower priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
preemptionVulnerability This property is required. String
The Preemption Vulnerability of a QoS Flow controls whether it can be preempted by QoS Flow with a higher priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
qosIndicator This property is required. Number
The QoS Indicator (5QI for 5G network /QCI for 4G net work) value identifies a set of QoS characteristics that control QoS forwarding treatment for QoS flows or EPS bearers.
sessionAggregateMaximumBitRates This property is required. List<Property Map>
A session_aggregate_maximum_bit_rate block as defined below.

GetNetworkSimPolicySliceDataNetworkSessionAggregateMaximumBitRate

Downlink This property is required. string
Downlink bit rate.
Uplink This property is required. string
Uplink bit rate.
Downlink This property is required. string
Downlink bit rate.
Uplink This property is required. string
Uplink bit rate.
downlink This property is required. String
Downlink bit rate.
uplink This property is required. String
Uplink bit rate.
downlink This property is required. string
Downlink bit rate.
uplink This property is required. string
Uplink bit rate.
downlink This property is required. str
Downlink bit rate.
uplink This property is required. str
Uplink bit rate.
downlink This property is required. String
Downlink bit rate.
uplink This property is required. String
Uplink bit rate.

GetNetworkSimPolicyUserEquipmentAggregateMaximumBitRate

Downlink This property is required. string
Downlink bit rate.
Uplink This property is required. string
Uplink bit rate.
Downlink This property is required. string
Downlink bit rate.
Uplink This property is required. string
Uplink bit rate.
downlink This property is required. String
Downlink bit rate.
uplink This property is required. String
Uplink bit rate.
downlink This property is required. string
Downlink bit rate.
uplink This property is required. string
Uplink bit rate.
downlink This property is required. str
Downlink bit rate.
uplink This property is required. str
Uplink bit rate.
downlink This property is required. String
Downlink bit rate.
uplink This property is required. String
Uplink bit rate.

Package Details

Repository
Azure Classic pulumi/pulumi-azure
License
Apache-2.0
Notes
This Pulumi package is based on the azurerm Terraform Provider.

We recommend using Azure Native.

Azure v6.22.0 published on Tuesday, Apr 1, 2025 by Pulumi