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

We recommend using Azure Native.

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

azure.mobile.NetworkService

Explore with Pulumi AI

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",
    },
});
Copy
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=[{
        "name": "default-rule",
        "precedence": 1,
        "traffic_control_enabled": True,
        "qos_policy": {
            "allocation_and_retention_priority_level": 9,
            "qos_indicator": 9,
            "preemption_capability": "NotPreempt",
            "preemption_vulnerability": "Preemptable",
            "guaranteed_bit_rate": {
                "downlink": "100 Mbps",
                "uplink": "10 Mbps",
            },
            "maximum_bit_rate": {
                "downlink": "1 Gbps",
                "uplink": "100 Mbps",
            },
        },
        "service_data_flow_templates": [{
            "direction": "Uplink",
            "name": "IP-to-server",
            "ports": [],
            "protocols": ["ip"],
            "remote_ip_lists": ["10.3.4.0/24"],
        }],
    }],
    service_qos_policy={
        "allocation_and_retention_priority_level": 9,
        "qos_indicator": 9,
        "preemption_capability": "NotPreempt",
        "preemption_vulnerability": "Preemptable",
        "maximum_bit_rate": {
            "downlink": "1 Gbps",
            "uplink": "100 Mbps",
        },
    },
    tags={
        "key": "value",
    })
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		example, err := 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
	})
}
Copy
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" },
        },
    });

});
Copy
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());

    }
}
Copy
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
Copy

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 This property is required. string
The unique name of the resource.
args This property is required. NetworkServiceArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. NetworkServiceArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. NetworkServiceArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. NetworkServiceArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

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

var 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" },
    },
});
Copy
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"),
	},
})
Copy
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());
Copy
network_service_resource = azure.mobile.NetworkService("networkServiceResource",
    mobile_network_id="string",
    pcc_rules=[{
        "name": "string",
        "precedence": 0,
        "service_data_flow_templates": [{
            "direction": "string",
            "name": "string",
            "protocols": ["string"],
            "remote_ip_lists": ["string"],
            "ports": ["string"],
        }],
        "qos_policy": {
            "maximum_bit_rate": {
                "downlink": "string",
                "uplink": "string",
            },
            "qos_indicator": 0,
            "allocation_and_retention_priority_level": 0,
            "guaranteed_bit_rate": {
                "downlink": "string",
                "uplink": "string",
            },
            "preemption_capability": "string",
            "preemption_vulnerability": "string",
        },
        "traffic_control_enabled": False,
    }],
    service_precedence=0,
    location="string",
    name="string",
    service_qos_policy={
        "maximum_bit_rate": {
            "downlink": "string",
            "uplink": "string",
        },
        "allocation_and_retention_priority_level": 0,
        "preemption_capability": "string",
        "preemption_vulnerability": "string",
        "qos_indicator": 0,
    },
    tags={
        "string": "string",
    })
Copy
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",
    },
});
Copy
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
Copy

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

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The NetworkService resource accepts the following input properties:

