SimArgs

data class SimArgs(val authenticationKey: Output<String>? = null, val deviceType: Output<String>? = null, val integratedCircuitCardIdentifier: Output<String>? = null, val internationalMobileSubscriberIdentity: Output<String>? = null, val operatorKeyCode: Output<String>? = null, val resourceGroupName: Output<String>? = null, val simGroupName: Output<String>? = null, val simName: Output<String>? = null, val simPolicy: Output<SimPolicyResourceIdArgs>? = null, val staticIpConfiguration: Output<List<SimStaticIpPropertiesArgs>>? = null) : ConvertibleToJava<SimArgs>

SIM resource. Uses Azure REST API version 2024-04-01. In version 2.x of the Azure Native provider, it used API version 2023-06-01. Other available API versions: 2022-04-01-preview, 2022-11-01, 2023-06-01, 2023-09-01, 2024-02-01. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native mobilenetwork [ApiVersion]. See the ../../../version-guide/#accessing-any-api-version-via-local-packages for details.

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/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork/simPolicies/MySimPolicy",
},
StaticIpConfiguration = new[]
{
new AzureNative.MobileNetwork.Inputs.SimStaticIpPropertiesArgs
{
AttachedDataNetwork = new AzureNative.MobileNetwork.Inputs.AttachedDataNetworkResourceIdArgs
{
Id = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/TestPacketCoreCP/packetCoreDataPlanes/TestPacketCoreDP/attachedDataNetworks/TestAttachedDataNetwork",
},
Slice = new AzureNative.MobileNetwork.Inputs.SliceResourceIdArgs
{
Id = "/subscriptions/00000000-0000-0000-0000-000000000000/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/v2"
"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/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork/simPolicies/MySimPolicy"),
},
StaticIpConfiguration: mobilenetwork.SimStaticIpPropertiesArray{
&mobilenetwork.SimStaticIpPropertiesArgs{
AttachedDataNetwork: &mobilenetwork.AttachedDataNetworkResourceIdArgs{
Id: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/TestPacketCoreCP/packetCoreDataPlanes/TestPacketCoreDP/attachedDataNetworks/TestAttachedDataNetwork"),
},
Slice: &mobilenetwork.SliceResourceIdArgs{
Id: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork/slices/testSlice"),
},
StaticIp: &mobilenetwork.SimStaticIpPropertiesStaticIpArgs{
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 com.pulumi.azurenative.mobilenetwork.inputs.SimPolicyResourceIdArgs;
import com.pulumi.azurenative.mobilenetwork.inputs.SimStaticIpPropertiesArgs;
import com.pulumi.azurenative.mobilenetwork.inputs.AttachedDataNetworkResourceIdArgs;
import com.pulumi.azurenative.mobilenetwork.inputs.SliceResourceIdArgs;
import com.pulumi.azurenative.mobilenetwork.inputs.SimStaticIpPropertiesStaticIpArgs;
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(SimPolicyResourceIdArgs.builder()
.id("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork/simPolicies/MySimPolicy")
.build())
.staticIpConfiguration(SimStaticIpPropertiesArgs.builder()
.attachedDataNetwork(AttachedDataNetworkResourceIdArgs.builder()
.id("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/packetCoreControlPlanes/TestPacketCoreCP/packetCoreDataPlanes/TestPacketCoreDP/attachedDataNetworks/TestAttachedDataNetwork")
.build())
.slice(SliceResourceIdArgs.builder()
.id("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.MobileNetwork/mobileNetworks/testMobileNetwork/slices/testSlice")
.build())
.staticIp(SimStaticIpPropertiesStaticIpArgs.builder()
.ipv4Address("2.4.0.1")
.build())
.build())
.build());
}
}

Import

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

$ pulumi import azure-native:mobilenetwork:Sim testSim /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MobileNetwork/simGroups/{simGroupName}/sims/{simName}

Constructors

Link copied to clipboard
constructor(authenticationKey: Output<String>? = null, deviceType: Output<String>? = null, integratedCircuitCardIdentifier: Output<String>? = null, internationalMobileSubscriberIdentity: Output<String>? = null, operatorKeyCode: Output<String>? = null, resourceGroupName: Output<String>? = null, simGroupName: Output<String>? = null, simName: Output<String>? = null, simPolicy: Output<SimPolicyResourceIdArgs>? = null, staticIpConfiguration: Output<List<SimStaticIpPropertiesArgs>>? = null)

Properties

Link copied to clipboard
val authenticationKey: Output<String>? = null

The Ki value for the SIM.

Link copied to clipboard
val deviceType: Output<String>? = null

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.

Link copied to clipboard

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

Link copied to clipboard

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

Link copied to clipboard
val operatorKeyCode: Output<String>? = null

The Opc value for the SIM.

Link copied to clipboard
val resourceGroupName: Output<String>? = null

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

Link copied to clipboard
val simGroupName: Output<String>? = null

The name of the SIM Group.

Link copied to clipboard
val simName: Output<String>? = null

The name of the SIM.

Link copied to clipboard
val simPolicy: Output<SimPolicyResourceIdArgs>? = null

The SIM policy used by this SIM. The SIM policy must be in the same location as the SIM.

Link copied to clipboard

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

Functions

Link copied to clipboard
open override fun toJava(): SimArgs