azure-native.mobilenetwork.Sim

SIM resource. API Version: 2022-04-01-preview.

Example Usage

Create SIM

using System.Collections.Generic;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var sim = new AzureNative.MobileNetwork.Sim("sim", new()
    {
        AuthenticationKey = "00000000000000000000000000000000",
        DeviceType = "Video camera",
        IntegratedCircuitCardIdentifier = "8900000000000000000",
        InternationalMobileSubscriberIdentity = "00000",
        OperatorKeyCode = "00000000000000000000000000000000",
        ResourceGroupName = "rg1",
        SimGroupName = "testSimGroup",
        SimName = "testSim",
        SimPolicy = new AzureNative.MobileNetwork.Inputs.SimPolicyResourceIdArgs
        {
            Id = "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork/simPolicies/MySimPolicy",
        },
        StaticIpConfiguration = new[]
        {
            new AzureNative.MobileNetwork.Inputs.SimStaticIpPropertiesArgs
            {
                AttachedDataNetwork = new AzureNative.MobileNetwork.Inputs.AttachedDataNetworkResourceIdArgs
                {
                    Id = "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/TestPacketCoreCP/packetCoreDataPlanes/TestPacketCoreDP/attachedDataNetworks/TestAttachedDataNetwork",
                },
                Slice = new AzureNative.MobileNetwork.Inputs.SliceResourceIdArgs
                {
                    Id = "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork/slices/testSlice",
                },
                StaticIp = new AzureNative.MobileNetwork.Inputs.SimStaticIpPropertiesStaticIpArgs
                {
                    Ipv4Address = "2.4.0.1",
                },
            },
        },
    });

});
package main

