azure-native.mobilenetwork.SimPolicy
Explore with Pulumi AI
SIM policy resource. Azure REST API version: 2023-06-01. Prior API version in Azure Native 1.x: 2022-04-01-preview.
Other available API versions: 2022-04-01-preview, 2022-11-01, 2023-09-01, 2024-02-01, 2024-04-01.
Example Usage
Create SIM policy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var simPolicy = new AzureNative.MobileNetwork.SimPolicy("simPolicy", new()
{
DefaultSlice = new AzureNative.MobileNetwork.Inputs.SliceResourceIdArgs
{
Id = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork/slices/testSlice",
},
Location = "eastus",
MobileNetworkName = "testMobileNetwork",
RegistrationTimer = 3240,
ResourceGroupName = "rg1",
SimPolicyName = "testPolicy",
SliceConfigurations = new[]
{
new AzureNative.MobileNetwork.Inputs.SliceConfigurationArgs
{
DataNetworkConfigurations = new[]
{
new AzureNative.MobileNetwork.Inputs.DataNetworkConfigurationArgs
{
AdditionalAllowedSessionTypes = new() { },
AllocationAndRetentionPriorityLevel = 9,
AllowedServices = new[]
{
new AzureNative.MobileNetwork.Inputs.ServiceResourceIdArgs
{
Id = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork/services/testService",
},
},
DataNetwork = new AzureNative.MobileNetwork.Inputs.DataNetworkResourceIdArgs
{
Id = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork/dataNetworks/testdataNetwork",
},
DefaultSessionType = AzureNative.MobileNetwork.PduSessionType.IPv4,
FiveQi = 9,
MaximumNumberOfBufferedPackets = 200,
PreemptionCapability = AzureNative.MobileNetwork.PreemptionCapability.NotPreempt,
PreemptionVulnerability = AzureNative.MobileNetwork.PreemptionVulnerability.Preemptable,
SessionAmbr = new AzureNative.MobileNetwork.Inputs.AmbrArgs
{
Downlink = "1 Gbps",
Uplink = "500 Mbps",
},
},
},
DefaultDataNetwork = new AzureNative.MobileNetwork.Inputs.DataNetworkResourceIdArgs
{
Id = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork/dataNetworks/testdataNetwork",
},
Slice = new AzureNative.MobileNetwork.Inputs.SliceResourceIdArgs
{
Id = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork/slices/testSlice",
},
},
},
UeAmbr = new AzureNative.MobileNetwork.Inputs.AmbrArgs
{
Downlink = "1 Gbps",
Uplink = "500 Mbps",
},
});
});
package main
import (
mobilenetwork "github.com/pulumi/pulumi-azure-native-sdk/mobilenetwork/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := mobilenetwork.NewSimPolicy(ctx, "simPolicy", &mobilenetwork.SimPolicyArgs{
DefaultSlice: &mobilenetwork.SliceResourceIdArgs{
Id: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork/slices/testSlice"),
},
Location: pulumi.String("eastus"),
MobileNetworkName: pulumi.String("testMobileNetwork"),
RegistrationTimer: pulumi.Int(3240),
ResourceGroupName: pulumi.String("rg1"),
SimPolicyName: pulumi.String("testPolicy"),
SliceConfigurations: mobilenetwork.SliceConfigurationArray{
&mobilenetwork.SliceConfigurationArgs{
DataNetworkConfigurations: mobilenetwork.DataNetworkConfigurationArray{
&mobilenetwork.DataNetworkConfigurationArgs{
AdditionalAllowedSessionTypes: pulumi.StringArray{},
AllocationAndRetentionPriorityLevel: pulumi.Int(9),
AllowedServices: mobilenetwork.ServiceResourceIdArray{
&mobilenetwork.ServiceResourceIdArgs{
Id: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork/services/testService"),
},
},
DataNetwork: &mobilenetwork.DataNetworkResourceIdArgs{
Id: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork/dataNetworks/testdataNetwork"),
},
DefaultSessionType: pulumi.String(mobilenetwork.PduSessionTypeIPv4),
FiveQi: pulumi.Int(9),
MaximumNumberOfBufferedPackets: pulumi.Int(200),
PreemptionCapability: pulumi.String(mobilenetwork.PreemptionCapabilityNotPreempt),
PreemptionVulnerability: pulumi.String(mobilenetwork.PreemptionVulnerabilityPreemptable),
SessionAmbr: &mobilenetwork.AmbrArgs{
Downlink: pulumi.String("1 Gbps"),
Uplink: pulumi.String("500 Mbps"),
},
},
},
DefaultDataNetwork: &mobilenetwork.DataNetworkResourceIdArgs{
Id: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork/dataNetworks/testdataNetwork"),
},
Slice: &mobilenetwork.SliceResourceIdArgs{
Id: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork/slices/testSlice"),
},
},
},
UeAmbr: &mobilenetwork.AmbrArgs{
Downlink: pulumi.String("1 Gbps"),
Uplink: pulumi.String("500 Mbps"),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.mobilenetwork.SimPolicy;
import com.pulumi.azurenative.mobilenetwork.SimPolicyArgs;
import com.pulumi.azurenative.mobilenetwork.inputs.SliceResourceIdArgs;
import com.pulumi.azurenative.mobilenetwork.inputs.SliceConfigurationArgs;
import com.pulumi.azurenative.mobilenetwork.inputs.DataNetworkResourceIdArgs;
import com.pulumi.azurenative.mobilenetwork.inputs.AmbrArgs;
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) {
var simPolicy = new SimPolicy("simPolicy", SimPolicyArgs.builder()
.defaultSlice(SliceResourceIdArgs.builder()
.id("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork/slices/testSlice")
.build())
.location("eastus")
.mobileNetworkName("testMobileNetwork")
.registrationTimer(3240)
.resourceGroupName("rg1")
.simPolicyName("testPolicy")
.sliceConfigurations(SliceConfigurationArgs.builder()
.dataNetworkConfigurations(DataNetworkConfigurationArgs.builder()
.additionalAllowedSessionTypes()
.allocationAndRetentionPriorityLevel(9)
.allowedServices(ServiceResourceIdArgs.builder()
.id("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork/services/testService")
.build())
.dataNetwork(DataNetworkResourceIdArgs.builder()
.id("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork/dataNetworks/testdataNetwork")
.build())
.defaultSessionType("IPv4")
.fiveQi(9)
.maximumNumberOfBufferedPackets(200)
.preemptionCapability("NotPreempt")
.preemptionVulnerability("Preemptable")
.sessionAmbr(AmbrArgs.builder()
.downlink("1 Gbps")
.uplink("500 Mbps")
.build())
.build())
.defaultDataNetwork(DataNetworkResourceIdArgs.builder()
.id("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork/dataNetworks/testdataNetwork")
.build())
.slice(SliceResourceIdArgs.builder()
.id("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork/slices/testSlice")
.build())
.build())
.ueAmbr(AmbrArgs.builder()
.downlink("1 Gbps")
.uplink("500 Mbps")
.build())
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
sim_policy = azure_native.mobilenetwork.SimPolicy("simPolicy",
default_slice=azure_native.mobilenetwork.SliceResourceIdArgs(
id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork/slices/testSlice",
),
location="eastus",
mobile_network_name="testMobileNetwork",
registration_timer=3240,
resource_group_name="rg1",
sim_policy_name="testPolicy",
slice_configurations=[azure_native.mobilenetwork.SliceConfigurationArgs(
data_network_configurations=[azure_native.mobilenetwork.DataNetworkConfigurationArgs(
additional_allowed_session_types=[],
allocation_and_retention_priority_level=9,
allowed_services=[azure_native.mobilenetwork.ServiceResourceIdArgs(
id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork/services/testService",
)],
data_network=azure_native.mobilenetwork.DataNetworkResourceIdArgs(
id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork/dataNetworks/testdataNetwork",
),
default_session_type=azure_native.mobilenetwork.PduSessionType.I_PV4,
five_qi=9,
maximum_number_of_buffered_packets=200,
preemption_capability=azure_native.mobilenetwork.PreemptionCapability.NOT_PREEMPT,
preemption_vulnerability=azure_native.mobilenetwork.PreemptionVulnerability.PREEMPTABLE,
session_ambr=azure_native.mobilenetwork.AmbrArgs(
downlink="1 Gbps",
uplink="500 Mbps",
),
)],
default_data_network=azure_native.mobilenetwork.DataNetworkResourceIdArgs(
id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork/dataNetworks/testdataNetwork",
),
slice=azure_native.mobilenetwork.SliceResourceIdArgs(
id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork/slices/testSlice",
),
)],
ue_ambr=azure_native.mobilenetwork.AmbrArgs(
downlink="1 Gbps",
uplink="500 Mbps",
))
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const simPolicy = new azure_native.mobilenetwork.SimPolicy("simPolicy", {
defaultSlice: {
id: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork/slices/testSlice",
},
location: "eastus",
mobileNetworkName: "testMobileNetwork",
registrationTimer: 3240,
resourceGroupName: "rg1",
simPolicyName: "testPolicy",
sliceConfigurations: [{
dataNetworkConfigurations: [{
additionalAllowedSessionTypes: [],
allocationAndRetentionPriorityLevel: 9,
allowedServices: [{
id: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork/services/testService",
}],
dataNetwork: {
id: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork/dataNetworks/testdataNetwork",
},
defaultSessionType: azure_native.mobilenetwork.PduSessionType.IPv4,
fiveQi: 9,
maximumNumberOfBufferedPackets: 200,
preemptionCapability: azure_native.mobilenetwork.PreemptionCapability.NotPreempt,
preemptionVulnerability: azure_native.mobilenetwork.PreemptionVulnerability.Preemptable,
sessionAmbr: {
downlink: "1 Gbps",
uplink: "500 Mbps",
},
}],
defaultDataNetwork: {
id: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork/dataNetworks/testdataNetwork",
},
slice: {
id: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork/slices/testSlice",
},
}],
ueAmbr: {
downlink: "1 Gbps",
uplink: "500 Mbps",
},
});
resources:
simPolicy:
type: azure-native:mobilenetwork:SimPolicy
properties:
defaultSlice:
id: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork/slices/testSlice
location: eastus
mobileNetworkName: testMobileNetwork
registrationTimer: 3240
resourceGroupName: rg1
simPolicyName: testPolicy
sliceConfigurations:
- dataNetworkConfigurations:
- additionalAllowedSessionTypes: []
allocationAndRetentionPriorityLevel: 9
allowedServices:
- id: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork/services/testService
dataNetwork:
id: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork/dataNetworks/testdataNetwork
defaultSessionType: IPv4
fiveQi: 9
maximumNumberOfBufferedPackets: 200
preemptionCapability: NotPreempt
preemptionVulnerability: Preemptable
sessionAmbr:
downlink: 1 Gbps
uplink: 500 Mbps
defaultDataNetwork:
id: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork/dataNetworks/testdataNetwork
slice:
id: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork/slices/testSlice
ueAmbr:
downlink: 1 Gbps
uplink: 500 Mbps
Create SimPolicy Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SimPolicy(name: string, args: SimPolicyArgs, opts?: CustomResourceOptions);
@overload
def SimPolicy(resource_name: str,
args: SimPolicyArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SimPolicy(resource_name: str,
opts: Optional[ResourceOptions] = None,
default_slice: Optional[SliceResourceIdArgs] = None,
mobile_network_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
slice_configurations: Optional[Sequence[SliceConfigurationArgs]] = None,
ue_ambr: Optional[AmbrArgs] = None,
location: Optional[str] = None,
registration_timer: Optional[int] = None,
rfsp_index: Optional[int] = None,
sim_policy_name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
func NewSimPolicy(ctx *Context, name string, args SimPolicyArgs, opts ...ResourceOption) (*SimPolicy, error)
public SimPolicy(string name, SimPolicyArgs args, CustomResourceOptions? opts = null)
public SimPolicy(String name, SimPolicyArgs args)
public SimPolicy(String name, SimPolicyArgs args, CustomResourceOptions options)
type: azure-native:mobilenetwork:SimPolicy
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args SimPolicyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args SimPolicyArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args SimPolicyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SimPolicyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SimPolicyArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var simPolicyResource = new AzureNative.MobileNetwork.SimPolicy("simPolicyResource", new()
{
DefaultSlice = new AzureNative.MobileNetwork.Inputs.SliceResourceIdArgs
{
Id = "string",
},
MobileNetworkName = "string",
ResourceGroupName = "string",
SliceConfigurations = new[]
{
new AzureNative.MobileNetwork.Inputs.SliceConfigurationArgs
{
DataNetworkConfigurations = new[]
{
new AzureNative.MobileNetwork.Inputs.DataNetworkConfigurationArgs
{
AllowedServices = new[]
{
new AzureNative.MobileNetwork.Inputs.ServiceResourceIdArgs
{
Id = "string",
},
},
DataNetwork = new AzureNative.MobileNetwork.Inputs.DataNetworkResourceIdArgs
{
Id = "string",
},
SessionAmbr = new AzureNative.MobileNetwork.Inputs.AmbrArgs
{
Downlink = "string",
Uplink = "string",
},
AdditionalAllowedSessionTypes = new[]
{
"string",
},
AllocationAndRetentionPriorityLevel = 0,
DefaultSessionType = "string",
FiveQi = 0,
MaximumNumberOfBufferedPackets = 0,
PreemptionCapability = "string",
PreemptionVulnerability = "string",
},
},
DefaultDataNetwork = new AzureNative.MobileNetwork.Inputs.DataNetworkResourceIdArgs
{
Id = "string",
},
Slice = new AzureNative.MobileNetwork.Inputs.SliceResourceIdArgs
{
Id = "string",
},
},
},
UeAmbr = new AzureNative.MobileNetwork.Inputs.AmbrArgs
{
Downlink = "string",
Uplink = "string",
},
Location = "string",
RegistrationTimer = 0,
RfspIndex = 0,
SimPolicyName = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := mobilenetwork.NewSimPolicy(ctx, "simPolicyResource", &mobilenetwork.SimPolicyArgs{
DefaultSlice: &mobilenetwork.SliceResourceIdArgs{
Id: pulumi.String("string"),
},
MobileNetworkName: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
SliceConfigurations: mobilenetwork.SliceConfigurationArray{
&mobilenetwork.SliceConfigurationArgs{
DataNetworkConfigurations: mobilenetwork.DataNetworkConfigurationArray{
&mobilenetwork.DataNetworkConfigurationArgs{
AllowedServices: mobilenetwork.ServiceResourceIdArray{
&mobilenetwork.ServiceResourceIdArgs{
Id: pulumi.String("string"),
},
},
DataNetwork: &mobilenetwork.DataNetworkResourceIdArgs{
Id: pulumi.String("string"),
},
SessionAmbr: &mobilenetwork.AmbrArgs{
Downlink: pulumi.String("string"),
Uplink: pulumi.String("string"),
},
AdditionalAllowedSessionTypes: pulumi.StringArray{
pulumi.String("string"),
},
AllocationAndRetentionPriorityLevel: pulumi.Int(0),
DefaultSessionType: pulumi.String("string"),
FiveQi: pulumi.Int(0),
MaximumNumberOfBufferedPackets: pulumi.Int(0),
PreemptionCapability: pulumi.String("string"),
PreemptionVulnerability: pulumi.String("string"),
},
},
DefaultDataNetwork: &mobilenetwork.DataNetworkResourceIdArgs{
Id: pulumi.String("string"),
},
Slice: &mobilenetwork.SliceResourceIdArgs{
Id: pulumi.String("string"),
},
},
},
UeAmbr: &mobilenetwork.AmbrArgs{
Downlink: pulumi.String("string"),
Uplink: pulumi.String("string"),
},
Location: pulumi.String("string"),
RegistrationTimer: pulumi.Int(0),
RfspIndex: pulumi.Int(0),
SimPolicyName: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var simPolicyResource = new SimPolicy("simPolicyResource", SimPolicyArgs.builder()
.defaultSlice(SliceResourceIdArgs.builder()
.id("string")
.build())
.mobileNetworkName("string")
.resourceGroupName("string")
.sliceConfigurations(SliceConfigurationArgs.builder()
.dataNetworkConfigurations(DataNetworkConfigurationArgs.builder()
.allowedServices(ServiceResourceIdArgs.builder()
.id("string")
.build())
.dataNetwork(DataNetworkResourceIdArgs.builder()
.id("string")
.build())
.sessionAmbr(AmbrArgs.builder()
.downlink("string")
.uplink("string")
.build())
.additionalAllowedSessionTypes("string")
.allocationAndRetentionPriorityLevel(0)
.defaultSessionType("string")
.fiveQi(0)
.maximumNumberOfBufferedPackets(0)
.preemptionCapability("string")
.preemptionVulnerability("string")
.build())
.defaultDataNetwork(DataNetworkResourceIdArgs.builder()
.id("string")
.build())
.slice(SliceResourceIdArgs.builder()
.id("string")
.build())
.build())
.ueAmbr(AmbrArgs.builder()
.downlink("string")
.uplink("string")
.build())
.location("string")
.registrationTimer(0)
.rfspIndex(0)
.simPolicyName("string")
.tags(Map.of("string", "string"))
.build());
sim_policy_resource = azure_native.mobilenetwork.SimPolicy("simPolicyResource",
default_slice=azure_native.mobilenetwork.SliceResourceIdArgs(
id="string",
),
mobile_network_name="string",
resource_group_name="string",
slice_configurations=[azure_native.mobilenetwork.SliceConfigurationArgs(
data_network_configurations=[azure_native.mobilenetwork.DataNetworkConfigurationArgs(
allowed_services=[azure_native.mobilenetwork.ServiceResourceIdArgs(
id="string",
)],
data_network=azure_native.mobilenetwork.DataNetworkResourceIdArgs(
id="string",
),
session_ambr=azure_native.mobilenetwork.AmbrArgs(
downlink="string",
uplink="string",
),
additional_allowed_session_types=["string"],
allocation_and_retention_priority_level=0,
default_session_type="string",
five_qi=0,
maximum_number_of_buffered_packets=0,
preemption_capability="string",
preemption_vulnerability="string",
)],
default_data_network=azure_native.mobilenetwork.DataNetworkResourceIdArgs(
id="string",
),
slice=azure_native.mobilenetwork.SliceResourceIdArgs(
id="string",
),
)],
ue_ambr=azure_native.mobilenetwork.AmbrArgs(
downlink="string",
uplink="string",
),
location="string",
registration_timer=0,
rfsp_index=0,
sim_policy_name="string",
tags={
"string": "string",
})
const simPolicyResource = new azure_native.mobilenetwork.SimPolicy("simPolicyResource", {
defaultSlice: {
id: "string",
},
mobileNetworkName: "string",
resourceGroupName: "string",
sliceConfigurations: [{
dataNetworkConfigurations: [{
allowedServices: [{
id: "string",
}],
dataNetwork: {
id: "string",
},
sessionAmbr: {
downlink: "string",
uplink: "string",
},
additionalAllowedSessionTypes: ["string"],
allocationAndRetentionPriorityLevel: 0,
defaultSessionType: "string",
fiveQi: 0,
maximumNumberOfBufferedPackets: 0,
preemptionCapability: "string",
preemptionVulnerability: "string",
}],
defaultDataNetwork: {
id: "string",
},
slice: {
id: "string",
},
}],
ueAmbr: {
downlink: "string",
uplink: "string",
},
location: "string",
registrationTimer: 0,
rfspIndex: 0,
simPolicyName: "string",
tags: {
string: "string",
},
});
type: azure-native:mobilenetwork:SimPolicy
properties:
defaultSlice:
id: string
location: string
mobileNetworkName: string
registrationTimer: 0
resourceGroupName: string
rfspIndex: 0
simPolicyName: string
sliceConfigurations:
- dataNetworkConfigurations:
- additionalAllowedSessionTypes:
- string
allocationAndRetentionPriorityLevel: 0
allowedServices:
- id: string
dataNetwork:
id: string
defaultSessionType: string
fiveQi: 0
maximumNumberOfBufferedPackets: 0
preemptionCapability: string
preemptionVulnerability: string
sessionAmbr:
downlink: string
uplink: string
defaultDataNetwork:
id: string
slice:
id: string
tags:
string: string
ueAmbr:
downlink: string
uplink: string
SimPolicy Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The SimPolicy resource accepts the following input properties:
- Default
Slice Pulumi.Azure Native. Mobile Network. Inputs. Slice Resource Id - The default slice to use if the UE does not explicitly specify it. This slice must exist in the
sliceConfigurations
map. The slice must be in the same location as the SIM policy. - Mobile
Network stringName - The name of the mobile network.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Slice
Configurations List<Pulumi.Azure Native. Mobile Network. Inputs. Slice Configuration> - The allowed slices and the settings to use for them. The list must not contain duplicate items and must contain at least one item.
- Ue
Ambr Pulumi.Azure Native. Mobile Network. Inputs. Ambr - Aggregate maximum bit rate across all non-GBR QoS flows of all PDU sessions of a given UE. See 3GPP TS23.501 section 5.7.2.6 for a full description of the UE-AMBR.
- Location string
- The geo-location where the resource lives
- Registration
Timer int - UE periodic registration update timer (5G) or UE periodic tracking area update timer (4G), in seconds.
- Rfsp
Index int - RAT/Frequency Selection Priority Index, defined in 3GPP TS 36.413. This is an optional setting and by default is unspecified.
- Sim
Policy stringName - The name of the SIM policy.
- Dictionary<string, string>
- Resource tags.
- Default
Slice SliceResource Id Args - The default slice to use if the UE does not explicitly specify it. This slice must exist in the
sliceConfigurations
map. The slice must be in the same location as the SIM policy. - Mobile
Network stringName - The name of the mobile network.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Slice
Configurations []SliceConfiguration Args - The allowed slices and the settings to use for them. The list must not contain duplicate items and must contain at least one item.
- Ue
Ambr AmbrArgs - Aggregate maximum bit rate across all non-GBR QoS flows of all PDU sessions of a given UE. See 3GPP TS23.501 section 5.7.2.6 for a full description of the UE-AMBR.
- Location string
- The geo-location where the resource lives
- Registration
Timer int - UE periodic registration update timer (5G) or UE periodic tracking area update timer (4G), in seconds.
- Rfsp
Index int - RAT/Frequency Selection Priority Index, defined in 3GPP TS 36.413. This is an optional setting and by default is unspecified.
- Sim
Policy stringName - The name of the SIM policy.
- map[string]string
- Resource tags.
- default
Slice SliceResource Id - The default slice to use if the UE does not explicitly specify it. This slice must exist in the
sliceConfigurations
map. The slice must be in the same location as the SIM policy. - mobile
Network StringName - The name of the mobile network.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- slice
Configurations List<SliceConfiguration> - The allowed slices and the settings to use for them. The list must not contain duplicate items and must contain at least one item.
- ue
Ambr Ambr - Aggregate maximum bit rate across all non-GBR QoS flows of all PDU sessions of a given UE. See 3GPP TS23.501 section 5.7.2.6 for a full description of the UE-AMBR.
- location String
- The geo-location where the resource lives
- registration
Timer Integer - UE periodic registration update timer (5G) or UE periodic tracking area update timer (4G), in seconds.
- rfsp
Index Integer - RAT/Frequency Selection Priority Index, defined in 3GPP TS 36.413. This is an optional setting and by default is unspecified.
- sim
Policy StringName - The name of the SIM policy.
- Map<String,String>
- Resource tags.
- default
Slice SliceResource Id - The default slice to use if the UE does not explicitly specify it. This slice must exist in the
sliceConfigurations
map. The slice must be in the same location as the SIM policy. - mobile
Network stringName - The name of the mobile network.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- slice
Configurations SliceConfiguration[] - The allowed slices and the settings to use for them. The list must not contain duplicate items and must contain at least one item.
- ue
Ambr Ambr - Aggregate maximum bit rate across all non-GBR QoS flows of all PDU sessions of a given UE. See 3GPP TS23.501 section 5.7.2.6 for a full description of the UE-AMBR.
- location string
- The geo-location where the resource lives
- registration
Timer number - UE periodic registration update timer (5G) or UE periodic tracking area update timer (4G), in seconds.
- rfsp
Index number - RAT/Frequency Selection Priority Index, defined in 3GPP TS 36.413. This is an optional setting and by default is unspecified.
- sim
Policy stringName - The name of the SIM policy.
- {[key: string]: string}
- Resource tags.
- default_
slice SliceResource Id Args - The default slice to use if the UE does not explicitly specify it. This slice must exist in the
sliceConfigurations
map. The slice must be in the same location as the SIM policy. - mobile_
network_ strname - The name of the mobile network.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- slice_
configurations Sequence[SliceConfiguration Args] - The allowed slices and the settings to use for them. The list must not contain duplicate items and must contain at least one item.
- ue_
ambr AmbrArgs - Aggregate maximum bit rate across all non-GBR QoS flows of all PDU sessions of a given UE. See 3GPP TS23.501 section 5.7.2.6 for a full description of the UE-AMBR.
- location str
- The geo-location where the resource lives
- registration_
timer int - UE periodic registration update timer (5G) or UE periodic tracking area update timer (4G), in seconds.
- rfsp_
index int - RAT/Frequency Selection Priority Index, defined in 3GPP TS 36.413. This is an optional setting and by default is unspecified.
- sim_
policy_ strname - The name of the SIM policy.
- Mapping[str, str]
- Resource tags.
- default
Slice Property Map - The default slice to use if the UE does not explicitly specify it. This slice must exist in the
sliceConfigurations
map. The slice must be in the same location as the SIM policy. - mobile
Network StringName - The name of the mobile network.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- slice
Configurations List<Property Map> - The allowed slices and the settings to use for them. The list must not contain duplicate items and must contain at least one item.
- ue
Ambr Property Map - Aggregate maximum bit rate across all non-GBR QoS flows of all PDU sessions of a given UE. See 3GPP TS23.501 section 5.7.2.6 for a full description of the UE-AMBR.
- location String
- The geo-location where the resource lives
- registration
Timer Number - UE periodic registration update timer (5G) or UE periodic tracking area update timer (4G), in seconds.
- rfsp
Index Number - RAT/Frequency Selection Priority Index, defined in 3GPP TS 36.413. This is an optional setting and by default is unspecified.
- sim
Policy StringName - The name of the SIM policy.
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the SimPolicy resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- Provisioning
State string - The provisioning state of the SIM policy resource.
- Site
Provisioning Dictionary<string, string>State - A dictionary of sites to the provisioning state of this SIM policy on that site.
- System
Data Pulumi.Azure Native. Mobile Network. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- Provisioning
State string - The provisioning state of the SIM policy resource.
- Site
Provisioning map[string]stringState - A dictionary of sites to the provisioning state of this SIM policy on that site.
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioning
State String - The provisioning state of the SIM policy resource.
- site
Provisioning Map<String,String>State - A dictionary of sites to the provisioning state of this SIM policy on that site.
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- provisioning
State string - The provisioning state of the SIM policy resource.
- site
Provisioning {[key: string]: string}State - A dictionary of sites to the provisioning state of this SIM policy on that site.
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- provisioning_
state str - The provisioning state of the SIM policy resource.
- site_
provisioning_ Mapping[str, str]state - A dictionary of sites to the provisioning state of this SIM policy on that site.
- system_
data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioning
State String - The provisioning state of the SIM policy resource.
- site
Provisioning Map<String>State - A dictionary of sites to the provisioning state of this SIM policy on that site.
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
Ambr, AmbrArgs
AmbrResponse, AmbrResponseArgs
DataNetworkConfiguration, DataNetworkConfigurationArgs
- Allowed
Services List<Pulumi.Azure Native. Mobile Network. Inputs. Service Resource Id> - List of services that can be used as part of this SIM policy. The list must not contain duplicate items and must contain at least one item. The services must be in the same location as the SIM policy.
- Data
Network Pulumi.Azure Native. Mobile Network. Inputs. Data Network Resource Id - A reference to the data network that these settings apply to. The data network must be in the same location as the SIM policy.
- Session
Ambr Pulumi.Azure Native. Mobile Network. Inputs. Ambr - Aggregate maximum bit rate across all non-GBR QoS flows of a given PDU session. See 3GPP TS23.501 section 5.7.2.6 for a full description of the Session-AMBR.
- Additional
Allowed List<Union<string, Pulumi.Session Types Azure Native. Mobile Network. Pdu Session Type>> - Allowed session types in addition to the default session type. Must not duplicate the default session type.
- Allocation
And intRetention Priority Level - Default QoS Flow allocation and retention priority (ARP) level. Flows with higher priority preempt flows with lower priority, if the settings of
preemptionCapability
andpreemptionVulnerability
allow it. 1 is the highest level of priority. If this field is not specified then5qi
is used to derive the ARP value. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters. - Default
Session string | Pulumi.Type Azure Native. Mobile Network. Pdu Session Type - The default PDU session type, which is used if the UE does not request a specific session type.
- Five
Qi int - Default 5G QoS Flow Indicator value. The 5QI identifies a specific QoS forwarding treatment to be provided to a flow. See 3GPP TS23.501 section 5.7.2.1 for a full description of the 5QI parameter, and table 5.7.4-1 for the definition the 5QI values.
- Maximum
Number intOf Buffered Packets - The maximum number of downlink packets to buffer at the user plane for High Latency Communication - Extended Buffering. See 3GPP TS29.272 v15.10.0 section 7.3.188 for a full description. This maximum is not guaranteed because there is a internal limit on buffered packets across all PDU sessions.
- Preemption
Capability string | Pulumi.Azure Native. Mobile Network. Preemption Capability - Default QoS Flow preemption capability. 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 string | Pulumi.Azure Native. Mobile Network. Preemption Vulnerability - Default QoS Flow preemption vulnerability. The preemption vulnerability of a QoS Flow controls whether it can be preempted by a QoS Flow with a higher priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
- Allowed
Services []ServiceResource Id - List of services that can be used as part of this SIM policy. The list must not contain duplicate items and must contain at least one item. The services must be in the same location as the SIM policy.
- Data
Network DataNetwork Resource Id - A reference to the data network that these settings apply to. The data network must be in the same location as the SIM policy.
- Session
Ambr Ambr - Aggregate maximum bit rate across all non-GBR QoS flows of a given PDU session. See 3GPP TS23.501 section 5.7.2.6 for a full description of the Session-AMBR.
- Additional
Allowed []stringSession Types - Allowed session types in addition to the default session type. Must not duplicate the default session type.
- Allocation
And intRetention Priority Level - Default QoS Flow allocation and retention priority (ARP) level. Flows with higher priority preempt flows with lower priority, if the settings of
preemptionCapability
andpreemptionVulnerability
allow it. 1 is the highest level of priority. If this field is not specified then5qi
is used to derive the ARP value. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters. - Default
Session string | PduType Session Type - The default PDU session type, which is used if the UE does not request a specific session type.
- Five
Qi int - Default 5G QoS Flow Indicator value. The 5QI identifies a specific QoS forwarding treatment to be provided to a flow. See 3GPP TS23.501 section 5.7.2.1 for a full description of the 5QI parameter, and table 5.7.4-1 for the definition the 5QI values.
- Maximum
Number intOf Buffered Packets - The maximum number of downlink packets to buffer at the user plane for High Latency Communication - Extended Buffering. See 3GPP TS29.272 v15.10.0 section 7.3.188 for a full description. This maximum is not guaranteed because there is a internal limit on buffered packets across all PDU sessions.
- Preemption
Capability string | PreemptionCapability - Default QoS Flow preemption capability. 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 string | PreemptionVulnerability - Default QoS Flow preemption vulnerability. The preemption vulnerability of a QoS Flow controls whether it can be preempted by a QoS Flow with a higher priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
- allowed
Services List<ServiceResource Id> - List of services that can be used as part of this SIM policy. The list must not contain duplicate items and must contain at least one item. The services must be in the same location as the SIM policy.
- data
Network DataNetwork Resource Id - A reference to the data network that these settings apply to. The data network must be in the same location as the SIM policy.
- session
Ambr Ambr - Aggregate maximum bit rate across all non-GBR QoS flows of a given PDU session. See 3GPP TS23.501 section 5.7.2.6 for a full description of the Session-AMBR.
- additional
Allowed List<Either<String,PduSession Types Session Type>> - Allowed session types in addition to the default session type. Must not duplicate the default session type.
- allocation
And IntegerRetention Priority Level - Default QoS Flow allocation and retention priority (ARP) level. Flows with higher priority preempt flows with lower priority, if the settings of
preemptionCapability
andpreemptionVulnerability
allow it. 1 is the highest level of priority. If this field is not specified then5qi
is used to derive the ARP value. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters. - default
Session String | PduType Session Type - The default PDU session type, which is used if the UE does not request a specific session type.
- five
Qi Integer - Default 5G QoS Flow Indicator value. The 5QI identifies a specific QoS forwarding treatment to be provided to a flow. See 3GPP TS23.501 section 5.7.2.1 for a full description of the 5QI parameter, and table 5.7.4-1 for the definition the 5QI values.
- maximum
Number IntegerOf Buffered Packets - The maximum number of downlink packets to buffer at the user plane for High Latency Communication - Extended Buffering. See 3GPP TS29.272 v15.10.0 section 7.3.188 for a full description. This maximum is not guaranteed because there is a internal limit on buffered packets across all PDU sessions.
- preemption
Capability String | PreemptionCapability - Default QoS Flow preemption capability. 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 String | PreemptionVulnerability - Default QoS Flow preemption vulnerability. The preemption vulnerability of a QoS Flow controls whether it can be preempted by a QoS Flow with a higher priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
- allowed
Services ServiceResource Id[] - List of services that can be used as part of this SIM policy. The list must not contain duplicate items and must contain at least one item. The services must be in the same location as the SIM policy.
- data
Network DataNetwork Resource Id - A reference to the data network that these settings apply to. The data network must be in the same location as the SIM policy.
- session
Ambr Ambr - Aggregate maximum bit rate across all non-GBR QoS flows of a given PDU session. See 3GPP TS23.501 section 5.7.2.6 for a full description of the Session-AMBR.
- additional
Allowed (string | PduSession Types Session Type)[] - Allowed session types in addition to the default session type. Must not duplicate the default session type.
- allocation
And numberRetention Priority Level - Default QoS Flow allocation and retention priority (ARP) level. Flows with higher priority preempt flows with lower priority, if the settings of
preemptionCapability
andpreemptionVulnerability
allow it. 1 is the highest level of priority. If this field is not specified then5qi
is used to derive the ARP value. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters. - default
Session string | PduType Session Type - The default PDU session type, which is used if the UE does not request a specific session type.
- five
Qi number - Default 5G QoS Flow Indicator value. The 5QI identifies a specific QoS forwarding treatment to be provided to a flow. See 3GPP TS23.501 section 5.7.2.1 for a full description of the 5QI parameter, and table 5.7.4-1 for the definition the 5QI values.
- maximum
Number numberOf Buffered Packets - The maximum number of downlink packets to buffer at the user plane for High Latency Communication - Extended Buffering. See 3GPP TS29.272 v15.10.0 section 7.3.188 for a full description. This maximum is not guaranteed because there is a internal limit on buffered packets across all PDU sessions.
- preemption
Capability string | PreemptionCapability - Default QoS Flow preemption capability. 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 string | PreemptionVulnerability - Default QoS Flow preemption vulnerability. The preemption vulnerability of a QoS Flow controls whether it can be preempted by a QoS Flow with a higher priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
- allowed_
services Sequence[ServiceResource Id] - List of services that can be used as part of this SIM policy. The list must not contain duplicate items and must contain at least one item. The services must be in the same location as the SIM policy.
- data_
network DataNetwork Resource Id - A reference to the data network that these settings apply to. The data network must be in the same location as the SIM policy.
- session_
ambr Ambr - Aggregate maximum bit rate across all non-GBR QoS flows of a given PDU session. See 3GPP TS23.501 section 5.7.2.6 for a full description of the Session-AMBR.
- additional_
allowed_ Sequence[Union[str, Pdusession_ types Session Type]] - Allowed session types in addition to the default session type. Must not duplicate the default session type.
- allocation_
and_ intretention_ priority_ level - Default QoS Flow allocation and retention priority (ARP) level. Flows with higher priority preempt flows with lower priority, if the settings of
preemptionCapability
andpreemptionVulnerability
allow it. 1 is the highest level of priority. If this field is not specified then5qi
is used to derive the ARP value. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters. - default_
session_ str | Pdutype Session Type - The default PDU session type, which is used if the UE does not request a specific session type.
- five_
qi int - Default 5G QoS Flow Indicator value. The 5QI identifies a specific QoS forwarding treatment to be provided to a flow. See 3GPP TS23.501 section 5.7.2.1 for a full description of the 5QI parameter, and table 5.7.4-1 for the definition the 5QI values.
- maximum_
number_ intof_ buffered_ packets - The maximum number of downlink packets to buffer at the user plane for High Latency Communication - Extended Buffering. See 3GPP TS29.272 v15.10.0 section 7.3.188 for a full description. This maximum is not guaranteed because there is a internal limit on buffered packets across all PDU sessions.
- preemption_
capability str | PreemptionCapability - Default QoS Flow preemption capability. 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 str | PreemptionVulnerability - Default QoS Flow preemption vulnerability. The preemption vulnerability of a QoS Flow controls whether it can be preempted by a QoS Flow with a higher priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
- allowed
Services List<Property Map> - List of services that can be used as part of this SIM policy. The list must not contain duplicate items and must contain at least one item. The services must be in the same location as the SIM policy.
- data
Network Property Map - A reference to the data network that these settings apply to. The data network must be in the same location as the SIM policy.
- session
Ambr Property Map - Aggregate maximum bit rate across all non-GBR QoS flows of a given PDU session. See 3GPP TS23.501 section 5.7.2.6 for a full description of the Session-AMBR.
- additional
Allowed List<String | "IPv4" | "IPv6">Session Types - Allowed session types in addition to the default session type. Must not duplicate the default session type.
- allocation
And NumberRetention Priority Level - Default QoS Flow allocation and retention priority (ARP) level. Flows with higher priority preempt flows with lower priority, if the settings of
preemptionCapability
andpreemptionVulnerability
allow it. 1 is the highest level of priority. If this field is not specified then5qi
is used to derive the ARP value. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters. - default
Session String | "IPv4" | "IPv6"Type - The default PDU session type, which is used if the UE does not request a specific session type.
- five
Qi Number - Default 5G QoS Flow Indicator value. The 5QI identifies a specific QoS forwarding treatment to be provided to a flow. See 3GPP TS23.501 section 5.7.2.1 for a full description of the 5QI parameter, and table 5.7.4-1 for the definition the 5QI values.
- maximum
Number NumberOf Buffered Packets - The maximum number of downlink packets to buffer at the user plane for High Latency Communication - Extended Buffering. See 3GPP TS29.272 v15.10.0 section 7.3.188 for a full description. This maximum is not guaranteed because there is a internal limit on buffered packets across all PDU sessions.
- preemption
Capability String | "NotPreempt" | "May Preempt" - Default QoS Flow preemption capability. 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 String | "NotPreemptable" | "Preemptable" - Default QoS Flow preemption vulnerability. The preemption vulnerability of a QoS Flow controls whether it can be preempted by a QoS Flow with a higher priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
DataNetworkConfigurationResponse, DataNetworkConfigurationResponseArgs
- Allowed
Services List<Pulumi.Azure Native. Mobile Network. Inputs. Service Resource Id Response> - List of services that can be used as part of this SIM policy. The list must not contain duplicate items and must contain at least one item. The services must be in the same location as the SIM policy.
- Data
Network Pulumi.Azure Native. Mobile Network. Inputs. Data Network Resource Id Response - A reference to the data network that these settings apply to. The data network must be in the same location as the SIM policy.
- Session
Ambr Pulumi.Azure Native. Mobile Network. Inputs. Ambr Response - Aggregate maximum bit rate across all non-GBR QoS flows of a given PDU session. See 3GPP TS23.501 section 5.7.2.6 for a full description of the Session-AMBR.
- Additional
Allowed List<string>Session Types - Allowed session types in addition to the default session type. Must not duplicate the default session type.
- Allocation
And intRetention Priority Level - Default QoS Flow allocation and retention priority (ARP) level. Flows with higher priority preempt flows with lower priority, if the settings of
preemptionCapability
andpreemptionVulnerability
allow it. 1 is the highest level of priority. If this field is not specified then5qi
is used to derive the ARP value. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters. - Default
Session stringType - The default PDU session type, which is used if the UE does not request a specific session type.
- Five
Qi int - Default 5G QoS Flow Indicator value. The 5QI identifies a specific QoS forwarding treatment to be provided to a flow. See 3GPP TS23.501 section 5.7.2.1 for a full description of the 5QI parameter, and table 5.7.4-1 for the definition the 5QI values.
- Maximum
Number intOf Buffered Packets - The maximum number of downlink packets to buffer at the user plane for High Latency Communication - Extended Buffering. See 3GPP TS29.272 v15.10.0 section 7.3.188 for a full description. This maximum is not guaranteed because there is a internal limit on buffered packets across all PDU sessions.
- Preemption
Capability string - Default QoS Flow preemption capability. 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 string - Default QoS Flow preemption vulnerability. The preemption vulnerability of a QoS Flow controls whether it can be preempted by a QoS Flow with a higher priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
- Allowed
Services []ServiceResource Id Response - List of services that can be used as part of this SIM policy. The list must not contain duplicate items and must contain at least one item. The services must be in the same location as the SIM policy.
- Data
Network DataNetwork Resource Id Response - A reference to the data network that these settings apply to. The data network must be in the same location as the SIM policy.
- Session
Ambr AmbrResponse - Aggregate maximum bit rate across all non-GBR QoS flows of a given PDU session. See 3GPP TS23.501 section 5.7.2.6 for a full description of the Session-AMBR.
- Additional
Allowed []stringSession Types - Allowed session types in addition to the default session type. Must not duplicate the default session type.
- Allocation
And intRetention Priority Level - Default QoS Flow allocation and retention priority (ARP) level. Flows with higher priority preempt flows with lower priority, if the settings of
preemptionCapability
andpreemptionVulnerability
allow it. 1 is the highest level of priority. If this field is not specified then5qi
is used to derive the ARP value. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters. - Default
Session stringType - The default PDU session type, which is used if the UE does not request a specific session type.
- Five
Qi int - Default 5G QoS Flow Indicator value. The 5QI identifies a specific QoS forwarding treatment to be provided to a flow. See 3GPP TS23.501 section 5.7.2.1 for a full description of the 5QI parameter, and table 5.7.4-1 for the definition the 5QI values.
- Maximum
Number intOf Buffered Packets - The maximum number of downlink packets to buffer at the user plane for High Latency Communication - Extended Buffering. See 3GPP TS29.272 v15.10.0 section 7.3.188 for a full description. This maximum is not guaranteed because there is a internal limit on buffered packets across all PDU sessions.
- Preemption
Capability string - Default QoS Flow preemption capability. 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 string - Default QoS Flow preemption vulnerability. The preemption vulnerability of a QoS Flow controls whether it can be preempted by a QoS Flow with a higher priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
- allowed
Services List<ServiceResource Id Response> - List of services that can be used as part of this SIM policy. The list must not contain duplicate items and must contain at least one item. The services must be in the same location as the SIM policy.
- data
Network DataNetwork Resource Id Response - A reference to the data network that these settings apply to. The data network must be in the same location as the SIM policy.
- session
Ambr AmbrResponse - Aggregate maximum bit rate across all non-GBR QoS flows of a given PDU session. See 3GPP TS23.501 section 5.7.2.6 for a full description of the Session-AMBR.
- additional
Allowed List<String>Session Types - Allowed session types in addition to the default session type. Must not duplicate the default session type.
- allocation
And IntegerRetention Priority Level - Default QoS Flow allocation and retention priority (ARP) level. Flows with higher priority preempt flows with lower priority, if the settings of
preemptionCapability
andpreemptionVulnerability
allow it. 1 is the highest level of priority. If this field is not specified then5qi
is used to derive the ARP value. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters. - default
Session StringType - The default PDU session type, which is used if the UE does not request a specific session type.
- five
Qi Integer - Default 5G QoS Flow Indicator value. The 5QI identifies a specific QoS forwarding treatment to be provided to a flow. See 3GPP TS23.501 section 5.7.2.1 for a full description of the 5QI parameter, and table 5.7.4-1 for the definition the 5QI values.
- maximum
Number IntegerOf Buffered Packets - The maximum number of downlink packets to buffer at the user plane for High Latency Communication - Extended Buffering. See 3GPP TS29.272 v15.10.0 section 7.3.188 for a full description. This maximum is not guaranteed because there is a internal limit on buffered packets across all PDU sessions.
- preemption
Capability String - Default QoS Flow preemption capability. 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 String - Default QoS Flow preemption vulnerability. The preemption vulnerability of a QoS Flow controls whether it can be preempted by a QoS Flow with a higher priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
- allowed
Services ServiceResource Id Response[] - List of services that can be used as part of this SIM policy. The list must not contain duplicate items and must contain at least one item. The services must be in the same location as the SIM policy.
- data
Network DataNetwork Resource Id Response - A reference to the data network that these settings apply to. The data network must be in the same location as the SIM policy.
- session
Ambr AmbrResponse - Aggregate maximum bit rate across all non-GBR QoS flows of a given PDU session. See 3GPP TS23.501 section 5.7.2.6 for a full description of the Session-AMBR.
- additional
Allowed string[]Session Types - Allowed session types in addition to the default session type. Must not duplicate the default session type.
- allocation
And numberRetention Priority Level - Default QoS Flow allocation and retention priority (ARP) level. Flows with higher priority preempt flows with lower priority, if the settings of
preemptionCapability
andpreemptionVulnerability
allow it. 1 is the highest level of priority. If this field is not specified then5qi
is used to derive the ARP value. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters. - default
Session stringType - The default PDU session type, which is used if the UE does not request a specific session type.
- five
Qi number - Default 5G QoS Flow Indicator value. The 5QI identifies a specific QoS forwarding treatment to be provided to a flow. See 3GPP TS23.501 section 5.7.2.1 for a full description of the 5QI parameter, and table 5.7.4-1 for the definition the 5QI values.
- maximum
Number numberOf Buffered Packets - The maximum number of downlink packets to buffer at the user plane for High Latency Communication - Extended Buffering. See 3GPP TS29.272 v15.10.0 section 7.3.188 for a full description. This maximum is not guaranteed because there is a internal limit on buffered packets across all PDU sessions.
- preemption
Capability string - Default QoS Flow preemption capability. 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 string - Default QoS Flow preemption vulnerability. The preemption vulnerability of a QoS Flow controls whether it can be preempted by a QoS Flow with a higher priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
- allowed_
services Sequence[ServiceResource Id Response] - List of services that can be used as part of this SIM policy. The list must not contain duplicate items and must contain at least one item. The services must be in the same location as the SIM policy.
- data_
network DataNetwork Resource Id Response - A reference to the data network that these settings apply to. The data network must be in the same location as the SIM policy.
- session_
ambr AmbrResponse - Aggregate maximum bit rate across all non-GBR QoS flows of a given PDU session. See 3GPP TS23.501 section 5.7.2.6 for a full description of the Session-AMBR.
- additional_
allowed_ Sequence[str]session_ types - Allowed session types in addition to the default session type. Must not duplicate the default session type.
- allocation_
and_ intretention_ priority_ level - Default QoS Flow allocation and retention priority (ARP) level. Flows with higher priority preempt flows with lower priority, if the settings of
preemptionCapability
andpreemptionVulnerability
allow it. 1 is the highest level of priority. If this field is not specified then5qi
is used to derive the ARP value. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters. - default_
session_ strtype - The default PDU session type, which is used if the UE does not request a specific session type.
- five_
qi int - Default 5G QoS Flow Indicator value. The 5QI identifies a specific QoS forwarding treatment to be provided to a flow. See 3GPP TS23.501 section 5.7.2.1 for a full description of the 5QI parameter, and table 5.7.4-1 for the definition the 5QI values.
- maximum_
number_ intof_ buffered_ packets - The maximum number of downlink packets to buffer at the user plane for High Latency Communication - Extended Buffering. See 3GPP TS29.272 v15.10.0 section 7.3.188 for a full description. This maximum is not guaranteed because there is a internal limit on buffered packets across all PDU sessions.
- preemption_
capability str - Default QoS Flow preemption capability. 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 str - Default QoS Flow preemption vulnerability. The preemption vulnerability of a QoS Flow controls whether it can be preempted by a QoS Flow with a higher priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
- allowed
Services List<Property Map> - List of services that can be used as part of this SIM policy. The list must not contain duplicate items and must contain at least one item. The services must be in the same location as the SIM policy.
- data
Network Property Map - A reference to the data network that these settings apply to. The data network must be in the same location as the SIM policy.
- session
Ambr Property Map - Aggregate maximum bit rate across all non-GBR QoS flows of a given PDU session. See 3GPP TS23.501 section 5.7.2.6 for a full description of the Session-AMBR.
- additional
Allowed List<String>Session Types - Allowed session types in addition to the default session type. Must not duplicate the default session type.
- allocation
And NumberRetention Priority Level - Default QoS Flow allocation and retention priority (ARP) level. Flows with higher priority preempt flows with lower priority, if the settings of
preemptionCapability
andpreemptionVulnerability
allow it. 1 is the highest level of priority. If this field is not specified then5qi
is used to derive the ARP value. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters. - default
Session StringType - The default PDU session type, which is used if the UE does not request a specific session type.
- five
Qi Number - Default 5G QoS Flow Indicator value. The 5QI identifies a specific QoS forwarding treatment to be provided to a flow. See 3GPP TS23.501 section 5.7.2.1 for a full description of the 5QI parameter, and table 5.7.4-1 for the definition the 5QI values.
- maximum
Number NumberOf Buffered Packets - The maximum number of downlink packets to buffer at the user plane for High Latency Communication - Extended Buffering. See 3GPP TS29.272 v15.10.0 section 7.3.188 for a full description. This maximum is not guaranteed because there is a internal limit on buffered packets across all PDU sessions.
- preemption
Capability String - Default QoS Flow preemption capability. 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 String - Default QoS Flow preemption vulnerability. The preemption vulnerability of a QoS Flow controls whether it can be preempted by a QoS Flow with a higher priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
DataNetworkResourceId, DataNetworkResourceIdArgs
- Id string
- Data network resource ID.
- Id string
- Data network resource ID.
- id String
- Data network resource ID.
- id string
- Data network resource ID.
- id str
- Data network resource ID.
- id String
- Data network resource ID.
DataNetworkResourceIdResponse, DataNetworkResourceIdResponseArgs
- Id string
- Data network resource ID.
- Id string
- Data network resource ID.
- id String
- Data network resource ID.
- id string
- Data network resource ID.
- id str
- Data network resource ID.
- id String
- Data network resource ID.
PduSessionType, PduSessionTypeArgs
- IPv4
- IPv4
- IPv6
- IPv6
- Pdu
Session Type IPv4 - IPv4
- Pdu
Session Type IPv6 - IPv6
- IPv4
- IPv4
- IPv6
- IPv6
- IPv4
- IPv4
- IPv6
- IPv6
- I_PV4
- IPv4
- I_PV6
- IPv6
- "IPv4"
- IPv4
- "IPv6"
- IPv6
PreemptionCapability, PreemptionCapabilityArgs
- Not
Preempt - NotPreemptCannot preempt
- May
Preempt - MayPreemptMay preempt
- Preemption
Capability Not Preempt - NotPreemptCannot preempt
- Preemption
Capability May Preempt - MayPreemptMay preempt
- Not
Preempt - NotPreemptCannot preempt
- May
Preempt - MayPreemptMay preempt
- Not
Preempt - NotPreemptCannot preempt
- May
Preempt - MayPreemptMay preempt
- NOT_PREEMPT
- NotPreemptCannot preempt
- MAY_PREEMPT
- MayPreemptMay preempt
- "Not
Preempt" - NotPreemptCannot preempt
- "May
Preempt" - MayPreemptMay preempt
PreemptionVulnerability, PreemptionVulnerabilityArgs
- Not
Preemptable - NotPreemptableCannot be preempted
- Preemptable
- PreemptableMay be preempted
- Preemption
Vulnerability Not Preemptable - NotPreemptableCannot be preempted
- Preemption
Vulnerability Preemptable - PreemptableMay be preempted
- Not
Preemptable - NotPreemptableCannot be preempted
- Preemptable
- PreemptableMay be preempted
- Not
Preemptable - NotPreemptableCannot be preempted
- Preemptable
- PreemptableMay be preempted
- NOT_PREEMPTABLE
- NotPreemptableCannot be preempted
- PREEMPTABLE
- PreemptableMay be preempted
- "Not
Preemptable" - NotPreemptableCannot be preempted
- "Preemptable"
- PreemptableMay be preempted
ServiceResourceId, ServiceResourceIdArgs
- Id string
- Service resource ID.
- Id string
- Service resource ID.
- id String
- Service resource ID.
- id string
- Service resource ID.
- id str
- Service resource ID.
- id String
- Service resource ID.
ServiceResourceIdResponse, ServiceResourceIdResponseArgs
- Id string
- Service resource ID.
- Id string
- Service resource ID.
- id String
- Service resource ID.
- id string
- Service resource ID.
- id str
- Service resource ID.
- id String
- Service resource ID.
SliceConfiguration, SliceConfigurationArgs
- Data
Network List<Pulumi.Configurations Azure Native. Mobile Network. Inputs. Data Network Configuration> - The allowed data networks and the settings to use for them. The list must not contain duplicate items and must contain at least one item.
- Default
Data Pulumi.Network Azure Native. Mobile Network. Inputs. Data Network Resource Id - The default data network to use if the UE does not explicitly specify it. Configuration for this object must exist in the
dataNetworkConfigurations
map. The data network must be in the same location as the SIM policy. - Slice
Pulumi.
Azure Native. Mobile Network. Inputs. Slice Resource Id - A reference to the slice that these settings apply to. The slice must be in the same location as the SIM policy.
- Data
Network []DataConfigurations Network Configuration - The allowed data networks and the settings to use for them. The list must not contain duplicate items and must contain at least one item.
- Default
Data DataNetwork Network Resource Id - The default data network to use if the UE does not explicitly specify it. Configuration for this object must exist in the
dataNetworkConfigurations
map. The data network must be in the same location as the SIM policy. - Slice
Slice
Resource Id - A reference to the slice that these settings apply to. The slice must be in the same location as the SIM policy.
- data
Network List<DataConfigurations Network Configuration> - The allowed data networks and the settings to use for them. The list must not contain duplicate items and must contain at least one item.
- default
Data DataNetwork Network Resource Id - The default data network to use if the UE does not explicitly specify it. Configuration for this object must exist in the
dataNetworkConfigurations
map. The data network must be in the same location as the SIM policy. - slice
Slice
Resource Id - A reference to the slice that these settings apply to. The slice must be in the same location as the SIM policy.
- data
Network DataConfigurations Network Configuration[] - The allowed data networks and the settings to use for them. The list must not contain duplicate items and must contain at least one item.
- default
Data DataNetwork Network Resource Id - The default data network to use if the UE does not explicitly specify it. Configuration for this object must exist in the
dataNetworkConfigurations
map. The data network must be in the same location as the SIM policy. - slice
Slice
Resource Id - A reference to the slice that these settings apply to. The slice must be in the same location as the SIM policy.
- data_
network_ Sequence[Dataconfigurations Network Configuration] - The allowed data networks and the settings to use for them. The list must not contain duplicate items and must contain at least one item.
- default_
data_ Datanetwork Network Resource Id - The default data network to use if the UE does not explicitly specify it. Configuration for this object must exist in the
dataNetworkConfigurations
map. The data network must be in the same location as the SIM policy. - slice
Slice
Resource Id - A reference to the slice that these settings apply to. The slice must be in the same location as the SIM policy.
- data
Network List<Property Map>Configurations - The allowed data networks and the settings to use for them. The list must not contain duplicate items and must contain at least one item.
- default
Data Property MapNetwork - The default data network to use if the UE does not explicitly specify it. Configuration for this object must exist in the
dataNetworkConfigurations
map. The data network must be in the same location as the SIM policy. - slice Property Map
- A reference to the slice that these settings apply to. The slice must be in the same location as the SIM policy.
SliceConfigurationResponse, SliceConfigurationResponseArgs
- Data
Network List<Pulumi.Configurations Azure Native. Mobile Network. Inputs. Data Network Configuration Response> - The allowed data networks and the settings to use for them. The list must not contain duplicate items and must contain at least one item.
- Default
Data Pulumi.Network Azure Native. Mobile Network. Inputs. Data Network Resource Id Response - The default data network to use if the UE does not explicitly specify it. Configuration for this object must exist in the
dataNetworkConfigurations
map. The data network must be in the same location as the SIM policy. - Slice
Pulumi.
Azure Native. Mobile Network. Inputs. Slice Resource Id Response - A reference to the slice that these settings apply to. The slice must be in the same location as the SIM policy.
- Data
Network []DataConfigurations Network Configuration Response - The allowed data networks and the settings to use for them. The list must not contain duplicate items and must contain at least one item.
- Default
Data DataNetwork Network Resource Id Response - The default data network to use if the UE does not explicitly specify it. Configuration for this object must exist in the
dataNetworkConfigurations
map. The data network must be in the same location as the SIM policy. - Slice
Slice
Resource Id Response - A reference to the slice that these settings apply to. The slice must be in the same location as the SIM policy.
- data
Network List<DataConfigurations Network Configuration Response> - The allowed data networks and the settings to use for them. The list must not contain duplicate items and must contain at least one item.
- default
Data DataNetwork Network Resource Id Response - The default data network to use if the UE does not explicitly specify it. Configuration for this object must exist in the
dataNetworkConfigurations
map. The data network must be in the same location as the SIM policy. - slice
Slice
Resource Id Response - A reference to the slice that these settings apply to. The slice must be in the same location as the SIM policy.
- data
Network DataConfigurations Network Configuration Response[] - The allowed data networks and the settings to use for them. The list must not contain duplicate items and must contain at least one item.
- default
Data DataNetwork Network Resource Id Response - The default data network to use if the UE does not explicitly specify it. Configuration for this object must exist in the
dataNetworkConfigurations
map. The data network must be in the same location as the SIM policy. - slice
Slice
Resource Id Response - A reference to the slice that these settings apply to. The slice must be in the same location as the SIM policy.
- data_
network_ Sequence[Dataconfigurations Network Configuration Response] - The allowed data networks and the settings to use for them. The list must not contain duplicate items and must contain at least one item.
- default_
data_ Datanetwork Network Resource Id Response - The default data network to use if the UE does not explicitly specify it. Configuration for this object must exist in the
dataNetworkConfigurations
map. The data network must be in the same location as the SIM policy. - slice
Slice
Resource Id Response - A reference to the slice that these settings apply to. The slice must be in the same location as the SIM policy.
- data
Network List<Property Map>Configurations - The allowed data networks and the settings to use for them. The list must not contain duplicate items and must contain at least one item.
- default
Data Property MapNetwork - The default data network to use if the UE does not explicitly specify it. Configuration for this object must exist in the
dataNetworkConfigurations
map. The data network must be in the same location as the SIM policy. - slice Property Map
- A reference to the slice that these settings apply to. The slice must be in the same location as the SIM policy.
SliceResourceId, SliceResourceIdArgs
- Id string
- Slice resource ID.
- Id string
- Slice resource ID.
- id String
- Slice resource ID.
- id string
- Slice resource ID.
- id str
- Slice resource ID.
- id String
- Slice resource ID.
SliceResourceIdResponse, SliceResourceIdResponseArgs
- Id string
- Slice resource ID.
- Id string
- Slice resource ID.
- id String
- Slice resource ID.
- id string
- Slice resource ID.
- id str
- Slice resource ID.
- id String
- Slice resource ID.
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:mobilenetwork:SimPolicy testPolicy /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/mobileNetworks/{mobileNetworkName}/simPolicies/{simPolicyName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0