published on Saturday, Jul 18, 2026 by Pulumi
published on Saturday, Jul 18, 2026 by Pulumi
Goal template a AzureResilienceProviderHub resource
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.
Example Usage
GoalTemplates_CreateOrUpdate_MaximumSet
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var goalTemplate = new AzureNative.AzureResilienceManagement.GoalTemplate("goalTemplate", new()
{
GoalTemplateName = "gt1",
Properties = new AzureNative.AzureResilienceManagement.Inputs.GoalTemplatePropertiesArgs
{
GoalType = AzureNative.AzureResilienceManagement.GoalType.Resiliency,
RegionalRecoveryPointObjective = "PT15M",
RegionalRecoveryTimeObjective = "PT30M",
RequireDisasterRecovery = AzureNative.AzureResilienceManagement.RequirementSelected.NotRequired,
RequireHighAvailability = AzureNative.AzureResilienceManagement.RequirementSelected.Required,
},
ServiceGroupName = "zumt",
});
});
package main
import (
azureresiliencemanagement "github.com/pulumi/pulumi-azure-native-sdk/azureresiliencemanagement/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := azureresiliencemanagement.NewGoalTemplate(ctx, "goalTemplate", &azureresiliencemanagement.GoalTemplateArgs{
GoalTemplateName: pulumi.String("gt1"),
Properties: &azureresiliencemanagement.GoalTemplatePropertiesArgs{
GoalType: pulumi.String(azureresiliencemanagement.GoalTypeResiliency),
RegionalRecoveryPointObjective: pulumi.String("PT15M"),
RegionalRecoveryTimeObjective: pulumi.String("PT30M"),
RequireDisasterRecovery: pulumi.String(azureresiliencemanagement.RequirementSelectedNotRequired),
RequireHighAvailability: pulumi.String(azureresiliencemanagement.RequirementSelectedRequired),
},
ServiceGroupName: pulumi.String("zumt"),
})
if err != nil {
return err
}
return nil
})
}
pulumi {
required_providers {
azure-native = {
source = "pulumi/azure-native"
}
}
}
resource "azure-native_azureresiliencemanagement_goaltemplate" "goalTemplate" {
goal_template_name = "gt1"
properties = {
goal_type = "Resiliency"
regional_recovery_point_objective = "PT15M"
regional_recovery_time_objective = "PT30M"
require_disaster_recovery = "NotRequired"
require_high_availability = "Required"
}
service_group_name = "zumt"
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.azureresiliencemanagement.GoalTemplate;
import com.pulumi.azurenative.azureresiliencemanagement.GoalTemplateArgs;
import com.pulumi.azurenative.azureresiliencemanagement.inputs.GoalTemplatePropertiesArgs;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var goalTemplate = new GoalTemplate("goalTemplate", GoalTemplateArgs.builder()
.goalTemplateName("gt1")
.properties(GoalTemplatePropertiesArgs.builder()
.goalType("Resiliency")
.regionalRecoveryPointObjective("PT15M")
.regionalRecoveryTimeObjective("PT30M")
.requireDisasterRecovery("NotRequired")
.requireHighAvailability("Required")
.build())
.serviceGroupName("zumt")
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const goalTemplate = new azure_native.azureresiliencemanagement.GoalTemplate("goalTemplate", {
goalTemplateName: "gt1",
properties: {
goalType: azure_native.azureresiliencemanagement.GoalType.Resiliency,
regionalRecoveryPointObjective: "PT15M",
regionalRecoveryTimeObjective: "PT30M",
requireDisasterRecovery: azure_native.azureresiliencemanagement.RequirementSelected.NotRequired,
requireHighAvailability: azure_native.azureresiliencemanagement.RequirementSelected.Required,
},
serviceGroupName: "zumt",
});
import pulumi
import pulumi_azure_native as azure_native
goal_template = azure_native.azureresiliencemanagement.GoalTemplate("goalTemplate",
goal_template_name="gt1",
properties={
"goal_type": azure_native.azureresiliencemanagement.GoalType.RESILIENCY,
"regional_recovery_point_objective": "PT15M",
"regional_recovery_time_objective": "PT30M",
"require_disaster_recovery": azure_native.azureresiliencemanagement.RequirementSelected.NOT_REQUIRED,
"require_high_availability": azure_native.azureresiliencemanagement.RequirementSelected.REQUIRED,
},
service_group_name="zumt")
resources:
goalTemplate:
type: azure-native:azureresiliencemanagement:GoalTemplate
properties:
goalTemplateName: gt1
properties:
goalType: Resiliency
regionalRecoveryPointObjective: PT15M
regionalRecoveryTimeObjective: PT30M
requireDisasterRecovery: NotRequired
requireHighAvailability: Required
serviceGroupName: zumt
GoalTemplates_CreateOrUpdate_MinimumSet
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var goalTemplate = new AzureNative.AzureResilienceManagement.GoalTemplate("goalTemplate", new()
{
GoalTemplateName = "gt1",
Properties = new AzureNative.AzureResilienceManagement.Inputs.GoalTemplatePropertiesArgs
{
GoalType = AzureNative.AzureResilienceManagement.GoalType.Resiliency,
},
ServiceGroupName = "sg1",
});
});
package main
import (
azureresiliencemanagement "github.com/pulumi/pulumi-azure-native-sdk/azureresiliencemanagement/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := azureresiliencemanagement.NewGoalTemplate(ctx, "goalTemplate", &azureresiliencemanagement.GoalTemplateArgs{
GoalTemplateName: pulumi.String("gt1"),
Properties: &azureresiliencemanagement.GoalTemplatePropertiesArgs{
GoalType: pulumi.String(azureresiliencemanagement.GoalTypeResiliency),
},
ServiceGroupName: pulumi.String("sg1"),
})
if err != nil {
return err
}
return nil
})
}
pulumi {
required_providers {
azure-native = {
source = "pulumi/azure-native"
}
}
}
resource "azure-native_azureresiliencemanagement_goaltemplate" "goalTemplate" {
goal_template_name = "gt1"
properties = {
goal_type = "Resiliency"
}
service_group_name = "sg1"
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.azureresiliencemanagement.GoalTemplate;
import com.pulumi.azurenative.azureresiliencemanagement.GoalTemplateArgs;
import com.pulumi.azurenative.azureresiliencemanagement.inputs.GoalTemplatePropertiesArgs;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var goalTemplate = new GoalTemplate("goalTemplate", GoalTemplateArgs.builder()
.goalTemplateName("gt1")
.properties(GoalTemplatePropertiesArgs.builder()
.goalType("Resiliency")
.build())
.serviceGroupName("sg1")
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const goalTemplate = new azure_native.azureresiliencemanagement.GoalTemplate("goalTemplate", {
goalTemplateName: "gt1",
properties: {
goalType: azure_native.azureresiliencemanagement.GoalType.Resiliency,
},
serviceGroupName: "sg1",
});
import pulumi
import pulumi_azure_native as azure_native
goal_template = azure_native.azureresiliencemanagement.GoalTemplate("goalTemplate",
goal_template_name="gt1",
properties={
"goal_type": azure_native.azureresiliencemanagement.GoalType.RESILIENCY,
},
service_group_name="sg1")
resources:
goalTemplate:
type: azure-native:azureresiliencemanagement:GoalTemplate
properties:
goalTemplateName: gt1
properties:
goalType: Resiliency
serviceGroupName: sg1
Create GoalTemplate Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new GoalTemplate(name: string, args: GoalTemplateArgs, opts?: CustomResourceOptions);@overload
def GoalTemplate(resource_name: str,
args: GoalTemplateArgs,
opts: Optional[ResourceOptions] = None)
@overload
def GoalTemplate(resource_name: str,
opts: Optional[ResourceOptions] = None,
service_group_name: Optional[str] = None,
goal_template_name: Optional[str] = None,
properties: Optional[GoalTemplatePropertiesArgs] = None)func NewGoalTemplate(ctx *Context, name string, args GoalTemplateArgs, opts ...ResourceOption) (*GoalTemplate, error)public GoalTemplate(string name, GoalTemplateArgs args, CustomResourceOptions? opts = null)
public GoalTemplate(String name, GoalTemplateArgs args)
public GoalTemplate(String name, GoalTemplateArgs args, CustomResourceOptions options)
type: azure-native:azureresiliencemanagement:GoalTemplate
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "azure-native_azureresiliencemanagement_goal_template" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args GoalTemplateArgs
- 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 GoalTemplateArgs
- 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 GoalTemplateArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GoalTemplateArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GoalTemplateArgs
- 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 goalTemplateResource = new AzureNative.AzureResilienceManagement.GoalTemplate("goalTemplateResource", new()
{
ServiceGroupName = "string",
GoalTemplateName = "string",
Properties = new AzureNative.AzureResilienceManagement.Inputs.GoalTemplatePropertiesArgs
{
GoalType = "string",
RegionalRecoveryPointObjective = "string",
RegionalRecoveryTimeObjective = "string",
RequireDisasterRecovery = "string",
RequireHighAvailability = "string",
},
});
example, err := azureresiliencemanagement.NewGoalTemplate(ctx, "goalTemplateResource", &azureresiliencemanagement.GoalTemplateArgs{
ServiceGroupName: pulumi.String("string"),
GoalTemplateName: pulumi.String("string"),
Properties: &azureresiliencemanagement.GoalTemplatePropertiesArgs{
GoalType: pulumi.String("string"),
RegionalRecoveryPointObjective: pulumi.String("string"),
RegionalRecoveryTimeObjective: pulumi.String("string"),
RequireDisasterRecovery: pulumi.String("string"),
RequireHighAvailability: pulumi.String("string"),
},
})
resource "azure-native_azureresiliencemanagement_goal_template" "goalTemplateResource" {
lifecycle {
create_before_destroy = true
}
service_group_name = "string"
goal_template_name = "string"
properties = {
goal_type = "string"
regional_recovery_point_objective = "string"
regional_recovery_time_objective = "string"
require_disaster_recovery = "string"
require_high_availability = "string"
}
}
var goalTemplateResource = new GoalTemplate("goalTemplateResource", GoalTemplateArgs.builder()
.serviceGroupName("string")
.goalTemplateName("string")
.properties(GoalTemplatePropertiesArgs.builder()
.goalType("string")
.regionalRecoveryPointObjective("string")
.regionalRecoveryTimeObjective("string")
.requireDisasterRecovery("string")
.requireHighAvailability("string")
.build())
.build());
goal_template_resource = azure_native.azureresiliencemanagement.GoalTemplate("goalTemplateResource",
service_group_name="string",
goal_template_name="string",
properties={
"goal_type": "string",
"regional_recovery_point_objective": "string",
"regional_recovery_time_objective": "string",
"require_disaster_recovery": "string",
"require_high_availability": "string",
})
const goalTemplateResource = new azure_native.azureresiliencemanagement.GoalTemplate("goalTemplateResource", {
serviceGroupName: "string",
goalTemplateName: "string",
properties: {
goalType: "string",
regionalRecoveryPointObjective: "string",
regionalRecoveryTimeObjective: "string",
requireDisasterRecovery: "string",
requireHighAvailability: "string",
},
});
type: azure-native:azureresiliencemanagement:GoalTemplate
properties:
goalTemplateName: string
properties:
goalType: string
regionalRecoveryPointObjective: string
regionalRecoveryTimeObjective: string
requireDisasterRecovery: string
requireHighAvailability: string
serviceGroupName: string
GoalTemplate 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 GoalTemplate resource accepts the following input properties:
- Service
Group stringName - The name of the service group.
- Goal
Template stringName - The name of the goalTemplate
- Properties
Pulumi.
Azure Native. Azure Resilience Management. Inputs. Goal Template Properties - The resource-specific properties for this resource.
- Service
Group stringName - The name of the service group.
- Goal
Template stringName - The name of the goalTemplate
- Properties
Goal
Template Properties Args - The resource-specific properties for this resource.
- service_
group_ stringname - The name of the service group.
- goal_
template_ stringname - The name of the goalTemplate
- properties object
- The resource-specific properties for this resource.
- service
Group StringName - The name of the service group.
- goal
Template StringName - The name of the goalTemplate
- properties
Goal
Template Properties - The resource-specific properties for this resource.
- service
Group stringName - The name of the service group.
- goal
Template stringName - The name of the goalTemplate
- properties
Goal
Template Properties - The resource-specific properties for this resource.
- service_
group_ strname - The name of the service group.
- goal_
template_ strname - The name of the goalTemplate
- properties
Goal
Template Properties Args - The resource-specific properties for this resource.
- service
Group StringName - The name of the service group.
- goal
Template StringName - The name of the goalTemplate
- properties Property Map
- The resource-specific properties for this resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the GoalTemplate 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
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.
GoalTemplateProperties, GoalTemplatePropertiesArgs
Definition of goal template property.- Goal
Type string | Pulumi.Azure Native. Azure Resilience Management. Goal Type - Type of Goal Template created by customer
- Regional
Recovery stringPoint Objective - Regional recovery point objective specified by customer. eg, PT15M for 15 minutes
- Regional
Recovery stringTime Objective - Regional recovery time objective specified by customer. eg, PT15M for 15 minutes
- Require
Disaster string | Pulumi.Recovery Azure Native. Azure Resilience Management. Requirement Selected - Option specified by customer under disaster recovery section of goal template
- Require
High string | Pulumi.Availability Azure Native. Azure Resilience Management. Requirement Selected - Option specified by customer under high availability section of goal template
- Goal
Type string | GoalType - Type of Goal Template created by customer
- Regional
Recovery stringPoint Objective - Regional recovery point objective specified by customer. eg, PT15M for 15 minutes
- Regional
Recovery stringTime Objective - Regional recovery time objective specified by customer. eg, PT15M for 15 minutes
- Require
Disaster string | RequirementRecovery Selected - Option specified by customer under disaster recovery section of goal template
- Require
High string | RequirementAvailability Selected - Option specified by customer under high availability section of goal template
- goal_
type string | "Resiliency" - Type of Goal Template created by customer
- regional_
recovery_ stringpoint_ objective - Regional recovery point objective specified by customer. eg, PT15M for 15 minutes
- regional_
recovery_ stringtime_ objective - Regional recovery time objective specified by customer. eg, PT15M for 15 minutes
- require_
disaster_ string | "Notrecovery Required" | "Required" - Option specified by customer under disaster recovery section of goal template
- require_
high_ string | "Notavailability Required" | "Required" - Option specified by customer under high availability section of goal template
- goal
Type String | GoalType - Type of Goal Template created by customer
- regional
Recovery StringPoint Objective - Regional recovery point objective specified by customer. eg, PT15M for 15 minutes
- regional
Recovery StringTime Objective - Regional recovery time objective specified by customer. eg, PT15M for 15 minutes
- require
Disaster String | RequirementRecovery Selected - Option specified by customer under disaster recovery section of goal template
- require
High String | RequirementAvailability Selected - Option specified by customer under high availability section of goal template
- goal
Type string | GoalType - Type of Goal Template created by customer
- regional
Recovery stringPoint Objective - Regional recovery point objective specified by customer. eg, PT15M for 15 minutes
- regional
Recovery stringTime Objective - Regional recovery time objective specified by customer. eg, PT15M for 15 minutes
- require
Disaster string | RequirementRecovery Selected - Option specified by customer under disaster recovery section of goal template
- require
High string | RequirementAvailability Selected - Option specified by customer under high availability section of goal template
- goal_
type str | GoalType - Type of Goal Template created by customer
- regional_
recovery_ strpoint_ objective - Regional recovery point objective specified by customer. eg, PT15M for 15 minutes
- regional_
recovery_ strtime_ objective - Regional recovery time objective specified by customer. eg, PT15M for 15 minutes
- require_
disaster_ str | Requirementrecovery Selected - Option specified by customer under disaster recovery section of goal template
- require_
high_ str | Requirementavailability Selected - Option specified by customer under high availability section of goal template
- goal
Type String | "Resiliency" - Type of Goal Template created by customer
- regional
Recovery StringPoint Objective - Regional recovery point objective specified by customer. eg, PT15M for 15 minutes
- regional
Recovery StringTime Objective - Regional recovery time objective specified by customer. eg, PT15M for 15 minutes
- require
Disaster String | "NotRecovery Required" | "Required" - Option specified by customer under disaster recovery section of goal template
- require
High String | "NotAvailability Required" | "Required" - Option specified by customer under high availability section of goal template
GoalTemplatePropertiesResponse, GoalTemplatePropertiesResponseArgs
Definition of goal template property.- Error
Details Pulumi.Azure Native. Azure Resilience Management. Inputs. Error Detail Response - Details of any errors encountered during the operation.
- Goal
Type string - Type of Goal Template created by customer
- Provisioning
State string - Provisioning state
- Regional
Recovery stringPoint Objective - Regional recovery point objective specified by customer. eg, PT15M for 15 minutes
- Regional
Recovery stringTime Objective - Regional recovery time objective specified by customer. eg, PT15M for 15 minutes
- Require
Disaster stringRecovery - Option specified by customer under disaster recovery section of goal template
- Require
High stringAvailability - Option specified by customer under high availability section of goal template
- Error
Details ErrorDetail Response - Details of any errors encountered during the operation.
- Goal
Type string - Type of Goal Template created by customer
- Provisioning
State string - Provisioning state
- Regional
Recovery stringPoint Objective - Regional recovery point objective specified by customer. eg, PT15M for 15 minutes
- Regional
Recovery stringTime Objective - Regional recovery time objective specified by customer. eg, PT15M for 15 minutes
- Require
Disaster stringRecovery - Option specified by customer under disaster recovery section of goal template
- Require
High stringAvailability - Option specified by customer under high availability section of goal template
- error_
details object - Details of any errors encountered during the operation.
- goal_
type string - Type of Goal Template created by customer
- provisioning_
state string - Provisioning state
- regional_
recovery_ stringpoint_ objective - Regional recovery point objective specified by customer. eg, PT15M for 15 minutes
- regional_
recovery_ stringtime_ objective - Regional recovery time objective specified by customer. eg, PT15M for 15 minutes
- require_
disaster_ stringrecovery - Option specified by customer under disaster recovery section of goal template
- require_
high_ stringavailability - Option specified by customer under high availability section of goal template
- error
Details ErrorDetail Response - Details of any errors encountered during the operation.
- goal
Type String - Type of Goal Template created by customer
- provisioning
State String - Provisioning state
- regional
Recovery StringPoint Objective - Regional recovery point objective specified by customer. eg, PT15M for 15 minutes
- regional
Recovery StringTime Objective - Regional recovery time objective specified by customer. eg, PT15M for 15 minutes
- require
Disaster StringRecovery - Option specified by customer under disaster recovery section of goal template
- require
High StringAvailability - Option specified by customer under high availability section of goal template
- error
Details ErrorDetail Response - Details of any errors encountered during the operation.
- goal
Type string - Type of Goal Template created by customer
- provisioning
State string - Provisioning state
- regional
Recovery stringPoint Objective - Regional recovery point objective specified by customer. eg, PT15M for 15 minutes
- regional
Recovery stringTime Objective - Regional recovery time objective specified by customer. eg, PT15M for 15 minutes
- require
Disaster stringRecovery - Option specified by customer under disaster recovery section of goal template
- require
High stringAvailability - Option specified by customer under high availability section of goal template
- error_
details ErrorDetail Response - Details of any errors encountered during the operation.
- goal_
type str - Type of Goal Template created by customer
- provisioning_
state str - Provisioning state
- regional_
recovery_ strpoint_ objective - Regional recovery point objective specified by customer. eg, PT15M for 15 minutes
- regional_
recovery_ strtime_ objective - Regional recovery time objective specified by customer. eg, PT15M for 15 minutes
- require_
disaster_ strrecovery - Option specified by customer under disaster recovery section of goal template
- require_
high_ stravailability - Option specified by customer under high availability section of goal template
- error
Details Property Map - Details of any errors encountered during the operation.
- goal
Type String - Type of Goal Template created by customer
- provisioning
State String - Provisioning state
- regional
Recovery StringPoint Objective - Regional recovery point objective specified by customer. eg, PT15M for 15 minutes
- regional
Recovery StringTime Objective - Regional recovery time objective specified by customer. eg, PT15M for 15 minutes
- require
Disaster StringRecovery - Option specified by customer under disaster recovery section of goal template
- require
High StringAvailability - Option specified by customer under high availability section of goal template
GoalType, GoalTypeArgs
- Resiliency
ResiliencyResiliency goal type.
- Goal
Type Resiliency ResiliencyResiliency goal type.
- "Resiliency"
ResiliencyResiliency goal type.
- Resiliency
ResiliencyResiliency goal type.
- Resiliency
ResiliencyResiliency goal type.
- RESILIENCY
ResiliencyResiliency goal type.
- "Resiliency"
ResiliencyResiliency goal type.
RequirementSelected, RequirementSelectedArgs
- Not
Required NotRequiredThe resource is not required for the specified goal.- Required
RequiredThe resource is required for the specified goal.
- Requirement
Selected Not Required NotRequiredThe resource is not required for the specified goal.- Requirement
Selected Required RequiredThe resource is required for the specified goal.
- "Not
Required" NotRequiredThe resource is not required for the specified goal.- "Required"
RequiredThe resource is required for the specified goal.
- Not
Required NotRequiredThe resource is not required for the specified goal.- Required
RequiredThe resource is required for the specified goal.
- Not
Required NotRequiredThe resource is not required for the specified goal.- Required
RequiredThe resource is required for the specified goal.
- NOT_REQUIRED
NotRequiredThe resource is not required for the specified goal.- REQUIRED
RequiredThe resource is required for the specified goal.
- "Not
Required" NotRequiredThe resource is not required for the specified goal.- "Required"
RequiredThe resource is required for the specified goal.
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.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:azureresiliencemanagement:GoalTemplate gt1 /providers/Microsoft.Management/serviceGroups/{serviceGroupName}/providers/Microsoft.AzureResilienceManagement/goalTemplates/{goalTemplateName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0
published on Saturday, Jul 18, 2026 by Pulumi