published on Saturday, Jul 18, 2026 by Pulumi
published on Saturday, Jul 18, 2026 by Pulumi
Represents a recovery orchestration plan resource in the Azure Resilience Management provider namespace.
Uses Azure REST API version 2026-03-01-preview.
Other available API versions: 2025-02-01-preview, 2026-04-01-preview, 2026-06-01-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native azureresiliencemanagement [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:azureresiliencemanagement:RecoveryPlan samplePlanName /providers/Microsoft.Management/serviceGroups/{serviceGroupName}/providers/Microsoft.AzureResilienceManagement/recoveryPlans/{recoveryPlanName}
Create RecoveryPlan Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new RecoveryPlan(name: string, args: RecoveryPlanArgs, opts?: CustomResourceOptions);@overload
def RecoveryPlan(resource_name: str,
args: RecoveryPlanArgs,
opts: Optional[ResourceOptions] = None)
@overload
def RecoveryPlan(resource_name: str,
opts: Optional[ResourceOptions] = None,
service_group_name: Optional[str] = None,
identity: Optional[ManagedServiceIdentityArgs] = None,
properties: Optional[RecoveryPlanPropertiesArgs] = None,
recovery_plan_name: Optional[str] = None)func NewRecoveryPlan(ctx *Context, name string, args RecoveryPlanArgs, opts ...ResourceOption) (*RecoveryPlan, error)public RecoveryPlan(string name, RecoveryPlanArgs args, CustomResourceOptions? opts = null)
public RecoveryPlan(String name, RecoveryPlanArgs args)
public RecoveryPlan(String name, RecoveryPlanArgs args, CustomResourceOptions options)
type: azure-native:azureresiliencemanagement:RecoveryPlan
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "azure-native_azureresiliencemanagement_recovery_plan" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args RecoveryPlanArgs
- 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 RecoveryPlanArgs
- 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 RecoveryPlanArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args RecoveryPlanArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args RecoveryPlanArgs
- 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 recoveryPlanResource = new AzureNative.AzureResilienceManagement.RecoveryPlan("recoveryPlanResource", new()
{
ServiceGroupName = "string",
Identity = new AzureNative.AzureResilienceManagement.Inputs.ManagedServiceIdentityArgs
{
Type = "string",
UserAssignedIdentities = new[]
{
"string",
},
},
Properties = new AzureNative.AzureResilienceManagement.Inputs.RecoveryPlanPropertiesArgs
{
PlanDescription = "string",
PlanType = "string",
RecoveryGroupsSetting = new AzureNative.AzureResilienceManagement.Inputs.RecoveryGroupsSettingArgs
{
DefaultGroup = new AzureNative.AzureResilienceManagement.Inputs.RecoveryGroupArgs
{
Properties = new AzureNative.AzureResilienceManagement.Inputs.RecoveryGroupPropertiesArgs
{
Description = "string",
GroupUniqueId = "string",
OrderId = 0,
PostActions = new[]
{
new AzureNative.AzureResilienceManagement.Inputs.RecoveryGroupCustomRunbookActionArgs
{
Name = "string",
TimeoutInMinutes = 0,
Type = "CustomRunbook",
ActionResourceId = "string",
AssociatedIdentity = new AzureNative.AzureResilienceManagement.Inputs.AssociatedIdentityArgs
{
Type = "string",
UserAssignedIdentity = "string",
},
Description = "string",
Parameters =
{
{ "string", "string" },
},
},
},
PreActions = new[]
{
new AzureNative.AzureResilienceManagement.Inputs.RecoveryGroupCustomRunbookActionArgs
{
Name = "string",
TimeoutInMinutes = 0,
Type = "CustomRunbook",
ActionResourceId = "string",
AssociatedIdentity = new AzureNative.AzureResilienceManagement.Inputs.AssociatedIdentityArgs
{
Type = "string",
UserAssignedIdentity = "string",
},
Description = "string",
Parameters =
{
{ "string", "string" },
},
},
},
},
},
AdditionalGroups =
{
new AzureNative.AzureResilienceManagement.Inputs.RecoveryGroupArgs
{
Properties = new AzureNative.AzureResilienceManagement.Inputs.RecoveryGroupPropertiesArgs
{
Description = "string",
GroupUniqueId = "string",
OrderId = 0,
PostActions = new[]
{
new AzureNative.AzureResilienceManagement.Inputs.RecoveryGroupCustomRunbookActionArgs
{
Name = "string",
TimeoutInMinutes = 0,
Type = "CustomRunbook",
ActionResourceId = "string",
AssociatedIdentity = new AzureNative.AzureResilienceManagement.Inputs.AssociatedIdentityArgs
{
Type = "string",
UserAssignedIdentity = "string",
},
Description = "string",
Parameters =
{
{ "string", "string" },
},
},
},
PreActions = new[]
{
new AzureNative.AzureResilienceManagement.Inputs.RecoveryGroupCustomRunbookActionArgs
{
Name = "string",
TimeoutInMinutes = 0,
Type = "CustomRunbook",
ActionResourceId = "string",
AssociatedIdentity = new AzureNative.AzureResilienceManagement.Inputs.AssociatedIdentityArgs
{
Type = "string",
UserAssignedIdentity = "string",
},
Description = "string",
Parameters =
{
{ "string", "string" },
},
},
},
},
},
},
},
},
RecoveryPlanName = "string",
});
example, err := azureresiliencemanagement.NewRecoveryPlan(ctx, "recoveryPlanResource", &azureresiliencemanagement.RecoveryPlanArgs{
ServiceGroupName: pulumi.String("string"),
Identity: &azureresiliencemanagement.ManagedServiceIdentityArgs{
Type: pulumi.String("string"),
UserAssignedIdentities: pulumi.StringArray{
pulumi.String("string"),
},
},
Properties: &azureresiliencemanagement.RecoveryPlanPropertiesArgs{
PlanDescription: pulumi.String("string"),
PlanType: pulumi.String("string"),
RecoveryGroupsSetting: &azureresiliencemanagement.RecoveryGroupsSettingArgs{
DefaultGroup: &azureresiliencemanagement.RecoveryGroupArgs{
Properties: &azureresiliencemanagement.RecoveryGroupPropertiesArgs{
Description: pulumi.String("string"),
GroupUniqueId: pulumi.String("string"),
OrderId: pulumi.Int(0),
PostActions: pulumi.Array{
&azureresiliencemanagement.RecoveryGroupCustomRunbookActionArgs{
Name: pulumi.String("string"),
TimeoutInMinutes: pulumi.Int(0),
Type: pulumi.String("CustomRunbook"),
ActionResourceId: pulumi.String("string"),
AssociatedIdentity: &azureresiliencemanagement.AssociatedIdentityArgs{
Type: pulumi.String("string"),
UserAssignedIdentity: pulumi.String("string"),
},
Description: pulumi.String("string"),
Parameters: pulumi.StringMap{
"string": pulumi.String("string"),
},
},
},
PreActions: pulumi.Array{
&azureresiliencemanagement.RecoveryGroupCustomRunbookActionArgs{
Name: pulumi.String("string"),
TimeoutInMinutes: pulumi.Int(0),
Type: pulumi.String("CustomRunbook"),
ActionResourceId: pulumi.String("string"),
AssociatedIdentity: &azureresiliencemanagement.AssociatedIdentityArgs{
Type: pulumi.String("string"),
UserAssignedIdentity: pulumi.String("string"),
},
Description: pulumi.String("string"),
Parameters: pulumi.StringMap{
"string": pulumi.String("string"),
},
},
},
},
},
AdditionalGroups: azureresiliencemanagement.RecoveryGroupArray{
&azureresiliencemanagement.RecoveryGroupArgs{
Properties: &azureresiliencemanagement.RecoveryGroupPropertiesArgs{
Description: pulumi.String("string"),
GroupUniqueId: pulumi.String("string"),
OrderId: pulumi.Int(0),
PostActions: pulumi.Array{
&azureresiliencemanagement.RecoveryGroupCustomRunbookActionArgs{
Name: pulumi.String("string"),
TimeoutInMinutes: pulumi.Int(0),
Type: pulumi.String("CustomRunbook"),
ActionResourceId: pulumi.String("string"),
AssociatedIdentity: &azureresiliencemanagement.AssociatedIdentityArgs{
Type: pulumi.String("string"),
UserAssignedIdentity: pulumi.String("string"),
},
Description: pulumi.String("string"),
Parameters: pulumi.StringMap{
"string": pulumi.String("string"),
},
},
},
PreActions: pulumi.Array{
&azureresiliencemanagement.RecoveryGroupCustomRunbookActionArgs{
Name: pulumi.String("string"),
TimeoutInMinutes: pulumi.Int(0),
Type: pulumi.String("CustomRunbook"),
ActionResourceId: pulumi.String("string"),
AssociatedIdentity: &azureresiliencemanagement.AssociatedIdentityArgs{
Type: pulumi.String("string"),
UserAssignedIdentity: pulumi.String("string"),
},
Description: pulumi.String("string"),
Parameters: pulumi.StringMap{
"string": pulumi.String("string"),
},
},
},
},
},
},
},
},
RecoveryPlanName: pulumi.String("string"),
})
resource "azure-native_azureresiliencemanagement_recovery_plan" "recoveryPlanResource" {
lifecycle {
create_before_destroy = true
}
service_group_name = "string"
identity = {
type = "string"
user_assigned_identities = ["string"]
}
properties = {
plan_description = "string"
plan_type = "string"
recovery_groups_setting = {
default_group = {
properties = {
description = "string"
group_unique_id = "string"
order_id = 0
post_actions = [{
name = "string"
timeout_in_minutes = 0
type = "CustomRunbook"
action_resource_id = "string"
associated_identity = {
type = "string"
user_assigned_identity = "string"
}
description = "string"
parameters = {
"string" = "string"
}
}]
pre_actions = [{
name = "string"
timeout_in_minutes = 0
type = "CustomRunbook"
action_resource_id = "string"
associated_identity = {
type = "string"
user_assigned_identity = "string"
}
description = "string"
parameters = {
"string" = "string"
}
}]
}
}
additional_groups = [{
properties = {
description = "string"
group_unique_id = "string"
order_id = 0
post_actions = [{
name = "string"
timeout_in_minutes = 0
type = "CustomRunbook"
action_resource_id = "string"
associated_identity = {
type = "string"
user_assigned_identity = "string"
}
description = "string"
parameters = {
"string" = "string"
}
}]
pre_actions = [{
name = "string"
timeout_in_minutes = 0
type = "CustomRunbook"
action_resource_id = "string"
associated_identity = {
type = "string"
user_assigned_identity = "string"
}
description = "string"
parameters = {
"string" = "string"
}
}]
}
}]
}
}
recovery_plan_name = "string"
}
var recoveryPlanResource = new RecoveryPlan("recoveryPlanResource", RecoveryPlanArgs.builder()
.serviceGroupName("string")
.identity(com.pulumi.azurenative.azureresiliencemanagement.inputs.ManagedServiceIdentityArgs.builder()
.type("string")
.userAssignedIdentities("string")
.build())
.properties(RecoveryPlanPropertiesArgs.builder()
.planDescription("string")
.planType("string")
.recoveryGroupsSetting(RecoveryGroupsSettingArgs.builder()
.defaultGroup(RecoveryGroupArgs.builder()
.properties(RecoveryGroupPropertiesArgs.builder()
.description("string")
.groupUniqueId("string")
.orderId(0)
.postActions(RecoveryGroupCustomRunbookActionArgs.builder()
.name("string")
.timeoutInMinutes(0)
.type("CustomRunbook")
.actionResourceId("string")
.associatedIdentity(AssociatedIdentityArgs.builder()
.type("string")
.userAssignedIdentity("string")
.build())
.description("string")
.parameters(Map.of("string", "string"))
.build())
.preActions(RecoveryGroupCustomRunbookActionArgs.builder()
.name("string")
.timeoutInMinutes(0)
.type("CustomRunbook")
.actionResourceId("string")
.associatedIdentity(AssociatedIdentityArgs.builder()
.type("string")
.userAssignedIdentity("string")
.build())
.description("string")
.parameters(Map.of("string", "string"))
.build())
.build())
.build())
.additionalGroups(RecoveryGroupArgs.builder()
.properties(RecoveryGroupPropertiesArgs.builder()
.description("string")
.groupUniqueId("string")
.orderId(0)
.postActions(RecoveryGroupCustomRunbookActionArgs.builder()
.name("string")
.timeoutInMinutes(0)
.type("CustomRunbook")
.actionResourceId("string")
.associatedIdentity(AssociatedIdentityArgs.builder()
.type("string")
.userAssignedIdentity("string")
.build())
.description("string")
.parameters(Map.of("string", "string"))
.build())
.preActions(RecoveryGroupCustomRunbookActionArgs.builder()
.name("string")
.timeoutInMinutes(0)
.type("CustomRunbook")
.actionResourceId("string")
.associatedIdentity(AssociatedIdentityArgs.builder()
.type("string")
.userAssignedIdentity("string")
.build())
.description("string")
.parameters(Map.of("string", "string"))
.build())
.build())
.build())
.build())
.build())
.recoveryPlanName("string")
.build());
recovery_plan_resource = azure_native.azureresiliencemanagement.RecoveryPlan("recoveryPlanResource",
service_group_name="string",
identity={
"type": "string",
"user_assigned_identities": ["string"],
},
properties={
"plan_description": "string",
"plan_type": "string",
"recovery_groups_setting": {
"default_group": {
"properties": {
"description": "string",
"group_unique_id": "string",
"order_id": 0,
"post_actions": [{
"name": "string",
"timeout_in_minutes": 0,
"type": "CustomRunbook",
"action_resource_id": "string",
"associated_identity": {
"type": "string",
"user_assigned_identity": "string",
},
"description": "string",
"parameters": {
"string": "string",
},
}],
"pre_actions": [{
"name": "string",
"timeout_in_minutes": 0,
"type": "CustomRunbook",
"action_resource_id": "string",
"associated_identity": {
"type": "string",
"user_assigned_identity": "string",
},
"description": "string",
"parameters": {
"string": "string",
},
}],
},
},
"additional_groups": [{
"properties": {
"description": "string",
"group_unique_id": "string",
"order_id": 0,
"post_actions": [{
"name": "string",
"timeout_in_minutes": 0,
"type": "CustomRunbook",
"action_resource_id": "string",
"associated_identity": {
"type": "string",
"user_assigned_identity": "string",
},
"description": "string",
"parameters": {
"string": "string",
},
}],
"pre_actions": [{
"name": "string",
"timeout_in_minutes": 0,
"type": "CustomRunbook",
"action_resource_id": "string",
"associated_identity": {
"type": "string",
"user_assigned_identity": "string",
},
"description": "string",
"parameters": {
"string": "string",
},
}],
},
}],
},
},
recovery_plan_name="string")
const recoveryPlanResource = new azure_native.azureresiliencemanagement.RecoveryPlan("recoveryPlanResource", {
serviceGroupName: "string",
identity: {
type: "string",
userAssignedIdentities: ["string"],
},
properties: {
planDescription: "string",
planType: "string",
recoveryGroupsSetting: {
defaultGroup: {
properties: {
description: "string",
groupUniqueId: "string",
orderId: 0,
postActions: [{
name: "string",
timeoutInMinutes: 0,
type: "CustomRunbook",
actionResourceId: "string",
associatedIdentity: {
type: "string",
userAssignedIdentity: "string",
},
description: "string",
parameters: {
string: "string",
},
}],
preActions: [{
name: "string",
timeoutInMinutes: 0,
type: "CustomRunbook",
actionResourceId: "string",
associatedIdentity: {
type: "string",
userAssignedIdentity: "string",
},
description: "string",
parameters: {
string: "string",
},
}],
},
},
additionalGroups: [{
properties: {
description: "string",
groupUniqueId: "string",
orderId: 0,
postActions: [{
name: "string",
timeoutInMinutes: 0,
type: "CustomRunbook",
actionResourceId: "string",
associatedIdentity: {
type: "string",
userAssignedIdentity: "string",
},
description: "string",
parameters: {
string: "string",
},
}],
preActions: [{
name: "string",
timeoutInMinutes: 0,
type: "CustomRunbook",
actionResourceId: "string",
associatedIdentity: {
type: "string",
userAssignedIdentity: "string",
},
description: "string",
parameters: {
string: "string",
},
}],
},
}],
},
},
recoveryPlanName: "string",
});
type: azure-native:azureresiliencemanagement:RecoveryPlan
properties:
identity:
type: string
userAssignedIdentities:
- string
properties:
planDescription: string
planType: string
recoveryGroupsSetting:
additionalGroups:
- properties:
description: string
groupUniqueId: string
orderId: 0
postActions:
- actionResourceId: string
associatedIdentity:
type: string
userAssignedIdentity: string
description: string
name: string
parameters:
string: string
timeoutInMinutes: 0
type: CustomRunbook
preActions:
- actionResourceId: string
associatedIdentity:
type: string
userAssignedIdentity: string
description: string
name: string
parameters:
string: string
timeoutInMinutes: 0
type: CustomRunbook
defaultGroup:
properties:
description: string
groupUniqueId: string
orderId: 0
postActions:
- actionResourceId: string
associatedIdentity:
type: string
userAssignedIdentity: string
description: string
name: string
parameters:
string: string
timeoutInMinutes: 0
type: CustomRunbook
preActions:
- actionResourceId: string
associatedIdentity:
type: string
userAssignedIdentity: string
description: string
name: string
parameters:
string: string
timeoutInMinutes: 0
type: CustomRunbook
recoveryPlanName: string
serviceGroupName: string
RecoveryPlan 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 RecoveryPlan resource accepts the following input properties:
- Service
Group stringName - The name of the service group.
- Identity
Pulumi.
Azure Native. Azure Resilience Management. Inputs. Managed Service Identity - The managed service identities assigned to this resource.
- Properties
Pulumi.
Azure Native. Azure Resilience Management. Inputs. Recovery Plan Properties - The resource-specific properties for this resource.
- Recovery
Plan stringName - The name of the recovery orchestration plan.
- Service
Group stringName - The name of the service group.
- Identity
Managed
Service Identity Args - The managed service identities assigned to this resource.
- Properties
Recovery
Plan Properties Args - The resource-specific properties for this resource.
- Recovery
Plan stringName - The name of the recovery orchestration plan.
- service_
group_ stringname - The name of the service group.
- identity object
- The managed service identities assigned to this resource.
- properties object
- The resource-specific properties for this resource.
- recovery_
plan_ stringname - The name of the recovery orchestration plan.
- service
Group StringName - The name of the service group.
- identity
Managed
Service Identity - The managed service identities assigned to this resource.
- properties
Recovery
Plan Properties - The resource-specific properties for this resource.
- recovery
Plan StringName - The name of the recovery orchestration plan.
- service
Group stringName - The name of the service group.
- identity
Managed
Service Identity - The managed service identities assigned to this resource.
- properties
Recovery
Plan Properties - The resource-specific properties for this resource.
- recovery
Plan stringName - The name of the recovery orchestration plan.
- service_
group_ strname - The name of the service group.
- identity
Managed
Service Identity Args - The managed service identities assigned to this resource.
- properties
Recovery
Plan Properties Args - The resource-specific properties for this resource.
- recovery_
plan_ strname - The name of the recovery orchestration plan.
- service
Group StringName - The name of the service group.
- identity Property Map
- The managed service identities assigned to this resource.
- properties Property Map
- The resource-specific properties for this resource.
- recovery
Plan StringName - The name of the recovery orchestration plan.
Outputs
All input properties are implicitly available as output properties. Additionally, the RecoveryPlan 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.
- Name string
- The name of the resource
- System
Data Pulumi.Azure Native. Azure Resilience Management. 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.
- Name string
- The name of the resource
- 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.
- name string
- The name of the resource
- system_
data object - 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.
- name String
- The name of the resource
- 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.
- name string
- The name of the resource
- 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.
- name str
- The name of the resource
- 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.
- name String
- The name of the resource
- 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
AssociatedIdentity, AssociatedIdentityArgs
Definition of associated identity linked with the various resources.- Type
string | Pulumi.
Azure Native. Azure Resilience Management. Managed Service Identity Type - Identity type linked with the resource
- User
Assigned stringIdentity - User assigned identity id linked with the resource
- Type
string | Managed
Service Identity Type - Identity type linked with the resource
- User
Assigned stringIdentity - User assigned identity id linked with the resource
- type
string | "None" | "System
Assigned" | "User Assigned" | "System Assigned,User Assigned" - Identity type linked with the resource
- user_
assigned_ stringidentity - User assigned identity id linked with the resource
- type
String | Managed
Service Identity Type - Identity type linked with the resource
- user
Assigned StringIdentity - User assigned identity id linked with the resource
- type
string | Managed
Service Identity Type - Identity type linked with the resource
- user
Assigned stringIdentity - User assigned identity id linked with the resource
- type
str | Managed
Service Identity Type - Identity type linked with the resource
- user_
assigned_ stridentity - User assigned identity id linked with the resource
- type
String | "None" | "System
Assigned" | "User Assigned" | "System Assigned,User Assigned" - Identity type linked with the resource
- user
Assigned StringIdentity - User assigned identity id linked with the resource
AssociatedIdentityResponse, AssociatedIdentityResponseArgs
Definition of associated identity linked with the various resources.- Type string
- Identity type linked with the resource
- User
Assigned stringIdentity - User assigned identity id linked with the resource
- Type string
- Identity type linked with the resource
- User
Assigned stringIdentity - User assigned identity id linked with the resource
- type string
- Identity type linked with the resource
- user_
assigned_ stringidentity - User assigned identity id linked with the resource
- type String
- Identity type linked with the resource
- user
Assigned StringIdentity - User assigned identity id linked with the resource
- type string
- Identity type linked with the resource
- user
Assigned stringIdentity - User assigned identity id linked with the resource
- type str
- Identity type linked with the resource
- user_
assigned_ stridentity - User assigned identity id linked with the resource
- type String
- Identity type linked with the resource
- user
Assigned StringIdentity - User assigned identity id linked with the resource
ErrorAdditionalInfoResponse, ErrorAdditionalInfoResponseArgs
The resource management error additional info.ErrorDetailResponse, ErrorDetailResponseArgs
The error detail.- Additional
Info List<Pulumi.Azure Native. Azure Resilience Management. Inputs. Error Additional Info Response> - The error additional info.
- Code string
- The error code.
- Details
List<Pulumi.
Azure Native. Azure Resilience Management. Inputs. Error Detail Response> - The error details.
- Message string
- The error message.
- Target string
- The error target.
- Additional
Info []ErrorAdditional Info Response - The error additional info.
- Code string
- The error code.
- Details
[]Error
Detail Response - The error details.
- Message string
- The error message.
- Target string
- The error target.
- additional_
info list(object) - The error additional info.
- code string
- The error code.
- details list(object)
- The error details.
- message string
- The error message.
- target string
- The error target.
- additional
Info List<ErrorAdditional Info Response> - The error additional info.
- code String
- The error code.
- details
List<Error
Detail Response> - The error details.
- message String
- The error message.
- target String
- The error target.
- additional
Info ErrorAdditional Info Response[] - The error additional info.
- code string
- The error code.
- details
Error
Detail Response[] - The error details.
- message string
- The error message.
- target string
- The error target.
- additional_
info Sequence[ErrorAdditional Info Response] - The error additional info.
- code str
- The error code.
- details
Sequence[Error
Detail Response] - The error details.
- message str
- The error message.
- target str
- The error target.
- additional
Info List<Property Map> - The error additional info.
- code String
- The error code.
- details List<Property Map>
- The error details.
- message String
- The error message.
- target String
- The error target.
ManagedServiceIdentity, ManagedServiceIdentityArgs
Managed service identity (system assigned and/or user assigned identities)- Type
string | Pulumi.
Azure Native. Azure Resilience Management. 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 | "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.
- 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
Managed service identity (system assigned and/or user assigned identities)- 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. Azure Resilience Management. 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(object)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.
- 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
- "None"
None- "System
Assigned" SystemAssigned- "User
Assigned" UserAssigned- "System
Assigned,User Assigned" SystemAssigned,UserAssigned
RecoveryGroup, RecoveryGroupArgs
Represents a recovery orchestration group resource in the Azure Resilience Management provider namespace.- Properties
Pulumi.
Azure Native. Azure Resilience Management. Inputs. Recovery Group Properties - The resource-specific properties for this resource.
- Properties
Recovery
Group Properties - The resource-specific properties for this resource.
- properties object
- The resource-specific properties for this resource.
- properties
Recovery
Group Properties - The resource-specific properties for this resource.
- properties
Recovery
Group Properties - The resource-specific properties for this resource.
- properties
Recovery
Group Properties - The resource-specific properties for this resource.
- properties Property Map
- The resource-specific properties for this resource.
RecoveryGroupCustomRunbookAction, RecoveryGroupCustomRunbookActionArgs
Defines a custom runbook action for the recovery orchestration group.- Name string
- The name of the recovery orchestration group action.
- Timeout
In intMinutes - The maximum amount of time, in minutes, allowed for the action to complete before it times out.
- Action
Resource stringId - The ARM Resource ID of the resource that includes the actionable script, such as a Runbook in an Automation Account.
- Associated
Identity Pulumi.Azure Native. Azure Resilience Management. Inputs. Associated Identity - The identity associated with actionResourceId for RBAC.
- Description string
- A description of the recovery orchestration group action, containing the instructions to be performed during this action.
- Parameters Dictionary<string, string>
- Key-value parameters for the operation.
- Name string
- The name of the recovery orchestration group action.
- Timeout
In intMinutes - The maximum amount of time, in minutes, allowed for the action to complete before it times out.
- Action
Resource stringId - The ARM Resource ID of the resource that includes the actionable script, such as a Runbook in an Automation Account.
- Associated
Identity AssociatedIdentity - The identity associated with actionResourceId for RBAC.
- Description string
- A description of the recovery orchestration group action, containing the instructions to be performed during this action.
- Parameters map[string]string
- Key-value parameters for the operation.
- name string
- The name of the recovery orchestration group action.
- timeout_
in_ numberminutes - The maximum amount of time, in minutes, allowed for the action to complete before it times out.
- action_
resource_ stringid - The ARM Resource ID of the resource that includes the actionable script, such as a Runbook in an Automation Account.
- associated_
identity object - The identity associated with actionResourceId for RBAC.
- description string
- A description of the recovery orchestration group action, containing the instructions to be performed during this action.
- parameters map(string)
- Key-value parameters for the operation.
- name String
- The name of the recovery orchestration group action.
- timeout
In IntegerMinutes - The maximum amount of time, in minutes, allowed for the action to complete before it times out.
- action
Resource StringId - The ARM Resource ID of the resource that includes the actionable script, such as a Runbook in an Automation Account.
- associated
Identity AssociatedIdentity - The identity associated with actionResourceId for RBAC.
- description String
- A description of the recovery orchestration group action, containing the instructions to be performed during this action.
- parameters Map<String,String>
- Key-value parameters for the operation.
- name string
- The name of the recovery orchestration group action.
- timeout
In numberMinutes - The maximum amount of time, in minutes, allowed for the action to complete before it times out.
- action
Resource stringId - The ARM Resource ID of the resource that includes the actionable script, such as a Runbook in an Automation Account.
- associated
Identity AssociatedIdentity - The identity associated with actionResourceId for RBAC.
- description string
- A description of the recovery orchestration group action, containing the instructions to be performed during this action.
- parameters {[key: string]: string}
- Key-value parameters for the operation.
- name str
- The name of the recovery orchestration group action.
- timeout_
in_ intminutes - The maximum amount of time, in minutes, allowed for the action to complete before it times out.
- action_
resource_ strid - The ARM Resource ID of the resource that includes the actionable script, such as a Runbook in an Automation Account.
- associated_
identity AssociatedIdentity - The identity associated with actionResourceId for RBAC.
- description str
- A description of the recovery orchestration group action, containing the instructions to be performed during this action.
- parameters Mapping[str, str]
- Key-value parameters for the operation.
- name String
- The name of the recovery orchestration group action.
- timeout
In NumberMinutes - The maximum amount of time, in minutes, allowed for the action to complete before it times out.
- action
Resource StringId - The ARM Resource ID of the resource that includes the actionable script, such as a Runbook in an Automation Account.
- associated
Identity Property Map - The identity associated with actionResourceId for RBAC.
- description String
- A description of the recovery orchestration group action, containing the instructions to be performed during this action.
- parameters Map<String>
- Key-value parameters for the operation.
RecoveryGroupCustomRunbookActionResponse, RecoveryGroupCustomRunbookActionResponseArgs
Defines a custom runbook action for the recovery orchestration group.- Name string
- The name of the recovery orchestration group action.
- Timeout
In intMinutes - The maximum amount of time, in minutes, allowed for the action to complete before it times out.
- Action
Resource stringId - The ARM Resource ID of the resource that includes the actionable script, such as a Runbook in an Automation Account.
- Associated
Identity Pulumi.Azure Native. Azure Resilience Management. Inputs. Associated Identity Response - The identity associated with actionResourceId for RBAC.
- Description string
- A description of the recovery orchestration group action, containing the instructions to be performed during this action.
- Parameters Dictionary<string, string>
- Key-value parameters for the operation.
- Name string
- The name of the recovery orchestration group action.
- Timeout
In intMinutes - The maximum amount of time, in minutes, allowed for the action to complete before it times out.
- Action
Resource stringId - The ARM Resource ID of the resource that includes the actionable script, such as a Runbook in an Automation Account.
- Associated
Identity AssociatedIdentity Response - The identity associated with actionResourceId for RBAC.
- Description string
- A description of the recovery orchestration group action, containing the instructions to be performed during this action.
- Parameters map[string]string
- Key-value parameters for the operation.
- name string
- The name of the recovery orchestration group action.
- timeout_
in_ numberminutes - The maximum amount of time, in minutes, allowed for the action to complete before it times out.
- action_
resource_ stringid - The ARM Resource ID of the resource that includes the actionable script, such as a Runbook in an Automation Account.
- associated_
identity object - The identity associated with actionResourceId for RBAC.
- description string
- A description of the recovery orchestration group action, containing the instructions to be performed during this action.
- parameters map(string)
- Key-value parameters for the operation.
- name String
- The name of the recovery orchestration group action.
- timeout
In IntegerMinutes - The maximum amount of time, in minutes, allowed for the action to complete before it times out.
- action
Resource StringId - The ARM Resource ID of the resource that includes the actionable script, such as a Runbook in an Automation Account.
- associated
Identity AssociatedIdentity Response - The identity associated with actionResourceId for RBAC.
- description String
- A description of the recovery orchestration group action, containing the instructions to be performed during this action.
- parameters Map<String,String>
- Key-value parameters for the operation.
- name string
- The name of the recovery orchestration group action.
- timeout
In numberMinutes - The maximum amount of time, in minutes, allowed for the action to complete before it times out.
- action
Resource stringId - The ARM Resource ID of the resource that includes the actionable script, such as a Runbook in an Automation Account.
- associated
Identity AssociatedIdentity Response - The identity associated with actionResourceId for RBAC.
- description string
- A description of the recovery orchestration group action, containing the instructions to be performed during this action.
- parameters {[key: string]: string}
- Key-value parameters for the operation.
- name str
- The name of the recovery orchestration group action.
- timeout_
in_ intminutes - The maximum amount of time, in minutes, allowed for the action to complete before it times out.
- action_
resource_ strid - The ARM Resource ID of the resource that includes the actionable script, such as a Runbook in an Automation Account.
- associated_
identity AssociatedIdentity Response - The identity associated with actionResourceId for RBAC.
- description str
- A description of the recovery orchestration group action, containing the instructions to be performed during this action.
- parameters Mapping[str, str]
- Key-value parameters for the operation.
- name String
- The name of the recovery orchestration group action.
- timeout
In NumberMinutes - The maximum amount of time, in minutes, allowed for the action to complete before it times out.
- action
Resource StringId - The ARM Resource ID of the resource that includes the actionable script, such as a Runbook in an Automation Account.
- associated
Identity Property Map - The identity associated with actionResourceId for RBAC.
- description String
- A description of the recovery orchestration group action, containing the instructions to be performed during this action.
- parameters Map<String>
- Key-value parameters for the operation.
RecoveryGroupManualAction, RecoveryGroupManualActionArgs
Defines a manual action for the recovery orchestration group.- Name string
- The name of the recovery orchestration group action.
- Timeout
In intMinutes - The maximum amount of time, in minutes, allowed for the action to complete before it times out.
- Description string
- A description of the recovery orchestration group action, containing the instructions to be performed during this action.
- Name string
- The name of the recovery orchestration group action.
- Timeout
In intMinutes - The maximum amount of time, in minutes, allowed for the action to complete before it times out.
- Description string
- A description of the recovery orchestration group action, containing the instructions to be performed during this action.
- name string
- The name of the recovery orchestration group action.
- timeout_
in_ numberminutes - The maximum amount of time, in minutes, allowed for the action to complete before it times out.
- description string
- A description of the recovery orchestration group action, containing the instructions to be performed during this action.
- name String
- The name of the recovery orchestration group action.
- timeout
In IntegerMinutes - The maximum amount of time, in minutes, allowed for the action to complete before it times out.
- description String
- A description of the recovery orchestration group action, containing the instructions to be performed during this action.
- name string
- The name of the recovery orchestration group action.
- timeout
In numberMinutes - The maximum amount of time, in minutes, allowed for the action to complete before it times out.
- description string
- A description of the recovery orchestration group action, containing the instructions to be performed during this action.
- name str
- The name of the recovery orchestration group action.
- timeout_
in_ intminutes - The maximum amount of time, in minutes, allowed for the action to complete before it times out.
- description str
- A description of the recovery orchestration group action, containing the instructions to be performed during this action.
- name String
- The name of the recovery orchestration group action.
- timeout
In NumberMinutes - The maximum amount of time, in minutes, allowed for the action to complete before it times out.
- description String
- A description of the recovery orchestration group action, containing the instructions to be performed during this action.
RecoveryGroupManualActionResponse, RecoveryGroupManualActionResponseArgs
Defines a manual action for the recovery orchestration group.- Name string
- The name of the recovery orchestration group action.
- Timeout
In intMinutes - The maximum amount of time, in minutes, allowed for the action to complete before it times out.
- Description string
- A description of the recovery orchestration group action, containing the instructions to be performed during this action.
- Name string
- The name of the recovery orchestration group action.
- Timeout
In intMinutes - The maximum amount of time, in minutes, allowed for the action to complete before it times out.
- Description string
- A description of the recovery orchestration group action, containing the instructions to be performed during this action.
- name string
- The name of the recovery orchestration group action.
- timeout_
in_ numberminutes - The maximum amount of time, in minutes, allowed for the action to complete before it times out.
- description string
- A description of the recovery orchestration group action, containing the instructions to be performed during this action.
- name String
- The name of the recovery orchestration group action.
- timeout
In IntegerMinutes - The maximum amount of time, in minutes, allowed for the action to complete before it times out.
- description String
- A description of the recovery orchestration group action, containing the instructions to be performed during this action.
- name string
- The name of the recovery orchestration group action.
- timeout
In numberMinutes - The maximum amount of time, in minutes, allowed for the action to complete before it times out.
- description string
- A description of the recovery orchestration group action, containing the instructions to be performed during this action.
- name str
- The name of the recovery orchestration group action.
- timeout_
in_ intminutes - The maximum amount of time, in minutes, allowed for the action to complete before it times out.
- description str
- A description of the recovery orchestration group action, containing the instructions to be performed during this action.
- name String
- The name of the recovery orchestration group action.
- timeout
In NumberMinutes - The maximum amount of time, in minutes, allowed for the action to complete before it times out.
- description String
- A description of the recovery orchestration group action, containing the instructions to be performed during this action.
RecoveryGroupProperties, RecoveryGroupPropertiesArgs
Properties of the recovery orchestration group.- Description string
- A description of the recovery orchestration group.
- Group
Unique stringId - A unique id for the recovery orchestration group, which is a GUID.
- Order
Id int - The order ID of the recovery orchestration group.
- Post
Actions List<Union<Pulumi.Azure Native. Azure Resilience Management. Inputs. Recovery Group Custom Runbook Action, Pulumi. Azure Native. Azure Resilience Management. Inputs. Recovery Group Manual Action>> - Post-actions for the recovery orchestration group.
- Pre
Actions List<Union<Pulumi.Azure Native. Azure Resilience Management. Inputs. Recovery Group Custom Runbook Action, Pulumi. Azure Native. Azure Resilience Management. Inputs. Recovery Group Manual Action>> - Pre-actions for the recovery orchestration group.
- Description string
- A description of the recovery orchestration group.
- Group
Unique stringId - A unique id for the recovery orchestration group, which is a GUID.
- Order
Id int - The order ID of the recovery orchestration group.
- Post
Actions []interface{} - Post-actions for the recovery orchestration group.
- Pre
Actions []interface{} - Pre-actions for the recovery orchestration group.
- description string
- A description of the recovery orchestration group.
- group_
unique_ stringid - A unique id for the recovery orchestration group, which is a GUID.
- order_
id number - The order ID of the recovery orchestration group.
- post_
actions list(object | object) - Post-actions for the recovery orchestration group.
- pre_
actions list(object | object) - Pre-actions for the recovery orchestration group.
- description String
- A description of the recovery orchestration group.
- group
Unique StringId - A unique id for the recovery orchestration group, which is a GUID.
- order
Id Integer - The order ID of the recovery orchestration group.
- post
Actions List<Either<RecoveryGroup Custom Runbook Action,Recovery Group Manual Action>> - Post-actions for the recovery orchestration group.
- pre
Actions List<Either<RecoveryGroup Custom Runbook Action,Recovery Group Manual Action>> - Pre-actions for the recovery orchestration group.
- description string
- A description of the recovery orchestration group.
- group
Unique stringId - A unique id for the recovery orchestration group, which is a GUID.
- order
Id number - The order ID of the recovery orchestration group.
- post
Actions (RecoveryGroup Custom Runbook Action | Recovery Group Manual Action)[] - Post-actions for the recovery orchestration group.
- pre
Actions (RecoveryGroup Custom Runbook Action | Recovery Group Manual Action)[] - Pre-actions for the recovery orchestration group.
- description str
- A description of the recovery orchestration group.
- group_
unique_ strid - A unique id for the recovery orchestration group, which is a GUID.
- order_
id int - The order ID of the recovery orchestration group.
- post_
actions Sequence[Union[RecoveryGroup Custom Runbook Action, Recovery Group Manual Action]] - Post-actions for the recovery orchestration group.
- pre_
actions Sequence[Union[RecoveryGroup Custom Runbook Action, Recovery Group Manual Action]] - Pre-actions for the recovery orchestration group.
- description String
- A description of the recovery orchestration group.
- group
Unique StringId - A unique id for the recovery orchestration group, which is a GUID.
- order
Id Number - The order ID of the recovery orchestration group.
- post
Actions List<Property Map | Property Map> - Post-actions for the recovery orchestration group.
- pre
Actions List<Property Map | Property Map> - Pre-actions for the recovery orchestration group.
RecoveryGroupPropertiesResponse, RecoveryGroupPropertiesResponseArgs
Properties of the recovery orchestration group.- Description string
- A description of the recovery orchestration group.
- Group
Unique stringId - A unique id for the recovery orchestration group, which is a GUID.
- Order
Id int - The order ID of the recovery orchestration group.
- Post
Actions List<Union<Pulumi.Azure Native. Azure Resilience Management. Inputs. Recovery Group Custom Runbook Action Response, Pulumi. Azure Native. Azure Resilience Management. Inputs. Recovery Group Manual Action Response>> - Post-actions for the recovery orchestration group.
- Pre
Actions List<Union<Pulumi.Azure Native. Azure Resilience Management. Inputs. Recovery Group Custom Runbook Action Response, Pulumi. Azure Native. Azure Resilience Management. Inputs. Recovery Group Manual Action Response>> - Pre-actions for the recovery orchestration group.
- Description string
- A description of the recovery orchestration group.
- Group
Unique stringId - A unique id for the recovery orchestration group, which is a GUID.
- Order
Id int - The order ID of the recovery orchestration group.
- Post
Actions []interface{} - Post-actions for the recovery orchestration group.
- Pre
Actions []interface{} - Pre-actions for the recovery orchestration group.
- description string
- A description of the recovery orchestration group.
- group_
unique_ stringid - A unique id for the recovery orchestration group, which is a GUID.
- order_
id number - The order ID of the recovery orchestration group.
- post_
actions list(object | object) - Post-actions for the recovery orchestration group.
- pre_
actions list(object | object) - Pre-actions for the recovery orchestration group.
- description String
- A description of the recovery orchestration group.
- group
Unique StringId - A unique id for the recovery orchestration group, which is a GUID.
- order
Id Integer - The order ID of the recovery orchestration group.
- post
Actions List<Either<RecoveryGroup Custom Runbook Action Response,Recovery Group Manual Action Response>> - Post-actions for the recovery orchestration group.
- pre
Actions List<Either<RecoveryGroup Custom Runbook Action Response,Recovery Group Manual Action Response>> - Pre-actions for the recovery orchestration group.
- description string
- A description of the recovery orchestration group.
- group
Unique stringId - A unique id for the recovery orchestration group, which is a GUID.
- order
Id number - The order ID of the recovery orchestration group.
- post
Actions (RecoveryGroup Custom Runbook Action Response | Recovery Group Manual Action Response)[] - Post-actions for the recovery orchestration group.
- pre
Actions (RecoveryGroup Custom Runbook Action Response | Recovery Group Manual Action Response)[] - Pre-actions for the recovery orchestration group.
- description str
- A description of the recovery orchestration group.
- group_
unique_ strid - A unique id for the recovery orchestration group, which is a GUID.
- order_
id int - The order ID of the recovery orchestration group.
- post_
actions Sequence[Union[RecoveryGroup Custom Runbook Action Response, Recovery Group Manual Action Response]] - Post-actions for the recovery orchestration group.
- pre_
actions Sequence[Union[RecoveryGroup Custom Runbook Action Response, Recovery Group Manual Action Response]] - Pre-actions for the recovery orchestration group.
- description String
- A description of the recovery orchestration group.
- group
Unique StringId - A unique id for the recovery orchestration group, which is a GUID.
- order
Id Number - The order ID of the recovery orchestration group.
- post
Actions List<Property Map | Property Map> - Post-actions for the recovery orchestration group.
- pre
Actions List<Property Map | Property Map> - Pre-actions for the recovery orchestration group.
RecoveryGroupResponse, RecoveryGroupResponseArgs
Represents a recovery orchestration group resource in the Azure Resilience Management provider namespace.- Id string
- Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
- Name string
- The name of the resource
- System
Data Pulumi.Azure Native. Azure Resilience Management. Inputs. 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"
- Properties
Pulumi.
Azure Native. Azure Resilience Management. Inputs. Recovery Group Properties Response - The resource-specific properties for this resource.
- Id string
- Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
- Name string
- The name of the resource
- 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"
- Properties
Recovery
Group Properties Response - The resource-specific properties for this resource.
- id string
- Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
- name string
- The name of the resource
- system_
data object - 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"
- properties object
- The resource-specific properties for this resource.
- id String
- Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
- name String
- The name of the resource
- 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"
- properties
Recovery
Group Properties Response - The resource-specific properties for this resource.
- id string
- Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
- name string
- The name of the resource
- 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"
- properties
Recovery
Group Properties Response - The resource-specific properties for this resource.
- id str
- Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
- name str
- The name of the resource
- 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"
- properties
Recovery
Group Properties Response - The resource-specific properties for this resource.
- id String
- Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
- name String
- The name of the resource
- 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"
- properties Property Map
- The resource-specific properties for this resource.
RecoveryGroupsSetting, RecoveryGroupsSettingArgs
Settings for the recovery orchestration groups.- Default
Group Pulumi.Azure Native. Azure Resilience Management. Inputs. Recovery Group - The default recovery orchestration group setting. Every recovery orchestration plan has a default recovery orchestration group.
- Additional
Groups List<Pulumi.Azure Native. Azure Resilience Management. Inputs. Recovery Group> - Additional recovery orchestration group settings.
- Default
Group RecoveryGroup - The default recovery orchestration group setting. Every recovery orchestration plan has a default recovery orchestration group.
- Additional
Groups []RecoveryGroup - Additional recovery orchestration group settings.
- default_
group object - The default recovery orchestration group setting. Every recovery orchestration plan has a default recovery orchestration group.
- additional_
groups list(object) - Additional recovery orchestration group settings.
- default
Group RecoveryGroup - The default recovery orchestration group setting. Every recovery orchestration plan has a default recovery orchestration group.
- additional
Groups List<RecoveryGroup> - Additional recovery orchestration group settings.
- default
Group RecoveryGroup - The default recovery orchestration group setting. Every recovery orchestration plan has a default recovery orchestration group.
- additional
Groups RecoveryGroup[] - Additional recovery orchestration group settings.
- default_
group RecoveryGroup - The default recovery orchestration group setting. Every recovery orchestration plan has a default recovery orchestration group.
- additional_
groups Sequence[RecoveryGroup] - Additional recovery orchestration group settings.
- default
Group Property Map - The default recovery orchestration group setting. Every recovery orchestration plan has a default recovery orchestration group.
- additional
Groups List<Property Map> - Additional recovery orchestration group settings.
RecoveryGroupsSettingResponse, RecoveryGroupsSettingResponseArgs
Settings for the recovery orchestration groups.- Default
Group Pulumi.Azure Native. Azure Resilience Management. Inputs. Recovery Group Response - The default recovery orchestration group setting. Every recovery orchestration plan has a default recovery orchestration group.
- Additional
Groups List<Pulumi.Azure Native. Azure Resilience Management. Inputs. Recovery Group Response> - Additional recovery orchestration group settings.
- Default
Group RecoveryGroup Response - The default recovery orchestration group setting. Every recovery orchestration plan has a default recovery orchestration group.
- Additional
Groups []RecoveryGroup Response - Additional recovery orchestration group settings.
- default_
group object - The default recovery orchestration group setting. Every recovery orchestration plan has a default recovery orchestration group.
- additional_
groups list(object) - Additional recovery orchestration group settings.
- default
Group RecoveryGroup Response - The default recovery orchestration group setting. Every recovery orchestration plan has a default recovery orchestration group.
- additional
Groups List<RecoveryGroup Response> - Additional recovery orchestration group settings.
- default
Group RecoveryGroup Response - The default recovery orchestration group setting. Every recovery orchestration plan has a default recovery orchestration group.
- additional
Groups RecoveryGroup Response[] - Additional recovery orchestration group settings.
- default_
group RecoveryGroup Response - The default recovery orchestration group setting. Every recovery orchestration plan has a default recovery orchestration group.
- additional_
groups Sequence[RecoveryGroup Response] - Additional recovery orchestration group settings.
- default
Group Property Map - The default recovery orchestration group setting. Every recovery orchestration plan has a default recovery orchestration group.
- additional
Groups List<Property Map> - Additional recovery orchestration group settings.
RecoveryPlanFailoverOperationStatusResponse, RecoveryPlanFailoverOperationStatusResponseArgs
Details of the recovery orchestration plan failover operation execution.- Error
Details Pulumi.Azure Native. Azure Resilience Management. Inputs. Error Detail Response - Error details for the most recent execution of the recovery orchestration plan.
- Last
Executed stringAt - The most recent execution time of the recovery orchestration plan in UTC.
- Operation
Status string - The status of the most recent execution of the recovery orchestration plan.
- Recovery
Time stringActual - The actual recovery time of the most recent recovery orchestration plan.
- Error
Details ErrorDetail Response - Error details for the most recent execution of the recovery orchestration plan.
- Last
Executed stringAt - The most recent execution time of the recovery orchestration plan in UTC.
- Operation
Status string - The status of the most recent execution of the recovery orchestration plan.
- Recovery
Time stringActual - The actual recovery time of the most recent recovery orchestration plan.
- error_
details object - Error details for the most recent execution of the recovery orchestration plan.
- last_
executed_ stringat - The most recent execution time of the recovery orchestration plan in UTC.
- operation_
status string - The status of the most recent execution of the recovery orchestration plan.
- recovery_
time_ stringactual - The actual recovery time of the most recent recovery orchestration plan.
- error
Details ErrorDetail Response - Error details for the most recent execution of the recovery orchestration plan.
- last
Executed StringAt - The most recent execution time of the recovery orchestration plan in UTC.
- operation
Status String - The status of the most recent execution of the recovery orchestration plan.
- recovery
Time StringActual - The actual recovery time of the most recent recovery orchestration plan.
- error
Details ErrorDetail Response - Error details for the most recent execution of the recovery orchestration plan.
- last
Executed stringAt - The most recent execution time of the recovery orchestration plan in UTC.
- operation
Status string - The status of the most recent execution of the recovery orchestration plan.
- recovery
Time stringActual - The actual recovery time of the most recent recovery orchestration plan.
- error_
details ErrorDetail Response - Error details for the most recent execution of the recovery orchestration plan.
- last_
executed_ strat - The most recent execution time of the recovery orchestration plan in UTC.
- operation_
status str - The status of the most recent execution of the recovery orchestration plan.
- recovery_
time_ stractual - The actual recovery time of the most recent recovery orchestration plan.
- error
Details Property Map - Error details for the most recent execution of the recovery orchestration plan.
- last
Executed StringAt - The most recent execution time of the recovery orchestration plan in UTC.
- operation
Status String - The status of the most recent execution of the recovery orchestration plan.
- recovery
Time StringActual - The actual recovery time of the most recent recovery orchestration plan.
RecoveryPlanOperationStatusResponse, RecoveryPlanOperationStatusResponseArgs
Details of the recovery orchestration plan operation execution.- Error
Details Pulumi.Azure Native. Azure Resilience Management. Inputs. Error Detail Response - Error details for the most recent execution of the recovery orchestration plan.
- Last
Executed stringAt - The most recent execution time of the recovery orchestration plan in UTC.
- Operation
Status string - The status of the most recent execution of the recovery orchestration plan.
- Error
Details ErrorDetail Response - Error details for the most recent execution of the recovery orchestration plan.
- Last
Executed stringAt - The most recent execution time of the recovery orchestration plan in UTC.
- Operation
Status string - The status of the most recent execution of the recovery orchestration plan.
- error_
details object - Error details for the most recent execution of the recovery orchestration plan.
- last_
executed_ stringat - The most recent execution time of the recovery orchestration plan in UTC.
- operation_
status string - The status of the most recent execution of the recovery orchestration plan.
- error
Details ErrorDetail Response - Error details for the most recent execution of the recovery orchestration plan.
- last
Executed StringAt - The most recent execution time of the recovery orchestration plan in UTC.
- operation
Status String - The status of the most recent execution of the recovery orchestration plan.
- error
Details ErrorDetail Response - Error details for the most recent execution of the recovery orchestration plan.
- last
Executed stringAt - The most recent execution time of the recovery orchestration plan in UTC.
- operation
Status string - The status of the most recent execution of the recovery orchestration plan.
- error_
details ErrorDetail Response - Error details for the most recent execution of the recovery orchestration plan.
- last_
executed_ strat - The most recent execution time of the recovery orchestration plan in UTC.
- operation_
status str - The status of the most recent execution of the recovery orchestration plan.
- error
Details Property Map - Error details for the most recent execution of the recovery orchestration plan.
- last
Executed StringAt - The most recent execution time of the recovery orchestration plan in UTC.
- operation
Status String - The status of the most recent execution of the recovery orchestration plan.
RecoveryPlanProperties, RecoveryPlanPropertiesArgs
Properties of the recovery orchestration plan.- Plan
Description string - A description of the recovery orchestration plan.
- Plan
Type string | Pulumi.Azure Native. Azure Resilience Management. Recovery Plan Type - The type of the recovery orchestration plan, which can be set during creation but cannot be changed afterward.
- Recovery
Groups Pulumi.Setting Azure Native. Azure Resilience Management. Inputs. Recovery Groups Setting - Settings for the recovery orchestration groups associated with the recovery orchestration plan.
- Plan
Description string - A description of the recovery orchestration plan.
- Plan
Type string | RecoveryPlan Type - The type of the recovery orchestration plan, which can be set during creation but cannot be changed afterward.
- Recovery
Groups RecoverySetting Groups Setting - Settings for the recovery orchestration groups associated with the recovery orchestration plan.
- plan_
description string - A description of the recovery orchestration plan.
- plan_
type string | "Regional" | "Zonal" - The type of the recovery orchestration plan, which can be set during creation but cannot be changed afterward.
- recovery_
groups_ objectsetting - Settings for the recovery orchestration groups associated with the recovery orchestration plan.
- plan
Description String - A description of the recovery orchestration plan.
- plan
Type String | RecoveryPlan Type - The type of the recovery orchestration plan, which can be set during creation but cannot be changed afterward.
- recovery
Groups RecoverySetting Groups Setting - Settings for the recovery orchestration groups associated with the recovery orchestration plan.
- plan
Description string - A description of the recovery orchestration plan.
- plan
Type string | RecoveryPlan Type - The type of the recovery orchestration plan, which can be set during creation but cannot be changed afterward.
- recovery
Groups RecoverySetting Groups Setting - Settings for the recovery orchestration groups associated with the recovery orchestration plan.
- plan_
description str - A description of the recovery orchestration plan.
- plan_
type str | RecoveryPlan Type - The type of the recovery orchestration plan, which can be set during creation but cannot be changed afterward.
- recovery_
groups_ Recoverysetting Groups Setting - Settings for the recovery orchestration groups associated with the recovery orchestration plan.
- plan
Description String - A description of the recovery orchestration plan.
- plan
Type String | "Regional" | "Zonal" - The type of the recovery orchestration plan, which can be set during creation but cannot be changed afterward.
- recovery
Groups Property MapSetting - Settings for the recovery orchestration groups associated with the recovery orchestration plan.
RecoveryPlanPropertiesResponse, RecoveryPlanPropertiesResponseArgs
Properties of the recovery orchestration plan.- Error
Details Pulumi.Azure Native. Azure Resilience Management. Inputs. Error Detail Response - Error details associated with the resource.
- Latest
Failover Pulumi.Status Azure Native. Azure Resilience Management. Inputs. Recovery Plan Failover Operation Status Response - The status of the most recent failover operation executed.
- Latest
Validation Pulumi.Status Azure Native. Azure Resilience Management. Inputs. Recovery Plan Operation Status Response - The status of the most recent validation performed.
- Plan
Description string - A description of the recovery orchestration plan.
- Plan
State string - The current state of the recovery orchestration plan.
- Provisioning
State string - The provisioning state of the recovery orchestration plan.
- Recovery
Groups Pulumi.Setting Azure Native. Azure Resilience Management. Inputs. Recovery Groups Setting Response - Settings for the recovery orchestration groups associated with the recovery orchestration plan.
- Error
Details ErrorDetail Response - Error details associated with the resource.
- Latest
Failover RecoveryStatus Plan Failover Operation Status Response - The status of the most recent failover operation executed.
- Latest
Validation RecoveryStatus Plan Operation Status Response - The status of the most recent validation performed.
- Plan
Description string - A description of the recovery orchestration plan.
- Plan
State string - The current state of the recovery orchestration plan.
- Provisioning
State string - The provisioning state of the recovery orchestration plan.
- Recovery
Groups RecoverySetting Groups Setting Response - Settings for the recovery orchestration groups associated with the recovery orchestration plan.
- error_
details object - Error details associated with the resource.
- latest_
failover_ objectstatus - The status of the most recent failover operation executed.
- latest_
validation_ objectstatus - The status of the most recent validation performed.
- plan_
description string - A description of the recovery orchestration plan.
- plan_
state string - The current state of the recovery orchestration plan.
- provisioning_
state string - The provisioning state of the recovery orchestration plan.
- recovery_
groups_ objectsetting - Settings for the recovery orchestration groups associated with the recovery orchestration plan.
- error
Details ErrorDetail Response - Error details associated with the resource.
- latest
Failover RecoveryStatus Plan Failover Operation Status Response - The status of the most recent failover operation executed.
- latest
Validation RecoveryStatus Plan Operation Status Response - The status of the most recent validation performed.
- plan
Description String - A description of the recovery orchestration plan.
- plan
State String - The current state of the recovery orchestration plan.
- provisioning
State String - The provisioning state of the recovery orchestration plan.
- recovery
Groups RecoverySetting Groups Setting Response - Settings for the recovery orchestration groups associated with the recovery orchestration plan.
- error
Details ErrorDetail Response - Error details associated with the resource.
- latest
Failover RecoveryStatus Plan Failover Operation Status Response - The status of the most recent failover operation executed.
- latest
Validation RecoveryStatus Plan Operation Status Response - The status of the most recent validation performed.
- plan
Description string - A description of the recovery orchestration plan.
- plan
State string - The current state of the recovery orchestration plan.
- provisioning
State string - The provisioning state of the recovery orchestration plan.
- recovery
Groups RecoverySetting Groups Setting Response - Settings for the recovery orchestration groups associated with the recovery orchestration plan.
- error_
details ErrorDetail Response - Error details associated with the resource.
- latest_
failover_ Recoverystatus Plan Failover Operation Status Response - The status of the most recent failover operation executed.
- latest_
validation_ Recoverystatus Plan Operation Status Response - The status of the most recent validation performed.
- plan_
description str - A description of the recovery orchestration plan.
- plan_
state str - The current state of the recovery orchestration plan.
- provisioning_
state str - The provisioning state of the recovery orchestration plan.
- recovery_
groups_ Recoverysetting Groups Setting Response - Settings for the recovery orchestration groups associated with the recovery orchestration plan.
- error
Details Property Map - Error details associated with the resource.
- latest
Failover Property MapStatus - The status of the most recent failover operation executed.
- latest
Validation Property MapStatus - The status of the most recent validation performed.
- plan
Description String - A description of the recovery orchestration plan.
- plan
State String - The current state of the recovery orchestration plan.
- provisioning
State String - The provisioning state of the recovery orchestration plan.
- recovery
Groups Property MapSetting - Settings for the recovery orchestration groups associated with the recovery orchestration plan.
RecoveryPlanType, RecoveryPlanTypeArgs
- Regional
RegionalA recovery orchestration plan for regional resiliency.- Zonal
ZonalA recovery orchestration plan for zonal resiliency.
- Recovery
Plan Type Regional RegionalA recovery orchestration plan for regional resiliency.- Recovery
Plan Type Zonal ZonalA recovery orchestration plan for zonal resiliency.
- "Regional"
RegionalA recovery orchestration plan for regional resiliency.- "Zonal"
ZonalA recovery orchestration plan for zonal resiliency.
- Regional
RegionalA recovery orchestration plan for regional resiliency.- Zonal
ZonalA recovery orchestration plan for zonal resiliency.
- Regional
RegionalA recovery orchestration plan for regional resiliency.- Zonal
ZonalA recovery orchestration plan for zonal resiliency.
- REGIONAL
RegionalA recovery orchestration plan for regional resiliency.- ZONAL
ZonalA recovery orchestration plan for zonal resiliency.
- "Regional"
RegionalA recovery orchestration plan for regional resiliency.- "Zonal"
ZonalA recovery orchestration plan for zonal resiliency.
SystemDataResponse, SystemDataResponseArgs
Metadata pertaining to creation and last modification of 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 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
User assigned identity properties- 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 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
published on Saturday, Jul 18, 2026 by Pulumi