DATASOURCE::ENS::Instances
DATASOURCE::ENS::Instances類型用于查詢多臺(tái)ENS實(shí)例的詳細(xì)信息。
語法
{
"Type": "DATASOURCE::ENS::Instances",
"Properties": {
"Status": String,
"InstanceName": String,
"EnsServiceId": String,
"ImageId": String,
"InstanceIds": List,
"EnsRegionIds": List,
"InstanceResourceType": String,
"RefreshOptions": String
}
}
屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
Status | String | 否 | 是 | 實(shí)例狀態(tài)。 | 取值:
|
InstanceName | String | 否 | 是 | 實(shí)例名稱。 | 無 |
EnsServiceId | String | 否 | 是 | 邊緣服務(wù)ID。 | 無 |
ImageId | String | 否 | 是 | 鏡像ID。 | 無 |
InstanceIds | List | 否 | 是 | 實(shí)例的編號(hào)列表。 | 參數(shù)為一個(gè)帶有格式的JSON數(shù)組。最多支持100個(gè)ID,多個(gè)ID之間用逗號(hào)(,)隔開。 |
EnsRegionIds | List | 否 | 是 | 節(jié)點(diǎn)的地域列表。 | 參數(shù)為一個(gè)帶有格式的JSON數(shù)組。最多支持100個(gè)ID,多個(gè)ID之間用半角逗號(hào)(,)隔開。 |
InstanceResourceType | String | 否 | 是 | 過濾的類型。 | 取值:
|
RefreshOptions | String | 否 | 是 | 當(dāng)資源棧更新時(shí),數(shù)據(jù)源資源的刷新策略。 | 有效值:
|
返回?cái)?shù)據(jù)(Fn::GetAtt)
Instances:實(shí)例的詳情列表。
InstanceIds:實(shí)例的編號(hào)列表。
屬性名稱 | 類型 | 描述 | 約束 |
InstanceIds | List | 實(shí)例的編號(hào)列表。 | 無 |
Instances | List | 實(shí)例的詳情列表。 | 無 |
InstanceId | String | 實(shí)例ID。 | 無 |
Status | String | 實(shí)例狀態(tài)。 | 取值:
|
Memory | Integer | 內(nèi)存大小。 | 單位:MB。 |
Cpu | String | vCPU核數(shù)。 | 無 |
SpecName | String | 實(shí)例規(guī)格代碼。 | 無 |
OSName | String | 鏡像名稱。 | 無 |
InstanceName | String | 實(shí)例名稱。 | 無 |
SystemDisk | Map | 系統(tǒng)盤返回信息。 | 例如:
|
Disk | Integer | 磁盤總大小。 | 無 |
NetworkAttributes | Map | 網(wǎng)絡(luò)信息。 | 例如:
|
InternetMaxBandwidthOut | Integer | 最小上行帶寬。 | 單位:Mbps。 |
InternetMaxBandwidthIn | Integer | 最大下行帶寬。 | 單位:Mbps。 |
ExpiredTime | String | 實(shí)例過期時(shí)間。 | 按照ISO8601標(biāo)準(zhǔn)表示,并需要使用UTC時(shí)間,格式為yyyy-MM-ddTHH:mm:ssZ。 |
CreationTime | String | 實(shí)例創(chuàng)建時(shí)間。 | 按照ISO8601標(biāo)準(zhǔn)表示,并需要使用UTC時(shí)間,格式為yyyy-MM-ddTHH:mm:ssZ。 |
ImageId | String | 鏡像ID。 | 無 |
EnsRegionId | String | 實(shí)例所屬地域ID。 | 無 |
HostName | String | 實(shí)例主機(jī)名稱。 | 無 |
InstanceResourceType | String | 實(shí)例類型。 | 取值:
|
SecurityGroupIds | List | 安全組ID。 | 無 |
PrivateIpAddresses | Map | 實(shí)例私網(wǎng)返回信息。 | 例如:
|
PublicIpAddresses | Map | 公網(wǎng)返回信息。 | 例如:
|
InnerIpAddresses | List | 實(shí)例的私網(wǎng)IP地址。 | 無 |
DataDisks | Map | 數(shù)據(jù)盤返回信息。 | 例如:
|
示例
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
"Status": {
"Type": "String",
"Description": "The status of instance.",
"Default": "Running"
}
},
"Resources": {
"Instances": {
"Type": "DATASOURCE::ENS::Instances",
"Properties": {
"Status": {
"Ref": "Status"
}
}
}
},
"Outputs": {
"Instances": {
"Description": "The list of instances.",
"Value": {
"Fn::GetAtt": [
"Instances",
"Instances"
]
}
},
"InstanceIds": {
"Description": "The list of instance IDs.",
"Value": {
"Fn::GetAtt": [
"Instances",
"InstanceIds"
]
}
}
}
}
ROSTemplateFormatVersion: '2015-09-01'
Parameters:
Status:
Type: String
Description: The status of instance.
Default: Running
Resources:
Instances:
Type: DATASOURCE::ENS::Instances
Properties:
Status:
Ref: Status
Outputs:
Instances:
Description: The list of instances.
Value:
Fn::GetAtt:
- Instances
- Instances
InstanceIds:
Description: The list of instance IDs.
Value:
Fn::GetAtt:
- Instances
- InstanceIds