DATASOURCE::ECS::AutoSnapshotPolicies類型用於查詢自動快照策略。
文法
{
"Type": "DATASOURCE::ECS::AutoSnapshotPolicies",
"Properties": {
"ResourceGroupId": String,
"AutoSnapshotPolicyId": String,
"Tags": List,
"RefreshOptions": String
}
}
屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
ResourceGroupId | String | 否 | 是 | 資源群組ID。 | 無 |
AutoSnapshotPolicyId | String | 否 | 是 | 自動快照策略ID。 | 無 |
Tags | List | 否 | 是 | 自動快照策略的標籤。 | 最多支援20個標籤。 更多資訊,請參見Tags屬性。 |
RefreshOptions | String | 否 | 是 | 當資源棧更新時,資料來源資源的重新整理策略。 | 取值:
|
Tags文法
"Tags": [
{
"Value": String,
"Key": String
}
]
Tags屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
Key | String | 是 | 否 | 標籤鍵。 | 長度為1~128個字元,不能以 |
Value | String | 否 | 否 | 標籤值。 | 長度為0~128個字元,不能以 |
返回資料(Fn::GetAtt)
AutoSnapshotPolicyIds:自動快照策略ID列表。
AutoSnapshotPolicies:自動快照策略詳情列表。
屬性名稱 | 類型 | 描述 | 約束 |
AutoSnapshotPolicyIds | List | 自動快照策略ID列表。 | 無 |
AutoSnapshotPolicies | List | 自動快照策略詳情列表。 | 無 |
TimePoints | String | 自動快照的建立時間點。 | 使用UTC+8時間。 取值範圍:0~23,代表00:00至23:00共24個時間點。 單位:小時。 取值樣本: |
Status | String | 自動快照策略的狀態。 | 取值:
|
AutoSnapshotPolicyName | String | 自動快照策略的名稱。 | 無 |
AutoSnapshotPolicyId | String | 自動快照策略ID。 | 無 |
RetentionDays | Number | 自動快照策略的保留時間。 | 取值:
單位:天。 |
DiskNums | Number | 啟用自動快照策略的雲端硬碟數量。 | 無 |
RepeatWeekdays | String | 自動快照的週期。 | 取值範圍:1~7。 單位:天。 周期:星期。 取值樣本: |
VolumeNums | Number | 啟用自動快照策略的拓展卷數量。 | 無 |
ResourceGroupId | String | 資源群組ID。 | 無 |
Tags | List | 自動快照策略的標籤。 | 無 |
樣本
JSON
格式
{
"ROSTemplateFormatVersion": "2015-09-01",
"Resources": {
"AutoSnapshotPolicies1": {
"Type": "DATASOURCE::ECS::AutoSnapshotPolicies",
"Properties": {
"AutoSnapshotPolicyId": "sp-bp1acz3malct92k6****"
}
}
},
"Outputs": {
"AutoSnapshotPolicyIds": {
"Value": {
"Fn::GetAtt": [
"AutoSnapshotPolicies1",
"AutoSnapshotPolicyIds"
]
}
},
"AutoSnapshotPolicies": {
"Value": {
"Fn::GetAtt": [
"AutoSnapshotPolicies1",
"AutoSnapshotPolicies"
]
}
}
}
}