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:
- Resource
Group stringName - The name of the resource group.
- Container
Group List<Pulumi.Profiles Azure Native. Container Instance. Inputs. Container Group Profile Stub> - The Container Group Profiles that could be used in a nGroup.
- Elastic
Profile 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.
- Ngroups
Name string - The N Groups name.
- Dictionary<string, string>
- The resource tags.
- Zones List<string>
- The zones for the container group.
- Resource
Group stringName - The name of the resource group.
- Container
Group []ContainerProfiles Group Profile Stub Args - The Container Group Profiles that could be used in a nGroup.
- Elastic
Profile ElasticProfile Args - The elastic profile.
- Identity
NGroup
Identity Args - The identity of the nGroup, if configured.
- Location string
- The resource location.
- Ngroups
Name string - The N Groups name.
- map[string]string
- The resource tags.
- Zones []string
- The zones for the container group.
- resource
Group StringName - The name of the resource group.
- container
Group List<ContainerProfiles Group Profile Stub> - The Container Group Profiles that could be used in a nGroup.
- elastic
Profile ElasticProfile - The elastic profile.
- identity
NGroup
Identity - The identity of the nGroup, if configured.
- location String
- The resource location.
- ngroups
Name String - The N Groups name.
- Map<String,String>
- The resource tags.
- zones List<String>
- The zones for the container group.
- resource
Group stringName - The name of the resource group.
- container
Group ContainerProfiles Group Profile Stub[] - The Container Group Profiles that could be used in a nGroup.
- elastic
Profile ElasticProfile - The elastic profile.
- identity
NGroup
Identity - The identity of the nGroup, if configured.
- location string
- The resource location.
- ngroups
Name 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
NGroup
Identity 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.
- resource
Group StringName - The name of the resource group.
- container
Group List<Property Map>Profiles - The Container Group Profiles that could be used in a nGroup.
- elastic
Profile Property Map - The elastic profile.
- identity Property Map
- The identity of the nGroup, if configured.
- location String
- The resource location.
- ngroups
Name 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.
- Provisioning
State string - The provisioning state, which only appears in the response.
- System
Data 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.
- Provisioning
State string - The provisioning state, which only appears in the response.
- System
Data 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.
- provisioning
State String - The provisioning state, which only appears in the response.
- system
Data 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.
- provisioning
State string - The provisioning state, which only appears in the response.
- system
Data 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.
- provisioning
State String - The provisioning state, which only appears in the response.
- system
Data 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
Api
Entity Reference - The API entity reference.
- resource
Api
Entity Reference - The API entity reference.
- resource
Api
Entity Reference - The API entity reference.
- resource
Api
Entity 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
Api
Entity Reference Response - The API entity reference.
- resource
Api
Entity Reference Response - The API entity reference.
- resource
Api
Entity Reference Response - The API entity reference.
- resource
Api
Entity Reference Response - The API entity reference.
- resource Property Map
- The API entity reference.
ElasticProfile, ElasticProfileArgs
- Desired
Count int
- Desired
Count int
- desired
Count Integer
- desired
Count number
- desired_
count int
- desired
Count Number
ElasticProfileResponse, ElasticProfileResponseArgs
- Desired
Count int
- Desired
Count int
- desired
Count Integer
- desired
Count number
- desired_
count int
- desired
Count 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.
- User
Assigned 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
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.
- User
Assigned []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
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.
- user
Assigned 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
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.
- user
Assigned 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
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.
- 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
"System
Assigned" | "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.
- user
Assigned 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
- Principal
Id string - The principal id of the nGroup identity. This property will only be provided for a system assigned identity.
- Tenant
Id 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.
- User
Assigned 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}'.
- Principal
Id string - The principal id of the nGroup identity. This property will only be provided for a system assigned identity.
- Tenant
Id 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.
- User
Assigned 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}'.
- principal
Id String - The principal id of the nGroup identity. This property will only be provided for a system assigned identity.
- tenant
Id 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.
- user
Assigned 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}'.
- principal
Id string - The principal id of the nGroup identity. This property will only be provided for a system assigned identity.
- tenant
Id 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.
- user
Assigned {[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}'.
- principal
Id String - The principal id of the nGroup identity. This property will only be provided for a system assigned identity.
- tenant
Id 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.
- user
Assigned 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
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned, UserAssigned
- None
- None
- Resource
Identity Type System Assigned - SystemAssigned
- Resource
Identity Type User Assigned - UserAssigned
- Resource
Identity Type_System Assigned_User Assigned - SystemAssigned, UserAssigned
- Resource
Identity Type None - None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned, UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned, UserAssigned
- None
- None
- SYSTEM_ASSIGNED
- SystemAssigned
- USER_ASSIGNED
- UserAssigned
- SYSTEM_ASSIGNED_USER_ASSIGNED
- SystemAssigned, UserAssigned
- NONE
- None
- "System
Assigned" - SystemAssigned
- "User
Assigned" - UserAssigned
- "System
Assigned, User Assigned" - SystemAssigned, UserAssigned
- "None"
- None
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs
- Client
Id string - The client ID of the assigned identity.
- Principal
Id string - The principal ID of the assigned identity.
- Client
Id string - The client ID of the assigned identity.
- Principal
Id string - The principal ID of the assigned identity.
- client
Id String - The client ID of the assigned identity.
- principal
Id String - The principal ID of the assigned identity.
- client
Id string - The client ID of the assigned identity.
- principal
Id 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.
- client
Id String - The client ID of the assigned identity.
- principal
Id String - The principal ID of the assigned identity.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0