1. Packages
  2. Azure Native
  3. API Docs
  4. containerinstance
  5. NGroup
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.73.0 published on Wednesday, Nov 20, 2024 by Pulumi

azure-native.containerinstance.NGroup

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.73.0 published on Wednesday, Nov 20, 2024 by Pulumi

    Describes a nGroup. Azure REST API version: 2024-09-01-preview.

    Other available API versions: 2024-11-01-preview.

    Import

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

    $ pulumi import azure-native:containerinstance:NGroup myresource1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerInstance/ngroups/{ngroupsName} 
    

    Create NGroup Resource

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

    Constructor syntax

    new NGroup(name: string, args: NGroupArgs, opts?: CustomResourceOptions);
    @overload
    def NGroup(resource_name: str,
               args: NGroupArgs,
               opts: Optional[ResourceOptions] = None)
    
    @overload
    def NGroup(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               resource_group_name: Optional[str] = None,
               container_group_profiles: Optional[Sequence[ContainerGroupProfileStubArgs]] = None,
               elastic_profile: Optional[ElasticProfileArgs] = None,
               identity: Optional[NGroupIdentityArgs] = None,
               location: Optional[str] = None,
               ngroups_name: Optional[str] = None,
               tags: Optional[Mapping[str, str]] = None,
               zones: Optional[Sequence[str]] = None)
    func NewNGroup(ctx *Context, name string, args NGroupArgs, opts ...ResourceOption) (*NGroup, error)
    public NGroup(string name, NGroupArgs args, CustomResourceOptions? opts = null)
    public NGroup(String name, NGroupArgs args)
    public NGroup(String name, NGroupArgs args, CustomResourceOptions options)
    
    type: azure-native:containerinstance:NGroup
    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 NGroupArgs
    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 NGroupArgs
    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 NGroupArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args NGroupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args NGroupArgs
    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 ngroupResource = new AzureNative.ContainerInstance.NGroup("ngroupResource", new()
    {
        ResourceGroupName = "string",
        ContainerGroupProfiles = new[]
        {
            new AzureNative.ContainerInstance.Inputs.ContainerGroupProfileStubArgs
            {
                Resource = new AzureNative.ContainerInstance.Inputs.ApiEntityReferenceArgs
                {
                    Id = "string",
                },
            },
        },
        ElasticProfile = new AzureNative.ContainerInstance.Inputs.ElasticProfileArgs
        {
            DesiredCount = 0,
        },
        Identity = new AzureNative.ContainerInstance.Inputs.NGroupIdentityArgs
        {
            Type = AzureNative.ContainerInstance.ResourceIdentityType.SystemAssigned,
            UserAssignedIdentities = new[]
            {
                "string",
            },
        },
        Location = "string",
        NgroupsName = "string",
        Tags = 
        {
            { "string", "string" },
        },
        Zones = new[]
        {
            "string",
        },
    });
    
    example, err := containerinstance.NewNGroup(ctx, "ngroupResource", &containerinstance.NGroupArgs{
    	ResourceGroupName: pulumi.String("string"),
    	ContainerGroupProfiles: containerinstance.ContainerGroupProfileStubArray{
    		&containerinstance.ContainerGroupProfileStubArgs{
    			Resource: &containerinstance.ApiEntityReferenceArgs{
    				Id: pulumi.String("string"),
    			},
    		},
    	},
    	ElasticProfile: &containerinstance.ElasticProfileArgs{
    		DesiredCount: pulumi.Int(0),
    	},
    	Identity: &containerinstance.NGroupIdentityArgs{
    		Type: containerinstance.ResourceIdentityTypeSystemAssigned,
    		UserAssignedIdentities: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    	},
    	Location:    pulumi.String("string"),
    	NgroupsName: pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Zones: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    })
    
    var ngroupResource = new NGroup("ngroupResource", NGroupArgs.builder()
        .resourceGroupName("string")
        .containerGroupProfiles(ContainerGroupProfileStubArgs.builder()
            .resource(ApiEntityReferenceArgs.builder()
                .id("string")
                .build())
            .build())
        .elasticProfile(ElasticProfileArgs.builder()
            .desiredCount(0)
            .build())
        .identity(NGroupIdentityArgs.builder()
            .type("SystemAssigned")
            .userAssignedIdentities("string")
            .build())
        .location("string")
        .ngroupsName("string")
        .tags(Map.of("string", "string"))
        .zones("string")
        .build());
    
    ngroup_resource = azure_native.containerinstance.NGroup("ngroupResource",
        resource_group_name="string",
        container_group_profiles=[{
            "resource": {
                "id": "string",
            },
        }],
        elastic_profile={
            "desired_count": 0,
        },
        identity={
            "type": azure_native.containerinstance.ResourceIdentityType.SYSTEM_ASSIGNED,
            "user_assigned_identities": ["string"],
        },
        location="string",
        ngroups_name="string",
        tags={
            "string": "string",
        },
        zones=["string"])
    
    const ngroupResource = new azure_native.containerinstance.NGroup("ngroupResource", {
        resourceGroupName: "string",
        containerGroupProfiles: [{
            resource: {
                id: "string",
            },
        }],
        elasticProfile: {
            desiredCount: 0,
        },
        identity: {
            type: azure_native.containerinstance.ResourceIdentityType.SystemAssigned,
            userAssignedIdentities: ["string"],
        },
        location: "string",
        ngroupsName: "string",
        tags: {
            string: "string",
        },
        zones: ["string"],
    });
    
    type: azure-native:containerinstance:NGroup
    properties:
        containerGroupProfiles:
            - resource:
                id: string
        elasticProfile:
            desiredCount: 0
        identity:
            type: SystemAssigned
            userAssignedIdentities:
                - string
        location: string
        ngroupsName: string
        resourceGroupName: string
        tags:
            string: string
        zones:
            - string
    

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

    ResourceGroupName string
    The name of the resource group.
    ContainerGroupProfiles List<Pulumi.AzureNative.ContainerInstance.Inputs.ContainerGroupProfileStub>
    The Container Group Profiles that could be used in a nGroup.
    ElasticProfile Pulumi.AzureNative.ContainerInstance.Inputs.ElasticProfile
    The elastic profile.
    Identity Pulumi.AzureNative.ContainerInstance.Inputs.NGroupIdentity
    The identity of the nGroup, if configured.
    Location string
    The resource location.
    NgroupsName string
    The N Groups name.
    Tags Dictionary<string, string>
    The resource tags.
    Zones List<string>
    The zones for the container group.
    ResourceGroupName string
    The name of the resource group.
    ContainerGroupProfiles []ContainerGroupProfileStubArgs
    The Container Group Profiles that could be used in a nGroup.
    ElasticProfile ElasticProfileArgs
    The elastic profile.
    Identity NGroupIdentityArgs
    The identity of the nGroup, if configured.
    Location string
    The resource location.
    NgroupsName string
    The N Groups name.
    Tags map[string]string
    The resource tags.
    Zones []string
    The zones for the container group.
    resourceGroupName String
    The name of the resource group.
    containerGroupProfiles List<ContainerGroupProfileStub>
    The Container Group Profiles that could be used in a nGroup.
    elasticProfile ElasticProfile
    The elastic profile.
    identity NGroupIdentity
    The identity of the nGroup, if configured.
    location String
    The resource location.
    ngroupsName String
    The N Groups name.
    tags Map<String,String>
    The resource tags.
    zones List<String>
    The zones for the container group.
    resourceGroupName string
    The name of the resource group.
    containerGroupProfiles ContainerGroupProfileStub[]
    The Container Group Profiles that could be used in a nGroup.
    elasticProfile ElasticProfile
    The elastic profile.
    identity NGroupIdentity
    The identity of the nGroup, if configured.
    location string
    The resource location.
    ngroupsName string
    The N Groups name.
    tags {[key: string]: string}
    The resource tags.
    zones string[]
    The zones for the container group.
    resource_group_name str
    The name of the resource group.
    container_group_profiles Sequence[ContainerGroupProfileStubArgs]
    The Container Group Profiles that could be used in a nGroup.
    elastic_profile ElasticProfileArgs
    The elastic profile.
    identity NGroupIdentityArgs
    The identity of the nGroup, if configured.
    location str
    The resource location.
    ngroups_name str
    The N Groups name.
    tags Mapping[str, str]
    The resource tags.
    zones Sequence[str]
    The zones for the container group.
    resourceGroupName String
    The name of the resource group.
    containerGroupProfiles List<Property Map>
    The Container Group Profiles that could be used in a nGroup.
    elasticProfile Property Map
    The elastic profile.
    identity Property Map
    The identity of the nGroup, if configured.
    location String
    The resource location.
    ngroupsName String
    The N Groups name.
    tags Map<String>
    The resource tags.
    zones List<String>
    The zones for the container group.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The resource name.
    ProvisioningState string
    The provisioning state, which only appears in the response.
    SystemData Pulumi.AzureNative.ContainerInstance.Outputs.SystemDataResponse
    Metadata pertaining to creation and last modification of the resource.
    Type string
    The resource type.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The resource name.
    ProvisioningState string
    The provisioning state, which only appears in the response.
    SystemData SystemDataResponse
    Metadata pertaining to creation and last modification of the resource.
    Type string
    The resource type.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The resource name.
    provisioningState String
    The provisioning state, which only appears in the response.
    systemData SystemDataResponse
    Metadata pertaining to creation and last modification of the resource.
    type String
    The resource type.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The resource name.
    provisioningState string
    The provisioning state, which only appears in the response.
    systemData SystemDataResponse
    Metadata pertaining to creation and last modification of the resource.
    type string
    The resource type.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The resource name.
    provisioning_state str
    The provisioning state, which only appears in the response.
    system_data SystemDataResponse
    Metadata pertaining to creation and last modification of the resource.
    type str
    The resource type.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The resource name.
    provisioningState String
    The provisioning state, which only appears in the response.
    systemData Property Map
    Metadata pertaining to creation and last modification of the resource.
    type String
    The resource type.

    Supporting Types

    ApiEntityReference, ApiEntityReferenceArgs

    Id string
    The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...
    Id string
    The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...
    id String
    The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...
    id string
    The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...
    id str
    The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...
    id String
    The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...

    ApiEntityReferenceResponse, ApiEntityReferenceResponseArgs

    Id string
    The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...
    Id string
    The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...
    id String
    The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...
    id string
    The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...
    id str
    The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...
    id String
    The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...

    ContainerGroupProfileStub, ContainerGroupProfileStubArgs

    Resource ApiEntityReference
    The API entity reference.
    resource ApiEntityReference
    The API entity reference.
    resource ApiEntityReference
    The API entity reference.
    resource ApiEntityReference
    The API entity reference.
    resource Property Map
    The API entity reference.

    ContainerGroupProfileStubResponse, ContainerGroupProfileStubResponseArgs

    Resource ApiEntityReferenceResponse
    The API entity reference.
    resource ApiEntityReferenceResponse
    The API entity reference.
    resource ApiEntityReferenceResponse
    The API entity reference.
    resource ApiEntityReferenceResponse
    The API entity reference.
    resource Property Map
    The API entity reference.

    ElasticProfile, ElasticProfileArgs

    desiredCount Integer

    ElasticProfileResponse, ElasticProfileResponseArgs

    desiredCount Integer

    NGroupIdentity, NGroupIdentityArgs

    Type Pulumi.AzureNative.ContainerInstance.ResourceIdentityType
    The type of identity used for the container scale set. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the nGroup.
    UserAssignedIdentities List<string>
    The list of user identities associated with the container scale set. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
    Type ResourceIdentityType
    The type of identity used for the container scale set. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the nGroup.
    UserAssignedIdentities []string
    The list of user identities associated with the container scale set. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
    type ResourceIdentityType
    The type of identity used for the container scale set. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the nGroup.
    userAssignedIdentities List<String>
    The list of user identities associated with the container scale set. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
    type ResourceIdentityType
    The type of identity used for the container scale set. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the nGroup.
    userAssignedIdentities string[]
    The list of user identities associated with the container scale set. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
    type ResourceIdentityType
    The type of identity used for the container scale set. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the nGroup.
    user_assigned_identities Sequence[str]
    The list of user identities associated with the container scale set. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
    type "SystemAssigned" | "UserAssigned" | "SystemAssigned, UserAssigned" | "None"
    The type of identity used for the container scale set. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the nGroup.
    userAssignedIdentities List<String>
    The list of user identities associated with the container scale set. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.

    NGroupIdentityResponse, NGroupIdentityResponseArgs

    PrincipalId string
    The principal id of the nGroup identity. This property will only be provided for a system assigned identity.
    TenantId string
    The tenant id associated with the nGroup. This property will only be provided for a system assigned identity.
    Type string
    The type of identity used for the container scale set. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the nGroup.
    UserAssignedIdentities Dictionary<string, Pulumi.AzureNative.ContainerInstance.Inputs.UserAssignedIdentityResponse>
    The list of user identities associated with the container scale set. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
    PrincipalId string
    The principal id of the nGroup identity. This property will only be provided for a system assigned identity.
    TenantId string
    The tenant id associated with the nGroup. This property will only be provided for a system assigned identity.
    Type string
    The type of identity used for the container scale set. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the nGroup.
    UserAssignedIdentities map[string]UserAssignedIdentityResponse
    The list of user identities associated with the container scale set. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
    principalId String
    The principal id of the nGroup identity. This property will only be provided for a system assigned identity.
    tenantId String
    The tenant id associated with the nGroup. This property will only be provided for a system assigned identity.
    type String
    The type of identity used for the container scale set. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the nGroup.
    userAssignedIdentities Map<String,UserAssignedIdentityResponse>
    The list of user identities associated with the container scale set. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
    principalId string
    The principal id of the nGroup identity. This property will only be provided for a system assigned identity.
    tenantId string
    The tenant id associated with the nGroup. This property will only be provided for a system assigned identity.
    type string
    The type of identity used for the container scale set. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the nGroup.
    userAssignedIdentities {[key: string]: UserAssignedIdentityResponse}
    The list of user identities associated with the container scale set. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
    principal_id str
    The principal id of the nGroup identity. This property will only be provided for a system assigned identity.
    tenant_id str
    The tenant id associated with the nGroup. This property will only be provided for a system assigned identity.
    type str
    The type of identity used for the container scale set. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the nGroup.
    user_assigned_identities Mapping[str, UserAssignedIdentityResponse]
    The list of user identities associated with the container scale set. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
    principalId String
    The principal id of the nGroup identity. This property will only be provided for a system assigned identity.
    tenantId String
    The tenant id associated with the nGroup. This property will only be provided for a system assigned identity.
    type String
    The type of identity used for the container scale set. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the nGroup.
    userAssignedIdentities Map<Property Map>
    The list of user identities associated with the container scale set. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.

    ResourceIdentityType, ResourceIdentityTypeArgs

    SystemAssigned
    SystemAssigned
    UserAssigned
    UserAssigned
    SystemAssigned_UserAssigned
    SystemAssigned, UserAssigned
    None
    None
    ResourceIdentityTypeSystemAssigned
    SystemAssigned
    ResourceIdentityTypeUserAssigned
    UserAssigned
    ResourceIdentityType_SystemAssigned_UserAssigned
    SystemAssigned, UserAssigned
    ResourceIdentityTypeNone
    None
    SystemAssigned
    SystemAssigned
    UserAssigned
    UserAssigned
    SystemAssigned_UserAssigned
    SystemAssigned, UserAssigned
    None
    None
    SystemAssigned
    SystemAssigned
    UserAssigned
    UserAssigned
    SystemAssigned_UserAssigned
    SystemAssigned, UserAssigned
    None
    None
    SYSTEM_ASSIGNED
    SystemAssigned
    USER_ASSIGNED
    UserAssigned
    SYSTEM_ASSIGNED_USER_ASSIGNED
    SystemAssigned, UserAssigned
    NONE
    None
    "SystemAssigned"
    SystemAssigned
    "UserAssigned"
    UserAssigned
    "SystemAssigned, UserAssigned"
    SystemAssigned, UserAssigned
    "None"
    None

    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.

    UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs

    ClientId string
    The client ID of the assigned identity.
    PrincipalId string
    The principal ID of the assigned identity.
    ClientId string
    The client ID of the assigned identity.
    PrincipalId string
    The principal ID of the assigned identity.
    clientId String
    The client ID of the assigned identity.
    principalId String
    The principal ID of the assigned identity.
    clientId string
    The client ID of the assigned identity.
    principalId string
    The principal ID of the assigned identity.
    client_id str
    The client ID of the assigned identity.
    principal_id str
    The principal ID of the assigned identity.
    clientId String
    The client ID of the assigned identity.
    principalId String
    The principal ID of the assigned identity.

    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.73.0 published on Wednesday, Nov 20, 2024 by Pulumi