-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathACS::Redis::DeleteSecurityIpByInstanceIPArray.json
More file actions
100 lines (100 loc) · 2.62 KB
/
ACS::Redis::DeleteSecurityIpByInstanceIPArray.json
File metadata and controls
100 lines (100 loc) · 2.62 KB
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
{
"FormatVersion": "OOS-2019-06-01",
"Description": {
"en": "Delete specified ip from the ip white list array of redis instances",
"zh-cn": "从redis实例IP白名单分组里删除指定IP",
"name-en": "ACS::Redis::DeleteSecurityIpByInstanceIPArray",
"name-zh-cn": "从redis实例IP白名单分组里删除指定IP"
},
"Parameters": {
"regionId": {
"Description": {
"en": "region id of instances",
"zh-cn": "实例所在地域ID"
},
"Type": "String"
},
"instanceId": {
"Description": {
"en": "The id of redis instances",
"zh-cn": "redis实例ID"
},
"Type": "String"
},
"securityIpList": {
"Description": {
"en": "The security ips",
"zh-cn": "要修改的IP白名单"
},
"Type": "String"
},
"securityIpGroupName": {
"Description": {
"en": "The ip array name",
"zh-cn": "需要修改的IP白名单分组名称"
},
"Type": "String"
},
"securityIp": {
"Description": {
"en": "The security ip to delete",
"zh-cn": "需要删除的IP"
},
"Type": "String"
}
},
"Tasks": [
{
"Name": "checkSecurityIPList",
"Action": "ACS::Choice",
"Description": {
"en": "Check whether the ip list includes specified ip",
"zh-cn": "查询ip列表中是否包含指定ip"
},
"Properties": {
"DefaultTask": "ACS::END",
"Choices": [
{
"When": {
"Fn::Equals": [
true,
{
"Fn::Jq": [
"First",
"contains([\"{{ securityIp }}\"])",
{
"Fn::Split": [
",",
"{{ securityIpList }}"
]
}
]
}
]
},
"NextTask": "modifySecurityIps"
}
]
}
},
{
"Name": "modifySecurityIps",
"Action": "ACS::ExecuteAPI",
"Description": {
"en": "Delete specified ip from the ip white list array of redis instances",
"zh-cn": "从redis实例IP白名单分组里删除指定"
},
"Properties": {
"Service": "R-KVSTORE",
"API": "ModifySecurityIps",
"Parameters": {
"RegionId": "{{ regionId }}",
"InstanceId": "{{ instanceId }}",
"SecurityIps": "{{ securityIp }}",
"ModifyMode": "Delete",
"SecurityIpGroupName": "{{ securityIpGroupName }}"
}
}
}
]
}