azure-native.databoxedge.IoTRole
Explore with Pulumi AI
Compute role. Azure REST API version: 2022-03-01. Prior API version in Azure Native 1.x: 2020-12-01.
Example Usage
RolePut
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var ioTRole = new AzureNative.DataBoxEdge.IoTRole("ioTRole", new()
    {
        DeviceName = "testedgedevice",
        HostPlatform = AzureNative.DataBoxEdge.PlatformType.Linux,
        IoTDeviceDetails = new AzureNative.DataBoxEdge.Inputs.IoTDeviceInfoArgs
        {
            Authentication = new AzureNative.DataBoxEdge.Inputs.AuthenticationArgs
            {
                SymmetricKey = new AzureNative.DataBoxEdge.Inputs.SymmetricKeyArgs
                {
                    ConnectionString = new AzureNative.DataBoxEdge.Inputs.AsymmetricEncryptedSecretArgs
                    {
                        EncryptionAlgorithm = AzureNative.DataBoxEdge.EncryptionAlgorithm.AES256,
                        EncryptionCertThumbprint = "348586569999244",
                        Value = "Encrypted<<HostName=iothub.azure-devices.net;DeviceId=iotDevice;SharedAccessKey=2C750FscEas3JmQ8Bnui5yQWZPyml0/UiRt1bQwd8=>>",
                    },
                },
            },
            DeviceId = "iotdevice",
            IoTHostHub = "iothub.azure-devices.net",
        },
        IoTEdgeDeviceDetails = new AzureNative.DataBoxEdge.Inputs.IoTDeviceInfoArgs
        {
            Authentication = new AzureNative.DataBoxEdge.Inputs.AuthenticationArgs
            {
                SymmetricKey = new AzureNative.DataBoxEdge.Inputs.SymmetricKeyArgs
                {
                    ConnectionString = new AzureNative.DataBoxEdge.Inputs.AsymmetricEncryptedSecretArgs
                    {
                        EncryptionAlgorithm = AzureNative.DataBoxEdge.EncryptionAlgorithm.AES256,
                        EncryptionCertThumbprint = "1245475856069999244",
                        Value = "Encrypted<<HostName=iothub.azure-devices.net;DeviceId=iotEdge;SharedAccessKey=2C750FscEas3JmQ8Bnui5yQWZPyml0/UiRt1bQwd8=>>",
                    },
                },
            },
            DeviceId = "iotEdge",
            IoTHostHub = "iothub.azure-devices.net",
        },
        Kind = "IOT",
        Name = "IoTRole1",
        ResourceGroupName = "GroupForEdgeAutomation",
        RoleStatus = AzureNative.DataBoxEdge.RoleStatus.Enabled,
        ShareMappings = new[] {},
    });
});
package main
import (
	databoxedge "github.com/pulumi/pulumi-azure-native-sdk/databoxedge/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := databoxedge.NewIoTRole(ctx, "ioTRole", &databoxedge.IoTRoleArgs{
			DeviceName:   pulumi.String("testedgedevice"),
			HostPlatform: pulumi.String(databoxedge.PlatformTypeLinux),
			IoTDeviceDetails: &databoxedge.IoTDeviceInfoArgs{
				Authentication: &databoxedge.AuthenticationArgs{
					SymmetricKey: &databoxedge.SymmetricKeyArgs{
						ConnectionString: &databoxedge.AsymmetricEncryptedSecretArgs{
							EncryptionAlgorithm:      pulumi.String(databoxedge.EncryptionAlgorithmAES256),
							EncryptionCertThumbprint: pulumi.String("348586569999244"),
							Value:                    pulumi.String("Encrypted<<HostName=iothub.azure-devices.net;DeviceId=iotDevice;SharedAccessKey=2C750FscEas3JmQ8Bnui5yQWZPyml0/UiRt1bQwd8=>>"),
						},
					},
				},
				DeviceId:   pulumi.String("iotdevice"),
				IoTHostHub: pulumi.String("iothub.azure-devices.net"),
			},
			IoTEdgeDeviceDetails: &databoxedge.IoTDeviceInfoArgs{
				Authentication: &databoxedge.AuthenticationArgs{
					SymmetricKey: &databoxedge.SymmetricKeyArgs{
						ConnectionString: &databoxedge.AsymmetricEncryptedSecretArgs{
							EncryptionAlgorithm:      pulumi.String(databoxedge.EncryptionAlgorithmAES256),
							EncryptionCertThumbprint: pulumi.String("1245475856069999244"),
							Value:                    pulumi.String("Encrypted<<HostName=iothub.azure-devices.net;DeviceId=iotEdge;SharedAccessKey=2C750FscEas3JmQ8Bnui5yQWZPyml0/UiRt1bQwd8=>>"),
						},
					},
				},
				DeviceId:   pulumi.String("iotEdge"),
				IoTHostHub: pulumi.String("iothub.azure-devices.net"),
			},
			Kind:              pulumi.String("IOT"),
			Name:              pulumi.String("IoTRole1"),
			ResourceGroupName: pulumi.String("GroupForEdgeAutomation"),
			RoleStatus:        pulumi.String(databoxedge.RoleStatusEnabled),
			ShareMappings:     databoxedge.MountPointMapArray{},
		})
		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.databoxedge.IoTRole;
