ksyun-sdk-node 1.0.5 → 1.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/base/BaseClient.js +90 -55
- package/dist/index.js +9 -12
- package/dist/lib/fetch.js +4 -5
- package/dist/lib/sign.js +31 -33
- package/dist/lib/signautreV4.js +167 -0
- package/dist/service/Actiontrail/v20190401/index.js +4 -7
- package/dist/service/Bill/v20180601/index.js +11 -50
- package/dist/service/Bill/v20220601/index.js +64 -0
- package/dist/service/Bill_union/v20200101/index.js +48 -10
- package/dist/service/Bill_union/v20221222/index.js +142 -0
- package/dist/service/Bws/v20160304/index.js +23 -6
- package/dist/service/Cdn/v20160901/index.js +42 -0
- package/dist/service/Cdn/v20200630/index.js +410 -0
- package/dist/service/Cdn/v20200901/index.js +162 -0
- package/dist/service/Cen/v20160304/index.js +460 -0
- package/dist/service/Clickhouse/v20210101/index.js +546 -0
- package/dist/service/Ebs/v20160304/index.js +3 -6
- package/dist/service/Eip/v20160304/index.js +3 -6
- package/dist/service/Epc/v20151101/index.js +36 -60
- package/dist/service/Iam/v20151101/index.js +61 -7
- package/dist/service/Kad/v20161122/index.js +3 -6
- package/dist/service/Kce/v20180314/index.js +320 -0
- package/dist/service/Kce/v20190806/index.js +482 -0
- package/dist/service/Kce/v20201231/index.js +63 -0
- package/dist/service/Kcf/v20211215/index.js +203 -0
- package/dist/service/Kcm/v20160304/index.js +120 -0
- package/dist/service/Kcrs/v20211109/index.js +851 -0
- package/dist/service/Kcs/v20160701/index.js +1106 -0
- package/dist/service/Kcs/v20170401/index.js +81 -0
- package/dist/service/Kead/v20200101/index.js +3 -6
- package/dist/service/Kec/v20160304/index.js +107 -42
- package/dist/service/Ket/v20170101/index.js +141 -0
- package/dist/service/Kkms/v20160304/index.js +167 -0
- package/dist/service/Klog/v20200731/index.js +804 -0
- package/dist/service/Kls/v20170101/index.js +194 -0
- package/dist/service/Krds/v20160701/index.js +1302 -0
- package/dist/service/Krds/v20200825/index.js +174 -0
- package/dist/service/Memcached/v20180627/index.js +249 -0
- package/dist/service/Mongodb/v20170101/index.js +22 -7
- package/dist/service/Monitor/v20100525/index.js +70 -0
- package/dist/service/Monitor/v20181114/index.js +49 -0
- package/dist/service/Monitor/v20210101/index.js +179 -0
- package/dist/service/Monitor/v20220101/index.js +68 -0
- package/dist/service/Rabbitmq/v20191017/index.js +242 -0
- package/dist/service/Resourcemanager/v20210320/index.js +3 -6
- package/dist/service/Sks/v20151101/index.js +3 -6
- package/dist/service/Slb/v20160304/index.js +517 -8
- package/dist/service/Sts/v20151101/index.js +4 -7
- package/dist/service/Tagv2/v20200901/index.js +174 -0
- package/dist/service/Tidb/v20210520/index.js +363 -0
- package/dist/service/Trade/v20200114/index.js +3 -6
- package/dist/service/Trade/v20200831/index.js +3 -6
- package/dist/service/Vpc/v20160304/index.js +239 -7
- package/dist/service/Waf/v20200707/index.js +248 -0
- package/package.json +1 -1
- package/src/base/BaseClient.js +85 -36
- package/src/lib/signautreV4.js +166 -0
- package/src/service/Actiontrail/v20190401/index.js +1 -1
- package/src/service/Bill/v20180601/index.js +6 -46
- package/src/service/Bill/v20220601/index.js +56 -0
- package/src/service/Bill_union/v20200101/index.js +37 -0
- package/src/service/Bill_union/v20221222/index.js +134 -0
- package/src/service/Bws/v20160304/index.js +20 -0
- package/src/service/{Bill_union/v20211209 → Cdn/v20160901}/index.js +6 -6
- package/src/service/Cdn/v20200630/index.js +402 -0
- package/src/service/Cdn/v20200901/index.js +154 -0
- package/src/service/Cen/v20160304/index.js +452 -0
- package/src/service/Clickhouse/v20210101/index.js +538 -0
- package/src/service/Ebs/v20160304/index.js +1 -4
- package/src/service/Epc/v20151101/index.js +26 -50
- package/src/service/Iam/v20151101/index.js +57 -0
- package/src/service/Kce/v20180314/index.js +312 -0
- package/src/service/Kce/v20190806/index.js +474 -0
- package/src/service/Kce/v20201231/index.js +55 -0
- package/src/service/Kcf/v20211215/index.js +197 -0
- package/src/service/Kcm/v20160304/index.js +112 -0
- package/src/service/Kcrs/v20211109/index.js +857 -0
- package/src/service/Kcs/v20160701/index.js +1101 -0
- package/src/service/Kcs/v20170401/index.js +73 -0
- package/src/service/Kec/v20160304/index.js +86 -22
- package/src/service/Ket/v20170101/index.js +133 -0
- package/src/service/Kkms/v20160304/index.js +159 -0
- package/src/service/Klog/v20200731/index.js +810 -0
- package/src/service/Kls/v20170101/index.js +186 -0
- package/src/service/Krds/v20160701/index.js +1296 -0
- package/src/service/Krds/v20200825/index.js +166 -0
- package/src/service/Memcached/v20180627/index.js +248 -0
- package/src/service/Mongodb/v20170101/index.js +18 -0
- package/src/service/Monitor/v20100525/index.js +62 -0
- package/src/service/{Slb/v20171210 → Monitor/v20181114}/index.js +13 -11
- package/src/service/Monitor/v20210101/index.js +172 -0
- package/src/service/Monitor/v20220101/index.js +60 -0
- package/src/service/Rabbitmq/v20191017/index.js +234 -0
- package/src/service/Slb/v20160304/index.js +512 -0
- package/src/service/Sts/v20151101/index.js +1 -1
- package/src/service/Tagv2/v20200901/index.js +166 -0
- package/src/service/Tidb/v20210520/index.js +355 -0
- package/src/service/Vpc/v20160304/index.js +235 -0
- package/src/service/Waf/v20200707/index.js +240 -0
|
@@ -35,6 +35,22 @@ module.exports = class Client extends BaseClient {
|
|
|
35
35
|
'NextToken': 'String',
|
|
36
36
|
}
|
|
37
37
|
},
|
|
38
|
+
'DeleteListeners': {
|
|
39
|
+
'url': '/',
|
|
40
|
+
'method': 'GET',
|
|
41
|
+
'config': {
|
|
42
|
+
'query': {
|
|
43
|
+
'Version': '2016-03-04',
|
|
44
|
+
'Action': 'DeleteListeners',
|
|
45
|
+
},
|
|
46
|
+
'headers': {
|
|
47
|
+
'Content-Type': 'application/x-www-form-urlencoded'
|
|
48
|
+
},
|
|
49
|
+
},
|
|
50
|
+
'paramsType': {
|
|
51
|
+
'ListenerId': 'String',
|
|
52
|
+
}
|
|
53
|
+
},
|
|
38
54
|
'ModifyListeners': {
|
|
39
55
|
'url': '/',
|
|
40
56
|
'method': 'GET',
|
|
@@ -62,6 +78,7 @@ module.exports = class Client extends BaseClient {
|
|
|
62
78
|
'CookieType': 'String',
|
|
63
79
|
'CookieName': 'String',
|
|
64
80
|
'CertificateId': 'String',
|
|
81
|
+
'RedirectListenerId': 'String',
|
|
65
82
|
}
|
|
66
83
|
},
|
|
67
84
|
'CreateListeners': {
|
|
@@ -202,6 +219,22 @@ module.exports = class Client extends BaseClient {
|
|
|
202
219
|
'HealthCheckExp': 'String',
|
|
203
220
|
}
|
|
204
221
|
},
|
|
222
|
+
'DeleteHealthCheck': {
|
|
223
|
+
'url': '/',
|
|
224
|
+
'method': 'GET',
|
|
225
|
+
'config': {
|
|
226
|
+
'query': {
|
|
227
|
+
'Version': '2016-03-04',
|
|
228
|
+
'Action': 'DeleteHealthCheck',
|
|
229
|
+
},
|
|
230
|
+
'headers': {
|
|
231
|
+
'Content-Type': 'application/x-www-form-urlencoded'
|
|
232
|
+
},
|
|
233
|
+
},
|
|
234
|
+
'paramsType': {
|
|
235
|
+
'HealthCheckId': 'String',
|
|
236
|
+
}
|
|
237
|
+
},
|
|
205
238
|
'DescribeHealthChecks': {
|
|
206
239
|
'url': '/',
|
|
207
240
|
'method': 'GET',
|
|
@@ -269,6 +302,22 @@ module.exports = class Client extends BaseClient {
|
|
|
269
302
|
'State': 'String',
|
|
270
303
|
}
|
|
271
304
|
},
|
|
305
|
+
'DeleteLoadBalancer': {
|
|
306
|
+
'url': '/',
|
|
307
|
+
'method': 'GET',
|
|
308
|
+
'config': {
|
|
309
|
+
'query': {
|
|
310
|
+
'Version': '2016-03-04',
|
|
311
|
+
'Action': 'DeleteLoadBalancer',
|
|
312
|
+
},
|
|
313
|
+
'headers': {
|
|
314
|
+
'Content-Type': 'application/x-www-form-urlencoded'
|
|
315
|
+
},
|
|
316
|
+
},
|
|
317
|
+
'paramsType': {
|
|
318
|
+
'LoadBalancerId': 'String',
|
|
319
|
+
}
|
|
320
|
+
},
|
|
272
321
|
'ModifyLoadBalancer': {
|
|
273
322
|
'url': '/',
|
|
274
323
|
'method': 'GET',
|
|
@@ -439,6 +488,7 @@ module.exports = class Client extends BaseClient {
|
|
|
439
488
|
'UnhealthyThreshold': 'Int',
|
|
440
489
|
'UrlPath': 'String',
|
|
441
490
|
'Region': 'String',
|
|
491
|
+
'Type': 'String',
|
|
442
492
|
}
|
|
443
493
|
},
|
|
444
494
|
'DeleteBackendServerGroup': {
|
|
@@ -958,5 +1008,467 @@ module.exports = class Client extends BaseClient {
|
|
|
958
1008
|
'PrivateLinkId': 'String',
|
|
959
1009
|
}
|
|
960
1010
|
},
|
|
1011
|
+
'CreateAlb': {
|
|
1012
|
+
'url': '/',
|
|
1013
|
+
'method': 'GET',
|
|
1014
|
+
'config': {
|
|
1015
|
+
'query': {
|
|
1016
|
+
'Version': '2016-03-04',
|
|
1017
|
+
'Action': 'CreateAlb',
|
|
1018
|
+
},
|
|
1019
|
+
'headers': {
|
|
1020
|
+
'Content-Type': 'application/x-www-form-urlencoded'
|
|
1021
|
+
},
|
|
1022
|
+
},
|
|
1023
|
+
'paramsType': {
|
|
1024
|
+
'AlbName': 'String',
|
|
1025
|
+
'AlbVersion': 'String',
|
|
1026
|
+
'AlbType': 'String',
|
|
1027
|
+
'VpcId': 'String',
|
|
1028
|
+
'IpVersion': 'String',
|
|
1029
|
+
'ProjectId': 'String',
|
|
1030
|
+
'AllocationId': 'String',
|
|
1031
|
+
'ChargeType': 'String',
|
|
1032
|
+
}
|
|
1033
|
+
},
|
|
1034
|
+
'DeleteAlb': {
|
|
1035
|
+
'url': '/',
|
|
1036
|
+
'method': 'GET',
|
|
1037
|
+
'config': {
|
|
1038
|
+
'query': {
|
|
1039
|
+
'Version': '2016-03-04',
|
|
1040
|
+
'Action': 'DeleteAlb',
|
|
1041
|
+
},
|
|
1042
|
+
'headers': {
|
|
1043
|
+
'Content-Type': 'application/x-www-form-urlencoded'
|
|
1044
|
+
},
|
|
1045
|
+
},
|
|
1046
|
+
'paramsType': {
|
|
1047
|
+
'AlbId': 'String',
|
|
1048
|
+
}
|
|
1049
|
+
},
|
|
1050
|
+
'SetAlbName': {
|
|
1051
|
+
'url': '/',
|
|
1052
|
+
'method': 'GET',
|
|
1053
|
+
'config': {
|
|
1054
|
+
'query': {
|
|
1055
|
+
'Version': '2016-03-04',
|
|
1056
|
+
'Action': 'SetAlbName',
|
|
1057
|
+
},
|
|
1058
|
+
'headers': {
|
|
1059
|
+
'Content-Type': 'application/x-www-form-urlencoded'
|
|
1060
|
+
},
|
|
1061
|
+
},
|
|
1062
|
+
'paramsType': {
|
|
1063
|
+
'AlbId': 'String',
|
|
1064
|
+
'AlbName': 'String',
|
|
1065
|
+
}
|
|
1066
|
+
},
|
|
1067
|
+
'SetAlbStatus': {
|
|
1068
|
+
'url': '/',
|
|
1069
|
+
'method': 'GET',
|
|
1070
|
+
'config': {
|
|
1071
|
+
'query': {
|
|
1072
|
+
'Version': '2016-03-04',
|
|
1073
|
+
'Action': 'SetAlbStatus',
|
|
1074
|
+
},
|
|
1075
|
+
'headers': {
|
|
1076
|
+
'Content-Type': 'application/x-www-form-urlencoded'
|
|
1077
|
+
},
|
|
1078
|
+
},
|
|
1079
|
+
'paramsType': {
|
|
1080
|
+
'AlbId': 'String',
|
|
1081
|
+
'State': 'String',
|
|
1082
|
+
}
|
|
1083
|
+
},
|
|
1084
|
+
'DescribeAlbs': {
|
|
1085
|
+
'url': '/',
|
|
1086
|
+
'method': 'GET',
|
|
1087
|
+
'config': {
|
|
1088
|
+
'query': {
|
|
1089
|
+
'Version': '2016-03-04',
|
|
1090
|
+
'Action': 'DescribeAlbs',
|
|
1091
|
+
},
|
|
1092
|
+
'headers': {
|
|
1093
|
+
'Content-Type': 'application/x-www-form-urlencoded'
|
|
1094
|
+
},
|
|
1095
|
+
},
|
|
1096
|
+
'paramsType': {
|
|
1097
|
+
'AlbId': 'Filter',
|
|
1098
|
+
'Filter': 'Filter',
|
|
1099
|
+
'MaxResults': 'Int',
|
|
1100
|
+
'NextToken': 'String',
|
|
1101
|
+
}
|
|
1102
|
+
},
|
|
1103
|
+
'CreateAlbListener': {
|
|
1104
|
+
'url': '/',
|
|
1105
|
+
'method': 'GET',
|
|
1106
|
+
'config': {
|
|
1107
|
+
'query': {
|
|
1108
|
+
'Version': '2016-03-04',
|
|
1109
|
+
'Action': 'CreateAlbListener',
|
|
1110
|
+
},
|
|
1111
|
+
'headers': {
|
|
1112
|
+
'Content-Type': 'application/x-www-form-urlencoded'
|
|
1113
|
+
},
|
|
1114
|
+
},
|
|
1115
|
+
'paramsType': {
|
|
1116
|
+
'AlbId': 'String',
|
|
1117
|
+
'AlbListenerName': 'String',
|
|
1118
|
+
'Method': 'String',
|
|
1119
|
+
'Protocol': 'String',
|
|
1120
|
+
'Port': 'Int',
|
|
1121
|
+
'CertificateId': 'String',
|
|
1122
|
+
'TlsCipherPolicy': 'String',
|
|
1123
|
+
'AlbListenerAclId': 'String',
|
|
1124
|
+
'AlbListenerState': 'String',
|
|
1125
|
+
'SessionState': 'String',
|
|
1126
|
+
'SessionPersistencePeriod': 'Int',
|
|
1127
|
+
'CookieType': 'String',
|
|
1128
|
+
'CookieName': 'String',
|
|
1129
|
+
'EnableHttp2': 'Boolean',
|
|
1130
|
+
'HttpProtocol': 'String',
|
|
1131
|
+
}
|
|
1132
|
+
},
|
|
1133
|
+
'ModifyAlbListener': {
|
|
1134
|
+
'url': '/',
|
|
1135
|
+
'method': 'GET',
|
|
1136
|
+
'config': {
|
|
1137
|
+
'query': {
|
|
1138
|
+
'Version': '2016-03-04',
|
|
1139
|
+
'Action': 'ModifyAlbListener',
|
|
1140
|
+
},
|
|
1141
|
+
'headers': {
|
|
1142
|
+
'Content-Type': 'application/x-www-form-urlencoded'
|
|
1143
|
+
},
|
|
1144
|
+
},
|
|
1145
|
+
'paramsType': {
|
|
1146
|
+
'AlbListenerId': 'String',
|
|
1147
|
+
'AlbListenerName': 'String',
|
|
1148
|
+
'AlbListenerState': 'String',
|
|
1149
|
+
'Method': 'String',
|
|
1150
|
+
'CertificateId': 'String',
|
|
1151
|
+
'TlsCipherPolicy': 'String',
|
|
1152
|
+
'AlbListenerAclId': 'String',
|
|
1153
|
+
'HttpProtocol': 'String',
|
|
1154
|
+
'SessionState': 'String',
|
|
1155
|
+
'SessionPersistencePeriod': 'Int',
|
|
1156
|
+
'CookieType': 'String',
|
|
1157
|
+
'CookieName': 'String',
|
|
1158
|
+
'EnableHttp2': 'Boolean',
|
|
1159
|
+
}
|
|
1160
|
+
},
|
|
1161
|
+
'DeleteAlbListener': {
|
|
1162
|
+
'url': '/',
|
|
1163
|
+
'method': 'GET',
|
|
1164
|
+
'config': {
|
|
1165
|
+
'query': {
|
|
1166
|
+
'Version': '2016-03-04',
|
|
1167
|
+
'Action': 'DeleteAlbListener',
|
|
1168
|
+
},
|
|
1169
|
+
'headers': {
|
|
1170
|
+
'Content-Type': 'application/x-www-form-urlencoded'
|
|
1171
|
+
},
|
|
1172
|
+
},
|
|
1173
|
+
'paramsType': {
|
|
1174
|
+
'AlbListenerId': 'String',
|
|
1175
|
+
}
|
|
1176
|
+
},
|
|
1177
|
+
'DescribeAlbListeners': {
|
|
1178
|
+
'url': '/',
|
|
1179
|
+
'method': 'GET',
|
|
1180
|
+
'config': {
|
|
1181
|
+
'query': {
|
|
1182
|
+
'Version': '2016-03-04',
|
|
1183
|
+
'Action': 'DescribeAlbListeners',
|
|
1184
|
+
},
|
|
1185
|
+
'headers': {
|
|
1186
|
+
'Content-Type': 'application/x-www-form-urlencoded'
|
|
1187
|
+
},
|
|
1188
|
+
},
|
|
1189
|
+
'paramsType': {
|
|
1190
|
+
'AlbListenerId': 'Filter',
|
|
1191
|
+
'Filter': 'Filter',
|
|
1192
|
+
'MaxResults': 'Int',
|
|
1193
|
+
'NextToken': 'String',
|
|
1194
|
+
}
|
|
1195
|
+
},
|
|
1196
|
+
'CreateAlbRuleGroup': {
|
|
1197
|
+
'url': '/',
|
|
1198
|
+
'method': 'POST',
|
|
1199
|
+
'config': {
|
|
1200
|
+
'query': {
|
|
1201
|
+
'Version': '2016-03-04',
|
|
1202
|
+
'Action': 'CreateAlbRuleGroup',
|
|
1203
|
+
},
|
|
1204
|
+
'headers': {
|
|
1205
|
+
'Content-Type': 'application/json'
|
|
1206
|
+
},
|
|
1207
|
+
},
|
|
1208
|
+
'paramsType': {
|
|
1209
|
+
'AlbRuleGroupName': 'String',
|
|
1210
|
+
'AlbListenerId': 'String',
|
|
1211
|
+
'BackendServerGroupId': 'String',
|
|
1212
|
+
'ListenerSync': 'String',
|
|
1213
|
+
'Method': 'String',
|
|
1214
|
+
'SessionState': 'String',
|
|
1215
|
+
'SessionPersistencePeriod': 'Int',
|
|
1216
|
+
'CookieType': 'String',
|
|
1217
|
+
'CookieName': 'String',
|
|
1218
|
+
'HealthCheckState': 'String',
|
|
1219
|
+
'Timeout': 'Int',
|
|
1220
|
+
'Interval': 'Int',
|
|
1221
|
+
'HealthyThreshold': 'Int',
|
|
1222
|
+
'UnhealthyThreshold': 'Int',
|
|
1223
|
+
'UrlPath': 'String',
|
|
1224
|
+
'HostName': 'String',
|
|
1225
|
+
'AlbRuleSet': 'Array',
|
|
1226
|
+
'RedirectHttpCode': 'String',
|
|
1227
|
+
'RedirectAlbListenerId': 'String',
|
|
1228
|
+
}
|
|
1229
|
+
},
|
|
1230
|
+
'DeleteAlbRuleGroup': {
|
|
1231
|
+
'url': '/',
|
|
1232
|
+
'method': 'GET',
|
|
1233
|
+
'config': {
|
|
1234
|
+
'query': {
|
|
1235
|
+
'Version': '2016-03-04',
|
|
1236
|
+
'Action': 'DeleteAlbRuleGroup',
|
|
1237
|
+
},
|
|
1238
|
+
'headers': {
|
|
1239
|
+
'Content-Type': 'application/x-www-form-urlencoded'
|
|
1240
|
+
},
|
|
1241
|
+
},
|
|
1242
|
+
'paramsType': {
|
|
1243
|
+
'AlbRuleGroupId': 'String',
|
|
1244
|
+
}
|
|
1245
|
+
},
|
|
1246
|
+
'DescribeAlbRuleGroups': {
|
|
1247
|
+
'url': '/',
|
|
1248
|
+
'method': 'GET',
|
|
1249
|
+
'config': {
|
|
1250
|
+
'query': {
|
|
1251
|
+
'Version': '2016-03-04',
|
|
1252
|
+
'Action': 'DescribeAlbRuleGroups',
|
|
1253
|
+
},
|
|
1254
|
+
'headers': {
|
|
1255
|
+
'Content-Type': 'application/x-www-form-urlencoded'
|
|
1256
|
+
},
|
|
1257
|
+
},
|
|
1258
|
+
'paramsType': {
|
|
1259
|
+
'AlbRuleGroupId': 'Filter',
|
|
1260
|
+
'Filter': 'Filter',
|
|
1261
|
+
'MaxResults': 'Int',
|
|
1262
|
+
'NextToken': 'String',
|
|
1263
|
+
}
|
|
1264
|
+
},
|
|
1265
|
+
'ModifyAlbRuleGroup': {
|
|
1266
|
+
'url': '/',
|
|
1267
|
+
'method': 'POST',
|
|
1268
|
+
'config': {
|
|
1269
|
+
'query': {
|
|
1270
|
+
'Version': '2016-03-04',
|
|
1271
|
+
'Action': 'ModifyAlbRuleGroup',
|
|
1272
|
+
},
|
|
1273
|
+
'headers': {
|
|
1274
|
+
'Content-Type': 'application/json'
|
|
1275
|
+
},
|
|
1276
|
+
},
|
|
1277
|
+
'paramsType': {
|
|
1278
|
+
'AlbRuleGroupId': 'String',
|
|
1279
|
+
'AlbRuleGroupName': 'String',
|
|
1280
|
+
'BackendServerGroupId': 'String',
|
|
1281
|
+
'ListenerSync': 'String',
|
|
1282
|
+
'Method': 'String',
|
|
1283
|
+
'SessionState': 'String',
|
|
1284
|
+
'SessionPersistencePeriod': 'Int',
|
|
1285
|
+
'CookieType': 'String',
|
|
1286
|
+
'CookieName': 'String',
|
|
1287
|
+
'HealthCheckState': 'String',
|
|
1288
|
+
'Timeout': 'Int',
|
|
1289
|
+
'Interval': 'Int',
|
|
1290
|
+
'HealthyThreshold': 'Int',
|
|
1291
|
+
'UnhealthyThreshold': 'Int',
|
|
1292
|
+
'UrlPath': 'String',
|
|
1293
|
+
'HostName': 'String',
|
|
1294
|
+
'AlbRuleSet': 'Array',
|
|
1295
|
+
'RedirectHttpCode': 'String',
|
|
1296
|
+
'RedirectAlbListenerId': 'String',
|
|
1297
|
+
}
|
|
1298
|
+
},
|
|
1299
|
+
'AddAlbRule': {
|
|
1300
|
+
'url': '/',
|
|
1301
|
+
'method': 'GET',
|
|
1302
|
+
'config': {
|
|
1303
|
+
'query': {
|
|
1304
|
+
'Version': '2016-03-04',
|
|
1305
|
+
'Action': 'AddAlbRule',
|
|
1306
|
+
},
|
|
1307
|
+
'headers': {
|
|
1308
|
+
'Content-Type': 'application/x-www-form-urlencoded'
|
|
1309
|
+
},
|
|
1310
|
+
},
|
|
1311
|
+
'paramsType': {
|
|
1312
|
+
'AlbRuleGroupId': 'String',
|
|
1313
|
+
'AlbRuleType': 'String',
|
|
1314
|
+
'AlbRuleValue': 'String',
|
|
1315
|
+
}
|
|
1316
|
+
},
|
|
1317
|
+
'DeleteAlbRule': {
|
|
1318
|
+
'url': '/',
|
|
1319
|
+
'method': 'GET',
|
|
1320
|
+
'config': {
|
|
1321
|
+
'query': {
|
|
1322
|
+
'Version': '2016-03-04',
|
|
1323
|
+
'Action': 'DeleteAlbRule',
|
|
1324
|
+
},
|
|
1325
|
+
'headers': {
|
|
1326
|
+
'Content-Type': 'application/x-www-form-urlencoded'
|
|
1327
|
+
},
|
|
1328
|
+
},
|
|
1329
|
+
'paramsType': {
|
|
1330
|
+
'AlbRuleGroupId': 'String',
|
|
1331
|
+
'AlbRuleType': 'String',
|
|
1332
|
+
'AlbRuleValue': 'String',
|
|
1333
|
+
}
|
|
1334
|
+
},
|
|
1335
|
+
'CreateAlbListenerCertGroup': {
|
|
1336
|
+
'url': '/',
|
|
1337
|
+
'method': 'GET',
|
|
1338
|
+
'config': {
|
|
1339
|
+
'query': {
|
|
1340
|
+
'Version': '2016-03-04',
|
|
1341
|
+
'Action': 'CreateAlbListenerCertGroup',
|
|
1342
|
+
},
|
|
1343
|
+
'headers': {
|
|
1344
|
+
'Content-Type': 'application/x-www-form-urlencoded'
|
|
1345
|
+
},
|
|
1346
|
+
},
|
|
1347
|
+
'paramsType': {
|
|
1348
|
+
'AlbListenerId': 'String',
|
|
1349
|
+
}
|
|
1350
|
+
},
|
|
1351
|
+
'DeleteAlbListenerCertGroup': {
|
|
1352
|
+
'url': '/',
|
|
1353
|
+
'method': 'GET',
|
|
1354
|
+
'config': {
|
|
1355
|
+
'query': {
|
|
1356
|
+
'Version': '2016-03-04',
|
|
1357
|
+
'Action': 'DeleteAlbListenerCertGroup',
|
|
1358
|
+
},
|
|
1359
|
+
'headers': {
|
|
1360
|
+
'Content-Type': 'application/x-www-form-urlencoded'
|
|
1361
|
+
},
|
|
1362
|
+
},
|
|
1363
|
+
'paramsType': {
|
|
1364
|
+
'AlbListenerCertGroupId': 'String',
|
|
1365
|
+
}
|
|
1366
|
+
},
|
|
1367
|
+
'DescribeAlbListenerCertGroups': {
|
|
1368
|
+
'url': '/',
|
|
1369
|
+
'method': 'GET',
|
|
1370
|
+
'config': {
|
|
1371
|
+
'query': {
|
|
1372
|
+
'Version': '2016-03-04',
|
|
1373
|
+
'Action': 'DescribeAlbListenerCertGroups',
|
|
1374
|
+
},
|
|
1375
|
+
'headers': {
|
|
1376
|
+
'Content-Type': 'application/x-www-form-urlencoded'
|
|
1377
|
+
},
|
|
1378
|
+
},
|
|
1379
|
+
'paramsType': {
|
|
1380
|
+
'AlbListenerCertGroupId': 'Filter',
|
|
1381
|
+
'Filter': 'Filter',
|
|
1382
|
+
'MaxResults': 'Int',
|
|
1383
|
+
'NextToken': 'String',
|
|
1384
|
+
}
|
|
1385
|
+
},
|
|
1386
|
+
'AssociateCertificateWithGroup': {
|
|
1387
|
+
'url': '/',
|
|
1388
|
+
'method': 'GET',
|
|
1389
|
+
'config': {
|
|
1390
|
+
'query': {
|
|
1391
|
+
'Version': '2016-03-04',
|
|
1392
|
+
'Action': 'AssociateCertificateWithGroup',
|
|
1393
|
+
},
|
|
1394
|
+
'headers': {
|
|
1395
|
+
'Content-Type': 'application/x-www-form-urlencoded'
|
|
1396
|
+
},
|
|
1397
|
+
},
|
|
1398
|
+
'paramsType': {
|
|
1399
|
+
'AlbListenerCertGroupId': 'String',
|
|
1400
|
+
'CertificateId': 'String',
|
|
1401
|
+
}
|
|
1402
|
+
},
|
|
1403
|
+
'DissociateCertificateWithGroup': {
|
|
1404
|
+
'url': '/',
|
|
1405
|
+
'method': 'GET',
|
|
1406
|
+
'config': {
|
|
1407
|
+
'query': {
|
|
1408
|
+
'Version': '2016-03-04',
|
|
1409
|
+
'Action': 'DissociateCertificateWithGroup',
|
|
1410
|
+
},
|
|
1411
|
+
'headers': {
|
|
1412
|
+
'Content-Type': 'application/x-www-form-urlencoded'
|
|
1413
|
+
},
|
|
1414
|
+
},
|
|
1415
|
+
'paramsType': {
|
|
1416
|
+
'AlbListenerCertGroupId': 'String',
|
|
1417
|
+
'CertificateId': 'String',
|
|
1418
|
+
}
|
|
1419
|
+
},
|
|
1420
|
+
'SetEnableAlbAccessLog': {
|
|
1421
|
+
'url': '/',
|
|
1422
|
+
'method': 'GET',
|
|
1423
|
+
'config': {
|
|
1424
|
+
'query': {
|
|
1425
|
+
'Version': '2016-03-04',
|
|
1426
|
+
'Action': 'SetEnableAlbAccessLog',
|
|
1427
|
+
},
|
|
1428
|
+
'headers': {
|
|
1429
|
+
'Content-Type': 'application/x-www-form-urlencoded'
|
|
1430
|
+
},
|
|
1431
|
+
},
|
|
1432
|
+
'paramsType': {
|
|
1433
|
+
'AlbId': 'String',
|
|
1434
|
+
'EnabledLog': 'Boolean',
|
|
1435
|
+
}
|
|
1436
|
+
},
|
|
1437
|
+
'SetAlbAccessLog': {
|
|
1438
|
+
'url': '/',
|
|
1439
|
+
'method': 'GET',
|
|
1440
|
+
'config': {
|
|
1441
|
+
'query': {
|
|
1442
|
+
'Version': '2016-03-04',
|
|
1443
|
+
'Action': 'SetAlbAccessLog',
|
|
1444
|
+
},
|
|
1445
|
+
'headers': {
|
|
1446
|
+
'Content-Type': 'application/json'
|
|
1447
|
+
},
|
|
1448
|
+
},
|
|
1449
|
+
'paramsType': {
|
|
1450
|
+
'AlbId': 'String',
|
|
1451
|
+
'ProjectName': 'String',
|
|
1452
|
+
'LogpoolName': 'String',
|
|
1453
|
+
}
|
|
1454
|
+
},
|
|
1455
|
+
'CloneLoadBalancer': {
|
|
1456
|
+
'url': '/',
|
|
1457
|
+
'method': 'GET',
|
|
1458
|
+
'config': {
|
|
1459
|
+
'query': {
|
|
1460
|
+
'Version': '2016-03-04',
|
|
1461
|
+
'Action': 'CloneLoadBalancer',
|
|
1462
|
+
},
|
|
1463
|
+
'headers': {
|
|
1464
|
+
'Content-Type': 'application/x-www-form-urlencoded'
|
|
1465
|
+
},
|
|
1466
|
+
},
|
|
1467
|
+
'paramsType': {
|
|
1468
|
+
'VpcId': 'String',
|
|
1469
|
+
'LoadBalancerName': 'String',
|
|
1470
|
+
'Type': 'String',
|
|
1471
|
+
}
|
|
1472
|
+
},
|
|
961
1473
|
}
|
|
962
1474
|
}
|