MobileNetworkId
This property is required.
Changes to this property will trigger replacement.
string
Specifies the ID of the Mobile Network Service. Changing this forces a new Mobile Network Service to be created.
PccRules This property is required. List<NetworkServicePccRule>
A pcc_rule block as defined below. The set of PCC Rules that make up this service.
ServicePrecedence This property is required. 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 Changes to this property will trigger replacement. string
Specifies the Azure Region where the Mobile Network Service should exist. Changing this forces a new Mobile Network Service to be created.
Name Changes to this property will trigger replacement. 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
This property is required.
Changes to this property will trigger replacement.
string
Specifies the ID of the Mobile Network Service. Changing this forces a new Mobile Network Service to be created.
PccRules This property is required. []NetworkServicePccRuleArgs
A pcc_rule block as defined below. The set of PCC Rules that make up this service.
ServicePrecedence This property is required. 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 Changes to this property will trigger replacement. string
Specifies the Azure Region where the Mobile Network Service should exist. Changing this forces a new Mobile Network Service to be created.
Name Changes to this property will trigger replacement. 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
This property is required.
Changes to this property will trigger replacement.
String
Specifies the ID of the Mobile Network Service. Changing this forces a new Mobile Network Service to be created.
pccRules This property is required. List<NetworkServicePccRule>
A pcc_rule block as defined below. The set of PCC Rules that make up this service.
servicePrecedence This property is required. 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 Changes to this property will trigger replacement. String
Specifies the Azure Region where the Mobile Network Service should exist. Changing this forces a new Mobile Network Service to be created.
name Changes to this property will trigger replacement. 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
This property is required.
Changes to this property will trigger replacement.
string
Specifies the ID of the Mobile Network Service. Changing this forces a new Mobile Network Service to be created.
pccRules This property is required. NetworkServicePccRule[]
A pcc_rule block as defined below. The set of PCC Rules that make up this service.
servicePrecedence This property is required. 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 Changes to this property will trigger replacement. string
Specifies the Azure Region where the Mobile Network Service should exist. Changing this forces a new Mobile Network Service to be created.
name Changes to this property will trigger replacement. 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
This property is required.
Changes to this property will trigger replacement.
str
Specifies the ID of the Mobile Network Service. Changing this forces a new Mobile Network Service to be created.
pcc_rules This property is required. Sequence[NetworkServicePccRuleArgs]
A pcc_rule block as defined below. The set of PCC Rules that make up this service.
service_precedence This property is required. 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 Changes to this property will trigger replacement. str
Specifies the Azure Region where the Mobile Network Service should exist. Changing this forces a new Mobile Network Service to be created.
name Changes to this property will trigger replacement. 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
This property is required.
Changes to this property will trigger replacement.
String
Specifies the ID of the Mobile Network Service. Changing this forces a new Mobile Network Service to be created.
pccRules This property is required. List<Property Map>
A pcc_rule block as defined below. The set of PCC Rules that make up this service.
servicePrecedence This property is required. 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 Changes to this property will trigger replacement. String
Specifies the Azure Region where the Mobile Network Service should exist. Changing this forces a new Mobile Network Service to be created.
name Changes to this property will trigger replacement. 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)
resources:  _:    type: azure:mobile:NetworkService    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 Changes to this property will trigger replacement. string
Specifies the Azure Region where the Mobile Network Service should exist. Changing this forces a new Mobile Network Service to be created.
MobileNetworkId Changes to this property will trigger replacement. string
Specifies the ID of the Mobile Network Service. Changing this forces a new Mobile Network Service to be created.
Name Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. string
Specifies the Azure Region where the Mobile Network Service should exist. Changing this forces a new Mobile Network Service to be created.
MobileNetworkId Changes to this property will trigger replacement. string
Specifies the ID of the Mobile Network Service. Changing this forces a new Mobile Network Service to be created.
Name Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. String
Specifies the Azure Region where the Mobile Network Service should exist. Changing this forces a new Mobile Network Service to be created.
mobileNetworkId Changes to this property will trigger replacement. String
Specifies the ID of the Mobile Network Service. Changing this forces a new Mobile Network Service to be created.
name Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. string
Specifies the Azure Region where the Mobile Network Service should exist. Changing this forces a new Mobile Network Service to be created.
mobileNetworkId Changes to this property will trigger replacement. string
Specifies the ID of the Mobile Network Service. Changing this forces a new Mobile Network Service to be created.
name Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. str
Specifies the ID of the Mobile Network Service. Changing this forces a new Mobile Network Service to be created.
name Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. String
Specifies the Azure Region where the Mobile Network Service should exist. Changing this forces a new Mobile Network Service to be created.
mobileNetworkId Changes to this property will trigger replacement. String
Specifies the ID of the Mobile Network Service. Changing this forces a new Mobile Network Service to be created.
name Changes to this property will trigger replacement. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. []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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. int
The QoS Indicator (5QI for 5G network /QCI for 4G net work) value identifies a set of QoS characteristics that control QoS forwarding treatment for QoS flows or EPS bearers. 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 This property is required. 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 This property is required. int
The QoS Indicator (5QI for 5G network /QCI for 4G net work) value identifies a set of QoS characteristics that control QoS forwarding treatment for QoS flows or EPS bearers. 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 This property is required. 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 This property is required. Integer
The QoS Indicator (5QI for 5G network /QCI for 4G net work) value identifies a set of QoS characteristics that control QoS forwarding treatment for QoS flows or EPS bearers. 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 This property is required. 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 This property is required. number
The QoS Indicator (5QI for 5G network /QCI for 4G net work) value identifies a set of QoS characteristics that control QoS forwarding treatment for QoS flows or EPS bearers. 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 This property is required. 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 This property is required. int
The QoS Indicator (5QI for 5G network /QCI for 4G net work) value identifies a set of QoS characteristics that control QoS forwarding treatment for QoS flows or EPS bearers. 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 This property is required. 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 This property is required. Number
The QoS Indicator (5QI for 5G network /QCI for 4G net work) value identifies a set of QoS characteristics that control QoS forwarding treatment for QoS flows or EPS bearers. 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 This property is required. string
Downlink bit rate. Must be a number followed by Kbps, Mbps, Gbps or Tbps.
Uplink This property is required. string
Uplink bit rate. Must be a number followed by Kbps, Mbps, Gbps or Tbps.
Downlink This property is required. string
Downlink bit rate. Must be a number followed by Kbps, Mbps, Gbps or Tbps.
Uplink This property is required. string
Uplink bit rate. Must be a number followed by Kbps, Mbps, Gbps or Tbps.
downlink This property is required. String
Downlink bit rate. Must be a number followed by Kbps, Mbps, Gbps or Tbps.
uplink This property is required. String
Uplink bit rate. Must be a number followed by Kbps, Mbps, Gbps or Tbps.
downlink This property is required. string
Downlink bit rate. Must be a number followed by Kbps, Mbps, Gbps or Tbps.
uplink This property is required. string
Uplink bit rate. Must be a number followed by Kbps, Mbps, Gbps or Tbps.
downlink This property is required. str
Downlink bit rate. Must be a number followed by Kbps, Mbps, Gbps or Tbps.
uplink This property is required. str
Uplink bit rate. Must be a number followed by Kbps, Mbps, Gbps or Tbps.
downlink This property is required. String
Downlink bit rate. Must be a number followed by Kbps, Mbps, Gbps or Tbps.
uplink This property is required. String
Uplink bit rate. Must be a number followed by Kbps, Mbps, Gbps or Tbps.

