DATASOURCE::MSE::Gateways類型用於查詢網關列表資訊。
文法
{
"Type": "DATASOURCE::MSE::Gateways",
"Properties": {
"InstanceId": String,
"Vpc": String,
"GatewayType": String,
"GatewayId": String,
"Name": String,
"RefreshOptions": String
}
}
屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
InstanceId | String | 否 | 是 | 執行個體ID。 | 無 |
Vpc | String | 否 | 是 | 專用網路。 | 無 |
GatewayType | String | 否 | 是 | 網關類型。 | 無 |
GatewayId | String | 否 | 是 | 網關ID。 | 無 |
Name | String | 否 | 是 | 網關名稱。 | 無 |
RefreshOptions | String | 否 | 是 | 當資源棧更新時,資料來源資源的重新整理策略。 | 有效值:
|
返回資料(Fn::GetAtt)
GatewayIds:網關ID列表。
Gateways:網關詳情列表。
屬性名稱 | 類型 | 描述 | 約束 |
GatewayIds | List | 網關ID列表。 | 無 |
Gateways | List | 網關詳情列表。 | 無 |
GatewayId | String | 網關ID。 | 無 |
GmtModified | String | 修改時間。 | 按照ISO8601標準表示,並需要使用UTC時間,格式為yyyy-MM-ddTHH:mm:ssZ。 |
Slb | Map | SLB集合。 | 無 |
GatewayType | String | 網關類型。 | 無 |
Upgrade | Boolean | 升級。 | 無 |
Name | String | 網關名稱。 | 無 |
AppVersion | String | 應用版本。 | 無 |
StatusDesc | String | 狀態原因。 | 無 |
ArmsOn | Boolean | 是否開啟ARMS。 | 取值:
|
InternetSlb | Map | 互連網SLB。 | 無 |
Status | String | 網關狀態。 | 取值:
|
SupportWasm | Boolean | 是否支援WASM。 | 取值:
|
MustUpgrade | Boolean | 強制升級。 | 無 |
InstanceId | String | 執行個體ID。 | 無 |
AhasOn | Boolean | 是否開啟AHAS。 | 取值:
|
GmtCreate | String | 建立時間。 | 按照ISO8601標準表示,並需要使用UTC時間,格式為yyyy-MM-ddTHH:mm:ssZ。 |
ChargeType | String | 付費類型。 | 取值:
|
Region | String | 地區。 | 無 |
PrimaryUser | String | 阿里雲使用者資訊。 | 無 |
InitConfig | Map | 配置資訊。 | 無 |
Id | String | 執行個體ID。 | 無 |
Spec | String | 規格。 | 無 |
樣本
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
"InstanceId": {
"Type": "String",
"Description": "The instance ID of gateway."
}
},
"Resources": {
"Gateways": {
"Type": "DATASOURCE::MSE::Gateways",
"Properties": {
"InstanceId": {
"Ref": "InstanceId"
}
}
}
},
"Outputs": {
"Gateways": {
"Description": "The list of gateways.",
"Value": {
"Fn::GetAtt": [
"Gateways",
"Gateways"
]
}
},
"GatewayIds": {
"Description": "The list of gateway IDs.",
"Value": {
"Fn::GetAtt": [
"Gateways",
"GatewayIds"
]
}
}
}
}
ROSTemplateFormatVersion: '2015-09-01'
Parameters:
InstanceId:
Type: String
Description: The instance ID of gateway.
Resources:
Gateways:
Type: DATASOURCE::MSE::Gateways
Properties:
InstanceId:
Ref: InstanceId
Outputs:
Gateways:
Description: The list of gateways.
Value:
Fn::GetAtt:
- Gateways
- Gateways
GatewayIds:
Description: The list of gateway IDs.
Value:
Fn::GetAtt:
- Gateways
- GatewayIds