DATASOURCE::CloudPhone::Images類型用於查詢可以使用的鏡像資源的資訊。
文法
{
"Type": "DATASOURCE::CloudPhone::Images",
"Properties": {
"ImageName": String,
"ImageCategory": String,
"ImageId": String,
"RefreshOptions": String
}
}
屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
ImageName | String | 否 | 是 | 鏡像名稱。 | 長度為2~128個英文或中文字元。必須以大小寫字母或中文開頭,不能以 |
ImageCategory | String | 否 | 是 | 鏡像來源。 | 取值:
|
ImageId | String | 否 | 是 | 鏡像ID。 | 無 |
RefreshOptions | String | 否 | 是 | 當資源棧更新時,資料來源資源的重新整理策略。 | 有效值:
|
傳回值
Fn::GetAtt
ImageIds:鏡像ID列表。
Images:鏡像詳情列表。
屬性名稱 | 類型 | 描述 | 約束 |
ImageIds | List | 鏡像ID列表。 | 無 |
Images | List | 鏡像詳情列表。 | 無 |
Status | String | 鏡像狀態。 | 無 |
Description | String | 鏡像描述。 | 無 |
Usage | String | 鏡像是否已經運行在雲手機執行個體中。 | 無 |
Platform | String | 作業系統發行版。 | 無 |
OsNameEn | String | 作業系統的英文顯示名稱。 | 無 |
RegionId | String | 地區ID。 | 無 |
OsName | String | 作業系統的中文顯示名稱。 | 無 |
ImageId | String | 鏡像ID。 | 無 |
IsSelfShared | String | 該鏡像是否已共用給其他使用者。 | 無 |
ImageName | String | 鏡像的名稱。 | 無 |
OsType | String | 作業系統類型。 | 無 |
Progress | String | 鏡像的製作進度。 | 無 |
CreateTime | String | 鏡像建立時間。 | 無 |
ImageCategory | String | 鏡像類型。 | 無 |
樣本
YAML
格式
ROSTemplateFormatVersion: '2015-09-01'
Parameters:
ImageName:
Description: The name of the mirror image.
Type: String
Resources:
ExtensionDataSource:
Properties:
ImageName:
Ref: ImageName
Type: DATASOURCE::CloudPhone::Images
Outputs:
ImageIds:
Description: The list of image IDs.
Value:
Fn::GetAtt:
- ExtensionDataSource
- ImageIds
Images:
Description: The list of images.
Value:
Fn::GetAtt:
- ExtensionDataSource
- Images
JSON
格式
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
"ImageName": {
"Type": "String",
"Description": "The name of the mirror image."
}
},
"Resources": {
"ExtensionDataSource": {
"Type": "DATASOURCE::CloudPhone::Images",
"Properties": {
"ImageName": {
"Ref": "ImageName"
}
}
}
},
"Outputs": {
"ImageIds": {
"Description": "The list of image IDs.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"ImageIds"
]
}
},
"Images": {
"Description": "The list of images.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"Images"
]
}
}
}
}