DATASOURCE::PAI::Datasets類型用於查詢資料集基礎資訊。
文法
{
"Type": "DATASOURCE::PAI::Datasets",
"Properties": {
"SourceId": String,
"WorkspaceId": String,
"RefreshOptions": String
}
}
屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
SourceId | String | 否 | 是 | 來源ID。 | 取值:
|
WorkspaceId | String | 是 | 是 | 資料集所在工作空間ID。 | 無 |
RefreshOptions | String | 否 | 是 | 當資源棧更新時,資料來源資源的重新整理策略。 | 有效值:
|
傳回值
Fn::GetAtt
Datasets:資料集詳情列表。
DatasetIds:資料集ID列表。
屬性名稱 | 類型 | 描述 | 約束 |
DatasetIds | List | 資料集ID列表。 | 無 |
Datasets | List | 資料集詳情列表。 | 無 |
Accessibility | String | 工作空間可見度。 | 無 |
CreateTime | String | 建立時間。 | 無 |
Options | String | 擴充欄位。 | 無 |
DataType | String | 資料類型。 | 無 |
SourceType | String | 來源類型。 | 無 |
Property | String | 資料集屬性。 | 無 |
Uri | String | URI配置。 | 無 |
OwnerId | String | 主賬戶ID。 | 無 |
DatasetName | String | 資料集名稱。 | 無 |
GmtModifiedTime | String | 更新時間。 | 無 |
UserId | String | 使用者ID。 | 無 |
DataSourceType | String | 資料來源類型。 | 無 |
SourceId | String | 來源ID。 | 無 |
Description | String | 描述。 | 無 |
DatasetId | String | 資料集ID。 | 無 |
WorkspaceId | String | 資料集所在工作空間ID。 | 無 |
樣本
ROSTemplateFormatVersion: '2015-09-01'
Parameters:
WorkspaceId:
Description: 'The ID of the workspace where the dataset is located. For details
about how to obtain the workspace ID, see [ListWorkspaces](~~ 449124 ~~).
If this parameter is not configured, the default workspace is used. If the default
workspace does not exist, an error is reported.'
Type: String
Resources:
ExtensionDataSource:
Properties:
WorkspaceId:
Ref: WorkspaceId
Type: DATASOURCE::PAI::Datasets
Outputs:
DatasetIds:
Description: The list of dataset IDs.
Value:
Fn::GetAtt:
- ExtensionDataSource
- DatasetIds
Datasets:
Description: The list of datasets.
Value:
Fn::GetAtt:
- ExtensionDataSource
- Datasets
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
"WorkspaceId": {
"Type": "String",
"Description": "The ID of the workspace where the dataset is located. For details about how to obtain the workspace ID, see [ListWorkspaces](~~ 449124 ~~).\nIf this parameter is not configured, the default workspace is used. If the default workspace does not exist, an error is reported."
}
},
"Resources": {
"ExtensionDataSource": {
"Type": "DATASOURCE::PAI::Datasets",
"Properties": {
"WorkspaceId": {
"Ref": "WorkspaceId"
}
}
}
},
"Outputs": {
"Datasets": {
"Description": "The list of datasets.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"Datasets"
]
}
},
"DatasetIds": {
"Description": "The list of dataset IDs.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"DatasetIds"
]
}
}
}
}