published on Saturday, Jul 18, 2026 by Pulumi
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:
- Service
Group stringName - The name of the service group.
- Goal
Assignment stringName - The name of the GoalAssignment
- Properties
Pulumi.
Azure Native. Azure Resilience Management. Inputs. Goal Assignment Properties - The resource-specific properties for this resource.
- Service
Group stringName - The name of the service group.
- Goal
Assignment stringName - The name of the GoalAssignment
- Properties
Goal
Assignment Properties Args - The resource-specific properties for this resource.
- service_
group_ stringname - The name of the service group.
- goal_
assignment_ stringname - The name of the GoalAssignment
- properties object
- The resource-specific properties for this resource.
- service
Group StringName - The name of the service group.
- goal
Assignment StringName - The name of the GoalAssignment
- properties
Goal
Assignment Properties - The resource-specific properties for this resource.
- service
Group stringName - The name of the service group.
- goal
Assignment stringName - The name of the GoalAssignment
- properties
Goal
Assignment Properties - The resource-specific properties for this resource.
- service_
group_ strname - The name of the service group.
- goal_
assignment_ strname - The name of the GoalAssignment
- properties
Goal
Assignment Properties Args - The resource-specific properties for this resource.
- service
Group StringName - The name of the service group.
- goal
Assignment StringName - 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:
- 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.
GoalAssignmentProperties, GoalAssignmentPropertiesArgs
Definition of goal assignment property.- Goal
Assignment string | Pulumi.Type Azure Native. Azure Resilience Management. Goal Assignment Type - The type of goal assignment.
- Goal
Template stringId - Arm id of the goal template.
- Service
Level List<Pulumi.Resources Azure Native. Azure Resilience Management. Inputs. Service Level Resource> - List of service level resources.
- Goal
Assignment string | GoalType Assignment Type - The type of goal assignment.
- Goal
Template stringId - Arm id of the goal template.
- Service
Level []ServiceResources Level Resource - List of service level resources.
- goal_
assignment_ string | "Resiliency"type - The type of goal assignment.
- goal_
template_ stringid - Arm id of the goal template.
- service_
level_ list(object)resources - List of service level resources.
- goal
Assignment String | GoalType Assignment Type - The type of goal assignment.
- goal
Template StringId - Arm id of the goal template.
- service
Level List<ServiceResources Level Resource> - List of service level resources.
- goal
Assignment string | GoalType Assignment Type - The type of goal assignment.
- goal
Template stringId - Arm id of the goal template.
- service
Level ServiceResources Level Resource[] - List of service level resources.
- goal_
assignment_ str | Goaltype Assignment Type - The type of goal assignment.
- goal_
template_ strid - Arm id of the goal template.
- service_
level_ Sequence[Serviceresources Level Resource] - List of service level resources.
- goal
Assignment String | "Resiliency"Type - The type of goal assignment.
- goal
Template StringId - Arm id of the goal template.
- service
Level List<Property Map>Resources - List of service level resources.
GoalAssignmentPropertiesResponse, GoalAssignmentPropertiesResponseArgs
Definition of goal assignment property.- Error
Details Pulumi.Azure Native. Azure Resilience Management. Inputs. Error Detail Response - Details of any errors encountered during the operation.
- Goal
Assignment stringType - The type of goal assignment.
- Goal
Template stringId - Arm id of the goal template.
- Provisioning
State string - Provisioning state
- Service
Level List<Pulumi.Resources Azure Native. Azure Resilience Management. Inputs. Service Level Resource Response> - List of service level resources.
- Error
Details ErrorDetail Response - Details of any errors encountered during the operation.
- Goal
Assignment stringType - The type of goal assignment.
- Goal
Template stringId - Arm id of the goal template.
- Provisioning
State string - Provisioning state
- Service
Level []ServiceResources Level Resource Response - List of service level resources.
- error_
details object - Details of any errors encountered during the operation.
- goal_
assignment_ stringtype - The type of goal assignment.
- goal_
template_ stringid - Arm id of the goal template.
- provisioning_
state string - Provisioning state
- service_
level_ list(object)resources - List of service level resources.
- error
Details ErrorDetail Response - Details of any errors encountered during the operation.
- goal
Assignment StringType - The type of goal assignment.
- goal
Template StringId - Arm id of the goal template.
- provisioning
State String - Provisioning state
- service
Level List<ServiceResources Level Resource Response> - List of service level resources.
- error
Details ErrorDetail Response - Details of any errors encountered during the operation.
- goal
Assignment stringType - The type of goal assignment.
- goal
Template stringId - Arm id of the goal template.
- provisioning
State string - Provisioning state
- service
Level ServiceResources Level Resource Response[] - List of service level resources.
- error_
details ErrorDetail Response - Details of any errors encountered during the operation.
- goal_
assignment_ strtype - The type of goal assignment.
- goal_
template_ strid - Arm id of the goal template.
- provisioning_
state str - Provisioning state
- service_
level_ Sequence[Serviceresources Level Resource Response] - List of service level resources.
- error
Details Property Map - Details of any errors encountered during the operation.
- goal
Assignment StringType - The type of goal assignment.
- goal
Template StringId - Arm id of the goal template.
- provisioning
State String - Provisioning state
- service
Level List<Property Map>Resources - List of service level resources.
GoalAssignmentType, GoalAssignmentTypeArgs
- Resiliency
ResiliencyResiliency goal assignment type.
- Goal
Assignment Type Resiliency ResiliencyResiliency goal assignment type.
- "Resiliency"
ResiliencyResiliency goal assignment type.
- Resiliency
ResiliencyResiliency goal assignment type.
- Resiliency
ResiliencyResiliency goal assignment type.
- RESILIENCY
ResiliencyResiliency goal assignment type.
- "Resiliency"
ResiliencyResiliency goal assignment type.
ServiceLevelResource, ServiceLevelResourceArgs
The Service level resource model- Service
Level stringIndicator Resource Id - The arm id of the service level indicator resource
- Service
Level stringObjective Resource Id - The arm id of the service level object resource
- Service
Level stringIndicator Resource Id - The arm id of the service level indicator resource
- Service
Level stringObjective Resource Id - The arm id of the service level object resource
- service_
level_ stringindicator_ resource_ id - The arm id of the service level indicator resource
- service_
level_ stringobjective_ resource_ id - The arm id of the service level object resource
- service
Level StringIndicator Resource Id - The arm id of the service level indicator resource
- service
Level StringObjective Resource Id - The arm id of the service level object resource
- service
Level stringIndicator Resource Id - The arm id of the service level indicator resource
- service
Level stringObjective Resource Id - The arm id of the service level object resource
- service_
level_ strindicator_ resource_ id - The arm id of the service level indicator resource
- service_
level_ strobjective_ resource_ id - The arm id of the service level object resource
- service
Level StringIndicator Resource Id - The arm id of the service level indicator resource
- service
Level StringObjective Resource Id - The arm id of the service level object resource
ServiceLevelResourceResponse, ServiceLevelResourceResponseArgs
The Service level resource model- Service
Level stringIndicator Resource Id - The arm id of the service level indicator resource
- Service
Level stringObjective Resource Id - The arm id of the service level object resource
- Service
Level stringIndicator Resource Id - The arm id of the service level indicator resource
- Service
Level stringObjective Resource Id - The arm id of the service level object resource
- service_
level_ stringindicator_ resource_ id - The arm id of the service level indicator resource
- service_
level_ stringobjective_ resource_ id - The arm id of the service level object resource
- service
Level StringIndicator Resource Id - The arm id of the service level indicator resource
- service
Level StringObjective Resource Id - The arm id of the service level object resource
- service
Level stringIndicator Resource Id - The arm id of the service level indicator resource
- service
Level stringObjective Resource Id - The arm id of the service level object resource
- service_
level_ strindicator_ resource_ id - The arm id of the service level indicator resource
- service_
level_ strobjective_ resource_ id - The arm id of the service level object resource
- service
Level StringIndicator Resource Id - The arm id of the service level indicator resource
- service
Level StringObjective Resource Id - The arm id of the service level object resource
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: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
published on Saturday, Jul 18, 2026 by Pulumi