import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Manages a Chaos Studio Experiment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = new azure.core.ResourceGroup("example", { * name: "example", * location: "westeurope", * }); * const exampleUserAssignedIdentity = new azure.authorization.UserAssignedIdentity("example", { * resourceGroupName: example.name, * location: example.location, * name: "example", * }); * const exampleVirtualNetwork = new azure.network.VirtualNetwork("example", { * name: "example", * addressSpaces: ["10.0.0.0/16"], * location: example.location, * resourceGroupName: example.name, * }); * const exampleSubnet = new azure.network.Subnet("example", { * name: "internal", * resourceGroupName: example.name, * virtualNetworkName: exampleVirtualNetwork.name, * addressPrefixes: ["10.0.2.0/24"], * }); * const exampleNetworkInterface = new azure.network.NetworkInterface("example", { * name: "example", * location: example.location, * resourceGroupName: example.name, * ipConfigurations: [{ * name: "example", * subnetId: exampleSubnet.id, * privateIpAddressAllocation: "Dynamic", * }], * }); * const exampleLinuxVirtualMachine = new azure.compute.LinuxVirtualMachine("example", { * name: "example", * resourceGroupName: example.name, * location: example.location, * size: "Standard_F2", * adminUsername: "adminuser", * adminPassword: "example", * disablePasswordAuthentication: false, * networkInterfaceIds: [exampleNetworkInterface.id], * osDisk: { * caching: "ReadWrite", * storageAccountType: "Standard_LRS", * }, * sourceImageReference: { * publisher: "Canonical", * offer: "0001-com-ubuntu-server-jammy", * sku: "22_04-lts", * version: "latest", * }, * }); * const exampleTarget = new azure.chaosstudio.Target("example", { * location: example.location, * targetResourceId: exampleLinuxVirtualMachine.id, * targetType: "Microsoft-VirtualMachine", * }); * const exampleCapability = new azure.chaosstudio.Capability("example", { * chaosStudioTargetId: exampleTarget.id, * capabilityType: "Shutdown-1.0", * }); * const exampleExperiment = new azure.chaosstudio.Experiment("example", { * location: example.location, * name: "example", * resourceGroupName: example.name, * identity: { * type: "SystemAssigned", * }, * selectors: [{ * name: "Selector1", * chaosStudioTargetIds: [exampleTarget.id], * }], * steps: [{ * name: "example", * branches: [{ * name: "example", * actions: [{ * urn: exampleCapability.capabilityUrn, * selectorName: "Selector1", * parameters: { * abruptShutdown: "false", * }, * actionType: "continuous", * duration: "PT10M", * }], * }], * }], * }); * ``` * * ## API Providers * * * This resource uses the following Azure API Providers: * * * `Microsoft.Chaos` - 2023-11-01 * * ## Import * * Chaos Studio Experiments can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:chaosstudio/experiment:Experiment example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Chaos/experiments/experiment1 * ``` */ export declare class Experiment extends pulumi.CustomResource { /** * Get an existing Experiment resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: ExperimentState, opts?: pulumi.CustomResourceOptions): Experiment; /** * Returns true if the given object is an instance of Experiment. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is Experiment; /** * A `identity` block as defined below. */ readonly identity: pulumi.Output; /** * The Azure Region where the Chaos Studio Experiment should exist. Changing this forces a new Chaos Studio Experiment to be created. */ readonly location: pulumi.Output; /** * The name which should be used for this Chaos Studio Experiment. Changing this forces a new Chaos Studio Experiment to be created. */ readonly name: pulumi.Output; /** * The name of the Resource Group where the Chaos Studio Experiment should exist. Changing this forces a new Chaos Studio Experiment to be created. */ readonly resourceGroupName: pulumi.Output; /** * One or more `selectors` blocks as defined below. */ readonly selectors: pulumi.Output; /** * One or more `steps` blocks as defined below. */ readonly steps: pulumi.Output; /** * Create a Experiment resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: ExperimentArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Experiment resources. */ export interface ExperimentState { /** * A `identity` block as defined below. */ identity?: pulumi.Input; /** * The Azure Region where the Chaos Studio Experiment should exist. Changing this forces a new Chaos Studio Experiment to be created. */ location?: pulumi.Input; /** * The name which should be used for this Chaos Studio Experiment. Changing this forces a new Chaos Studio Experiment to be created. */ name?: pulumi.Input; /** * The name of the Resource Group where the Chaos Studio Experiment should exist. Changing this forces a new Chaos Studio Experiment to be created. */ resourceGroupName?: pulumi.Input; /** * One or more `selectors` blocks as defined below. */ selectors?: pulumi.Input[]>; /** * One or more `steps` blocks as defined below. */ steps?: pulumi.Input[]>; } /** * The set of arguments for constructing a Experiment resource. */ export interface ExperimentArgs { /** * A `identity` block as defined below. */ identity?: pulumi.Input; /** * The Azure Region where the Chaos Studio Experiment should exist. Changing this forces a new Chaos Studio Experiment to be created. */ location?: pulumi.Input; /** * The name which should be used for this Chaos Studio Experiment. Changing this forces a new Chaos Studio Experiment to be created. */ name?: pulumi.Input; /** * The name of the Resource Group where the Chaos Studio Experiment should exist. Changing this forces a new Chaos Studio Experiment to be created. */ resourceGroupName: pulumi.Input; /** * One or more `selectors` blocks as defined below. */ selectors: pulumi.Input[]>; /** * One or more `steps` blocks as defined below. */ steps: pulumi.Input[]>; }