import (
	mobilenetwork "github.com/pulumi/pulumi-azure-native/sdk/go/azure/mobilenetwork"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := mobilenetwork.NewSim(ctx, "sim", &mobilenetwork.SimArgs{
			AuthenticationKey:                     pulumi.String("00000000000000000000000000000000"),
			DeviceType:                            pulumi.String("Video camera"),
			IntegratedCircuitCardIdentifier:       pulumi.String("8900000000000000000"),
			InternationalMobileSubscriberIdentity: pulumi.String("00000"),
			OperatorKeyCode:                       pulumi.String("00000000000000000000000000000000"),
			ResourceGroupName:                     pulumi.String("rg1"),
			SimGroupName:                          pulumi.String("testSimGroup"),
			SimName:                               pulumi.String("testSim"),
			SimPolicy: mobilenetwork.SimPolicyResourceIdResponse{
				Id: pulumi.String("/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork/simPolicies/MySimPolicy"),
			},
			StaticIpConfiguration: []mobilenetwork.SimStaticIpPropertiesArgs{
				{
					AttachedDataNetwork: {
						Id: pulumi.String("/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/TestPacketCoreCP/packetCoreDataPlanes/TestPacketCoreDP/attachedDataNetworks/TestAttachedDataNetwork"),
					},
					Slice: {
						Id: pulumi.String("/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork/slices/testSlice"),
					},
					StaticIp: {
						Ipv4Address: pulumi.String("2.4.0.1"),
					},
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.mobilenetwork.Sim;
import com.pulumi.azurenative.mobilenetwork.SimArgs;
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 sim = new Sim("sim", SimArgs.builder()        
            .authenticationKey("00000000000000000000000000000000")
            .deviceType("Video camera")
            .integratedCircuitCardIdentifier("8900000000000000000")
            .internationalMobileSubscriberIdentity("00000")
            .operatorKeyCode("00000000000000000000000000000000")
            .resourceGroupName("rg1")
            .simGroupName("testSimGroup")
            .simName("testSim")
            .simPolicy(Map.of("id", "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork/simPolicies/MySimPolicy"))
            .staticIpConfiguration(Map.ofEntries(
                Map.entry("attachedDataNetwork", Map.of("id", "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/TestPacketCoreCP/packetCoreDataPlanes/TestPacketCoreDP/attachedDataNetworks/TestAttachedDataNetwork")),
                Map.entry("slice", Map.of("id", "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork/slices/testSlice")),
                Map.entry("staticIp", Map.of("ipv4Address", "2.4.0.1"))
            ))
            .build());

    }
}
import pulumi
import pulumi_azure_native as azure_native

sim = azure_native.mobilenetwork.Sim("sim",
    authentication_key="00000000000000000000000000000000",
    device_type="Video camera",
    integrated_circuit_card_identifier="8900000000000000000",
    international_mobile_subscriber_identity="00000",
    operator_key_code="00000000000000000000000000000000",
    resource_group_name="rg1",
    sim_group_name="testSimGroup",
    sim_name="testSim",
    sim_policy=azure_native.mobilenetwork.SimPolicyResourceIdResponseArgs(
        id="/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork/simPolicies/MySimPolicy",
    ),
    static_ip_configuration=[{
        "attachedDataNetwork": azure_native.mobilenetwork.AttachedDataNetworkResourceIdArgs(
            id="/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/TestPacketCoreCP/packetCoreDataPlanes/TestPacketCoreDP/attachedDataNetworks/TestAttachedDataNetwork",
        ),
        "slice": azure_native.mobilenetwork.SliceResourceIdArgs(
            id="/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork/slices/testSlice",
        ),
        "staticIp": azure_native.mobilenetwork.SimStaticIpPropertiesStaticIpArgs(
            ipv4_address="2.4.0.1",
        ),
    }])
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const sim = new azure_native.mobilenetwork.Sim("sim", {
    authenticationKey: "00000000000000000000000000000000",
    deviceType: "Video camera",
    integratedCircuitCardIdentifier: "8900000000000000000",
    internationalMobileSubscriberIdentity: "00000",
    operatorKeyCode: "00000000000000000000000000000000",
    resourceGroupName: "rg1",
    simGroupName: "testSimGroup",
    simName: "testSim",
    simPolicy: {
        id: "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork/simPolicies/MySimPolicy",
    },
    staticIpConfiguration: [{
        attachedDataNetwork: {
            id: "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/TestPacketCoreCP/packetCoreDataPlanes/TestPacketCoreDP/attachedDataNetworks/TestAttachedDataNetwork",
        },
        slice: {
            id: "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork/slices/testSlice",
        },
        staticIp: {
            ipv4Address: "2.4.0.1",
        },
    }],
});
resources:
  sim:
    type: azure-native:mobilenetwork:Sim
    properties:
      authenticationKey: '00000000000000000000000000000000'
      deviceType: Video camera
      integratedCircuitCardIdentifier: '8900000000000000000'
      internationalMobileSubscriberIdentity: '00000'
      operatorKeyCode: '00000000000000000000000000000000'
      resourceGroupName: rg1
      simGroupName: testSimGroup
      simName: testSim
      simPolicy:
        id: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork/simPolicies/MySimPolicy
      staticIpConfiguration:
        - attachedDataNetwork:
            id: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/TestPacketCoreCP/packetCoreDataPlanes/TestPacketCoreDP/attachedDataNetworks/TestAttachedDataNetwork
          slice:
            id: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork/slices/testSlice
          staticIp:
            ipv4Address: 2.4.0.1

Create Sim Resource

new Sim(name: string, args: SimArgs, opts?: CustomResourceOptions);
@overload
def Sim(resource_name: str,
        opts: Optional[ResourceOptions] = None,
        authentication_key: Optional[str] = None,
        created_at: Optional[str] = None,
        created_by: Optional[str] = None,
        created_by_type: Optional[Union[str, CreatedByType]] = None,
        device_type: Optional[str] = None,
        integrated_circuit_card_identifier: Optional[str] = None,
        international_mobile_subscriber_identity: Optional[str] = None,
        last_modified_at: Optional[str] = None,
        last_modified_by: Optional[str] = None,
        last_modified_by_type: Optional[Union[str, CreatedByType]] = None,
        operator_key_code: Optional[str] = None,
        resource_group_name: Optional[str] = None,
        sim_group_name: Optional[str] = None,
        sim_name: Optional[str] = None,
        sim_policy: Optional[SimPolicyResourceIdArgs] = None,
        static_ip_configuration: Optional[Sequence[SimStaticIpPropertiesArgs]] = None)
@overload
def Sim(resource_name: str,
        args: SimArgs,
        opts: Optional[ResourceOptions] = None)
func NewSim(ctx *Context, name string, args SimArgs, opts ...ResourceOption) (*Sim, error)
public Sim(string name, SimArgs args, CustomResourceOptions? opts = null)
public Sim(String name, SimArgs args)
public Sim(String name, SimArgs args, CustomResourceOptions options)
type: azure-native:mobilenetwork:Sim
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

name string
The unique name of the resource.
args SimArgs
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 SimArgs
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 SimArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args SimArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args SimArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

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

InternationalMobileSubscriberIdentity string

The international mobile subscriber identity (IMSI) for the SIM.

ResourceGroupName string

The name of the resource group. The name is case insensitive.

SimGroupName string

The name of the SIM Group.

AuthenticationKey string

The Ki value for the SIM.

CreatedAt string

The timestamp of resource creation (UTC).

CreatedBy string

The identity that created the resource.

CreatedByType string | Pulumi.AzureNative.MobileNetwork.CreatedByType

The type of identity that created the resource.

DeviceType string

An optional free-form text field that can be used to record the device type this SIM is associated with, for example 'Video camera'. The Azure portal allows SIMs to be grouped and filtered based on this value.

IntegratedCircuitCardIdentifier string

The integrated circuit card ID (ICCID) for the SIM.

LastModifiedAt string

The timestamp of resource last modification (UTC)

LastModifiedBy string

The identity that last modified the resource.

LastModifiedByType string | Pulumi.AzureNative.MobileNetwork.CreatedByType

The type of identity that last modified the resource.

OperatorKeyCode string

The Opc value for the SIM.

SimName string

The name of the SIM.

SimPolicy Pulumi.AzureNative.MobileNetwork.Inputs.SimPolicyResourceIdArgs

The SIM policy used by this SIM.

StaticIpConfiguration List<Pulumi.AzureNative.MobileNetwork.Inputs.SimStaticIpPropertiesArgs>

A list of static IP addresses assigned to this SIM. Each address is assigned at a defined network scope, made up of {attached data network, slice}.

InternationalMobileSubscriberIdentity string

The international mobile subscriber identity (IMSI) for the SIM.

ResourceGroupName string

The name of the resource group. The name is case insensitive.

SimGroupName string

The name of the SIM Group.

AuthenticationKey string

The Ki value for the SIM.

CreatedAt string

The timestamp of resource creation (UTC).

CreatedBy string

The identity that created the resource.

CreatedByType string | CreatedByType

The type of identity that created the resource.

DeviceType string

An optional free-form text field that can be used to record the device type this SIM is associated with, for example 'Video camera'. The Azure portal allows SIMs to be grouped and filtered based on this value.

IntegratedCircuitCardIdentifier string

The integrated circuit card ID (ICCID) for the SIM.

LastModifiedAt string

The timestamp of resource last modification (UTC)

LastModifiedBy string

The identity that last modified the resource.

LastModifiedByType string | CreatedByType

The type of identity that last modified the resource.

OperatorKeyCode string

The Opc value for the SIM.

SimName string

The name of the SIM.

SimPolicy SimPolicyResourceIdArgs

The SIM policy used by this SIM.

StaticIpConfiguration []SimStaticIpPropertiesArgs

A list of static IP addresses assigned to this SIM. Each address is assigned at a defined network scope, made up of {attached data network, slice}.

internationalMobileSubscriberIdentity String

The international mobile subscriber identity (IMSI) for the SIM.

resourceGroupName String

The name of the resource group. The name is case insensitive.

simGroupName String

The name of the SIM Group.

authenticationKey String

The Ki value for the SIM.

createdAt String

The timestamp of resource creation (UTC).

createdBy String

The identity that created the resource.

createdByType String | CreatedByType

The type of identity that created the resource.

deviceType String

An optional free-form text field that can be used to record the device type this SIM is associated with, for example 'Video camera'. The Azure portal allows SIMs to be grouped and filtered based on this value.

integratedCircuitCardIdentifier String

The integrated circuit card ID (ICCID) for the SIM.

lastModifiedAt String

The timestamp of resource last modification (UTC)

lastModifiedBy String

The identity that last modified the resource.

lastModifiedByType String | CreatedByType

The type of identity that last modified the resource.

operatorKeyCode String

The Opc value for the SIM.

simName String

The name of the SIM.

simPolicy SimPolicyResourceIdArgs

The SIM policy used by this SIM.

staticIpConfiguration List<SimStaticIpPropertiesArgs>

A list of static IP addresses assigned to this SIM. Each address is assigned at a defined network scope, made up of {attached data network, slice}.

internationalMobileSubscriberIdentity string

The international mobile subscriber identity (IMSI) for the SIM.

resourceGroupName string

The name of the resource group. The name is case insensitive.

simGroupName string

The name of the SIM Group.

authenticationKey string

The Ki value for the SIM.

createdAt string

The timestamp of resource creation (UTC).

createdBy string

The identity that created the resource.

createdByType string | CreatedByType

The type of identity that created the resource.

deviceType string

An optional free-form text field that can be used to record the device type this SIM is associated with, for example 'Video camera'. The Azure portal allows SIMs to be grouped and filtered based on this value.

integratedCircuitCardIdentifier string

The integrated circuit card ID (ICCID) for the SIM.

lastModifiedAt string

The timestamp of resource last modification (UTC)

lastModifiedBy string

The identity that last modified the resource.

lastModifiedByType string | CreatedByType

The type of identity that last modified the resource.

operatorKeyCode string

The Opc value for the SIM.

simName string

The name of the SIM.

simPolicy SimPolicyResourceIdArgs

The SIM policy used by this SIM.

staticIpConfiguration SimStaticIpPropertiesArgs[]

A list of static IP addresses assigned to this SIM. Each address is assigned at a defined network scope, made up of {attached data network, slice}.

international_mobile_subscriber_identity str

The international mobile subscriber identity (IMSI) for the SIM.

resource_group_name str

The name of the resource group. The name is case insensitive.

sim_group_name str

The name of the SIM Group.

authentication_key str

The Ki value for the SIM.

created_at str

The timestamp of resource creation (UTC).

created_by str

The identity that created the resource.

created_by_type str | CreatedByType

The type of identity that created the resource.

device_type str

An optional free-form text field that can be used to record the device type this SIM is associated with, for example 'Video camera'. The Azure portal allows SIMs to be grouped and filtered based on this value.

integrated_circuit_card_identifier str

The integrated circuit card ID (ICCID) for the SIM.

last_modified_at str

The timestamp of resource last modification (UTC)

last_modified_by str

The identity that last modified the resource.

last_modified_by_type str | CreatedByType

The type of identity that last modified the resource.

operator_key_code str

The Opc value for the SIM.

sim_name str

The name of the SIM.

sim_policy SimPolicyResourceIdArgs

The SIM policy used by this SIM.

static_ip_configuration Sequence[SimStaticIpPropertiesArgs]

A list of static IP addresses assigned to this SIM. Each address is assigned at a defined network scope, made up of {attached data network, slice}.

internationalMobileSubscriberIdentity String

The international mobile subscriber identity (IMSI) for the SIM.

resourceGroupName String

The name of the resource group. The name is case insensitive.

simGroupName String

The name of the SIM Group.

authenticationKey String

The Ki value for the SIM.

createdAt String

The timestamp of resource creation (UTC).

createdBy String

The identity that created the resource.

createdByType String | "User" | "Application" | "ManagedIdentity" | "Key"

The type of identity that created the resource.

deviceType String

An optional free-form text field that can be used to record the device type this SIM is associated with, for example 'Video camera'. The Azure portal allows SIMs to be grouped and filtered based on this value.

integratedCircuitCardIdentifier String

The integrated circuit card ID (ICCID) for the SIM.

lastModifiedAt String

The timestamp of resource last modification (UTC)

lastModifiedBy String

The identity that last modified the resource.

lastModifiedByType String | "User" | "Application" | "ManagedIdentity" | "Key"

The type of identity that last modified the resource.

operatorKeyCode String

The Opc value for the SIM.

simName String

The name of the SIM.

simPolicy Property Map

The SIM policy used by this SIM.

staticIpConfiguration List<Property Map>

A list of static IP addresses assigned to this SIM. Each address is assigned at a defined network scope, made up of {attached data network, slice}.

Outputs

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

Id string

The provider-assigned unique ID for this managed resource.

Name string

The name of the resource

ProvisioningState string

The provisioning state of the SIM resource.

SimState string

The state of the SIM resource.

SystemData Pulumi.AzureNative.MobileNetwork.Outputs.SystemDataResponse

Azure Resource Manager metadata containing createdBy and modifiedBy information.

Type string

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Id string

The provider-assigned unique ID for this managed resource.

Name string

The name of the resource

ProvisioningState string

The provisioning state of the SIM resource.

SimState string

The state of the SIM resource.

SystemData SystemDataResponse

Azure Resource Manager metadata containing createdBy and modifiedBy information.

Type string

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

id String

The provider-assigned unique ID for this managed resource.

name String

The name of the resource

provisioningState String

The provisioning state of the SIM resource.

simState String

The state of the SIM resource.

systemData SystemDataResponse

Azure Resource Manager metadata containing createdBy and modifiedBy information.

type String

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

id string

The provider-assigned unique ID for this managed resource.

name string

The name of the resource

provisioningState string

The provisioning state of the SIM resource.

simState string

The state of the SIM resource.

systemData SystemDataResponse

Azure Resource Manager metadata containing createdBy and modifiedBy information.

type string

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

id str

The provider-assigned unique ID for this managed resource.

name str

The name of the resource

provisioning_state str

The provisioning state of the SIM resource.

sim_state str

The state of the SIM resource.

system_data SystemDataResponse

Azure Resource Manager metadata containing createdBy and modifiedBy information.

type str

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

id String

The provider-assigned unique ID for this managed resource.

name String

The name of the resource

provisioningState String

The provisioning state of the SIM resource.

simState String

The state of the SIM resource.

systemData Property Map

Azure Resource Manager metadata containing createdBy and modifiedBy information.

type String

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Supporting Types

AttachedDataNetworkResourceId

Id string

Attached data network resource ID.

Id string

Attached data network resource ID.

id String

Attached data network resource ID.

id string

Attached data network resource ID.

id str

Attached data network resource ID.

id String

Attached data network resource ID.

AttachedDataNetworkResourceIdResponse

Id string

Attached data network resource ID.

Id string

Attached data network resource ID.

id String

Attached data network resource ID.

id string

Attached data network resource ID.

id str

Attached data network resource ID.

id String

Attached data network resource ID.

CreatedByType

User
User
Application
Application
ManagedIdentity
ManagedIdentity
Key
Key
CreatedByTypeUser
User
CreatedByTypeApplication
Application
CreatedByTypeManagedIdentity
ManagedIdentity
CreatedByTypeKey
Key
User
User
Application
Application
ManagedIdentity
ManagedIdentity
Key
Key
User
User
Application
Application
ManagedIdentity
ManagedIdentity
Key
Key
USER
User
APPLICATION
Application
MANAGED_IDENTITY
ManagedIdentity
KEY
Key
"User"
User
"Application"
Application
"ManagedIdentity"
ManagedIdentity
"Key"
Key

SimPolicyResourceId

Id string

SIM policy resource ID.

Id string

SIM policy resource ID.

id String

SIM policy resource ID.

id string

SIM policy resource ID.

id str

SIM policy resource ID.

id String

SIM policy resource ID.

SimPolicyResourceIdResponse

Id string

SIM policy resource ID.

Id string

SIM policy resource ID.

id String

SIM policy resource ID.

id string

SIM policy resource ID.

id str

SIM policy resource ID.

id String

SIM policy resource ID.

SimStaticIpProperties

AttachedDataNetwork Pulumi.AzureNative.MobileNetwork.Inputs.AttachedDataNetworkResourceId

The attached data network on which the static IP address will be used. The combination of attached data network and slice defines the network scope of the IP address.

Slice Pulumi.AzureNative.MobileNetwork.Inputs.SliceResourceId

The network slice on which the static IP address will be used. The combination of attached data network and slice defines the network scope of the IP address.

StaticIp Pulumi.AzureNative.MobileNetwork.Inputs.SimStaticIpPropertiesStaticIp

The static IP configuration for the SIM to use at the defined network scope.

AttachedDataNetwork AttachedDataNetworkResourceId

The attached data network on which the static IP address will be used. The combination of attached data network and slice defines the network scope of the IP address.

Slice SliceResourceId

The network slice on which the static IP address will be used. The combination of attached data network and slice defines the network scope of the IP address.

StaticIp SimStaticIpPropertiesStaticIp

The static IP configuration for the SIM to use at the defined network scope.

attachedDataNetwork AttachedDataNetworkResourceId

The attached data network on which the static IP address will be used. The combination of attached data network and slice defines the network scope of the IP address.

slice SliceResourceId

The network slice on which the static IP address will be used. The combination of attached data network and slice defines the network scope of the IP address.

staticIp SimStaticIpPropertiesStaticIp

The static IP configuration for the SIM to use at the defined network scope.

attachedDataNetwork AttachedDataNetworkResourceId

The attached data network on which the static IP address will be used. The combination of attached data network and slice defines the network scope of the IP address.

slice SliceResourceId

The network slice on which the static IP address will be used. The combination of attached data network and slice defines the network scope of the IP address.

staticIp SimStaticIpPropertiesStaticIp

The static IP configuration for the SIM to use at the defined network scope.

attached_data_network AttachedDataNetworkResourceId

The attached data network on which the static IP address will be used. The combination of attached data network and slice defines the network scope of the IP address.

slice SliceResourceId

The network slice on which the static IP address will be used. The combination of attached data network and slice defines the network scope of the IP address.

static_ip SimStaticIpPropertiesStaticIp

The static IP configuration for the SIM to use at the defined network scope.

attachedDataNetwork Property Map

The attached data network on which the static IP address will be used. The combination of attached data network and slice defines the network scope of the IP address.

slice Property Map

The network slice on which the static IP address will be used. The combination of attached data network and slice defines the network scope of the IP address.

staticIp Property Map

The static IP configuration for the SIM to use at the defined network scope.

SimStaticIpPropertiesResponse

AttachedDataNetwork Pulumi.AzureNative.MobileNetwork.Inputs.AttachedDataNetworkResourceIdResponse

The attached data network on which the static IP address will be used. The combination of attached data network and slice defines the network scope of the IP address.

Slice Pulumi.AzureNative.MobileNetwork.Inputs.SliceResourceIdResponse

The network slice on which the static IP address will be used. The combination of attached data network and slice defines the network scope of the IP address.

StaticIp Pulumi.AzureNative.MobileNetwork.Inputs.SimStaticIpPropertiesResponseStaticIp

The static IP configuration for the SIM to use at the defined network scope.

AttachedDataNetwork AttachedDataNetworkResourceIdResponse

The attached data network on which the static IP address will be used. The combination of attached data network and slice defines the network scope of the IP address.

Slice SliceResourceIdResponse

The network slice on which the static IP address will be used. The combination of attached data network and slice defines the network scope of the IP address.

StaticIp SimStaticIpPropertiesResponseStaticIp

The static IP configuration for the SIM to use at the defined network scope.

attachedDataNetwork AttachedDataNetworkResourceIdResponse

The attached data network on which the static IP address will be used. The combination of attached data network and slice defines the network scope of the IP address.

slice SliceResourceIdResponse

The network slice on which the static IP address will be used. The combination of attached data network and slice defines the network scope of the IP address.

staticIp SimStaticIpPropertiesResponseStaticIp

The static IP configuration for the SIM to use at the defined network scope.

attachedDataNetwork AttachedDataNetworkResourceIdResponse

The attached data network on which the static IP address will be used. The combination of attached data network and slice defines the network scope of the IP address.

slice SliceResourceIdResponse

The network slice on which the static IP address will be used. The combination of attached data network and slice defines the network scope of the IP address.

staticIp SimStaticIpPropertiesResponseStaticIp

The static IP configuration for the SIM to use at the defined network scope.

attached_data_network AttachedDataNetworkResourceIdResponse

The attached data network on which the static IP address will be used. The combination of attached data network and slice defines the network scope of the IP address.

slice SliceResourceIdResponse

The network slice on which the static IP address will be used. The combination of attached data network and slice defines the network scope of the IP address.

static_ip SimStaticIpPropertiesResponseStaticIp

The static IP configuration for the SIM to use at the defined network scope.

attachedDataNetwork Property Map

The attached data network on which the static IP address will be used. The combination of attached data network and slice defines the network scope of the IP address.

slice Property Map

The network slice on which the static IP address will be used. The combination of attached data network and slice defines the network scope of the IP address.

staticIp Property Map

The static IP configuration for the SIM to use at the defined network scope.

SimStaticIpPropertiesResponseStaticIp

Ipv4Address string

The IPv4 address assigned to the SIM at this network scope. This address must be in the userEquipmentStaticAddressPoolPrefix defined in the attached data network.

Ipv4Address string

The IPv4 address assigned to the SIM at this network scope. This address must be in the userEquipmentStaticAddressPoolPrefix defined in the attached data network.

ipv4Address String

The IPv4 address assigned to the SIM at this network scope. This address must be in the userEquipmentStaticAddressPoolPrefix defined in the attached data network.

ipv4Address string

The IPv4 address assigned to the SIM at this network scope. This address must be in the userEquipmentStaticAddressPoolPrefix defined in the attached data network.

ipv4_address str

The IPv4 address assigned to the SIM at this network scope. This address must be in the userEquipmentStaticAddressPoolPrefix defined in the attached data network.

ipv4Address String

The IPv4 address assigned to the SIM at this network scope. This address must be in the userEquipmentStaticAddressPoolPrefix defined in the attached data network.

SimStaticIpPropertiesStaticIp

Ipv4Address string

The IPv4 address assigned to the SIM at this network scope. This address must be in the userEquipmentStaticAddressPoolPrefix defined in the attached data network.

Ipv4Address string

The IPv4 address assigned to the SIM at this network scope. This address must be in the userEquipmentStaticAddressPoolPrefix defined in the attached data network.

ipv4Address String

The IPv4 address assigned to the SIM at this network scope. This address must be in the userEquipmentStaticAddressPoolPrefix defined in the attached data network.

ipv4Address string

The IPv4 address assigned to the SIM at this network scope. This address must be in the userEquipmentStaticAddressPoolPrefix defined in the attached data network.

ipv4_address str

The IPv4 address assigned to the SIM at this network scope. This address must be in the userEquipmentStaticAddressPoolPrefix defined in the attached data network.

ipv4Address String

The IPv4 address assigned to the SIM at this network scope. This address must be in the userEquipmentStaticAddressPoolPrefix defined in the attached data network.

SliceResourceId

Id string

Slice resource ID.

Id string

Slice resource ID.

id String

Slice resource ID.

id string

Slice resource ID.

id str

Slice resource ID.

id String

Slice resource ID.

SliceResourceIdResponse

Id string

Slice resource ID.

Id string

Slice resource ID.

id String

Slice resource ID.

id string

Slice resource ID.

id str

Slice resource ID.

id String

Slice resource ID.

SystemDataResponse

CreatedAt string

The timestamp of resource creation (UTC).

CreatedBy string

The identity that created the resource.

CreatedByType string

The type of identity that created the resource.

LastModifiedAt string

The timestamp of resource last modification (UTC)

LastModifiedBy string

The identity that last modified the resource.

LastModifiedByType string

The type of identity that last modified the resource.

CreatedAt string

The timestamp of resource creation (UTC).

CreatedBy string

The identity that created the resource.

CreatedByType string

The type of identity that created the resource.

LastModifiedAt string

The timestamp of resource last modification (UTC)

LastModifiedBy string

The identity that last modified the resource.

LastModifiedByType string

The type of identity that last modified the resource.

createdAt String

The timestamp of resource creation (UTC).

createdBy String

The identity that created the resource.

createdByType String

The type of identity that created the resource.

lastModifiedAt String

The timestamp of resource last modification (UTC)

lastModifiedBy String

The identity that last modified the resource.

lastModifiedByType String

The type of identity that last modified the resource.

createdAt string

The timestamp of resource creation (UTC).

createdBy string

The identity that created the resource.

createdByType string

The type of identity that created the resource.

lastModifiedAt string

The timestamp of resource last modification (UTC)

lastModifiedBy string

The identity that last modified the resource.

lastModifiedByType string

The type of identity that last modified the resource.

created_at str

The timestamp of resource creation (UTC).

created_by str

The identity that created the resource.

created_by_type str

The type of identity that created the resource.

last_modified_at str

The timestamp of resource last modification (UTC)

last_modified_by str

The identity that last modified the resource.

last_modified_by_type str

The type of identity that last modified the resource.

createdAt String

The timestamp of resource creation (UTC).

createdBy String

The identity that created the resource.

createdByType String

The type of identity that created the resource.

lastModifiedAt String

The timestamp of resource last modification (UTC)

lastModifiedBy String

The identity that last modified the resource.

lastModifiedByType String

The type of identity that last modified the resource.

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:mobilenetwork:Sim testSim /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.MobileNetwork/simGroups/testSimGroup/sims/testSim 

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0