1. Packages
  2. Packages
  3. Azure Native
  4. API Docs
  5. azureresiliencemanagement
  6. GoalAssignment
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 assignment 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

    GoalAssignments_CreateOrUpdate_MaximumSet

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var goalAssignment = new AzureNative.AzureResilienceManagement.GoalAssignment("goalAssignment", new()
        {
            GoalAssignmentName = "ga1",
            Properties = new AzureNative.AzureResilienceManagement.Inputs.GoalAssignmentPropertiesArgs
            {
                GoalAssignmentType = AzureNative.AzureResilienceManagement.GoalAssignmentType.Resiliency,
                GoalTemplateId = "/providers/Microsoft.AzureResilienceManagement/goaltemplates/gt1",
                ServiceLevelResources = new[]
                {
                    new AzureNative.AzureResilienceManagement.Inputs.ServiceLevelResourceArgs
                    {
                        ServiceLevelIndicatorResourceId = "/subscriptions/12345678-1234-1234-1234-123456789012/resourceGroups/MyResourceGroup/providers/Microsoft.Compute/virtualMachines/MyVirtualMachine",
                        ServiceLevelObjectiveResourceId = "/subscriptions/12345678-1234-1234-1234-123456789012/resourceGroups/MyResourceGroup/providers/Microsoft.Compute/virtualMachines/MyVirtualMachine",
                    },
                },
            },
            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.NewGoalAssignment(ctx, "goalAssignment", &azureresiliencemanagement.GoalAssignmentArgs{
    			GoalAssignmentName: pulumi.String("ga1"),
    			Properties: &azureresiliencemanagement.GoalAssignmentPropertiesArgs{
    				GoalAssignmentType: pulumi.String(azureresiliencemanagement.GoalAssignmentTypeResiliency),
    				GoalTemplateId:     pulumi.String("/providers/Microsoft.AzureResilienceManagement/goaltemplates/gt1"),
    				ServiceLevelResources: azureresiliencemanagement.ServiceLevelResourceArray{
    					&azureresiliencemanagement.ServiceLevelResourceArgs{
    						ServiceLevelIndicatorResourceId: pulumi.String("/subscriptions/12345678-1234-1234-1234-123456789012/resourceGroups/MyResourceGroup/providers/Microsoft.Compute/virtualMachines/MyVirtualMachine"),
    						ServiceLevelObjectiveResourceId: pulumi.String("/subscriptions/12345678-1234-1234-1234-123456789012/resourceGroups/MyResourceGroup/providers/Microsoft.Compute/virtualMachines/MyVirtualMachine"),
    					},
    				},
    			},
    			ServiceGroupName: pulumi.String("sg1"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    pulumi {
      required_providers {
        azure-native = {
          source = "pulumi/azure-native"
        }
      }
    }
    
    resource "azure-native_azureresiliencemanagement_goalassignment" "goalAssignment" {
      goal_assignment_name = "ga1"
      properties = {
        goal_assignment_type = "Resiliency"
        goal_template_id     = "/providers/Microsoft.AzureResilienceManagement/goaltemplates/gt1"
        service_level_resources = [{
          "serviceLevelIndicatorResourceId" = "/subscriptions/12345678-1234-1234-1234-123456789012/resourceGroups/MyResourceGroup/providers/Microsoft.Compute/virtualMachines/MyVirtualMachine"
          "serviceLevelObjectiveResourceId" = "/subscriptions/12345678-1234-1234-1234-123456789012/resourceGroups/MyResourceGroup/providers/Microsoft.Compute/virtualMachines/MyVirtualMachine"
        }]
      }
      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.GoalAssignment;
    import com.pulumi.azurenative.azureresiliencemanagement.GoalAssignmentArgs;
    import com.pulumi.azurenative.azureresiliencemanagement.inputs.GoalAssignmentPropertiesArgs;
    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 goalAssignment = new GoalAssignment("goalAssignment", GoalAssignmentArgs.builder()
                .goalAssignmentName("ga1")
                .properties(GoalAssignmentPropertiesArgs.builder()
                    .goalAssignmentType("Resiliency")
                    .goalTemplateId("/providers/Microsoft.AzureResilienceManagement/goaltemplates/gt1")
                    .serviceLevelResources(ServiceLevelResourceArgs.builder()
                        .serviceLevelIndicatorResourceId("/subscriptions/12345678-1234-1234-1234-123456789012/resourceGroups/MyResourceGroup/providers/Microsoft.Compute/virtualMachines/MyVirtualMachine")
                        .serviceLevelObjectiveResourceId("/subscriptions/12345678-1234-1234-1234-123456789012/resourceGroups/MyResourceGroup/providers/Microsoft.Compute/virtualMachines/MyVirtualMachine")
                        .build())
                    .build())
                .serviceGroupName("sg1")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const goalAssignment = new azure_native.azureresiliencemanagement.GoalAssignment("goalAssignment", {
        goalAssignmentName: "ga1",
        properties: {
            goalAssignmentType: azure_native.azureresiliencemanagement.GoalAssignmentType.Resiliency,
            goalTemplateId: "/providers/Microsoft.AzureResilienceManagement/goaltemplates/gt1",
            serviceLevelResources: [{
                serviceLevelIndicatorResourceId: "/subscriptions/12345678-1234-1234-1234-123456789012/resourceGroups/MyResourceGroup/providers/Microsoft.Compute/virtualMachines/MyVirtualMachine",
                serviceLevelObjectiveResourceId: "/subscriptions/12345678-1234-1234-1234-123456789012/resourceGroups/MyResourceGroup/providers/Microsoft.Compute/virtualMachines/MyVirtualMachine",
            }],
        },
        serviceGroupName: "sg1",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    goal_assignment = azure_native.azureresiliencemanagement.GoalAssignment("goalAssignment",
        goal_assignment_name="ga1",
        properties={
            "goal_assignment_type": azure_native.azureresiliencemanagement.GoalAssignmentType.RESILIENCY,
            "goal_template_id": "/providers/Microsoft.AzureResilienceManagement/goaltemplates/gt1",
            "service_level_resources": [{
                "service_level_indicator_resource_id": "/subscriptions/12345678-1234-1234-1234-123456789012/resourceGroups/MyResourceGroup/providers/Microsoft.Compute/virtualMachines/MyVirtualMachine",
                "service_level_objective_resource_id": "/subscriptions/12345678-1234-1234-1234-123456789012/resourceGroups/MyResourceGroup/providers/Microsoft.Compute/virtualMachines/MyVirtualMachine",
            }],
        },
        service_group_name="sg1")
    
    resources:
      goalAssignment:
        type: azure-native:azureresiliencemanagement:GoalAssignment
        properties:
          goalAssignmentName: ga1
          properties:
            goalAssignmentType: Resiliency
            goalTemplateId: /providers/Microsoft.AzureResilienceManagement/goaltemplates/gt1
            serviceLevelResources:
              - serviceLevelIndicatorResourceId: /subscriptions/12345678-1234-1234-1234-123456789012/resourceGroups/MyResourceGroup/providers/Microsoft.Compute/virtualMachines/MyVirtualMachine
                serviceLevelObjectiveResourceId: /subscriptions/12345678-1234-1234-1234-123456789012/resourceGroups/MyResourceGroup/providers/Microsoft.Compute/virtualMachines/MyVirtualMachine
          serviceGroupName: sg1
    

    GoalAssignments_CreateOrUpdate_MinimumSet

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var goalAssignment = new AzureNative.AzureResilienceManagement.GoalAssignment("goalAssignment", new()
        {
            GoalAssignmentName = "ga1",
            Properties = new AzureNative.AzureResilienceManagement.Inputs.GoalAssignmentPropertiesArgs
            {
                GoalAssignmentType = AzureNative.AzureResilienceManagement.GoalAssignmentType.Resiliency,
                GoalTemplateId = "/providers/Microsoft.AzureResilienceManagement/goaltemplates/gt1",
            },
            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.NewGoalAssignment(ctx, "goalAssignment", &azureresiliencemanagement.GoalAssignmentArgs{
    			GoalAssignmentName: pulumi.String("ga1"),
    			Properties: &azureresiliencemanagement.GoalAssignmentPropertiesArgs{
    				GoalAssignmentType: pulumi.String(azureresiliencemanagement.GoalAssignmentTypeResiliency),
    				GoalTemplateId:     pulumi.String("/providers/Microsoft.AzureResilienceManagement/goaltemplates/gt1"),
    			},
    			ServiceGroupName: pulumi.String("sg1"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    pulumi {
      required_providers {
        azure-native = {
          source = "pulumi/azure-native"
        }
      }
    }
    
    resource "azure-native_azureresiliencemanagement_goalassignment" "goalAssignment" {
      goal_assignment_name = "ga1"
      properties = {
        goal_assignment_type = "Resiliency"
        goal_template_id     = "/providers/Microsoft.AzureResilienceManagement/goaltemplates/gt1"
      }
      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.GoalAssignment;
    import com.pulumi.azurenative.azureresiliencemanagement.GoalAssignmentArgs;
    import com.pulumi.azurenative.azureresiliencemanagement.inputs.GoalAssignmentPropertiesArgs;
    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 goalAssignment = new GoalAssignment("goalAssignment", GoalAssignmentArgs.builder()
                .goalAssignmentName("ga1")
                .properties(GoalAssignmentPropertiesArgs.builder()
                    .goalAssignmentType("Resiliency")
                    .goalTemplateId("/providers/Microsoft.AzureResilienceManagement/goaltemplates/gt1")
                    .build())
                .serviceGroupName("sg1")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const goalAssignment = new azure_native.azureresiliencemanagement.GoalAssignment("goalAssignment", {
        goalAssignmentName: "ga1",
        properties: {
            goalAssignmentType: azure_native.azureresiliencemanagement.GoalAssignmentType.Resiliency,
            goalTemplateId: "/providers/Microsoft.AzureResilienceManagement/goaltemplates/gt1",
        },
        serviceGroupName: "sg1",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    goal_assignment = azure_native.azureresiliencemanagement.GoalAssignment("goalAssignment",
        goal_assignment_name="ga1",
        properties={
            "goal_assignment_type": azure_native.azureresiliencemanagement.GoalAssignmentType.RESILIENCY,
            "goal_template_id": "/providers/Microsoft.AzureResilienceManagement/goaltemplates/gt1",
        },
        service_group_name="sg1")
    
    resources:
      goalAssignment:
        type: azure-native:azureresiliencemanagement:GoalAssignment
        properties:
          goalAssignmentName: ga1
          properties:
            goalAssignmentType: Resiliency
            goalTemplateId: /providers/Microsoft.AzureResilienceManagement/goaltemplates/gt1
          serviceGroupName: sg1
    

    Create GoalAssignment Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new GoalAssignment(name: string, args: GoalAssignmentArgs, opts?: CustomResourceOptions);
    @overload
    def GoalAssignment(resource_name: str,
                       args: GoalAssignmentArgs,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def GoalAssignment(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       service_group_name: Optional[str] = None,
                       goal_assignment_name: Optional[str] = None,
                       properties: Optional[GoalAssignmentPropertiesArgs] = None)
    func NewGoalAssignment(ctx *Context, name string, args GoalAssignmentArgs, opts ...ResourceOption) (*GoalAssignment, error)
    public GoalAssignment(string name, GoalAssignmentArgs args, CustomResourceOptions? opts = null)
    public GoalAssignment(String name, GoalAssignmentArgs args)
    public GoalAssignment(String name, GoalAssignmentArgs args, CustomResourceOptions options)
    
    type: azure-native:azureresiliencemanagement:GoalAssignment
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "azure-native_azureresiliencemanagement_goal_assignment" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args GoalAssignmentArgs
    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 GoalAssignmentArgs
    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 GoalAssignmentArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args GoalAssignmentArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args GoalAssignmentArgs
    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 goalAssignmentResource = new AzureNative.AzureResilienceManagement.GoalAssignment("goalAssignmentResource", new()
    {
        ServiceGroupName = "string",
        GoalAssignmentName = "string",
        Properties = new AzureNative.AzureResilienceManagement.Inputs.GoalAssignmentPropertiesArgs
        {
            GoalAssignmentType = "string",
            GoalTemplateId = "string",
            ServiceLevelResources = new[]
            {
                new AzureNative.AzureResilienceManagement.Inputs.ServiceLevelResourceArgs
                {
                    ServiceLevelIndicatorResourceId = "string",
                    ServiceLevelObjectiveResourceId = "string",
                },
            },
        },
    });
    
    example, err := azureresiliencemanagement.NewGoalAssignment(ctx, "goalAssignmentResource", &azureresiliencemanagement.GoalAssignmentArgs{
    	ServiceGroupName:   pulumi.String("string"),
    	GoalAssignmentName: pulumi.String("string"),
    	Properties: &azureresiliencemanagement.GoalAssignmentPropertiesArgs{
    		GoalAssignmentType: pulumi.String("string"),
    		GoalTemplateId:     pulumi.String("string"),
    		ServiceLevelResources: azureresiliencemanagement.ServiceLevelResourceArray{
    			&azureresiliencemanagement.ServiceLevelResourceArgs{
    				ServiceLevelIndicatorResourceId: pulumi.String("string"),
    				ServiceLevelObjectiveResourceId: pulumi.String("string"),
    			},
    		},
    	},
    })
    
    resource "azure-native_azureresiliencemanagement_goal_assignment" "goalAssignmentResource" {
      lifecycle {
        create_before_destroy = true
      }
      service_group_name   = "string"
      goal_assignment_name = "string"
      properties = {
        goal_assignment_type = "string"
        goal_template_id     = "string"
        service_level_resources = [{
          service_level_indicator_resource_id = "string"
          service_level_objective_resource_id = "string"
        }]
      }
    }
    
    var goalAssignmentResource = new GoalAssignment("goalAssignmentResource", GoalAssignmentArgs.builder()
        .serviceGroupName("string")
        .goalAssignmentName("string")
        .properties(GoalAssignmentPropertiesArgs.builder()
            .goalAssignmentType("string")
            .goalTemplateId("string")
            .serviceLevelResources(ServiceLevelResourceArgs.builder()
                .serviceLevelIndicatorResourceId("string")
                .serviceLevelObjectiveResourceId("string")
                .build())
            .build())
        .build());
    
    goal_assignment_resource = azure_native.azureresiliencemanagement.GoalAssignment("goalAssignmentResource",
        service_group_name="string",
        goal_assignment_name="string",
        properties={
            "goal_assignment_type": "string",
            "goal_template_id": "string",
            "service_level_resources": [{
                "service_level_indicator_resource_id": "string",
                "service_level_objective_resource_id": "string",
            }],
        })
    
    const goalAssignmentResource = new azure_native.azureresiliencemanagement.GoalAssignment("goalAssignmentResource", {
        serviceGroupName: "string",
        goalAssignmentName: "string",
        properties: {
            goalAssignmentType: "string",
            goalTemplateId: "string",
            serviceLevelResources: [{
                serviceLevelIndicatorResourceId: "string",
                serviceLevelObjectiveResourceId: "string",
            }],
        },
    });
    
    type: azure-native:azureresiliencemanagement:GoalAssignment
    properties:
        goalAssignmentName: string
        properties:
            goalAssignmentType: string
            goalTemplateId: string
            serviceLevelResources:
                - serviceLevelIndicatorResourceId: string
                  serviceLevelObjectiveResourceId: string
        serviceGroupName: string
    

    GoalAssignment 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 GoalAssignment resource accepts the following input properties:

    ServiceGroupName string
    The name of the service group.
    GoalAssignmentName string
    The name of the GoalAssignment
    Properties Pulumi.AzureNative.AzureResilienceManagement.Inputs.GoalAssignmentProperties
    The resource-specific properties for this resource.
    ServiceGroupName string
    The name of the service group.
    GoalAssignmentName string
    The name of the GoalAssignment
    Properties GoalAssignmentPropertiesArgs
    The resource-specific properties for this resource.
    service_group_name string
    The name of the service group.
    goal_assignment_name string
    The name of the GoalAssignment
    properties object
    The resource-specific properties for this resource.
    serviceGroupName String
    The name of the service group.
    goalAssignmentName String
    The name of the GoalAssignment
    properties GoalAssignmentProperties
    The resource-specific properties for this resource.
    serviceGroupName string
    The name of the service group.
    goalAssignmentName string
    The name of the GoalAssignment
    properties GoalAssignmentProperties
    The resource-specific properties for this resource.
    service_group_name str
    The name of the service group.
    goal_assignment_name str
    The name of the GoalAssignment
    properties GoalAssignmentPropertiesArgs
    The resource-specific properties for this resource.
    serviceGroupName String
    The name of the service group.
    goalAssignmentName String
    The name of the GoalAssignment
    properties Property Map
    The resource-specific properties for this resource.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the GoalAssignment 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.

    GoalAssignmentProperties, GoalAssignmentPropertiesArgs

    Definition of goal assignment property.
    GoalAssignmentType string | GoalAssignmentType
    The type of goal assignment.
    GoalTemplateId string
    Arm id of the goal template.
    ServiceLevelResources []ServiceLevelResource
    List of service level resources.
    goal_assignment_type string | "Resiliency"
    The type of goal assignment.
    goal_template_id string
    Arm id of the goal template.
    service_level_resources list(object)
    List of service level resources.
    goalAssignmentType String | GoalAssignmentType
    The type of goal assignment.
    goalTemplateId String
    Arm id of the goal template.
    serviceLevelResources List<ServiceLevelResource>
    List of service level resources.
    goalAssignmentType string | GoalAssignmentType
    The type of goal assignment.
    goalTemplateId string
    Arm id of the goal template.
    serviceLevelResources ServiceLevelResource[]
    List of service level resources.
    goal_assignment_type str | GoalAssignmentType
    The type of goal assignment.
    goal_template_id str
    Arm id of the goal template.
    service_level_resources Sequence[ServiceLevelResource]
    List of service level resources.
    goalAssignmentType String | "Resiliency"
    The type of goal assignment.
    goalTemplateId String
    Arm id of the goal template.
    serviceLevelResources List<Property Map>
    List of service level resources.

    GoalAssignmentPropertiesResponse, GoalAssignmentPropertiesResponseArgs

    Definition of goal assignment property.
    ErrorDetails Pulumi.AzureNative.AzureResilienceManagement.Inputs.ErrorDetailResponse
    Details of any errors encountered during the operation.
    GoalAssignmentType string
    The type of goal assignment.
    GoalTemplateId string
    Arm id of the goal template.
    ProvisioningState string
    Provisioning state
    ServiceLevelResources List<Pulumi.AzureNative.AzureResilienceManagement.Inputs.ServiceLevelResourceResponse>
    List of service level resources.
    ErrorDetails ErrorDetailResponse
    Details of any errors encountered during the operation.
    GoalAssignmentType string
    The type of goal assignment.
    GoalTemplateId string
    Arm id of the goal template.
    ProvisioningState string
    Provisioning state
    ServiceLevelResources []ServiceLevelResourceResponse
    List of service level resources.
    error_details object
    Details of any errors encountered during the operation.
    goal_assignment_type string
    The type of goal assignment.
    goal_template_id string
    Arm id of the goal template.
    provisioning_state string
    Provisioning state
    service_level_resources list(object)
    List of service level resources.
    errorDetails ErrorDetailResponse
    Details of any errors encountered during the operation.
    goalAssignmentType String
    The type of goal assignment.
    goalTemplateId String
    Arm id of the goal template.
    provisioningState String
    Provisioning state
    serviceLevelResources List<ServiceLevelResourceResponse>
    List of service level resources.
    errorDetails ErrorDetailResponse
    Details of any errors encountered during the operation.
    goalAssignmentType string
    The type of goal assignment.
    goalTemplateId string
    Arm id of the goal template.
    provisioningState string
    Provisioning state
    serviceLevelResources ServiceLevelResourceResponse[]
    List of service level resources.
    error_details ErrorDetailResponse
    Details of any errors encountered during the operation.
    goal_assignment_type str
    The type of goal assignment.
    goal_template_id str
    Arm id of the goal template.
    provisioning_state str
    Provisioning state
    service_level_resources Sequence[ServiceLevelResourceResponse]
    List of service level resources.
    errorDetails Property Map
    Details of any errors encountered during the operation.
    goalAssignmentType String
    The type of goal assignment.
    goalTemplateId String
    Arm id of the goal template.
    provisioningState String
    Provisioning state
    serviceLevelResources List<Property Map>
    List of service level resources.

    GoalAssignmentType, GoalAssignmentTypeArgs

    Resiliency
    Resiliency Resiliency goal assignment type.
    GoalAssignmentTypeResiliency
    Resiliency Resiliency goal assignment type.
    "Resiliency"
    Resiliency Resiliency goal assignment type.
    Resiliency
    Resiliency Resiliency goal assignment type.
    Resiliency
    Resiliency Resiliency goal assignment type.
    RESILIENCY
    Resiliency Resiliency goal assignment type.
    "Resiliency"
    Resiliency Resiliency goal assignment type.

    ServiceLevelResource, ServiceLevelResourceArgs

    The Service level resource model
    ServiceLevelIndicatorResourceId string
    The arm id of the service level indicator resource
    ServiceLevelObjectiveResourceId string
    The arm id of the service level object resource
    ServiceLevelIndicatorResourceId string
    The arm id of the service level indicator resource
    ServiceLevelObjectiveResourceId string
    The arm id of the service level object resource
    service_level_indicator_resource_id string
    The arm id of the service level indicator resource
    service_level_objective_resource_id string
    The arm id of the service level object resource
    serviceLevelIndicatorResourceId String
    The arm id of the service level indicator resource
    serviceLevelObjectiveResourceId String
    The arm id of the service level object resource
    serviceLevelIndicatorResourceId string
    The arm id of the service level indicator resource
    serviceLevelObjectiveResourceId string
    The arm id of the service level object resource
    service_level_indicator_resource_id str
    The arm id of the service level indicator resource
    service_level_objective_resource_id str
    The arm id of the service level object resource
    serviceLevelIndicatorResourceId String
    The arm id of the service level indicator resource
    serviceLevelObjectiveResourceId String
    The arm id of the service level object resource

    ServiceLevelResourceResponse, ServiceLevelResourceResponseArgs

    The Service level resource model
    ServiceLevelIndicatorResourceId string
    The arm id of the service level indicator resource
    ServiceLevelObjectiveResourceId string
    The arm id of the service level object resource
    ServiceLevelIndicatorResourceId string
    The arm id of the service level indicator resource
    ServiceLevelObjectiveResourceId string
    The arm id of the service level object resource
    service_level_indicator_resource_id string
    The arm id of the service level indicator resource
    service_level_objective_resource_id string
    The arm id of the service level object resource
    serviceLevelIndicatorResourceId String
    The arm id of the service level indicator resource
    serviceLevelObjectiveResourceId String
    The arm id of the service level object resource
    serviceLevelIndicatorResourceId string
    The arm id of the service level indicator resource
    serviceLevelObjectiveResourceId string
    The arm id of the service level object resource
    service_level_indicator_resource_id str
    The arm id of the service level indicator resource
    service_level_objective_resource_id str
    The arm id of the service level object resource
    serviceLevelIndicatorResourceId String
    The arm id of the service level indicator resource
    serviceLevelObjectiveResourceId String
    The arm id of the service level object resource

    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:GoalAssignment ga1 /providers/Microsoft.Management/serviceGroups/{serviceGroupName}/providers/Microsoft.AzureResilienceManagement/goalAssignments/{goalAssignmentName} 
    

    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