azure-native.chaos.Experiment
Explore with Pulumi AI
Model that represents a Experiment resource.
Uses Azure REST API version 2024-03-22-preview. In version 2.x of the Azure Native provider, it used API version 2023-04-15-preview.
Other available API versions: 2023-04-15-preview, 2023-09-01-preview, 2023-10-27-preview, 2023-11-01, 2024-01-01, 2024-11-01-preview, 2025-01-01. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native chaos [ApiVersion]
. See the version guide for details.
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[ExperimentIdentityArgs] = 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",
},
},
CustomerDataStorage = new AzureNative.Chaos.Inputs.CustomerDataStoragePropertiesArgs
{
BlobContainerName = "string",
StorageAccountResourceId = "string",
},
},
ResourceGroupName = "string",
ExperimentName = "string",
Identity = new AzureNative.Chaos.Inputs.ExperimentIdentityArgs
{
Type = "string",
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"),
},
},
CustomerDataStorage: &chaos.CustomerDataStoragePropertiesArgs{
BlobContainerName: pulumi.String("string"),
StorageAccountResourceId: pulumi.String("string"),
},
},
ResourceGroupName: pulumi.String("string"),
ExperimentName: pulumi.String("string"),
Identity: &chaos.ExperimentIdentityArgs{
Type: pulumi.String("string"),
UserAssignedIdentities: pulumi.StringArray{
pulumi.String("string"),
},
},
Location: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var experimentResource = new com.pulumi.azurenative.chaos.Experiment("experimentResource", com.pulumi.azurenative.chaos.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())
.customerDataStorage(CustomerDataStoragePropertiesArgs.builder()
.blobContainerName("string")
.storageAccountResourceId("string")
.build())
.build())
.resourceGroupName("string")
.experimentName("string")
.identity(ExperimentIdentityArgs.builder()
.type("string")
.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",
}],
"customer_data_storage": {
"blob_container_name": "string",
"storage_account_resource_id": "string",
},
},
resource_group_name="string",
experiment_name="string",
identity={
"type": "string",
"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",
}],
customerDataStorage: {
blobContainerName: "string",
storageAccountResourceId: "string",
},
},
resourceGroupName: "string",
experimentName: "string",
identity: {
type: "string",
userAssignedIdentities: ["string"],
},
location: "string",
tags: {
string: "string",
},
});
type: azure-native:chaos:Experiment
properties:
experimentName: string
identity:
type: string
userAssignedIdentities:
- string
location: string
properties:
customerDataStorage:
blobContainerName: string
storageAccountResourceId: string
selectors:
- filter:
parameters:
zones:
- string
type: Simple
id: string
targets:
- id: string
type: string
type: List
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.
- Resource
Group stringName - String that represents an Azure resource group.
- Experiment
Name string - String that represents a Experiment resource name.
- Identity
Pulumi.
Azure Native. Chaos. Inputs. Experiment Identity - The identity of the experiment resource.
- Location string
- The geo-location where the resource lives
- Dictionary<string, string>
- Resource tags.
- Properties
Experiment
Properties Args - The properties of the experiment resource.
- Resource
Group stringName - String that represents an Azure resource group.
- Experiment
Name string - String that represents a Experiment resource name.
- Identity
Experiment
Identity Args - The identity of the experiment resource.
- Location string
- The geo-location where the resource lives
- map[string]string
- Resource tags.
- properties
Experiment
Properties - The properties of the experiment resource.
- resource
Group StringName - String that represents an Azure resource group.
- experiment
Name String - String that represents a Experiment resource name.
- identity
Experiment
Identity - The identity of the experiment resource.
- location String
- The geo-location where the resource lives
- Map<String,String>
- Resource tags.
- properties
Experiment
Properties - The properties of the experiment resource.
- resource
Group stringName - String that represents an Azure resource group.
- experiment
Name string - String that represents a Experiment resource name.
- identity
Experiment
Identity - The identity of the experiment resource.
- location string
- The geo-location where the resource lives
- {[key: string]: string}
- Resource tags.
- properties
Experiment
Properties 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
Experiment
Identity 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.
- resource
Group StringName - String that represents an Azure resource group.
- experiment
Name 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:
- 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. Chaos. 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 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
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.
- Selector
Id string - String that represents a selector.
- Duration string
- ISO8601 formatted string that represents a duration.
- Name string
- String that represents a Capability URN.
- Parameters
[]Key
Value Pair - List of key value pairs.
- Selector
Id 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<Key
Value Pair> - List of key value pairs.
- selector
Id String - String that represents a selector.
- duration string
- ISO8601 formatted string that represents a duration.
- name string
- String that represents a Capability URN.
- parameters
Key
Value Pair[] - List of key value pairs.
- selector
Id 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[Key
Value 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.
- selector
Id 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.
- Selector
Id string - String that represents a selector.
- Duration string
- ISO8601 formatted string that represents a duration.
- Name string
- String that represents a Capability URN.
- Parameters
[]Key
Value Pair Response - List of key value pairs.
- Selector
Id 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<Key
Value Pair Response> - List of key value pairs.
- selector
Id String - String that represents a selector.
- duration string
- ISO8601 formatted string that represents a duration.
- name string
- String that represents a Capability URN.
- parameters
Key
Value Pair Response[] - List of key value pairs.
- selector
Id 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[Key
Value 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.
- selector
Id String - String that represents a selector.
CustomerDataStorageProperties, CustomerDataStoragePropertiesArgs
- Blob
Container stringName - Name of the Azure Blob Storage container to use or create.
- Storage
Account stringResource Id - ARM Resource ID of the Storage account to use for Customer Data storage.
- Blob
Container stringName - Name of the Azure Blob Storage container to use or create.
- Storage
Account stringResource Id - ARM Resource ID of the Storage account to use for Customer Data storage.
- blob
Container StringName - Name of the Azure Blob Storage container to use or create.
- storage
Account StringResource Id - ARM Resource ID of the Storage account to use for Customer Data storage.
- blob
Container stringName - Name of the Azure Blob Storage container to use or create.
- storage
Account stringResource Id - ARM Resource ID of the Storage account to use for Customer Data storage.
- blob_
container_ strname - Name of the Azure Blob Storage container to use or create.
- storage_
account_ strresource_ id - ARM Resource ID of the Storage account to use for Customer Data storage.
- blob
Container StringName - Name of the Azure Blob Storage container to use or create.
- storage
Account StringResource Id - ARM Resource ID of the Storage account to use for Customer Data storage.
CustomerDataStoragePropertiesResponse, CustomerDataStoragePropertiesResponseArgs
- Blob
Container stringName - Name of the Azure Blob Storage container to use or create.
- Storage
Account stringResource Id - ARM Resource ID of the Storage account to use for Customer Data storage.
- Blob
Container stringName - Name of the Azure Blob Storage container to use or create.
- Storage
Account stringResource Id - ARM Resource ID of the Storage account to use for Customer Data storage.
- blob
Container StringName - Name of the Azure Blob Storage container to use or create.
- storage
Account StringResource Id - ARM Resource ID of the Storage account to use for Customer Data storage.
- blob
Container stringName - Name of the Azure Blob Storage container to use or create.
- storage
Account stringResource Id - ARM Resource ID of the Storage account to use for Customer Data storage.
- blob_
container_ strname - Name of the Azure Blob Storage container to use or create.
- storage_
account_ strresource_ id - ARM Resource ID of the Storage account to use for Customer Data storage.
- blob
Container StringName - Name of the Azure Blob Storage container to use or create.
- storage
Account StringResource Id - ARM Resource ID of the Storage account to use for Customer Data storage.
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.
- Selector
Id string - String that represents a selector.
- Name string
- String that represents a Capability URN.
- Parameters
[]Key
Value Pair - List of key value pairs.
- Selector
Id string - String that represents a selector.
- name String
- String that represents a Capability URN.
- parameters
List<Key
Value Pair> - List of key value pairs.
- selector
Id String - String that represents a selector.
- name string
- String that represents a Capability URN.
- parameters
Key
Value Pair[] - List of key value pairs.
- selector
Id string - String that represents a selector.
- name str
- String that represents a Capability URN.
- parameters
Sequence[Key
Value 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.
- selector
Id 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.
- Selector
Id string - String that represents a selector.
- Name string
- String that represents a Capability URN.
- Parameters
[]Key
Value Pair Response - List of key value pairs.
- Selector
Id string - String that represents a selector.
- name String
- String that represents a Capability URN.
- parameters
List<Key
Value Pair Response> - List of key value pairs.
- selector
Id String - String that represents a selector.
- name string
- String that represents a Capability URN.
- parameters
Key
Value Pair Response[] - List of key value pairs.
- selector
Id string - String that represents a selector.
- name str
- String that represents a Capability URN.
- parameters
Sequence[Key
Value 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.
- selector
Id String - String that represents a selector.
ExperimentIdentity, ExperimentIdentityArgs
- Type
string | Pulumi.
Azure Native. Chaos. Managed Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- User
Assigned List<string>Identities - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- Type
string | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- User
Assigned []stringIdentities - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- type
String | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned List<String>Identities - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- type
string | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned string[]Identities - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- type
str | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user_
assigned_ Sequence[str]identities - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- type
String | "None" | "System
Assigned" | "User Assigned" | "System Assigned,User Assigned" - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned List<String>Identities - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
ExperimentIdentityResponse, ExperimentIdentityResponseArgs
- Principal
Id string - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Tenant
Id string - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Type string
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- User
Assigned Dictionary<string, Pulumi.Identities Azure Native. Chaos. Inputs. User Assigned Identity Response> - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- Principal
Id string - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Tenant
Id string - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Type string
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- User
Assigned map[string]UserIdentities Assigned Identity Response - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- principal
Id String - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id String - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- type String
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned Map<String,UserIdentities Assigned Identity Response> - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- principal
Id string - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id string - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- type string
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned {[key: string]: UserIdentities Assigned Identity Response} - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- principal_
id str - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant_
id str - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- type str
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user_
assigned_ Mapping[str, Useridentities Assigned Identity Response] - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- principal
Id String - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id String - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- type String
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned Map<Property Map>Identities - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
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.
- Customer
Data Pulumi.Storage Azure Native. Chaos. Inputs. Customer Data Storage Properties - Optional customer-managed Storage account where Experiment schema will be stored.
- Selectors []interface{}
- List of selectors.
- Steps []Step
- List of steps.
- Customer
Data CustomerStorage Data Storage Properties - Optional customer-managed Storage account where Experiment schema will be stored.
- selectors
List<Either<List
Selector,Query Selector>> - List of selectors.
- steps List<Step>
- List of steps.
- customer
Data CustomerStorage Data Storage Properties - Optional customer-managed Storage account where Experiment schema will be stored.
- selectors
(List
Selector | Query Selector)[] - List of selectors.
- steps Step[]
- List of steps.
- customer
Data CustomerStorage Data Storage Properties - Optional customer-managed Storage account where Experiment schema will be stored.
- selectors
Sequence[Union[List
Selector, Query Selector]] - List of selectors.
- steps Sequence[Step]
- List of steps.
- customer_
data_ Customerstorage Data Storage Properties - Optional customer-managed Storage account where Experiment schema will be stored.
- selectors List<Property Map | Property Map>
- List of selectors.
- steps List<Property Map>
- List of steps.
- customer
Data Property MapStorage - Optional customer-managed Storage account where Experiment schema will be stored.
ExperimentPropertiesResponse, ExperimentPropertiesResponseArgs
- Provisioning
State string - Most recent provisioning state for the given experiment resource.
- 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.
- Customer
Data Pulumi.Storage Azure Native. Chaos. Inputs. Customer Data Storage Properties Response - Optional customer-managed Storage account where Experiment schema will be stored.
- Provisioning
State string - Most recent provisioning state for the given experiment resource.
- Selectors []interface{}
- List of selectors.
- Steps
[]Step
Response - List of steps.
- Customer
Data CustomerStorage Data Storage Properties Response - Optional customer-managed Storage account where Experiment schema will be stored.
- provisioning
State String - Most recent provisioning state for the given experiment resource.
- selectors
List<Either<List
Selector Response,Query Selector Response>> - List of selectors.
- steps
List<Step
Response> - List of steps.
- customer
Data CustomerStorage Data Storage Properties Response - Optional customer-managed Storage account where Experiment schema will be stored.
- provisioning
State string - Most recent provisioning state for the given experiment resource.
- selectors
(List
Selector Response | Query Selector Response)[] - List of selectors.
- steps
Step
Response[] - List of steps.
- customer
Data CustomerStorage Data Storage Properties Response - Optional customer-managed Storage account where Experiment schema will be stored.
- provisioning_
state str - Most recent provisioning state for the given experiment resource.
- selectors
Sequence[Union[List
Selector Response, Query Selector Response]] - List of selectors.
- steps
Sequence[Step
Response] - List of steps.
- customer_
data_ Customerstorage Data Storage Properties Response - Optional customer-managed Storage account where Experiment schema will be stored.
- provisioning
State String - Most recent provisioning state for the given experiment resource.
- selectors List<Property Map | Property Map>
- List of selectors.
- steps List<Property Map>
- List of steps.
- customer
Data Property MapStorage - Optional customer-managed Storage account where Experiment schema will be stored.
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
[]Target
Reference - List of Target references.
- Filter
Simple
Filter - Model that represents available filter types that can be applied to a targets list.
- id String
- String of the selector ID.
- targets
List<Target
Reference> - List of Target references.
- filter
Simple
Filter - Model that represents available filter types that can be applied to a targets list.
- id string
- String of the selector ID.
- targets
Target
Reference[] - List of Target references.
- filter
Simple
Filter - Model that represents available filter types that can be applied to a targets list.
- id str
- String of the selector ID.
- targets
Sequence[Target
Reference] - List of Target references.
- filter
Simple
Filter - 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
[]Target
Reference Response - List of Target references.
- Filter
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
List<Target
Reference Response> - List of Target references.
- filter
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
Target
Reference Response[] - List of Target references.
- filter
Simple
Filter Response - Model that represents available filter types that can be applied to a targets list.
- id str
- String of the selector ID.
- targets
Sequence[Target
Reference Response] - List of Target references.
- filter
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 List<Property Map>
- List of Target references.
- filter Property Map
- Model that represents available filter types that can be applied to a targets list.
ManagedServiceIdentityType, ManagedServiceIdentityTypeArgs
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- Managed
Service Identity Type None - None
- Managed
Service Identity Type System Assigned - SystemAssigned
- Managed
Service Identity Type User Assigned - UserAssigned
- Managed
Service Identity Type_System Assigned_User Assigned - SystemAssigned,UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- NONE
- None
- SYSTEM_ASSIGNED
- SystemAssigned
- USER_ASSIGNED
- UserAssigned
- SYSTEM_ASSIGNED_USER_ASSIGNED
- SystemAssigned,UserAssigned
- "None"
- None
- "System
Assigned" - SystemAssigned
- "User
Assigned" - UserAssigned
- "System
Assigned,User Assigned" - SystemAssigned,UserAssigned
QuerySelector, QuerySelectorArgs
- Id string
- String of the selector ID.
- Query
String string - Azure Resource Graph (ARG) Query Language query for target resources.
- Subscription
Ids 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.
- Query
String string - Azure Resource Graph (ARG) Query Language query for target resources.
- Subscription
Ids []string - Subscription id list to scope resource query.
- Filter
Simple
Filter - Model that represents available filter types that can be applied to a targets list.
- id String
- String of the selector ID.
- query
String String - Azure Resource Graph (ARG) Query Language query for target resources.
- subscription
Ids List<String> - Subscription id list to scope resource query.
- filter
Simple
Filter - Model that represents available filter types that can be applied to a targets list.
- id string
- String of the selector ID.
- query
String string - Azure Resource Graph (ARG) Query Language query for target resources.
- subscription
Ids string[] - Subscription id list to scope resource query.
- filter
Simple
Filter - 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
Simple
Filter - Model that represents available filter types that can be applied to a targets list.
- id String
- String of the selector ID.
- query
String String - Azure Resource Graph (ARG) Query Language query for target resources.
- subscription
Ids 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.
- Query
String string - Azure Resource Graph (ARG) Query Language query for target resources.
- Subscription
Ids 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.
- Query
String string - Azure Resource Graph (ARG) Query Language query for target resources.
- Subscription
Ids []string - Subscription id list to scope resource query.
- Filter
Simple
Filter Response - Model that represents available filter types that can be applied to a targets list.
- id String
- String of the selector ID.
- query
String String - Azure Resource Graph (ARG) Query Language query for target resources.
- subscription
Ids List<String> - Subscription id list to scope resource query.
- filter
Simple
Filter Response - Model that represents available filter types that can be applied to a targets list.
- id string
- String of the selector ID.
- query
String string - Azure Resource Graph (ARG) Query Language query for target resources.
- subscription
Ids string[] - Subscription id list to scope resource query.
- filter
Simple
Filter 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
Simple
Filter Response - Model that represents available filter types that can be applied to a targets list.
- id String
- String of the selector ID.
- query
String String - Azure Resource Graph (ARG) Query Language query for target resources.
- subscription
Ids 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.
SimpleFilter, SimpleFilterArgs
- Parameters
Pulumi.
Azure Native. Chaos. Inputs. Simple Filter Parameters - Model that represents the Simple filter parameters.
- Parameters
Simple
Filter Parameters - Model that represents the Simple filter parameters.
- parameters
Simple
Filter Parameters - Model that represents the Simple filter parameters.
- parameters
Simple
Filter Parameters - Model that represents the Simple filter parameters.
- parameters
Simple
Filter 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
Simple
Filter Parameters Response - Model that represents the Simple filter parameters.
- parameters
Simple
Filter Parameters Response - Model that represents the Simple filter parameters.
- parameters
Simple
Filter Parameters Response - Model that represents the Simple filter parameters.
- parameters
Simple
Filter 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
[]Branch
Response - List of branches.
- Name string
- String of the step name.
- branches
List<Branch
Response> - List of branches.
- name String
- String of the step name.
- branches
Branch
Response[] - List of branches.
- name string
- String of the step name.
- branches
Sequence[Branch
Response] - 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
- 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.
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 | Target
Reference Type - Enum of the Target reference type.
- id String
- String of the resource ID of a Target resource.
- type
String | Target
Reference Type - Enum of the Target reference type.
- id string
- String of the resource ID of a Target resource.
- type
string | Target
Reference Type - Enum of the Target reference type.
- id str
- String of the resource ID of a Target resource.
- type
str | Target
Reference Type - Enum of the Target reference type.
- id String
- String of the resource ID of a Target resource.
- type
String | "Chaos
Target" - Enum of the Target reference type.
TargetReferenceResponse, TargetReferenceResponseArgs
TargetReferenceType, TargetReferenceTypeArgs
- Chaos
Target - ChaosTarget
- Target
Reference Type Chaos Target - ChaosTarget
- Chaos
Target - ChaosTarget
- Chaos
Target - ChaosTarget
- CHAOS_TARGET
- ChaosTarget
- "Chaos
Target" - ChaosTarget
UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs
- Client
Id string - The client ID of the assigned identity.
- Principal
Id string - The principal ID of the assigned identity.
- Client
Id string - The client ID of the assigned identity.
- Principal
Id string - The principal ID of the assigned identity.
- client
Id String - The client ID of the assigned identity.
- principal
Id String - The principal ID of the assigned identity.
- client
Id string - The client ID of the assigned identity.
- principal
Id 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.
- client
Id String - The client ID of the assigned identity.
- principal
Id String - The principal ID of the assigned identity.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0