azure-native.containerinstance.NGroup
Explore with Pulumi AI
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:
- ResourceGroup stringName 
- The name of the resource group.
- ContainerGroup List<Pulumi.Profiles Azure Native. Container Instance. Inputs. Container Group Profile Stub> 
- The Container Group Profiles that could be used in a nGroup.
- ElasticProfile Pulumi.Azure Native. Container Instance. Inputs. Elastic Profile 
- The elastic profile.
- Identity
Pulumi.Azure Native. Container Instance. Inputs. NGroup Identity 
- The identity of the nGroup, if configured.
- Location string
- The resource location.
- NgroupsName string
- The N Groups name.
- Dictionary<string, string>
- The resource tags.
- Zones List<string>
- The zones for the container group.
- ResourceGroup stringName 
- The name of the resource group.
- ContainerGroup []ContainerProfiles Group Profile Stub Args 
- The Container Group Profiles that could be used in a nGroup.
- ElasticProfile ElasticProfile Args 
- The elastic profile.
- Identity
NGroupIdentity Args 
- The identity of the nGroup, if configured.
- Location string
- The resource location.
- NgroupsName string
- The N Groups name.
- map[string]string
- The resource tags.
- Zones []string
- The zones for the container group.
- resourceGroup StringName 
- The name of the resource group.
- containerGroup List<ContainerProfiles Group Profile Stub> 
- 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.
- Map<String,String>
- The resource tags.
- zones List<String>
- The zones for the container group.
- resourceGroup stringName 
- The name of the resource group.
- containerGroup ContainerProfiles Group Profile Stub[] 
- 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.
- {[key: string]: string}
- The resource tags.
- zones string[]
- The zones for the container group.
- resource_group_ strname 
- The name of the resource group.
- container_group_ Sequence[Containerprofiles Group Profile Stub Args] 
- The Container Group Profiles that could be used in a nGroup.
- elastic_profile ElasticProfile Args 
- The elastic profile.
- identity
NGroupIdentity Args 
- The identity of the nGroup, if configured.
- location str
- The resource location.
- ngroups_name str
- The N Groups name.
- Mapping[str, str]
- The resource tags.
- zones Sequence[str]
- The zones for the container group.
- resourceGroup StringName 
- The name of the resource group.
- containerGroup List<Property Map>Profiles 
- 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.
- 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.Azure Native. Container Instance. Outputs. System Data Response 
- 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 SystemData Response 
- 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 SystemData Response 
- 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 SystemData Response 
- 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 SystemData Response 
- 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
Pulumi.Azure Native. Container Instance. Inputs. Api Entity Reference 
- The API entity reference.
- Resource
ApiEntity Reference 
- The API entity reference.
- resource
ApiEntity Reference 
- The API entity reference.
- resource
ApiEntity Reference 
- The API entity reference.
- resource
ApiEntity Reference 
- The API entity reference.
- resource Property Map
- The API entity reference.
ContainerGroupProfileStubResponse, ContainerGroupProfileStubResponseArgs          
- Resource
Pulumi.Azure Native. Container Instance. Inputs. Api Entity Reference Response 
- The API entity reference.
- Resource
ApiEntity Reference Response 
- The API entity reference.
- resource
ApiEntity Reference Response 
- The API entity reference.
- resource
ApiEntity Reference Response 
- The API entity reference.
- resource
ApiEntity Reference Response 
- The API entity reference.
- resource Property Map
- The API entity reference.
ElasticProfile, ElasticProfileArgs    
- DesiredCount int
- DesiredCount int
- desiredCount Integer
- desiredCount number
- desired_count int
- desiredCount Number
ElasticProfileResponse, ElasticProfileResponseArgs      
- DesiredCount int
- DesiredCount int
- desiredCount Integer
- desiredCount number
- desired_count int
- desiredCount Number
NGroupIdentity, NGroupIdentityArgs    
- Type
Pulumi.Azure Native. Container Instance. Resource Identity Type 
- 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.
- UserAssigned List<string>Identities 
- 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
ResourceIdentity Type 
- 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.
- UserAssigned []stringIdentities 
- 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
ResourceIdentity Type 
- 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.
- userAssigned List<String>Identities 
- 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
ResourceIdentity Type 
- 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.
- userAssigned string[]Identities 
- 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
ResourceIdentity Type 
- 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_ Sequence[str]identities 
- 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" | "User Assigned" | "System Assigned, User Assigned" | "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.
- userAssigned List<String>Identities 
- 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.
- UserAssigned Dictionary<string, Pulumi.Identities Azure Native. Container Instance. Inputs. User Assigned Identity Response> 
- 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.
- UserAssigned map[string]UserIdentities Assigned Identity Response 
- 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.
- userAssigned Map<String,UserIdentities Assigned Identity Response> 
- 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.
- userAssigned {[key: string]: UserIdentities Assigned Identity Response} 
- 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_ Mapping[str, Useridentities Assigned Identity Response] 
- 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.
- userAssigned Map<Property Map>Identities 
- 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_User Assigned 
- SystemAssigned, UserAssigned
- None
- None
- ResourceIdentity Type System Assigned 
- SystemAssigned
- ResourceIdentity Type User Assigned 
- UserAssigned
- ResourceIdentity Type_System Assigned_User Assigned 
- SystemAssigned, UserAssigned
- ResourceIdentity Type None 
- None
- SystemAssigned 
- SystemAssigned
- UserAssigned 
- UserAssigned
- SystemAssigned_User Assigned 
- SystemAssigned, UserAssigned
- None
- None
- SystemAssigned 
- SystemAssigned
- UserAssigned 
- UserAssigned
- SystemAssigned_User Assigned 
- SystemAssigned, UserAssigned
- None
- None
- SYSTEM_ASSIGNED
- SystemAssigned
- USER_ASSIGNED
- UserAssigned
- SYSTEM_ASSIGNED_USER_ASSIGNED
- SystemAssigned, UserAssigned
- NONE
- None
- "SystemAssigned" 
- SystemAssigned
- "UserAssigned" 
- UserAssigned
- "SystemAssigned, User Assigned" 
- SystemAssigned, UserAssigned
- "None"
- None
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
- createdAt string
- The timestamp of resource creation (UTC).
- createdBy string
- The identity that created the resource.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified stringBy Type 
- The type of identity that last modified the resource.
- created_at str
- The timestamp of resource creation (UTC).
- created_by str
- The identity that created the resource.
- created_by_ strtype 
- The type of identity that created the resource.
- last_modified_ strat 
- The timestamp of resource last modification (UTC)
- last_modified_ strby 
- The identity that last modified the resource.
- last_modified_ strby_ type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
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