DATASOURCE::SAE::Applications類型用於擷取應用列表。
文法
{
"Type": "DATASOURCE::SAE::Applications",
"Properties": {
"NamespaceId": String,
"FieldValue": String,
"AppName": String,
"FieldType": String,
"RefreshOptions": String
}
}
屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
NamespaceId | String | 否 | 是 | 命名空間ID。 | 無 |
FieldValue | String | 否 | 是 | 輸入目標應用的應用程式名稱、應用ID、SLB IP地址或執行個體IP地址。 | 無 |
AppName | String | 否 | 是 | 應用程式名稱。 | 無 |
FieldType | String | 否 | 是 | 設定篩選應用的維度。 | 取值:
|
RefreshOptions | String | 否 | 是 | 當資源棧更新時,資料來源資源的重新整理策略。 | 有效值:
|
返回資料(Fn::GetAtt)
Applications:應用詳情列表。
ApplicationIds:應用ID列表。
屬性名稱 | 類型 | 描述 | 約束 |
ApplicationIds | List | 應用ID列表。 | 無 |
Applications | List | 應用詳情列表。 | 無 |
AppId | String | 應用ID。 | 無 |
AppName | String | 應用程式名稱。 | 無 |
AppDescription | String | 應用描述資訊。 | 無 |
ScaleRuleEnabled | Boolean | Auto Scaling策略是否啟用。 | 取值:
|
Instances | Number | 應用執行個體個數。 | 無 |
RunningInstances | Number | 運行中的執行個體個數。 | 無 |
AppDeletingStatus | Boolean | 是否正在刪除應用。 | 取值:
|
RegionId | String | 地區ID。 | 無 |
樣本
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
"AppName": {
"Type": "String",
"Description": "The name of application."
}
},
"Resources": {
"Applications": {
"Type": "DATASOURCE::SAE::Applications",
"Properties": {
"AppName": {
"Ref": "AppName"
}
}
}
},
"Outputs": {
"Applications": {
"Description": "The list of applications.",
"Value": {
"Fn::GetAtt": [
"Applications",
"Applications"
]
}
},
"ApplicationIds": {
"Description": "The list of application IDs.",
"Value": {
"Fn::GetAtt": [
"Applications",
"ApplicationIds"
]
}
}
}
}
ROSTemplateFormatVersion: '2015-09-01'
Parameters:
AppName:
Type: String
Description: The name of application.
Resources:
Applications:
Type: DATASOURCE::SAE::Applications
Properties:
AppName:
Ref: AppName
Outputs:
Applications:
Description: The list of applications.
Value:
Fn::GetAtt:
- Applications
- Applications
ApplicationIds:
Description: The list of application IDs.
Value:
Fn::GetAtt:
- Applications
- ApplicationIds