-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathACS-ECS-ScheduleToExecuteTemplate.json
101 lines (101 loc) · 3.5 KB
/
ACS-ECS-ScheduleToExecuteTemplate.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"FormatVersion": "OOS-2019-06-01",
"Description": {
"en": "Schedules to execute specified template, applicable to scenarios where OOS templates need to be executed at specific intervals or time points, such as automated maintenance tasks and scheduled management tasks. During configuration, users need to provide the following required parameter information: Timer Trigger (timerTrigger), which configures the trigger type and expression, Template Name (templateName), which specifies the name of the OOS template to be executed, and Template Parameters (templateParameters), which are the parameters required for executing the template. Once defined, the template will trigger and execute the specified OOS template according to the configured schedule.",
"zh-cn": "定时执行指定模板,适用于需要在特定时间间隔或时间点执行OOS模板的场景,如自动化运维任务和定时管理任务。在配置过程中,用户需要提供以下必填参数信息,定时类型(timerTrigger):配置触发类型和表达式,模板名称(templateName):指定要执行的OOS模板名称,以及模板参数(templateParameters):模板执行时所需的参数。模板在定义后会根据设置的时间表定时触发并执行指定的OOS模板。",
"name-en": "ACS-ECS-ScheduleToExecuteTemplate",
"name-zh-cn": "定时执行指定模板",
"categories": [
"time_trigger"
]
},
"Parameters": {
"timerTrigger": {
"Type": "Json",
"Label": {
"en": "TimerTrigger",
"zh-cn": "定时类型"
},
"AssociationProperty": "ALIYUN::OOS::Component::TimerTrigger",
"AssociationPropertyMetadata": {
"MinuteInterval": 30
}
},
"templateName": {
"Type": "String",
"Label": {
"en": "TemplateName",
"zh-cn": "模板名称"
},
"AssociationProperty": "TemplateName"
},
"templateParameters": {
"Label": {
"en": "TemplateParemeters",
"zh-cn": "触发执行模板的参数"
},
"Type": "Json",
"AssociationProperty": "TemplateParameter",
"AssociationPropertyMetadata": {
"TemplateName": "templateName"
}
},
"OOSAssumeRole": {
"Label": {
"en": "OOSAssumeRole",
"zh-cn": "OOS扮演的RAM角色"
},
"Type": "String",
"Default": "OOSServiceRole"
}
},
"RamRole": "{{ OOSAssumeRole }}",
"Tasks": [
{
"Name": "timerTrigger",
"Action": "ACS::TimerTrigger",
"Description": {
"en": "Triggers a task as scheduled by specifying type and expression",
"zh-cn": "通过指定触发类型和表达式按计划触发任务"
},
"Properties": {
"Type": {
"Fn::Select": [
"type",
"{{timerTrigger}}"
]
},
"Expression": {
"Fn::Select": [
"expression",
"{{timerTrigger}}"
]
},
"EndDate": {
"Fn::Select": [
"endDate",
"{{ timerTrigger }}"
]
},
"TimeZone": {
"Fn::Select": [
"timeZone",
"{{ timerTrigger }}"
]
}
}
},
{
"Name": "executeTemplate",
"Action": "ACS::Template",
"Description": {
"en": "Execute template",
"zh-cn": "执行模板"
},
"Properties": {
"TemplateName": "{{ templateName }}",
"Parameters": "{{ templateParameters }}"
}
}
]
}