import com.pulumi.azurenative.databoxedge.IoTRoleArgs;
import com.pulumi.azurenative.databoxedge.inputs.IoTDeviceInfoArgs;
import com.pulumi.azurenative.databoxedge.inputs.AuthenticationArgs;
import com.pulumi.azurenative.databoxedge.inputs.SymmetricKeyArgs;
import com.pulumi.azurenative.databoxedge.inputs.AsymmetricEncryptedSecretArgs;
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 ioTRole = new IoTRole("ioTRole", IoTRoleArgs.builder()
            .deviceName("testedgedevice")
            .hostPlatform("Linux")
            .ioTDeviceDetails(IoTDeviceInfoArgs.builder()
                .authentication(AuthenticationArgs.builder()
                    .symmetricKey(SymmetricKeyArgs.builder()
                        .connectionString(AsymmetricEncryptedSecretArgs.builder()
                            .encryptionAlgorithm("AES256")
                            .encryptionCertThumbprint("348586569999244")
                            .value("Encrypted<<HostName=iothub.azure-devices.net;DeviceId=iotDevice;SharedAccessKey=2C750FscEas3JmQ8Bnui5yQWZPyml0/UiRt1bQwd8=>>")
                            .build())
                        .build())
                    .build())
                .deviceId("iotdevice")
                .ioTHostHub("iothub.azure-devices.net")
                .build())
            .ioTEdgeDeviceDetails(IoTDeviceInfoArgs.builder()
                .authentication(AuthenticationArgs.builder()
                    .symmetricKey(SymmetricKeyArgs.builder()
                        .connectionString(AsymmetricEncryptedSecretArgs.builder()
                            .encryptionAlgorithm("AES256")
                            .encryptionCertThumbprint("1245475856069999244")
                            .value("Encrypted<<HostName=iothub.azure-devices.net;DeviceId=iotEdge;SharedAccessKey=2C750FscEas3JmQ8Bnui5yQWZPyml0/UiRt1bQwd8=>>")
                            .build())
                        .build())
                    .build())
                .deviceId("iotEdge")
                .ioTHostHub("iothub.azure-devices.net")
                .build())
            .kind("IOT")
            .name("IoTRole1")
            .resourceGroupName("GroupForEdgeAutomation")
            .roleStatus("Enabled")
            .shareMappings()
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const ioTRole = new azure_native.databoxedge.IoTRole("ioTRole", {
    deviceName: "testedgedevice",
    hostPlatform: azure_native.databoxedge.PlatformType.Linux,
    ioTDeviceDetails: {
        authentication: {
            symmetricKey: {
                connectionString: {
                    encryptionAlgorithm: azure_native.databoxedge.EncryptionAlgorithm.AES256,
                    encryptionCertThumbprint: "348586569999244",
                    value: "Encrypted<<HostName=iothub.azure-devices.net;DeviceId=iotDevice;SharedAccessKey=2C750FscEas3JmQ8Bnui5yQWZPyml0/UiRt1bQwd8=>>",
                },
            },
        },
        deviceId: "iotdevice",
        ioTHostHub: "iothub.azure-devices.net",
    },
    ioTEdgeDeviceDetails: {
        authentication: {
            symmetricKey: {
                connectionString: {
                    encryptionAlgorithm: azure_native.databoxedge.EncryptionAlgorithm.AES256,
                    encryptionCertThumbprint: "1245475856069999244",
                    value: "Encrypted<<HostName=iothub.azure-devices.net;DeviceId=iotEdge;SharedAccessKey=2C750FscEas3JmQ8Bnui5yQWZPyml0/UiRt1bQwd8=>>",
                },
            },
        },
        deviceId: "iotEdge",
        ioTHostHub: "iothub.azure-devices.net",
    },
    kind: "IOT",
    name: "IoTRole1",
    resourceGroupName: "GroupForEdgeAutomation",
    roleStatus: azure_native.databoxedge.RoleStatus.Enabled,
    shareMappings: [],
});
import pulumi
import pulumi_azure_native as azure_native
io_t_role = azure_native.databoxedge.IoTRole("ioTRole",
    device_name="testedgedevice",
    host_platform=azure_native.databoxedge.PlatformType.LINUX,
    io_t_device_details={
        "authentication": {
            "symmetric_key": {
                "connection_string": {
                    "encryption_algorithm": azure_native.databoxedge.EncryptionAlgorithm.AES256,
                    "encryption_cert_thumbprint": "348586569999244",
                    "value": "Encrypted<<HostName=iothub.azure-devices.net;DeviceId=iotDevice;SharedAccessKey=2C750FscEas3JmQ8Bnui5yQWZPyml0/UiRt1bQwd8=>>",
                },
            },
        },
        "device_id": "iotdevice",
        "io_t_host_hub": "iothub.azure-devices.net",
    },
    io_t_edge_device_details={
        "authentication": {
            "symmetric_key": {
                "connection_string": {
                    "encryption_algorithm": azure_native.databoxedge.EncryptionAlgorithm.AES256,
                    "encryption_cert_thumbprint": "1245475856069999244",
                    "value": "Encrypted<<HostName=iothub.azure-devices.net;DeviceId=iotEdge;SharedAccessKey=2C750FscEas3JmQ8Bnui5yQWZPyml0/UiRt1bQwd8=>>",
                },
            },
        },
        "device_id": "iotEdge",
        "io_t_host_hub": "iothub.azure-devices.net",
    },
    kind="IOT",
    name="IoTRole1",
    resource_group_name="GroupForEdgeAutomation",
    role_status=azure_native.databoxedge.RoleStatus.ENABLED,
    share_mappings=[])
resources:
  ioTRole:
    type: azure-native:databoxedge:IoTRole
    properties:
      deviceName: testedgedevice
      hostPlatform: Linux
      ioTDeviceDetails:
        authentication:
          symmetricKey:
            connectionString:
              encryptionAlgorithm: AES256
              encryptionCertThumbprint: '348586569999244'
              value: Encrypted<<HostName=iothub.azure-devices.net;DeviceId=iotDevice;SharedAccessKey=2C750FscEas3JmQ8Bnui5yQWZPyml0/UiRt1bQwd8=>>
        deviceId: iotdevice
        ioTHostHub: iothub.azure-devices.net
      ioTEdgeDeviceDetails:
        authentication:
          symmetricKey:
            connectionString:
              encryptionAlgorithm: AES256
              encryptionCertThumbprint: '1245475856069999244'
              value: Encrypted<<HostName=iothub.azure-devices.net;DeviceId=iotEdge;SharedAccessKey=2C750FscEas3JmQ8Bnui5yQWZPyml0/UiRt1bQwd8=>>
        deviceId: iotEdge
        ioTHostHub: iothub.azure-devices.net
      kind: IOT
      name: IoTRole1
      resourceGroupName: GroupForEdgeAutomation
      roleStatus: Enabled
      shareMappings: []
Create IoTRole Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new IoTRole(name: string, args: IoTRoleArgs, opts?: CustomResourceOptions);@overload
def IoTRole(resource_name: str,
            args: IoTRoleArgs,
            opts: Optional[ResourceOptions] = None)
@overload
def IoTRole(resource_name: str,
            opts: Optional[ResourceOptions] = None,
            device_name: Optional[str] = None,
            host_platform: Optional[Union[str, PlatformType]] = None,
            io_t_device_details: Optional[IoTDeviceInfoArgs] = None,
            io_t_edge_device_details: Optional[IoTDeviceInfoArgs] = None,
            resource_group_name: Optional[str] = None,
            role_status: Optional[Union[str, RoleStatus]] = None,
            compute_resource: Optional[ComputeResourceArgs] = None,
            io_t_edge_agent_info: Optional[IoTEdgeAgentInfoArgs] = None,
            name: Optional[str] = None,
            share_mappings: Optional[Sequence[MountPointMapArgs]] = None)func NewIoTRole(ctx *Context, name string, args IoTRoleArgs, opts ...ResourceOption) (*IoTRole, error)public IoTRole(string name, IoTRoleArgs args, CustomResourceOptions? opts = null)
public IoTRole(String name, IoTRoleArgs args)
public IoTRole(String name, IoTRoleArgs args, CustomResourceOptions options)
type: azure-native:databoxedge:IoTRole
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 IoTRoleArgs
- 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 IoTRoleArgs
- 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 IoTRoleArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IoTRoleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args IoTRoleArgs
- 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 ioTRoleResource = new AzureNative.DataBoxEdge.IoTRole("ioTRoleResource", new()
{
    DeviceName = "string",
    HostPlatform = "string",
    IoTDeviceDetails = new AzureNative.DataBoxEdge.Inputs.IoTDeviceInfoArgs
    {
        DeviceId = "string",
        IoTHostHub = "string",
        Authentication = new AzureNative.DataBoxEdge.Inputs.AuthenticationArgs
        {
            SymmetricKey = new AzureNative.DataBoxEdge.Inputs.SymmetricKeyArgs
            {
                ConnectionString = new AzureNative.DataBoxEdge.Inputs.AsymmetricEncryptedSecretArgs
                {
                    EncryptionAlgorithm = "string",
                    Value = "string",
                    EncryptionCertThumbprint = "string",
                },
            },
        },
        IoTHostHubId = "string",
    },
    IoTEdgeDeviceDetails = new AzureNative.DataBoxEdge.Inputs.IoTDeviceInfoArgs
    {
        DeviceId = "string",
        IoTHostHub = "string",
        Authentication = new AzureNative.DataBoxEdge.Inputs.AuthenticationArgs
        {
            SymmetricKey = new AzureNative.DataBoxEdge.Inputs.SymmetricKeyArgs
            {
                ConnectionString = new AzureNative.DataBoxEdge.Inputs.AsymmetricEncryptedSecretArgs
                {
                    EncryptionAlgorithm = "string",
                    Value = "string",
                    EncryptionCertThumbprint = "string",
                },
            },
        },
        IoTHostHubId = "string",
    },
    Kind = "string",
    ResourceGroupName = "string",
    RoleStatus = "string",
    ComputeResource = new AzureNative.DataBoxEdge.Inputs.ComputeResourceArgs
    {
        MemoryInGB = 0,
        ProcessorCount = 0,
    },
    IoTEdgeAgentInfo = new AzureNative.DataBoxEdge.Inputs.IoTEdgeAgentInfoArgs
    {
        ImageName = "string",
        Tag = "string",
        ImageRepository = new AzureNative.DataBoxEdge.Inputs.ImageRepositoryCredentialArgs
        {
            ImageRepositoryUrl = "string",
            UserName = "string",
            Password = new AzureNative.DataBoxEdge.Inputs.AsymmetricEncryptedSecretArgs
            {
                EncryptionAlgorithm = "string",
                Value = "string",
                EncryptionCertThumbprint = "string",
            },
        },
    },
    Name = "string",
    ShareMappings = new[]
    {
        new AzureNative.DataBoxEdge.Inputs.MountPointMapArgs
        {
            ShareId = "string",
        },
    },
});
example, err := databoxedge.NewIoTRole(ctx, "ioTRoleResource", &databoxedge.IoTRoleArgs{
	DeviceName:   pulumi.String("string"),
	HostPlatform: pulumi.String("string"),
	IoTDeviceDetails: &databoxedge.IoTDeviceInfoArgs{
		DeviceId:   pulumi.String("string"),
		IoTHostHub: pulumi.String("string"),
		Authentication: &databoxedge.AuthenticationArgs{
			SymmetricKey: &databoxedge.SymmetricKeyArgs{
				ConnectionString: &databoxedge.AsymmetricEncryptedSecretArgs{
					EncryptionAlgorithm:      pulumi.String("string"),
					Value:                    pulumi.String("string"),
					EncryptionCertThumbprint: pulumi.String("string"),
				},
			},
		},
		IoTHostHubId: pulumi.String("string"),
	},
	IoTEdgeDeviceDetails: &databoxedge.IoTDeviceInfoArgs{
		DeviceId:   pulumi.String("string"),
		IoTHostHub: pulumi.String("string"),
		Authentication: &databoxedge.AuthenticationArgs{
			SymmetricKey: &databoxedge.SymmetricKeyArgs{
				ConnectionString: &databoxedge.AsymmetricEncryptedSecretArgs{
					EncryptionAlgorithm:      pulumi.String("string"),
					Value:                    pulumi.String("string"),
					EncryptionCertThumbprint: pulumi.String("string"),
				},
			},
		},
		IoTHostHubId: pulumi.String("string"),
	},
	Kind:              pulumi.String("string"),
	ResourceGroupName: pulumi.String("string"),
	RoleStatus:        pulumi.String("string"),
	ComputeResource: &databoxedge.ComputeResourceArgs{
		MemoryInGB:     pulumi.Float64(0),
		ProcessorCount: pulumi.Int(0),
	},
	IoTEdgeAgentInfo: &databoxedge.IoTEdgeAgentInfoArgs{
		ImageName: pulumi.String("string"),
		Tag:       pulumi.String("string"),
		ImageRepository: &databoxedge.ImageRepositoryCredentialArgs{
			ImageRepositoryUrl: pulumi.String("string"),
			UserName:           pulumi.String("string"),
			Password: &databoxedge.AsymmetricEncryptedSecretArgs{
				EncryptionAlgorithm:      pulumi.String("string"),
				Value:                    pulumi.String("string"),
				EncryptionCertThumbprint: pulumi.String("string"),
			},
		},
	},
	Name: pulumi.String("string"),
	ShareMappings: databoxedge.MountPointMapArray{
		&databoxedge.MountPointMapArgs{
			ShareId: pulumi.String("string"),
		},
	},
})
var ioTRoleResource = new IoTRole("ioTRoleResource", IoTRoleArgs.builder()
    .deviceName("string")
    .hostPlatform("string")
    .ioTDeviceDetails(IoTDeviceInfoArgs.builder()
        .deviceId("string")
        .ioTHostHub("string")
        .authentication(AuthenticationArgs.builder()
            .symmetricKey(SymmetricKeyArgs.builder()
                .connectionString(AsymmetricEncryptedSecretArgs.builder()
                    .encryptionAlgorithm("string")
                    .value("string")
                    .encryptionCertThumbprint("string")
                    .build())
                .build())
            .build())
        .ioTHostHubId("string")
        .build())
    .ioTEdgeDeviceDetails(IoTDeviceInfoArgs.builder()
        .deviceId("string")
        .ioTHostHub("string")
        .authentication(AuthenticationArgs.builder()
            .symmetricKey(SymmetricKeyArgs.builder()
                .connectionString(AsymmetricEncryptedSecretArgs.builder()
                    .encryptionAlgorithm("string")
                    .value("string")
                    .encryptionCertThumbprint("string")
                    .build())
                .build())
            .build())
        .ioTHostHubId("string")
        .build())
    .kind("string")
    .resourceGroupName("string")
    .roleStatus("string")
    .computeResource(ComputeResourceArgs.builder()
        .memoryInGB(0)
        .processorCount(0)
        .build())
    .ioTEdgeAgentInfo(IoTEdgeAgentInfoArgs.builder()
        .imageName("string")
        .tag("string")
        .imageRepository(ImageRepositoryCredentialArgs.builder()
            .imageRepositoryUrl("string")
            .userName("string")
            .password(AsymmetricEncryptedSecretArgs.builder()
                .encryptionAlgorithm("string")
                .value("string")
                .encryptionCertThumbprint("string")
                .build())
            .build())
        .build())
    .name("string")
    .shareMappings(MountPointMapArgs.builder()
        .shareId("string")
        .build())
    .build());
io_t_role_resource = azure_native.databoxedge.IoTRole("ioTRoleResource",
    device_name="string",
    host_platform="string",
    io_t_device_details={
        "device_id": "string",
        "io_t_host_hub": "string",
        "authentication": {
            "symmetric_key": {
                "connection_string": {
                    "encryption_algorithm": "string",
                    "value": "string",
                    "encryption_cert_thumbprint": "string",
                },
            },
        },
        "io_t_host_hub_id": "string",
    },
    io_t_edge_device_details={
        "device_id": "string",
        "io_t_host_hub": "string",
        "authentication": {
            "symmetric_key": {
                "connection_string": {
                    "encryption_algorithm": "string",
                    "value": "string",
                    "encryption_cert_thumbprint": "string",
                },
            },
        },
        "io_t_host_hub_id": "string",
    },
    kind="string",
    resource_group_name="string",
    role_status="string",
    compute_resource={
        "memory_in_gb": 0,
        "processor_count": 0,
    },
    io_t_edge_agent_info={
        "image_name": "string",
        "tag": "string",
        "image_repository": {
            "image_repository_url": "string",
            "user_name": "string",
            "password": {
                "encryption_algorithm": "string",
                "value": "string",
                "encryption_cert_thumbprint": "string",
            },
        },
    },
    name="string",
    share_mappings=[{
        "share_id": "string",
    }])
const ioTRoleResource = new azure_native.databoxedge.IoTRole("ioTRoleResource", {
    deviceName: "string",
    hostPlatform: "string",
    ioTDeviceDetails: {
        deviceId: "string",
        ioTHostHub: "string",
        authentication: {
            symmetricKey: {
                connectionString: {
                    encryptionAlgorithm: "string",
                    value: "string",
                    encryptionCertThumbprint: "string",
                },
            },
        },
        ioTHostHubId: "string",
    },
    ioTEdgeDeviceDetails: {
        deviceId: "string",
        ioTHostHub: "string",
        authentication: {
            symmetricKey: {
                connectionString: {
                    encryptionAlgorithm: "string",
                    value: "string",
                    encryptionCertThumbprint: "string",
                },
            },
        },
        ioTHostHubId: "string",
    },
    kind: "string",
    resourceGroupName: "string",
    roleStatus: "string",
    computeResource: {
        memoryInGB: 0,
        processorCount: 0,
    },
    ioTEdgeAgentInfo: {
        imageName: "string",
        tag: "string",
        imageRepository: {
            imageRepositoryUrl: "string",
            userName: "string",
            password: {
                encryptionAlgorithm: "string",
                value: "string",
                encryptionCertThumbprint: "string",
            },
        },
    },
    name: "string",
    shareMappings: [{
        shareId: "string",
    }],
});
type: azure-native:databoxedge:IoTRole
properties:
    computeResource:
        memoryInGB: 0
        processorCount: 0
    deviceName: string
    hostPlatform: string
    ioTDeviceDetails:
        authentication:
            symmetricKey:
                connectionString:
                    encryptionAlgorithm: string
                    encryptionCertThumbprint: string
                    value: string
        deviceId: string
        ioTHostHub: string
        ioTHostHubId: string
    ioTEdgeAgentInfo:
        imageName: string
        imageRepository:
            imageRepositoryUrl: string
            password:
                encryptionAlgorithm: string
                encryptionCertThumbprint: string
                value: string
            userName: string
        tag: string
    ioTEdgeDeviceDetails:
        authentication:
            symmetricKey:
                connectionString:
                    encryptionAlgorithm: string
                    encryptionCertThumbprint: string
                    value: string
        deviceId: string
        ioTHostHub: string
        ioTHostHubId: string
    kind: string
    name: string
    resourceGroupName: string
    roleStatus: string
    shareMappings:
        - shareId: string
IoTRole 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 IoTRole resource accepts the following input properties:
- DeviceName string
- The device name.
- HostPlatform string | Pulumi.Azure Native. Data Box Edge. Platform Type 
- Host OS supported by the IoT role.
- IoTDevice Pulumi.Details Azure Native. Data Box Edge. Inputs. Io TDevice Info 
- IoT device metadata to which data box edge device needs to be connected.
- IoTEdge Pulumi.Device Details Azure Native. Data Box Edge. Inputs. Io TDevice Info 
- IoT edge device to which the IoT role needs to be configured.
- ResourceGroup stringName 
- The resource group name.
- RoleStatus string | Pulumi.Azure Native. Data Box Edge. Role Status 
- Role status.
- ComputeResource Pulumi.Azure Native. Data Box Edge. Inputs. Compute Resource 
- Resource allocation
- IoTEdge Pulumi.Agent Info Azure Native. Data Box Edge. Inputs. Io TEdge Agent Info 
- Iot edge agent details to download the agent and bootstrap iot runtime.
- Name string
- The role name.
- 
List<Pulumi.Azure Native. Data Box Edge. Inputs. Mount Point Map> 
- Mount points of shares in role(s).
- DeviceName string
- The device name.
- HostPlatform string | PlatformType 
- Host OS supported by the IoT role.
- IoTDevice IoDetails TDevice Info Args 
- IoT device metadata to which data box edge device needs to be connected.
- IoTEdge IoDevice Details TDevice Info Args 
- IoT edge device to which the IoT role needs to be configured.
- ResourceGroup stringName 
- The resource group name.
- RoleStatus string | RoleStatus 
- Role status.
- ComputeResource ComputeResource Args 
- Resource allocation
- IoTEdge IoAgent Info TEdge Agent Info Args 
- Iot edge agent details to download the agent and bootstrap iot runtime.
- Name string
- The role name.
- 
[]MountPoint Map Args 
- Mount points of shares in role(s).
- deviceName String
- The device name.
- hostPlatform String | PlatformType 
- Host OS supported by the IoT role.
- ioTDevice IoDetails TDevice Info 
- IoT device metadata to which data box edge device needs to be connected.
- ioTEdge IoDevice Details TDevice Info 
- IoT edge device to which the IoT role needs to be configured.
- resourceGroup StringName 
- The resource group name.
- roleStatus String | RoleStatus 
- Role status.
- computeResource ComputeResource 
- Resource allocation
- ioTEdge IoAgent Info TEdge Agent Info 
- Iot edge agent details to download the agent and bootstrap iot runtime.
- name String
- The role name.
- 
List<MountPoint Map> 
- Mount points of shares in role(s).
- deviceName string
- The device name.
- hostPlatform string | PlatformType 
- Host OS supported by the IoT role.
- ioTDevice IoDetails TDevice Info 
- IoT device metadata to which data box edge device needs to be connected.
- ioTEdge IoDevice Details TDevice Info 
- IoT edge device to which the IoT role needs to be configured.
- resourceGroup stringName 
- The resource group name.
- roleStatus string | RoleStatus 
- Role status.
- computeResource ComputeResource 
- Resource allocation
- ioTEdge IoAgent Info TEdge Agent Info 
- Iot edge agent details to download the agent and bootstrap iot runtime.
- name string
- The role name.
- 
MountPoint Map[] 
- Mount points of shares in role(s).
- device_name str
- The device name.
- host_platform str | PlatformType 
- Host OS supported by the IoT role.
- io_t_ Iodevice_ details TDevice Info Args 
- IoT device metadata to which data box edge device needs to be connected.
- io_t_ Ioedge_ device_ details TDevice Info Args 
- IoT edge device to which the IoT role needs to be configured.
- resource_group_ strname 
- The resource group name.
- role_status str | RoleStatus 
- Role status.
- compute_resource ComputeResource Args 
- Resource allocation
- io_t_ Ioedge_ agent_ info TEdge Agent Info Args 
- Iot edge agent details to download the agent and bootstrap iot runtime.
- name str
- The role name.
- 
Sequence[MountPoint Map Args] 
- Mount points of shares in role(s).
- deviceName String
- The device name.
- hostPlatform String | "Windows" | "Linux"
- Host OS supported by the IoT role.
- ioTDevice Property MapDetails 
- IoT device metadata to which data box edge device needs to be connected.
- ioTEdge Property MapDevice Details 
- IoT edge device to which the IoT role needs to be configured.
- resourceGroup StringName 
- The resource group name.
- roleStatus String | "Enabled" | "Disabled"
- Role status.
- computeResource Property Map
- Resource allocation
- ioTEdge Property MapAgent Info 
- Iot edge agent details to download the agent and bootstrap iot runtime.
- name String
- The role name.
- List<Property Map>
- Mount points of shares in role(s).
Outputs
All input properties are implicitly available as output properties. Additionally, the IoTRole resource produces the following output properties:
- HostPlatform stringType 
- Platform where the Iot runtime is hosted.
- Id string
- The provider-assigned unique ID for this managed resource.
- SystemData Pulumi.Azure Native. Data Box Edge. Outputs. System Data Response 
- Metadata pertaining to creation and last modification of Role
- Type string
- The hierarchical type of the object.
- HostPlatform stringType 
- Platform where the Iot runtime is hosted.
- Id string
- The provider-assigned unique ID for this managed resource.
- SystemData SystemData Response 
- Metadata pertaining to creation and last modification of Role
- Type string
- The hierarchical type of the object.
- hostPlatform StringType 
- Platform where the Iot runtime is hosted.
- id String
- The provider-assigned unique ID for this managed resource.
- systemData SystemData Response 
- Metadata pertaining to creation and last modification of Role
- type String
- The hierarchical type of the object.
- hostPlatform stringType 
- Platform where the Iot runtime is hosted.
- id string
- The provider-assigned unique ID for this managed resource.
- systemData SystemData Response 
- Metadata pertaining to creation and last modification of Role
- type string
- The hierarchical type of the object.
- host_platform_ strtype 
- Platform where the Iot runtime is hosted.
- id str
- The provider-assigned unique ID for this managed resource.
- system_data SystemData Response 
- Metadata pertaining to creation and last modification of Role
- type str
- The hierarchical type of the object.
- hostPlatform StringType 
- Platform where the Iot runtime is hosted.
- id String
- The provider-assigned unique ID for this managed resource.
- systemData Property Map
- Metadata pertaining to creation and last modification of Role
- type String
- The hierarchical type of the object.
Supporting Types
AsymmetricEncryptedSecret, AsymmetricEncryptedSecretArgs      
- EncryptionAlgorithm string | Pulumi.Azure Native. Data Box Edge. Encryption Algorithm 
- The algorithm used to encrypt "Value".
- Value string
- The value of the secret.
- EncryptionCert stringThumbprint 
- Thumbprint certificate used to encrypt "Value". If the value is unencrypted, it will be null.
- EncryptionAlgorithm string | EncryptionAlgorithm 
- The algorithm used to encrypt "Value".
- Value string
- The value of the secret.
- EncryptionCert stringThumbprint 
- Thumbprint certificate used to encrypt "Value". If the value is unencrypted, it will be null.
- encryptionAlgorithm String | EncryptionAlgorithm 
- The algorithm used to encrypt "Value".
- value String
- The value of the secret.
- encryptionCert StringThumbprint 
- Thumbprint certificate used to encrypt "Value". If the value is unencrypted, it will be null.
- encryptionAlgorithm string | EncryptionAlgorithm 
- The algorithm used to encrypt "Value".
- value string
- The value of the secret.
- encryptionCert stringThumbprint 
- Thumbprint certificate used to encrypt "Value". If the value is unencrypted, it will be null.
- encryption_algorithm str | EncryptionAlgorithm 
- The algorithm used to encrypt "Value".
- value str
- The value of the secret.
- encryption_cert_ strthumbprint 
- Thumbprint certificate used to encrypt "Value". If the value is unencrypted, it will be null.
- encryptionAlgorithm String | "None" | "AES256" | "RSAES_PKCS1_v_1_5" 
- The algorithm used to encrypt "Value".
- value String
- The value of the secret.
- encryptionCert StringThumbprint 
- Thumbprint certificate used to encrypt "Value". If the value is unencrypted, it will be null.
AsymmetricEncryptedSecretResponse, AsymmetricEncryptedSecretResponseArgs        
- EncryptionAlgorithm string
- The algorithm used to encrypt "Value".
- Value string
- The value of the secret.
- EncryptionCert stringThumbprint 
- Thumbprint certificate used to encrypt "Value". If the value is unencrypted, it will be null.
- EncryptionAlgorithm string
- The algorithm used to encrypt "Value".
- Value string
- The value of the secret.
- EncryptionCert stringThumbprint 
- Thumbprint certificate used to encrypt "Value". If the value is unencrypted, it will be null.
- encryptionAlgorithm String
- The algorithm used to encrypt "Value".
- value String
- The value of the secret.
- encryptionCert StringThumbprint 
- Thumbprint certificate used to encrypt "Value". If the value is unencrypted, it will be null.
- encryptionAlgorithm string
- The algorithm used to encrypt "Value".
- value string
- The value of the secret.
- encryptionCert stringThumbprint 
- Thumbprint certificate used to encrypt "Value". If the value is unencrypted, it will be null.
- encryption_algorithm str
- The algorithm used to encrypt "Value".
- value str
- The value of the secret.
- encryption_cert_ strthumbprint 
- Thumbprint certificate used to encrypt "Value". If the value is unencrypted, it will be null.
- encryptionAlgorithm String
- The algorithm used to encrypt "Value".
- value String
- The value of the secret.
- encryptionCert StringThumbprint 
- Thumbprint certificate used to encrypt "Value". If the value is unencrypted, it will be null.
Authentication, AuthenticationArgs  
- SymmetricKey Pulumi.Azure Native. Data Box Edge. Inputs. Symmetric Key 
- Symmetric key for authentication.
- SymmetricKey SymmetricKey 
- Symmetric key for authentication.
- symmetricKey SymmetricKey 
- Symmetric key for authentication.
- symmetricKey SymmetricKey 
- Symmetric key for authentication.
- symmetric_key SymmetricKey 
- Symmetric key for authentication.
- symmetricKey Property Map
- Symmetric key for authentication.
AuthenticationResponse, AuthenticationResponseArgs    
- SymmetricKey Pulumi.Azure Native. Data Box Edge. Inputs. Symmetric Key Response 
- Symmetric key for authentication.
- SymmetricKey SymmetricKey Response 
- Symmetric key for authentication.
- symmetricKey SymmetricKey Response 
- Symmetric key for authentication.
- symmetricKey SymmetricKey Response 
- Symmetric key for authentication.
- symmetric_key SymmetricKey Response 
- Symmetric key for authentication.
- symmetricKey Property Map
- Symmetric key for authentication.
ComputeResource, ComputeResourceArgs    
- MemoryIn doubleGB 
- Memory in GB
- ProcessorCount int
- Processor count
- MemoryIn float64GB 
- Memory in GB
- ProcessorCount int
- Processor count
- memoryIn DoubleGB 
- Memory in GB
- processorCount Integer
- Processor count
- memoryIn numberGB 
- Memory in GB
- processorCount number
- Processor count
- memory_in_ floatgb 
- Memory in GB
- processor_count int
- Processor count
- memoryIn NumberGB 
- Memory in GB
- processorCount Number
- Processor count
ComputeResourceResponse, ComputeResourceResponseArgs      
- MemoryIn doubleGB 
- Memory in GB
- ProcessorCount int
- Processor count
- MemoryIn float64GB 
- Memory in GB
- ProcessorCount int
- Processor count
- memoryIn DoubleGB 
- Memory in GB
- processorCount Integer
- Processor count
- memoryIn numberGB 
- Memory in GB
- processorCount number
- Processor count
- memory_in_ floatgb 
- Memory in GB
- processor_count int
- Processor count
- memoryIn NumberGB 
- Memory in GB
- processorCount Number
- Processor count
EncryptionAlgorithm, EncryptionAlgorithmArgs    
- None
- None
- AES256
- AES256
- RSAES_PKCS1_v_1_5 
- RSAES_PKCS1_v_1_5
- EncryptionAlgorithm None 
- None
- EncryptionAlgorithm AES256 
- AES256
- EncryptionAlgorithm_RSAES_PKCS1_ v_1_5 
- RSAES_PKCS1_v_1_5
- None
- None
- AES256
- AES256
- RSAES_PKCS1_v_1_5 
- RSAES_PKCS1_v_1_5
- None
- None
- AES256
- AES256
- RSAES_PKCS1_v_1_5 
- RSAES_PKCS1_v_1_5
- NONE
- None
- AES256
- AES256
- RSAE_S_PKCS1_V_1_5
- RSAES_PKCS1_v_1_5
- "None"
- None
- "AES256"
- AES256
- "RSAES_PKCS1_v_1_5" 
- RSAES_PKCS1_v_1_5
ImageRepositoryCredential, ImageRepositoryCredentialArgs      
- ImageRepository stringUrl 
- Image repository url (e.g.: mcr.microsoft.com).
- UserName string
- Repository user name.
- Password
Pulumi.Azure Native. Data Box Edge. Inputs. Asymmetric Encrypted Secret 
- Repository user password.
- ImageRepository stringUrl 
- Image repository url (e.g.: mcr.microsoft.com).
- UserName string
- Repository user name.
- Password
AsymmetricEncrypted Secret 
- Repository user password.
- imageRepository StringUrl 
- Image repository url (e.g.: mcr.microsoft.com).
- userName String
- Repository user name.
- password
AsymmetricEncrypted Secret 
- Repository user password.
- imageRepository stringUrl 
- Image repository url (e.g.: mcr.microsoft.com).
- userName string
- Repository user name.
- password
AsymmetricEncrypted Secret 
- Repository user password.
- image_repository_ strurl 
- Image repository url (e.g.: mcr.microsoft.com).
- user_name str
- Repository user name.
- password
AsymmetricEncrypted Secret 
- Repository user password.
- imageRepository StringUrl 
- Image repository url (e.g.: mcr.microsoft.com).
- userName String
- Repository user name.
- password Property Map
- Repository user password.
ImageRepositoryCredentialResponse, ImageRepositoryCredentialResponseArgs        
- ImageRepository stringUrl 
- Image repository url (e.g.: mcr.microsoft.com).
- UserName string
- Repository user name.
- Password
Pulumi.Azure Native. Data Box Edge. Inputs. Asymmetric Encrypted Secret Response 
- Repository user password.
- ImageRepository stringUrl 
- Image repository url (e.g.: mcr.microsoft.com).
- UserName string
- Repository user name.
- Password
AsymmetricEncrypted Secret Response 
- Repository user password.
- imageRepository StringUrl 
- Image repository url (e.g.: mcr.microsoft.com).
- userName String
- Repository user name.
- password
AsymmetricEncrypted Secret Response 
- Repository user password.
- imageRepository stringUrl 
- Image repository url (e.g.: mcr.microsoft.com).
- userName string
- Repository user name.
- password
AsymmetricEncrypted Secret Response 
- Repository user password.
- image_repository_ strurl 
- Image repository url (e.g.: mcr.microsoft.com).
- user_name str
- Repository user name.
- password
AsymmetricEncrypted Secret Response 
- Repository user password.
- imageRepository StringUrl 
- Image repository url (e.g.: mcr.microsoft.com).
- userName String
- Repository user name.
- password Property Map
- Repository user password.
IoTDeviceInfo, IoTDeviceInfoArgs      
- DeviceId string
- ID of the IoT device/edge device.
- IoTHost stringHub 
- Host name for the IoT hub associated to the device.
- Authentication
Pulumi.Azure Native. Data Box Edge. Inputs. Authentication 
- Encrypted IoT device/IoT edge device connection string.
- IoTHost stringHub Id 
- Id for the IoT hub associated to the device.
- DeviceId string
- ID of the IoT device/edge device.
- IoTHost stringHub 
- Host name for the IoT hub associated to the device.
- Authentication Authentication
- Encrypted IoT device/IoT edge device connection string.
- IoTHost stringHub Id 
- Id for the IoT hub associated to the device.
- deviceId String
- ID of the IoT device/edge device.
- ioTHost StringHub 
- Host name for the IoT hub associated to the device.
- authentication Authentication
- Encrypted IoT device/IoT edge device connection string.
- ioTHost StringHub Id 
- Id for the IoT hub associated to the device.
- deviceId string
- ID of the IoT device/edge device.
- ioTHost stringHub 
- Host name for the IoT hub associated to the device.
- authentication Authentication
- Encrypted IoT device/IoT edge device connection string.
- ioTHost stringHub Id 
- Id for the IoT hub associated to the device.
- device_id str
- ID of the IoT device/edge device.
- io_t_ strhost_ hub 
- Host name for the IoT hub associated to the device.
- authentication Authentication
- Encrypted IoT device/IoT edge device connection string.
- io_t_ strhost_ hub_ id 
- Id for the IoT hub associated to the device.
- deviceId String
- ID of the IoT device/edge device.
- ioTHost StringHub 
- Host name for the IoT hub associated to the device.
- authentication Property Map
- Encrypted IoT device/IoT edge device connection string.
- ioTHost StringHub Id 
- Id for the IoT hub associated to the device.
IoTDeviceInfoResponse, IoTDeviceInfoResponseArgs        
- DeviceId string
- ID of the IoT device/edge device.
- IoTHost stringHub 
- Host name for the IoT hub associated to the device.
- Authentication
Pulumi.Azure Native. Data Box Edge. Inputs. Authentication Response 
- Encrypted IoT device/IoT edge device connection string.
- IoTHost stringHub Id 
- Id for the IoT hub associated to the device.
- DeviceId string
- ID of the IoT device/edge device.
- IoTHost stringHub 
- Host name for the IoT hub associated to the device.
- Authentication
AuthenticationResponse 
- Encrypted IoT device/IoT edge device connection string.
- IoTHost stringHub Id 
- Id for the IoT hub associated to the device.
- deviceId String
- ID of the IoT device/edge device.
- ioTHost StringHub 
- Host name for the IoT hub associated to the device.
- authentication
AuthenticationResponse 
- Encrypted IoT device/IoT edge device connection string.
- ioTHost StringHub Id 
- Id for the IoT hub associated to the device.
- deviceId string
- ID of the IoT device/edge device.
- ioTHost stringHub 
- Host name for the IoT hub associated to the device.
- authentication
AuthenticationResponse 
- Encrypted IoT device/IoT edge device connection string.
- ioTHost stringHub Id 
- Id for the IoT hub associated to the device.
- device_id str
- ID of the IoT device/edge device.
- io_t_ strhost_ hub 
- Host name for the IoT hub associated to the device.
- authentication
AuthenticationResponse 
- Encrypted IoT device/IoT edge device connection string.
- io_t_ strhost_ hub_ id 
- Id for the IoT hub associated to the device.
- deviceId String
- ID of the IoT device/edge device.
- ioTHost StringHub 
- Host name for the IoT hub associated to the device.
- authentication Property Map
- Encrypted IoT device/IoT edge device connection string.
- ioTHost StringHub Id 
- Id for the IoT hub associated to the device.
IoTEdgeAgentInfo, IoTEdgeAgentInfoArgs        
- ImageName string
- Name of the IoT edge agent image.
- Tag string
- Image Tag.
- ImageRepository Pulumi.Azure Native. Data Box Edge. Inputs. Image Repository Credential 
- Image repository details.
- ImageName string
- Name of the IoT edge agent image.
- Tag string
- Image Tag.
- ImageRepository ImageRepository Credential 
- Image repository details.
- imageName String
- Name of the IoT edge agent image.
- tag String
- Image Tag.
- imageRepository ImageRepository Credential 
- Image repository details.
- imageName string
- Name of the IoT edge agent image.
- tag string
- Image Tag.
- imageRepository ImageRepository Credential 
- Image repository details.
- image_name str
- Name of the IoT edge agent image.
- tag str
- Image Tag.
- image_repository ImageRepository Credential 
- Image repository details.
- imageName String
- Name of the IoT edge agent image.
- tag String
- Image Tag.
- imageRepository Property Map
- Image repository details.
IoTEdgeAgentInfoResponse, IoTEdgeAgentInfoResponseArgs          
- ImageName string
- Name of the IoT edge agent image.
- Tag string
- Image Tag.
- ImageRepository Pulumi.Azure Native. Data Box Edge. Inputs. Image Repository Credential Response 
- Image repository details.
- ImageName string
- Name of the IoT edge agent image.
- Tag string
- Image Tag.
- ImageRepository ImageRepository Credential Response 
- Image repository details.
- imageName String
- Name of the IoT edge agent image.
- tag String
- Image Tag.
- imageRepository ImageRepository Credential Response 
- Image repository details.
- imageName string
- Name of the IoT edge agent image.
- tag string
- Image Tag.
- imageRepository ImageRepository Credential Response 
- Image repository details.
- image_name str
- Name of the IoT edge agent image.
- tag str
- Image Tag.
- image_repository ImageRepository Credential Response 
- Image repository details.
- imageName String
- Name of the IoT edge agent image.
- tag String
- Image Tag.
- imageRepository Property Map
- Image repository details.
MountPointMap, MountPointMapArgs      
- string
- ID of the share mounted to the role VM.
- string
- ID of the share mounted to the role VM.
- String
- ID of the share mounted to the role VM.
- string
- ID of the share mounted to the role VM.
- str
- ID of the share mounted to the role VM.
- String
- ID of the share mounted to the role VM.
MountPointMapResponse, MountPointMapResponseArgs        
- MountPoint string
- Mount point for the share.
- MountType string
- Mounting type.
- RoleId string
- ID of the role to which share is mounted.
- RoleType string
- Role type.
- string
- ID of the share mounted to the role VM.
- MountPoint string
- Mount point for the share.
- MountType string
- Mounting type.
- RoleId string
- ID of the role to which share is mounted.
- RoleType string
- Role type.
- string
- ID of the share mounted to the role VM.
- mountPoint String
- Mount point for the share.
- mountType String
- Mounting type.
- roleId String
- ID of the role to which share is mounted.
- roleType String
- Role type.
- String
- ID of the share mounted to the role VM.
- mountPoint string
- Mount point for the share.
- mountType string
- Mounting type.
- roleId string
- ID of the role to which share is mounted.
- roleType string
- Role type.
- string
- ID of the share mounted to the role VM.
- mount_point str
- Mount point for the share.
- mount_type str
- Mounting type.
- role_id str
- ID of the role to which share is mounted.
- role_type str
- Role type.
- str
- ID of the share mounted to the role VM.
- mountPoint String
- Mount point for the share.
- mountType String
- Mounting type.
- roleId String
- ID of the role to which share is mounted.
- roleType String
- Role type.
- String
- ID of the share mounted to the role VM.
PlatformType, PlatformTypeArgs    
- Windows
- Windows
- Linux
- Linux
- PlatformType Windows 
- Windows
- PlatformType Linux 
- Linux
- Windows
- Windows
- Linux
- Linux
- Windows
- Windows
- Linux
- Linux
- WINDOWS
- Windows
- LINUX
- Linux
- "Windows"
- Windows
- "Linux"
- Linux
RoleStatus, RoleStatusArgs    
- Enabled
- Enabled
- Disabled
- Disabled
- RoleStatus Enabled 
- Enabled
- RoleStatus Disabled 
- Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- ENABLED
- Enabled
- DISABLED
- Disabled
- "Enabled"
- Enabled
- "Disabled"
- Disabled
SymmetricKey, SymmetricKeyArgs    
- ConnectionString Pulumi.Azure Native. Data Box Edge. Inputs. Asymmetric Encrypted Secret 
- Connection string based on the symmetric key.
- ConnectionString AsymmetricEncrypted Secret 
- Connection string based on the symmetric key.
- connectionString AsymmetricEncrypted Secret 
- Connection string based on the symmetric key.
- connectionString AsymmetricEncrypted Secret 
- Connection string based on the symmetric key.
- connection_string AsymmetricEncrypted Secret 
- Connection string based on the symmetric key.
- connectionString Property Map
- Connection string based on the symmetric key.
SymmetricKeyResponse, SymmetricKeyResponseArgs      
- ConnectionString Pulumi.Azure Native. Data Box Edge. Inputs. Asymmetric Encrypted Secret Response 
- Connection string based on the symmetric key.
- ConnectionString AsymmetricEncrypted Secret Response 
- Connection string based on the symmetric key.
- connectionString AsymmetricEncrypted Secret Response 
- Connection string based on the symmetric key.
- connectionString AsymmetricEncrypted Secret Response 
- Connection string based on the symmetric key.
- connection_string AsymmetricEncrypted Secret Response 
- Connection string based on the symmetric key.
- connectionString Property Map
- Connection string based on the symmetric key.
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified 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.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified 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:databoxedge:IoTRole IoTRole1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataBoxEdge/dataBoxEdgeDevices/{deviceName}/roles/{name} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0