azure-native.databoxedge.MECRole
Explore with Pulumi AI
MEC 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 mecRole = new AzureNative.DataBoxEdge.MECRole("mecRole", new()
{
DeviceName = "testedgedevice",
Name = "IoTRole1",
ResourceGroupName = "GroupForEdgeAutomation",
});
});
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.NewMECRole(ctx, "mecRole", &databoxedge.MECRoleArgs{
DeviceName: pulumi.String("testedgedevice"),
Name: pulumi.String("IoTRole1"),
ResourceGroupName: pulumi.String("GroupForEdgeAutomation"),
})
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.MECRole;
import com.pulumi.azurenative.databoxedge.MECRoleArgs;
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 mecRole = new MECRole("mecRole", MECRoleArgs.builder()
.deviceName("testedgedevice")
.name("IoTRole1")
.resourceGroupName("GroupForEdgeAutomation")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
mec_role = azure_native.databoxedge.MECRole("mecRole",
device_name="testedgedevice",
name="IoTRole1",
resource_group_name="GroupForEdgeAutomation")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const mecRole = new azure_native.databoxedge.MECRole("mecRole", {
deviceName: "testedgedevice",
name: "IoTRole1",
resourceGroupName: "GroupForEdgeAutomation",
});
resources:
mecRole:
type: azure-native:databoxedge:MECRole
properties:
deviceName: testedgedevice
name: IoTRole1
resourceGroupName: GroupForEdgeAutomation
Create MECRole Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new MECRole(name: string, args: MECRoleArgs, opts?: CustomResourceOptions);
@overload
def MECRole(resource_name: str,
args: MECRoleArgs,
opts: Optional[ResourceOptions] = None)
@overload
def MECRole(resource_name: str,
opts: Optional[ResourceOptions] = None,
device_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
role_status: Optional[Union[str, RoleStatus]] = None,
connection_string: Optional[AsymmetricEncryptedSecretArgs] = None,
controller_endpoint: Optional[str] = None,
name: Optional[str] = None,
resource_unique_id: Optional[str] = None)
func NewMECRole(ctx *Context, name string, args MECRoleArgs, opts ...ResourceOption) (*MECRole, error)
public MECRole(string name, MECRoleArgs args, CustomResourceOptions? opts = null)
public MECRole(String name, MECRoleArgs args)
public MECRole(String name, MECRoleArgs args, CustomResourceOptions options)
type: azure-native:databoxedge:MECRole
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 MECRoleArgs
- 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 MECRoleArgs
- 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 MECRoleArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args MECRoleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args MECRoleArgs
- 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 mecroleResource = new AzureNative.DataBoxEdge.MECRole("mecroleResource", new()
{
DeviceName = "string",
Kind = "string",
ResourceGroupName = "string",
RoleStatus = "string",
ConnectionString = new AzureNative.DataBoxEdge.Inputs.AsymmetricEncryptedSecretArgs
{
EncryptionAlgorithm = "string",
Value = "string",
EncryptionCertThumbprint = "string",
},
ControllerEndpoint = "string",
Name = "string",
ResourceUniqueId = "string",
});
example, err := databoxedge.NewMECRole(ctx, "mecroleResource", &databoxedge.MECRoleArgs{
DeviceName: pulumi.String("string"),
Kind: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
RoleStatus: pulumi.String("string"),
ConnectionString: &databoxedge.AsymmetricEncryptedSecretArgs{
EncryptionAlgorithm: pulumi.String("string"),
Value: pulumi.String("string"),
EncryptionCertThumbprint: pulumi.String("string"),
},
ControllerEndpoint: pulumi.String("string"),
Name: pulumi.String("string"),
ResourceUniqueId: pulumi.String("string"),
})
var mecroleResource = new MECRole("mecroleResource", MECRoleArgs.builder()
.deviceName("string")
.kind("string")
.resourceGroupName("string")
.roleStatus("string")
.connectionString(AsymmetricEncryptedSecretArgs.builder()
.encryptionAlgorithm("string")
.value("string")
.encryptionCertThumbprint("string")
.build())
.controllerEndpoint("string")
.name("string")
.resourceUniqueId("string")
.build());
mecrole_resource = azure_native.databoxedge.MECRole("mecroleResource",
device_name="string",
kind="string",
resource_group_name="string",
role_status="string",
connection_string={
"encryptionAlgorithm": "string",
"value": "string",
"encryptionCertThumbprint": "string",
},
controller_endpoint="string",
name="string",
resource_unique_id="string")
const mecroleResource = new azure_native.databoxedge.MECRole("mecroleResource", {
deviceName: "string",
kind: "string",
resourceGroupName: "string",
roleStatus: "string",
connectionString: {
encryptionAlgorithm: "string",
value: "string",
encryptionCertThumbprint: "string",
},
controllerEndpoint: "string",
name: "string",
resourceUniqueId: "string",
});
type: azure-native:databoxedge:MECRole
properties:
connectionString:
encryptionAlgorithm: string
encryptionCertThumbprint: string
value: string
controllerEndpoint: string
deviceName: string
kind: string
name: string
resourceGroupName: string
resourceUniqueId: string
roleStatus: string
MECRole 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 MECRole resource accepts the following input properties:
- Device
Name string - The device name.
- Resource
Group stringName - The resource group name.
- Role
Status string | Pulumi.Azure Native. Data Box Edge. Role Status - Role status.
- Connection
String Pulumi.Azure Native. Data Box Edge. Inputs. Asymmetric Encrypted Secret - Activation key of the MEC.
- Controller
Endpoint string - Controller Endpoint.
- Name string
- The role name.
- Resource
Unique stringId - Unique Id of the Resource.
- Device
Name string - The device name.
- Resource
Group stringName - The resource group name.
- Role
Status string | RoleStatus - Role status.
- Connection
String AsymmetricEncrypted Secret Args - Activation key of the MEC.
- Controller
Endpoint string - Controller Endpoint.
- Name string
- The role name.
- Resource
Unique stringId - Unique Id of the Resource.
- device
Name String - The device name.
- resource
Group StringName - The resource group name.
- role
Status String | RoleStatus - Role status.
- connection
String AsymmetricEncrypted Secret - Activation key of the MEC.
- controller
Endpoint String - Controller Endpoint.
- name String
- The role name.
- resource
Unique StringId - Unique Id of the Resource.
- device
Name string - The device name.
- resource
Group stringName - The resource group name.
- role
Status string | RoleStatus - Role status.
- connection
String AsymmetricEncrypted Secret - Activation key of the MEC.
- controller
Endpoint string - Controller Endpoint.
- name string
- The role name.
- resource
Unique stringId - Unique Id of the Resource.
- device_
name str - The device name.
- resource_
group_ strname - The resource group name.
- role_
status str | RoleStatus - Role status.
- connection_
string AsymmetricEncrypted Secret Args - Activation key of the MEC.
- controller_
endpoint str - Controller Endpoint.
- name str
- The role name.
- resource_
unique_ strid - Unique Id of the Resource.
- device
Name String - The device name.
- resource
Group StringName - The resource group name.
- role
Status String | "Enabled" | "Disabled" - Role status.
- connection
String Property Map - Activation key of the MEC.
- controller
Endpoint String - Controller Endpoint.
- name String
- The role name.
- resource
Unique StringId - Unique Id of the Resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the MECRole resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- System
Data 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.
- Id string
- The provider-assigned unique ID for this managed resource.
- System
Data SystemData Response - Metadata pertaining to creation and last modification of Role
- Type string
- The hierarchical type of the object.
- id String
- The provider-assigned unique ID for this managed resource.
- system
Data SystemData Response - Metadata pertaining to creation and last modification of Role
- type String
- The hierarchical type of the object.
- id string
- The provider-assigned unique ID for this managed resource.
- system
Data SystemData Response - Metadata pertaining to creation and last modification of Role
- type string
- The hierarchical type of the object.
- 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.
- id String
- The provider-assigned unique ID for this managed resource.
- system
Data Property Map - Metadata pertaining to creation and last modification of Role
- type String
- The hierarchical type of the object.
Supporting Types
AsymmetricEncryptedSecret, AsymmetricEncryptedSecretArgs
- Encryption
Algorithm string | Pulumi.Azure Native. Data Box Edge. Encryption Algorithm - The algorithm used to encrypt "Value".
- Value string
- The value of the secret.
- Encryption
Cert stringThumbprint - Thumbprint certificate used to encrypt "Value". If the value is unencrypted, it will be null.
- Encryption
Algorithm string | EncryptionAlgorithm - The algorithm used to encrypt "Value".
- Value string
- The value of the secret.
- Encryption
Cert stringThumbprint - Thumbprint certificate used to encrypt "Value". If the value is unencrypted, it will be null.
- encryption
Algorithm String | EncryptionAlgorithm - The algorithm used to encrypt "Value".
- value String
- The value of the secret.
- encryption
Cert StringThumbprint - Thumbprint certificate used to encrypt "Value". If the value is unencrypted, it will be null.
- encryption
Algorithm string | EncryptionAlgorithm - The algorithm used to encrypt "Value".
- value string
- The value of the secret.
- encryption
Cert 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.
- encryption
Algorithm String | "None" | "AES256" | "RSAES_PKCS1_v_1_5" - The algorithm used to encrypt "Value".
- value String
- The value of the secret.
- encryption
Cert StringThumbprint - Thumbprint certificate used to encrypt "Value". If the value is unencrypted, it will be null.
AsymmetricEncryptedSecretResponse, AsymmetricEncryptedSecretResponseArgs
- Encryption
Algorithm string - The algorithm used to encrypt "Value".
- Value string
- The value of the secret.
- Encryption
Cert stringThumbprint - Thumbprint certificate used to encrypt "Value". If the value is unencrypted, it will be null.
- Encryption
Algorithm string - The algorithm used to encrypt "Value".
- Value string
- The value of the secret.
- Encryption
Cert stringThumbprint - Thumbprint certificate used to encrypt "Value". If the value is unencrypted, it will be null.
- encryption
Algorithm String - The algorithm used to encrypt "Value".
- value String
- The value of the secret.
- encryption
Cert StringThumbprint - Thumbprint certificate used to encrypt "Value". If the value is unencrypted, it will be null.
- encryption
Algorithm string - The algorithm used to encrypt "Value".
- value string
- The value of the secret.
- encryption
Cert 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.
- encryption
Algorithm String - The algorithm used to encrypt "Value".
- value String
- The value of the secret.
- encryption
Cert StringThumbprint - Thumbprint certificate used to encrypt "Value". If the value is unencrypted, it will be null.
EncryptionAlgorithm, EncryptionAlgorithmArgs
- None
- None
- AES256
- AES256
- RSAES_PKCS1_
v_1_5 - RSAES_PKCS1_v_1_5
- Encryption
Algorithm None - None
- Encryption
Algorithm AES256 - AES256
- Encryption
Algorithm_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
RoleStatus, RoleStatusArgs
- Enabled
- Enabled
- Disabled
- Disabled
- Role
Status Enabled - Enabled
- Role
Status Disabled - Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- ENABLED
- Enabled
- DISABLED
- Disabled
- "Enabled"
- Enabled
- "Disabled"
- Disabled
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:databoxedge:MECRole 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