azure-native.mission.Community
Explore with Pulumi AI
Community Model Resource
Uses Azure REST API version 2025-05-01-preview.
Other available API versions: 2024-06-01-preview, 2024-12-01-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native mission [ApiVersion]
. See the version guide for details.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:mission:Community TestMyCommunity /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Mission/communities/{communityName}
Create Community Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Community(name: string, args: CommunityArgs, opts?: CustomResourceOptions);
@overload
def Community(resource_name: str,
args: CommunityArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Community(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
governed_service_list: Optional[Sequence[GovernedServiceItemArgs]] = None,
community_name: Optional[str] = None,
community_role_assignments: Optional[Sequence[RoleAssignmentItemArgs]] = None,
dns_servers: Optional[Sequence[str]] = None,
firewall_sku: Optional[Union[str, FirewallSKU]] = None,
address_space: Optional[str] = None,
identity: Optional[ManagedServiceIdentityArgs] = None,
location: Optional[str] = None,
maintenance_mode_configuration: Optional[MaintenanceModeConfigurationModelArgs] = None,
policy_override: Optional[Union[str, PolicyOverride]] = None,
approval_settings: Optional[ApprovalSettingsArgs] = None,
tags: Optional[Mapping[str, str]] = None)
func NewCommunity(ctx *Context, name string, args CommunityArgs, opts ...ResourceOption) (*Community, error)
public Community(string name, CommunityArgs args, CustomResourceOptions? opts = null)
public Community(String name, CommunityArgs args)
public Community(String name, CommunityArgs args, CustomResourceOptions options)
type: azure-native:mission:Community
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 CommunityArgs
- 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 CommunityArgs
- 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 CommunityArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CommunityArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CommunityArgs
- 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 communityResource = new AzureNative.Mission.Community("communityResource", new()
{
ResourceGroupName = "string",
GovernedServiceList = new[]
{
new AzureNative.Mission.Inputs.GovernedServiceItemArgs
{
ServiceId = "string",
Enforcement = "string",
Option = "string",
PolicyAction = "string",
},
},
CommunityName = "string",
CommunityRoleAssignments = new[]
{
new AzureNative.Mission.Inputs.RoleAssignmentItemArgs
{
RoleDefinitionId = "string",
Principals = new[]
{
new AzureNative.Mission.Inputs.PrincipalArgs
{
Id = "string",
Type = "string",
},
},
},
},
DnsServers = new[]
{
"string",
},
FirewallSku = "string",
AddressSpace = "string",
Identity = new AzureNative.Mission.Inputs.ManagedServiceIdentityArgs
{
Type = "string",
UserAssignedIdentities = new[]
{
"string",
},
},
Location = "string",
MaintenanceModeConfiguration = new AzureNative.Mission.Inputs.MaintenanceModeConfigurationModelArgs
{
Mode = "string",
Justification = "string",
Principals = new[]
{
new AzureNative.Mission.Inputs.PrincipalArgs
{
Id = "string",
Type = "string",
},
},
},
PolicyOverride = "string",
ApprovalSettings = new AzureNative.Mission.Inputs.ApprovalSettingsArgs
{
ConnectionCreation = "string",
ConnectionDeletion = "string",
ConnectionUpdate = "string",
EnclaveCreation = "string",
EnclaveDeletion = "string",
EndpointCreation = "string",
EndpointDeletion = "string",
EndpointUpdate = "string",
MaintenanceMode = "string",
MandatoryApprovers = new[]
{
new AzureNative.Mission.Inputs.MandatoryApproverArgs
{
ApproverEntraId = "string",
},
},
MinimumApproversRequired = 0,
NotificationOnApprovalAction = "string",
NotificationOnApprovalCreation = "string",
NotificationOnApprovalDeletion = "string",
ServiceCatalogDeployment = "string",
},
Tags =
{
{ "string", "string" },
},
});
example, err := mission.NewCommunity(ctx, "communityResource", &mission.CommunityArgs{
ResourceGroupName: pulumi.String("string"),
GovernedServiceList: mission.GovernedServiceItemArray{
&mission.GovernedServiceItemArgs{
ServiceId: pulumi.String("string"),
Enforcement: pulumi.String("string"),
Option: pulumi.String("string"),
PolicyAction: pulumi.String("string"),
},
},
CommunityName: pulumi.String("string"),
CommunityRoleAssignments: mission.RoleAssignmentItemArray{
&mission.RoleAssignmentItemArgs{
RoleDefinitionId: pulumi.String("string"),
Principals: mission.PrincipalArray{
&mission.PrincipalArgs{
Id: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
},
},
DnsServers: pulumi.StringArray{
pulumi.String("string"),
},
FirewallSku: pulumi.String("string"),
AddressSpace: pulumi.String("string"),
Identity: &mission.ManagedServiceIdentityArgs{
Type: pulumi.String("string"),
UserAssignedIdentities: pulumi.StringArray{
pulumi.String("string"),
},
},
Location: pulumi.String("string"),
MaintenanceModeConfiguration: &mission.MaintenanceModeConfigurationModelArgs{
Mode: pulumi.String("string"),
Justification: pulumi.String("string"),
Principals: mission.PrincipalArray{
&mission.PrincipalArgs{
Id: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
},
PolicyOverride: pulumi.String("string"),
ApprovalSettings: &mission.ApprovalSettingsArgs{
ConnectionCreation: pulumi.String("string"),
ConnectionDeletion: pulumi.String("string"),
ConnectionUpdate: pulumi.String("string"),
EnclaveCreation: pulumi.String("string"),
EnclaveDeletion: pulumi.String("string"),
EndpointCreation: pulumi.String("string"),
EndpointDeletion: pulumi.String("string"),
EndpointUpdate: pulumi.String("string"),
MaintenanceMode: pulumi.String("string"),
MandatoryApprovers: mission.MandatoryApproverArray{
&mission.MandatoryApproverArgs{
ApproverEntraId: pulumi.String("string"),
},
},
MinimumApproversRequired: pulumi.Float64(0),
NotificationOnApprovalAction: pulumi.String("string"),
NotificationOnApprovalCreation: pulumi.String("string"),
NotificationOnApprovalDeletion: pulumi.String("string"),
ServiceCatalogDeployment: pulumi.String("string"),
},
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var communityResource = new Community("communityResource", CommunityArgs.builder()
.resourceGroupName("string")
.governedServiceList(GovernedServiceItemArgs.builder()
.serviceId("string")
.enforcement("string")
.option("string")
.policyAction("string")
.build())
.communityName("string")
.communityRoleAssignments(RoleAssignmentItemArgs.builder()
.roleDefinitionId("string")
.principals(PrincipalArgs.builder()
.id("string")
.type("string")
.build())
.build())
.dnsServers("string")
.firewallSku("string")
.addressSpace("string")
.identity(ManagedServiceIdentityArgs.builder()
.type("string")
.userAssignedIdentities("string")
.build())
.location("string")
.maintenanceModeConfiguration(MaintenanceModeConfigurationModelArgs.builder()
.mode("string")
.justification("string")
.principals(PrincipalArgs.builder()
.id("string")
.type("string")
.build())
.build())
.policyOverride("string")
.approvalSettings(ApprovalSettingsArgs.builder()
.connectionCreation("string")
.connectionDeletion("string")
.connectionUpdate("string")
.enclaveCreation("string")
.enclaveDeletion("string")
.endpointCreation("string")
.endpointDeletion("string")
.endpointUpdate("string")
.maintenanceMode("string")
.mandatoryApprovers(MandatoryApproverArgs.builder()
.approverEntraId("string")
.build())
.minimumApproversRequired(0.0)
.notificationOnApprovalAction("string")
.notificationOnApprovalCreation("string")
.notificationOnApprovalDeletion("string")
.serviceCatalogDeployment("string")
.build())
.tags(Map.of("string", "string"))
.build());
community_resource = azure_native.mission.Community("communityResource",
resource_group_name="string",
governed_service_list=[{
"service_id": "string",
"enforcement": "string",
"option": "string",
"policy_action": "string",
}],
community_name="string",
community_role_assignments=[{
"role_definition_id": "string",
"principals": [{
"id": "string",
"type": "string",
}],
}],
dns_servers=["string"],
firewall_sku="string",
address_space="string",
identity={
"type": "string",
"user_assigned_identities": ["string"],
},
location="string",
maintenance_mode_configuration={
"mode": "string",
"justification": "string",
"principals": [{
"id": "string",
"type": "string",
}],
},
policy_override="string",
approval_settings={
"connection_creation": "string",
"connection_deletion": "string",
"connection_update": "string",
"enclave_creation": "string",
"enclave_deletion": "string",
"endpoint_creation": "string",
"endpoint_deletion": "string",
"endpoint_update": "string",
"maintenance_mode": "string",
"mandatory_approvers": [{
"approver_entra_id": "string",
}],
"minimum_approvers_required": 0,
"notification_on_approval_action": "string",
"notification_on_approval_creation": "string",
"notification_on_approval_deletion": "string",
"service_catalog_deployment": "string",
},
tags={
"string": "string",
})
const communityResource = new azure_native.mission.Community("communityResource", {
resourceGroupName: "string",
governedServiceList: [{
serviceId: "string",
enforcement: "string",
option: "string",
policyAction: "string",
}],
communityName: "string",
communityRoleAssignments: [{
roleDefinitionId: "string",
principals: [{
id: "string",
type: "string",
}],
}],
dnsServers: ["string"],
firewallSku: "string",
addressSpace: "string",
identity: {
type: "string",
userAssignedIdentities: ["string"],
},
location: "string",
maintenanceModeConfiguration: {
mode: "string",
justification: "string",
principals: [{
id: "string",
type: "string",
}],
},
policyOverride: "string",
approvalSettings: {
connectionCreation: "string",
connectionDeletion: "string",
connectionUpdate: "string",
enclaveCreation: "string",
enclaveDeletion: "string",
endpointCreation: "string",
endpointDeletion: "string",
endpointUpdate: "string",
maintenanceMode: "string",
mandatoryApprovers: [{
approverEntraId: "string",
}],
minimumApproversRequired: 0,
notificationOnApprovalAction: "string",
notificationOnApprovalCreation: "string",
notificationOnApprovalDeletion: "string",
serviceCatalogDeployment: "string",
},
tags: {
string: "string",
},
});
type: azure-native:mission:Community
properties:
addressSpace: string
approvalSettings:
connectionCreation: string
connectionDeletion: string
connectionUpdate: string
enclaveCreation: string
enclaveDeletion: string
endpointCreation: string
endpointDeletion: string
endpointUpdate: string
maintenanceMode: string
mandatoryApprovers:
- approverEntraId: string
minimumApproversRequired: 0
notificationOnApprovalAction: string
notificationOnApprovalCreation: string
notificationOnApprovalDeletion: string
serviceCatalogDeployment: string
communityName: string
communityRoleAssignments:
- principals:
- id: string
type: string
roleDefinitionId: string
dnsServers:
- string
firewallSku: string
governedServiceList:
- enforcement: string
option: string
policyAction: string
serviceId: string
identity:
type: string
userAssignedIdentities:
- string
location: string
maintenanceModeConfiguration:
justification: string
mode: string
principals:
- id: string
type: string
policyOverride: string
resourceGroupName: string
tags:
string: string
Community 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 Community resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Address
Space string - Address Space.
- Approval
Settings Pulumi.Azure Native. Mission. Inputs. Approval Settings - Approval requirements for various actions on the community's resources.
- Community
Name string - The name of the communityResource Resource
- Community
Role List<Pulumi.Assignments Azure Native. Mission. Inputs. Role Assignment Item> - Community role assignments
- Dns
Servers List<string> - DNS Servers.
- Firewall
Sku string | Pulumi.Azure Native. Mission. Firewall SKU - SKU of the community's Azure Firewall (Basic, Standard, Premium). Standard is the default
- Governed
Service List<Pulumi.List Azure Native. Mission. Inputs. Governed Service Item> - List of services governed by a community.
- Identity
Pulumi.
Azure Native. Mission. Inputs. Managed Service Identity - The managed service identities assigned to this resource.
- Location string
- The geo-location where the resource lives
- Maintenance
Mode Pulumi.Configuration Azure Native. Mission. Inputs. Maintenance Mode Configuration Model - Maintenance Mode configuration.
- Policy
Override string | Pulumi.Azure Native. Mission. Policy Override - Policy override setting for the community. Specifies whether to apply enclave-specific policies or disable policy enforcement.
- Dictionary<string, string>
- Resource tags.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Address
Space string - Address Space.
- Approval
Settings ApprovalSettings Args - Approval requirements for various actions on the community's resources.
- Community
Name string - The name of the communityResource Resource
- Community
Role []RoleAssignments Assignment Item Args - Community role assignments
- Dns
Servers []string - DNS Servers.
- Firewall
Sku string | FirewallSKU - SKU of the community's Azure Firewall (Basic, Standard, Premium). Standard is the default
- Governed
Service []GovernedList Service Item Args - List of services governed by a community.
- Identity
Managed
Service Identity Args - The managed service identities assigned to this resource.
- Location string
- The geo-location where the resource lives
- Maintenance
Mode MaintenanceConfiguration Mode Configuration Model Args - Maintenance Mode configuration.
- Policy
Override string | PolicyOverride - Policy override setting for the community. Specifies whether to apply enclave-specific policies or disable policy enforcement.
- map[string]string
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- address
Space String - Address Space.
- approval
Settings ApprovalSettings - Approval requirements for various actions on the community's resources.
- community
Name String - The name of the communityResource Resource
- community
Role List<RoleAssignments Assignment Item> - Community role assignments
- dns
Servers List<String> - DNS Servers.
- firewall
Sku String | FirewallSKU - SKU of the community's Azure Firewall (Basic, Standard, Premium). Standard is the default
- governed
Service List<GovernedList Service Item> - List of services governed by a community.
- identity
Managed
Service Identity - The managed service identities assigned to this resource.
- location String
- The geo-location where the resource lives
- maintenance
Mode MaintenanceConfiguration Mode Configuration Model - Maintenance Mode configuration.
- policy
Override String | PolicyOverride - Policy override setting for the community. Specifies whether to apply enclave-specific policies or disable policy enforcement.
- Map<String,String>
- Resource tags.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- address
Space string - Address Space.
- approval
Settings ApprovalSettings - Approval requirements for various actions on the community's resources.
- community
Name string - The name of the communityResource Resource
- community
Role RoleAssignments Assignment Item[] - Community role assignments
- dns
Servers string[] - DNS Servers.
- firewall
Sku string | FirewallSKU - SKU of the community's Azure Firewall (Basic, Standard, Premium). Standard is the default
- governed
Service GovernedList Service Item[] - List of services governed by a community.
- identity
Managed
Service Identity - The managed service identities assigned to this resource.
- location string
- The geo-location where the resource lives
- maintenance
Mode MaintenanceConfiguration Mode Configuration Model - Maintenance Mode configuration.
- policy
Override string | PolicyOverride - Policy override setting for the community. Specifies whether to apply enclave-specific policies or disable policy enforcement.
- {[key: string]: string}
- Resource tags.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- address_
space str - Address Space.
- approval_
settings ApprovalSettings Args - Approval requirements for various actions on the community's resources.
- community_
name str - The name of the communityResource Resource
- community_
role_ Sequence[Roleassignments Assignment Item Args] - Community role assignments
- dns_
servers Sequence[str] - DNS Servers.
- firewall_
sku str | FirewallSKU - SKU of the community's Azure Firewall (Basic, Standard, Premium). Standard is the default
- governed_
service_ Sequence[Governedlist Service Item Args] - List of services governed by a community.
- identity
Managed
Service Identity Args - The managed service identities assigned to this resource.
- location str
- The geo-location where the resource lives
- maintenance_
mode_ Maintenanceconfiguration Mode Configuration Model Args - Maintenance Mode configuration.
- policy_
override str | PolicyOverride - Policy override setting for the community. Specifies whether to apply enclave-specific policies or disable policy enforcement.
- Mapping[str, str]
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- address
Space String - Address Space.
- approval
Settings Property Map - Approval requirements for various actions on the community's resources.
- community
Name String - The name of the communityResource Resource
- community
Role List<Property Map>Assignments - Community role assignments
- dns
Servers List<String> - DNS Servers.
- firewall
Sku String | "Basic" | "Standard" | "Premium" - SKU of the community's Azure Firewall (Basic, Standard, Premium). Standard is the default
- governed
Service List<Property Map>List - List of services governed by a community.
- identity Property Map
- The managed service identities assigned to this resource.
- location String
- The geo-location where the resource lives
- maintenance
Mode Property MapConfiguration - Maintenance Mode configuration.
- policy
Override String | "Enclave" | "None" - Policy override setting for the community. Specifies whether to apply enclave-specific policies or disable policy enforcement.
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the Community resource produces the following output properties:
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Managed
On Pulumi.Behalf Of Configuration Azure Native. Mission. Outputs. Managed On Behalf Of Configuration Response - Managed On Behalf Of Configuration.
- Managed
Resource stringGroup Name - Managed resource group name.
- Name string
- The name of the resource
- Provisioning
State string - Provisioning State.
- Resource
Collection List<string> - List of resource ids created by communities.
- System
Data Pulumi.Azure Native. Mission. Outputs. System Data Response - 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"
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Managed
On ManagedBehalf Of Configuration On Behalf Of Configuration Response - Managed On Behalf Of Configuration.
- Managed
Resource stringGroup Name - Managed resource group name.
- Name string
- The name of the resource
- Provisioning
State string - Provisioning State.
- Resource
Collection []string - List of resource ids created by communities.
- System
Data SystemData Response - 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"
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- managed
On ManagedBehalf Of Configuration On Behalf Of Configuration Response - Managed On Behalf Of Configuration.
- managed
Resource StringGroup Name - Managed resource group name.
- name String
- The name of the resource
- provisioning
State String - Provisioning State.
- resource
Collection List<String> - List of resource ids created by communities.
- system
Data SystemData Response - 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"
- azure
Api stringVersion - The Azure API version of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- managed
On ManagedBehalf Of Configuration On Behalf Of Configuration Response - Managed On Behalf Of Configuration.
- managed
Resource stringGroup Name - Managed resource group name.
- name string
- The name of the resource
- provisioning
State string - Provisioning State.
- resource
Collection string[] - List of resource ids created by communities.
- system
Data SystemData Response - 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"
- azure_
api_ strversion - The Azure API version of the resource.
- id str
- The provider-assigned unique ID for this managed resource.
- managed_
on_ Managedbehalf_ of_ configuration On Behalf Of Configuration Response - Managed On Behalf Of Configuration.
- managed_
resource_ strgroup_ name - Managed resource group name.
- name str
- The name of the resource
- provisioning_
state str - Provisioning State.
- resource_
collection Sequence[str] - List of resource ids created by communities.
- system_
data SystemData Response - 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"
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- managed
On Property MapBehalf Of Configuration - Managed On Behalf Of Configuration.
- managed
Resource StringGroup Name - Managed resource group name.
- name String
- The name of the resource
- provisioning
State String - Provisioning State.
- resource
Collection List<String> - List of resource ids created by communities.
- system
Data 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
ApprovalPolicy, ApprovalPolicyArgs
- Required
- RequiredApproval will be required for the specified action.
- Not
Required - NotRequiredApproval will not be required for the specified action.
- Approval
Policy Required - RequiredApproval will be required for the specified action.
- Approval
Policy Not Required - NotRequiredApproval will not be required for the specified action.
- Required
- RequiredApproval will be required for the specified action.
- Not
Required - NotRequiredApproval will not be required for the specified action.
- Required
- RequiredApproval will be required for the specified action.
- Not
Required - NotRequiredApproval will not be required for the specified action.
- REQUIRED
- RequiredApproval will be required for the specified action.
- NOT_REQUIRED
- NotRequiredApproval will not be required for the specified action.
- "Required"
- RequiredApproval will be required for the specified action.
- "Not
Required" - NotRequiredApproval will not be required for the specified action.
ApprovalSettings, ApprovalSettingsArgs
- Connection
Creation string | Pulumi.Azure Native. Mission. Approval Policy - Approval required for enclave connection creation (Required or NotRequired).
- Connection
Deletion string | Pulumi.Azure Native. Mission. Approval Policy - Approval required for enclave connection deletion (Required or NotRequired).
- Connection
Update string | Pulumi.Azure Native. Mission. Approval Policy - Approval required for enclave connection update (Required or NotRequired).
- Enclave
Creation string | Pulumi.Azure Native. Mission. Approval Policy - Approval required for virtual enclave creation (Required or NotRequired).
- Enclave
Deletion string | Pulumi.Azure Native. Mission. Approval Policy - Approval required for virtual enclave deletion (Required or NotRequired).
- Endpoint
Creation string | Pulumi.Azure Native. Mission. Approval Policy - Approval required for endpoint creation (Required or NotRequired).
- Endpoint
Deletion string | Pulumi.Azure Native. Mission. Approval Policy - Approval required for endpoint deletion (Required or NotRequired).
- Endpoint
Update string | Pulumi.Azure Native. Mission. Approval Policy - Approval required for endpoint update (Required or NotRequired).
- Maintenance
Mode string | Pulumi.Azure Native. Mission. Approval Policy - Approval required for toggling maintenance mode (Required or NotRequired).
- Mandatory
Approvers List<Pulumi.Azure Native. Mission. Inputs. Mandatory Approver> - List of mandatory approvers for the approval request
- Minimum
Approvers doubleRequired - Minimum number of approvers required for the approval request
- Notification
On string | Pulumi.Approval Action Azure Native. Mission. Approval Policy - Notification will be sent on any action taken (Approve/Reject) on an Approval Request
- Notification
On string | Pulumi.Approval Creation Azure Native. Mission. Approval Policy - Notification will be sent on creation of an Approval Request
- Notification
On string | Pulumi.Approval Deletion Azure Native. Mission. Approval Policy - Notification will be sent on deletion of an Approval Request
- Service
Catalog string | Pulumi.Deployment Azure Native. Mission. Approval Policy - Approval required for deploying service catalog templates (Required or NotRequired).
- Connection
Creation string | ApprovalPolicy - Approval required for enclave connection creation (Required or NotRequired).
- Connection
Deletion string | ApprovalPolicy - Approval required for enclave connection deletion (Required or NotRequired).
- Connection
Update string | ApprovalPolicy - Approval required for enclave connection update (Required or NotRequired).
- Enclave
Creation string | ApprovalPolicy - Approval required for virtual enclave creation (Required or NotRequired).
- Enclave
Deletion string | ApprovalPolicy - Approval required for virtual enclave deletion (Required or NotRequired).
- Endpoint
Creation string | ApprovalPolicy - Approval required for endpoint creation (Required or NotRequired).
- Endpoint
Deletion string | ApprovalPolicy - Approval required for endpoint deletion (Required or NotRequired).
- Endpoint
Update string | ApprovalPolicy - Approval required for endpoint update (Required or NotRequired).
- Maintenance
Mode string | ApprovalPolicy - Approval required for toggling maintenance mode (Required or NotRequired).
- Mandatory
Approvers []MandatoryApprover - List of mandatory approvers for the approval request
- Minimum
Approvers float64Required - Minimum number of approvers required for the approval request
- Notification
On string | ApprovalApproval Action Policy - Notification will be sent on any action taken (Approve/Reject) on an Approval Request
- Notification
On string | ApprovalApproval Creation Policy - Notification will be sent on creation of an Approval Request
- Notification
On string | ApprovalApproval Deletion Policy - Notification will be sent on deletion of an Approval Request
- Service
Catalog string | ApprovalDeployment Policy - Approval required for deploying service catalog templates (Required or NotRequired).
- connection
Creation String | ApprovalPolicy - Approval required for enclave connection creation (Required or NotRequired).
- connection
Deletion String | ApprovalPolicy - Approval required for enclave connection deletion (Required or NotRequired).
- connection
Update String | ApprovalPolicy - Approval required for enclave connection update (Required or NotRequired).
- enclave
Creation String | ApprovalPolicy - Approval required for virtual enclave creation (Required or NotRequired).
- enclave
Deletion String | ApprovalPolicy - Approval required for virtual enclave deletion (Required or NotRequired).
- endpoint
Creation String | ApprovalPolicy - Approval required for endpoint creation (Required or NotRequired).
- endpoint
Deletion String | ApprovalPolicy - Approval required for endpoint deletion (Required or NotRequired).
- endpoint
Update String | ApprovalPolicy - Approval required for endpoint update (Required or NotRequired).
- maintenance
Mode String | ApprovalPolicy - Approval required for toggling maintenance mode (Required or NotRequired).
- mandatory
Approvers List<MandatoryApprover> - List of mandatory approvers for the approval request
- minimum
Approvers DoubleRequired - Minimum number of approvers required for the approval request
- notification
On String | ApprovalApproval Action Policy - Notification will be sent on any action taken (Approve/Reject) on an Approval Request
- notification
On String | ApprovalApproval Creation Policy - Notification will be sent on creation of an Approval Request
- notification
On String | ApprovalApproval Deletion Policy - Notification will be sent on deletion of an Approval Request
- service
Catalog String | ApprovalDeployment Policy - Approval required for deploying service catalog templates (Required or NotRequired).
- connection
Creation string | ApprovalPolicy - Approval required for enclave connection creation (Required or NotRequired).
- connection
Deletion string | ApprovalPolicy - Approval required for enclave connection deletion (Required or NotRequired).
- connection
Update string | ApprovalPolicy - Approval required for enclave connection update (Required or NotRequired).
- enclave
Creation string | ApprovalPolicy - Approval required for virtual enclave creation (Required or NotRequired).
- enclave
Deletion string | ApprovalPolicy - Approval required for virtual enclave deletion (Required or NotRequired).
- endpoint
Creation string | ApprovalPolicy - Approval required for endpoint creation (Required or NotRequired).
- endpoint
Deletion string | ApprovalPolicy - Approval required for endpoint deletion (Required or NotRequired).
- endpoint
Update string | ApprovalPolicy - Approval required for endpoint update (Required or NotRequired).
- maintenance
Mode string | ApprovalPolicy - Approval required for toggling maintenance mode (Required or NotRequired).
- mandatory
Approvers MandatoryApprover[] - List of mandatory approvers for the approval request
- minimum
Approvers numberRequired - Minimum number of approvers required for the approval request
- notification
On string | ApprovalApproval Action Policy - Notification will be sent on any action taken (Approve/Reject) on an Approval Request
- notification
On string | ApprovalApproval Creation Policy - Notification will be sent on creation of an Approval Request
- notification
On string | ApprovalApproval Deletion Policy - Notification will be sent on deletion of an Approval Request
- service
Catalog string | ApprovalDeployment Policy - Approval required for deploying service catalog templates (Required or NotRequired).
- connection_
creation str | ApprovalPolicy - Approval required for enclave connection creation (Required or NotRequired).
- connection_
deletion str | ApprovalPolicy - Approval required for enclave connection deletion (Required or NotRequired).
- connection_
update str | ApprovalPolicy - Approval required for enclave connection update (Required or NotRequired).
- enclave_
creation str | ApprovalPolicy - Approval required for virtual enclave creation (Required or NotRequired).
- enclave_
deletion str | ApprovalPolicy - Approval required for virtual enclave deletion (Required or NotRequired).
- endpoint_
creation str | ApprovalPolicy - Approval required for endpoint creation (Required or NotRequired).
- endpoint_
deletion str | ApprovalPolicy - Approval required for endpoint deletion (Required or NotRequired).
- endpoint_
update str | ApprovalPolicy - Approval required for endpoint update (Required or NotRequired).
- maintenance_
mode str | ApprovalPolicy - Approval required for toggling maintenance mode (Required or NotRequired).
- mandatory_
approvers Sequence[MandatoryApprover] - List of mandatory approvers for the approval request
- minimum_
approvers_ floatrequired - Minimum number of approvers required for the approval request
- notification_
on_ str | Approvalapproval_ action Policy - Notification will be sent on any action taken (Approve/Reject) on an Approval Request
- notification_
on_ str | Approvalapproval_ creation Policy - Notification will be sent on creation of an Approval Request
- notification_
on_ str | Approvalapproval_ deletion Policy - Notification will be sent on deletion of an Approval Request
- service_
catalog_ str | Approvaldeployment Policy - Approval required for deploying service catalog templates (Required or NotRequired).
- connection
Creation String | "Required" | "NotRequired" - Approval required for enclave connection creation (Required or NotRequired).
- connection
Deletion String | "Required" | "NotRequired" - Approval required for enclave connection deletion (Required or NotRequired).
- connection
Update String | "Required" | "NotRequired" - Approval required for enclave connection update (Required or NotRequired).
- enclave
Creation String | "Required" | "NotRequired" - Approval required for virtual enclave creation (Required or NotRequired).
- enclave
Deletion String | "Required" | "NotRequired" - Approval required for virtual enclave deletion (Required or NotRequired).
- endpoint
Creation String | "Required" | "NotRequired" - Approval required for endpoint creation (Required or NotRequired).
- endpoint
Deletion String | "Required" | "NotRequired" - Approval required for endpoint deletion (Required or NotRequired).
- endpoint
Update String | "Required" | "NotRequired" - Approval required for endpoint update (Required or NotRequired).
- maintenance
Mode String | "Required" | "NotRequired" - Approval required for toggling maintenance mode (Required or NotRequired).
- mandatory
Approvers List<Property Map> - List of mandatory approvers for the approval request
- minimum
Approvers NumberRequired - Minimum number of approvers required for the approval request
- notification
On String | "Required" | "NotApproval Action Required" - Notification will be sent on any action taken (Approve/Reject) on an Approval Request
- notification
On String | "Required" | "NotApproval Creation Required" - Notification will be sent on creation of an Approval Request
- notification
On String | "Required" | "NotApproval Deletion Required" - Notification will be sent on deletion of an Approval Request
- service
Catalog String | "Required" | "NotDeployment Required" - Approval required for deploying service catalog templates (Required or NotRequired).
ApprovalSettingsResponse, ApprovalSettingsResponseArgs
- Connection
Creation string - Approval required for enclave connection creation (Required or NotRequired).
- Connection
Deletion string - Approval required for enclave connection deletion (Required or NotRequired).
- Connection
Update string - Approval required for enclave connection update (Required or NotRequired).
- Enclave
Creation string - Approval required for virtual enclave creation (Required or NotRequired).
- Enclave
Deletion string - Approval required for virtual enclave deletion (Required or NotRequired).
- Endpoint
Creation string - Approval required for endpoint creation (Required or NotRequired).
- Endpoint
Deletion string - Approval required for endpoint deletion (Required or NotRequired).
- Endpoint
Update string - Approval required for endpoint update (Required or NotRequired).
- Maintenance
Mode string - Approval required for toggling maintenance mode (Required or NotRequired).
- Mandatory
Approvers List<Pulumi.Azure Native. Mission. Inputs. Mandatory Approver Response> - List of mandatory approvers for the approval request
- Minimum
Approvers doubleRequired - Minimum number of approvers required for the approval request
- Notification
On stringApproval Action - Notification will be sent on any action taken (Approve/Reject) on an Approval Request
- Notification
On stringApproval Creation - Notification will be sent on creation of an Approval Request
- Notification
On stringApproval Deletion - Notification will be sent on deletion of an Approval Request
- Service
Catalog stringDeployment - Approval required for deploying service catalog templates (Required or NotRequired).
- Connection
Creation string - Approval required for enclave connection creation (Required or NotRequired).
- Connection
Deletion string - Approval required for enclave connection deletion (Required or NotRequired).
- Connection
Update string - Approval required for enclave connection update (Required or NotRequired).
- Enclave
Creation string - Approval required for virtual enclave creation (Required or NotRequired).
- Enclave
Deletion string - Approval required for virtual enclave deletion (Required or NotRequired).
- Endpoint
Creation string - Approval required for endpoint creation (Required or NotRequired).
- Endpoint
Deletion string - Approval required for endpoint deletion (Required or NotRequired).
- Endpoint
Update string - Approval required for endpoint update (Required or NotRequired).
- Maintenance
Mode string - Approval required for toggling maintenance mode (Required or NotRequired).
- Mandatory
Approvers []MandatoryApprover Response - List of mandatory approvers for the approval request
- Minimum
Approvers float64Required - Minimum number of approvers required for the approval request
- Notification
On stringApproval Action - Notification will be sent on any action taken (Approve/Reject) on an Approval Request
- Notification
On stringApproval Creation - Notification will be sent on creation of an Approval Request
- Notification
On stringApproval Deletion - Notification will be sent on deletion of an Approval Request
- Service
Catalog stringDeployment - Approval required for deploying service catalog templates (Required or NotRequired).
- connection
Creation String - Approval required for enclave connection creation (Required or NotRequired).
- connection
Deletion String - Approval required for enclave connection deletion (Required or NotRequired).
- connection
Update String - Approval required for enclave connection update (Required or NotRequired).
- enclave
Creation String - Approval required for virtual enclave creation (Required or NotRequired).
- enclave
Deletion String - Approval required for virtual enclave deletion (Required or NotRequired).
- endpoint
Creation String - Approval required for endpoint creation (Required or NotRequired).
- endpoint
Deletion String - Approval required for endpoint deletion (Required or NotRequired).
- endpoint
Update String - Approval required for endpoint update (Required or NotRequired).
- maintenance
Mode String - Approval required for toggling maintenance mode (Required or NotRequired).
- mandatory
Approvers List<MandatoryApprover Response> - List of mandatory approvers for the approval request
- minimum
Approvers DoubleRequired - Minimum number of approvers required for the approval request
- notification
On StringApproval Action - Notification will be sent on any action taken (Approve/Reject) on an Approval Request
- notification
On StringApproval Creation - Notification will be sent on creation of an Approval Request
- notification
On StringApproval Deletion - Notification will be sent on deletion of an Approval Request
- service
Catalog StringDeployment - Approval required for deploying service catalog templates (Required or NotRequired).
- connection
Creation string - Approval required for enclave connection creation (Required or NotRequired).
- connection
Deletion string - Approval required for enclave connection deletion (Required or NotRequired).
- connection
Update string - Approval required for enclave connection update (Required or NotRequired).
- enclave
Creation string - Approval required for virtual enclave creation (Required or NotRequired).
- enclave
Deletion string - Approval required for virtual enclave deletion (Required or NotRequired).
- endpoint
Creation string - Approval required for endpoint creation (Required or NotRequired).
- endpoint
Deletion string - Approval required for endpoint deletion (Required or NotRequired).
- endpoint
Update string - Approval required for endpoint update (Required or NotRequired).
- maintenance
Mode string - Approval required for toggling maintenance mode (Required or NotRequired).
- mandatory
Approvers MandatoryApprover Response[] - List of mandatory approvers for the approval request
- minimum
Approvers numberRequired - Minimum number of approvers required for the approval request
- notification
On stringApproval Action - Notification will be sent on any action taken (Approve/Reject) on an Approval Request
- notification
On stringApproval Creation - Notification will be sent on creation of an Approval Request
- notification
On stringApproval Deletion - Notification will be sent on deletion of an Approval Request
- service
Catalog stringDeployment - Approval required for deploying service catalog templates (Required or NotRequired).
- connection_
creation str - Approval required for enclave connection creation (Required or NotRequired).
- connection_
deletion str - Approval required for enclave connection deletion (Required or NotRequired).
- connection_
update str - Approval required for enclave connection update (Required or NotRequired).
- enclave_
creation str - Approval required for virtual enclave creation (Required or NotRequired).
- enclave_
deletion str - Approval required for virtual enclave deletion (Required or NotRequired).
- endpoint_
creation str - Approval required for endpoint creation (Required or NotRequired).
- endpoint_
deletion str - Approval required for endpoint deletion (Required or NotRequired).
- endpoint_
update str - Approval required for endpoint update (Required or NotRequired).
- maintenance_
mode str - Approval required for toggling maintenance mode (Required or NotRequired).
- mandatory_
approvers Sequence[MandatoryApprover Response] - List of mandatory approvers for the approval request
- minimum_
approvers_ floatrequired - Minimum number of approvers required for the approval request
- notification_
on_ strapproval_ action - Notification will be sent on any action taken (Approve/Reject) on an Approval Request
- notification_
on_ strapproval_ creation - Notification will be sent on creation of an Approval Request
- notification_
on_ strapproval_ deletion - Notification will be sent on deletion of an Approval Request
- service_
catalog_ strdeployment - Approval required for deploying service catalog templates (Required or NotRequired).
- connection
Creation String - Approval required for enclave connection creation (Required or NotRequired).
- connection
Deletion String - Approval required for enclave connection deletion (Required or NotRequired).
- connection
Update String - Approval required for enclave connection update (Required or NotRequired).
- enclave
Creation String - Approval required for virtual enclave creation (Required or NotRequired).
- enclave
Deletion String - Approval required for virtual enclave deletion (Required or NotRequired).
- endpoint
Creation String - Approval required for endpoint creation (Required or NotRequired).
- endpoint
Deletion String - Approval required for endpoint deletion (Required or NotRequired).
- endpoint
Update String - Approval required for endpoint update (Required or NotRequired).
- maintenance
Mode String - Approval required for toggling maintenance mode (Required or NotRequired).
- mandatory
Approvers List<Property Map> - List of mandatory approvers for the approval request
- minimum
Approvers NumberRequired - Minimum number of approvers required for the approval request
- notification
On StringApproval Action - Notification will be sent on any action taken (Approve/Reject) on an Approval Request
- notification
On StringApproval Creation - Notification will be sent on creation of an Approval Request
- notification
On StringApproval Deletion - Notification will be sent on deletion of an Approval Request
- service
Catalog StringDeployment - Approval required for deploying service catalog templates (Required or NotRequired).
Enforcement, EnforcementArgs
- Enabled
- Enabled
- Disabled
- Disabled
- Enforcement
Enabled - Enabled
- Enforcement
Disabled - Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- ENABLED
- Enabled
- DISABLED
- Disabled
- "Enabled"
- Enabled
- "Disabled"
- Disabled
FirewallSKU, FirewallSKUArgs
- Basic
- BasicFirewallSKU Basic
- Standard
- StandardFirwallSKU Standard
- Premium
- PremiumFirewallSKU Premium
- Firewall
SKUBasic - BasicFirewallSKU Basic
- Firewall
SKUStandard - StandardFirwallSKU Standard
- Firewall
SKUPremium - PremiumFirewallSKU Premium
- Basic
- BasicFirewallSKU Basic
- Standard
- StandardFirwallSKU Standard
- Premium
- PremiumFirewallSKU Premium
- Basic
- BasicFirewallSKU Basic
- Standard
- StandardFirwallSKU Standard
- Premium
- PremiumFirewallSKU Premium
- BASIC
- BasicFirewallSKU Basic
- STANDARD
- StandardFirwallSKU Standard
- PREMIUM
- PremiumFirewallSKU Premium
- "Basic"
- BasicFirewallSKU Basic
- "Standard"
- StandardFirwallSKU Standard
- "Premium"
- PremiumFirewallSKU Premium
GovernedServiceItem, GovernedServiceItemArgs
- Service
Id string | Pulumi.Azure Native. Mission. Service Identifier - Service ID
- Enforcement
string | Pulumi.
Azure Native. Mission. Enforcement - Initiative enforcement (Enabled or Disabled).
- Option
string | Pulumi.
Azure Native. Mission. Option - Governance option for this service (Allow, Deny, ExceptionOnly, or NotApplicable).
- Policy
Action string | Pulumi.Azure Native. Mission. Policy Action - Enforcement mode for policy. AuditOnly, Enforce, or None.
- Service
Id string | ServiceIdentifier - Service ID
- Enforcement string | Enforcement
- Initiative enforcement (Enabled or Disabled).
- Option string | Option
- Governance option for this service (Allow, Deny, ExceptionOnly, or NotApplicable).
- Policy
Action string | PolicyAction - Enforcement mode for policy. AuditOnly, Enforce, or None.
- service
Id String | ServiceIdentifier - Service ID
- enforcement String | Enforcement
- Initiative enforcement (Enabled or Disabled).
- option String | Option
- Governance option for this service (Allow, Deny, ExceptionOnly, or NotApplicable).
- policy
Action String | PolicyAction - Enforcement mode for policy. AuditOnly, Enforce, or None.
- service
Id string | ServiceIdentifier - Service ID
- enforcement string | Enforcement
- Initiative enforcement (Enabled or Disabled).
- option string | Option
- Governance option for this service (Allow, Deny, ExceptionOnly, or NotApplicable).
- policy
Action string | PolicyAction - Enforcement mode for policy. AuditOnly, Enforce, or None.
- service_
id str | ServiceIdentifier - Service ID
- enforcement str | Enforcement
- Initiative enforcement (Enabled or Disabled).
- option str | Option
- Governance option for this service (Allow, Deny, ExceptionOnly, or NotApplicable).
- policy_
action str | PolicyAction - Enforcement mode for policy. AuditOnly, Enforce, or None.
- service
Id String | "AKS" | "AppService" | "Azure Firewalls" | "Container Registry" | "Cosmos DB" | "Data Connectors" | "Insights" | "Key Vault" | "Logic" | "Microsoft SQL" | "Monitoring" | "Postgre SQL" | "Private DNSZones" | "Service Bus" | "Storage" - Service ID
- enforcement String | "Enabled" | "Disabled"
- Initiative enforcement (Enabled or Disabled).
- option
String | "Allow" | "Deny" | "Exception
Only" | "Not Applicable" - Governance option for this service (Allow, Deny, ExceptionOnly, or NotApplicable).
- policy
Action String | "AuditOnly" | "Enforce" | "None" - Enforcement mode for policy. AuditOnly, Enforce, or None.
GovernedServiceItemResponse, GovernedServiceItemResponseArgs
- Initiatives List<string>
- Initiatives associated with this service.
- Service
Id string - Service ID
- Service
Name string - Service name.
- Enforcement string
- Initiative enforcement (Enabled or Disabled).
- Option string
- Governance option for this service (Allow, Deny, ExceptionOnly, or NotApplicable).
- Policy
Action string - Enforcement mode for policy. AuditOnly, Enforce, or None.
- Initiatives []string
- Initiatives associated with this service.
- Service
Id string - Service ID
- Service
Name string - Service name.
- Enforcement string
- Initiative enforcement (Enabled or Disabled).
- Option string
- Governance option for this service (Allow, Deny, ExceptionOnly, or NotApplicable).
- Policy
Action string - Enforcement mode for policy. AuditOnly, Enforce, or None.
- initiatives List<String>
- Initiatives associated with this service.
- service
Id String - Service ID
- service
Name String - Service name.
- enforcement String
- Initiative enforcement (Enabled or Disabled).
- option String
- Governance option for this service (Allow, Deny, ExceptionOnly, or NotApplicable).
- policy
Action String - Enforcement mode for policy. AuditOnly, Enforce, or None.
- initiatives string[]
- Initiatives associated with this service.
- service
Id string - Service ID
- service
Name string - Service name.
- enforcement string
- Initiative enforcement (Enabled or Disabled).
- option string
- Governance option for this service (Allow, Deny, ExceptionOnly, or NotApplicable).
- policy
Action string - Enforcement mode for policy. AuditOnly, Enforce, or None.
- initiatives Sequence[str]
- Initiatives associated with this service.
- service_
id str - Service ID
- service_
name str - Service name.
- enforcement str
- Initiative enforcement (Enabled or Disabled).
- option str
- Governance option for this service (Allow, Deny, ExceptionOnly, or NotApplicable).
- policy_
action str - Enforcement mode for policy. AuditOnly, Enforce, or None.
- initiatives List<String>
- Initiatives associated with this service.
- service
Id String - Service ID
- service
Name String - Service name.
- enforcement String
- Initiative enforcement (Enabled or Disabled).
- option String
- Governance option for this service (Allow, Deny, ExceptionOnly, or NotApplicable).
- policy
Action String - Enforcement mode for policy. AuditOnly, Enforce, or None.
Justification, JustificationArgs
- Networking
- Networking
- Governance
- Governance
- Off
- Off
- Justification
Networking - Networking
- Justification
Governance - Governance
- Justification
Off - Off
- Networking
- Networking
- Governance
- Governance
- Off
- Off
- Networking
- Networking
- Governance
- Governance
- Off
- Off
- NETWORKING
- Networking
- GOVERNANCE
- Governance
- OFF
- Off
- "Networking"
- Networking
- "Governance"
- Governance
- "Off"
- Off
MaintenanceModeConfigurationModel, MaintenanceModeConfigurationModelArgs
- Mode
string | Pulumi.
Azure Native. Mission. Mode - Current mode of Maintenance Mode Configuration
- Justification
string | Pulumi.
Azure Native. Mission. Justification - Justification for entering or exiting Maintenance Mode
- Principals
List<Pulumi.
Azure Native. Mission. Inputs. Principal> - The user, group or service principal object affected by Maintenance Mode
- Mode string | Mode
- Current mode of Maintenance Mode Configuration
- Justification string | Justification
- Justification for entering or exiting Maintenance Mode
- Principals []Principal
- The user, group or service principal object affected by Maintenance Mode
- mode String | Mode
- Current mode of Maintenance Mode Configuration
- justification String | Justification
- Justification for entering or exiting Maintenance Mode
- principals List<Principal>
- The user, group or service principal object affected by Maintenance Mode
- mode string | Mode
- Current mode of Maintenance Mode Configuration
- justification string | Justification
- Justification for entering or exiting Maintenance Mode
- principals Principal[]
- The user, group or service principal object affected by Maintenance Mode
- mode str | Mode
- Current mode of Maintenance Mode Configuration
- justification str | Justification
- Justification for entering or exiting Maintenance Mode
- principals Sequence[Principal]
- The user, group or service principal object affected by Maintenance Mode
- mode
String | "On" | "Can
Not Delete" | "Off" | "General" | "Advanced" - Current mode of Maintenance Mode Configuration
- justification String | "Networking" | "Governance" | "Off"
- Justification for entering or exiting Maintenance Mode
- principals List<Property Map>
- The user, group or service principal object affected by Maintenance Mode
MaintenanceModeConfigurationModelResponse, MaintenanceModeConfigurationModelResponseArgs
- Mode string
- Current mode of Maintenance Mode Configuration
- Justification string
- Justification for entering or exiting Maintenance Mode
- Principals
List<Pulumi.
Azure Native. Mission. Inputs. Principal Response> - The user, group or service principal object affected by Maintenance Mode
- Mode string
- Current mode of Maintenance Mode Configuration
- Justification string
- Justification for entering or exiting Maintenance Mode
- Principals
[]Principal
Response - The user, group or service principal object affected by Maintenance Mode
- mode String
- Current mode of Maintenance Mode Configuration
- justification String
- Justification for entering or exiting Maintenance Mode
- principals
List<Principal
Response> - The user, group or service principal object affected by Maintenance Mode
- mode string
- Current mode of Maintenance Mode Configuration
- justification string
- Justification for entering or exiting Maintenance Mode
- principals
Principal
Response[] - The user, group or service principal object affected by Maintenance Mode
- mode str
- Current mode of Maintenance Mode Configuration
- justification str
- Justification for entering or exiting Maintenance Mode
- principals
Sequence[Principal
Response] - The user, group or service principal object affected by Maintenance Mode
- mode String
- Current mode of Maintenance Mode Configuration
- justification String
- Justification for entering or exiting Maintenance Mode
- principals List<Property Map>
- The user, group or service principal object affected by Maintenance Mode
ManagedOnBehalfOfConfigurationResponse, ManagedOnBehalfOfConfigurationResponseArgs
- Mobo
Broker List<Pulumi.Resources Azure Native. Mission. Inputs. Mobo Broker Resource Response> - Managed-On-Behalf-Of broker resources
- Mobo
Broker []MoboResources Broker Resource Response - Managed-On-Behalf-Of broker resources
- mobo
Broker List<MoboResources Broker Resource Response> - Managed-On-Behalf-Of broker resources
- mobo
Broker MoboResources Broker Resource Response[] - Managed-On-Behalf-Of broker resources
- mobo_
broker_ Sequence[Moboresources Broker Resource Response] - Managed-On-Behalf-Of broker resources
- mobo
Broker List<Property Map>Resources - Managed-On-Behalf-Of broker resources
ManagedServiceIdentity, ManagedServiceIdentityArgs
- Type
string | Pulumi.
Azure Native. Mission. Managed Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- User
Assigned List<string>Identities - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- Type
string | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- User
Assigned []stringIdentities - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- type
String | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned List<String>Identities - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- type
string | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned string[]Identities - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- type
str | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user_
assigned_ Sequence[str]identities - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- type
String | "None" | "System
Assigned" | "User Assigned" | "System Assigned,User Assigned" - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned List<String>Identities - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
ManagedServiceIdentityResponse, ManagedServiceIdentityResponseArgs
- Principal
Id string - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Tenant
Id string - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Type string
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- User
Assigned Dictionary<string, Pulumi.Identities Azure Native. Mission. Inputs. User Assigned Identity Response> - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- Principal
Id string - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Tenant
Id string - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Type string
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- User
Assigned map[string]UserIdentities Assigned Identity Response - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- principal
Id String - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id String - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- type String
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned Map<String,UserIdentities Assigned Identity Response> - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- principal
Id string - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id string - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- type string
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned {[key: string]: UserIdentities Assigned Identity Response} - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- principal_
id str - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant_
id str - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- type str
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user_
assigned_ Mapping[str, Useridentities Assigned Identity Response] - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- principal
Id String - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id String - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- type String
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned Map<Property Map>Identities - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
ManagedServiceIdentityType, ManagedServiceIdentityTypeArgs
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- Managed
Service Identity Type None - None
- Managed
Service Identity Type System Assigned - SystemAssigned
- Managed
Service Identity Type User Assigned - UserAssigned
- Managed
Service Identity Type_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
- "System
Assigned" - SystemAssigned
- "User
Assigned" - UserAssigned
- "System
Assigned,User Assigned" - SystemAssigned,UserAssigned
MandatoryApprover, MandatoryApproverArgs
- Approver
Entra stringId - EntraId of the approver
- Approver
Entra stringId - EntraId of the approver
- approver
Entra StringId - EntraId of the approver
- approver
Entra stringId - EntraId of the approver
- approver_
entra_ strid - EntraId of the approver
- approver
Entra StringId - EntraId of the approver
MandatoryApproverResponse, MandatoryApproverResponseArgs
- Approver
Entra stringId - EntraId of the approver
- Approver
Entra stringId - EntraId of the approver
- approver
Entra StringId - EntraId of the approver
- approver
Entra stringId - EntraId of the approver
- approver_
entra_ strid - EntraId of the approver
- approver
Entra StringId - EntraId of the approver
MoboBrokerResourceResponse, MoboBrokerResourceResponseArgs
- Id string
- Resource identifier of a Managed-On-Behalf-Of broker resource
- Id string
- Resource identifier of a Managed-On-Behalf-Of broker resource
- id String
- Resource identifier of a Managed-On-Behalf-Of broker resource
- id string
- Resource identifier of a Managed-On-Behalf-Of broker resource
- id str
- Resource identifier of a Managed-On-Behalf-Of broker resource
- id String
- Resource identifier of a Managed-On-Behalf-Of broker resource
Mode, ModeArgs
- On
- On
- Can
Not Delete - CanNotDelete
- Off
- Off
- General
- General
- Advanced
- Advanced
- Mode
On - On
- Mode
Can Not Delete - CanNotDelete
- Mode
Off - Off
- Mode
General - General
- Mode
Advanced - Advanced
- On
- On
- Can
Not Delete - CanNotDelete
- Off
- Off
- General
- General
- Advanced
- Advanced
- On
- On
- Can
Not Delete - CanNotDelete
- Off
- Off
- General
- General
- Advanced
- Advanced
- ON
- On
- CAN_NOT_DELETE
- CanNotDelete
- OFF
- Off
- GENERAL
- General
- ADVANCED
- Advanced
- "On"
- On
- "Can
Not Delete" - CanNotDelete
- "Off"
- Off
- "General"
- General
- "Advanced"
- Advanced
Option, OptionArgs
- Allow
- Allow
- Deny
- Deny
- Exception
Only - ExceptionOnly
- Not
Applicable - NotApplicable
- Option
Allow - Allow
- Option
Deny - Deny
- Option
Exception Only - ExceptionOnly
- Option
Not Applicable - NotApplicable
- Allow
- Allow
- Deny
- Deny
- Exception
Only - ExceptionOnly
- Not
Applicable - NotApplicable
- Allow
- Allow
- Deny
- Deny
- Exception
Only - ExceptionOnly
- Not
Applicable - NotApplicable
- ALLOW
- Allow
- DENY
- Deny
- EXCEPTION_ONLY
- ExceptionOnly
- NOT_APPLICABLE
- NotApplicable
- "Allow"
- Allow
- "Deny"
- Deny
- "Exception
Only" - ExceptionOnly
- "Not
Applicable" - NotApplicable
PolicyAction, PolicyActionArgs
- Audit
Only - AuditOnly
- Enforce
- Enforce
- None
- None
- Policy
Action Audit Only - AuditOnly
- Policy
Action Enforce - Enforce
- Policy
Action None - None
- Audit
Only - AuditOnly
- Enforce
- Enforce
- None
- None
- Audit
Only - AuditOnly
- Enforce
- Enforce
- None
- None
- AUDIT_ONLY
- AuditOnly
- ENFORCE
- Enforce
- NONE
- None
- "Audit
Only" - AuditOnly
- "Enforce"
- Enforce
- "None"
- None
PolicyOverride, PolicyOverrideArgs
- Enclave
- Enclave
- None
- None
- Policy
Override Enclave - Enclave
- Policy
Override None - None
- Enclave
- Enclave
- None
- None
- Enclave
- Enclave
- None
- None
- ENCLAVE
- Enclave
- NONE
- None
- "Enclave"
- Enclave
- "None"
- None
Principal, PrincipalArgs
- Id string
- The object id associated with the principal
- Type
string | Pulumi.
Azure Native. Mission. Type - The type of the object id. We currently allow users, groups, and service principals
- id String
- The object id associated with the principal
- type
String | "User" | "Group" | "Service
Principal" - The type of the object id. We currently allow users, groups, and service principals
PrincipalResponse, PrincipalResponseArgs
RoleAssignmentItem, RoleAssignmentItemArgs
- Role
Definition stringId - Role definition identifier
- Principals
List<Pulumi.
Azure Native. Mission. Inputs. Principal> - List of principal IDs to which to assign this role definition
- Role
Definition stringId - Role definition identifier
- Principals []Principal
- List of principal IDs to which to assign this role definition
- role
Definition StringId - Role definition identifier
- principals List<Principal>
- List of principal IDs to which to assign this role definition
- role
Definition stringId - Role definition identifier
- principals Principal[]
- List of principal IDs to which to assign this role definition
- role_
definition_ strid - Role definition identifier
- principals Sequence[Principal]
- List of principal IDs to which to assign this role definition
- role
Definition StringId - Role definition identifier
- principals List<Property Map>
- List of principal IDs to which to assign this role definition
RoleAssignmentItemResponse, RoleAssignmentItemResponseArgs
- Role
Definition stringId - Role definition identifier
- Principals
List<Pulumi.
Azure Native. Mission. Inputs. Principal Response> - List of principal IDs to which to assign this role definition
- Role
Definition stringId - Role definition identifier
- Principals
[]Principal
Response - List of principal IDs to which to assign this role definition
- role
Definition StringId - Role definition identifier
- principals
List<Principal
Response> - List of principal IDs to which to assign this role definition
- role
Definition stringId - Role definition identifier
- principals
Principal
Response[] - List of principal IDs to which to assign this role definition
- role_
definition_ strid - Role definition identifier
- principals
Sequence[Principal
Response] - List of principal IDs to which to assign this role definition
- role
Definition StringId - Role definition identifier
- principals List<Property Map>
- List of principal IDs to which to assign this role definition
ServiceIdentifier, ServiceIdentifierArgs
- AKS
- AKSService identifier for AKS
- App
Service - AppServiceService identifier for App Service
- Azure
Firewalls - AzureFirewallsService identifier for Azure Firewalls
- Container
Registry - ContainerRegistryService identifier for Container Registry
- Cosmos
DB - CosmosDBService identifier for CosmosDB
- Data
Connectors - DataConnectorsService identifier for Data Connectors
- Insights
- InsightsService identifier for Insights
- Key
Vault - KeyVaultService identifier for Key Vault
- Logic
- LogicService identifier for Logic
- Microsoft
Sql - MicrosoftSQLService identifier for Microsoft SQL
- Monitoring
- MonitoringService identifier for Monitoring
- Postgre
Sql - PostgreSQLService identifier for PostgreSQL
- Private
DNSZones - PrivateDNSZonesService identifier for Private DNS Zones
- Service
Bus - ServiceBusService identifier for Service Bus
- Storage
- StorageService identifier for Storage
- Service
Identifier AKS - AKSService identifier for AKS
- Service
Identifier App Service - AppServiceService identifier for App Service
- Service
Identifier Azure Firewalls - AzureFirewallsService identifier for Azure Firewalls
- Service
Identifier Container Registry - ContainerRegistryService identifier for Container Registry
- Service
Identifier Cosmos DB - CosmosDBService identifier for CosmosDB
- Service
Identifier Data Connectors - DataConnectorsService identifier for Data Connectors
- Service
Identifier Insights - InsightsService identifier for Insights
- Service
Identifier Key Vault - KeyVaultService identifier for Key Vault
- Service
Identifier Logic - LogicService identifier for Logic
- Service
Identifier Microsoft Sql - MicrosoftSQLService identifier for Microsoft SQL
- Service
Identifier Monitoring - MonitoringService identifier for Monitoring
- Service
Identifier Postgre Sql - PostgreSQLService identifier for PostgreSQL
- Service
Identifier Private DNSZones - PrivateDNSZonesService identifier for Private DNS Zones
- Service
Identifier Service Bus - ServiceBusService identifier for Service Bus
- Service
Identifier Storage - StorageService identifier for Storage
- AKS
- AKSService identifier for AKS
- App
Service - AppServiceService identifier for App Service
- Azure
Firewalls - AzureFirewallsService identifier for Azure Firewalls
- Container
Registry - ContainerRegistryService identifier for Container Registry
- Cosmos
DB - CosmosDBService identifier for CosmosDB
- Data
Connectors - DataConnectorsService identifier for Data Connectors
- Insights
- InsightsService identifier for Insights
- Key
Vault - KeyVaultService identifier for Key Vault
- Logic
- LogicService identifier for Logic
- Microsoft
Sql - MicrosoftSQLService identifier for Microsoft SQL
- Monitoring
- MonitoringService identifier for Monitoring
- Postgre
Sql - PostgreSQLService identifier for PostgreSQL
- Private
DNSZones - PrivateDNSZonesService identifier for Private DNS Zones
- Service
Bus - ServiceBusService identifier for Service Bus
- Storage
- StorageService identifier for Storage
- AKS
- AKSService identifier for AKS
- App
Service - AppServiceService identifier for App Service
- Azure
Firewalls - AzureFirewallsService identifier for Azure Firewalls
- Container
Registry - ContainerRegistryService identifier for Container Registry
- Cosmos
DB - CosmosDBService identifier for CosmosDB
- Data
Connectors - DataConnectorsService identifier for Data Connectors
- Insights
- InsightsService identifier for Insights
- Key
Vault - KeyVaultService identifier for Key Vault
- Logic
- LogicService identifier for Logic
- Microsoft
Sql - MicrosoftSQLService identifier for Microsoft SQL
- Monitoring
- MonitoringService identifier for Monitoring
- Postgre
Sql - PostgreSQLService identifier for PostgreSQL
- Private
DNSZones - PrivateDNSZonesService identifier for Private DNS Zones
- Service
Bus - ServiceBusService identifier for Service Bus
- Storage
- StorageService identifier for Storage
- AKS
- AKSService identifier for AKS
- APP_SERVICE
- AppServiceService identifier for App Service
- AZURE_FIREWALLS
- AzureFirewallsService identifier for Azure Firewalls
- CONTAINER_REGISTRY
- ContainerRegistryService identifier for Container Registry
- COSMOS_DB
- CosmosDBService identifier for CosmosDB
- DATA_CONNECTORS
- DataConnectorsService identifier for Data Connectors
- INSIGHTS
- InsightsService identifier for Insights
- KEY_VAULT
- KeyVaultService identifier for Key Vault
- LOGIC
- LogicService identifier for Logic
- MICROSOFT_SQL
- MicrosoftSQLService identifier for Microsoft SQL
- MONITORING
- MonitoringService identifier for Monitoring
- POSTGRE_SQL
- PostgreSQLService identifier for PostgreSQL
- PRIVATE_DNS_ZONES
- PrivateDNSZonesService identifier for Private DNS Zones
- SERVICE_BUS
- ServiceBusService identifier for Service Bus
- STORAGE
- StorageService identifier for Storage
- "AKS"
- AKSService identifier for AKS
- "App
Service" - AppServiceService identifier for App Service
- "Azure
Firewalls" - AzureFirewallsService identifier for Azure Firewalls
- "Container
Registry" - ContainerRegistryService identifier for Container Registry
- "Cosmos
DB" - CosmosDBService identifier for CosmosDB
- "Data
Connectors" - DataConnectorsService identifier for Data Connectors
- "Insights"
- InsightsService identifier for Insights
- "Key
Vault" - KeyVaultService identifier for Key Vault
- "Logic"
- LogicService identifier for Logic
- "Microsoft
SQL" - MicrosoftSQLService identifier for Microsoft SQL
- "Monitoring"
- MonitoringService identifier for Monitoring
- "Postgre
SQL" - PostgreSQLService identifier for PostgreSQL
- "Private
DNSZones" - PrivateDNSZonesService identifier for Private DNS Zones
- "Service
Bus" - ServiceBusService identifier for Service Bus
- "Storage"
- StorageService identifier for Storage
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.
Type, TypeArgs
- User
- User
- Group
- Group
- Service
Principal - ServicePrincipal
- Type
User - User
- Type
Group - Group
- Type
Service Principal - ServicePrincipal
- User
- User
- Group
- Group
- Service
Principal - ServicePrincipal
- User
- User
- Group
- Group
- Service
Principal - ServicePrincipal
- USER
- User
- GROUP
- Group
- SERVICE_PRINCIPAL
- ServicePrincipal
- "User"
- User
- "Group"
- Group
- "Service
Principal" - ServicePrincipal
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