ALIYUN::PAI::WorkspaceResourceDlc类型用于添加Dlc(分布式训练)资源引用到工作空间。
语法
{
"Type": "ALIYUN::PAI::WorkspaceResourceDlc",
"Properties": {
"GroupName": String,
"Resources": List,
"WorkspaceId": String,
"IsDefault": Boolean,
"Option": String
}
}
属性
属性名称 | 类型 | 必须 | 允许更新 | 描述 | 约束 |
GroupName | String | 是 | 否 | 资源分组名。 | 账户内唯一。 |
Resources | List | 是 | 否 | 资源列表。 | 更多信息,请参见Resources属性。 |
WorkspaceId | String | 是 | 否 | 所属的工作空间ID。 | 无 |
IsDefault | Boolean | 否 | 是 | 是否为默认资源(每种资源类型有一个默认的资源)。 | 取值:
|
Option | String | 否 | 否 | 创建行为。 | 取值:
|
Resources语法
"Resources": [
{
"WorkspaceResourceWorkspaceId": String,
"WorkspaceResourceName": String,
"Spec": Map,
"EnvType": String
}
]
Resources属性
属性名称 | 类型 | 必须 | 允许更新 | 描述 | 约束 |
EnvType | String | 是 | 否 | 环境类型。 | 取值:
|
WorkspaceResourceWorkspaceId | String | 是 | 否 | 所属的工作空间ID。 | 无 |
WorkspaceResourceName | String | 是 | 否 | 资源名。 | 无 |
Spec | Map | 否 | 否 | 资源规格说明。 | 示例:
|
返回值
Fn::GetAtt
GroupName:资源分组名。
IsDefault:是否为默认资源。
CreateTime:资源创建时间。
Resources:资源集合。
示例
YAML
格式
ROSTemplateFormatVersion: '2015-09-01'
Parameters: {}
Resources:
ExtensionResource:
Type: ALIYUN::PAI::WorkspaceResourceDlc
Properties:
GroupName: groupName
WorkspaceId: '45970'
Resources:
- WorkspaceResourceName: public-cluster1
WorkspaceResourceWorkspaceId: '45970'
EnvType: prod
Spec:
ClusterType: share
ResourceId: ''
ResourceName: public-cluster1
ProductType: ECS
ResourceType: ECS
Key: ECS-share-public-cluster
Outputs:
GroupName:
Description: Resource group name. If you want to obtain a resource group name, see [ListResources].
Value:
Fn::GetAtt:
- ExtensionResource
- GroupName
IsDefault:
Description: Indicates whether it is the default resource. Currently, this parameter only supports the input of true and does not support false.
Value:
Fn::GetAtt:
- ExtensionResource
- IsDefault
CreateTime:
Description: The creation time of the resource.
Value:
Fn::GetAtt:
- ExtensionResource
- CreateTime
Resources:
Description: Resource List.
Value:
Fn::GetAtt:
- ExtensionResource
- Resources
JSON
格式
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
},
"Resources": {
"ExtensionResource": {
"Type": "ALIYUN::PAI::WorkspaceResourceDlc",
"Properties": {
"GroupName": "groupName",
"WorkspaceId": "45970",
"Resources": [
{
"WorkspaceResourceName": "public-cluster1",
"WorkspaceResourceWorkspaceId": "45970",
"EnvType": "prod",
"Spec": {
"ClusterType": "share",
"ResourceId": "",
"ResourceName": "public-cluster1",
"ProductType": "ECS",
"ResourceType": "ECS",
"Key": "ECS-share-public-cluster"
}
}
]
}
}
},
"Outputs": {
"GroupName": {
"Description": "Resource group name. If you want to obtain a resource group name, see [ListResources].",
"Value": {
"Fn::GetAtt": [
"ExtensionResource",
"GroupName"
]
}
},
"IsDefault": {
"Description": "Indicates whether it is the default resource. Currently, this parameter only supports the input of true and does not support false.",
"Value": {
"Fn::GetAtt": [
"ExtensionResource",
"IsDefault"
]
}
},
"CreateTime": {
"Description": "The creation time of the resource.",
"Value": {
"Fn::GetAtt": [
"ExtensionResource",
"CreateTime"
]
}
},
"Resources": {
"Description": "Resource List.",
"Value": {
"Fn::GetAtt": [
"ExtensionResource",
"Resources"
]
}
}
}
}