azure-native.chaos.Experiment
Explore with Pulumi AI
Model that represents a Experiment resource. Azure REST API version: 2023-04-15-preview. Prior API version in Azure Native 1.x: 2021-09-15-preview.
Other available API versions: 2023-09-01-preview, 2023-10-27-preview, 2023-11-01, 2024-01-01, 2024-03-22-preview, 2024-11-01-preview, 2025-01-01.
Create Experiment Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Experiment(name: string, args: ExperimentArgs, opts?: CustomResourceOptions);@overload
def Experiment(resource_name: str,
               args: ExperimentArgs,
               opts: Optional[ResourceOptions] = None)
@overload
def Experiment(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               properties: Optional[ExperimentPropertiesArgs] = None,
               resource_group_name: Optional[str] = None,
               experiment_name: Optional[str] = None,
               identity: Optional[ResourceIdentityArgs] = None,
               location: Optional[str] = None,
               tags: Optional[Mapping[str, str]] = None)func NewExperiment(ctx *Context, name string, args ExperimentArgs, opts ...ResourceOption) (*Experiment, error)public Experiment(string name, ExperimentArgs args, CustomResourceOptions? opts = null)
public Experiment(String name, ExperimentArgs args)
public Experiment(String name, ExperimentArgs args, CustomResourceOptions options)
type: azure-native:chaos:Experiment
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ExperimentArgs
- 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 ExperimentArgs
- 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 ExperimentArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ExperimentArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ExperimentArgs
- 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 experimentResource = new AzureNative.Chaos.Experiment("experimentResource", new()
{
    Properties = new AzureNative.Chaos.Inputs.ExperimentPropertiesArgs
    {
        Selectors = new[]
        {
            new AzureNative.Chaos.Inputs.ListSelectorArgs
            {
                Id = "string",
                Targets = new[]
                {
                    new AzureNative.Chaos.Inputs.TargetReferenceArgs
                    {
                        Id = "string",
                        Type = "string",
                    },
                },
                Type = "List",
                Filter = new AzureNative.Chaos.Inputs.SimpleFilterArgs
                {
                    Type = "Simple",
                    Parameters = new AzureNative.Chaos.Inputs.SimpleFilterParametersArgs
                    {
                        Zones = new[]
                        {
                            "string",
                        },
                    },
                },
            },
        },
        Steps = new[]
        {
            new AzureNative.Chaos.Inputs.StepArgs
            {
                Branches = new[]
                {
                    new AzureNative.Chaos.Inputs.BranchArgs
                    {
                        Actions = new[]
                        {
                            new AzureNative.Chaos.Inputs.ContinuousActionArgs
                            {
                                Duration = "string",
                                Name = "string",
                                Parameters = new[]
                                {
                                    new AzureNative.Chaos.Inputs.KeyValuePairArgs
                                    {
                                        Key = "string",
                                        Value = "string",
                                    },
                                },
                                SelectorId = "string",
                                Type = "continuous",
                            },
                        },
                        Name = "string",
                    },
                },
                Name = "string",
            },
        },
        StartOnCreation = false,
    },
    ResourceGroupName = "string",
    ExperimentName = "string",
    Identity = new AzureNative.Chaos.Inputs.ResourceIdentityArgs
    {
        Type = AzureNative.Chaos.ResourceIdentityType.None,
        UserAssignedIdentities = new[]
        {
            "string",
        },
    },
    Location = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
example, err := chaos.NewExperiment(ctx, "experimentResource", &chaos.ExperimentArgs{
	Properties: &chaos.ExperimentPropertiesArgs{
		Selectors: pulumi.Array{
			chaos.ListSelector{
				Id: "string",
				Targets: []chaos.TargetReference{
					{
						Id:   "string",
						Type: "string",
					},
				},
				Type: "List",
				Filter: chaos.SimpleFilter{
					Type: "Simple",
					Parameters: chaos.SimpleFilterParameters{
						Zones: []string{
							"string",
						},
					},
				},
			},
		},
		Steps: chaos.StepArray{
			&chaos.StepArgs{
				Branches: chaos.BranchArray{
					&chaos.BranchArgs{
						Actions: pulumi.Array{
							chaos.ContinuousAction{
								Duration: "string",
								Name:     "string",
								Parameters: []chaos.KeyValuePair{
									{
										Key:   "string",
										Value: "string",
									},
								},
								SelectorId: "string",
								Type:       "continuous",
							},
						},
						Name: pulumi.String("string"),
					},
				},
				Name: pulumi.String("string"),
			},
		},
		StartOnCreation: pulumi.Bool(false),
	},
	ResourceGroupName: pulumi.String("string"),
	ExperimentName:    pulumi.String("string"),
	Identity: &chaos.ResourceIdentityArgs{
		Type: chaos.ResourceIdentityTypeNone,
		UserAssignedIdentities: pulumi.StringArray{
			pulumi.String("string"),
		},
	},
	Location: pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var experimentResource = new Experiment("experimentResource", ExperimentArgs.builder()
    .properties(ExperimentPropertiesArgs.builder()
        .selectors(ListSelectorArgs.builder()
            .id("string")
            .targets(TargetReferenceArgs.builder()
                .id("string")
                .type("string")
                .build())
            .type("List")
            .filter(SimpleFilterArgs.builder()
                .type("Simple")
                .parameters(SimpleFilterParametersArgs.builder()
                    .zones("string")
                    .build())
                .build())
            .build())
        .steps(StepArgs.builder()
            .branches(BranchArgs.builder()
                .actions(ContinuousActionArgs.builder()
                    .duration("string")
                    .name("string")
                    .parameters(KeyValuePairArgs.builder()
                        .key("string")
                        .value("string")
                        .build())
                    .selectorId("string")
                    .type("continuous")
                    .build())
                .name("string")
                .build())
            .name("string")
            .build())
        .startOnCreation(false)
        .build())
    .resourceGroupName("string")
    .experimentName("string")
    .identity(ResourceIdentityArgs.builder()
        .type("None")
        .userAssignedIdentities("string")
        .build())
    .location("string")
    .tags(Map.of("string", "string"))
    .build());
experiment_resource = azure_native.chaos.Experiment("experimentResource",
    properties={
        "selectors": [{
            "id": "string",
            "targets": [{
                "id": "string",
                "type": "string",
            }],
            "type": "List",
            "filter": {
                "type": "Simple",
                "parameters": {
                    "zones": ["string"],
                },
            },
        }],
        "steps": [{
            "branches": [{
                "actions": [{
                    "duration": "string",
                    "name": "string",
                    "parameters": [{
                        "key": "string",
                        "value": "string",
                    }],
                    "selector_id": "string",
                    "type": "continuous",
                }],
                "name": "string",
            }],
            "name": "string",
        }],
        "start_on_creation": False,
    },
    resource_group_name="string",
    experiment_name="string",
    identity={
        "type": azure_native.chaos.ResourceIdentityType.NONE,
        "user_assigned_identities": ["string"],
    },
    location="string",
    tags={
        "string": "string",
    })
const experimentResource = new azure_native.chaos.Experiment("experimentResource", {
    properties: {
        selectors: [{
            id: "string",
            targets: [{
                id: "string",
                type: "string",
            }],
            type: "List",
            filter: {
                type: "Simple",
                parameters: {
                    zones: ["string"],
                },
            },
        }],
        steps: [{
            branches: [{
                actions: [{
                    duration: "string",
                    name: "string",
                    parameters: [{
                        key: "string",
                        value: "string",
                    }],
                    selectorId: "string",
                    type: "continuous",
                }],
                name: "string",
            }],
            name: "string",
        }],
        startOnCreation: false,
    },
    resourceGroupName: "string",
    experimentName: "string",
    identity: {
        type: azure_native.chaos.ResourceIdentityType.None,
        userAssignedIdentities: ["string"],
    },
    location: "string",
    tags: {
        string: "string",
    },
});
type: azure-native:chaos:Experiment
properties:
    experimentName: string
    identity:
        type: None
        userAssignedIdentities:
            - string
    location: string
    properties:
        selectors:
            - filter:
                parameters:
                    zones:
                        - string
                type: Simple
              id: string
              targets:
                - id: string
                  type: string
              type: List
        startOnCreation: false
        steps:
            - branches:
                - actions:
                    - duration: string
                      name: string
                      parameters:
                        - key: string
                          value: string
                      selectorId: string
                      type: continuous
                  name: string
              name: string
    resourceGroupName: string
    tags:
        string: string
Experiment 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 Experiment resource accepts the following input properties:
- Properties
Pulumi.Azure Native. Chaos. Inputs. Experiment Properties 
- The properties of the experiment resource.
- ResourceGroup stringName 
- String that represents an Azure resource group.
- ExperimentName string
- String that represents a Experiment resource name.
- Identity
Pulumi.Azure Native. Chaos. Inputs. Resource Identity 
- The identity of the experiment resource.
- Location string
- The geo-location where the resource lives
- Dictionary<string, string>
- Resource tags.
- Properties
ExperimentProperties Args 
- The properties of the experiment resource.
- ResourceGroup stringName 
- String that represents an Azure resource group.
- ExperimentName string
- String that represents a Experiment resource name.
- Identity
ResourceIdentity Args 
- The identity of the experiment resource.
- Location string
- The geo-location where the resource lives
- map[string]string
- Resource tags.
- properties
ExperimentProperties 
- The properties of the experiment resource.
- resourceGroup StringName 
- String that represents an Azure resource group.
- experimentName String
- String that represents a Experiment resource name.
- identity
ResourceIdentity 
- The identity of the experiment resource.
- location String
- The geo-location where the resource lives
- Map<String,String>
- Resource tags.
- properties
ExperimentProperties 
- The properties of the experiment resource.
- resourceGroup stringName 
- String that represents an Azure resource group.
- experimentName string
- String that represents a Experiment resource name.
- identity
ResourceIdentity 
- The identity of the experiment resource.
- location string
- The geo-location where the resource lives
- {[key: string]: string}
- Resource tags.
- properties
ExperimentProperties Args 
- The properties of the experiment resource.
- resource_group_ strname 
- String that represents an Azure resource group.
- experiment_name str
- String that represents a Experiment resource name.
- identity
ResourceIdentity Args 
- The identity of the experiment resource.
- location str
- The geo-location where the resource lives
- Mapping[str, str]
- Resource tags.
- properties Property Map
- The properties of the experiment resource.
- resourceGroup StringName 
- String that represents an Azure resource group.
- experimentName String
- String that represents a Experiment resource name.
- identity Property Map
- The identity of the experiment resource.
- location String
- The geo-location where the resource lives
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the Experiment resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- SystemData Pulumi.Azure Native. Chaos. Outputs. System Data Response 
- The system metadata of the experiment resource.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- SystemData SystemData Response 
- The system metadata of the experiment resource.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- systemData SystemData Response 
- The system metadata of the experiment resource.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- systemData SystemData Response 
- The system metadata of the experiment resource.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- system_data SystemData Response 
- The system metadata of the experiment resource.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- systemData Property Map
- The system metadata of the experiment resource.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
Branch, BranchArgs  
BranchResponse, BranchResponseArgs    
ContinuousAction, ContinuousActionArgs    
- Duration string
- ISO8601 formatted string that represents a duration.
- Name string
- String that represents a Capability URN.
- Parameters
List<Pulumi.Azure Native. Chaos. Inputs. Key Value Pair> 
- List of key value pairs.
- SelectorId string
- String that represents a selector.
- Duration string
- ISO8601 formatted string that represents a duration.
- Name string
- String that represents a Capability URN.
- Parameters
[]KeyValue Pair 
- List of key value pairs.
- SelectorId string
- String that represents a selector.
- duration String
- ISO8601 formatted string that represents a duration.
- name String
- String that represents a Capability URN.
- parameters
List<KeyValue Pair> 
- List of key value pairs.
- selectorId String
- String that represents a selector.
- duration string
- ISO8601 formatted string that represents a duration.
- name string
- String that represents a Capability URN.
- parameters
KeyValue Pair[] 
- List of key value pairs.
- selectorId string
- String that represents a selector.
- duration str
- ISO8601 formatted string that represents a duration.
- name str
- String that represents a Capability URN.
- parameters
Sequence[KeyValue Pair] 
- List of key value pairs.
- selector_id str
- String that represents a selector.
- duration String
- ISO8601 formatted string that represents a duration.
- name String
- String that represents a Capability URN.
- parameters List<Property Map>
- List of key value pairs.
- selectorId String
- String that represents a selector.
ContinuousActionResponse, ContinuousActionResponseArgs      
- Duration string
- ISO8601 formatted string that represents a duration.
- Name string
- String that represents a Capability URN.
- Parameters
List<Pulumi.Azure Native. Chaos. Inputs. Key Value Pair Response> 
- List of key value pairs.
- SelectorId string
- String that represents a selector.
- Duration string
- ISO8601 formatted string that represents a duration.
- Name string
- String that represents a Capability URN.
- Parameters
[]KeyValue Pair Response 
- List of key value pairs.
- SelectorId string
- String that represents a selector.
- duration String
- ISO8601 formatted string that represents a duration.
- name String
- String that represents a Capability URN.
- parameters
List<KeyValue Pair Response> 
- List of key value pairs.
- selectorId String
- String that represents a selector.
- duration string
- ISO8601 formatted string that represents a duration.
- name string
- String that represents a Capability URN.
- parameters
KeyValue Pair Response[] 
- List of key value pairs.
- selectorId string
- String that represents a selector.
- duration str
- ISO8601 formatted string that represents a duration.
- name str
- String that represents a Capability URN.
- parameters
Sequence[KeyValue Pair Response] 
- List of key value pairs.
- selector_id str
- String that represents a selector.
- duration String
- ISO8601 formatted string that represents a duration.
- name String
- String that represents a Capability URN.
- parameters List<Property Map>
- List of key value pairs.
- selectorId String
- String that represents a selector.
DelayAction, DelayActionArgs    
DelayActionResponse, DelayActionResponseArgs      
DiscreteAction, DiscreteActionArgs    
- Name string
- String that represents a Capability URN.
- Parameters
List<Pulumi.Azure Native. Chaos. Inputs. Key Value Pair> 
- List of key value pairs.
- SelectorId string
- String that represents a selector.
- Name string
- String that represents a Capability URN.
- Parameters
[]KeyValue Pair 
- List of key value pairs.
- SelectorId string
- String that represents a selector.
- name String
- String that represents a Capability URN.
- parameters
List<KeyValue Pair> 
- List of key value pairs.
- selectorId String
- String that represents a selector.
- name string
- String that represents a Capability URN.
- parameters
KeyValue Pair[] 
- List of key value pairs.
- selectorId string
- String that represents a selector.
- name str
- String that represents a Capability URN.
- parameters
Sequence[KeyValue Pair] 
- List of key value pairs.
- selector_id str
- String that represents a selector.
- name String
- String that represents a Capability URN.
- parameters List<Property Map>
- List of key value pairs.
- selectorId String
- String that represents a selector.
DiscreteActionResponse, DiscreteActionResponseArgs      
- Name string
- String that represents a Capability URN.
- Parameters
List<Pulumi.Azure Native. Chaos. Inputs. Key Value Pair Response> 
- List of key value pairs.
- SelectorId string
- String that represents a selector.
- Name string
- String that represents a Capability URN.
- Parameters
[]KeyValue Pair Response 
- List of key value pairs.
- SelectorId string
- String that represents a selector.
- name String
- String that represents a Capability URN.
- parameters
List<KeyValue Pair Response> 
- List of key value pairs.
- selectorId String
- String that represents a selector.
- name string
- String that represents a Capability URN.
- parameters
KeyValue Pair Response[] 
- List of key value pairs.
- selectorId string
- String that represents a selector.
- name str
- String that represents a Capability URN.
- parameters
Sequence[KeyValue Pair Response] 
- List of key value pairs.
- selector_id str
- String that represents a selector.
- name String
- String that represents a Capability URN.
- parameters List<Property Map>
- List of key value pairs.
- selectorId String
- String that represents a selector.
ExperimentProperties, ExperimentPropertiesArgs    
- Selectors
List<Union<Pulumi.Azure Native. Chaos. Inputs. List Selector, Pulumi. Azure Native. Chaos. Inputs. Query Selector>> 
- List of selectors.
- Steps
List<Pulumi.Azure Native. Chaos. Inputs. Step> 
- List of steps.
- StartOn boolCreation 
- A boolean value that indicates if experiment should be started on creation or not.
- Selectors []interface{}
- List of selectors.
- Steps []Step
- List of steps.
- StartOn boolCreation 
- A boolean value that indicates if experiment should be started on creation or not.
- selectors
List<Either<ListSelector,Query Selector>> 
- List of selectors.
- steps List<Step>
- List of steps.
- startOn BooleanCreation 
- A boolean value that indicates if experiment should be started on creation or not.
- selectors
(ListSelector | Query Selector)[] 
- List of selectors.
- steps Step[]
- List of steps.
- startOn booleanCreation 
- A boolean value that indicates if experiment should be started on creation or not.
- selectors
Sequence[Union[ListSelector, Query Selector]] 
- List of selectors.
- steps Sequence[Step]
- List of steps.
- start_on_ boolcreation 
- A boolean value that indicates if experiment should be started on creation or not.
- selectors List<Property Map | Property Map>
- List of selectors.
- steps List<Property Map>
- List of steps.
- startOn BooleanCreation 
- A boolean value that indicates if experiment should be started on creation or not.
ExperimentPropertiesResponse, ExperimentPropertiesResponseArgs      
- Selectors
List<Union<Pulumi.Azure Native. Chaos. Inputs. List Selector Response, Pulumi. Azure Native. Chaos. Inputs. Query Selector Response>> 
- List of selectors.
- Steps
List<Pulumi.Azure Native. Chaos. Inputs. Step Response> 
- List of steps.
- StartOn boolCreation 
- A boolean value that indicates if experiment should be started on creation or not.
- Selectors []interface{}
- List of selectors.
- Steps
[]StepResponse 
- List of steps.
- StartOn boolCreation 
- A boolean value that indicates if experiment should be started on creation or not.
- selectors
List<Either<ListSelector Response,Query Selector Response>> 
- List of selectors.
- steps
List<StepResponse> 
- List of steps.
- startOn BooleanCreation 
- A boolean value that indicates if experiment should be started on creation or not.
- selectors
(ListSelector Response | Query Selector Response)[] 
- List of selectors.
- steps
StepResponse[] 
- List of steps.
- startOn booleanCreation 
- A boolean value that indicates if experiment should be started on creation or not.
- selectors
Sequence[Union[ListSelector Response, Query Selector Response]] 
- List of selectors.
- steps
Sequence[StepResponse] 
- List of steps.
- start_on_ boolcreation 
- A boolean value that indicates if experiment should be started on creation or not.
- selectors List<Property Map | Property Map>
- List of selectors.
- steps List<Property Map>
- List of steps.
- startOn BooleanCreation 
- A boolean value that indicates if experiment should be started on creation or not.
KeyValuePair, KeyValuePairArgs      
KeyValuePairResponse, KeyValuePairResponseArgs        
ListSelector, ListSelectorArgs    
- Id string
- String of the selector ID.
- Targets
List<Pulumi.Azure Native. Chaos. Inputs. Target Reference> 
- List of Target references.
- Filter
Pulumi.Azure Native. Chaos. Inputs. Simple Filter 
- Model that represents available filter types that can be applied to a targets list.
- Id string
- String of the selector ID.
- Targets
[]TargetReference 
- List of Target references.
- Filter
SimpleFilter 
- Model that represents available filter types that can be applied to a targets list.
- id String
- String of the selector ID.
- targets
List<TargetReference> 
- List of Target references.
- filter
SimpleFilter 
- Model that represents available filter types that can be applied to a targets list.
- id string
- String of the selector ID.
- targets
TargetReference[] 
- List of Target references.
- filter
SimpleFilter 
- Model that represents available filter types that can be applied to a targets list.
- id str
- String of the selector ID.
- targets
Sequence[TargetReference] 
- List of Target references.
- filter
SimpleFilter 
- Model that represents available filter types that can be applied to a targets list.
- id String
- String of the selector ID.
- targets List<Property Map>
- List of Target references.
- filter Property Map
- Model that represents available filter types that can be applied to a targets list.
ListSelectorResponse, ListSelectorResponseArgs      
- Id string
- String of the selector ID.
- Targets
List<Pulumi.Azure Native. Chaos. Inputs. Target Reference Response> 
- List of Target references.
- Filter
Pulumi.Azure Native. Chaos. Inputs. Simple Filter Response 
- Model that represents available filter types that can be applied to a targets list.
- Id string
- String of the selector ID.
- Targets
[]TargetReference Response 
- List of Target references.
- Filter
SimpleFilter Response 
- Model that represents available filter types that can be applied to a targets list.
- id String
- String of the selector ID.
- targets
List<TargetReference Response> 
- List of Target references.
- filter
SimpleFilter Response 
- Model that represents available filter types that can be applied to a targets list.
- id string
- String of the selector ID.
- targets
TargetReference Response[] 
- List of Target references.
- filter
SimpleFilter Response 
- Model that represents available filter types that can be applied to a targets list.
- id str
- String of the selector ID.
- targets
Sequence[TargetReference Response] 
- List of Target references.
- filter
SimpleFilter Response 
- Model that represents available filter types that can be applied to a targets list.
- id String
- String of the selector ID.
- targets List<Property Map>
- List of Target references.
- filter Property Map
- Model that represents available filter types that can be applied to a targets list.
QuerySelector, QuerySelectorArgs    
- Id string
- String of the selector ID.
- QueryString string
- Azure Resource Graph (ARG) Query Language query for target resources.
- SubscriptionIds List<string>
- Subscription id list to scope resource query.
- Filter
Pulumi.Azure Native. Chaos. Inputs. Simple Filter 
- Model that represents available filter types that can be applied to a targets list.
- Id string
- String of the selector ID.
- QueryString string
- Azure Resource Graph (ARG) Query Language query for target resources.
- SubscriptionIds []string
- Subscription id list to scope resource query.
- Filter
SimpleFilter 
- Model that represents available filter types that can be applied to a targets list.
- id String
- String of the selector ID.
- queryString String
- Azure Resource Graph (ARG) Query Language query for target resources.
- subscriptionIds List<String>
- Subscription id list to scope resource query.
- filter
SimpleFilter 
- Model that represents available filter types that can be applied to a targets list.
- id string
- String of the selector ID.
- queryString string
- Azure Resource Graph (ARG) Query Language query for target resources.
- subscriptionIds string[]
- Subscription id list to scope resource query.
- filter
SimpleFilter 
- Model that represents available filter types that can be applied to a targets list.
- id str
- String of the selector ID.
- query_string str
- Azure Resource Graph (ARG) Query Language query for target resources.
- subscription_ids Sequence[str]
- Subscription id list to scope resource query.
- filter
SimpleFilter 
- Model that represents available filter types that can be applied to a targets list.
- id String
- String of the selector ID.
- queryString String
- Azure Resource Graph (ARG) Query Language query for target resources.
- subscriptionIds List<String>
- Subscription id list to scope resource query.
- filter Property Map
- Model that represents available filter types that can be applied to a targets list.
QuerySelectorResponse, QuerySelectorResponseArgs      
- Id string
- String of the selector ID.
- QueryString string
- Azure Resource Graph (ARG) Query Language query for target resources.
- SubscriptionIds List<string>
- Subscription id list to scope resource query.
- Filter
Pulumi.Azure Native. Chaos. Inputs. Simple Filter Response 
- Model that represents available filter types that can be applied to a targets list.
- Id string
- String of the selector ID.
- QueryString string
- Azure Resource Graph (ARG) Query Language query for target resources.
- SubscriptionIds []string
- Subscription id list to scope resource query.
- Filter
SimpleFilter Response 
- Model that represents available filter types that can be applied to a targets list.
- id String
- String of the selector ID.
- queryString String
- Azure Resource Graph (ARG) Query Language query for target resources.
- subscriptionIds List<String>
- Subscription id list to scope resource query.
- filter
SimpleFilter Response 
- Model that represents available filter types that can be applied to a targets list.
- id string
- String of the selector ID.
- queryString string
- Azure Resource Graph (ARG) Query Language query for target resources.
- subscriptionIds string[]
- Subscription id list to scope resource query.
- filter
SimpleFilter Response 
- Model that represents available filter types that can be applied to a targets list.
- id str
- String of the selector ID.
- query_string str
- Azure Resource Graph (ARG) Query Language query for target resources.
- subscription_ids Sequence[str]
- Subscription id list to scope resource query.
- filter
SimpleFilter Response 
- Model that represents available filter types that can be applied to a targets list.
- id String
- String of the selector ID.
- queryString String
- Azure Resource Graph (ARG) Query Language query for target resources.
- subscriptionIds List<String>
- Subscription id list to scope resource query.
- filter Property Map
- Model that represents available filter types that can be applied to a targets list.
ResourceIdentity, ResourceIdentityArgs    
- Type
Pulumi.Azure Native. Chaos. Resource Identity Type 
- String of the resource identity type.
- UserAssigned List<string>Identities 
- The list of user identities associated with the Experiment. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- Type
ResourceIdentity Type 
- String of the resource identity type.
- UserAssigned []stringIdentities 
- The list of user identities associated with the Experiment. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- type
ResourceIdentity Type 
- String of the resource identity type.
- userAssigned List<String>Identities 
- The list of user identities associated with the Experiment. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- type
ResourceIdentity Type 
- String of the resource identity type.
- userAssigned string[]Identities 
- The list of user identities associated with the Experiment. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- type
ResourceIdentity Type 
- String of the resource identity type.
- user_assigned_ Sequence[str]identities 
- The list of user identities associated with the Experiment. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- type
"None" | "SystemAssigned" | "User Assigned" 
- String of the resource identity type.
- userAssigned List<String>Identities 
- The list of user identities associated with the Experiment. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
ResourceIdentityResponse, ResourceIdentityResponseArgs      
- PrincipalId string
- GUID that represents the principal ID of this resource identity.
- TenantId string
- GUID that represents the tenant ID of this resource identity.
- Type string
- String of the resource identity type.
- UserAssigned Dictionary<string, Pulumi.Identities Azure Native. Chaos. Inputs. User Assigned Identity Response> 
- The list of user identities associated with the Experiment. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- PrincipalId string
- GUID that represents the principal ID of this resource identity.
- TenantId string
- GUID that represents the tenant ID of this resource identity.
- Type string
- String of the resource identity type.
- UserAssigned map[string]UserIdentities Assigned Identity Response 
- The list of user identities associated with the Experiment. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- principalId String
- GUID that represents the principal ID of this resource identity.
- tenantId String
- GUID that represents the tenant ID of this resource identity.
- type String
- String of the resource identity type.
- userAssigned Map<String,UserIdentities Assigned Identity Response> 
- The list of user identities associated with the Experiment. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- principalId string
- GUID that represents the principal ID of this resource identity.
- tenantId string
- GUID that represents the tenant ID of this resource identity.
- type string
- String of the resource identity type.
- userAssigned {[key: string]: UserIdentities Assigned Identity Response} 
- The list of user identities associated with the Experiment. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- principal_id str
- GUID that represents the principal ID of this resource identity.
- tenant_id str
- GUID that represents the tenant ID of this resource identity.
- type str
- String of the resource identity type.
- user_assigned_ Mapping[str, Useridentities Assigned Identity Response] 
- The list of user identities associated with the Experiment. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
- principalId String
- GUID that represents the principal ID of this resource identity.
- tenantId String
- GUID that represents the tenant ID of this resource identity.
- type String
- String of the resource identity type.
- userAssigned Map<Property Map>Identities 
- The list of user identities associated with the Experiment. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
ResourceIdentityType, ResourceIdentityTypeArgs      
- None
- None
- SystemAssigned 
- SystemAssigned
- UserAssigned 
- UserAssigned
- ResourceIdentity Type None 
- None
- ResourceIdentity Type System Assigned 
- SystemAssigned
- ResourceIdentity Type User Assigned 
- UserAssigned
- None
- None
- SystemAssigned 
- SystemAssigned
- UserAssigned 
- UserAssigned
- None
- None
- SystemAssigned 
- SystemAssigned
- UserAssigned 
- UserAssigned
- NONE
- None
- SYSTEM_ASSIGNED
- SystemAssigned
- USER_ASSIGNED
- UserAssigned
- "None"
- None
- "SystemAssigned" 
- SystemAssigned
- "UserAssigned" 
- UserAssigned
SimpleFilter, SimpleFilterArgs    
- Parameters
Pulumi.Azure Native. Chaos. Inputs. Simple Filter Parameters 
- Model that represents the Simple filter parameters.
- Parameters
SimpleFilter Parameters 
- Model that represents the Simple filter parameters.
- parameters
SimpleFilter Parameters 
- Model that represents the Simple filter parameters.
- parameters
SimpleFilter Parameters 
- Model that represents the Simple filter parameters.
- parameters
SimpleFilter Parameters 
- Model that represents the Simple filter parameters.
- parameters Property Map
- Model that represents the Simple filter parameters.
SimpleFilterParameters, SimpleFilterParametersArgs      
- Zones List<string>
- List of Azure availability zones to filter targets by.
- Zones []string
- List of Azure availability zones to filter targets by.
- zones List<String>
- List of Azure availability zones to filter targets by.
- zones string[]
- List of Azure availability zones to filter targets by.
- zones Sequence[str]
- List of Azure availability zones to filter targets by.
- zones List<String>
- List of Azure availability zones to filter targets by.
SimpleFilterParametersResponse, SimpleFilterParametersResponseArgs        
- Zones List<string>
- List of Azure availability zones to filter targets by.
- Zones []string
- List of Azure availability zones to filter targets by.
- zones List<String>
- List of Azure availability zones to filter targets by.
- zones string[]
- List of Azure availability zones to filter targets by.
- zones Sequence[str]
- List of Azure availability zones to filter targets by.
- zones List<String>
- List of Azure availability zones to filter targets by.
SimpleFilterResponse, SimpleFilterResponseArgs      
- Parameters
Pulumi.Azure Native. Chaos. Inputs. Simple Filter Parameters Response 
- Model that represents the Simple filter parameters.
- Parameters
SimpleFilter Parameters Response 
- Model that represents the Simple filter parameters.
- parameters
SimpleFilter Parameters Response 
- Model that represents the Simple filter parameters.
- parameters
SimpleFilter Parameters Response 
- Model that represents the Simple filter parameters.
- parameters
SimpleFilter Parameters Response 
- Model that represents the Simple filter parameters.
- parameters Property Map
- Model that represents the Simple filter parameters.
Step, StepArgs  
- Branches
List<Pulumi.Azure Native. Chaos. Inputs. Branch> 
- List of branches.
- Name string
- String of the step name.
- branches List<Branch>
- List of branches.
- name String
- String of the step name.
- branches Sequence[Branch]
- List of branches.
- name str
- String of the step name.
- branches List<Property Map>
- List of branches.
- name String
- String of the step name.
StepResponse, StepResponseArgs    
- Branches
List<Pulumi.Azure Native. Chaos. Inputs. Branch Response> 
- List of branches.
- Name string
- String of the step name.
- Branches
[]BranchResponse 
- List of branches.
- Name string
- String of the step name.
- branches
List<BranchResponse> 
- List of branches.
- name String
- String of the step name.
- branches
BranchResponse[] 
- List of branches.
- name string
- String of the step name.
- branches
Sequence[BranchResponse] 
- List of branches.
- name str
- String of the step name.
- branches List<Property Map>
- List of branches.
- name String
- String of the step name.
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified 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.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
TargetReference, TargetReferenceArgs    
- Id string
- String of the resource ID of a Target resource.
- Type
string | Pulumi.Azure Native. Chaos. Target Reference Type 
- Enum of the Target reference type.
- Id string
- String of the resource ID of a Target resource.
- Type
string | TargetReference Type 
- Enum of the Target reference type.
- id String
- String of the resource ID of a Target resource.
- type
String | TargetReference Type 
- Enum of the Target reference type.
- id string
- String of the resource ID of a Target resource.
- type
string | TargetReference Type 
- Enum of the Target reference type.
- id str
- String of the resource ID of a Target resource.
- type
str | TargetReference Type 
- Enum of the Target reference type.
- id String
- String of the resource ID of a Target resource.
- type
String | "ChaosTarget" 
- Enum of the Target reference type.
TargetReferenceResponse, TargetReferenceResponseArgs      
TargetReferenceType, TargetReferenceTypeArgs      
- ChaosTarget 
- ChaosTarget
- TargetReference Type Chaos Target 
- ChaosTarget
- ChaosTarget 
- ChaosTarget
- ChaosTarget 
- ChaosTarget
- CHAOS_TARGET
- ChaosTarget
- "ChaosTarget" 
- ChaosTarget
UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs        
- ClientId string
- The client ID of the assigned identity.
- PrincipalId string
- The principal ID of the assigned identity.
- ClientId string
- The client ID of the assigned identity.
- PrincipalId string
- The principal ID of the assigned identity.
- clientId String
- The client ID of the assigned identity.
- principalId String
- The principal ID of the assigned identity.
- clientId string
- The client ID of the assigned identity.
- principalId string
- The principal ID of the assigned identity.
- client_id str
- The client ID of the assigned identity.
- principal_id str
- The principal ID of the assigned identity.
- clientId String
- The client ID of the assigned identity.
- principalId String
- The principal ID of the assigned identity.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0