DATASOURCE::EDAS::Applications類型用於擷取應用列表。
文法
{
"Type": "DATASOURCE::EDAS::Applications",
"Properties": {
"LogicalRegionId": String,
"ResourceGroupId": String,
"ClusterId": String,
"AppName": String,
"RefreshOptions": String
}
}
屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
LogicalRegionId | String | 否 | 是 | 以微服務空間維度篩選應用列表。 | 無 |
ResourceGroupId | String | 否 | 是 | 以資源群組維度篩選應用列表。 | 無 |
ClusterId | String | 否 | 是 | 以叢集維度篩選應用列表。 | 無 |
AppName | String | 否 | 是 | 以應用程式名稱維度篩選應用列表。 | 無 |
RefreshOptions | String | 否 | 是 | 當資源棧更新時,資料來源資源的重新整理策略。 | 有效值:
|
返回資料(Fn::GetAtt)
AppIds:應用ID列表。
Applications:應用詳情列表。
屬性名稱 | 類型 | 描述 | 約束 |
AppIds | List | 應用ID列表。 | 無 |
Applications | List | 應用詳情列表。 | 無 |
AppId | String | 應用ID。 | 無 |
ResourceGroupId | String | 資源群組ID。 | 無 |
ClusterId | String | 叢集ID。 | 無 |
RegionId | String | 地區ID。 | 無 |
ClusterType | Number | 應用叢集環境類型。 | 取值:
|
RunningInstanceCount | Number | 正在啟動並執行應用執行個體數量。 | 無 |
Name | String | 應用程式名稱。 | 無 |
BuildPackageId | Number | 容器版本ID。 | 無 |
樣本
ROSTemplateFormatVersion: '2015-09-01'
Parameters:
AppName:
Type: String
Description: The application name keyword.
Resources:
Applications:
Type: DATASOURCE::EDAS::Applications
Properties:
AppName:
Ref: AppName
Outputs:
Applications:
Description: The list of applications.
Value:
Fn::GetAtt:
- Applications
- Applications
AppIds:
Description: The list of application IDs.
Value:
Fn::GetAtt:
- Applications
- AppIds
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
"AppName": {
"Type": "String",
"Description": "The application name keyword."
}
},
"Resources": {
"Applications": {
"Type": "DATASOURCE::EDAS::Applications",
"Properties": {
"AppName": {
"Ref": "AppName"
}
}
}
},
"Outputs": {
"Applications": {
"Description": "The list of applications.",
"Value": {
"Fn::GetAtt": [
"Applications",
"Applications"
]
}
},
"AppIds": {
"Description": "The list of application IDs.",
"Value": {
"Fn::GetAtt": [
"Applications",
"AppIds"
]
}
}
}
}