DATASOURCE::ARMS::SyntheticTasks類型用于獲取定時撥測任務列表。
語法
{
"Type": "DATASOURCE::ARMS::SyntheticTasks",
"Properties": {
"ResourceGroupId": String,
"RefreshOptions": String
}
}
屬性
屬性名稱 | 類型 | 必須 | 允許更新 | 描述 | 約束 |
ResourceGroupId | String | 否 | 是 | 資源組ID。 | 無 |
RefreshOptions | String | 否 | 是 | 當資源棧更新時,數據源資源的刷新策略。 | 有效值:
|
返回值
Fn::GetAtt
TaskIds:任務ID列表。
SyntheticTasks:任務詳情列表。
屬性名稱 | 類型 | 描述 | 約束 |
TaskIds | List | 任務ID列表。 | 無 |
SyntheticTasks | List | 任務詳情列表。 | 無 |
MonitorCategory | String | 監測點類型。 | 無 |
Tags | Map | 任務綁定標簽。 | 無 |
SyntheticTaskName | String | 任務名稱。 | 無 |
ResourceGroupId | String | 資源組ID。 | 無 |
Frequency | String | 撥測頻率。 | 無 |
TaskId | String | 任務ID。 | 無 |
TaskType | String | 任務類型。 | 無 |
示例
ROSTemplateFormatVersion: '2015-09-01'
Parameters:
ResourceGroupId:
AssociationProperty: ALIYUN::ECS::ResourceGroup::ResourceGroupId
Type: String
Description:
en: The ID of the resource group.
Required: false
Resources:
ExtensionDataSource:
Type: DATASOURCE::ARMS::SyntheticTasks
Properties:
ResourceGroupId:
Ref: ResourceGroupId
Outputs:
TaskIds:
Description: The list of task IDs.
Value:
Fn::GetAtt:
- ExtensionDataSource
- TaskIds
SyntheticTasks:
Description: The list of synthetic tasks.
Value:
Fn::GetAtt:
- ExtensionDataSource
- SyntheticTasks
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
"ResourceGroupId": {
"AssociationProperty": "ALIYUN::ECS::ResourceGroup::ResourceGroupId",
"Type": "String",
"Description": {
"en": "The ID of the resource group."
},
"Required": false
}
},
"Resources": {
"ExtensionDataSource": {
"Type": "DATASOURCE::ARMS::SyntheticTasks",
"Properties": {
"ResourceGroupId": {
"Ref": "ResourceGroupId"
}
}
}
},
"Outputs": {
"TaskIds": {
"Description": "The list of task IDs.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"TaskIds"
]
}
},
"SyntheticTasks": {
"Description": "The list of synthetic tasks.",
"Value": {
"Fn::GetAtt": [
"ExtensionDataSource",
"SyntheticTasks"
]
}
}
}
}
文檔內容是否對您有幫助?