azure-native.mobilenetwork.Sim
Explore with Pulumi AI
SIM resource. API Version: 2022-04-01-preview.
Example Usage
Create SIM
using System.Collections.Generic;
using System.Linq;
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/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.SimPolicyResourceIdArgs{
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.SimPolicyResourceIdArgs(
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
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Sim(name: string, args: SimArgs, opts?: CustomResourceOptions);
@overload
def Sim(resource_name: str,
args: SimArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Sim(resource_name: str,
opts: Optional[ResourceOptions] = None,
international_mobile_subscriber_identity: Optional[str] = None,
sim_group_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
device_type: Optional[str] = None,
authentication_key: Optional[str] = None,
integrated_circuit_card_identifier: Optional[str] = None,
created_by_type: Optional[Union[str, CreatedByType]] = 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,
created_by: Optional[str] = None,
created_at: Optional[str] = None,
sim_name: Optional[str] = None,
sim_policy: Optional[SimPolicyResourceIdArgs] = None,
static_ip_configuration: Optional[Sequence[SimStaticIpPropertiesArgs]] = None)
func NewSim(ctx *Context, name string, args SimArgs, opts ...ResourceOption) (*Sim, error)
public Sim(string name, SimArgs args, CustomResourceOptions? opts = null)
type: azure-native:mobilenetwork:Sim
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args 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.
Constructor example
The following reference example uses placeholder values for all input properties.
var simResource = new AzureNative.Mobilenetwork.Sim("simResource", new()
{
InternationalMobileSubscriberIdentity = "string",
SimGroupName = "string",
ResourceGroupName = "string",
DeviceType = "string",
AuthenticationKey = "string",
IntegratedCircuitCardIdentifier = "string",
CreatedByType = "string",
LastModifiedAt = "string",
LastModifiedBy = "string",
LastModifiedByType = "string",
OperatorKeyCode = "string",
CreatedBy = "string",
CreatedAt = "string",
SimName = "string",
SimPolicy =
{
{ "id", "string" },
},
StaticIpConfiguration = new[]
{
{
{ "attachedDataNetwork",
{
{ "id", "string" },
} },
{ "slice",
{
{ "id", "string" },
} },
{ "staticIp",
{
{ "ipv4Address", "string" },
} },
},
},
});
example, err := mobilenetwork.NewSim(ctx, "simResource", &mobilenetwork.SimArgs{
InternationalMobileSubscriberIdentity: "string",
SimGroupName: "string",
ResourceGroupName: "string",
DeviceType: "string",
AuthenticationKey: "string",
IntegratedCircuitCardIdentifier: "string",
CreatedByType: "string",
LastModifiedAt: "string",
LastModifiedBy: "string",
LastModifiedByType: "string",
OperatorKeyCode: "string",
CreatedBy: "string",
CreatedAt: "string",
SimName: "string",
SimPolicy: map[string]interface{}{
"id": "string",
},
StaticIpConfiguration: []map[string]interface{}{
map[string]interface{}{
"attachedDataNetwork": map[string]interface{}{
"id": "string",
},
"slice": map[string]interface{}{
"id": "string",
},
"staticIp": map[string]interface{}{
"ipv4Address": "string",
},
},
},
})
var simResource = new Sim("simResource", SimArgs.builder()
.internationalMobileSubscriberIdentity("string")
.simGroupName("string")
.resourceGroupName("string")
.deviceType("string")
.authenticationKey("string")
.integratedCircuitCardIdentifier("string")
.createdByType("string")
.lastModifiedAt("string")
.lastModifiedBy("string")
.lastModifiedByType("string")
.operatorKeyCode("string")
.createdBy("string")
.createdAt("string")
.simName("string")
.simPolicy(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.staticIpConfiguration(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.build());
sim_resource = azure_native.mobilenetwork.Sim("simResource",
international_mobile_subscriber_identity=string,
sim_group_name=string,
resource_group_name=string,
device_type=string,
authentication_key=string,
integrated_circuit_card_identifier=string,
created_by_type=string,
last_modified_at=string,
last_modified_by=string,
last_modified_by_type=string,
operator_key_code=string,
created_by=string,
created_at=string,
sim_name=string,
sim_policy={
id: string,
},
static_ip_configuration=[{
attachedDataNetwork: {
id: string,
},
slice: {
id: string,
},
staticIp: {
ipv4Address: string,
},
}])
const simResource = new azure_native.mobilenetwork.Sim("simResource", {
internationalMobileSubscriberIdentity: "string",
simGroupName: "string",
resourceGroupName: "string",
deviceType: "string",
authenticationKey: "string",
integratedCircuitCardIdentifier: "string",
createdByType: "string",
lastModifiedAt: "string",
lastModifiedBy: "string",
lastModifiedByType: "string",
operatorKeyCode: "string",
createdBy: "string",
createdAt: "string",
simName: "string",
simPolicy: {
id: "string",
},
staticIpConfiguration: [{
attachedDataNetwork: {
id: "string",
},
slice: {
id: "string",
},
staticIp: {
ipv4Address: "string",
},
}],
});
type: azure-native:mobilenetwork:Sim
properties:
authenticationKey: string
createdAt: string
createdBy: string
createdByType: string
deviceType: string
integratedCircuitCardIdentifier: string
internationalMobileSubscriberIdentity: string
lastModifiedAt: string
lastModifiedBy: string
lastModifiedByType: string
operatorKeyCode: string
resourceGroupName: string
simGroupName: string
simName: string
simPolicy:
id: string
staticIpConfiguration:
- attachedDataNetwork:
id: string
slice:
id: string
staticIp:
ipv4Address: string
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:
- International
Mobile stringSubscriber Identity - The international mobile subscriber identity (IMSI) for the SIM.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Sim
Group stringName - The name of the SIM Group.
- Authentication
Key string - The Ki value for the SIM.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By string | Pulumi.Type Azure Native. Mobile Network. Created By Type - The type of identity that created the resource.
- Device
Type 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.
- Integrated
Circuit stringCard Identifier - The integrated circuit card ID (ICCID) for the SIM.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified string | Pulumi.By Type Azure Native. Mobile Network. Created By Type - The type of identity that last modified the resource.
- Operator
Key stringCode - The Opc value for the SIM.
- Sim
Name string - The name of the SIM.
- Sim
Policy Pulumi.Azure Native. Mobile Network. Inputs. Sim Policy Resource Id - The SIM policy used by this SIM.
- Static
Ip List<Pulumi.Configuration Azure Native. Mobile Network. Inputs. Sim Static Ip Properties> - 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 stringSubscriber Identity - The international mobile subscriber identity (IMSI) for the SIM.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Sim
Group stringName - The name of the SIM Group.
- Authentication
Key string - The Ki value for the SIM.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By string | CreatedType By Type - The type of identity that created the resource.
- Device
Type 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.
- Integrated
Circuit stringCard Identifier - The integrated circuit card ID (ICCID) for the SIM.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified string | CreatedBy Type By Type - The type of identity that last modified the resource.
- Operator
Key stringCode - The Opc value for the SIM.
- Sim
Name string - The name of the SIM.
- Sim
Policy SimPolicy Resource Id Args - The SIM policy used by this SIM.
- Static
Ip []SimConfiguration Static Ip Properties Args - 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 StringSubscriber Identity - The international mobile subscriber identity (IMSI) for the SIM.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- sim
Group StringName - The name of the SIM Group.
- authentication
Key String - The Ki value for the SIM.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By String | CreatedType By Type - The type of identity that created the resource.
- device
Type 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.
- integrated
Circuit StringCard Identifier - The integrated circuit card ID (ICCID) for the SIM.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified String | CreatedBy Type By Type - The type of identity that last modified the resource.
- operator
Key StringCode - The Opc value for the SIM.
- sim
Name String - The name of the SIM.
- sim
Policy SimPolicy Resource Id - The SIM policy used by this SIM.
- static
Ip List<SimConfiguration Static Ip Properties> - 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 stringSubscriber Identity - The international mobile subscriber identity (IMSI) for the SIM.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- sim
Group stringName - The name of the SIM Group.
- authentication
Key string - The Ki value for the SIM.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By string | CreatedType By Type - The type of identity that created the resource.
- device
Type 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.
- integrated
Circuit stringCard Identifier - The integrated circuit card ID (ICCID) for the SIM.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified string | CreatedBy Type By Type - The type of identity that last modified the resource.
- operator
Key stringCode - The Opc value for the SIM.
- sim
Name string - The name of the SIM.
- sim
Policy SimPolicy Resource Id - The SIM policy used by this SIM.
- static
Ip SimConfiguration Static Ip Properties[] - 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_ strsubscriber_ identity - The international mobile subscriber identity (IMSI) for the SIM.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- sim_
group_ strname - 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_ str | Createdtype By Type - 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_ strcard_ identifier - The integrated circuit card ID (ICCID) for the SIM.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ str | Createdby_ type By Type - The type of identity that last modified the resource.
- operator_
key_ strcode - The Opc value for the SIM.
- sim_
name str - The name of the SIM.
- sim_
policy SimPolicy Resource Id Args - The SIM policy used by this SIM.
- static_
ip_ Sequence[Simconfiguration Static Ip Properties Args] - 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 StringSubscriber Identity - The international mobile subscriber identity (IMSI) for the SIM.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- sim
Group StringName - The name of the SIM Group.
- authentication
Key String - The Ki value for the SIM.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By String | "User" | "Application" | "ManagedType Identity" | "Key" - The type of identity that created the resource.
- device
Type 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.
- integrated
Circuit StringCard Identifier - The integrated circuit card ID (ICCID) for the SIM.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified String | "User" | "Application" | "ManagedBy Type Identity" | "Key" - The type of identity that last modified the resource.
- operator
Key StringCode - The Opc value for the SIM.
- sim
Name String - The name of the SIM.
- sim
Policy Property Map - The SIM policy used by this SIM.
- static
Ip List<Property Map>Configuration - 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
- Provisioning
State string - The provisioning state of the SIM resource.
- Sim
State string - The state of the SIM resource.
- System
Data Pulumi.Azure Native. Mobile Network. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- Provisioning
State string - The provisioning state of the SIM resource.
- Sim
State string - The state of the SIM resource.
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioning
State String - The provisioning state of the SIM resource.
- sim
State String - The state of the SIM resource.
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- provisioning
State string - The provisioning state of the SIM resource.
- sim
State string - The state of the SIM resource.
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- provisioning_
state str - The provisioning state of the SIM resource.
- sim_
state str - The state of the SIM resource.
- system_
data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioning
State String - The provisioning state of the SIM resource.
- sim
State String - The state of the SIM resource.
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
AttachedDataNetworkResourceId, AttachedDataNetworkResourceIdArgs
- 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, AttachedDataNetworkResourceIdResponseArgs
- 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, CreatedByTypeArgs
- User
- User
- Application
- Application
- Managed
Identity - ManagedIdentity
- Key
- Key
- Created
By Type User - User
- Created
By Type Application - Application
- Created
By Type Managed Identity - ManagedIdentity
- Created
By Type Key - Key
- User
- User
- Application
- Application
- Managed
Identity - ManagedIdentity
- Key
- Key
- User
- User
- Application
- Application
- Managed
Identity - ManagedIdentity
- Key
- Key
- USER
- User
- APPLICATION
- Application
- MANAGED_IDENTITY
- ManagedIdentity
- KEY
- Key
- "User"
- User
- "Application"
- Application
- "Managed
Identity" - ManagedIdentity
- "Key"
- Key
SimPolicyResourceId, SimPolicyResourceIdArgs
- 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, SimPolicyResourceIdResponseArgs
- 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, SimStaticIpPropertiesArgs
- Attached
Data Pulumi.Network Azure Native. Mobile Network. Inputs. Attached Data Network Resource Id - 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.
Azure Native. Mobile Network. Inputs. Slice Resource Id - 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 Pulumi.Azure Native. Mobile Network. Inputs. Sim Static Ip Properties Static Ip - The static IP configuration for the SIM to use at the defined network scope.
- Attached
Data AttachedNetwork Data Network Resource Id - 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
Slice
Resource Id - 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 SimStatic Ip Properties Static Ip - The static IP configuration for the SIM to use at the defined network scope.
- attached
Data AttachedNetwork Data Network Resource Id - 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
Slice
Resource Id - 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 SimStatic Ip Properties Static Ip - The static IP configuration for the SIM to use at the defined network scope.
- attached
Data AttachedNetwork Data Network Resource Id - 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
Slice
Resource Id - 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 SimStatic Ip Properties Static Ip - The static IP configuration for the SIM to use at the defined network scope.
- attached_
data_ Attachednetwork Data Network Resource Id - 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
Slice
Resource Id - 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 SimStatic Ip Properties Static Ip - The static IP configuration for the SIM to use at the defined network scope.
- attached
Data Property MapNetwork - 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.
- static
Ip Property Map - The static IP configuration for the SIM to use at the defined network scope.
SimStaticIpPropertiesResponse, SimStaticIpPropertiesResponseArgs
- Attached
Data Pulumi.Network Azure Native. Mobile Network. Inputs. Attached Data Network Resource Id Response - 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.
Azure Native. Mobile Network. Inputs. Slice Resource Id Response - 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 Pulumi.Azure Native. Mobile Network. Inputs. Sim Static Ip Properties Response Static Ip - The static IP configuration for the SIM to use at the defined network scope.
- Attached
Data AttachedNetwork Data Network Resource Id Response - 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
Slice
Resource Id Response - 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 SimStatic Ip Properties Response Static Ip - The static IP configuration for the SIM to use at the defined network scope.
- attached
Data AttachedNetwork Data Network Resource Id Response - 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
Slice
Resource Id Response - 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 SimStatic Ip Properties Response Static Ip - The static IP configuration for the SIM to use at the defined network scope.
- attached
Data AttachedNetwork Data Network Resource Id Response - 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
Slice
Resource Id Response - 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 SimStatic Ip Properties Response Static Ip - The static IP configuration for the SIM to use at the defined network scope.
- attached_
data_ Attachednetwork Data Network Resource Id Response - 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
Slice
Resource Id Response - 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 SimStatic Ip Properties Response Static Ip - The static IP configuration for the SIM to use at the defined network scope.
- attached
Data Property MapNetwork - 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.
- static
Ip Property Map - The static IP configuration for the SIM to use at the defined network scope.
SimStaticIpPropertiesResponseStaticIp, SimStaticIpPropertiesResponseStaticIpArgs
- 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, SimStaticIpPropertiesStaticIpArgs
- 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, SliceResourceIdArgs
- Id string
- Slice resource ID.
- Id string
- Slice resource ID.
- id String
- Slice resource ID.
- id string
- Slice resource ID.
- id str
- Slice resource ID.
- id String
- Slice resource ID.
SliceResourceIdResponse, SliceResourceIdResponseArgs
- Id string
- Slice resource ID.
- Id string
- Slice resource ID.
- id String
- Slice resource ID.
- id string
- Slice resource ID.
- id str
- Slice resource ID.
- id String
- Slice resource ID.
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:mobilenetwork:Sim testSim /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.MobileNetwork/simGroups/testSimGroup/sims/testSim
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0