1. Packages
  2. Packages
  3. Azure Native
  4. API Docs
  5. azureresiliencemanagement
  6. GoalTemplate
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Viewing docs for Azure Native v3.23.0
published on Saturday, Jul 18, 2026 by Pulumi
azure-native logo
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Viewing docs for Azure Native v3.23.0
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:

    ServiceGroupName string
    The name of the service group.
    GoalTemplateName string
    The name of the goalTemplate
    Properties Pulumi.AzureNative.AzureResilienceManagement.Inputs.GoalTemplateProperties
    The resource-specific properties for this resource.
    ServiceGroupName string
    The name of the service group.
    GoalTemplateName string
    The name of the goalTemplate
    Properties GoalTemplatePropertiesArgs
    The resource-specific properties for this resource.
    service_group_name string
    The name of the service group.
    goal_template_name string
    The name of the goalTemplate
    properties object
    The resource-specific properties for this resource.
    serviceGroupName String
    The name of the service group.
    goalTemplateName String
    The name of the goalTemplate
    properties GoalTemplateProperties
    The resource-specific properties for this resource.
    serviceGroupName string
    The name of the service group.
    goalTemplateName string
    The name of the goalTemplate
    properties GoalTemplateProperties
    The resource-specific properties for this resource.
    service_group_name str
    The name of the service group.
    goal_template_name str
    The name of the goalTemplate
    properties GoalTemplatePropertiesArgs
    The resource-specific properties for this resource.
    serviceGroupName String
    The name of the service group.
    goalTemplateName String
    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:

    AzureApiVersion string
    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
    SystemData Pulumi.AzureNative.AzureResilienceManagement.Outputs.SystemDataResponse
    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"
    AzureApiVersion string
    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
    SystemData SystemDataResponse
    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_version string
    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"
    azureApiVersion String
    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
    systemData SystemDataResponse
    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"
    azureApiVersion string
    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
    systemData SystemDataResponse
    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_version str
    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 SystemDataResponse
    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"
    azureApiVersion String
    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
    systemData 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.
    Info object
    The additional info.
    Type string
    The additional info type.
    Info interface{}
    The additional info.
    Type string
    The additional info type.
    info any
    The additional info.
    type string
    The additional info type.
    info Object
    The additional info.
    type String
    The additional info type.
    info any
    The additional info.
    type string
    The additional info type.
    info Any
    The additional info.
    type str
    The additional info type.
    info Any
    The additional info.
    type String
    The additional info type.

    ErrorDetailResponse, ErrorDetailResponseArgs

    The error detail.
    AdditionalInfo []ErrorAdditionalInfoResponse
    The error additional info.
    Code string
    The error code.
    Details []ErrorDetailResponse
    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.
    additionalInfo List<ErrorAdditionalInfoResponse>
    The error additional info.
    code String
    The error code.
    details List<ErrorDetailResponse>
    The error details.
    message String
    The error message.
    target String
    The error target.
    additionalInfo ErrorAdditionalInfoResponse[]
    The error additional info.
    code string
    The error code.
    details ErrorDetailResponse[]
    The error details.
    message string
    The error message.
    target string
    The error target.
    additional_info Sequence[ErrorAdditionalInfoResponse]
    The error additional info.
    code str
    The error code.
    details Sequence[ErrorDetailResponse]
    The error details.
    message str
    The error message.
    target str
    The error target.
    additionalInfo 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.
    GoalType string | Pulumi.AzureNative.AzureResilienceManagement.GoalType
    Type of Goal Template created by customer
    RegionalRecoveryPointObjective string
    Regional recovery point objective specified by customer. eg, PT15M for 15 minutes
    RegionalRecoveryTimeObjective string
    Regional recovery time objective specified by customer. eg, PT15M for 15 minutes
    RequireDisasterRecovery string | Pulumi.AzureNative.AzureResilienceManagement.RequirementSelected
    Option specified by customer under disaster recovery section of goal template
    RequireHighAvailability string | Pulumi.AzureNative.AzureResilienceManagement.RequirementSelected
    Option specified by customer under high availability section of goal template
    GoalType string | GoalType
    Type of Goal Template created by customer
    RegionalRecoveryPointObjective string
    Regional recovery point objective specified by customer. eg, PT15M for 15 minutes
    RegionalRecoveryTimeObjective string
    Regional recovery time objective specified by customer. eg, PT15M for 15 minutes
    RequireDisasterRecovery string | RequirementSelected
    Option specified by customer under disaster recovery section of goal template
    RequireHighAvailability string | RequirementSelected
    Option specified by customer under high availability section of goal template
    goal_type string | "Resiliency"
    Type of Goal Template created by customer
    regional_recovery_point_objective string
    Regional recovery point objective specified by customer. eg, PT15M for 15 minutes
    regional_recovery_time_objective string
    Regional recovery time objective specified by customer. eg, PT15M for 15 minutes
    require_disaster_recovery string | "NotRequired" | "Required"
    Option specified by customer under disaster recovery section of goal template
    require_high_availability string | "NotRequired" | "Required"
    Option specified by customer under high availability section of goal template
    goalType String | GoalType
    Type of Goal Template created by customer
    regionalRecoveryPointObjective String
    Regional recovery point objective specified by customer. eg, PT15M for 15 minutes
    regionalRecoveryTimeObjective String
    Regional recovery time objective specified by customer. eg, PT15M for 15 minutes
    requireDisasterRecovery String | RequirementSelected
    Option specified by customer under disaster recovery section of goal template
    requireHighAvailability String | RequirementSelected
    Option specified by customer under high availability section of goal template
    goalType string | GoalType
    Type of Goal Template created by customer
    regionalRecoveryPointObjective string
    Regional recovery point objective specified by customer. eg, PT15M for 15 minutes
    regionalRecoveryTimeObjective string
    Regional recovery time objective specified by customer. eg, PT15M for 15 minutes
    requireDisasterRecovery string | RequirementSelected
    Option specified by customer under disaster recovery section of goal template
    requireHighAvailability string | RequirementSelected
    Option specified by customer under high availability section of goal template
    goal_type str | GoalType
    Type of Goal Template created by customer
    regional_recovery_point_objective str
    Regional recovery point objective specified by customer. eg, PT15M for 15 minutes
    regional_recovery_time_objective str
    Regional recovery time objective specified by customer. eg, PT15M for 15 minutes
    require_disaster_recovery str | RequirementSelected
    Option specified by customer under disaster recovery section of goal template
    require_high_availability str | RequirementSelected
    Option specified by customer under high availability section of goal template
    goalType String | "Resiliency"
    Type of Goal Template created by customer
    regionalRecoveryPointObjective String
    Regional recovery point objective specified by customer. eg, PT15M for 15 minutes
    regionalRecoveryTimeObjective String
    Regional recovery time objective specified by customer. eg, PT15M for 15 minutes
    requireDisasterRecovery String | "NotRequired" | "Required"
    Option specified by customer under disaster recovery section of goal template
    requireHighAvailability String | "NotRequired" | "Required"
    Option specified by customer under high availability section of goal template

    GoalTemplatePropertiesResponse, GoalTemplatePropertiesResponseArgs

    Definition of goal template property.
    ErrorDetails Pulumi.AzureNative.AzureResilienceManagement.Inputs.ErrorDetailResponse
    Details of any errors encountered during the operation.
    GoalType string
    Type of Goal Template created by customer
    ProvisioningState string
    Provisioning state
    RegionalRecoveryPointObjective string
    Regional recovery point objective specified by customer. eg, PT15M for 15 minutes
    RegionalRecoveryTimeObjective string
    Regional recovery time objective specified by customer. eg, PT15M for 15 minutes
    RequireDisasterRecovery string
    Option specified by customer under disaster recovery section of goal template
    RequireHighAvailability string
    Option specified by customer under high availability section of goal template
    ErrorDetails ErrorDetailResponse
    Details of any errors encountered during the operation.
    GoalType string
    Type of Goal Template created by customer
    ProvisioningState string
    Provisioning state
    RegionalRecoveryPointObjective string
    Regional recovery point objective specified by customer. eg, PT15M for 15 minutes
    RegionalRecoveryTimeObjective string
    Regional recovery time objective specified by customer. eg, PT15M for 15 minutes
    RequireDisasterRecovery string
    Option specified by customer under disaster recovery section of goal template
    RequireHighAvailability string
    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_point_objective string
    Regional recovery point objective specified by customer. eg, PT15M for 15 minutes
    regional_recovery_time_objective string
    Regional recovery time objective specified by customer. eg, PT15M for 15 minutes
    require_disaster_recovery string
    Option specified by customer under disaster recovery section of goal template
    require_high_availability string
    Option specified by customer under high availability section of goal template
    errorDetails ErrorDetailResponse
    Details of any errors encountered during the operation.
    goalType String
    Type of Goal Template created by customer
    provisioningState String
    Provisioning state
    regionalRecoveryPointObjective String
    Regional recovery point objective specified by customer. eg, PT15M for 15 minutes
    regionalRecoveryTimeObjective String
    Regional recovery time objective specified by customer. eg, PT15M for 15 minutes
    requireDisasterRecovery String
    Option specified by customer under disaster recovery section of goal template
    requireHighAvailability String
    Option specified by customer under high availability section of goal template
    errorDetails ErrorDetailResponse
    Details of any errors encountered during the operation.
    goalType string
    Type of Goal Template created by customer
    provisioningState string
    Provisioning state
    regionalRecoveryPointObjective string
    Regional recovery point objective specified by customer. eg, PT15M for 15 minutes
    regionalRecoveryTimeObjective string
    Regional recovery time objective specified by customer. eg, PT15M for 15 minutes
    requireDisasterRecovery string
    Option specified by customer under disaster recovery section of goal template
    requireHighAvailability string
    Option specified by customer under high availability section of goal template
    error_details ErrorDetailResponse
    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_point_objective str
    Regional recovery point objective specified by customer. eg, PT15M for 15 minutes
    regional_recovery_time_objective str
    Regional recovery time objective specified by customer. eg, PT15M for 15 minutes
    require_disaster_recovery str
    Option specified by customer under disaster recovery section of goal template
    require_high_availability str
    Option specified by customer under high availability section of goal template
    errorDetails Property Map
    Details of any errors encountered during the operation.
    goalType String
    Type of Goal Template created by customer
    provisioningState String
    Provisioning state
    regionalRecoveryPointObjective String
    Regional recovery point objective specified by customer. eg, PT15M for 15 minutes
    regionalRecoveryTimeObjective String
    Regional recovery time objective specified by customer. eg, PT15M for 15 minutes
    requireDisasterRecovery String
    Option specified by customer under disaster recovery section of goal template
    requireHighAvailability String
    Option specified by customer under high availability section of goal template

    GoalType, GoalTypeArgs

    Resiliency
    Resiliency Resiliency goal type.
    GoalTypeResiliency
    Resiliency Resiliency goal type.
    "Resiliency"
    Resiliency Resiliency goal type.
    Resiliency
    Resiliency Resiliency goal type.
    Resiliency
    Resiliency Resiliency goal type.
    RESILIENCY
    Resiliency Resiliency goal type.
    "Resiliency"
    Resiliency Resiliency goal type.

    RequirementSelected, RequirementSelectedArgs

    NotRequired
    NotRequired The resource is not required for the specified goal.
    Required
    Required The resource is required for the specified goal.
    RequirementSelectedNotRequired
    NotRequired The resource is not required for the specified goal.
    RequirementSelectedRequired
    Required The resource is required for the specified goal.
    "NotRequired"
    NotRequired The resource is not required for the specified goal.
    "Required"
    Required The resource is required for the specified goal.
    NotRequired
    NotRequired The resource is not required for the specified goal.
    Required
    Required The resource is required for the specified goal.
    NotRequired
    NotRequired The resource is not required for the specified goal.
    Required
    Required The resource is required for the specified goal.
    NOT_REQUIRED
    NotRequired The resource is not required for the specified goal.
    REQUIRED
    Required The resource is required for the specified goal.
    "NotRequired"
    NotRequired The resource is not required for the specified goal.
    "Required"
    Required The resource is required for the specified goal.

    SystemDataResponse, SystemDataResponseArgs

    Metadata pertaining to creation and last modification of the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    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_type string
    The type of identity that created the resource.
    last_modified_at string
    The timestamp of resource last modification (UTC)
    last_modified_by string
    The identity that last modified the resource.
    last_modified_by_type string
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    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_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    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
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
    Viewing docs for Azure Native v3.23.0
    published on Saturday, Jul 18, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial