1. Packages
  2. Azure Native
  3. API Docs
  4. iotoperations
  5. BrokerAuthorization
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.63.0 published on Tuesday, Sep 24, 2024 by Pulumi

azure-native.iotoperations.BrokerAuthorization

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.63.0 published on Tuesday, Sep 24, 2024 by Pulumi

    Instance broker authorizations resource Azure REST API version: 2024-07-01-preview.

    Other available API versions: 2024-08-15-preview.

    Example Usage

    BrokerAuthorization_CreateOrUpdate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var brokerAuthorization = new AzureNative.IoTOperations.BrokerAuthorization("brokerAuthorization", new()
        {
            AuthorizationName = "aio-authorization",
            BrokerName = "aio-broker",
            ExtendedLocation = new AzureNative.IoTOperations.Inputs.ExtendedLocationArgs
            {
                Name = "ycsyubcxttlusbhfdqaynmkaatnbyv",
                Type = AzureNative.IoTOperations.ExtendedLocationType.CustomLocation,
            },
            InstanceName = "aio-instance",
            Properties = new AzureNative.IoTOperations.Inputs.BrokerAuthorizationPropertiesArgs
            {
                AuthorizationPolicies = new AzureNative.IoTOperations.Inputs.AuthorizationConfigArgs
                {
                    Cache = AzureNative.IoTOperations.OperationalMode.Enabled,
                    Rules = new[]
                    {
                        new AzureNative.IoTOperations.Inputs.AuthorizationRuleArgs
                        {
                            BrokerResources = new[]
                            {
                                new AzureNative.IoTOperations.Inputs.BrokerResourceRuleArgs
                                {
                                    Method = AzureNative.IoTOperations.BrokerResourceDefinitionMethods.Connect,
                                    Topics = new[]
                                    {
                                        "afmj",
                                    },
                                },
                            },
                            Principals = new AzureNative.IoTOperations.Inputs.PrincipalDefinitionArgs
                            {
                                Attributes = new[]
                                {
                                    
                                    {
                                        { "key1225", "szvjlbpctnpjmyjq" },
                                    },
                                },
                                ClientIds = new[]
                                {
                                    "zfamfwk",
                                },
                                Usernames = new[]
                                {
                                    "udobrmzkzubuqbvnbabovvr",
                                },
                            },
                            StateStoreResources = new[]
                            {
                                new AzureNative.IoTOperations.Inputs.StateStoreResourceRuleArgs
                                {
                                    KeyType = AzureNative.IoTOperations.StateStoreResourceKeyTypes.Pattern,
                                    Keys = new[]
                                    {
                                        "tttdjfmf",
                                    },
                                    Method = AzureNative.IoTOperations.StateStoreResourceDefinitionMethods.Read,
                                },
                            },
                        },
                    },
                },
            },
            ResourceGroupName = "rgiotoperations",
        });
    
    });
    
    package main
    
    import (
    	iotoperations "github.com/pulumi/pulumi-azure-native-sdk/iotoperations/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := iotoperations.NewBrokerAuthorization(ctx, "brokerAuthorization", &iotoperations.BrokerAuthorizationArgs{
    			AuthorizationName: pulumi.String("aio-authorization"),
    			BrokerName:        pulumi.String("aio-broker"),
    			ExtendedLocation: &iotoperations.ExtendedLocationArgs{
    				Name: pulumi.String("ycsyubcxttlusbhfdqaynmkaatnbyv"),
    				Type: pulumi.String(iotoperations.ExtendedLocationTypeCustomLocation),
    			},
    			InstanceName: pulumi.String("aio-instance"),
    			Properties: &iotoperations.BrokerAuthorizationPropertiesArgs{
    				AuthorizationPolicies: &iotoperations.AuthorizationConfigArgs{
    					Cache: pulumi.String(iotoperations.OperationalModeEnabled),
    					Rules: iotoperations.AuthorizationRuleArray{
    						&iotoperations.AuthorizationRuleArgs{
    							BrokerResources: iotoperations.BrokerResourceRuleArray{
    								&iotoperations.BrokerResourceRuleArgs{
    									Method: pulumi.String(iotoperations.BrokerResourceDefinitionMethodsConnect),
    									Topics: pulumi.StringArray{
    										pulumi.String("afmj"),
    									},
    								},
    							},
    							Principals: &iotoperations.PrincipalDefinitionArgs{
    								Attributes: pulumi.StringMapArray{
    									pulumi.StringMap{
    										"key1225": pulumi.String("szvjlbpctnpjmyjq"),
    									},
    								},
    								ClientIds: pulumi.StringArray{
    									pulumi.String("zfamfwk"),
    								},
    								Usernames: pulumi.StringArray{
    									pulumi.String("udobrmzkzubuqbvnbabovvr"),
    								},
    							},
    							StateStoreResources: iotoperations.StateStoreResourceRuleArray{
    								&iotoperations.StateStoreResourceRuleArgs{
    									KeyType: pulumi.String(iotoperations.StateStoreResourceKeyTypesPattern),
    									Keys: pulumi.StringArray{
    										pulumi.String("tttdjfmf"),
    									},
    									Method: pulumi.String(iotoperations.StateStoreResourceDefinitionMethodsRead),
    								},
    							},
    						},
    					},
    				},
    			},
    			ResourceGroupName: pulumi.String("rgiotoperations"),
    		})
    		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.iotoperations.BrokerAuthorization;
    import com.pulumi.azurenative.iotoperations.BrokerAuthorizationArgs;
    import com.pulumi.azurenative.iotoperations.inputs.ExtendedLocationArgs;
    import com.pulumi.azurenative.iotoperations.inputs.BrokerAuthorizationPropertiesArgs;
    import com.pulumi.azurenative.iotoperations.inputs.AuthorizationConfigArgs;
    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 brokerAuthorization = new BrokerAuthorization("brokerAuthorization", BrokerAuthorizationArgs.builder()
                .authorizationName("aio-authorization")
                .brokerName("aio-broker")
                .extendedLocation(ExtendedLocationArgs.builder()
                    .name("ycsyubcxttlusbhfdqaynmkaatnbyv")
                    .type("CustomLocation")
                    .build())
                .instanceName("aio-instance")
                .properties(BrokerAuthorizationPropertiesArgs.builder()
                    .authorizationPolicies(AuthorizationConfigArgs.builder()
                        .cache("Enabled")
                        .rules(AuthorizationRuleArgs.builder()
                            .brokerResources(BrokerResourceRuleArgs.builder()
                                .method("Connect")
                                .topics("afmj")
                                .build())
                            .principals(PrincipalDefinitionArgs.builder()
                                .attributes(Map.of("key1225", "szvjlbpctnpjmyjq"))
                                .clientIds("zfamfwk")
                                .usernames("udobrmzkzubuqbvnbabovvr")
                                .build())
                            .stateStoreResources(StateStoreResourceRuleArgs.builder()
                                .keyType("Pattern")
                                .keys("tttdjfmf")
                                .method("Read")
                                .build())
                            .build())
                        .build())
                    .build())
                .resourceGroupName("rgiotoperations")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    broker_authorization = azure_native.iotoperations.BrokerAuthorization("brokerAuthorization",
        authorization_name="aio-authorization",
        broker_name="aio-broker",
        extended_location={
            "name": "ycsyubcxttlusbhfdqaynmkaatnbyv",
            "type": azure_native.iotoperations.ExtendedLocationType.CUSTOM_LOCATION,
        },
        instance_name="aio-instance",
        properties={
            "authorization_policies": {
                "cache": azure_native.iotoperations.OperationalMode.ENABLED,
                "rules": [{
                    "broker_resources": [{
                        "method": azure_native.iotoperations.BrokerResourceDefinitionMethods.CONNECT,
                        "topics": ["afmj"],
                    }],
                    "principals": {
                        "attributes": [{
                            "key1225": "szvjlbpctnpjmyjq",
                        }],
                        "client_ids": ["zfamfwk"],
                        "usernames": ["udobrmzkzubuqbvnbabovvr"],
                    },
                    "state_store_resources": [{
                        "key_type": azure_native.iotoperations.StateStoreResourceKeyTypes.PATTERN,
                        "keys": ["tttdjfmf"],
                        "method": azure_native.iotoperations.StateStoreResourceDefinitionMethods.READ,
                    }],
                }],
            },
        },
        resource_group_name="rgiotoperations")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const brokerAuthorization = new azure_native.iotoperations.BrokerAuthorization("brokerAuthorization", {
        authorizationName: "aio-authorization",
        brokerName: "aio-broker",
        extendedLocation: {
            name: "ycsyubcxttlusbhfdqaynmkaatnbyv",
            type: azure_native.iotoperations.ExtendedLocationType.CustomLocation,
        },
        instanceName: "aio-instance",
        properties: {
            authorizationPolicies: {
                cache: azure_native.iotoperations.OperationalMode.Enabled,
                rules: [{
                    brokerResources: [{
                        method: azure_native.iotoperations.BrokerResourceDefinitionMethods.Connect,
                        topics: ["afmj"],
                    }],
                    principals: {
                        attributes: [{
                            key1225: "szvjlbpctnpjmyjq",
                        }],
                        clientIds: ["zfamfwk"],
                        usernames: ["udobrmzkzubuqbvnbabovvr"],
                    },
                    stateStoreResources: [{
                        keyType: azure_native.iotoperations.StateStoreResourceKeyTypes.Pattern,
                        keys: ["tttdjfmf"],
                        method: azure_native.iotoperations.StateStoreResourceDefinitionMethods.Read,
                    }],
                }],
            },
        },
        resourceGroupName: "rgiotoperations",
    });
    
    resources:
      brokerAuthorization:
        type: azure-native:iotoperations:BrokerAuthorization
        properties:
          authorizationName: aio-authorization
          brokerName: aio-broker
          extendedLocation:
            name: ycsyubcxttlusbhfdqaynmkaatnbyv
            type: CustomLocation
          instanceName: aio-instance
          properties:
            authorizationPolicies:
              cache: Enabled
              rules:
                - brokerResources:
                    - method: Connect
                      topics:
                        - afmj
                  principals:
                    attributes:
                      - key1225: szvjlbpctnpjmyjq
                    clientIds:
                      - zfamfwk
                    usernames:
                      - udobrmzkzubuqbvnbabovvr
                  stateStoreResources:
                    - keyType: Pattern
                      keys:
                        - tttdjfmf
                      method: Read
          resourceGroupName: rgiotoperations
    

    Create BrokerAuthorization Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new BrokerAuthorization(name: string, args: BrokerAuthorizationArgs, opts?: CustomResourceOptions);
    @overload
    def BrokerAuthorization(resource_name: str,
                            args: BrokerAuthorizationArgs,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def BrokerAuthorization(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            broker_name: Optional[str] = None,
                            extended_location: Optional[ExtendedLocationArgs] = None,
                            instance_name: Optional[str] = None,
                            resource_group_name: Optional[str] = None,
                            authorization_name: Optional[str] = None,
                            properties: Optional[BrokerAuthorizationPropertiesArgs] = None)
    func NewBrokerAuthorization(ctx *Context, name string, args BrokerAuthorizationArgs, opts ...ResourceOption) (*BrokerAuthorization, error)
    public BrokerAuthorization(string name, BrokerAuthorizationArgs args, CustomResourceOptions? opts = null)
    public BrokerAuthorization(String name, BrokerAuthorizationArgs args)
    public BrokerAuthorization(String name, BrokerAuthorizationArgs args, CustomResourceOptions options)
    
    type: azure-native:iotoperations:BrokerAuthorization
    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 BrokerAuthorizationArgs
    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 BrokerAuthorizationArgs
    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 BrokerAuthorizationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args BrokerAuthorizationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args BrokerAuthorizationArgs
    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 brokerAuthorizationResource = new AzureNative.IoTOperations.BrokerAuthorization("brokerAuthorizationResource", new()
    {
        BrokerName = "string",
        ExtendedLocation = new AzureNative.IoTOperations.Inputs.ExtendedLocationArgs
        {
            Name = "string",
            Type = "string",
        },
        InstanceName = "string",
        ResourceGroupName = "string",
        AuthorizationName = "string",
        Properties = new AzureNative.IoTOperations.Inputs.BrokerAuthorizationPropertiesArgs
        {
            AuthorizationPolicies = new AzureNative.IoTOperations.Inputs.AuthorizationConfigArgs
            {
                Cache = "string",
                Rules = new[]
                {
                    new AzureNative.IoTOperations.Inputs.AuthorizationRuleArgs
                    {
                        BrokerResources = new[]
                        {
                            new AzureNative.IoTOperations.Inputs.BrokerResourceRuleArgs
                            {
                                Method = "string",
                                Topics = new[]
                                {
                                    "string",
                                },
                            },
                        },
                        Principals = new AzureNative.IoTOperations.Inputs.PrincipalDefinitionArgs
                        {
                            Attributes = new[]
                            {
                                
                                {
                                    { "string", "string" },
                                },
                            },
                            ClientIds = new[]
                            {
                                "string",
                            },
                            Usernames = new[]
                            {
                                "string",
                            },
                        },
                        StateStoreResources = new[]
                        {
                            new AzureNative.IoTOperations.Inputs.StateStoreResourceRuleArgs
                            {
                                KeyType = "string",
                                Keys = new[]
                                {
                                    "string",
                                },
                                Method = "string",
                            },
                        },
                    },
                },
            },
        },
    });
    
    example, err := iotoperations.NewBrokerAuthorization(ctx, "brokerAuthorizationResource", &iotoperations.BrokerAuthorizationArgs{
    	BrokerName: pulumi.String("string"),
    	ExtendedLocation: &iotoperations.ExtendedLocationArgs{
    		Name: pulumi.String("string"),
    		Type: pulumi.String("string"),
    	},
    	InstanceName:      pulumi.String("string"),
    	ResourceGroupName: pulumi.String("string"),
    	AuthorizationName: pulumi.String("string"),
    	Properties: &iotoperations.BrokerAuthorizationPropertiesArgs{
    		AuthorizationPolicies: &iotoperations.AuthorizationConfigArgs{
    			Cache: pulumi.String("string"),
    			Rules: iotoperations.AuthorizationRuleArray{
    				&iotoperations.AuthorizationRuleArgs{
    					BrokerResources: iotoperations.BrokerResourceRuleArray{
    						&iotoperations.BrokerResourceRuleArgs{
    							Method: pulumi.String("string"),
    							Topics: pulumi.StringArray{
    								pulumi.String("string"),
    							},
    						},
    					},
    					Principals: &iotoperations.PrincipalDefinitionArgs{
    						Attributes: pulumi.StringMapArray{
    							pulumi.StringMap{
    								"string": pulumi.String("string"),
    							},
    						},
    						ClientIds: pulumi.StringArray{
    							pulumi.String("string"),
    						},
    						Usernames: pulumi.StringArray{
    							pulumi.String("string"),
    						},
    					},
    					StateStoreResources: iotoperations.StateStoreResourceRuleArray{
    						&iotoperations.StateStoreResourceRuleArgs{
    							KeyType: pulumi.String("string"),
    							Keys: pulumi.StringArray{
    								pulumi.String("string"),
    							},
    							Method: pulumi.String("string"),
    						},
    					},
    				},
    			},
    		},
    	},
    })
    
    var brokerAuthorizationResource = new BrokerAuthorization("brokerAuthorizationResource", BrokerAuthorizationArgs.builder()
        .brokerName("string")
        .extendedLocation(ExtendedLocationArgs.builder()
            .name("string")
            .type("string")
            .build())
        .instanceName("string")
        .resourceGroupName("string")
        .authorizationName("string")
        .properties(BrokerAuthorizationPropertiesArgs.builder()
            .authorizationPolicies(AuthorizationConfigArgs.builder()
                .cache("string")
                .rules(AuthorizationRuleArgs.builder()
                    .brokerResources(BrokerResourceRuleArgs.builder()
                        .method("string")
                        .topics("string")
                        .build())
                    .principals(PrincipalDefinitionArgs.builder()
                        .attributes(Map.of("string", "string"))
                        .clientIds("string")
                        .usernames("string")
                        .build())
                    .stateStoreResources(StateStoreResourceRuleArgs.builder()
                        .keyType("string")
                        .keys("string")
                        .method("string")
                        .build())
                    .build())
                .build())
            .build())
        .build());
    
    broker_authorization_resource = azure_native.iotoperations.BrokerAuthorization("brokerAuthorizationResource",
        broker_name="string",
        extended_location={
            "name": "string",
            "type": "string",
        },
        instance_name="string",
        resource_group_name="string",
        authorization_name="string",
        properties={
            "authorizationPolicies": {
                "cache": "string",
                "rules": [{
                    "brokerResources": [{
                        "method": "string",
                        "topics": ["string"],
                    }],
                    "principals": {
                        "attributes": [{
                            "string": "string",
                        }],
                        "clientIds": ["string"],
                        "usernames": ["string"],
                    },
                    "stateStoreResources": [{
                        "keyType": "string",
                        "keys": ["string"],
                        "method": "string",
                    }],
                }],
            },
        })
    
    const brokerAuthorizationResource = new azure_native.iotoperations.BrokerAuthorization("brokerAuthorizationResource", {
        brokerName: "string",
        extendedLocation: {
            name: "string",
            type: "string",
        },
        instanceName: "string",
        resourceGroupName: "string",
        authorizationName: "string",
        properties: {
            authorizationPolicies: {
                cache: "string",
                rules: [{
                    brokerResources: [{
                        method: "string",
                        topics: ["string"],
                    }],
                    principals: {
                        attributes: [{
                            string: "string",
                        }],
                        clientIds: ["string"],
                        usernames: ["string"],
                    },
                    stateStoreResources: [{
                        keyType: "string",
                        keys: ["string"],
                        method: "string",
                    }],
                }],
            },
        },
    });
    
    type: azure-native:iotoperations:BrokerAuthorization
    properties:
        authorizationName: string
        brokerName: string
        extendedLocation:
            name: string
            type: string
        instanceName: string
        properties:
            authorizationPolicies:
                cache: string
                rules:
                    - brokerResources:
                        - method: string
                          topics:
                            - string
                      principals:
                        attributes:
                            - string: string
                        clientIds:
                            - string
                        usernames:
                            - string
                      stateStoreResources:
                        - keyType: string
                          keys:
                            - string
                          method: string
        resourceGroupName: string
    

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

    BrokerName string
    Name of broker.
    ExtendedLocation Pulumi.AzureNative.IoTOperations.Inputs.ExtendedLocation
    Edge location of the resource.
    InstanceName string
    Name of instance.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    AuthorizationName string
    Name of Instance broker authorization resource
    Properties Pulumi.AzureNative.IoTOperations.Inputs.BrokerAuthorizationProperties
    The resource-specific properties for this resource.
    BrokerName string
    Name of broker.
    ExtendedLocation ExtendedLocationArgs
    Edge location of the resource.
    InstanceName string
    Name of instance.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    AuthorizationName string
    Name of Instance broker authorization resource
    Properties BrokerAuthorizationPropertiesArgs
    The resource-specific properties for this resource.
    brokerName String
    Name of broker.
    extendedLocation ExtendedLocation
    Edge location of the resource.
    instanceName String
    Name of instance.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    authorizationName String
    Name of Instance broker authorization resource
    properties BrokerAuthorizationProperties
    The resource-specific properties for this resource.
    brokerName string
    Name of broker.
    extendedLocation ExtendedLocation
    Edge location of the resource.
    instanceName string
    Name of instance.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    authorizationName string
    Name of Instance broker authorization resource
    properties BrokerAuthorizationProperties
    The resource-specific properties for this resource.
    broker_name str
    Name of broker.
    extended_location ExtendedLocationArgs
    Edge location of the resource.
    instance_name str
    Name of instance.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    authorization_name str
    Name of Instance broker authorization resource
    properties BrokerAuthorizationPropertiesArgs
    The resource-specific properties for this resource.
    brokerName String
    Name of broker.
    extendedLocation Property Map
    Edge location of the resource.
    instanceName String
    Name of instance.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    authorizationName String
    Name of Instance broker authorization resource
    properties Property Map
    The resource-specific properties for this resource.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData Pulumi.AzureNative.IoTOperations.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    AuthorizationConfig, AuthorizationConfigArgs

    Cache string | Pulumi.AzureNative.IoTOperations.OperationalMode
    Enable caching of the authorization rules.
    Rules List<Pulumi.AzureNative.IoTOperations.Inputs.AuthorizationRule>
    The authorization rules to follow. If no rule is set, but Authorization Resource is used that would mean DenyAll.
    Cache string | OperationalMode
    Enable caching of the authorization rules.
    Rules []AuthorizationRule
    The authorization rules to follow. If no rule is set, but Authorization Resource is used that would mean DenyAll.
    cache String | OperationalMode
    Enable caching of the authorization rules.
    rules List<AuthorizationRule>
    The authorization rules to follow. If no rule is set, but Authorization Resource is used that would mean DenyAll.
    cache string | OperationalMode
    Enable caching of the authorization rules.
    rules AuthorizationRule[]
    The authorization rules to follow. If no rule is set, but Authorization Resource is used that would mean DenyAll.
    cache str | OperationalMode
    Enable caching of the authorization rules.
    rules Sequence[AuthorizationRule]
    The authorization rules to follow. If no rule is set, but Authorization Resource is used that would mean DenyAll.
    cache String | "Enabled" | "Disabled"
    Enable caching of the authorization rules.
    rules List<Property Map>
    The authorization rules to follow. If no rule is set, but Authorization Resource is used that would mean DenyAll.

    AuthorizationConfigResponse, AuthorizationConfigResponseArgs

    Cache string
    Enable caching of the authorization rules.
    Rules List<Pulumi.AzureNative.IoTOperations.Inputs.AuthorizationRuleResponse>
    The authorization rules to follow. If no rule is set, but Authorization Resource is used that would mean DenyAll.
    Cache string
    Enable caching of the authorization rules.
    Rules []AuthorizationRuleResponse
    The authorization rules to follow. If no rule is set, but Authorization Resource is used that would mean DenyAll.
    cache String
    Enable caching of the authorization rules.
    rules List<AuthorizationRuleResponse>
    The authorization rules to follow. If no rule is set, but Authorization Resource is used that would mean DenyAll.
    cache string
    Enable caching of the authorization rules.
    rules AuthorizationRuleResponse[]
    The authorization rules to follow. If no rule is set, but Authorization Resource is used that would mean DenyAll.
    cache str
    Enable caching of the authorization rules.
    rules Sequence[AuthorizationRuleResponse]
    The authorization rules to follow. If no rule is set, but Authorization Resource is used that would mean DenyAll.
    cache String
    Enable caching of the authorization rules.
    rules List<Property Map>
    The authorization rules to follow. If no rule is set, but Authorization Resource is used that would mean DenyAll.

    AuthorizationRule, AuthorizationRuleArgs

    BrokerResources []BrokerResourceRule
    Give access to Broker methods and topics.
    Principals PrincipalDefinition
    Give access to clients based on the following properties.
    StateStoreResources []StateStoreResourceRule
    Give access to state store resources.
    brokerResources List<BrokerResourceRule>
    Give access to Broker methods and topics.
    principals PrincipalDefinition
    Give access to clients based on the following properties.
    stateStoreResources List<StateStoreResourceRule>
    Give access to state store resources.
    brokerResources BrokerResourceRule[]
    Give access to Broker methods and topics.
    principals PrincipalDefinition
    Give access to clients based on the following properties.
    stateStoreResources StateStoreResourceRule[]
    Give access to state store resources.
    broker_resources Sequence[BrokerResourceRule]
    Give access to Broker methods and topics.
    principals PrincipalDefinition
    Give access to clients based on the following properties.
    state_store_resources Sequence[StateStoreResourceRule]
    Give access to state store resources.
    brokerResources List<Property Map>
    Give access to Broker methods and topics.
    principals Property Map
    Give access to clients based on the following properties.
    stateStoreResources List<Property Map>
    Give access to state store resources.

    AuthorizationRuleResponse, AuthorizationRuleResponseArgs

    BrokerResources []BrokerResourceRuleResponse
    Give access to Broker methods and topics.
    Principals PrincipalDefinitionResponse
    Give access to clients based on the following properties.
    StateStoreResources []StateStoreResourceRuleResponse
    Give access to state store resources.
    brokerResources List<BrokerResourceRuleResponse>
    Give access to Broker methods and topics.
    principals PrincipalDefinitionResponse
    Give access to clients based on the following properties.
    stateStoreResources List<StateStoreResourceRuleResponse>
    Give access to state store resources.
    brokerResources BrokerResourceRuleResponse[]
    Give access to Broker methods and topics.
    principals PrincipalDefinitionResponse
    Give access to clients based on the following properties.
    stateStoreResources StateStoreResourceRuleResponse[]
    Give access to state store resources.
    broker_resources Sequence[BrokerResourceRuleResponse]
    Give access to Broker methods and topics.
    principals PrincipalDefinitionResponse
    Give access to clients based on the following properties.
    state_store_resources Sequence[StateStoreResourceRuleResponse]
    Give access to state store resources.
    brokerResources List<Property Map>
    Give access to Broker methods and topics.
    principals Property Map
    Give access to clients based on the following properties.
    stateStoreResources List<Property Map>
    Give access to state store resources.

    BrokerAuthorizationProperties, BrokerAuthorizationPropertiesArgs

    AuthorizationPolicies Pulumi.AzureNative.IoTOperations.Inputs.AuthorizationConfig
    The list of authorization policies supported by the Authorization Resource.
    AuthorizationPolicies AuthorizationConfig
    The list of authorization policies supported by the Authorization Resource.
    authorizationPolicies AuthorizationConfig
    The list of authorization policies supported by the Authorization Resource.
    authorizationPolicies AuthorizationConfig
    The list of authorization policies supported by the Authorization Resource.
    authorization_policies AuthorizationConfig
    The list of authorization policies supported by the Authorization Resource.
    authorizationPolicies Property Map
    The list of authorization policies supported by the Authorization Resource.

    BrokerAuthorizationPropertiesResponse, BrokerAuthorizationPropertiesResponseArgs

    AuthorizationPolicies Pulumi.AzureNative.IoTOperations.Inputs.AuthorizationConfigResponse
    The list of authorization policies supported by the Authorization Resource.
    ProvisioningState string
    The status of the last operation.
    AuthorizationPolicies AuthorizationConfigResponse
    The list of authorization policies supported by the Authorization Resource.
    ProvisioningState string
    The status of the last operation.
    authorizationPolicies AuthorizationConfigResponse
    The list of authorization policies supported by the Authorization Resource.
    provisioningState String
    The status of the last operation.
    authorizationPolicies AuthorizationConfigResponse
    The list of authorization policies supported by the Authorization Resource.
    provisioningState string
    The status of the last operation.
    authorization_policies AuthorizationConfigResponse
    The list of authorization policies supported by the Authorization Resource.
    provisioning_state str
    The status of the last operation.
    authorizationPolicies Property Map
    The list of authorization policies supported by the Authorization Resource.
    provisioningState String
    The status of the last operation.

    BrokerResourceDefinitionMethods, BrokerResourceDefinitionMethodsArgs

    Connect
    ConnectAllowed Connecting to Broker
    Publish
    PublishAllowed Publishing to Broker
    Subscribe
    SubscribeAllowed Subscribing to Broker
    BrokerResourceDefinitionMethodsConnect
    ConnectAllowed Connecting to Broker
    BrokerResourceDefinitionMethodsPublish
    PublishAllowed Publishing to Broker
    BrokerResourceDefinitionMethodsSubscribe
    SubscribeAllowed Subscribing to Broker
    Connect
    ConnectAllowed Connecting to Broker
    Publish
    PublishAllowed Publishing to Broker
    Subscribe
    SubscribeAllowed Subscribing to Broker
    Connect
    ConnectAllowed Connecting to Broker
    Publish
    PublishAllowed Publishing to Broker
    Subscribe
    SubscribeAllowed Subscribing to Broker
    CONNECT
    ConnectAllowed Connecting to Broker
    PUBLISH
    PublishAllowed Publishing to Broker
    SUBSCRIBE
    SubscribeAllowed Subscribing to Broker
    "Connect"
    ConnectAllowed Connecting to Broker
    "Publish"
    PublishAllowed Publishing to Broker
    "Subscribe"
    SubscribeAllowed Subscribing to Broker

    BrokerResourceRule, BrokerResourceRuleArgs

    Method string | Pulumi.AzureNative.IoTOperations.BrokerResourceDefinitionMethods
    Give access for a Broker method (i.e., Connect, Subscribe, or Publish).
    Topics List<string>
    A list of topics or topic patterns that match the topics that the clients can publish or subscribe to. This subfield is required if the method is Publish or Subscribe.
    Method string | BrokerResourceDefinitionMethods
    Give access for a Broker method (i.e., Connect, Subscribe, or Publish).
    Topics []string
    A list of topics or topic patterns that match the topics that the clients can publish or subscribe to. This subfield is required if the method is Publish or Subscribe.
    method String | BrokerResourceDefinitionMethods
    Give access for a Broker method (i.e., Connect, Subscribe, or Publish).
    topics List<String>
    A list of topics or topic patterns that match the topics that the clients can publish or subscribe to. This subfield is required if the method is Publish or Subscribe.
    method string | BrokerResourceDefinitionMethods
    Give access for a Broker method (i.e., Connect, Subscribe, or Publish).
    topics string[]
    A list of topics or topic patterns that match the topics that the clients can publish or subscribe to. This subfield is required if the method is Publish or Subscribe.
    method str | BrokerResourceDefinitionMethods
    Give access for a Broker method (i.e., Connect, Subscribe, or Publish).
    topics Sequence[str]
    A list of topics or topic patterns that match the topics that the clients can publish or subscribe to. This subfield is required if the method is Publish or Subscribe.
    method String | "Connect" | "Publish" | "Subscribe"
    Give access for a Broker method (i.e., Connect, Subscribe, or Publish).
    topics List<String>
    A list of topics or topic patterns that match the topics that the clients can publish or subscribe to. This subfield is required if the method is Publish or Subscribe.

    BrokerResourceRuleResponse, BrokerResourceRuleResponseArgs

    Method string
    Give access for a Broker method (i.e., Connect, Subscribe, or Publish).
    Topics List<string>
    A list of topics or topic patterns that match the topics that the clients can publish or subscribe to. This subfield is required if the method is Publish or Subscribe.
    Method string
    Give access for a Broker method (i.e., Connect, Subscribe, or Publish).
    Topics []string
    A list of topics or topic patterns that match the topics that the clients can publish or subscribe to. This subfield is required if the method is Publish or Subscribe.
    method String
    Give access for a Broker method (i.e., Connect, Subscribe, or Publish).
    topics List<String>
    A list of topics or topic patterns that match the topics that the clients can publish or subscribe to. This subfield is required if the method is Publish or Subscribe.
    method string
    Give access for a Broker method (i.e., Connect, Subscribe, or Publish).
    topics string[]
    A list of topics or topic patterns that match the topics that the clients can publish or subscribe to. This subfield is required if the method is Publish or Subscribe.
    method str
    Give access for a Broker method (i.e., Connect, Subscribe, or Publish).
    topics Sequence[str]
    A list of topics or topic patterns that match the topics that the clients can publish or subscribe to. This subfield is required if the method is Publish or Subscribe.
    method String
    Give access for a Broker method (i.e., Connect, Subscribe, or Publish).
    topics List<String>
    A list of topics or topic patterns that match the topics that the clients can publish or subscribe to. This subfield is required if the method is Publish or Subscribe.

    ExtendedLocation, ExtendedLocationArgs

    Name string
    The name of the extended location.
    Type string | Pulumi.AzureNative.IoTOperations.ExtendedLocationType
    Type of ExtendedLocation.
    Name string
    The name of the extended location.
    Type string | ExtendedLocationType
    Type of ExtendedLocation.
    name String
    The name of the extended location.
    type String | ExtendedLocationType
    Type of ExtendedLocation.
    name string
    The name of the extended location.
    type string | ExtendedLocationType
    Type of ExtendedLocation.
    name str
    The name of the extended location.
    type str | ExtendedLocationType
    Type of ExtendedLocation.
    name String
    The name of the extended location.
    type String | "CustomLocation"
    Type of ExtendedLocation.

    ExtendedLocationResponse, ExtendedLocationResponseArgs

    Name string
    The name of the extended location.
    Type string
    Type of ExtendedLocation.
    Name string
    The name of the extended location.
    Type string
    Type of ExtendedLocation.
    name String
    The name of the extended location.
    type String
    Type of ExtendedLocation.
    name string
    The name of the extended location.
    type string
    Type of ExtendedLocation.
    name str
    The name of the extended location.
    type str
    Type of ExtendedLocation.
    name String
    The name of the extended location.
    type String
    Type of ExtendedLocation.

    ExtendedLocationType, ExtendedLocationTypeArgs

    CustomLocation
    CustomLocationCustomLocation type
    ExtendedLocationTypeCustomLocation
    CustomLocationCustomLocation type
    CustomLocation
    CustomLocationCustomLocation type
    CustomLocation
    CustomLocationCustomLocation type
    CUSTOM_LOCATION
    CustomLocationCustomLocation type
    "CustomLocation"
    CustomLocationCustomLocation type

    OperationalMode, OperationalModeArgs

    Enabled
    EnabledEnabled is equivalent to True
    Disabled
    DisabledDisabled is equivalent to False.
    OperationalModeEnabled
    EnabledEnabled is equivalent to True
    OperationalModeDisabled
    DisabledDisabled is equivalent to False.
    Enabled
    EnabledEnabled is equivalent to True
    Disabled
    DisabledDisabled is equivalent to False.
    Enabled
    EnabledEnabled is equivalent to True
    Disabled
    DisabledDisabled is equivalent to False.
    ENABLED
    EnabledEnabled is equivalent to True
    DISABLED
    DisabledDisabled is equivalent to False.
    "Enabled"
    EnabledEnabled is equivalent to True
    "Disabled"
    DisabledDisabled is equivalent to False.

    PrincipalDefinition, PrincipalDefinitionArgs

    Attributes List<ImmutableDictionary<string, string>>
    A list of key-value pairs that match the attributes of the clients. The attributes are case-sensitive and must match the attributes provided by the clients during authentication.
    ClientIds List<string>
    A list of client IDs that match the clients. The client IDs are case-sensitive and must match the client IDs provided by the clients during connection.
    Usernames List<string>
    A list of usernames that match the clients. The usernames are case-sensitive and must match the usernames provided by the clients during authentication.
    Attributes []map[string]string
    A list of key-value pairs that match the attributes of the clients. The attributes are case-sensitive and must match the attributes provided by the clients during authentication.
    ClientIds []string
    A list of client IDs that match the clients. The client IDs are case-sensitive and must match the client IDs provided by the clients during connection.
    Usernames []string
    A list of usernames that match the clients. The usernames are case-sensitive and must match the usernames provided by the clients during authentication.
    attributes List<Map<String,String>>
    A list of key-value pairs that match the attributes of the clients. The attributes are case-sensitive and must match the attributes provided by the clients during authentication.
    clientIds List<String>
    A list of client IDs that match the clients. The client IDs are case-sensitive and must match the client IDs provided by the clients during connection.
    usernames List<String>
    A list of usernames that match the clients. The usernames are case-sensitive and must match the usernames provided by the clients during authentication.
    attributes {[key: string]: string}[]
    A list of key-value pairs that match the attributes of the clients. The attributes are case-sensitive and must match the attributes provided by the clients during authentication.
    clientIds string[]
    A list of client IDs that match the clients. The client IDs are case-sensitive and must match the client IDs provided by the clients during connection.
    usernames string[]
    A list of usernames that match the clients. The usernames are case-sensitive and must match the usernames provided by the clients during authentication.
    attributes Sequence[Mapping[str, str]]
    A list of key-value pairs that match the attributes of the clients. The attributes are case-sensitive and must match the attributes provided by the clients during authentication.
    client_ids Sequence[str]
    A list of client IDs that match the clients. The client IDs are case-sensitive and must match the client IDs provided by the clients during connection.
    usernames Sequence[str]
    A list of usernames that match the clients. The usernames are case-sensitive and must match the usernames provided by the clients during authentication.
    attributes List<Map<String>>
    A list of key-value pairs that match the attributes of the clients. The attributes are case-sensitive and must match the attributes provided by the clients during authentication.
    clientIds List<String>
    A list of client IDs that match the clients. The client IDs are case-sensitive and must match the client IDs provided by the clients during connection.
    usernames List<String>
    A list of usernames that match the clients. The usernames are case-sensitive and must match the usernames provided by the clients during authentication.

    PrincipalDefinitionResponse, PrincipalDefinitionResponseArgs

    Attributes List<ImmutableDictionary<string, string>>
    A list of key-value pairs that match the attributes of the clients. The attributes are case-sensitive and must match the attributes provided by the clients during authentication.
    ClientIds List<string>
    A list of client IDs that match the clients. The client IDs are case-sensitive and must match the client IDs provided by the clients during connection.
    Usernames List<string>
    A list of usernames that match the clients. The usernames are case-sensitive and must match the usernames provided by the clients during authentication.
    Attributes []map[string]string
    A list of key-value pairs that match the attributes of the clients. The attributes are case-sensitive and must match the attributes provided by the clients during authentication.
    ClientIds []string
    A list of client IDs that match the clients. The client IDs are case-sensitive and must match the client IDs provided by the clients during connection.
    Usernames []string
    A list of usernames that match the clients. The usernames are case-sensitive and must match the usernames provided by the clients during authentication.
    attributes List<Map<String,String>>
    A list of key-value pairs that match the attributes of the clients. The attributes are case-sensitive and must match the attributes provided by the clients during authentication.
    clientIds List<String>
    A list of client IDs that match the clients. The client IDs are case-sensitive and must match the client IDs provided by the clients during connection.
    usernames List<String>
    A list of usernames that match the clients. The usernames are case-sensitive and must match the usernames provided by the clients during authentication.
    attributes {[key: string]: string}[]
    A list of key-value pairs that match the attributes of the clients. The attributes are case-sensitive and must match the attributes provided by the clients during authentication.
    clientIds string[]
    A list of client IDs that match the clients. The client IDs are case-sensitive and must match the client IDs provided by the clients during connection.
    usernames string[]
    A list of usernames that match the clients. The usernames are case-sensitive and must match the usernames provided by the clients during authentication.
    attributes Sequence[Mapping[str, str]]
    A list of key-value pairs that match the attributes of the clients. The attributes are case-sensitive and must match the attributes provided by the clients during authentication.
    client_ids Sequence[str]
    A list of client IDs that match the clients. The client IDs are case-sensitive and must match the client IDs provided by the clients during connection.
    usernames Sequence[str]
    A list of usernames that match the clients. The usernames are case-sensitive and must match the usernames provided by the clients during authentication.
    attributes List<Map<String>>
    A list of key-value pairs that match the attributes of the clients. The attributes are case-sensitive and must match the attributes provided by the clients during authentication.
    clientIds List<String>
    A list of client IDs that match the clients. The client IDs are case-sensitive and must match the client IDs provided by the clients during connection.
    usernames List<String>
    A list of usernames that match the clients. The usernames are case-sensitive and must match the usernames provided by the clients during authentication.

    StateStoreResourceDefinitionMethods, StateStoreResourceDefinitionMethodsArgs

    Read
    ReadGet/KeyNotify from Store
    Write
    WriteSet/Delete in Store
    ReadWrite
    ReadWriteAllowed all operations on Store - Get/KeyNotify/Set/Delete
    StateStoreResourceDefinitionMethodsRead
    ReadGet/KeyNotify from Store
    StateStoreResourceDefinitionMethodsWrite
    WriteSet/Delete in Store
    StateStoreResourceDefinitionMethodsReadWrite
    ReadWriteAllowed all operations on Store - Get/KeyNotify/Set/Delete
    Read
    ReadGet/KeyNotify from Store
    Write
    WriteSet/Delete in Store
    ReadWrite
    ReadWriteAllowed all operations on Store - Get/KeyNotify/Set/Delete
    Read
    ReadGet/KeyNotify from Store
    Write
    WriteSet/Delete in Store
    ReadWrite
    ReadWriteAllowed all operations on Store - Get/KeyNotify/Set/Delete
    READ
    ReadGet/KeyNotify from Store
    WRITE
    WriteSet/Delete in Store
    READ_WRITE
    ReadWriteAllowed all operations on Store - Get/KeyNotify/Set/Delete
    "Read"
    ReadGet/KeyNotify from Store
    "Write"
    WriteSet/Delete in Store
    "ReadWrite"
    ReadWriteAllowed all operations on Store - Get/KeyNotify/Set/Delete

    StateStoreResourceKeyTypes, StateStoreResourceKeyTypesArgs

    Pattern
    PatternKey type - pattern
    String
    StringKey type - string
    Binary
    BinaryKey type - binary
    StateStoreResourceKeyTypesPattern
    PatternKey type - pattern
    StateStoreResourceKeyTypesString
    StringKey type - string
    StateStoreResourceKeyTypesBinary
    BinaryKey type - binary
    Pattern
    PatternKey type - pattern
    String
    StringKey type - string
    Binary
    BinaryKey type - binary
    Pattern
    PatternKey type - pattern
    String
    StringKey type - string
    Binary
    BinaryKey type - binary
    PATTERN
    PatternKey type - pattern
    STRING
    StringKey type - string
    BINARY
    BinaryKey type - binary
    "Pattern"
    PatternKey type - pattern
    "String"
    StringKey type - string
    "Binary"
    BinaryKey type - binary

    StateStoreResourceRule, StateStoreResourceRuleArgs

    KeyType string | Pulumi.AzureNative.IoTOperations.StateStoreResourceKeyTypes
    Allowed keyTypes pattern, string, binary. The key type used for matching, for example pattern tries to match the key to a glob-style pattern and string checks key is equal to value provided in keys.
    Keys List<string>
    Give access to state store keys for the corresponding principals defined. When key type is pattern set glob-style pattern (e.g., '', 'clients/').
    Method string | Pulumi.AzureNative.IoTOperations.StateStoreResourceDefinitionMethods
    Give access for Read, Write and ReadWrite access level.
    KeyType string | StateStoreResourceKeyTypes
    Allowed keyTypes pattern, string, binary. The key type used for matching, for example pattern tries to match the key to a glob-style pattern and string checks key is equal to value provided in keys.
    Keys []string
    Give access to state store keys for the corresponding principals defined. When key type is pattern set glob-style pattern (e.g., '', 'clients/').
    Method string | StateStoreResourceDefinitionMethods
    Give access for Read, Write and ReadWrite access level.
    keyType String | StateStoreResourceKeyTypes
    Allowed keyTypes pattern, string, binary. The key type used for matching, for example pattern tries to match the key to a glob-style pattern and string checks key is equal to value provided in keys.
    keys List<String>
    Give access to state store keys for the corresponding principals defined. When key type is pattern set glob-style pattern (e.g., '', 'clients/').
    method String | StateStoreResourceDefinitionMethods
    Give access for Read, Write and ReadWrite access level.
    keyType string | StateStoreResourceKeyTypes
    Allowed keyTypes pattern, string, binary. The key type used for matching, for example pattern tries to match the key to a glob-style pattern and string checks key is equal to value provided in keys.
    keys string[]
    Give access to state store keys for the corresponding principals defined. When key type is pattern set glob-style pattern (e.g., '', 'clients/').
    method string | StateStoreResourceDefinitionMethods
    Give access for Read, Write and ReadWrite access level.
    key_type str | StateStoreResourceKeyTypes
    Allowed keyTypes pattern, string, binary. The key type used for matching, for example pattern tries to match the key to a glob-style pattern and string checks key is equal to value provided in keys.
    keys Sequence[str]
    Give access to state store keys for the corresponding principals defined. When key type is pattern set glob-style pattern (e.g., '', 'clients/').
    method str | StateStoreResourceDefinitionMethods
    Give access for Read, Write and ReadWrite access level.
    keyType String | "Pattern" | "String" | "Binary"
    Allowed keyTypes pattern, string, binary. The key type used for matching, for example pattern tries to match the key to a glob-style pattern and string checks key is equal to value provided in keys.
    keys List<String>
    Give access to state store keys for the corresponding principals defined. When key type is pattern set glob-style pattern (e.g., '', 'clients/').
    method String | "Read" | "Write" | "ReadWrite"
    Give access for Read, Write and ReadWrite access level.

    StateStoreResourceRuleResponse, StateStoreResourceRuleResponseArgs

    KeyType string
    Allowed keyTypes pattern, string, binary. The key type used for matching, for example pattern tries to match the key to a glob-style pattern and string checks key is equal to value provided in keys.
    Keys List<string>
    Give access to state store keys for the corresponding principals defined. When key type is pattern set glob-style pattern (e.g., '', 'clients/').
    Method string
    Give access for Read, Write and ReadWrite access level.
    KeyType string
    Allowed keyTypes pattern, string, binary. The key type used for matching, for example pattern tries to match the key to a glob-style pattern and string checks key is equal to value provided in keys.
    Keys []string
    Give access to state store keys for the corresponding principals defined. When key type is pattern set glob-style pattern (e.g., '', 'clients/').
    Method string
    Give access for Read, Write and ReadWrite access level.
    keyType String
    Allowed keyTypes pattern, string, binary. The key type used for matching, for example pattern tries to match the key to a glob-style pattern and string checks key is equal to value provided in keys.
    keys List<String>
    Give access to state store keys for the corresponding principals defined. When key type is pattern set glob-style pattern (e.g., '', 'clients/').
    method String
    Give access for Read, Write and ReadWrite access level.
    keyType string
    Allowed keyTypes pattern, string, binary. The key type used for matching, for example pattern tries to match the key to a glob-style pattern and string checks key is equal to value provided in keys.
    keys string[]
    Give access to state store keys for the corresponding principals defined. When key type is pattern set glob-style pattern (e.g., '', 'clients/').
    method string
    Give access for Read, Write and ReadWrite access level.
    key_type str
    Allowed keyTypes pattern, string, binary. The key type used for matching, for example pattern tries to match the key to a glob-style pattern and string checks key is equal to value provided in keys.
    keys Sequence[str]
    Give access to state store keys for the corresponding principals defined. When key type is pattern set glob-style pattern (e.g., '', 'clients/').
    method str
    Give access for Read, Write and ReadWrite access level.
    keyType String
    Allowed keyTypes pattern, string, binary. The key type used for matching, for example pattern tries to match the key to a glob-style pattern and string checks key is equal to value provided in keys.
    keys List<String>
    Give access to state store keys for the corresponding principals defined. When key type is pattern set glob-style pattern (e.g., '', 'clients/').
    method String
    Give access for Read, Write and ReadWrite access level.

    SystemDataResponse, SystemDataResponseArgs

    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    The type of identity that last modified the resource.
    created_at str
    The timestamp of resource creation (UTC).
    created_by str
    The identity that created the resource.
    created_by_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    Import

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

    $ pulumi import azure-native:iotoperations:BrokerAuthorization jsocsnglgrxciedpqzbm /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.IoTOperations/instances/{instanceName}/brokers/{brokerName}/authorizations/{authorizationName} 
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.63.0 published on Tuesday, Sep 24, 2024 by Pulumi