azure-native.network.Experiment
Explore with Pulumi AI
Defines the properties of an Experiment API Version: 2019-11-01.
Example Usage
Creates an Experiment
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var experiment = new AzureNative.Network.Experiment("experiment", new()
{
Description = "this is my first experiment!",
EnabledState = "Enabled",
EndpointA = new AzureNative.Network.Inputs.ExperimentEndpointArgs
{
Endpoint = "endpointA.net",
Name = "endpoint A",
},
EndpointB = new AzureNative.Network.Inputs.ExperimentEndpointArgs
{
Endpoint = "endpointB.net",
Name = "endpoint B",
},
ExperimentName = "MyExperiment",
ProfileName = "MyProfile",
ResourceGroupName = "MyResourceGroup",
});
});
package main
import (
network "github.com/pulumi/pulumi-azure-native-sdk/network"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := network.NewExperiment(ctx, "experiment", &network.ExperimentArgs{
Description: pulumi.String("this is my first experiment!"),
EnabledState: pulumi.String("Enabled"),
EndpointA: &network.ExperimentEndpointArgs{
Endpoint: pulumi.String("endpointA.net"),
Name: pulumi.String("endpoint A"),
},
EndpointB: &network.ExperimentEndpointArgs{
Endpoint: pulumi.String("endpointB.net"),
Name: pulumi.String("endpoint B"),
},
ExperimentName: pulumi.String("MyExperiment"),
ProfileName: pulumi.String("MyProfile"),
ResourceGroupName: pulumi.String("MyResourceGroup"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.network.Experiment;
import com.pulumi.azurenative.network.ExperimentArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var experiment = new Experiment("experiment", ExperimentArgs.builder()
.description("this is my first experiment!")
.enabledState("Enabled")
.endpointA(Map.ofEntries(
Map.entry("endpoint", "endpointA.net"),
Map.entry("name", "endpoint A")
))
.endpointB(Map.ofEntries(
Map.entry("endpoint", "endpointB.net"),
Map.entry("name", "endpoint B")
))
.experimentName("MyExperiment")
.profileName("MyProfile")
.resourceGroupName("MyResourceGroup")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
experiment = azure_native.network.Experiment("experiment",
description="this is my first experiment!",
enabled_state="Enabled",
endpoint_a=azure_native.network.ExperimentEndpointArgs(
endpoint="endpointA.net",
name="endpoint A",
),
endpoint_b=azure_native.network.ExperimentEndpointArgs(
endpoint="endpointB.net",
name="endpoint B",
),
experiment_name="MyExperiment",
profile_name="MyProfile",
resource_group_name="MyResourceGroup")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const experiment = new azure_native.network.Experiment("experiment", {
description: "this is my first experiment!",
enabledState: "Enabled",
endpointA: {
endpoint: "endpointA.net",
name: "endpoint A",
},
endpointB: {
endpoint: "endpointB.net",
name: "endpoint B",
},
experimentName: "MyExperiment",
profileName: "MyProfile",
resourceGroupName: "MyResourceGroup",
});
resources:
experiment:
type: azure-native:network:Experiment
properties:
description: this is my first experiment!
enabledState: Enabled
endpointA:
endpoint: endpointA.net
name: endpoint A
endpointB:
endpoint: endpointB.net
name: endpoint B
experimentName: MyExperiment
profileName: MyProfile
resourceGroupName: MyResourceGroup
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,
profile_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
description: Optional[str] = None,
enabled_state: Optional[Union[str, State]] = None,
endpoint_a: Optional[ExperimentEndpointArgs] = None,
endpoint_b: Optional[ExperimentEndpointArgs] = None,
experiment_name: Optional[str] = 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:network: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 azure_nativeExperimentResource = new AzureNative.Network.Experiment("azure-nativeExperimentResource", new()
{
ProfileName = "string",
ResourceGroupName = "string",
Description = "string",
EnabledState = "string",
EndpointA =
{
{ "endpoint", "string" },
{ "name", "string" },
},
EndpointB =
{
{ "endpoint", "string" },
{ "name", "string" },
},
ExperimentName = "string",
Location = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := network.NewExperiment(ctx, "azure-nativeExperimentResource", &network.ExperimentArgs{
ProfileName: "string",
ResourceGroupName: "string",
Description: "string",
EnabledState: "string",
EndpointA: map[string]interface{}{
"endpoint": "string",
"name": "string",
},
EndpointB: map[string]interface{}{
"endpoint": "string",
"name": "string",
},
ExperimentName: "string",
Location: "string",
Tags: map[string]interface{}{
"string": "string",
},
})
var azure_nativeExperimentResource = new Experiment("azure-nativeExperimentResource", ExperimentArgs.builder()
.profileName("string")
.resourceGroupName("string")
.description("string")
.enabledState("string")
.endpointA(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.endpointB(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.experimentName("string")
.location("string")
.tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.build());
azure_native_experiment_resource = azure_native.network.Experiment("azure-nativeExperimentResource",
profile_name=string,
resource_group_name=string,
description=string,
enabled_state=string,
endpoint_a={
endpoint: string,
name: string,
},
endpoint_b={
endpoint: string,
name: string,
},
experiment_name=string,
location=string,
tags={
string: string,
})
const azure_nativeExperimentResource = new azure_native.network.Experiment("azure-nativeExperimentResource", {
profileName: "string",
resourceGroupName: "string",
description: "string",
enabledState: "string",
endpointA: {
endpoint: "string",
name: "string",
},
endpointB: {
endpoint: "string",
name: "string",
},
experimentName: "string",
location: "string",
tags: {
string: "string",
},
});
type: azure-native:network:Experiment
properties:
description: string
enabledState: string
endpointA:
endpoint: string
name: string
endpointB:
endpoint: string
name: string
experimentName: string
location: string
profileName: 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
The Experiment resource accepts the following input properties:
- Profile
Name string - The Profile identifier associated with the Tenant and Partner
- Resource
Group stringName - Name of the Resource group within the Azure subscription.
- Description string
- The description of the details or intents of the Experiment
- Enabled
State string | Pulumi.Azure Native. Network. State - The state of the Experiment
- Endpoint
A Pulumi.Azure Native. Network. Inputs. Experiment Endpoint - The endpoint A of an experiment
- Endpoint
B Pulumi.Azure Native. Network. Inputs. Experiment Endpoint - The endpoint B of an experiment
- Experiment
Name string - The Experiment identifier associated with the Experiment
- Location string
- Resource location.
- Dictionary<string, string>
- Resource tags.
- Profile
Name string - The Profile identifier associated with the Tenant and Partner
- Resource
Group stringName - Name of the Resource group within the Azure subscription.
- Description string
- The description of the details or intents of the Experiment
- Enabled
State string | State - The state of the Experiment
- Endpoint
A ExperimentEndpoint Args - The endpoint A of an experiment
- Endpoint
B ExperimentEndpoint Args - The endpoint B of an experiment
- Experiment
Name string - The Experiment identifier associated with the Experiment
- Location string
- Resource location.
- map[string]string
- Resource tags.
- profile
Name String - The Profile identifier associated with the Tenant and Partner
- resource
Group StringName - Name of the Resource group within the Azure subscription.
- description String
- The description of the details or intents of the Experiment
- enabled
State String | State - The state of the Experiment
- endpoint
A ExperimentEndpoint - The endpoint A of an experiment
- endpoint
B ExperimentEndpoint - The endpoint B of an experiment
- experiment
Name String - The Experiment identifier associated with the Experiment
- location String
- Resource location.
- Map<String,String>
- Resource tags.
- profile
Name string - The Profile identifier associated with the Tenant and Partner
- resource
Group stringName - Name of the Resource group within the Azure subscription.
- description string
- The description of the details or intents of the Experiment
- enabled
State string | State - The state of the Experiment
- endpoint
A ExperimentEndpoint - The endpoint A of an experiment
- endpoint
B ExperimentEndpoint - The endpoint B of an experiment
- experiment
Name string - The Experiment identifier associated with the Experiment
- location string
- Resource location.
- {[key: string]: string}
- Resource tags.
- profile_
name str - The Profile identifier associated with the Tenant and Partner
- resource_
group_ strname - Name of the Resource group within the Azure subscription.
- description str
- The description of the details or intents of the Experiment
- enabled_
state str | State - The state of the Experiment
- endpoint_
a ExperimentEndpoint Args - The endpoint A of an experiment
- endpoint_
b ExperimentEndpoint Args - The endpoint B of an experiment
- experiment_
name str - The Experiment identifier associated with the Experiment
- location str
- Resource location.
- Mapping[str, str]
- Resource tags.
- profile
Name String - The Profile identifier associated with the Tenant and Partner
- resource
Group StringName - Name of the Resource group within the Azure subscription.
- description String
- The description of the details or intents of the Experiment
- enabled
State String | "Enabled" | "Disabled" - The state of the Experiment
- endpoint
A Property Map - The endpoint A of an experiment
- endpoint
B Property Map - The endpoint B of an experiment
- experiment
Name String - The Experiment identifier associated with the Experiment
- location String
- Resource location.
- 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
- Resource name.
- Resource
State string - Resource status.
- Script
File stringUri - The uri to the Script used in the Experiment
- Status string
- The description of Experiment status from the server side
- Type string
- Resource type.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Resource name.
- Resource
State string - Resource status.
- Script
File stringUri - The uri to the Script used in the Experiment
- Status string
- The description of Experiment status from the server side
- Type string
- Resource type.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Resource name.
- resource
State String - Resource status.
- script
File StringUri - The uri to the Script used in the Experiment
- status String
- The description of Experiment status from the server side
- type String
- Resource type.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Resource name.
- resource
State string - Resource status.
- script
File stringUri - The uri to the Script used in the Experiment
- status string
- The description of Experiment status from the server side
- type string
- Resource type.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Resource name.
- resource_
state str - Resource status.
- script_
file_ struri - The uri to the Script used in the Experiment
- status str
- The description of Experiment status from the server side
- type str
- Resource type.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Resource name.
- resource
State String - Resource status.
- script
File StringUri - The uri to the Script used in the Experiment
- status String
- The description of Experiment status from the server side
- type String
- Resource type.
Supporting Types
ExperimentEndpoint, ExperimentEndpointArgs
ExperimentEndpointResponse, ExperimentEndpointResponseArgs
State, StateArgs
- Enabled
- Enabled
- Disabled
- Disabled
- State
Enabled - Enabled
- State
Disabled - Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- ENABLED
- Enabled
- DISABLED
- Disabled
- "Enabled"
- Enabled
- "Disabled"
- Disabled
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:network:Experiment MyExperiment /subscriptions/subid/resourceGroups/MyResourceGroup/providers/Microsoft.Network/NetworkExperimentProfiles/MyProfile/Experiments/MyExperiment
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0