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

We recommend using Azure Native.

Azure Classic v5.77.1 published on Monday, May 13, 2024 by Pulumi

azure.mobile.NetworkService

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

Azure Classic v5.77.1 published on Monday, May 13, 2024 by Pulumi

    Manages a Mobile Network Service.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const example = new azure.core.ResourceGroup("example", {
        name: "example-resources",
        location: "east us",
    });
    const exampleNetwork = new azure.mobile.Network("example", {
        name: "example-mn",
        location: example.location,
        resourceGroupName: example.name,
        mobileCountryCode: "001",
        mobileNetworkCode: "01",
    });
    const exampleNetworkService = new azure.mobile.NetworkService("example", {
        name: "example-mns",
        mobileNetworkId: exampleNetwork.id,
        location: example.location,
        servicePrecedence: 0,
        pccRules: [{
            name: "default-rule",
            precedence: 1,
            trafficControlEnabled: true,
            qosPolicy: {
                allocationAndRetentionPriorityLevel: 9,
                qosIndicator: 9,
                preemptionCapability: "NotPreempt",
                preemptionVulnerability: "Preemptable",
                guaranteedBitRate: {
                    downlink: "100 Mbps",
                    uplink: "10 Mbps",
                },
                maximumBitRate: {
                    downlink: "1 Gbps",
                    uplink: "100 Mbps",
                },
            },
            serviceDataFlowTemplates: [{
                direction: "Uplink",
                name: "IP-to-server",
                ports: [],
                protocols: ["ip"],
                remoteIpLists: ["10.3.4.0/24"],
            }],
        }],
        serviceQosPolicy: {
            allocationAndRetentionPriorityLevel: 9,
            qosIndicator: 9,
            preemptionCapability: "NotPreempt",
            preemptionVulnerability: "Preemptable",
            maximumBitRate: {
                downlink: "1 Gbps",
                uplink: "100 Mbps",
            },
        },
        tags: {
            key: "value",
        },
    });
    
    import pulumi
    import pulumi_azure as azure
    
    example = azure.core.ResourceGroup("example",
        name="example-resources",
        location="east us")
    example_network = azure.mobile.Network("example",
        name="example-mn",
        location=example.location,
        resource_group_name=example.name,
        mobile_country_code="001",
        mobile_network_code="01")
    example_network_service = azure.mobile.NetworkService("example",
        name="example-mns",
        mobile_network_id=example_network.id,
        location=example.location,
        service_precedence=0,
        pcc_rules=[azure.mobile.NetworkServicePccRuleArgs(
            name="default-rule",
            precedence=1,
            traffic_control_enabled=True,
            qos_policy=azure.mobile.NetworkServicePccRuleQosPolicyArgs(
                allocation_and_retention_priority_level=9,
                qos_indicator=9,
                preemption_capability="NotPreempt",
                preemption_vulnerability="Preemptable",
                guaranteed_bit_rate=azure.mobile.NetworkServicePccRuleQosPolicyGuaranteedBitRateArgs(
                    downlink="100 Mbps",
                    uplink="10 Mbps",
                ),
                maximum_bit_rate=azure.mobile.NetworkServicePccRuleQosPolicyMaximumBitRateArgs(
                    downlink="1 Gbps",
                    uplink="100 Mbps",
                ),
            ),
            service_data_flow_templates=[azure.mobile.NetworkServicePccRuleServiceDataFlowTemplateArgs(
                direction="Uplink",
                name="IP-to-server",
                ports=[],
                protocols=["ip"],
                remote_ip_lists=["10.3.4.0/24"],
            )],
        )],
        service_qos_policy=azure.mobile.NetworkServiceServiceQosPolicyArgs(
            allocation_and_retention_priority_level=9,
            qos_indicator=9,
            preemption_capability="NotPreempt",
            preemption_vulnerability="Preemptable",
            maximum_bit_rate=azure.mobile.NetworkServiceServiceQosPolicyMaximumBitRateArgs(
                downlink="1 Gbps",
                uplink="100 Mbps",
            ),
        ),
        tags={
            "key": "value",
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/mobile"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
    			Name:     pulumi.String("example-resources"),
    			Location: pulumi.String("east us"),
    		})
    		if err != nil {
    			return err
    		}
    		exampleNetwork, err := mobile.NewNetwork(ctx, "example", &mobile.NetworkArgs{
    			Name:              pulumi.String("example-mn"),
    			Location:          example.Location,
    			ResourceGroupName: example.Name,
    			MobileCountryCode: pulumi.String("001"),
    			MobileNetworkCode: pulumi.String("01"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = mobile.NewNetworkService(ctx, "example", &mobile.NetworkServiceArgs{
    			Name:              pulumi.String("example-mns"),
    			MobileNetworkId:   exampleNetwork.ID(),
    			Location:          example.Location,
    			ServicePrecedence: pulumi.Int(0),
    			PccRules: mobile.NetworkServicePccRuleArray{
    				&mobile.NetworkServicePccRuleArgs{
    					Name:                  pulumi.String("default-rule"),
    					Precedence:            pulumi.Int(1),
    					TrafficControlEnabled: pulumi.Bool(true),
    					QosPolicy: &mobile.NetworkServicePccRuleQosPolicyArgs{
    						AllocationAndRetentionPriorityLevel: pulumi.Int(9),
    						QosIndicator:                        pulumi.Int(9),
    						PreemptionCapability:                pulumi.String("NotPreempt"),
    						PreemptionVulnerability:             pulumi.String("Preemptable"),
    						GuaranteedBitRate: &mobile.NetworkServicePccRuleQosPolicyGuaranteedBitRateArgs{
    							Downlink: pulumi.String("100 Mbps"),
    							Uplink:   pulumi.String("10 Mbps"),
    						},
    						MaximumBitRate: &mobile.NetworkServicePccRuleQosPolicyMaximumBitRateArgs{
    							Downlink: pulumi.String("1 Gbps"),
    							Uplink:   pulumi.String("100 Mbps"),
    						},
    					},
    					ServiceDataFlowTemplates: mobile.NetworkServicePccRuleServiceDataFlowTemplateArray{
    						&mobile.NetworkServicePccRuleServiceDataFlowTemplateArgs{
    							Direction: pulumi.String("Uplink"),
    							Name:      pulumi.String("IP-to-server"),
    							Ports:     pulumi.StringArray{},
    							Protocols: pulumi.StringArray{
    								pulumi.String("ip"),
    							},
    							RemoteIpLists: pulumi.StringArray{
    								pulumi.String("10.3.4.0/24"),
    							},
    						},
    					},
    				},
    			},
    			ServiceQosPolicy: &mobile.NetworkServiceServiceQosPolicyArgs{
    				AllocationAndRetentionPriorityLevel: pulumi.Int(9),
    				QosIndicator:                        pulumi.Int(9),
    				PreemptionCapability:                pulumi.String("NotPreempt"),
    				PreemptionVulnerability:             pulumi.String("Preemptable"),
    				MaximumBitRate: &mobile.NetworkServiceServiceQosPolicyMaximumBitRateArgs{
    					Downlink: pulumi.String("1 Gbps"),
    					Uplink:   pulumi.String("100 Mbps"),
    				},
    			},
    			Tags: pulumi.StringMap{
    				"key": pulumi.String("value"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Azure = Pulumi.Azure;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Azure.Core.ResourceGroup("example", new()
        {
            Name = "example-resources",
            Location = "east us",
        });
    
        var exampleNetwork = new Azure.Mobile.Network("example", new()
        {
            Name = "example-mn",
            Location = example.Location,
            ResourceGroupName = example.Name,
            MobileCountryCode = "001",
            MobileNetworkCode = "01",
        });
    
        var exampleNetworkService = new Azure.Mobile.NetworkService("example", new()
        {
            Name = "example-mns",
            MobileNetworkId = exampleNetwork.Id,
            Location = example.Location,
            ServicePrecedence = 0,
            PccRules = new[]
            {
                new Azure.Mobile.Inputs.NetworkServicePccRuleArgs
                {
                    Name = "default-rule",
                    Precedence = 1,
                    TrafficControlEnabled = true,
                    QosPolicy = new Azure.Mobile.Inputs.NetworkServicePccRuleQosPolicyArgs
                    {
                        AllocationAndRetentionPriorityLevel = 9,
                        QosIndicator = 9,
                        PreemptionCapability = "NotPreempt",
                        PreemptionVulnerability = "Preemptable",
                        GuaranteedBitRate = new Azure.Mobile.Inputs.NetworkServicePccRuleQosPolicyGuaranteedBitRateArgs
                        {
                            Downlink = "100 Mbps",
                            Uplink = "10 Mbps",
                        },
                        MaximumBitRate = new Azure.Mobile.Inputs.NetworkServicePccRuleQosPolicyMaximumBitRateArgs
                        {
                            Downlink = "1 Gbps",
                            Uplink = "100 Mbps",
                        },
                    },
                    ServiceDataFlowTemplates = new[]
                    {
                        new Azure.Mobile.Inputs.NetworkServicePccRuleServiceDataFlowTemplateArgs
                        {
                            Direction = "Uplink",
                            Name = "IP-to-server",
                            Ports = new() { },
                            Protocols = new[]
                            {
                                "ip",
                            },
                            RemoteIpLists = new[]
                            {
                                "10.3.4.0/24",
                            },
                        },
                    },
                },
            },
            ServiceQosPolicy = new Azure.Mobile.Inputs.NetworkServiceServiceQosPolicyArgs
            {
                AllocationAndRetentionPriorityLevel = 9,
                QosIndicator = 9,
                PreemptionCapability = "NotPreempt",
                PreemptionVulnerability = "Preemptable",
                MaximumBitRate = new Azure.Mobile.Inputs.NetworkServiceServiceQosPolicyMaximumBitRateArgs
                {
                    Downlink = "1 Gbps",
                    Uplink = "100 Mbps",
                },
            },
            Tags = 
            {
                { "key", "value" },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azure.core.ResourceGroup;
    import com.pulumi.azure.core.ResourceGroupArgs;
    import com.pulumi.azure.mobile.Network;
    import com.pulumi.azure.mobile.NetworkArgs;
    import com.pulumi.azure.mobile.NetworkService;
    import com.pulumi.azure.mobile.NetworkServiceArgs;
    import com.pulumi.azure.mobile.inputs.NetworkServicePccRuleArgs;
    import com.pulumi.azure.mobile.inputs.NetworkServicePccRuleQosPolicyArgs;
    import com.pulumi.azure.mobile.inputs.NetworkServicePccRuleQosPolicyGuaranteedBitRateArgs;
    import com.pulumi.azure.mobile.inputs.NetworkServicePccRuleQosPolicyMaximumBitRateArgs;
    import com.pulumi.azure.mobile.inputs.NetworkServiceServiceQosPolicyArgs;
    import com.pulumi.azure.mobile.inputs.NetworkServiceServiceQosPolicyMaximumBitRateArgs;
    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 example = new ResourceGroup("example", ResourceGroupArgs.builder()        
                .name("example-resources")
                .location("east us")
                .build());
    
            var exampleNetwork = new Network("exampleNetwork", NetworkArgs.builder()        
                .name("example-mn")
                .location(example.location())
                .resourceGroupName(example.name())
                .mobileCountryCode("001")
                .mobileNetworkCode("01")
                .build());
    
            var exampleNetworkService = new NetworkService("exampleNetworkService", NetworkServiceArgs.builder()        
                .name("example-mns")
                .mobileNetworkId(exampleNetwork.id())
                .location(example.location())
                .servicePrecedence(0)
                .pccRules(NetworkServicePccRuleArgs.builder()
                    .name("default-rule")
                    .precedence(1)
                    .trafficControlEnabled(true)
                    .qosPolicy(NetworkServicePccRuleQosPolicyArgs.builder()
                        .allocationAndRetentionPriorityLevel(9)
                        .qosIndicator(9)
                        .preemptionCapability("NotPreempt")
                        .preemptionVulnerability("Preemptable")
                        .guaranteedBitRate(NetworkServicePccRuleQosPolicyGuaranteedBitRateArgs.builder()
                            .downlink("100 Mbps")
                            .uplink("10 Mbps")
                            .build())
                        .maximumBitRate(NetworkServicePccRuleQosPolicyMaximumBitRateArgs.builder()
                            .downlink("1 Gbps")
                            .uplink("100 Mbps")
                            .build())
                        .build())
                    .serviceDataFlowTemplates(NetworkServicePccRuleServiceDataFlowTemplateArgs.builder()
                        .direction("Uplink")
                        .name("IP-to-server")
                        .ports()
                        .protocols("ip")
                        .remoteIpLists("10.3.4.0/24")
                        .build())
                    .build())
                .serviceQosPolicy(NetworkServiceServiceQosPolicyArgs.builder()
                    .allocationAndRetentionPriorityLevel(9)
                    .qosIndicator(9)
                    .preemptionCapability("NotPreempt")
                    .preemptionVulnerability("Preemptable")
                    .maximumBitRate(NetworkServiceServiceQosPolicyMaximumBitRateArgs.builder()
                        .downlink("1 Gbps")
                        .uplink("100 Mbps")
                        .build())
                    .build())
                .tags(Map.of("key", "value"))
                .build());
    
        }
    }
    
    resources:
      example:
        type: azure:core:ResourceGroup
        properties:
          name: example-resources
          location: east us
      exampleNetwork:
        type: azure:mobile:Network
        name: example
        properties:
          name: example-mn
          location: ${example.location}
          resourceGroupName: ${example.name}
          mobileCountryCode: '001'
          mobileNetworkCode: '01'
      exampleNetworkService:
        type: azure:mobile:NetworkService
        name: example
        properties:
          name: example-mns
          mobileNetworkId: ${exampleNetwork.id}
          location: ${example.location}
          servicePrecedence: 0
          pccRules:
            - name: default-rule
              precedence: 1
              trafficControlEnabled: true
              qosPolicy:
                allocationAndRetentionPriorityLevel: 9
                qosIndicator: 9
                preemptionCapability: NotPreempt
                preemptionVulnerability: Preemptable
                guaranteedBitRate:
                  downlink: 100 Mbps
                  uplink: 10 Mbps
                maximumBitRate:
                  downlink: 1 Gbps
                  uplink: 100 Mbps
              serviceDataFlowTemplates:
                - direction: Uplink
                  name: IP-to-server
                  ports: []
                  protocols:
                    - ip
                  remoteIpLists:
                    - 10.3.4.0/24
          serviceQosPolicy:
            allocationAndRetentionPriorityLevel: 9
            qosIndicator: 9
            preemptionCapability: NotPreempt
            preemptionVulnerability: Preemptable
            maximumBitRate:
              downlink: 1 Gbps
              uplink: 100 Mbps
          tags:
            key: value
    

    Create NetworkService Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new NetworkService(name: string, args: NetworkServiceArgs, opts?: CustomResourceOptions);
    @overload
    def NetworkService(resource_name: str,
                       args: NetworkServiceArgs,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def NetworkService(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       mobile_network_id: Optional[str] = None,
                       pcc_rules: Optional[Sequence[NetworkServicePccRuleArgs]] = None,
                       service_precedence: Optional[int] = None,
                       location: Optional[str] = None,
                       name: Optional[str] = None,
                       service_qos_policy: Optional[NetworkServiceServiceQosPolicyArgs] = None,
                       tags: Optional[Mapping[str, str]] = None)
    func NewNetworkService(ctx *Context, name string, args NetworkServiceArgs, opts ...ResourceOption) (*NetworkService, error)
    public NetworkService(string name, NetworkServiceArgs args, CustomResourceOptions? opts = null)
    public NetworkService(String name, NetworkServiceArgs args)
    public NetworkService(String name, NetworkServiceArgs args, CustomResourceOptions options)
    
    type: azure:mobile:NetworkService
    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 NetworkServiceArgs
    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 NetworkServiceArgs
    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 NetworkServiceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args NetworkServiceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args NetworkServiceArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var networkServiceResource = new Azure.Mobile.NetworkService("networkServiceResource", new()
    {
        MobileNetworkId = "string",
        PccRules = new[]
        {
            new Azure.Mobile.Inputs.NetworkServicePccRuleArgs
            {
                Name = "string",
                Precedence = 0,
                ServiceDataFlowTemplates = new[]
                {
                    new Azure.Mobile.Inputs.NetworkServicePccRuleServiceDataFlowTemplateArgs
                    {
                        Direction = "string",
                        Name = "string",
                        Protocols = new[]
                        {
                            "string",
                        },
                        RemoteIpLists = new[]
                        {
                            "string",
                        },
                        Ports = new[]
                        {
                            "string",
                        },
                    },
                },
                QosPolicy = new Azure.Mobile.Inputs.NetworkServicePccRuleQosPolicyArgs
                {
                    MaximumBitRate = new Azure.Mobile.Inputs.NetworkServicePccRuleQosPolicyMaximumBitRateArgs
                    {
                        Downlink = "string",
                        Uplink = "string",
                    },
                    QosIndicator = 0,
                    AllocationAndRetentionPriorityLevel = 0,
                    GuaranteedBitRate = new Azure.Mobile.Inputs.NetworkServicePccRuleQosPolicyGuaranteedBitRateArgs
                    {
                        Downlink = "string",
                        Uplink = "string",
                    },
                    PreemptionCapability = "string",
                    PreemptionVulnerability = "string",
                },
                TrafficControlEnabled = false,
            },
        },
        ServicePrecedence = 0,
        Location = "string",
        Name = "string",
        ServiceQosPolicy = new Azure.Mobile.Inputs.NetworkServiceServiceQosPolicyArgs
        {
            MaximumBitRate = new Azure.Mobile.Inputs.NetworkServiceServiceQosPolicyMaximumBitRateArgs
            {
                Downlink = "string",
                Uplink = "string",
            },
            AllocationAndRetentionPriorityLevel = 0,
            PreemptionCapability = "string",
            PreemptionVulnerability = "string",
            QosIndicator = 0,
        },
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := mobile.NewNetworkService(ctx, "networkServiceResource", &mobile.NetworkServiceArgs{
    	MobileNetworkId: pulumi.String("string"),
    	PccRules: mobile.NetworkServicePccRuleArray{
    		&mobile.NetworkServicePccRuleArgs{
    			Name:       pulumi.String("string"),
    			Precedence: pulumi.Int(0),
    			ServiceDataFlowTemplates: mobile.NetworkServicePccRuleServiceDataFlowTemplateArray{
    				&mobile.NetworkServicePccRuleServiceDataFlowTemplateArgs{
    					Direction: pulumi.String("string"),
    					Name:      pulumi.String("string"),
    					Protocols: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    					RemoteIpLists: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    					Ports: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    				},
    			},
    			QosPolicy: &mobile.NetworkServicePccRuleQosPolicyArgs{
    				MaximumBitRate: &mobile.NetworkServicePccRuleQosPolicyMaximumBitRateArgs{
    					Downlink: pulumi.String("string"),
    					Uplink:   pulumi.String("string"),
    				},
    				QosIndicator:                        pulumi.Int(0),
    				AllocationAndRetentionPriorityLevel: pulumi.Int(0),
    				GuaranteedBitRate: &mobile.NetworkServicePccRuleQosPolicyGuaranteedBitRateArgs{
    					Downlink: pulumi.String("string"),
    					Uplink:   pulumi.String("string"),
    				},
    				PreemptionCapability:    pulumi.String("string"),
    				PreemptionVulnerability: pulumi.String("string"),
    			},
    			TrafficControlEnabled: pulumi.Bool(false),
    		},
    	},
    	ServicePrecedence: pulumi.Int(0),
    	Location:          pulumi.String("string"),
    	Name:              pulumi.String("string"),
    	ServiceQosPolicy: &mobile.NetworkServiceServiceQosPolicyArgs{
    		MaximumBitRate: &mobile.NetworkServiceServiceQosPolicyMaximumBitRateArgs{
    			Downlink: pulumi.String("string"),
    			Uplink:   pulumi.String("string"),
    		},
    		AllocationAndRetentionPriorityLevel: pulumi.Int(0),
    		PreemptionCapability:                pulumi.String("string"),
    		PreemptionVulnerability:             pulumi.String("string"),
    		QosIndicator:                        pulumi.Int(0),
    	},
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var networkServiceResource = new NetworkService("networkServiceResource", NetworkServiceArgs.builder()        
        .mobileNetworkId("string")
        .pccRules(NetworkServicePccRuleArgs.builder()
            .name("string")
            .precedence(0)
            .serviceDataFlowTemplates(NetworkServicePccRuleServiceDataFlowTemplateArgs.builder()
                .direction("string")
                .name("string")
                .protocols("string")
                .remoteIpLists("string")
                .ports("string")
                .build())
            .qosPolicy(NetworkServicePccRuleQosPolicyArgs.builder()
                .maximumBitRate(NetworkServicePccRuleQosPolicyMaximumBitRateArgs.builder()
                    .downlink("string")
                    .uplink("string")
                    .build())
                .qosIndicator(0)
                .allocationAndRetentionPriorityLevel(0)
                .guaranteedBitRate(NetworkServicePccRuleQosPolicyGuaranteedBitRateArgs.builder()
                    .downlink("string")
                    .uplink("string")
                    .build())
                .preemptionCapability("string")
                .preemptionVulnerability("string")
                .build())
            .trafficControlEnabled(false)
            .build())
        .servicePrecedence(0)
        .location("string")
        .name("string")
        .serviceQosPolicy(NetworkServiceServiceQosPolicyArgs.builder()
            .maximumBitRate(NetworkServiceServiceQosPolicyMaximumBitRateArgs.builder()
                .downlink("string")
                .uplink("string")
                .build())
            .allocationAndRetentionPriorityLevel(0)
            .preemptionCapability("string")
            .preemptionVulnerability("string")
            .qosIndicator(0)
            .build())
        .tags(Map.of("string", "string"))
        .build());
    
    network_service_resource = azure.mobile.NetworkService("networkServiceResource",
        mobile_network_id="string",
        pcc_rules=[azure.mobile.NetworkServicePccRuleArgs(
            name="string",
            precedence=0,
            service_data_flow_templates=[azure.mobile.NetworkServicePccRuleServiceDataFlowTemplateArgs(
                direction="string",
                name="string",
                protocols=["string"],
                remote_ip_lists=["string"],
                ports=["string"],
            )],
            qos_policy=azure.mobile.NetworkServicePccRuleQosPolicyArgs(
                maximum_bit_rate=azure.mobile.NetworkServicePccRuleQosPolicyMaximumBitRateArgs(
                    downlink="string",
                    uplink="string",
                ),
                qos_indicator=0,
                allocation_and_retention_priority_level=0,
                guaranteed_bit_rate=azure.mobile.NetworkServicePccRuleQosPolicyGuaranteedBitRateArgs(
                    downlink="string",
                    uplink="string",
                ),
                preemption_capability="string",
                preemption_vulnerability="string",
            ),
            traffic_control_enabled=False,
        )],
        service_precedence=0,
        location="string",
        name="string",
        service_qos_policy=azure.mobile.NetworkServiceServiceQosPolicyArgs(
            maximum_bit_rate=azure.mobile.NetworkServiceServiceQosPolicyMaximumBitRateArgs(
                downlink="string",
                uplink="string",
            ),
            allocation_and_retention_priority_level=0,
            preemption_capability="string",
            preemption_vulnerability="string",
            qos_indicator=0,
        ),
        tags={
            "string": "string",
        })
    
    const networkServiceResource = new azure.mobile.NetworkService("networkServiceResource", {
        mobileNetworkId: "string",
        pccRules: [{
            name: "string",
            precedence: 0,
            serviceDataFlowTemplates: [{
                direction: "string",
                name: "string",
                protocols: ["string"],
                remoteIpLists: ["string"],
                ports: ["string"],
            }],
            qosPolicy: {
                maximumBitRate: {
                    downlink: "string",
                    uplink: "string",
                },
                qosIndicator: 0,
                allocationAndRetentionPriorityLevel: 0,
                guaranteedBitRate: {
                    downlink: "string",
                    uplink: "string",
                },
                preemptionCapability: "string",
                preemptionVulnerability: "string",
            },
            trafficControlEnabled: false,
        }],
        servicePrecedence: 0,
        location: "string",
        name: "string",
        serviceQosPolicy: {
            maximumBitRate: {
                downlink: "string",
                uplink: "string",
            },
            allocationAndRetentionPriorityLevel: 0,
            preemptionCapability: "string",
            preemptionVulnerability: "string",
            qosIndicator: 0,
        },
        tags: {
            string: "string",
        },
    });
    
    type: azure:mobile:NetworkService
    properties:
        location: string
        mobileNetworkId: string
        name: string
        pccRules:
            - name: string
              precedence: 0
              qosPolicy:
                allocationAndRetentionPriorityLevel: 0
                guaranteedBitRate:
                    downlink: string
                    uplink: string
                maximumBitRate:
                    downlink: string
                    uplink: string
                preemptionCapability: string
                preemptionVulnerability: string
                qosIndicator: 0
              serviceDataFlowTemplates:
                - direction: string
                  name: string
                  ports:
                    - string
                  protocols:
                    - string
                  remoteIpLists:
                    - string
              trafficControlEnabled: false
        servicePrecedence: 0
        serviceQosPolicy:
            allocationAndRetentionPriorityLevel: 0
            maximumBitRate:
                downlink: string
                uplink: string
            preemptionCapability: string
            preemptionVulnerability: string
            qosIndicator: 0
        tags:
            string: string
    

    NetworkService 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 NetworkService resource accepts the following input properties:

    MobileNetworkId string
    Specifies the ID of the Mobile Network Service. Changing this forces a new Mobile Network Service to be created.
    PccRules List<NetworkServicePccRule>
    A pcc_rule block as defined below. The set of PCC Rules that make up this service.
    ServicePrecedence int
    A precedence value that is used to decide between services when identifying the QoS values to use for a particular SIM. A lower value means a higher priority. This value should be unique among all services configured in the mobile network. Must be between 0 and 255.
    Location string
    Specifies the Azure Region where the Mobile Network Service should exist. Changing this forces a new Mobile Network Service to be created.
    Name string
    Specifies the name which should be used for this Mobile Network Service. Changing this forces a new Mobile Network Service to be created.
    ServiceQosPolicy NetworkServiceServiceQosPolicy
    A service_qos_policy block as defined below. The QoS policy to use for packets matching this service. This can be overridden for particular flows using the ruleQosPolicy field in a pcc_rule. If this field is not specified then the sim_policy of User Equipment (UE) will define the QoS settings.
    Tags Dictionary<string, string>
    A mapping of tags which should be assigned to the Mobile Network Service.
    MobileNetworkId string
    Specifies the ID of the Mobile Network Service. Changing this forces a new Mobile Network Service to be created.
    PccRules []NetworkServicePccRuleArgs
    A pcc_rule block as defined below. The set of PCC Rules that make up this service.
    ServicePrecedence int
    A precedence value that is used to decide between services when identifying the QoS values to use for a particular SIM. A lower value means a higher priority. This value should be unique among all services configured in the mobile network. Must be between 0 and 255.
    Location string
    Specifies the Azure Region where the Mobile Network Service should exist. Changing this forces a new Mobile Network Service to be created.
    Name string
    Specifies the name which should be used for this Mobile Network Service. Changing this forces a new Mobile Network Service to be created.
    ServiceQosPolicy NetworkServiceServiceQosPolicyArgs
    A service_qos_policy block as defined below. The QoS policy to use for packets matching this service. This can be overridden for particular flows using the ruleQosPolicy field in a pcc_rule. If this field is not specified then the sim_policy of User Equipment (UE) will define the QoS settings.
    Tags map[string]string
    A mapping of tags which should be assigned to the Mobile Network Service.
    mobileNetworkId String
    Specifies the ID of the Mobile Network Service. Changing this forces a new Mobile Network Service to be created.
    pccRules List<NetworkServicePccRule>
    A pcc_rule block as defined below. The set of PCC Rules that make up this service.
    servicePrecedence Integer
    A precedence value that is used to decide between services when identifying the QoS values to use for a particular SIM. A lower value means a higher priority. This value should be unique among all services configured in the mobile network. Must be between 0 and 255.
    location String
    Specifies the Azure Region where the Mobile Network Service should exist. Changing this forces a new Mobile Network Service to be created.
    name String
    Specifies the name which should be used for this Mobile Network Service. Changing this forces a new Mobile Network Service to be created.
    serviceQosPolicy NetworkServiceServiceQosPolicy
    A service_qos_policy block as defined below. The QoS policy to use for packets matching this service. This can be overridden for particular flows using the ruleQosPolicy field in a pcc_rule. If this field is not specified then the sim_policy of User Equipment (UE) will define the QoS settings.
    tags Map<String,String>
    A mapping of tags which should be assigned to the Mobile Network Service.
    mobileNetworkId string
    Specifies the ID of the Mobile Network Service. Changing this forces a new Mobile Network Service to be created.
    pccRules NetworkServicePccRule[]
    A pcc_rule block as defined below. The set of PCC Rules that make up this service.
    servicePrecedence number
    A precedence value that is used to decide between services when identifying the QoS values to use for a particular SIM. A lower value means a higher priority. This value should be unique among all services configured in the mobile network. Must be between 0 and 255.
    location string
    Specifies the Azure Region where the Mobile Network Service should exist. Changing this forces a new Mobile Network Service to be created.
    name string
    Specifies the name which should be used for this Mobile Network Service. Changing this forces a new Mobile Network Service to be created.
    serviceQosPolicy NetworkServiceServiceQosPolicy
    A service_qos_policy block as defined below. The QoS policy to use for packets matching this service. This can be overridden for particular flows using the ruleQosPolicy field in a pcc_rule. If this field is not specified then the sim_policy of User Equipment (UE) will define the QoS settings.
    tags {[key: string]: string}
    A mapping of tags which should be assigned to the Mobile Network Service.
    mobile_network_id str
    Specifies the ID of the Mobile Network Service. Changing this forces a new Mobile Network Service to be created.
    pcc_rules Sequence[NetworkServicePccRuleArgs]
    A pcc_rule block as defined below. The set of PCC Rules that make up this service.
    service_precedence int
    A precedence value that is used to decide between services when identifying the QoS values to use for a particular SIM. A lower value means a higher priority. This value should be unique among all services configured in the mobile network. Must be between 0 and 255.
    location str
    Specifies the Azure Region where the Mobile Network Service should exist. Changing this forces a new Mobile Network Service to be created.
    name str
    Specifies the name which should be used for this Mobile Network Service. Changing this forces a new Mobile Network Service to be created.
    service_qos_policy NetworkServiceServiceQosPolicyArgs
    A service_qos_policy block as defined below. The QoS policy to use for packets matching this service. This can be overridden for particular flows using the ruleQosPolicy field in a pcc_rule. If this field is not specified then the sim_policy of User Equipment (UE) will define the QoS settings.
    tags Mapping[str, str]
    A mapping of tags which should be assigned to the Mobile Network Service.
    mobileNetworkId String
    Specifies the ID of the Mobile Network Service. Changing this forces a new Mobile Network Service to be created.
    pccRules List<Property Map>
    A pcc_rule block as defined below. The set of PCC Rules that make up this service.
    servicePrecedence Number
    A precedence value that is used to decide between services when identifying the QoS values to use for a particular SIM. A lower value means a higher priority. This value should be unique among all services configured in the mobile network. Must be between 0 and 255.
    location String
    Specifies the Azure Region where the Mobile Network Service should exist. Changing this forces a new Mobile Network Service to be created.
    name String
    Specifies the name which should be used for this Mobile Network Service. Changing this forces a new Mobile Network Service to be created.
    serviceQosPolicy Property Map
    A service_qos_policy block as defined below. The QoS policy to use for packets matching this service. This can be overridden for particular flows using the ruleQosPolicy field in a pcc_rule. If this field is not specified then the sim_policy of User Equipment (UE) will define the QoS settings.
    tags Map<String>
    A mapping of tags which should be assigned to the Mobile Network Service.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the NetworkService resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing NetworkService Resource

    Get an existing NetworkService resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: NetworkServiceState, opts?: CustomResourceOptions): NetworkService
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            location: Optional[str] = None,
            mobile_network_id: Optional[str] = None,
            name: Optional[str] = None,
            pcc_rules: Optional[Sequence[NetworkServicePccRuleArgs]] = None,
            service_precedence: Optional[int] = None,
            service_qos_policy: Optional[NetworkServiceServiceQosPolicyArgs] = None,
            tags: Optional[Mapping[str, str]] = None) -> NetworkService
    func GetNetworkService(ctx *Context, name string, id IDInput, state *NetworkServiceState, opts ...ResourceOption) (*NetworkService, error)
    public static NetworkService Get(string name, Input<string> id, NetworkServiceState? state, CustomResourceOptions? opts = null)
    public static NetworkService get(String name, Output<String> id, NetworkServiceState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Location string
    Specifies the Azure Region where the Mobile Network Service should exist. Changing this forces a new Mobile Network Service to be created.
    MobileNetworkId string
    Specifies the ID of the Mobile Network Service. Changing this forces a new Mobile Network Service to be created.
    Name string
    Specifies the name which should be used for this Mobile Network Service. Changing this forces a new Mobile Network Service to be created.
    PccRules List<NetworkServicePccRule>
    A pcc_rule block as defined below. The set of PCC Rules that make up this service.
    ServicePrecedence int
    A precedence value that is used to decide between services when identifying the QoS values to use for a particular SIM. A lower value means a higher priority. This value should be unique among all services configured in the mobile network. Must be between 0 and 255.
    ServiceQosPolicy NetworkServiceServiceQosPolicy
    A service_qos_policy block as defined below. The QoS policy to use for packets matching this service. This can be overridden for particular flows using the ruleQosPolicy field in a pcc_rule. If this field is not specified then the sim_policy of User Equipment (UE) will define the QoS settings.
    Tags Dictionary<string, string>
    A mapping of tags which should be assigned to the Mobile Network Service.
    Location string
    Specifies the Azure Region where the Mobile Network Service should exist. Changing this forces a new Mobile Network Service to be created.
    MobileNetworkId string
    Specifies the ID of the Mobile Network Service. Changing this forces a new Mobile Network Service to be created.
    Name string
    Specifies the name which should be used for this Mobile Network Service. Changing this forces a new Mobile Network Service to be created.
    PccRules []NetworkServicePccRuleArgs
    A pcc_rule block as defined below. The set of PCC Rules that make up this service.
    ServicePrecedence int
    A precedence value that is used to decide between services when identifying the QoS values to use for a particular SIM. A lower value means a higher priority. This value should be unique among all services configured in the mobile network. Must be between 0 and 255.
    ServiceQosPolicy NetworkServiceServiceQosPolicyArgs
    A service_qos_policy block as defined below. The QoS policy to use for packets matching this service. This can be overridden for particular flows using the ruleQosPolicy field in a pcc_rule. If this field is not specified then the sim_policy of User Equipment (UE) will define the QoS settings.
    Tags map[string]string
    A mapping of tags which should be assigned to the Mobile Network Service.
    location String
    Specifies the Azure Region where the Mobile Network Service should exist. Changing this forces a new Mobile Network Service to be created.
    mobileNetworkId String
    Specifies the ID of the Mobile Network Service. Changing this forces a new Mobile Network Service to be created.
    name String
    Specifies the name which should be used for this Mobile Network Service. Changing this forces a new Mobile Network Service to be created.
    pccRules List<NetworkServicePccRule>
    A pcc_rule block as defined below. The set of PCC Rules that make up this service.
    servicePrecedence Integer
    A precedence value that is used to decide between services when identifying the QoS values to use for a particular SIM. A lower value means a higher priority. This value should be unique among all services configured in the mobile network. Must be between 0 and 255.
    serviceQosPolicy NetworkServiceServiceQosPolicy
    A service_qos_policy block as defined below. The QoS policy to use for packets matching this service. This can be overridden for particular flows using the ruleQosPolicy field in a pcc_rule. If this field is not specified then the sim_policy of User Equipment (UE) will define the QoS settings.
    tags Map<String,String>
    A mapping of tags which should be assigned to the Mobile Network Service.
    location string
    Specifies the Azure Region where the Mobile Network Service should exist. Changing this forces a new Mobile Network Service to be created.
    mobileNetworkId string
    Specifies the ID of the Mobile Network Service. Changing this forces a new Mobile Network Service to be created.
    name string
    Specifies the name which should be used for this Mobile Network Service. Changing this forces a new Mobile Network Service to be created.
    pccRules NetworkServicePccRule[]
    A pcc_rule block as defined below. The set of PCC Rules that make up this service.
    servicePrecedence number
    A precedence value that is used to decide between services when identifying the QoS values to use for a particular SIM. A lower value means a higher priority. This value should be unique among all services configured in the mobile network. Must be between 0 and 255.
    serviceQosPolicy NetworkServiceServiceQosPolicy
    A service_qos_policy block as defined below. The QoS policy to use for packets matching this service. This can be overridden for particular flows using the ruleQosPolicy field in a pcc_rule. If this field is not specified then the sim_policy of User Equipment (UE) will define the QoS settings.
    tags {[key: string]: string}
    A mapping of tags which should be assigned to the Mobile Network Service.
    location str
    Specifies the Azure Region where the Mobile Network Service should exist. Changing this forces a new Mobile Network Service to be created.
    mobile_network_id str
    Specifies the ID of the Mobile Network Service. Changing this forces a new Mobile Network Service to be created.
    name str
    Specifies the name which should be used for this Mobile Network Service. Changing this forces a new Mobile Network Service to be created.
    pcc_rules Sequence[NetworkServicePccRuleArgs]
    A pcc_rule block as defined below. The set of PCC Rules that make up this service.
    service_precedence int
    A precedence value that is used to decide between services when identifying the QoS values to use for a particular SIM. A lower value means a higher priority. This value should be unique among all services configured in the mobile network. Must be between 0 and 255.
    service_qos_policy NetworkServiceServiceQosPolicyArgs
    A service_qos_policy block as defined below. The QoS policy to use for packets matching this service. This can be overridden for particular flows using the ruleQosPolicy field in a pcc_rule. If this field is not specified then the sim_policy of User Equipment (UE) will define the QoS settings.
    tags Mapping[str, str]
    A mapping of tags which should be assigned to the Mobile Network Service.
    location String
    Specifies the Azure Region where the Mobile Network Service should exist. Changing this forces a new Mobile Network Service to be created.
    mobileNetworkId String
    Specifies the ID of the Mobile Network Service. Changing this forces a new Mobile Network Service to be created.
    name String
    Specifies the name which should be used for this Mobile Network Service. Changing this forces a new Mobile Network Service to be created.
    pccRules List<Property Map>
    A pcc_rule block as defined below. The set of PCC Rules that make up this service.
    servicePrecedence Number
    A precedence value that is used to decide between services when identifying the QoS values to use for a particular SIM. A lower value means a higher priority. This value should be unique among all services configured in the mobile network. Must be between 0 and 255.
    serviceQosPolicy Property Map
    A service_qos_policy block as defined below. The QoS policy to use for packets matching this service. This can be overridden for particular flows using the ruleQosPolicy field in a pcc_rule. If this field is not specified then the sim_policy of User Equipment (UE) will define the QoS settings.
    tags Map<String>
    A mapping of tags which should be assigned to the Mobile Network Service.

    Supporting Types

    NetworkServicePccRule, NetworkServicePccRuleArgs

    Name string
    Specifies the name of the rule. This must be unique within the parent service. You must not use any of the following reserved strings - default, requested or service.
    Precedence int
    A precedence value that is used to decide between data flow policy rules when identifying the QoS values to use for a particular SIM. A lower value means a higher priority. This value should be unique among all data flow policy rules configured in the mobile network. Must be between 0 and 255.
    ServiceDataFlowTemplates List<NetworkServicePccRuleServiceDataFlowTemplate>
    A service_data_flow_template block as defined below. The set of service data flow templates to use for this PCC rule.
    QosPolicy NetworkServicePccRuleQosPolicy
    A qos_policy block as defined below. The QoS policy to use for packets matching this rule. If this field is not specified then the Service will define the QoS settings.
    TrafficControlEnabled bool
    Determines whether flows that match this data flow policy rule are permitted. Defaults to true.
    Name string
    Specifies the name of the rule. This must be unique within the parent service. You must not use any of the following reserved strings - default, requested or service.
    Precedence int
    A precedence value that is used to decide between data flow policy rules when identifying the QoS values to use for a particular SIM. A lower value means a higher priority. This value should be unique among all data flow policy rules configured in the mobile network. Must be between 0 and 255.
    ServiceDataFlowTemplates []NetworkServicePccRuleServiceDataFlowTemplate
    A service_data_flow_template block as defined below. The set of service data flow templates to use for this PCC rule.
    QosPolicy NetworkServicePccRuleQosPolicy
    A qos_policy block as defined below. The QoS policy to use for packets matching this rule. If this field is not specified then the Service will define the QoS settings.
    TrafficControlEnabled bool
    Determines whether flows that match this data flow policy rule are permitted. Defaults to true.
    name String
    Specifies the name of the rule. This must be unique within the parent service. You must not use any of the following reserved strings - default, requested or service.
    precedence Integer
    A precedence value that is used to decide between data flow policy rules when identifying the QoS values to use for a particular SIM. A lower value means a higher priority. This value should be unique among all data flow policy rules configured in the mobile network. Must be between 0 and 255.
    serviceDataFlowTemplates List<NetworkServicePccRuleServiceDataFlowTemplate>
    A service_data_flow_template block as defined below. The set of service data flow templates to use for this PCC rule.
    qosPolicy NetworkServicePccRuleQosPolicy
    A qos_policy block as defined below. The QoS policy to use for packets matching this rule. If this field is not specified then the Service will define the QoS settings.
    trafficControlEnabled Boolean
    Determines whether flows that match this data flow policy rule are permitted. Defaults to true.
    name string
    Specifies the name of the rule. This must be unique within the parent service. You must not use any of the following reserved strings - default, requested or service.
    precedence number
    A precedence value that is used to decide between data flow policy rules when identifying the QoS values to use for a particular SIM. A lower value means a higher priority. This value should be unique among all data flow policy rules configured in the mobile network. Must be between 0 and 255.
    serviceDataFlowTemplates NetworkServicePccRuleServiceDataFlowTemplate[]
    A service_data_flow_template block as defined below. The set of service data flow templates to use for this PCC rule.
    qosPolicy NetworkServicePccRuleQosPolicy
    A qos_policy block as defined below. The QoS policy to use for packets matching this rule. If this field is not specified then the Service will define the QoS settings.
    trafficControlEnabled boolean
    Determines whether flows that match this data flow policy rule are permitted. Defaults to true.
    name str
    Specifies the name of the rule. This must be unique within the parent service. You must not use any of the following reserved strings - default, requested or service.
    precedence int
    A precedence value that is used to decide between data flow policy rules when identifying the QoS values to use for a particular SIM. A lower value means a higher priority. This value should be unique among all data flow policy rules configured in the mobile network. Must be between 0 and 255.
    service_data_flow_templates Sequence[NetworkServicePccRuleServiceDataFlowTemplate]
    A service_data_flow_template block as defined below. The set of service data flow templates to use for this PCC rule.
    qos_policy NetworkServicePccRuleQosPolicy
    A qos_policy block as defined below. The QoS policy to use for packets matching this rule. If this field is not specified then the Service will define the QoS settings.
    traffic_control_enabled bool
    Determines whether flows that match this data flow policy rule are permitted. Defaults to true.
    name String
    Specifies the name of the rule. This must be unique within the parent service. You must not use any of the following reserved strings - default, requested or service.
    precedence Number
    A precedence value that is used to decide between data flow policy rules when identifying the QoS values to use for a particular SIM. A lower value means a higher priority. This value should be unique among all data flow policy rules configured in the mobile network. Must be between 0 and 255.
    serviceDataFlowTemplates List<Property Map>
    A service_data_flow_template block as defined below. The set of service data flow templates to use for this PCC rule.
    qosPolicy Property Map
    A qos_policy block as defined below. The QoS policy to use for packets matching this rule. If this field is not specified then the Service will define the QoS settings.
    trafficControlEnabled Boolean
    Determines whether flows that match this data flow policy rule are permitted. Defaults to true.

    NetworkServicePccRuleQosPolicy, NetworkServicePccRuleQosPolicyArgs

    MaximumBitRate NetworkServicePccRuleQosPolicyMaximumBitRate
    A maximum_bit_rate block as defined below. The Maximum Bit Rate (MBR) for all service data flows that use this PCC Rule or Service.
    QosIndicator 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. Recommended values: 5-9; 69-70; 79-80. Must be between 1 and 127.
    AllocationAndRetentionPriorityLevel int
    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.
    GuaranteedBitRate NetworkServicePccRuleQosPolicyGuaranteedBitRate
    A guaranteed_bit_rate block as defined below. The Guaranteed Bit Rate (GBR) for all service data flows that use this PCC Rule. If it's not specified, there will be no GBR set for the PCC Rule that uses this QoS definition.
    PreemptionCapability 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. Possible values are NotPreempt and MayPreempt, Defaults to NotPreempt.
    PreemptionVulnerability 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. Possible values are NotPreemptable and Preemptable. Defaults to Preemptable.
    MaximumBitRate NetworkServicePccRuleQosPolicyMaximumBitRate
    A maximum_bit_rate block as defined below. The Maximum Bit Rate (MBR) for all service data flows that use this PCC Rule or Service.
    QosIndicator 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. Recommended values: 5-9; 69-70; 79-80. Must be between 1 and 127.
    AllocationAndRetentionPriorityLevel int
    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.
    GuaranteedBitRate NetworkServicePccRuleQosPolicyGuaranteedBitRate
    A guaranteed_bit_rate block as defined below. The Guaranteed Bit Rate (GBR) for all service data flows that use this PCC Rule. If it's not specified, there will be no GBR set for the PCC Rule that uses this QoS definition.
    PreemptionCapability 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. Possible values are NotPreempt and MayPreempt, Defaults to NotPreempt.
    PreemptionVulnerability 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. Possible values are NotPreemptable and Preemptable. Defaults to Preemptable.
    maximumBitRate NetworkServicePccRuleQosPolicyMaximumBitRate
    A maximum_bit_rate block as defined below. The Maximum Bit Rate (MBR) for all service data flows that use this PCC Rule or Service.
    qosIndicator 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. Recommended values: 5-9; 69-70; 79-80. Must be between 1 and 127.
    allocationAndRetentionPriorityLevel Integer
    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.
    guaranteedBitRate NetworkServicePccRuleQosPolicyGuaranteedBitRate
    A guaranteed_bit_rate block as defined below. The Guaranteed Bit Rate (GBR) for all service data flows that use this PCC Rule. If it's not specified, there will be no GBR set for the PCC Rule that uses this QoS definition.
    preemptionCapability 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. Possible values are NotPreempt and MayPreempt, Defaults to NotPreempt.
    preemptionVulnerability 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. Possible values are NotPreemptable and Preemptable. Defaults to Preemptable.
    maximumBitRate NetworkServicePccRuleQosPolicyMaximumBitRate
    A maximum_bit_rate block as defined below. The Maximum Bit Rate (MBR) for all service data flows that use this PCC Rule or Service.
    qosIndicator 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. Recommended values: 5-9; 69-70; 79-80. Must be between 1 and 127.
    allocationAndRetentionPriorityLevel number
    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.
    guaranteedBitRate NetworkServicePccRuleQosPolicyGuaranteedBitRate
    A guaranteed_bit_rate block as defined below. The Guaranteed Bit Rate (GBR) for all service data flows that use this PCC Rule. If it's not specified, there will be no GBR set for the PCC Rule that uses this QoS definition.
    preemptionCapability 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. Possible values are NotPreempt and MayPreempt, Defaults to NotPreempt.
    preemptionVulnerability 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. Possible values are NotPreemptable and Preemptable. Defaults to Preemptable.
    maximum_bit_rate NetworkServicePccRuleQosPolicyMaximumBitRate
    A maximum_bit_rate block as defined below. The Maximum Bit Rate (MBR) for all service data flows that use this PCC Rule or Service.
    qos_indicator 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. Recommended values: 5-9; 69-70; 79-80. Must be between 1 and 127.
    allocation_and_retention_priority_level int
    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.
    guaranteed_bit_rate NetworkServicePccRuleQosPolicyGuaranteedBitRate
    A guaranteed_bit_rate block as defined below. The Guaranteed Bit Rate (GBR) for all service data flows that use this PCC Rule. If it's not specified, there will be no GBR set for the PCC Rule that uses this QoS definition.
    preemption_capability 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. Possible values are NotPreempt and MayPreempt, Defaults to NotPreempt.
    preemption_vulnerability 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. Possible values are NotPreemptable and Preemptable. Defaults to Preemptable.
    maximumBitRate Property Map
    A maximum_bit_rate block as defined below. The Maximum Bit Rate (MBR) for all service data flows that use this PCC Rule or Service.
    qosIndicator 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. Recommended values: 5-9; 69-70; 79-80. Must be between 1 and 127.
    allocationAndRetentionPriorityLevel Number
    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.
    guaranteedBitRate Property Map
    A guaranteed_bit_rate block as defined below. The Guaranteed Bit Rate (GBR) for all service data flows that use this PCC Rule. If it's not specified, there will be no GBR set for the PCC Rule that uses this QoS definition.
    preemptionCapability 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. Possible values are NotPreempt and MayPreempt, Defaults to NotPreempt.
    preemptionVulnerability 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. Possible values are NotPreemptable and Preemptable. Defaults to Preemptable.

    NetworkServicePccRuleQosPolicyGuaranteedBitRate, NetworkServicePccRuleQosPolicyGuaranteedBitRateArgs

    Downlink string
    Downlink bit rate. Must be a number followed by Kbps, Mbps, Gbps or Tbps.
    Uplink string
    Uplink bit rate. Must be a number followed by Kbps, Mbps, Gbps or Tbps.
    Downlink string
    Downlink bit rate. Must be a number followed by Kbps, Mbps, Gbps or Tbps.
    Uplink string
    Uplink bit rate. Must be a number followed by Kbps, Mbps, Gbps or Tbps.
    downlink String
    Downlink bit rate. Must be a number followed by Kbps, Mbps, Gbps or Tbps.
    uplink String
    Uplink bit rate. Must be a number followed by Kbps, Mbps, Gbps or Tbps.
    downlink string
    Downlink bit rate. Must be a number followed by Kbps, Mbps, Gbps or Tbps.
    uplink string
    Uplink bit rate. Must be a number followed by Kbps, Mbps, Gbps or Tbps.
    downlink str
    Downlink bit rate. Must be a number followed by Kbps, Mbps, Gbps or Tbps.
    uplink str
    Uplink bit rate. Must be a number followed by Kbps, Mbps, Gbps or Tbps.
    downlink String
    Downlink bit rate. Must be a number followed by Kbps, Mbps, Gbps or Tbps.
    uplink String
    Uplink bit rate. Must be a number followed by Kbps, Mbps, Gbps or Tbps.

    NetworkServicePccRuleQosPolicyMaximumBitRate, NetworkServicePccRuleQosPolicyMaximumBitRateArgs

    Downlink string
    Downlink bit rate. Must be a number followed by bps, Kbps, Mbps, Gbps or Tbps.
    Uplink string
    Uplink bit rate. Must be a number followed by bps, Kbps, Mbps, Gbps or Tbps.
    Downlink string
    Downlink bit rate. Must be a number followed by bps, Kbps, Mbps, Gbps or Tbps.
    Uplink string
    Uplink bit rate. Must be a number followed by bps, Kbps, Mbps, Gbps or Tbps.
    downlink String
    Downlink bit rate. Must be a number followed by bps, Kbps, Mbps, Gbps or Tbps.
    uplink String
    Uplink bit rate. Must be a number followed by bps, Kbps, Mbps, Gbps or Tbps.
    downlink string
    Downlink bit rate. Must be a number followed by bps, Kbps, Mbps, Gbps or Tbps.
    uplink string
    Uplink bit rate. Must be a number followed by bps, Kbps, Mbps, Gbps or Tbps.
    downlink str
    Downlink bit rate. Must be a number followed by bps, Kbps, Mbps, Gbps or Tbps.
    uplink str
    Uplink bit rate. Must be a number followed by bps, Kbps, Mbps, Gbps or Tbps.
    downlink String
    Downlink bit rate. Must be a number followed by bps, Kbps, Mbps, Gbps or Tbps.
    uplink String
    Uplink bit rate. Must be a number followed by bps, Kbps, Mbps, Gbps or Tbps.

    NetworkServicePccRuleServiceDataFlowTemplate, NetworkServicePccRuleServiceDataFlowTemplateArgs

    Direction string
    Specifies the direction of this flow. Possible values are Uplink, Downlink and Bidirectional.
    Name string
    Specifies the name of the data flow template. This must be unique within the parent data flow policy rule. You must not use any of the following reserved strings - default, requested or service.
    Protocols List<string>
    A list of the allowed protocol(s) for this flow. If you want this flow to be able to use any protocol within the internet protocol suite, use the value ip. If you only want to allow a selection of protocols, you must use the corresponding IANA Assigned Internet Protocol Number for each protocol, as described in https://www.iana.org/assignments/protocol-numbers/protocol-numbers.xhtml. For example, for UDP, you must use 17. If you use the value ip then you must leave the field port unspecified.
    RemoteIpLists List<string>
    Specifies the remote IP address(es) to which UEs will connect for this flow. If you want to allow connections on any IP address, use the value any. Otherwise, you must provide each of the remote IP addresses to which the packet core instance will connect for this flow. You must provide each IP address in CIDR notation, including the netmask (for example, 192.0.2.54/24).
    Ports List<string>
    The port(s) to which UEs will connect for this flow. You can specify zero or more ports or port ranges. If you specify one or more ports or port ranges then you must specify a value other than ip in the protocol field. If it is not specified then connections will be allowed on all ports. Port ranges must be specified as -. For example: [8080, 8082-8085].
    Direction string
    Specifies the direction of this flow. Possible values are Uplink, Downlink and Bidirectional.
    Name string
    Specifies the name of the data flow template. This must be unique within the parent data flow policy rule. You must not use any of the following reserved strings - default, requested or service.
    Protocols []string
    A list of the allowed protocol(s) for this flow. If you want this flow to be able to use any protocol within the internet protocol suite, use the value ip. If you only want to allow a selection of protocols, you must use the corresponding IANA Assigned Internet Protocol Number for each protocol, as described in https://www.iana.org/assignments/protocol-numbers/protocol-numbers.xhtml. For example, for UDP, you must use 17. If you use the value ip then you must leave the field port unspecified.
    RemoteIpLists []string
    Specifies the remote IP address(es) to which UEs will connect for this flow. If you want to allow connections on any IP address, use the value any. Otherwise, you must provide each of the remote IP addresses to which the packet core instance will connect for this flow. You must provide each IP address in CIDR notation, including the netmask (for example, 192.0.2.54/24).
    Ports []string
    The port(s) to which UEs will connect for this flow. You can specify zero or more ports or port ranges. If you specify one or more ports or port ranges then you must specify a value other than ip in the protocol field. If it is not specified then connections will be allowed on all ports. Port ranges must be specified as -. For example: [8080, 8082-8085].
    direction String
    Specifies the direction of this flow. Possible values are Uplink, Downlink and Bidirectional.
    name String
    Specifies the name of the data flow template. This must be unique within the parent data flow policy rule. You must not use any of the following reserved strings - default, requested or service.
    protocols List<String>
    A list of the allowed protocol(s) for this flow. If you want this flow to be able to use any protocol within the internet protocol suite, use the value ip. If you only want to allow a selection of protocols, you must use the corresponding IANA Assigned Internet Protocol Number for each protocol, as described in https://www.iana.org/assignments/protocol-numbers/protocol-numbers.xhtml. For example, for UDP, you must use 17. If you use the value ip then you must leave the field port unspecified.
    remoteIpLists List<String>
    Specifies the remote IP address(es) to which UEs will connect for this flow. If you want to allow connections on any IP address, use the value any. Otherwise, you must provide each of the remote IP addresses to which the packet core instance will connect for this flow. You must provide each IP address in CIDR notation, including the netmask (for example, 192.0.2.54/24).
    ports List<String>
    The port(s) to which UEs will connect for this flow. You can specify zero or more ports or port ranges. If you specify one or more ports or port ranges then you must specify a value other than ip in the protocol field. If it is not specified then connections will be allowed on all ports. Port ranges must be specified as -. For example: [8080, 8082-8085].
    direction string
    Specifies the direction of this flow. Possible values are Uplink, Downlink and Bidirectional.
    name string
    Specifies the name of the data flow template. This must be unique within the parent data flow policy rule. You must not use any of the following reserved strings - default, requested or service.
    protocols string[]
    A list of the allowed protocol(s) for this flow. If you want this flow to be able to use any protocol within the internet protocol suite, use the value ip. If you only want to allow a selection of protocols, you must use the corresponding IANA Assigned Internet Protocol Number for each protocol, as described in https://www.iana.org/assignments/protocol-numbers/protocol-numbers.xhtml. For example, for UDP, you must use 17. If you use the value ip then you must leave the field port unspecified.
    remoteIpLists string[]
    Specifies the remote IP address(es) to which UEs will connect for this flow. If you want to allow connections on any IP address, use the value any. Otherwise, you must provide each of the remote IP addresses to which the packet core instance will connect for this flow. You must provide each IP address in CIDR notation, including the netmask (for example, 192.0.2.54/24).
    ports string[]
    The port(s) to which UEs will connect for this flow. You can specify zero or more ports or port ranges. If you specify one or more ports or port ranges then you must specify a value other than ip in the protocol field. If it is not specified then connections will be allowed on all ports. Port ranges must be specified as -. For example: [8080, 8082-8085].
    direction str
    Specifies the direction of this flow. Possible values are Uplink, Downlink and Bidirectional.
    name str
    Specifies the name of the data flow template. This must be unique within the parent data flow policy rule. You must not use any of the following reserved strings - default, requested or service.
    protocols Sequence[str]
    A list of the allowed protocol(s) for this flow. If you want this flow to be able to use any protocol within the internet protocol suite, use the value ip. If you only want to allow a selection of protocols, you must use the corresponding IANA Assigned Internet Protocol Number for each protocol, as described in https://www.iana.org/assignments/protocol-numbers/protocol-numbers.xhtml. For example, for UDP, you must use 17. If you use the value ip then you must leave the field port unspecified.
    remote_ip_lists Sequence[str]
    Specifies the remote IP address(es) to which UEs will connect for this flow. If you want to allow connections on any IP address, use the value any. Otherwise, you must provide each of the remote IP addresses to which the packet core instance will connect for this flow. You must provide each IP address in CIDR notation, including the netmask (for example, 192.0.2.54/24).
    ports Sequence[str]
    The port(s) to which UEs will connect for this flow. You can specify zero or more ports or port ranges. If you specify one or more ports or port ranges then you must specify a value other than ip in the protocol field. If it is not specified then connections will be allowed on all ports. Port ranges must be specified as -. For example: [8080, 8082-8085].
    direction String
    Specifies the direction of this flow. Possible values are Uplink, Downlink and Bidirectional.
    name String
    Specifies the name of the data flow template. This must be unique within the parent data flow policy rule. You must not use any of the following reserved strings - default, requested or service.
    protocols List<String>
    A list of the allowed protocol(s) for this flow. If you want this flow to be able to use any protocol within the internet protocol suite, use the value ip. If you only want to allow a selection of protocols, you must use the corresponding IANA Assigned Internet Protocol Number for each protocol, as described in https://www.iana.org/assignments/protocol-numbers/protocol-numbers.xhtml. For example, for UDP, you must use 17. If you use the value ip then you must leave the field port unspecified.
    remoteIpLists List<String>
    Specifies the remote IP address(es) to which UEs will connect for this flow. If you want to allow connections on any IP address, use the value any. Otherwise, you must provide each of the remote IP addresses to which the packet core instance will connect for this flow. You must provide each IP address in CIDR notation, including the netmask (for example, 192.0.2.54/24).
    ports List<String>
    The port(s) to which UEs will connect for this flow. You can specify zero or more ports or port ranges. If you specify one or more ports or port ranges then you must specify a value other than ip in the protocol field. If it is not specified then connections will be allowed on all ports. Port ranges must be specified as -. For example: [8080, 8082-8085].

    NetworkServiceServiceQosPolicy, NetworkServiceServiceQosPolicyArgs

    MaximumBitRate NetworkServiceServiceQosPolicyMaximumBitRate
    A maximum_bit_rate block as defined below. The Maximum Bit Rate (MBR) for all service data flows that use this PCC Rule or Service.
    AllocationAndRetentionPriorityLevel int
    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. Defaults to 9. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
    PreemptionCapability 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. Possible values are NotPreempt and MayPreempt,.
    PreemptionVulnerability 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. Possible values are NotPreemptable and Preemptable.
    QosIndicator 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. Recommended values: 5-9; 69-70; 79-80. Must be between 1 and 127.
    MaximumBitRate NetworkServiceServiceQosPolicyMaximumBitRate
    A maximum_bit_rate block as defined below. The Maximum Bit Rate (MBR) for all service data flows that use this PCC Rule or Service.
    AllocationAndRetentionPriorityLevel int
    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. Defaults to 9. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
    PreemptionCapability 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. Possible values are NotPreempt and MayPreempt,.
    PreemptionVulnerability 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. Possible values are NotPreemptable and Preemptable.
    QosIndicator 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. Recommended values: 5-9; 69-70; 79-80. Must be between 1 and 127.
    maximumBitRate NetworkServiceServiceQosPolicyMaximumBitRate
    A maximum_bit_rate block as defined below. The Maximum Bit Rate (MBR) for all service data flows that use this PCC Rule or Service.
    allocationAndRetentionPriorityLevel Integer
    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. Defaults to 9. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
    preemptionCapability 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. Possible values are NotPreempt and MayPreempt,.
    preemptionVulnerability 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. Possible values are NotPreemptable and Preemptable.
    qosIndicator 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. Recommended values: 5-9; 69-70; 79-80. Must be between 1 and 127.
    maximumBitRate NetworkServiceServiceQosPolicyMaximumBitRate
    A maximum_bit_rate block as defined below. The Maximum Bit Rate (MBR) for all service data flows that use this PCC Rule or Service.
    allocationAndRetentionPriorityLevel number
    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. Defaults to 9. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
    preemptionCapability 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. Possible values are NotPreempt and MayPreempt,.
    preemptionVulnerability 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. Possible values are NotPreemptable and Preemptable.
    qosIndicator 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. Recommended values: 5-9; 69-70; 79-80. Must be between 1 and 127.
    maximum_bit_rate NetworkServiceServiceQosPolicyMaximumBitRate
    A maximum_bit_rate block as defined below. The Maximum Bit Rate (MBR) for all service data flows that use this PCC Rule or Service.
    allocation_and_retention_priority_level int
    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. Defaults to 9. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
    preemption_capability 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. Possible values are NotPreempt and MayPreempt,.
    preemption_vulnerability 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. Possible values are NotPreemptable and Preemptable.
    qos_indicator 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. Recommended values: 5-9; 69-70; 79-80. Must be between 1 and 127.
    maximumBitRate Property Map
    A maximum_bit_rate block as defined below. The Maximum Bit Rate (MBR) for all service data flows that use this PCC Rule or Service.
    allocationAndRetentionPriorityLevel Number
    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. Defaults to 9. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
    preemptionCapability 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. Possible values are NotPreempt and MayPreempt,.
    preemptionVulnerability 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. Possible values are NotPreemptable and Preemptable.
    qosIndicator 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. Recommended values: 5-9; 69-70; 79-80. Must be between 1 and 127.

    NetworkServiceServiceQosPolicyMaximumBitRate, NetworkServiceServiceQosPolicyMaximumBitRateArgs

    Downlink string
    Downlink bit rate. Must be a number followed by bps, Kbps, Mbps, Gbps or Tbps.
    Uplink string
    Uplink bit rate. Must be a number followed by bps, Kbps, Mbps, Gbps or Tbps.
    Downlink string
    Downlink bit rate. Must be a number followed by bps, Kbps, Mbps, Gbps or Tbps.
    Uplink string
    Uplink bit rate. Must be a number followed by bps, Kbps, Mbps, Gbps or Tbps.
    downlink String
    Downlink bit rate. Must be a number followed by bps, Kbps, Mbps, Gbps or Tbps.
    uplink String
    Uplink bit rate. Must be a number followed by bps, Kbps, Mbps, Gbps or Tbps.
    downlink string
    Downlink bit rate. Must be a number followed by bps, Kbps, Mbps, Gbps or Tbps.
    uplink string
    Uplink bit rate. Must be a number followed by bps, Kbps, Mbps, Gbps or Tbps.
    downlink str
    Downlink bit rate. Must be a number followed by bps, Kbps, Mbps, Gbps or Tbps.
    uplink str
    Uplink bit rate. Must be a number followed by bps, Kbps, Mbps, Gbps or Tbps.
    downlink String
    Downlink bit rate. Must be a number followed by bps, Kbps, Mbps, Gbps or Tbps.
    uplink String
    Uplink bit rate. Must be a number followed by bps, Kbps, Mbps, Gbps or Tbps.

    Import

    Mobile Network Service can be imported using the resource id, e.g.

    $ pulumi import azure:mobile/networkService:NetworkService example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup1/providers/Microsoft.MobileNetwork/mobileNetworks/mobileNetwork1/services/service1
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

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

    We recommend using Azure Native.

    Azure Classic v5.77.1 published on Monday, May 13, 2024 by Pulumi