NetworkServicePccRuleQosPolicyMaximumBitRate
, NetworkServicePccRuleQosPolicyMaximumBitRateArgs

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

NetworkServicePccRuleServiceDataFlowTemplate
, NetworkServicePccRuleServiceDataFlowTemplateArgs

Direction This property is required. string
Specifies the direction of this flow. Possible values are Uplink, Downlink and Bidirectional.
Name This property is required. 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 This property is required. 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 This property is required. 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 This property is required. string
Specifies the direction of this flow. Possible values are Uplink, Downlink and Bidirectional.
Name This property is required. 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 This property is required. []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 This property is required. []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 This property is required. String
Specifies the direction of this flow. Possible values are Uplink, Downlink and Bidirectional.
name This property is required. 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 This property is required. 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 This property is required. 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 This property is required. string
Specifies the direction of this flow. Possible values are Uplink, Downlink and Bidirectional.
name This property is required. 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 This property is required. 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 This property is required. 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 This property is required. str
Specifies the direction of this flow. Possible values are Uplink, Downlink and Bidirectional.
name This property is required. 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 This property is required. 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 This property is required. 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 This property is required. String
Specifies the direction of this flow. Possible values are Uplink, Downlink and Bidirectional.
name This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. string
Downlink bit rate. Must be a number followed by bps, Kbps, Mbps, Gbps or Tbps.
Uplink This property is required. string
Uplink bit rate. Must be a number followed by bps, Kbps, Mbps, Gbps or Tbps.
Downlink This property is required. string
Downlink bit rate. Must be a number followed by bps, Kbps, Mbps, Gbps or Tbps.
Uplink This property is required. string
Uplink bit rate. Must be a number followed by bps, Kbps, Mbps, Gbps or Tbps.
downlink This property is required. String
Downlink bit rate. Must be a number followed by bps, Kbps, Mbps, Gbps or Tbps.
uplink This property is required. String
Uplink bit rate. Must be a number followed by bps, Kbps, Mbps, Gbps or Tbps.
downlink This property is required. string
Downlink bit rate. Must be a number followed by bps, Kbps, Mbps, Gbps or Tbps.
uplink This property is required. string
Uplink bit rate. Must be a number followed by bps, Kbps, Mbps, Gbps or Tbps.
downlink This property is required. str
Downlink bit rate. Must be a number followed by bps, Kbps, Mbps, Gbps or Tbps.
uplink This property is required. str
Uplink bit rate. Must be a number followed by bps, Kbps, Mbps, Gbps or Tbps.
downlink This property is required. String
Downlink bit rate. Must be a number followed by bps, Kbps, Mbps, Gbps or Tbps.
uplink This property is required. 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
Copy

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.