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

alicloud.pai.WorkspaceDatasetversion

Explore with Pulumi AI

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

    Provides a PAI Workspace Datasetversion resource.

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

    NOTE: Available since v1.236.0.

    Create WorkspaceDatasetversion Resource

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

    Constructor syntax

    new WorkspaceDatasetversion(name: string, args: WorkspaceDatasetversionArgs, opts?: CustomResourceOptions);
    @overload
    def WorkspaceDatasetversion(resource_name: str,
                                args: WorkspaceDatasetversionArgs,
                                opts: Optional[ResourceOptions] = None)
    
    @overload
    def WorkspaceDatasetversion(resource_name: str,
                                opts: Optional[ResourceOptions] = None,
                                data_source_type: Optional[str] = None,
                                dataset_id: Optional[str] = None,
                                property: Optional[str] = None,
                                uri: Optional[str] = None,
                                data_count: Optional[int] = None,
                                data_size: Optional[int] = None,
                                description: Optional[str] = None,
                                labels: Optional[Sequence[WorkspaceDatasetversionLabelArgs]] = None,
                                options: Optional[str] = None,
                                source_id: Optional[str] = None,
                                source_type: Optional[str] = None)
    func NewWorkspaceDatasetversion(ctx *Context, name string, args WorkspaceDatasetversionArgs, opts ...ResourceOption) (*WorkspaceDatasetversion, error)
    public WorkspaceDatasetversion(string name, WorkspaceDatasetversionArgs args, CustomResourceOptions? opts = null)
    public WorkspaceDatasetversion(String name, WorkspaceDatasetversionArgs args)
    public WorkspaceDatasetversion(String name, WorkspaceDatasetversionArgs args, CustomResourceOptions options)
    
    type: alicloud:pai:WorkspaceDatasetversion
    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 WorkspaceDatasetversionArgs
    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 WorkspaceDatasetversionArgs
    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 WorkspaceDatasetversionArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args WorkspaceDatasetversionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args WorkspaceDatasetversionArgs
    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 workspaceDatasetversionResource = new AliCloud.Pai.WorkspaceDatasetversion("workspaceDatasetversionResource", new()
    {
        DataSourceType = "string",
        DatasetId = "string",
        Property = "string",
        Uri = "string",
        DataCount = 0,
        DataSize = 0,
        Description = "string",
        Labels = new[]
        {
            new AliCloud.Pai.Inputs.WorkspaceDatasetversionLabelArgs
            {
                Key = "string",
                Value = "string",
            },
        },
        Options = "string",
        SourceId = "string",
        SourceType = "string",
    });
    
    example, err := pai.NewWorkspaceDatasetversion(ctx, "workspaceDatasetversionResource", &pai.WorkspaceDatasetversionArgs{
    	DataSourceType: pulumi.String("string"),
    	DatasetId:      pulumi.String("string"),
    	Property:       pulumi.String("string"),
    	Uri:            pulumi.String("string"),
    	DataCount:      pulumi.Int(0),
    	DataSize:       pulumi.Int(0),
    	Description:    pulumi.String("string"),
    	Labels: pai.WorkspaceDatasetversionLabelArray{
    		&pai.WorkspaceDatasetversionLabelArgs{
    			Key:   pulumi.String("string"),
    			Value: pulumi.String("string"),
    		},
    	},
    	Options:    pulumi.String("string"),
    	SourceId:   pulumi.String("string"),
    	SourceType: pulumi.String("string"),
    })
    
    var workspaceDatasetversionResource = new WorkspaceDatasetversion("workspaceDatasetversionResource", WorkspaceDatasetversionArgs.builder()
        .dataSourceType("string")
        .datasetId("string")
        .property("string")
        .uri("string")
        .dataCount(0)
        .dataSize(0)
        .description("string")
        .labels(WorkspaceDatasetversionLabelArgs.builder()
            .key("string")
            .value("string")
            .build())
        .options("string")
        .sourceId("string")
        .sourceType("string")
        .build());
    
    workspace_datasetversion_resource = alicloud.pai.WorkspaceDatasetversion("workspaceDatasetversionResource",
        data_source_type="string",
        dataset_id="string",
        property="string",
        uri="string",
        data_count=0,
        data_size=0,
        description="string",
        labels=[{
            "key": "string",
            "value": "string",
        }],
        options="string",
        source_id="string",
        source_type="string")
    
    const workspaceDatasetversionResource = new alicloud.pai.WorkspaceDatasetversion("workspaceDatasetversionResource", {
        dataSourceType: "string",
        datasetId: "string",
        property: "string",
        uri: "string",
        dataCount: 0,
        dataSize: 0,
        description: "string",
        labels: [{
            key: "string",
            value: "string",
        }],
        options: "string",
        sourceId: "string",
        sourceType: "string",
    });
    
    type: alicloud:pai:WorkspaceDatasetversion
    properties:
        dataCount: 0
        dataSize: 0
        dataSourceType: string
        datasetId: string
        description: string
        labels:
            - key: string
              value: string
        options: string
        property: string
        sourceId: string
        sourceType: string
        uri: string
    

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

    DataSourceType string
    The data source type. The following values are supported:

    • OSS: Alibaba Cloud Object Storage (OSS).
    • NAS: Alibaba cloud file storage (NAS).
    DatasetId string
    The first ID of the resource
    Property string
    The properties of the dataset. The following values are supported:

    • FILE: FILE.
    • DIRECTORY: folder.
    Uri string

    The Uri configuration sample is as follows:

    • The data source type is OSS:'oss:// bucket.endpoint/object'
    • The data source type is NAS:

    The general NAS format is: 'nas://.region/subpath/to/dir/';

    CPFS1.0:'nas://.region/subpath/to/dir /';

    CPFS2.0:'nas://.region//'.

    CPFS1.0 and CPFS2.0 are distinguished by the format of fsid: CPFS1.0 is cpfs-;CPFS2.0 is cpfs-.

    DataCount int
    Data count.
    DataSize int
    Data size.
    Description string
    Description of dataset version.
    Labels List<Pulumi.AliCloud.Pai.Inputs.WorkspaceDatasetversionLabel>
    The tag of the resource See labels below.
    Options string

    The extended field, which is of the JsonString type.

    When DLC uses a dataset, you can specify the default Mount path for the dataset by configuring the mountPath field.

    SourceId string
    The data source ID.
    SourceType string
    The data source type. The default value is USER.
    DataSourceType string
    The data source type. The following values are supported:

    • OSS: Alibaba Cloud Object Storage (OSS).
    • NAS: Alibaba cloud file storage (NAS).
    DatasetId string
    The first ID of the resource
    Property string
    The properties of the dataset. The following values are supported:

    • FILE: FILE.
    • DIRECTORY: folder.
    Uri string

    The Uri configuration sample is as follows:

    • The data source type is OSS:'oss:// bucket.endpoint/object'
    • The data source type is NAS:

    The general NAS format is: 'nas://.region/subpath/to/dir/';

    CPFS1.0:'nas://.region/subpath/to/dir /';

    CPFS2.0:'nas://.region//'.

    CPFS1.0 and CPFS2.0 are distinguished by the format of fsid: CPFS1.0 is cpfs-;CPFS2.0 is cpfs-.

    DataCount int
    Data count.
    DataSize int
    Data size.
    Description string
    Description of dataset version.
    Labels []WorkspaceDatasetversionLabelArgs
    The tag of the resource See labels below.
    Options string

    The extended field, which is of the JsonString type.

    When DLC uses a dataset, you can specify the default Mount path for the dataset by configuring the mountPath field.

    SourceId string
    The data source ID.
    SourceType string
    The data source type. The default value is USER.
    dataSourceType String
    The data source type. The following values are supported:

    • OSS: Alibaba Cloud Object Storage (OSS).
    • NAS: Alibaba cloud file storage (NAS).
    datasetId String
    The first ID of the resource
    property String
    The properties of the dataset. The following values are supported:

    • FILE: FILE.
    • DIRECTORY: folder.
    uri String

    The Uri configuration sample is as follows:

    • The data source type is OSS:'oss:// bucket.endpoint/object'
    • The data source type is NAS:

    The general NAS format is: 'nas://.region/subpath/to/dir/';

    CPFS1.0:'nas://.region/subpath/to/dir /';

    CPFS2.0:'nas://.region//'.

    CPFS1.0 and CPFS2.0 are distinguished by the format of fsid: CPFS1.0 is cpfs-;CPFS2.0 is cpfs-.

    dataCount Integer
    Data count.
    dataSize Integer
    Data size.
    description String
    Description of dataset version.
    labels List<WorkspaceDatasetversionLabel>
    The tag of the resource See labels below.
    options String

    The extended field, which is of the JsonString type.

    When DLC uses a dataset, you can specify the default Mount path for the dataset by configuring the mountPath field.

    sourceId String
    The data source ID.
    sourceType String
    The data source type. The default value is USER.
    dataSourceType string
    The data source type. The following values are supported:

    • OSS: Alibaba Cloud Object Storage (OSS).
    • NAS: Alibaba cloud file storage (NAS).
    datasetId string
    The first ID of the resource
    property string
    The properties of the dataset. The following values are supported:

    • FILE: FILE.
    • DIRECTORY: folder.
    uri string

    The Uri configuration sample is as follows:

    • The data source type is OSS:'oss:// bucket.endpoint/object'
    • The data source type is NAS:

    The general NAS format is: 'nas://.region/subpath/to/dir/';

    CPFS1.0:'nas://.region/subpath/to/dir /';

    CPFS2.0:'nas://.region//'.

    CPFS1.0 and CPFS2.0 are distinguished by the format of fsid: CPFS1.0 is cpfs-;CPFS2.0 is cpfs-.

    dataCount number
    Data count.
    dataSize number
    Data size.
    description string
    Description of dataset version.
    labels WorkspaceDatasetversionLabel[]
    The tag of the resource See labels below.
    options string

    The extended field, which is of the JsonString type.

    When DLC uses a dataset, you can specify the default Mount path for the dataset by configuring the mountPath field.

    sourceId string
    The data source ID.
    sourceType string
    The data source type. The default value is USER.
    data_source_type str
    The data source type. The following values are supported:

    • OSS: Alibaba Cloud Object Storage (OSS).
    • NAS: Alibaba cloud file storage (NAS).
    dataset_id str
    The first ID of the resource
    property str
    The properties of the dataset. The following values are supported:

    • FILE: FILE.
    • DIRECTORY: folder.
    uri str

    The Uri configuration sample is as follows:

    • The data source type is OSS:'oss:// bucket.endpoint/object'
    • The data source type is NAS:

    The general NAS format is: 'nas://.region/subpath/to/dir/';

    CPFS1.0:'nas://.region/subpath/to/dir /';

    CPFS2.0:'nas://.region//'.

    CPFS1.0 and CPFS2.0 are distinguished by the format of fsid: CPFS1.0 is cpfs-;CPFS2.0 is cpfs-.

    data_count int
    Data count.
    data_size int
    Data size.
    description str
    Description of dataset version.
    labels Sequence[WorkspaceDatasetversionLabelArgs]
    The tag of the resource See labels below.
    options str

    The extended field, which is of the JsonString type.

    When DLC uses a dataset, you can specify the default Mount path for the dataset by configuring the mountPath field.

    source_id str
    The data source ID.
    source_type str
    The data source type. The default value is USER.
    dataSourceType String
    The data source type. The following values are supported:

    • OSS: Alibaba Cloud Object Storage (OSS).
    • NAS: Alibaba cloud file storage (NAS).
    datasetId String
    The first ID of the resource
    property String
    The properties of the dataset. The following values are supported:

    • FILE: FILE.
    • DIRECTORY: folder.
    uri String

    The Uri configuration sample is as follows:

    • The data source type is OSS:'oss:// bucket.endpoint/object'
    • The data source type is NAS:

    The general NAS format is: 'nas://.region/subpath/to/dir/';

    CPFS1.0:'nas://.region/subpath/to/dir /';

    CPFS2.0:'nas://.region//'.

    CPFS1.0 and CPFS2.0 are distinguished by the format of fsid: CPFS1.0 is cpfs-;CPFS2.0 is cpfs-.

    dataCount Number
    Data count.
    dataSize Number
    Data size.
    description String
    Description of dataset version.
    labels List<Property Map>
    The tag of the resource See labels below.
    options String

    The extended field, which is of the JsonString type.

    When DLC uses a dataset, you can specify the default Mount path for the dataset by configuring the mountPath field.

    sourceId String
    The data source ID.
    sourceType String
    The data source type. The default value is USER.

    Outputs

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

    CreateTime string
    Update time.
    Id string
    The provider-assigned unique ID for this managed resource.
    VersionName string
    The name of the resource
    CreateTime string
    Update time.
    Id string
    The provider-assigned unique ID for this managed resource.
    VersionName string
    The name of the resource
    createTime String
    Update time.
    id String
    The provider-assigned unique ID for this managed resource.
    versionName String
    The name of the resource
    createTime string
    Update time.
    id string
    The provider-assigned unique ID for this managed resource.
    versionName string
    The name of the resource
    create_time str
    Update time.
    id str
    The provider-assigned unique ID for this managed resource.
    version_name str
    The name of the resource
    createTime String
    Update time.
    id String
    The provider-assigned unique ID for this managed resource.
    versionName String
    The name of the resource

    Look up Existing WorkspaceDatasetversion Resource

    Get an existing WorkspaceDatasetversion 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?: WorkspaceDatasetversionState, opts?: CustomResourceOptions): WorkspaceDatasetversion
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            create_time: Optional[str] = None,
            data_count: Optional[int] = None,
            data_size: Optional[int] = None,
            data_source_type: Optional[str] = None,
            dataset_id: Optional[str] = None,
            description: Optional[str] = None,
            labels: Optional[Sequence[WorkspaceDatasetversionLabelArgs]] = None,
            options: Optional[str] = None,
            property: Optional[str] = None,
            source_id: Optional[str] = None,
            source_type: Optional[str] = None,
            uri: Optional[str] = None,
            version_name: Optional[str] = None) -> WorkspaceDatasetversion
    func GetWorkspaceDatasetversion(ctx *Context, name string, id IDInput, state *WorkspaceDatasetversionState, opts ...ResourceOption) (*WorkspaceDatasetversion, error)
    public static WorkspaceDatasetversion Get(string name, Input<string> id, WorkspaceDatasetversionState? state, CustomResourceOptions? opts = null)
    public static WorkspaceDatasetversion get(String name, Output<String> id, WorkspaceDatasetversionState state, CustomResourceOptions options)
    resources:  _:    type: alicloud:pai:WorkspaceDatasetversion    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:
    CreateTime string
    Update time.
    DataCount int
    Data count.
    DataSize int
    Data size.
    DataSourceType string
    The data source type. The following values are supported:

    • OSS: Alibaba Cloud Object Storage (OSS).
    • NAS: Alibaba cloud file storage (NAS).
    DatasetId string
    The first ID of the resource
    Description string
    Description of dataset version.
    Labels List<Pulumi.AliCloud.Pai.Inputs.WorkspaceDatasetversionLabel>
    The tag of the resource See labels below.
    Options string

    The extended field, which is of the JsonString type.

    When DLC uses a dataset, you can specify the default Mount path for the dataset by configuring the mountPath field.

    Property string
    The properties of the dataset. The following values are supported:

    • FILE: FILE.
    • DIRECTORY: folder.
    SourceId string
    The data source ID.
    SourceType string
    The data source type. The default value is USER.
    Uri string

    The Uri configuration sample is as follows:

    • The data source type is OSS:'oss:// bucket.endpoint/object'
    • The data source type is NAS:

    The general NAS format is: 'nas://.region/subpath/to/dir/';

    CPFS1.0:'nas://.region/subpath/to/dir /';

    CPFS2.0:'nas://.region//'.

    CPFS1.0 and CPFS2.0 are distinguished by the format of fsid: CPFS1.0 is cpfs-;CPFS2.0 is cpfs-.

    VersionName string
    The name of the resource
    CreateTime string
    Update time.
    DataCount int
    Data count.
    DataSize int
    Data size.
    DataSourceType string
    The data source type. The following values are supported:

    • OSS: Alibaba Cloud Object Storage (OSS).
    • NAS: Alibaba cloud file storage (NAS).
    DatasetId string
    The first ID of the resource
    Description string
    Description of dataset version.
    Labels []WorkspaceDatasetversionLabelArgs
    The tag of the resource See labels below.
    Options string

    The extended field, which is of the JsonString type.

    When DLC uses a dataset, you can specify the default Mount path for the dataset by configuring the mountPath field.

    Property string
    The properties of the dataset. The following values are supported:

    • FILE: FILE.
    • DIRECTORY: folder.
    SourceId string
    The data source ID.
    SourceType string
    The data source type. The default value is USER.
    Uri string

    The Uri configuration sample is as follows:

    • The data source type is OSS:'oss:// bucket.endpoint/object'
    • The data source type is NAS:

    The general NAS format is: 'nas://.region/subpath/to/dir/';

    CPFS1.0:'nas://.region/subpath/to/dir /';

    CPFS2.0:'nas://.region//'.

    CPFS1.0 and CPFS2.0 are distinguished by the format of fsid: CPFS1.0 is cpfs-;CPFS2.0 is cpfs-.

    VersionName string
    The name of the resource
    createTime String
    Update time.
    dataCount Integer
    Data count.
    dataSize Integer
    Data size.
    dataSourceType String
    The data source type. The following values are supported:

    • OSS: Alibaba Cloud Object Storage (OSS).
    • NAS: Alibaba cloud file storage (NAS).
    datasetId String
    The first ID of the resource
    description String
    Description of dataset version.
    labels List<WorkspaceDatasetversionLabel>
    The tag of the resource See labels below.
    options String

    The extended field, which is of the JsonString type.

    When DLC uses a dataset, you can specify the default Mount path for the dataset by configuring the mountPath field.

    property String
    The properties of the dataset. The following values are supported:

    • FILE: FILE.
    • DIRECTORY: folder.
    sourceId String
    The data source ID.
    sourceType String
    The data source type. The default value is USER.
    uri String

    The Uri configuration sample is as follows:

    • The data source type is OSS:'oss:// bucket.endpoint/object'
    • The data source type is NAS:

    The general NAS format is: 'nas://.region/subpath/to/dir/';

    CPFS1.0:'nas://.region/subpath/to/dir /';

    CPFS2.0:'nas://.region//'.

    CPFS1.0 and CPFS2.0 are distinguished by the format of fsid: CPFS1.0 is cpfs-;CPFS2.0 is cpfs-.

    versionName String
    The name of the resource
    createTime string
    Update time.
    dataCount number
    Data count.
    dataSize number
    Data size.
    dataSourceType string
    The data source type. The following values are supported:

    • OSS: Alibaba Cloud Object Storage (OSS).
    • NAS: Alibaba cloud file storage (NAS).
    datasetId string
    The first ID of the resource
    description string
    Description of dataset version.
    labels WorkspaceDatasetversionLabel[]
    The tag of the resource See labels below.
    options string

    The extended field, which is of the JsonString type.

    When DLC uses a dataset, you can specify the default Mount path for the dataset by configuring the mountPath field.

    property string
    The properties of the dataset. The following values are supported:

    • FILE: FILE.
    • DIRECTORY: folder.
    sourceId string
    The data source ID.
    sourceType string
    The data source type. The default value is USER.
    uri string

    The Uri configuration sample is as follows:

    • The data source type is OSS:'oss:// bucket.endpoint/object'
    • The data source type is NAS:

    The general NAS format is: 'nas://.region/subpath/to/dir/';

    CPFS1.0:'nas://.region/subpath/to/dir /';

    CPFS2.0:'nas://.region//'.

    CPFS1.0 and CPFS2.0 are distinguished by the format of fsid: CPFS1.0 is cpfs-;CPFS2.0 is cpfs-.

    versionName string
    The name of the resource
    create_time str
    Update time.
    data_count int
    Data count.
    data_size int
    Data size.
    data_source_type str
    The data source type. The following values are supported:

    • OSS: Alibaba Cloud Object Storage (OSS).
    • NAS: Alibaba cloud file storage (NAS).
    dataset_id str
    The first ID of the resource
    description str
    Description of dataset version.
    labels Sequence[WorkspaceDatasetversionLabelArgs]
    The tag of the resource See labels below.
    options str

    The extended field, which is of the JsonString type.

    When DLC uses a dataset, you can specify the default Mount path for the dataset by configuring the mountPath field.

    property str
    The properties of the dataset. The following values are supported:

    • FILE: FILE.
    • DIRECTORY: folder.
    source_id str
    The data source ID.
    source_type str
    The data source type. The default value is USER.
    uri str

    The Uri configuration sample is as follows:

    • The data source type is OSS:'oss:// bucket.endpoint/object'
    • The data source type is NAS:

    The general NAS format is: 'nas://.region/subpath/to/dir/';

    CPFS1.0:'nas://.region/subpath/to/dir /';

    CPFS2.0:'nas://.region//'.

    CPFS1.0 and CPFS2.0 are distinguished by the format of fsid: CPFS1.0 is cpfs-;CPFS2.0 is cpfs-.

    version_name str
    The name of the resource
    createTime String
    Update time.
    dataCount Number
    Data count.
    dataSize Number
    Data size.
    dataSourceType String
    The data source type. The following values are supported:

    • OSS: Alibaba Cloud Object Storage (OSS).
    • NAS: Alibaba cloud file storage (NAS).
    datasetId String
    The first ID of the resource
    description String
    Description of dataset version.
    labels List<Property Map>
    The tag of the resource See labels below.
    options String

    The extended field, which is of the JsonString type.

    When DLC uses a dataset, you can specify the default Mount path for the dataset by configuring the mountPath field.

    property String
    The properties of the dataset. The following values are supported:

    • FILE: FILE.
    • DIRECTORY: folder.
    sourceId String
    The data source ID.
    sourceType String
    The data source type. The default value is USER.
    uri String

    The Uri configuration sample is as follows:

    • The data source type is OSS:'oss:// bucket.endpoint/object'
    • The data source type is NAS:

    The general NAS format is: 'nas://.region/subpath/to/dir/';

    CPFS1.0:'nas://.region/subpath/to/dir /';

    CPFS2.0:'nas://.region//'.

    CPFS1.0 and CPFS2.0 are distinguished by the format of fsid: CPFS1.0 is cpfs-;CPFS2.0 is cpfs-.

    versionName String
    The name of the resource

    Supporting Types

    WorkspaceDatasetversionLabel, WorkspaceDatasetversionLabelArgs

    Key string
    The key of the tags
    Value string
    The value of the tags
    Key string
    The key of the tags
    Value string
    The value of the tags
    key String
    The key of the tags
    value String
    The value of the tags
    key string
    The key of the tags
    value string
    The value of the tags
    key str
    The key of the tags
    value str
    The value of the tags
    key String
    The key of the tags
    value String
    The value of the tags

    Import

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

    $ pulumi import alicloud:pai/workspaceDatasetversion:WorkspaceDatasetversion example <dataset_id>:<version_name>
    

    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