1. Packages
  2. Alibaba Cloud Provider
  3. API Docs
  4. pai
  5. WorkspaceExperiment
Alibaba Cloud v3.75.0 published on Friday, Mar 7, 2025 by Pulumi

alicloud.pai.WorkspaceExperiment

Explore with Pulumi AI

alicloud logo
Alibaba Cloud v3.75.0 published on Friday, Mar 7, 2025 by Pulumi

    Provides a PAI Workspace Experiment resource.

    For information about PAI Workspace Experiment and how to use it, see What is Experiment.

    NOTE: Available since v1.236.0.

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as alicloud from "@pulumi/alicloud";
    
    const config = new pulumi.Config();
    const name = config.get("name") || "terraform_example";
    const defaultDI9fsL = new alicloud.pai.WorkspaceWorkspace("defaultDI9fsL", {
        description: name,
        displayName: name,
        workspaceName: name,
        envTypes: ["prod"],
    });
    const _default = new alicloud.pai.WorkspaceExperiment("default", {
        accessibility: "PRIVATE",
        artifactUri: "oss://yyt-409262.oss-cn-hangzhou.aliyuncs.com/example/",
        experimentName: name,
        workspaceId: defaultDI9fsL.id,
    });
    
    import pulumi
    import pulumi_alicloud as alicloud
    
    config = pulumi.Config()
    name = config.get("name")
    if name is None:
        name = "terraform_example"
    default_di9fs_l = alicloud.pai.WorkspaceWorkspace("defaultDI9fsL",
        description=name,
        display_name=name,
        workspace_name=name,
        env_types=["prod"])
    default = alicloud.pai.WorkspaceExperiment("default",
        accessibility="PRIVATE",
        artifact_uri="oss://yyt-409262.oss-cn-hangzhou.aliyuncs.com/example/",
        experiment_name=name,
        workspace_id=default_di9fs_l.id)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/pai"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		cfg := config.New(ctx, "")
    		name := "terraform_example"
    		if param := cfg.Get("name"); param != "" {
    			name = param
    		}
    		defaultDI9fsL, err := pai.NewWorkspaceWorkspace(ctx, "defaultDI9fsL", &pai.WorkspaceWorkspaceArgs{
    			Description:   pulumi.String(name),
    			DisplayName:   pulumi.String(name),
    			WorkspaceName: pulumi.String(name),
    			EnvTypes: pulumi.StringArray{
    				pulumi.String("prod"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_, err = pai.NewWorkspaceExperiment(ctx, "default", &pai.WorkspaceExperimentArgs{
    			Accessibility:  pulumi.String("PRIVATE"),
    			ArtifactUri:    pulumi.String("oss://yyt-409262.oss-cn-hangzhou.aliyuncs.com/example/"),
    			ExperimentName: pulumi.String(name),
    			WorkspaceId:    defaultDI9fsL.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AliCloud = Pulumi.AliCloud;
    
    return await Deployment.RunAsync(() => 
    {
        var config = new Config();
        var name = config.Get("name") ?? "terraform_example";
        var defaultDI9fsL = new AliCloud.Pai.WorkspaceWorkspace("defaultDI9fsL", new()
        {
            Description = name,
            DisplayName = name,
            WorkspaceName = name,
            EnvTypes = new[]
            {
                "prod",
            },
        });
    
        var @default = new AliCloud.Pai.WorkspaceExperiment("default", new()
        {
            Accessibility = "PRIVATE",
            ArtifactUri = "oss://yyt-409262.oss-cn-hangzhou.aliyuncs.com/example/",
            ExperimentName = name,
            WorkspaceId = defaultDI9fsL.Id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.alicloud.pai.WorkspaceWorkspace;
    import com.pulumi.alicloud.pai.WorkspaceWorkspaceArgs;
    import com.pulumi.alicloud.pai.WorkspaceExperiment;
    import com.pulumi.alicloud.pai.WorkspaceExperimentArgs;
    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) {
            final var config = ctx.config();
            final var name = config.get("name").orElse("terraform_example");
            var defaultDI9fsL = new WorkspaceWorkspace("defaultDI9fsL", WorkspaceWorkspaceArgs.builder()
                .description(name)
                .displayName(name)
                .workspaceName(name)
                .envTypes("prod")
                .build());
    
            var default_ = new WorkspaceExperiment("default", WorkspaceExperimentArgs.builder()
                .accessibility("PRIVATE")
                .artifactUri("oss://yyt-409262.oss-cn-hangzhou.aliyuncs.com/example/")
                .experimentName(name)
                .workspaceId(defaultDI9fsL.id())
                .build());
    
        }
    }
    
    configuration:
      name:
        type: string
        default: terraform_example
    resources:
      defaultDI9fsL:
        type: alicloud:pai:WorkspaceWorkspace
        properties:
          description: ${name}
          displayName: ${name}
          workspaceName: ${name}
          envTypes:
            - prod
      default:
        type: alicloud:pai:WorkspaceExperiment
        properties:
          accessibility: PRIVATE
          artifactUri: oss://yyt-409262.oss-cn-hangzhou.aliyuncs.com/example/
          experimentName: ${name}
          workspaceId: ${defaultDI9fsL.id}
    

    Create WorkspaceExperiment Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new WorkspaceExperiment(name: string, args: WorkspaceExperimentArgs, opts?: CustomResourceOptions);
    @overload
    def WorkspaceExperiment(resource_name: str,
                            args: WorkspaceExperimentArgs,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def WorkspaceExperiment(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            artifact_uri: Optional[str] = None,
                            experiment_name: Optional[str] = None,
                            workspace_id: Optional[str] = None,
                            accessibility: Optional[str] = None)
    func NewWorkspaceExperiment(ctx *Context, name string, args WorkspaceExperimentArgs, opts ...ResourceOption) (*WorkspaceExperiment, error)
    public WorkspaceExperiment(string name, WorkspaceExperimentArgs args, CustomResourceOptions? opts = null)
    public WorkspaceExperiment(String name, WorkspaceExperimentArgs args)
    public WorkspaceExperiment(String name, WorkspaceExperimentArgs args, CustomResourceOptions options)
    
    type: alicloud:pai:WorkspaceExperiment
    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 WorkspaceExperimentArgs
    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 WorkspaceExperimentArgs
    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 WorkspaceExperimentArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args WorkspaceExperimentArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args WorkspaceExperimentArgs
    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 workspaceExperimentResource = new AliCloud.Pai.WorkspaceExperiment("workspaceExperimentResource", new()
    {
        ArtifactUri = "string",
        ExperimentName = "string",
        WorkspaceId = "string",
        Accessibility = "string",
    });
    
    example, err := pai.NewWorkspaceExperiment(ctx, "workspaceExperimentResource", &pai.WorkspaceExperimentArgs{
    	ArtifactUri:    pulumi.String("string"),
    	ExperimentName: pulumi.String("string"),
    	WorkspaceId:    pulumi.String("string"),
    	Accessibility:  pulumi.String("string"),
    })
    
    var workspaceExperimentResource = new WorkspaceExperiment("workspaceExperimentResource", WorkspaceExperimentArgs.builder()
        .artifactUri("string")
        .experimentName("string")
        .workspaceId("string")
        .accessibility("string")
        .build());
    
    workspace_experiment_resource = alicloud.pai.WorkspaceExperiment("workspaceExperimentResource",
        artifact_uri="string",
        experiment_name="string",
        workspace_id="string",
        accessibility="string")
    
    const workspaceExperimentResource = new alicloud.pai.WorkspaceExperiment("workspaceExperimentResource", {
        artifactUri: "string",
        experimentName: "string",
        workspaceId: "string",
        accessibility: "string",
    });
    
    type: alicloud:pai:WorkspaceExperiment
    properties:
        accessibility: string
        artifactUri: string
        experimentName: string
        workspaceId: string
    

    WorkspaceExperiment 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 WorkspaceExperiment resource accepts the following input properties:

    ArtifactUri string
    ArtifactUri is default OSS storage path of the output of trials in the experiment
    ExperimentName string
    Name is the name of the experiment, unique in a namespace
    WorkspaceId string
    WorkspaceId is the workspace id which contains the experiment
    Accessibility string
    Experimental Visibility
    ArtifactUri string
    ArtifactUri is default OSS storage path of the output of trials in the experiment
    ExperimentName string
    Name is the name of the experiment, unique in a namespace
    WorkspaceId string
    WorkspaceId is the workspace id which contains the experiment
    Accessibility string
    Experimental Visibility
    artifactUri String
    ArtifactUri is default OSS storage path of the output of trials in the experiment
    experimentName String
    Name is the name of the experiment, unique in a namespace
    workspaceId String
    WorkspaceId is the workspace id which contains the experiment
    accessibility String
    Experimental Visibility
    artifactUri string
    ArtifactUri is default OSS storage path of the output of trials in the experiment
    experimentName string
    Name is the name of the experiment, unique in a namespace
    workspaceId string
    WorkspaceId is the workspace id which contains the experiment
    accessibility string
    Experimental Visibility
    artifact_uri str
    ArtifactUri is default OSS storage path of the output of trials in the experiment
    experiment_name str
    Name is the name of the experiment, unique in a namespace
    workspace_id str
    WorkspaceId is the workspace id which contains the experiment
    accessibility str
    Experimental Visibility
    artifactUri String
    ArtifactUri is default OSS storage path of the output of trials in the experiment
    experimentName String
    Name is the name of the experiment, unique in a namespace
    workspaceId String
    WorkspaceId is the workspace id which contains the experiment
    accessibility String
    Experimental Visibility

    Outputs

    All input properties are implicitly available as output properties. Additionally, the WorkspaceExperiment resource produces the following output properties:

    CreateTime string
    GmtCreateTime is time when this entity is created.
    Id string
    The provider-assigned unique ID for this managed resource.
    CreateTime string
    GmtCreateTime is time when this entity is created.
    Id string
    The provider-assigned unique ID for this managed resource.
    createTime String
    GmtCreateTime is time when this entity is created.
    id String
    The provider-assigned unique ID for this managed resource.
    createTime string
    GmtCreateTime is time when this entity is created.
    id string
    The provider-assigned unique ID for this managed resource.
    create_time str
    GmtCreateTime is time when this entity is created.
    id str
    The provider-assigned unique ID for this managed resource.
    createTime String
    GmtCreateTime is time when this entity is created.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing WorkspaceExperiment Resource

    Get an existing WorkspaceExperiment resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: WorkspaceExperimentState, opts?: CustomResourceOptions): WorkspaceExperiment
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            accessibility: Optional[str] = None,
            artifact_uri: Optional[str] = None,
            create_time: Optional[str] = None,
            experiment_name: Optional[str] = None,
            workspace_id: Optional[str] = None) -> WorkspaceExperiment
    func GetWorkspaceExperiment(ctx *Context, name string, id IDInput, state *WorkspaceExperimentState, opts ...ResourceOption) (*WorkspaceExperiment, error)
    public static WorkspaceExperiment Get(string name, Input<string> id, WorkspaceExperimentState? state, CustomResourceOptions? opts = null)
    public static WorkspaceExperiment get(String name, Output<String> id, WorkspaceExperimentState state, CustomResourceOptions options)
    resources:  _:    type: alicloud:pai:WorkspaceExperiment    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Accessibility string
    Experimental Visibility
    ArtifactUri string
    ArtifactUri is default OSS storage path of the output of trials in the experiment
    CreateTime string
    GmtCreateTime is time when this entity is created.
    ExperimentName string
    Name is the name of the experiment, unique in a namespace
    WorkspaceId string
    WorkspaceId is the workspace id which contains the experiment
    Accessibility string
    Experimental Visibility
    ArtifactUri string
    ArtifactUri is default OSS storage path of the output of trials in the experiment
    CreateTime string
    GmtCreateTime is time when this entity is created.
    ExperimentName string
    Name is the name of the experiment, unique in a namespace
    WorkspaceId string
    WorkspaceId is the workspace id which contains the experiment
    accessibility String
    Experimental Visibility
    artifactUri String
    ArtifactUri is default OSS storage path of the output of trials in the experiment
    createTime String
    GmtCreateTime is time when this entity is created.
    experimentName String
    Name is the name of the experiment, unique in a namespace
    workspaceId String
    WorkspaceId is the workspace id which contains the experiment
    accessibility string
    Experimental Visibility
    artifactUri string
    ArtifactUri is default OSS storage path of the output of trials in the experiment
    createTime string
    GmtCreateTime is time when this entity is created.
    experimentName string
    Name is the name of the experiment, unique in a namespace
    workspaceId string
    WorkspaceId is the workspace id which contains the experiment
    accessibility str
    Experimental Visibility
    artifact_uri str
    ArtifactUri is default OSS storage path of the output of trials in the experiment
    create_time str
    GmtCreateTime is time when this entity is created.
    experiment_name str
    Name is the name of the experiment, unique in a namespace
    workspace_id str
    WorkspaceId is the workspace id which contains the experiment
    accessibility String
    Experimental Visibility
    artifactUri String
    ArtifactUri is default OSS storage path of the output of trials in the experiment
    createTime String
    GmtCreateTime is time when this entity is created.
    experimentName String
    Name is the name of the experiment, unique in a namespace
    workspaceId String
    WorkspaceId is the workspace id which contains the experiment

    Import

    PAI Workspace Experiment can be imported using the id, e.g.

    $ pulumi import alicloud:pai/workspaceExperiment:WorkspaceExperiment example <id>
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Alibaba Cloud pulumi/pulumi-alicloud
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the alicloud Terraform Provider.
    alicloud logo
    Alibaba Cloud v3.75.0 published on Friday, Mar 7, 2025 by Pulumi