ksyun-sdk-node 1.0.5 → 1.4.8

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.
Files changed (133) hide show
  1. package/.claude/settings.local.json +12 -0
  2. package/dist/base/BaseClient.js +133 -52
  3. package/dist/index.js +9 -12
  4. package/dist/lib/fetch.js +4 -5
  5. package/dist/lib/sign.js +31 -33
  6. package/dist/lib/signautreV4.js +167 -0
  7. package/dist/service/Actiontrail/v20190401/index.js +34 -37
  8. package/dist/service/Aicp/v20240612/index.js +511 -0
  9. package/dist/service/Bill/v20180601/index.js +49 -88
  10. package/dist/service/Bill/v20220601/index.js +64 -0
  11. package/dist/service/Bill_union/v20200101/index.js +151 -77
  12. package/dist/service/Bill_union/v20221222/index.js +142 -0
  13. package/dist/service/Bill_union/v20250801/index.js +66 -0
  14. package/dist/service/Bws/v20160304/index.js +111 -94
  15. package/dist/service/Cdn/v20160901/index.js +89 -0
  16. package/dist/service/Cdn/v20200630/index.js +410 -0
  17. package/dist/service/Cdn/v20200901/index.js +162 -0
  18. package/dist/service/Cdn/v20211201/index.js +45 -0
  19. package/dist/service/Cdn/v20250503/index.js +71 -0
  20. package/dist/service/Cen/v20160304/index.js +460 -0
  21. package/dist/service/Clickhouse/v20210101/index.js +546 -0
  22. package/dist/service/Ebs/v20160304/index.js +265 -268
  23. package/dist/service/Eip/v20160304/index.js +104 -107
  24. package/dist/service/Epc/v20151101/index.js +1735 -784
  25. package/dist/service/Iam/v20151101/index.js +872 -711
  26. package/dist/service/Iam/v20240513/index.js +47 -0
  27. package/dist/service/Iam/v20240703/index.js +44 -0
  28. package/dist/service/Kad/v20161122/index.js +84 -87
  29. package/dist/service/Kce/v20180314/index.js +320 -0
  30. package/dist/service/Kce/v20190806/index.js +482 -0
  31. package/dist/service/Kce/v20201231/index.js +63 -0
  32. package/dist/service/Kcf/v20211215/index.js +203 -0
  33. package/dist/service/Kcm/v20160304/index.js +120 -0
  34. package/dist/service/Kcrs/v20211109/index.js +851 -0
  35. package/dist/service/Kcs/v20160701/index.js +1106 -0
  36. package/dist/service/Kcs/v20170401/index.js +81 -0
  37. package/dist/service/Kead/v20200101/index.js +28 -31
  38. package/dist/service/Kec/v20160304/index.js +1695 -1466
  39. package/dist/service/Kes/v20201215/index.js +171 -0
  40. package/dist/service/Ket/v20170101/index.js +141 -0
  41. package/dist/service/Kkms/v20160304/index.js +167 -0
  42. package/dist/service/Klog/v20200731/index.js +331 -0
  43. package/dist/service/Kls/v20170101/index.js +194 -0
  44. package/dist/service/Kmr/v20210902/index.js +422 -0
  45. package/dist/service/Kmr/v20231231/index.js +154 -0
  46. package/dist/service/Kmr/v20240814/index.js +370 -0
  47. package/dist/service/Krds/v20160701/index.js +1302 -0
  48. package/dist/service/Krds/v20200825/index.js +174 -0
  49. package/dist/service/Memcached/v20180627/index.js +249 -0
  50. package/dist/service/Mongodb/v20170101/index.js +516 -501
  51. package/dist/service/Monitor/v20100525/index.js +70 -0
  52. package/dist/service/Monitor/v20181114/index.js +49 -0
  53. package/dist/service/Monitor/v20210101/index.js +216 -0
  54. package/dist/service/Monitor/v20220101/index.js +58 -0
  55. package/dist/service/Monitor/v20250101/index.js +71 -0
  56. package/dist/service/Rabbitmq/v20191017/index.js +242 -0
  57. package/dist/service/Resourcemanager/v20210320/index.js +113 -116
  58. package/dist/service/Sks/v20151101/index.js +72 -75
  59. package/dist/service/Slb/v20160304/index.js +1299 -790
  60. package/dist/service/Sts/v20151101/index.js +26 -29
  61. package/dist/service/Tagv2/v20200901/index.js +174 -0
  62. package/dist/service/Tidb/v20210520/index.js +363 -0
  63. package/dist/service/Trade/v20200114/index.js +23 -26
  64. package/dist/service/Trade/v20200831/index.js +25 -28
  65. package/dist/service/Vpc/v20160304/index.js +2015 -1045
  66. package/dist/service/Waf/v20200707/index.js +248 -0
  67. package/example/iam.js +2 -1
  68. package/example/res.js +2 -1
  69. package/package.json +1 -1
  70. package/src/base/BaseClient.js +131 -35
  71. package/src/lib/signautreV4.js +166 -0
  72. package/src/service/Actiontrail/v20190401/index.js +42 -42
  73. package/src/service/Aicp/v20240612/index.js +503 -0
  74. package/src/service/Bill/v20180601/index.js +61 -102
  75. package/src/service/Bill/v20220601/index.js +56 -0
  76. package/src/service/Bill_union/v20200101/index.js +181 -109
  77. package/src/service/Bill_union/v20221222/index.js +134 -0
  78. package/src/service/Bill_union/v20250801/index.js +58 -0
  79. package/src/service/Bws/v20160304/index.js +139 -119
  80. package/src/service/Cdn/v20160901/index.js +81 -0
  81. package/src/service/Cdn/v20200630/index.js +402 -0
  82. package/src/service/Cdn/v20200901/index.js +154 -0
  83. package/src/service/Cdn/v20211201/index.js +37 -0
  84. package/src/service/Cdn/v20250503/index.js +63 -0
  85. package/src/service/Cen/v20160304/index.js +452 -0
  86. package/src/service/Clickhouse/v20210101/index.js +538 -0
  87. package/src/service/Ebs/v20160304/index.js +365 -368
  88. package/src/service/Eip/v20160304/index.js +135 -136
  89. package/src/service/Epc/v20151101/index.js +1984 -1033
  90. package/src/service/Iam/v20151101/index.js +1155 -993
  91. package/src/service/Iam/v20240513/index.js +39 -0
  92. package/src/service/Iam/v20240703/index.js +36 -0
  93. package/src/service/Kad/v20161122/index.js +112 -112
  94. package/src/service/Kce/v20180314/index.js +312 -0
  95. package/src/service/Kce/v20190806/index.js +474 -0
  96. package/src/service/Kce/v20201231/index.js +55 -0
  97. package/src/service/Kcf/v20211215/index.js +195 -0
  98. package/src/service/Kcm/v20160304/index.js +112 -0
  99. package/src/service/Kcrs/v20211109/index.js +843 -0
  100. package/src/service/Kcs/v20160701/index.js +1098 -0
  101. package/src/service/Kcs/v20170401/index.js +73 -0
  102. package/src/service/Kead/v20200101/index.js +36 -36
  103. package/src/service/Kec/v20160304/index.js +2061 -1838
  104. package/src/service/Kes/v20201215/index.js +163 -0
  105. package/src/service/Ket/v20170101/index.js +133 -0
  106. package/src/service/Kkms/v20160304/index.js +159 -0
  107. package/src/service/Klog/v20200731/index.js +323 -0
  108. package/src/service/Kls/v20170101/index.js +186 -0
  109. package/src/service/Kmr/v20210902/index.js +414 -0
  110. package/src/service/Kmr/v20231231/index.js +146 -0
  111. package/src/service/Kmr/v20240814/index.js +362 -0
  112. package/src/service/Krds/v20160701/index.js +1294 -0
  113. package/src/service/Krds/v20200825/index.js +166 -0
  114. package/src/service/Memcached/v20180627/index.js +241 -0
  115. package/src/service/Mongodb/v20170101/index.js +672 -654
  116. package/src/service/Monitor/v20100525/index.js +62 -0
  117. package/src/service/Monitor/v20181114/index.js +41 -0
  118. package/src/service/Monitor/v20210101/index.js +208 -0
  119. package/src/service/Monitor/v20220101/index.js +50 -0
  120. package/src/service/Monitor/v20250101/index.js +63 -0
  121. package/src/service/Rabbitmq/v20191017/index.js +234 -0
  122. package/src/service/Resourcemanager/v20210320/index.js +157 -158
  123. package/src/service/Sks/v20151101/index.js +95 -96
  124. package/src/service/Slb/v20160304/index.js +1471 -959
  125. package/src/service/Sts/v20151101/index.js +34 -34
  126. package/src/service/Tagv2/v20200901/index.js +166 -0
  127. package/src/service/Tidb/v20210520/index.js +355 -0
  128. package/src/service/Trade/v20200114/index.js +31 -31
  129. package/src/service/Trade/v20200831/index.js +33 -33
  130. package/src/service/Vpc/v20160304/index.js +2404 -1432
  131. package/src/service/Waf/v20200707/index.js +240 -0
  132. package/src/service/Bill_union/v20211209/index.js +0 -35
  133. package/src/service/Slb/v20171210/index.js +0 -39
@@ -1,1843 +1,2072 @@
1
1
  "use strict";
2
2
 
3
- function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
4
-
3
+ function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
4
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
5
+ function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
5
6
  const BaseClient = require("../../../base/BaseClient.js");
6
-
7
7
  module.exports = class Client extends BaseClient {
8
8
  constructor(...args) {
9
9
  super(...args);
10
-
11
10
  _defineProperty(this, "_baseConfig", {
12
- 'protocol': 'http://',
13
- 'endpoint': 'kec.api.ksyun.com',
14
- 'config': {
15
- 'timeout': 60,
11
+ protocol: "http://",
12
+ endpoint: "kec.api.ksyun.com",
13
+ config: {
14
+ timeout: 60,
16
15
  //设置timeout
17
- 'headers': {
18
- 'Accept': 'application/json'
16
+ headers: {
17
+ Accept: "application/json"
19
18
  },
20
- 'credentials': {
21
- 'region': 'cn-shanghai-3',
22
- 'service': 'kec'
19
+ credentials: {
20
+ region: "cn-shanghai-3",
21
+ service: "kec"
23
22
  }
24
23
  }
25
24
  });
26
-
27
25
  _defineProperty(this, "_apiList", {
28
- 'DescribeInstances': {
29
- 'url': '/',
30
- 'method': 'GET',
31
- 'config': {
32
- 'query': {
33
- 'Version': '2016-03-04',
34
- 'Action': 'DescribeInstances'
35
- },
36
- 'headers': {
37
- 'Content-Type': 'application/x-www-form-urlencoded'
38
- }
39
- },
40
- 'paramsType': {
41
- 'MaxResults': 'Int',
42
- 'Marker': 'Int',
43
- 'InstanceId': 'Filter',
44
- 'ProjectId': 'Filter',
45
- 'Filter': 'Filter',
46
- 'Sort': 'String',
47
- 'Search': 'String'
48
- }
49
- },
50
- 'RunInstances': {
51
- 'url': '/',
52
- 'method': 'GET',
53
- 'config': {
54
- 'query': {
55
- 'Version': '2016-03-04',
56
- 'Action': 'RunInstances'
57
- },
58
- 'headers': {
59
- 'Content-Type': 'application/x-www-form-urlencoded'
60
- }
61
- },
62
- 'paramsType': {
63
- 'ImageId': 'String',
64
- 'DedicatedHostId': 'String',
65
- 'InstanceConfigure.VCPU': 'String',
66
- 'InstanceConfigure.MemoryGb': 'String',
67
- 'InstanceType': 'String',
68
- 'DataDiskGb': 'Int',
69
- 'MaxCount': 'Int',
70
- 'MinCount': 'Int',
71
- 'SubnetId': 'String',
72
- 'InstancePassword': 'String',
73
- 'ChargeType': 'String',
74
- 'PurchaseTime': 'Int',
75
- 'SecurityGroupId': 'String',
76
- 'PrivateIpAddress': 'String',
77
- 'InstanceName': 'String',
78
- 'InstanceNameSuffix': 'String',
79
- 'ProjectId': 'Int',
80
- 'DataDisk': 'Filter',
81
- 'NetworkInterface': 'Filter',
82
- 'Userdata': 'String',
83
- 'SystemDisk.DiskType': 'String',
84
- 'SystemDisk.DiskSize': 'Int'
85
- }
86
- },
87
- 'StartInstances': {
88
- 'url': '/',
89
- 'method': 'GET',
90
- 'config': {
91
- 'query': {
92
- 'Version': '2016-03-04',
93
- 'Action': 'StartInstances'
94
- },
95
- 'headers': {
96
- 'Content-Type': 'application/x-www-form-urlencoded'
97
- }
98
- },
99
- 'paramsType': {
100
- 'InstanceId': 'Filter'
101
- }
102
- },
103
- 'StopInstances': {
104
- 'url': '/',
105
- 'method': 'GET',
106
- 'config': {
107
- 'query': {
108
- 'Version': '2016-03-04',
109
- 'Action': 'StopInstances'
110
- },
111
- 'headers': {
112
- 'Content-Type': 'application/x-www-form-urlencoded'
113
- }
114
- },
115
- 'paramsType': {
116
- 'InstanceId': 'Filter',
117
- 'ForceStop': 'Boolean',
118
- 'StoppedMode': 'String'
119
- }
120
- },
121
- 'RebootInstances': {
122
- 'url': '/',
123
- 'method': 'GET',
124
- 'config': {
125
- 'query': {
126
- 'Version': '2016-03-04',
127
- 'Action': 'RebootInstances'
128
- },
129
- 'headers': {
130
- 'Content-Type': 'application/x-www-form-urlencoded'
131
- }
132
- },
133
- 'paramsType': {
134
- 'InstanceId': 'Filter',
135
- 'ForceReboot': 'Boolean'
136
- }
137
- },
138
- 'ModifyInstanceAttribute': {
139
- 'url': '/',
140
- 'method': 'GET',
141
- 'config': {
142
- 'query': {
143
- 'Version': '2016-03-04',
144
- 'Action': 'ModifyInstanceAttribute'
145
- },
146
- 'headers': {
147
- 'Content-Type': 'application/x-www-form-urlencoded'
148
- }
149
- },
150
- 'paramsType': {
151
- 'InstanceId': 'String',
152
- 'InstanceName': 'String',
153
- 'InstancePassword': 'String',
154
- 'HostName': 'String',
155
- 'RestartMode': 'String'
156
- }
157
- },
158
- 'ModifyInstanceType': {
159
- 'url': '/',
160
- 'method': 'GET',
161
- 'config': {
162
- 'query': {
163
- 'Version': '2016-03-04',
164
- 'Action': 'ModifyInstanceType'
165
- },
166
- 'headers': {
167
- 'Content-Type': 'application/x-www-form-urlencoded'
168
- }
169
- },
170
- 'paramsType': {
171
- 'InstanceId': 'String',
172
- 'InstanceType': 'String',
173
- 'InstanceConfigure.VCPU': 'String',
174
- 'InstanceConfigure.MemoryGb': 'String',
175
- 'DataDiskGb': 'Int',
176
- 'CrossInstanceMigrate': 'Boolean',
177
- 'SystemDisk.DiskType': 'String',
178
- 'DataDisk': 'Filter',
179
- 'StopInstance': 'Boolean',
180
- 'AutoRestart': 'Boolean',
181
- 'SystemDisk.DiskSize': 'Int',
182
- 'SystemDisk.ResizeType': 'String'
26
+ DescribeInstances: {
27
+ url: "/",
28
+ method: "GET",
29
+ config: {
30
+ query: {
31
+ Version: "2016-03-04",
32
+ Action: "DescribeInstances"
33
+ },
34
+ headers: {
35
+ "Content-Type": "application/x-www-form-urlencoded"
36
+ }
37
+ },
38
+ paramsType: {
39
+ MaxResults: "Int",
40
+ Marker: "Int",
41
+ InstanceId: "Filter",
42
+ ProjectId: "Filter",
43
+ Filter: "Filter",
44
+ Sort: "String",
45
+ Search: "String"
46
+ }
47
+ },
48
+ RunInstances: {
49
+ url: "/",
50
+ method: "GET",
51
+ config: {
52
+ query: {
53
+ Version: "2016-03-04",
54
+ Action: "RunInstances"
55
+ },
56
+ headers: {
57
+ "Content-Type": "application/x-www-form-urlencoded"
58
+ }
59
+ },
60
+ paramsType: {
61
+ ImageId: "String",
62
+ DedicatedHostId: "String",
63
+ InstanceType: "String",
64
+ DataDiskGb: "Int",
65
+ MaxCount: "Int",
66
+ MinCount: "Int",
67
+ SubnetId: "String",
68
+ InstancePassword: "String",
69
+ ChargeType: "String",
70
+ PurchaseTime: "Int",
71
+ SecurityGroupId: "Filter",
72
+ PrivateIpAddress: "String",
73
+ InstanceName: "String",
74
+ InstanceNameSuffix: "String",
75
+ ProjectId: "Int",
76
+ DataDisk: "Filter",
77
+ NetworkInterface: "Filter",
78
+ UserData: "String",
79
+ SystemDisk: "Object",
80
+ ModelId: "String",
81
+ ModelVersion: "Int",
82
+ AssembledImageDataDiskType: "String",
83
+ AutoCreateEbs: "Boolean",
84
+ LineId: "String",
85
+ AddressBandWidth: "Int",
86
+ AddressChargeType: "String",
87
+ AddressProjectId: "String",
88
+ BandWidthShareId: "String",
89
+ AddressPurchaseTime: "Int",
90
+ KeyId: "Filter",
91
+ KeepImageLogin: "Boolean",
92
+ HostName: "String",
93
+ HostNameSuffix: "Int",
94
+ FailureAutoDelete: "Boolean",
95
+ Tag: "Filter",
96
+ DataGuardId: "String",
97
+ InstanceConfigure: "Object",
98
+ SriovNetSupport: "Boolean",
99
+ DistributeIpv6: "Boolean",
100
+ LocalVolumeSnapshotId: "String",
101
+ SyncTag: "Boolean",
102
+ IamRoleName: "String",
103
+ AutoDeleteTime: "String",
104
+ AutoDeleteEip: "Boolean",
105
+ IsProtect: "Boolean"
106
+ }
107
+ },
108
+ StartInstances: {
109
+ url: "/",
110
+ method: "GET",
111
+ config: {
112
+ query: {
113
+ Version: "2016-03-04",
114
+ Action: "StartInstances"
115
+ },
116
+ headers: {
117
+ "Content-Type": "application/x-www-form-urlencoded"
118
+ }
119
+ },
120
+ paramsType: {
121
+ InstanceId: "Filter"
122
+ }
123
+ },
124
+ StopInstances: {
125
+ url: "/",
126
+ method: "GET",
127
+ config: {
128
+ query: {
129
+ Version: "2016-03-04",
130
+ Action: "StopInstances"
131
+ },
132
+ headers: {
133
+ "Content-Type": "application/x-www-form-urlencoded"
134
+ }
135
+ },
136
+ paramsType: {
137
+ InstanceId: "Filter",
138
+ ForceStop: "Boolean",
139
+ StoppedMode: "String"
140
+ }
141
+ },
142
+ RebootInstances: {
143
+ url: "/",
144
+ method: "GET",
145
+ config: {
146
+ query: {
147
+ Version: "2016-03-04",
148
+ Action: "RebootInstances"
149
+ },
150
+ headers: {
151
+ "Content-Type": "application/x-www-form-urlencoded"
152
+ }
153
+ },
154
+ paramsType: {
155
+ InstanceId: "Filter",
156
+ ForceReboot: "Boolean"
157
+ }
158
+ },
159
+ ModifyInstanceAttribute: {
160
+ url: "/",
161
+ method: "GET",
162
+ config: {
163
+ query: {
164
+ Version: "2016-03-04",
165
+ Action: "ModifyInstanceAttribute"
166
+ },
167
+ headers: {
168
+ "Content-Type": "application/x-www-form-urlencoded"
169
+ }
170
+ },
171
+ paramsType: {
172
+ InstanceId: "String",
173
+ InstanceName: "String",
174
+ InstancePassword: "String",
175
+ HostName: "String",
176
+ RestartMode: "String"
177
+ }
178
+ },
179
+ ModifyInstanceType: {
180
+ url: "/",
181
+ method: "GET",
182
+ config: {
183
+ query: {
184
+ Version: "2016-03-04",
185
+ Action: "ModifyInstanceType"
186
+ },
187
+ headers: {
188
+ "Content-Type": "application/x-www-form-urlencoded"
189
+ }
190
+ },
191
+ paramsType: {
192
+ InstanceId: "String",
193
+ InstanceType: "String",
194
+ "InstanceConfigure.VCPU": "String",
195
+ "InstanceConfigure.MemoryGb": "String",
196
+ DataDiskGb: "Int",
197
+ CrossInstanceMigrate: "Boolean",
198
+ "SystemDisk.DiskType": "String",
199
+ DataDisk: "Filter",
200
+ StopInstance: "Boolean",
201
+ AutoRestart: "Boolean",
202
+ "SystemDisk.DiskSize": "Int",
203
+ "SystemDisk.ResizeType": "String",
204
+ InstantAccess: "Boolean"
183
205
  }
184
206
  },
185
- 'TerminateInstances': {
186
- 'url': '/',
187
- 'method': 'GET',
188
- 'config': {
189
- 'query': {
190
- 'Version': '2016-03-04',
191
- 'Action': 'TerminateInstances'
207
+ TerminateInstances: {
208
+ url: "/",
209
+ method: "GET",
210
+ config: {
211
+ query: {
212
+ Version: "2016-03-04",
213
+ Action: "TerminateInstances"
192
214
  },
193
- 'headers': {
194
- 'Content-Type': 'application/x-www-form-urlencoded'
215
+ headers: {
216
+ "Content-Type": "application/x-www-form-urlencoded"
195
217
  }
196
218
  },
197
- 'paramsType': {
198
- 'InstanceId': 'Filter',
199
- 'ForceDelete': 'Boolean'
219
+ paramsType: {
220
+ InstanceId: "Filter",
221
+ ForceDelete: "Boolean"
200
222
  }
201
223
  },
202
- 'DescribeImages': {
203
- 'url': '/',
204
- 'method': 'GET',
205
- 'config': {
206
- 'query': {
207
- 'Version': '2016-03-04',
208
- 'Action': 'DescribeImages'
224
+ DescribeImages: {
225
+ url: "/",
226
+ method: "GET",
227
+ config: {
228
+ query: {
229
+ Version: "2016-03-04",
230
+ Action: "DescribeImages"
209
231
  },
210
- 'headers': {
211
- 'Content-Type': 'application/x-www-form-urlencoded'
232
+ headers: {
233
+ "Content-Type": "application/x-www-form-urlencoded"
212
234
  }
213
235
  },
214
- 'paramsType': {
215
- 'ImageId': 'String',
216
- 'ImageType': 'String'
236
+ paramsType: {
237
+ ImageId: "String",
238
+ ImageType: "String"
217
239
  }
218
240
  },
219
- 'ModifyImageAttribute': {
220
- 'url': '/',
221
- 'method': 'GET',
222
- 'config': {
223
- 'query': {
224
- 'Version': '2016-03-04',
225
- 'Action': 'ModifyImageAttribute'
241
+ ModifyImageAttribute: {
242
+ url: "/",
243
+ method: "GET",
244
+ config: {
245
+ query: {
246
+ Version: "2016-03-04",
247
+ Action: "ModifyImageAttribute"
226
248
  },
227
- 'headers': {
228
- 'Content-Type': 'application/x-www-form-urlencoded'
249
+ headers: {
250
+ "Content-Type": "application/x-www-form-urlencoded"
229
251
  }
230
252
  },
231
- 'paramsType': {
232
- 'ImageId': 'String',
233
- 'Name': 'String',
234
- 'OsVersion': 'String',
235
- 'CloudInitSupport': 'Boolean'
236
- }
237
- },
238
- 'ModifyInstanceImage': {
239
- 'url': '/',
240
- 'method': 'GET',
241
- 'config': {
242
- 'query': {
243
- 'Version': '2016-03-04',
244
- 'Action': 'ModifyInstanceImage'
245
- },
246
- 'headers': {
247
- 'Content-Type': 'application/x-www-form-urlencoded'
248
- }
249
- },
250
- 'paramsType': {
251
- 'InstanceId': 'String',
252
- 'ImageId': 'String',
253
- 'SystemDisk.DiskSize': 'Int',
254
- 'InstancePassword': 'String',
255
- 'KeyId': 'Filter',
256
- 'KeepImageLogin': 'Boolean',
257
- 'SystemDisk.DiskType': 'String',
258
- 'SystemDisk.ResizeType': 'String'
253
+ paramsType: {
254
+ ImageId: "String",
255
+ Name: "String",
256
+ OsVersion: "String",
257
+ CloudInitSupport: "Boolean"
258
+ }
259
+ },
260
+ ModifyInstanceImage: {
261
+ url: "/",
262
+ method: "GET",
263
+ config: {
264
+ query: {
265
+ Version: "2016-03-04",
266
+ Action: "ModifyInstanceImage"
267
+ },
268
+ headers: {
269
+ "Content-Type": "application/x-www-form-urlencoded"
270
+ }
271
+ },
272
+ paramsType: {
273
+ InstanceId: "String",
274
+ ImageId: "String",
275
+ "SystemDisk.DiskSize": "Int",
276
+ InstancePassword: "String",
277
+ KeyId: "Filter",
278
+ KeepImageLogin: "Boolean",
279
+ "SystemDisk.DiskType": "String",
280
+ "SystemDisk.ResizeType": "String",
281
+ UserData: "String"
259
282
  }
260
283
  },
261
- 'CreateImage': {
262
- 'url': '/',
263
- 'method': 'GET',
264
- 'config': {
265
- 'query': {
266
- 'Version': '2016-03-04',
267
- 'Action': 'CreateImage'
268
- },
269
- 'headers': {
270
- 'Content-Type': 'application/x-www-form-urlencoded'
284
+ CreateImage: {
285
+ url: "/",
286
+ method: "GET",
287
+ config: {
288
+ query: {
289
+ Version: "2016-03-04",
290
+ Action: "CreateImage"
291
+ },
292
+ headers: {
293
+ "Content-Type": "application/x-www-form-urlencoded"
271
294
  }
272
295
  },
273
- 'paramsType': {
274
- 'InstanceId': 'String',
275
- 'Name': 'String',
276
- 'Type': 'String',
277
- 'DataDiskIds': 'Filter',
278
- 'SnapshotIds': 'Filter'
296
+ paramsType: {
297
+ InstanceId: "String",
298
+ Name: "String",
299
+ Type: "String",
300
+ DataDiskIds: "Filter",
301
+ SnapshotIds: "Filter",
302
+ InstantAccess: "Boolean"
279
303
  }
280
304
  },
281
- 'RemoveImages': {
282
- 'url': '/',
283
- 'method': 'GET',
284
- 'config': {
285
- 'query': {
286
- 'Version': '2016-03-04',
287
- 'Action': 'RemoveImages'
305
+ RemoveImages: {
306
+ url: "/",
307
+ method: "GET",
308
+ config: {
309
+ query: {
310
+ Version: "2016-03-04",
311
+ Action: "RemoveImages"
288
312
  },
289
- 'headers': {
290
- 'Content-Type': 'application/x-www-form-urlencoded'
313
+ headers: {
314
+ "Content-Type": "application/x-www-form-urlencoded"
291
315
  }
292
316
  },
293
- 'paramsType': {
294
- 'ImageId': 'String'
317
+ paramsType: {
318
+ ImageId: "String"
295
319
  }
296
320
  },
297
- 'ModifyNetworkInterfaceAttribute': {
298
- 'url': '/',
299
- 'method': 'GET',
300
- 'config': {
301
- 'query': {
302
- 'Version': '2016-03-04',
303
- 'Action': 'ModifyNetworkInterfaceAttribute'
321
+ ModifyNetworkInterfaceAttribute: {
322
+ url: "/",
323
+ method: "GET",
324
+ config: {
325
+ query: {
326
+ Version: "2016-03-04",
327
+ Action: "ModifyNetworkInterfaceAttribute"
304
328
  },
305
- 'headers': {
306
- 'Content-Type': 'application/x-www-form-urlencoded'
329
+ headers: {
330
+ "Content-Type": "application/x-www-form-urlencoded"
307
331
  }
308
332
  },
309
- 'paramsType': {
310
- 'InstanceId': 'String',
311
- 'NetworkInterfaceId': 'String',
312
- 'SubnetId': 'String',
313
- 'SecurityGroupId': 'String',
314
- 'PrivateIpAddress': 'String',
315
- 'DNS1': 'String',
316
- 'DNS2': 'String'
333
+ paramsType: {
334
+ InstanceId: "String",
335
+ NetworkInterfaceId: "String",
336
+ SubnetId: "String",
337
+ SecurityGroupId: "Filter",
338
+ PrivateIpAddress: "String",
339
+ DNS1: "String",
340
+ DNS2: "String"
341
+ }
342
+ },
343
+ AttachNetworkInterface: {
344
+ url: "/",
345
+ method: "GET",
346
+ config: {
347
+ query: {
348
+ Version: "2016-03-04",
349
+ Action: "AttachNetworkInterface"
350
+ },
351
+ headers: {
352
+ "Content-Type": "application/x-www-form-urlencoded"
353
+ }
354
+ },
355
+ paramsType: {
356
+ InstanceId: "String",
357
+ NetworkInterfaceId: "String",
358
+ SubnetId: "String",
359
+ SecurityGroupId: "Filter",
360
+ PrivateIpAddress: "String",
361
+ MacAddress: "String"
317
362
  }
318
363
  },
319
- 'AttachNetworkInterface': {
320
- 'url': '/',
321
- 'method': 'GET',
322
- 'config': {
323
- 'query': {
324
- 'Version': '2016-03-04',
325
- 'Action': 'AttachNetworkInterface'
364
+ DetachNetworkInterface: {
365
+ url: "/",
366
+ method: "GET",
367
+ config: {
368
+ query: {
369
+ Version: "2016-03-04",
370
+ Action: "DetachNetworkInterface"
326
371
  },
327
- 'headers': {
328
- 'Content-Type': 'application/x-www-form-urlencoded'
372
+ headers: {
373
+ "Content-Type": "application/x-www-form-urlencoded"
329
374
  }
330
375
  },
331
- 'paramsType': {
332
- 'InstanceId': 'String',
333
- 'NetworkInterfaceId': 'String',
334
- 'SubnetId': 'String',
335
- 'SecurityGroupId': 'String',
336
- 'PrivateIpAddress': 'String',
337
- 'SecurityGroupIds': 'Array',
338
- 'VpcIpv6': 'String',
339
- 'MacAddress': 'String'
376
+ paramsType: {
377
+ InstanceId: "String",
378
+ NetworkInterfaceId: "String"
340
379
  }
341
380
  },
342
- 'DetachNetworkInterface': {
343
- 'url': '/',
344
- 'method': 'GET',
345
- 'config': {
346
- 'query': {
347
- 'Version': '2016-03-04',
348
- 'Action': 'DetachNetworkInterface'
381
+ DescribeLocalVolumes: {
382
+ url: "/",
383
+ method: "GET",
384
+ config: {
385
+ query: {
386
+ Version: "2016-03-04",
387
+ Action: "DescribeLocalVolumes"
349
388
  },
350
- 'headers': {
351
- 'Content-Type': 'application/x-www-form-urlencoded'
389
+ headers: {
390
+ "Content-Type": "application/x-www-form-urlencoded"
352
391
  }
353
392
  },
354
- 'paramsType': {
355
- 'InstanceId': 'String',
356
- 'NetworkInterfaceId': 'String'
393
+ paramsType: {
394
+ InstanceName: "String",
395
+ Marker: "Int",
396
+ MaxResults: "Int",
397
+ LocalVolumeId: "String",
398
+ InstanceState: "String",
399
+ LocalVolumeCategory: "String",
400
+ LocalVolumeSize: "Int",
401
+ BindSnapshotPolicy: "Boolean",
402
+ AutoSnapshotPolicyId: "String",
403
+ InstanceId: "String"
357
404
  }
358
405
  },
359
- 'DescribeLocalVolumes': {
360
- 'url': '/',
361
- 'method': 'GET',
362
- 'config': {
363
- 'query': {
364
- 'Version': '2016-03-04',
365
- 'Action': 'DescribeLocalVolumes'
406
+ CreateLocalVolumeSnapshot: {
407
+ url: "/",
408
+ method: "GET",
409
+ config: {
410
+ query: {
411
+ Version: "2016-03-04",
412
+ Action: "CreateLocalVolumeSnapshot"
366
413
  },
367
- 'headers': {
368
- 'Content-Type': 'application/x-www-form-urlencoded'
414
+ headers: {
415
+ "Content-Type": "application/x-www-form-urlencoded"
369
416
  }
370
417
  },
371
- 'paramsType': {
372
- 'InstanceName': 'String'
418
+ paramsType: {
419
+ LocalVolumeId: "String",
420
+ LocalVolumeSnapshotName: "String",
421
+ LocalVolumeSnapshotDesc: "String",
422
+ InstantAccess: "Boolean"
373
423
  }
374
424
  },
375
- 'CreateLocalVolumeSnapshot': {
376
- 'url': '/',
377
- 'method': 'GET',
378
- 'config': {
379
- 'query': {
380
- 'Version': '2016-03-04',
381
- 'Action': 'CreateLocalVolumeSnapshot'
425
+ DescribeLocalVolumeSnapshots: {
426
+ url: "/",
427
+ method: "GET",
428
+ config: {
429
+ query: {
430
+ Version: "2016-03-04",
431
+ Action: "DescribeLocalVolumeSnapshots"
382
432
  },
383
- 'headers': {
384
- 'Content-Type': 'application/x-www-form-urlencoded'
433
+ headers: {
434
+ "Content-Type": "application/x-www-form-urlencoded"
385
435
  }
386
436
  },
387
- 'paramsType': {
388
- 'LocalVolumeId': 'String',
389
- 'LocalVolumeSnapshotName': 'String',
390
- 'LocalVolumeSnapshotDesc': 'String'
437
+ paramsType: {
438
+ Action: "String",
439
+ Version: "String",
440
+ LocalVolumeName: "String",
441
+ SourceLocalVolumeId: "String"
391
442
  }
392
443
  },
393
- 'DescribeLocalVolumeSnapshots': {
394
- 'url': '/',
395
- 'method': 'GET',
396
- 'config': {
397
- 'query': {
398
- 'Version': '2016-03-04',
399
- 'Action': 'DescribeLocalVolumeSnapshots'
444
+ RollbackLocalVolume: {
445
+ url: "/",
446
+ method: "GET",
447
+ config: {
448
+ query: {
449
+ Version: "2016-03-04",
450
+ Action: "RollbackLocalVolume"
400
451
  },
401
- 'headers': {
402
- 'Content-Type': 'application/x-www-form-urlencoded'
452
+ headers: {
453
+ "Content-Type": "application/x-www-form-urlencoded"
403
454
  }
404
455
  },
405
- 'paramsType': {
406
- 'Action': 'String',
407
- 'Version': 'String',
408
- 'LocalVolumeName': 'String',
409
- 'SourceLocalVolumeId': 'String'
456
+ paramsType: {
457
+ LocalVolumeSnapshotId: "String"
410
458
  }
411
459
  },
412
- 'RollbackLocalVolume': {
413
- 'url': '/',
414
- 'method': 'GET',
415
- 'config': {
416
- 'query': {
417
- 'Version': '2016-03-04',
418
- 'Action': 'RollbackLocalVolume'
460
+ DeleteLocalVolumeSnapshot: {
461
+ url: "/",
462
+ method: "GET",
463
+ config: {
464
+ query: {
465
+ Version: "2016-03-04",
466
+ Action: "DeleteLocalVolumeSnapshot"
419
467
  },
420
- 'headers': {
421
- 'Content-Type': 'application/x-www-form-urlencoded'
468
+ headers: {
469
+ "Content-Type": "application/x-www-form-urlencoded"
422
470
  }
423
471
  },
424
- 'paramsType': {
425
- 'LocalVolumeSnapshotId': 'String'
472
+ paramsType: {
473
+ LocalVolumeSnapshotId: "Filter"
426
474
  }
427
475
  },
428
- 'DeleteLocalVolumeSnapshot': {
429
- 'url': '/',
430
- 'method': 'GET',
431
- 'config': {
432
- 'query': {
433
- 'Version': '2016-03-04',
434
- 'Action': 'DeleteLocalVolumeSnapshot'
476
+ ModifyDataGuardGroups: {
477
+ url: "/",
478
+ method: "GET",
479
+ config: {
480
+ query: {
481
+ Version: "2016-03-04",
482
+ Action: "ModifyDataGuardGroups"
435
483
  },
436
- 'headers': {
437
- 'Content-Type': 'application/x-www-form-urlencoded'
484
+ headers: {
485
+ "Content-Type": "application/x-www-form-urlencoded"
438
486
  }
439
487
  },
440
- 'paramsType': {
441
- 'LocalVolumeSnapshotId': 'Filter'
488
+ paramsType: {
489
+ DataGuardId: "String",
490
+ DataGuardName: "String"
442
491
  }
443
492
  },
444
- 'ModifyDataGuardGroups': {
445
- 'url': '/',
446
- 'method': 'GET',
447
- 'config': {
448
- 'query': {
449
- 'Version': '2016-03-04',
450
- 'Action': 'ModifyDataGuardGroups'
493
+ DescribeDataGuardCapacity: {
494
+ url: "/",
495
+ method: "GET",
496
+ config: {
497
+ query: {
498
+ Version: "2016-03-04",
499
+ Action: "DescribeDataGuardCapacity"
451
500
  },
452
- 'headers': {
453
- 'Content-Type': 'application/x-www-form-urlencoded'
501
+ headers: {
502
+ "Content-Type": "application/x-www-form-urlencoded"
454
503
  }
455
504
  },
456
- 'paramsType': {
457
- 'DataGuardId': 'String',
458
- 'DataGuardName': 'String'
459
- }
505
+ paramsType: {}
460
506
  },
461
- 'DescribeDataGuardCapacity': {
462
- 'url': '/',
463
- 'method': 'GET',
464
- 'config': {
465
- 'query': {
466
- 'Version': '2016-03-04',
467
- 'Action': 'DescribeDataGuardCapacity'
507
+ CreateDataGuardGroup: {
508
+ url: "/",
509
+ method: "GET",
510
+ config: {
511
+ query: {
512
+ Version: "2016-03-04",
513
+ Action: "CreateDataGuardGroup"
468
514
  },
469
- 'headers': {
470
- 'Content-Type': 'application/x-www-form-urlencoded'
515
+ headers: {
516
+ "Content-Type": "application/x-www-form-urlencoded"
471
517
  }
472
518
  },
473
- 'paramsType': {}
519
+ paramsType: {
520
+ DataGuardName: "String"
521
+ }
474
522
  },
475
- 'CreateDataGuardGroup': {
476
- 'url': '/',
477
- 'method': 'GET',
478
- 'config': {
479
- 'query': {
480
- 'Version': '2016-03-04',
481
- 'Action': 'CreateDataGuardGroup'
523
+ DeleteDataGuardGroups: {
524
+ url: "/",
525
+ method: "GET",
526
+ config: {
527
+ query: {
528
+ Version: "2016-03-04",
529
+ Action: "DeleteDataGuardGroups"
482
530
  },
483
- 'headers': {
484
- 'Content-Type': 'application/x-www-form-urlencoded'
531
+ headers: {
532
+ "Content-Type": "application/x-www-form-urlencoded"
485
533
  }
486
534
  },
487
- 'paramsType': {
488
- 'DataGuardName': 'String'
535
+ paramsType: {
536
+ DataGuardId: "Filter"
489
537
  }
490
538
  },
491
- 'DeleteDataGuardGroups': {
492
- 'url': '/',
493
- 'method': 'GET',
494
- 'config': {
495
- 'query': {
496
- 'Version': '2016-03-04',
497
- 'Action': 'DeleteDataGuardGroups'
539
+ DescribeDataGuardGroup: {
540
+ url: "/",
541
+ method: "GET",
542
+ config: {
543
+ query: {
544
+ Version: "2016-03-04",
545
+ Action: "DescribeDataGuardGroup"
498
546
  },
499
- 'headers': {
500
- 'Content-Type': 'application/x-www-form-urlencoded'
547
+ headers: {
548
+ "Content-Type": "application/x-www-form-urlencoded"
501
549
  }
502
550
  },
503
- 'paramsType': {
504
- 'DataGuardId': 'Filter'
551
+ paramsType: {
552
+ DataGuardId: "String",
553
+ DataGuardName: "String"
505
554
  }
506
555
  },
507
- 'DescribeDataGuardGroup': {
508
- 'url': '/',
509
- 'method': 'GET',
510
- 'config': {
511
- 'query': {
512
- 'Version': '2016-03-04',
513
- 'Action': 'DescribeDataGuardGroup'
556
+ RemoveVmFromDataGuard: {
557
+ url: "/",
558
+ method: "GET",
559
+ config: {
560
+ query: {
561
+ Version: "2016-03-04",
562
+ Action: "RemoveVmFromDataGuard"
514
563
  },
515
- 'headers': {
516
- 'Content-Type': 'application/x-www-form-urlencoded'
564
+ headers: {
565
+ "Content-Type": "application/x-www-form-urlencoded"
517
566
  }
518
567
  },
519
- 'paramsType': {
520
- 'DataGuardId': 'String',
521
- 'DataGuardName': 'String'
568
+ paramsType: {
569
+ DataGuardId: "String",
570
+ InstanceId: "Filter"
522
571
  }
523
572
  },
524
- 'RemoveVmFromDataGuard': {
525
- 'url': '/',
526
- 'method': 'GET',
527
- 'config': {
528
- 'query': {
529
- 'Version': '2016-03-04',
530
- 'Action': 'RemoveVmFromDataGuard'
573
+ CreateDedicatedHosts: {
574
+ url: "/",
575
+ method: "GET",
576
+ config: {
577
+ query: {
578
+ Version: "2016-03-04",
579
+ Action: "CreateDedicatedHosts"
531
580
  },
532
- 'headers': {
533
- 'Content-Type': 'application/x-www-form-urlencoded'
581
+ headers: {
582
+ "Content-Type": "application/x-www-form-urlencoded"
534
583
  }
535
584
  },
536
- 'paramsType': {
537
- 'DataGuardId': 'String',
538
- 'InstanceId': 'Filter'
585
+ paramsType: {
586
+ DedicatedType: "String",
587
+ Number: "Int",
588
+ Name: "String",
589
+ ChargeType: "String",
590
+ PurchaseTime: "Int",
591
+ InstanceNameSuffix: "String",
592
+ DedicatedClusterId: "String",
593
+ Tag: "Filter",
594
+ AvailabilityZone: "String",
595
+ ProjectId: "Int",
596
+ EbsClusterMode: "String"
539
597
  }
540
598
  },
541
- 'CreateDedicatedHosts': {
542
- 'url': '/',
543
- 'method': 'GET',
544
- 'config': {
545
- 'query': {
546
- 'Version': '2016-03-04',
547
- 'Action': 'CreateDedicatedHosts'
599
+ DeleteDedicatedHost: {
600
+ url: "/",
601
+ method: "GET",
602
+ config: {
603
+ query: {
604
+ Version: "2016-03-04",
605
+ Action: "DeleteDedicatedHost"
548
606
  },
549
- 'headers': {
550
- 'Content-Type': 'application/x-www-form-urlencoded'
607
+ headers: {
608
+ "Content-Type": "application/x-www-form-urlencoded"
551
609
  }
552
610
  },
553
- 'paramsType': {
554
- 'DedicatedType': 'String',
555
- 'Number': 'Int',
556
- 'Name': 'String',
557
- 'ChargeType': 'String',
558
- 'PurchaseTime': 'Int',
559
- 'InstanceNameSuffix': 'String',
560
- 'DedicatedClusterId': 'String',
561
- 'Tag': 'Filter'
562
- }
611
+ paramsType: {
612
+ DedicatedHostId: "Filter",
613
+ IsRefund: "Boolean"
614
+ }
563
615
  },
564
- 'RenameDedicatedHost': {
565
- 'url': '/',
566
- 'method': 'GET',
567
- 'config': {
568
- 'query': {
569
- 'Version': '2016-03-04',
570
- 'Action': 'RenameDedicatedHost'
616
+ DescribeDedicatedHosts: {
617
+ url: "/",
618
+ method: "GET",
619
+ config: {
620
+ query: {
621
+ Version: "2016-03-04",
622
+ Action: "DescribeDedicatedHosts"
571
623
  },
572
- 'headers': {
573
- 'Content-Type': 'application/x-www-form-urlencoded'
624
+ headers: {
625
+ "Content-Type": "application/x-www-form-urlencoded"
574
626
  }
575
627
  },
576
- 'paramsType': {
577
- 'DedicatedHostId': 'String',
578
- 'NewDedicatedHostName': 'String'
579
- }
580
- },
581
- 'DescribeDedicatedHosts': {
582
- 'url': '/',
583
- 'method': 'GET',
584
- 'config': {
585
- 'query': {
586
- 'Version': '2016-03-04',
587
- 'Action': 'DescribeDedicatedHosts'
588
- },
589
- 'headers': {
590
- 'Content-Type': 'application/x-www-form-urlencoded'
591
- }
592
- },
593
- 'paramsType': {
594
- 'DedicatedHostId': 'String',
595
- 'search': 'String',
596
- 'ProjectId': 'Filter'
628
+ paramsType: {
629
+ DedicatedHostId: "String",
630
+ search: "String",
631
+ ProjectId: "Filter"
597
632
  }
598
633
  },
599
- 'DescribeScalingConfiguration': {
600
- 'url': '/',
601
- 'method': 'GET',
602
- 'config': {
603
- 'query': {
604
- 'Version': '2016-03-04',
605
- 'Action': 'DescribeScalingConfiguration'
606
- },
607
- 'headers': {
608
- 'Content-Type': 'application/x-www-form-urlencoded'
609
- }
610
- },
611
- 'paramsType': {
612
- 'ScalingConfigurationName': 'String',
613
- 'ScalingConfigurationId': 'Filter',
614
- 'Marker': 'Int',
615
- 'ProjectId': 'Filter',
616
- 'MaxResults': 'Int'
617
- }
618
- },
619
- 'CreateScalingConfiguration': {
620
- 'url': '/',
621
- 'method': 'GET',
622
- 'config': {
623
- 'query': {
624
- 'Version': '2016-03-04',
625
- 'Action': 'CreateScalingConfiguration'
626
- },
627
- 'headers': {
628
- 'Content-Type': 'application/x-www-form-urlencoded'
629
- }
630
- },
631
- 'paramsType': {
632
- 'ScalingConfigurationName': 'String',
633
- 'ImageId': 'String',
634
- 'Password': 'String',
635
- 'InstanceType': 'String',
636
- 'ChargeType': 'String',
637
- 'DataDiskGb': 'Int',
638
- 'ProjectId': 'Int',
639
- 'KeepImageLogin': 'Boolean',
640
- 'KeyId': 'Filter',
641
- 'DataDisk': 'Filter',
642
- 'SystemDisk.DiskSize': 'String',
643
- 'AddressBandWidth': 'Int',
644
- 'BandWidthShareId': 'String',
645
- 'LineId': 'String',
646
- 'AddressProjectId': 'Int',
647
- 'InstanceName': 'String',
648
- 'InstanceNameSuffix': 'String',
649
- 'UserData': 'String',
650
- 'InstanceNameTimeSuffix': 'Boolean',
651
- 'Tag': 'Filter',
652
- 'SystemDisk.DiskType': 'String',
653
- 'SystemDisk.ResizeType': 'String'
654
- }
655
- },
656
- 'DeleteScalingConfiguration': {
657
- 'url': '/',
658
- 'method': 'GET',
659
- 'config': {
660
- 'query': {
661
- 'Version': '2016-03-04',
662
- 'Action': 'DeleteScalingConfiguration'
663
- },
664
- 'headers': {
665
- 'Content-Type': 'application/x-www-form-urlencoded'
666
- }
667
- },
668
- 'paramsType': {
669
- 'ScalingConfigurationId': 'Filter'
670
- }
671
- },
672
- 'CreateScalingGroup': {
673
- 'url': '/',
674
- 'method': 'GET',
675
- 'config': {
676
- 'query': {
677
- 'Version': '2016-03-04',
678
- 'Action': 'CreateScalingGroup'
679
- },
680
- 'headers': {
681
- 'Content-Type': 'application/x-www-form-urlencoded'
682
- }
683
- },
684
- 'paramsType': {
685
- 'ScalingGroupName': 'String',
686
- 'ScalingConfigurationId': 'String',
687
- 'MinSize': 'String',
688
- 'DesiredCapacity': 'Int',
689
- 'RemovePolicy': 'String',
690
- 'SubnetId': 'Filter',
691
- 'SubnetStrategy': 'String',
692
- 'SecurityGroupId': 'String',
693
- 'Slb': 'Filter'
694
- }
695
- },
696
- 'DescribeScalingGroup': {
697
- 'url': '/',
698
- 'method': 'GET',
699
- 'config': {
700
- 'query': {
701
- 'Version': '2016-03-04',
702
- 'Action': 'DescribeScalingGroup'
703
- },
704
- 'headers': {
705
- 'Content-Type': 'application/x-www-form-urlencoded'
706
- }
707
- },
708
- 'paramsType': {
709
- 'ScalingGroupId': 'Filter',
710
- 'ScalingGroupName': 'String',
711
- 'ScalingConfigurationId': 'String',
712
- 'VpcId': 'String',
713
- 'Marker': 'Int',
714
- 'MaxResults': 'Int',
715
- 'ScalingActivityId': 'Filter'
716
- }
717
- },
718
- 'ModifyScalingGroup': {
719
- 'url': '/',
720
- 'method': 'GET',
721
- 'config': {
722
- 'query': {
723
- 'Version': '2016-03-04',
724
- 'Action': 'ModifyScalingGroup'
725
- },
726
- 'headers': {
727
- 'Content-Type': 'application/x-www-form-urlencoded'
728
- }
729
- },
730
- 'paramsType': {
731
- 'ScalingGroupId': 'String',
732
- 'MinSize': 'Int',
733
- 'MaxSize': 'Int',
734
- 'DesiredCapacity': 'Int',
735
- 'RemovePolicy': 'String',
736
- 'ScalingGroupName': 'String',
737
- 'ScalingConfigurationId': 'String',
738
- 'SubnetId': 'Filter',
739
- 'SubnetStrategy': 'String',
740
- 'Slb': 'Filter',
741
- 'ContainerSubnetId': 'Filter'
742
- }
743
- },
744
- 'SetKvmProtectedDetach': {
745
- 'url': '/',
746
- 'method': 'GET',
747
- 'config': {
748
- 'query': {
749
- 'Version': '2016-03-04',
750
- 'Action': 'SetKvmProtectedDetach'
634
+ CreateAutoSnapshotPolicy: {
635
+ url: "/",
636
+ method: "GET",
637
+ config: {
638
+ query: {
639
+ Version: "2016-03-04",
640
+ Action: "CreateAutoSnapshotPolicy"
751
641
  },
752
- 'headers': {
753
- 'Content-Type': 'application/x-www-form-urlencoded'
642
+ headers: {
643
+ "Content-Type": "application/x-www-form-urlencoded"
754
644
  }
755
645
  },
756
- 'paramsType': {
757
- 'ScalingGroupId': 'String',
758
- 'ScalingInstanceId': 'Filter',
759
- 'ProtectedFromDetach': 'Int'
646
+ paramsType: {
647
+ AutoSnapshotPolicyName: "String",
648
+ AutoSnapshotTime: "String",
649
+ AutoSnapshotDate: "Filter",
650
+ SnapshotType: "String",
651
+ RetentionTime: "Int"
760
652
  }
761
653
  },
762
- 'DescribeScalingInstance': {
763
- 'url': '/',
764
- 'method': 'GET',
765
- 'config': {
766
- 'query': {
767
- 'Version': '2016-03-04',
768
- 'Action': 'DescribeScalingInstance'
654
+ DeleteAutoSnapshotPolicy: {
655
+ url: "/",
656
+ method: "GET",
657
+ config: {
658
+ query: {
659
+ Version: "2016-03-04",
660
+ Action: "DeleteAutoSnapshotPolicy"
769
661
  },
770
- 'headers': {
771
- 'Content-Type': 'application/x-www-form-urlencoded'
662
+ headers: {
663
+ "Content-Type": "application/x-www-form-urlencoded"
772
664
  }
773
665
  },
774
- 'paramsType': {
775
- 'ScalingGroupId': 'String',
776
- 'ScalingInstanceId': 'Filter',
777
- 'CreationType': 'String',
778
- 'HealthStatus': 'String',
779
- 'Marker': 'Int',
780
- 'MaxResults': 'Int'
666
+ paramsType: {
667
+ AutoSnapshotPolicyId: "Filter"
781
668
  }
782
669
  },
783
- 'AttachInstance': {
784
- 'url': '/',
785
- 'method': 'GET',
786
- 'config': {
787
- 'query': {
788
- 'Version': '2016-03-04',
789
- 'Action': 'AttachInstance'
670
+ ModifyAutoSnapshotPolicy: {
671
+ url: "/",
672
+ method: "GET",
673
+ config: {
674
+ query: {
675
+ Version: "2016-03-04",
676
+ Action: "ModifyAutoSnapshotPolicy"
790
677
  },
791
- 'headers': {
792
- 'Content-Type': 'application/x-www-form-urlencoded'
678
+ headers: {
679
+ "Content-Type": "application/x-www-form-urlencoded"
793
680
  }
794
681
  },
795
- 'paramsType': {
796
- 'ScalingGroupId': 'String',
797
- 'ScalingInstanceId': 'Filter'
682
+ paramsType: {
683
+ AutoSnapshotPolicyId: "String",
684
+ AutoSnapshotPolicyName: "String",
685
+ AutoSnapshotTime: "String",
686
+ AutoSnapshotDate: "Filter",
687
+ SnapshotType: "String",
688
+ RetentionTime: "Int"
798
689
  }
799
690
  },
800
- 'DetachInstance': {
801
- 'url': '/',
802
- 'method': 'GET',
803
- 'config': {
804
- 'query': {
805
- 'Version': '2016-03-04',
806
- 'Action': 'DetachInstance'
691
+ DescribeAutoSnapshotPolicy: {
692
+ url: "/",
693
+ method: "GET",
694
+ config: {
695
+ query: {
696
+ Version: "2016-03-04",
697
+ Action: "DescribeAutoSnapshotPolicy"
807
698
  },
808
- 'headers': {
809
- 'Content-Type': 'application/x-www-form-urlencoded'
699
+ headers: {
700
+ "Content-Type": "application/x-www-form-urlencoded"
810
701
  }
811
702
  },
812
- 'paramsType': {
813
- 'ScalingGroupId': 'String',
814
- 'ScalingInstanceId': 'Filter'
703
+ paramsType: {
704
+ AutoSnapshotPolicyName: "String",
705
+ AutoSnapshotPolicyId: "Filter"
815
706
  }
816
707
  },
817
- 'DescribeScalingActivity': {
818
- 'url': '/',
819
- 'method': 'GET',
820
- 'config': {
821
- 'query': {
822
- 'Version': '2016-03-04',
823
- 'Action': 'DescribeScalingActivity'
708
+ ApplyAutoSnapshotPolicy: {
709
+ url: "/",
710
+ method: "GET",
711
+ config: {
712
+ query: {
713
+ Version: "2016-03-04",
714
+ Action: "ApplyAutoSnapshotPolicy"
824
715
  },
825
- 'headers': {
826
- 'Content-Type': 'application/x-www-form-urlencoded'
716
+ headers: {
717
+ "Content-Type": "application/x-www-form-urlencoded"
827
718
  }
828
719
  },
829
- 'paramsType': {
830
- 'ScalingGroupId': 'String',
831
- 'ScalingActivityId': 'Filter',
832
- 'Marker': 'Int',
833
- 'MaxResults': 'Int',
834
- 'StartTime': 'String',
835
- 'EndTime': 'String'
720
+ paramsType: {
721
+ AutoSnapshotPolicyId: "String",
722
+ AttachVolumeId: "Filter"
836
723
  }
837
724
  },
838
- 'DeleteScalingGroup': {
839
- 'url': '/',
840
- 'method': 'GET',
841
- 'config': {
842
- 'query': {
843
- 'Version': '2016-03-04',
844
- 'Action': 'DeleteScalingGroup'
725
+ CancelAutoSnapshotPolicy: {
726
+ url: "/",
727
+ method: "GET",
728
+ config: {
729
+ query: {
730
+ Version: "2016-03-04",
731
+ Action: "CancelAutoSnapshotPolicy"
845
732
  },
846
- 'headers': {
847
- 'Content-Type': 'application/x-www-form-urlencoded'
848
- }
849
- },
850
- 'paramsType': {
851
- 'ScalingGroupId': 'String'
733
+ headers: {
734
+ "Content-Type": "application/x-www-form-urlencoded"
735
+ }
736
+ },
737
+ paramsType: {
738
+ AutoSnapshotPolicyId: "String",
739
+ AttachVolumeId: "Filter"
852
740
  }
853
741
  },
854
- 'DisableScalingGroup': {
855
- 'url': '/',
856
- 'method': 'GET',
857
- 'config': {
858
- 'query': {
859
- 'Version': '2016-03-04',
860
- 'Action': 'DisableScalingGroup'
861
- },
862
- 'headers': {
863
- 'Content-Type': 'application/x-www-form-urlencoded'
742
+ DescribeScalingConfiguration: {
743
+ url: "/",
744
+ method: "GET",
745
+ config: {
746
+ query: {
747
+ Version: "2016-03-04",
748
+ Action: "DescribeScalingConfiguration"
749
+ },
750
+ headers: {
751
+ "Content-Type": "application/x-www-form-urlencoded"
864
752
  }
865
- },
866
- 'paramsType': {
867
- 'ScalingGroupId': 'String'
868
- }
753
+ },
754
+ paramsType: {
755
+ ScalingConfigurationName: "String",
756
+ ScalingConfigurationId: "Filter",
757
+ Marker: "Int",
758
+ ProjectId: "Filter",
759
+ MaxResults: "Int"
760
+ }
869
761
  },
870
- 'EnableScalingGroup': {
871
- 'url': '/',
872
- 'method': 'GET',
873
- 'config': {
874
- 'query': {
875
- 'Version': '2016-03-04',
876
- 'Action': 'EnableScalingGroup'
762
+ CreateScalingConfiguration: {
763
+ url: "/",
764
+ method: "GET",
765
+ config: {
766
+ query: {
767
+ Version: "2016-03-04",
768
+ Action: "CreateScalingConfiguration"
769
+ },
770
+ headers: {
771
+ "Content-Type": "application/x-www-form-urlencoded"
772
+ }
773
+ },
774
+ paramsType: {
775
+ ScalingConfigurationName: "String",
776
+ ImageId: "String",
777
+ Password: "String",
778
+ InstanceType: "String",
779
+ ChargeType: "String",
780
+ DataDiskGb: "Int",
781
+ ProjectId: "Int",
782
+ KeepImageLogin: "Boolean",
783
+ KeyId: "Filter",
784
+ DataDisk: "Filter",
785
+ "SystemDisk.DiskSize": "String",
786
+ AddressBandWidth: "Int",
787
+ BandWidthShareId: "String",
788
+ LineId: "String",
789
+ AddressProjectId: "Int",
790
+ InstanceName: "String",
791
+ InstanceNameSuffix: "String",
792
+ UserData: "String",
793
+ InstanceNameTimeSuffix: "Boolean",
794
+ Tag: "Filter",
795
+ "SystemDisk.DiskType": "String",
796
+ "SystemDisk.ResizeType": "String",
797
+ SyncTag: "Boolean"
798
+ }
799
+ },
800
+ DeleteScalingConfiguration: {
801
+ url: "/",
802
+ method: "GET",
803
+ config: {
804
+ query: {
805
+ Version: "2016-03-04",
806
+ Action: "DeleteScalingConfiguration"
807
+ },
808
+ headers: {
809
+ "Content-Type": "application/x-www-form-urlencoded"
810
+ }
811
+ },
812
+ paramsType: {
813
+ ScalingConfigurationId: "Filter"
814
+ }
815
+ },
816
+ CreateScalingGroup: {
817
+ url: "/",
818
+ method: "GET",
819
+ config: {
820
+ query: {
821
+ Version: "2016-03-04",
822
+ Action: "CreateScalingGroup"
823
+ },
824
+ headers: {
825
+ "Content-Type": "application/x-www-form-urlencoded"
826
+ }
827
+ },
828
+ paramsType: {
829
+ ScalingGroupName: "String",
830
+ ScalingConfigurationId: "String",
831
+ MinSize: "String",
832
+ DesiredCapacity: "Int",
833
+ RemovePolicy: "String",
834
+ SubnetId: "Filter",
835
+ SubnetStrategy: "String",
836
+ SecurityGroupId: "String",
837
+ Slb: "Filter"
838
+ }
839
+ },
840
+ DescribeScalingGroup: {
841
+ url: "/",
842
+ method: "GET",
843
+ config: {
844
+ query: {
845
+ Version: "2016-03-04",
846
+ Action: "DescribeScalingGroup"
847
+ },
848
+ headers: {
849
+ "Content-Type": "application/x-www-form-urlencoded"
850
+ }
851
+ },
852
+ paramsType: {
853
+ ScalingGroupId: "Filter",
854
+ ScalingGroupName: "String",
855
+ ScalingConfigurationId: "String",
856
+ VpcId: "String",
857
+ Marker: "Int",
858
+ MaxResults: "Int",
859
+ ScalingActivityId: "Filter"
860
+ }
861
+ },
862
+ ModifyScalingGroup: {
863
+ url: "/",
864
+ method: "GET",
865
+ config: {
866
+ query: {
867
+ Version: "2016-03-04",
868
+ Action: "ModifyScalingGroup"
869
+ },
870
+ headers: {
871
+ "Content-Type": "application/x-www-form-urlencoded"
872
+ }
873
+ },
874
+ paramsType: {
875
+ ScalingGroupId: "String",
876
+ MinSize: "Int",
877
+ MaxSize: "Int",
878
+ DesiredCapacity: "Int",
879
+ RemovePolicy: "String",
880
+ ScalingGroupName: "String",
881
+ ScalingConfigurationId: "String",
882
+ SubnetId: "Filter",
883
+ SubnetStrategy: "String",
884
+ Slb: "Filter",
885
+ ContainerSubnetId: "Filter"
886
+ }
887
+ },
888
+ SetKvmProtectedDetach: {
889
+ url: "/",
890
+ method: "GET",
891
+ config: {
892
+ query: {
893
+ Version: "2016-03-04",
894
+ Action: "SetKvmProtectedDetach"
877
895
  },
878
- 'headers': {
879
- 'Content-Type': 'application/x-www-form-urlencoded'
896
+ headers: {
897
+ "Content-Type": "application/x-www-form-urlencoded"
880
898
  }
881
899
  },
882
- 'paramsType': {
883
- 'ScalingGroupId': 'String'
900
+ paramsType: {
901
+ ScalingGroupId: "String",
902
+ ScalingInstanceId: "Filter",
903
+ ProtectedFromDetach: "Int"
884
904
  }
885
905
  },
886
- 'DescribeScalingNotification': {
887
- 'url': '/',
888
- 'method': 'GET',
889
- 'config': {
890
- 'query': {
891
- 'Version': '2016-03-04',
892
- 'Action': 'DescribeScalingNotification'
906
+ DescribeScalingInstance: {
907
+ url: "/",
908
+ method: "GET",
909
+ config: {
910
+ query: {
911
+ Version: "2016-03-04",
912
+ Action: "DescribeScalingInstance"
893
913
  },
894
- 'headers': {
895
- 'Content-Type': 'application/x-www-form-urlencoded'
914
+ headers: {
915
+ "Content-Type": "application/x-www-form-urlencoded"
896
916
  }
897
917
  },
898
- 'paramsType': {
899
- 'ScalingGroupId': 'String',
900
- 'ScalingNotificationId': 'Filter',
901
- 'Marker': 'Int',
902
- 'MaxResults': 'Int'
918
+ paramsType: {
919
+ ScalingGroupId: "String",
920
+ ScalingInstanceId: "Filter",
921
+ CreationType: "String",
922
+ HealthStatus: "String",
923
+ Marker: "Int",
924
+ MaxResults: "Int"
903
925
  }
904
926
  },
905
- 'CreateScalingNotification': {
906
- 'url': '/',
907
- 'method': 'GET',
908
- 'config': {
909
- 'query': {
910
- 'Version': '2016-03-04',
911
- 'Action': 'CreateScalingNotification'
927
+ AttachInstance: {
928
+ url: "/",
929
+ method: "GET",
930
+ config: {
931
+ query: {
932
+ Version: "2016-03-04",
933
+ Action: "AttachInstance"
912
934
  },
913
- 'headers': {
914
- 'Content-Type': 'application/x-www-form-urlencoded'
935
+ headers: {
936
+ "Content-Type": "application/x-www-form-urlencoded"
915
937
  }
916
938
  },
917
- 'paramsType': {
918
- 'ScalingNotificationType': 'Filter',
919
- 'ScalingGroupId': 'String',
920
- 'Description': 'String'
939
+ paramsType: {
940
+ ScalingGroupId: "String",
941
+ ScalingInstanceId: "Filter"
921
942
  }
922
943
  },
923
- 'ModifyScalingNotification': {
924
- 'url': '/',
925
- 'method': 'GET',
926
- 'config': {
927
- 'query': {
928
- 'Version': '2016-03-04',
929
- 'Action': 'ModifyScalingNotification'
944
+ DetachInstance: {
945
+ url: "/",
946
+ method: "GET",
947
+ config: {
948
+ query: {
949
+ Version: "2016-03-04",
950
+ Action: "DetachInstance"
930
951
  },
931
- 'headers': {
932
- 'Content-Type': 'application/x-www-form-urlencoded'
952
+ headers: {
953
+ "Content-Type": "application/x-www-form-urlencoded"
933
954
  }
934
955
  },
935
- 'paramsType': {
936
- 'ScalingGroupId': 'String',
937
- 'ScalingNotificationId': 'Int',
938
- 'NotificationType': 'Filter'
956
+ paramsType: {
957
+ ScalingGroupId: "String",
958
+ ScalingInstanceId: "Filter"
939
959
  }
940
960
  },
941
- 'CreateScheduledTask': {
942
- 'url': '/',
943
- 'method': 'GET',
944
- 'config': {
945
- 'query': {
946
- 'Version': '2016-03-04',
947
- 'Action': 'CreateScheduledTask'
961
+ DescribeScalingActivity: {
962
+ url: "/",
963
+ method: "GET",
964
+ config: {
965
+ query: {
966
+ Version: "2016-03-04",
967
+ Action: "DescribeScalingActivity"
948
968
  },
949
- 'headers': {
950
- 'Content-Type': 'application/x-www-form-urlencoded'
969
+ headers: {
970
+ "Content-Type": "application/x-www-form-urlencoded"
951
971
  }
952
972
  },
953
- 'paramsType': {
954
- 'ScalingGroupId': 'String',
955
- 'ScalingScheduledTaskName': 'String',
956
- 'ReadjustMinSize': 'Int',
957
- 'ReadjustMaxSize': 'Int',
958
- 'ReadjustExpectSize': 'Int',
959
- 'StartTime': 'String',
960
- 'EndTime': 'String',
961
- 'Recurrence': 'String',
962
- 'RepeatUnit': 'String',
963
- 'RepeatCycle': 'String'
973
+ paramsType: {
974
+ ScalingGroupId: "String",
975
+ ScalingActivityId: "Filter",
976
+ Marker: "Int",
977
+ MaxResults: "Int",
978
+ StartTime: "String",
979
+ EndTime: "String"
964
980
  }
965
981
  },
966
- 'DescribeScheduledTask': {
967
- 'url': '/',
968
- 'method': 'GET',
969
- 'config': {
970
- 'query': {
971
- 'Version': '2016-03-04',
972
- 'Action': 'DescribeScheduledTask'
982
+ DeleteScalingGroup: {
983
+ url: "/",
984
+ method: "GET",
985
+ config: {
986
+ query: {
987
+ Version: "2016-03-04",
988
+ Action: "DeleteScalingGroup"
973
989
  },
974
- 'headers': {
975
- 'Content-Type': 'application/x-www-form-urlencoded'
990
+ headers: {
991
+ "Content-Type": "application/x-www-form-urlencoded"
976
992
  }
977
993
  },
978
- 'paramsType': {
979
- 'ScalingGroupId': 'String',
980
- 'ScalingScheduledTaskId': 'Filter',
981
- 'ScalingScheduledTaskName': 'String',
982
- 'Marker': 'Int',
983
- 'MaxResults': 'Int'
994
+ paramsType: {
995
+ ScalingGroupId: "String"
984
996
  }
985
997
  },
986
- 'ModifyScheduledTask': {
987
- 'url': '/',
988
- 'method': 'GET',
989
- 'config': {
990
- 'query': {
991
- 'Version': '2016-03-04',
992
- 'Action': 'ModifyScheduledTask'
998
+ DisableScalingGroup: {
999
+ url: "/",
1000
+ method: "GET",
1001
+ config: {
1002
+ query: {
1003
+ Version: "2016-03-04",
1004
+ Action: "DisableScalingGroup"
993
1005
  },
994
- 'headers': {
995
- 'Content-Type': 'application/x-www-form-urlencoded'
1006
+ headers: {
1007
+ "Content-Type": "application/x-www-form-urlencoded"
996
1008
  }
997
1009
  },
998
- 'paramsType': {}
1010
+ paramsType: {
1011
+ ScalingGroupId: "String"
1012
+ }
999
1013
  },
1000
- 'DeleteScheduledTask': {
1001
- 'url': '/',
1002
- 'method': 'GET',
1003
- 'config': {
1004
- 'query': {
1005
- 'Version': '2016-03-04',
1006
- 'Action': 'DeleteScheduledTask'
1014
+ EnableScalingGroup: {
1015
+ url: "/",
1016
+ method: "GET",
1017
+ config: {
1018
+ query: {
1019
+ Version: "2016-03-04",
1020
+ Action: "EnableScalingGroup"
1007
1021
  },
1008
- 'headers': {
1009
- 'Content-Type': 'application/x-www-form-urlencoded'
1022
+ headers: {
1023
+ "Content-Type": "application/x-www-form-urlencoded"
1010
1024
  }
1011
1025
  },
1012
- 'paramsType': {
1013
- 'ScalingScheduledTaskId': 'String',
1014
- 'ScalingGroupId': 'String'
1026
+ paramsType: {
1027
+ ScalingGroupId: "String"
1015
1028
  }
1016
1029
  },
1017
- 'CreateScalingPolicy': {
1018
- 'url': '/',
1019
- 'method': 'GET',
1020
- 'config': {
1021
- 'query': {
1022
- 'Version': '2016-03-04',
1023
- 'Action': 'CreateScalingPolicy'
1024
- },
1025
- 'headers': {
1026
- 'Content-Type': 'application/x-www-form-urlencoded'
1030
+ DescribeScalingNotification: {
1031
+ url: "/",
1032
+ method: "GET",
1033
+ config: {
1034
+ query: {
1035
+ Version: "2016-03-04",
1036
+ Action: "DescribeScalingNotification"
1037
+ },
1038
+ headers: {
1039
+ "Content-Type": "application/x-www-form-urlencoded"
1027
1040
  }
1028
1041
  },
1029
- 'paramsType': {
1030
- 'ScalingGroupId': 'String',
1031
- 'ScalingPolicyName': 'String',
1032
- 'Metric': 'String',
1033
- 'AdjustmentType': 'String',
1034
- 'AdjustmentValue': 'Int',
1035
- 'CoolDown': 'Int'
1042
+ paramsType: {
1043
+ ScalingGroupId: "String",
1044
+ ScalingNotificationId: "Filter",
1045
+ Marker: "Int",
1046
+ MaxResults: "Int"
1036
1047
  }
1037
1048
  },
1038
- 'DescribeScalingPolicy': {
1039
- 'url': '/',
1040
- 'method': 'GET',
1041
- 'config': {
1042
- 'query': {
1043
- 'Version': '2016-03-04',
1044
- 'Action': 'DescribeScalingPolicy'
1049
+ CreateScalingNotification: {
1050
+ url: "/",
1051
+ method: "GET",
1052
+ config: {
1053
+ query: {
1054
+ Version: "2016-03-04",
1055
+ Action: "CreateScalingNotification"
1045
1056
  },
1046
- 'headers': {
1047
- 'Content-Type': 'application/x-www-form-urlencoded'
1057
+ headers: {
1058
+ "Content-Type": "application/x-www-form-urlencoded"
1048
1059
  }
1049
1060
  },
1050
- 'paramsType': {
1051
- 'ScalingGroupId': 'String',
1052
- 'ScalingPolicyId': 'Filter',
1053
- 'ScalingPolicyName': 'String',
1054
- 'Marker': 'Int',
1055
- 'MaxResults': 'Int'
1061
+ paramsType: {
1062
+ ScalingNotificationType: "Filter",
1063
+ ScalingGroupId: "String",
1064
+ Description: "String"
1056
1065
  }
1057
1066
  },
1058
- 'ModifyScalingPolicy': {
1059
- 'url': '/',
1060
- 'method': 'GET',
1061
- 'config': {
1062
- 'query': {
1063
- 'Version': '2016-03-04',
1064
- 'Action': 'ModifyScalingPolicy'
1067
+ ModifyScalingNotification: {
1068
+ url: "/",
1069
+ method: "GET",
1070
+ config: {
1071
+ query: {
1072
+ Version: "2016-03-04",
1073
+ Action: "ModifyScalingNotification"
1065
1074
  },
1066
- 'headers': {
1067
- 'Content-Type': 'application/x-www-form-urlencoded'
1075
+ headers: {
1076
+ "Content-Type": "application/x-www-form-urlencoded"
1068
1077
  }
1069
1078
  },
1070
- 'paramsType': {
1071
- 'ScalingPolicyId': 'String',
1072
- 'ScalingGroupId': 'String',
1073
- 'ScalingPolicyName': 'String',
1074
- 'Metric': 'String',
1075
- 'AdjustmentType': 'String',
1076
- 'AdjustmentValue': 'Int',
1077
- 'CoolDown': 'Int'
1079
+ paramsType: {
1080
+ ScalingGroupId: "String",
1081
+ ScalingNotificationId: "Int",
1082
+ NotificationType: "Filter"
1078
1083
  }
1079
1084
  },
1080
- 'DeleteScalingPolicy': {
1081
- 'url': '/',
1082
- 'method': 'GET',
1083
- 'config': {
1084
- 'query': {
1085
- 'Version': '2016-03-04',
1086
- 'Action': 'DeleteScalingPolicy'
1085
+ CreateScheduledTask: {
1086
+ url: "/",
1087
+ method: "GET",
1088
+ config: {
1089
+ query: {
1090
+ Version: "2016-03-04",
1091
+ Action: "CreateScheduledTask"
1087
1092
  },
1088
- 'headers': {
1089
- 'Content-Type': 'application/x-www-form-urlencoded'
1093
+ headers: {
1094
+ "Content-Type": "application/x-www-form-urlencoded"
1090
1095
  }
1091
1096
  },
1092
- 'paramsType': {
1093
- 'ScalingGroupId': 'String',
1094
- 'ScalingPolicyId': 'String'
1097
+ paramsType: {
1098
+ ScalingGroupId: "String",
1099
+ ScalingScheduledTaskName: "String",
1100
+ ReadjustMinSize: "Int",
1101
+ ReadjustMaxSize: "Int",
1102
+ ReadjustExpectSize: "Int",
1103
+ StartTime: "String",
1104
+ EndTime: "String",
1105
+ Recurrence: "String",
1106
+ RepeatUnit: "String",
1107
+ RepeatCycle: "String"
1095
1108
  }
1096
1109
  },
1097
- 'ImportImage': {
1098
- 'url': '/',
1099
- 'method': 'GET',
1100
- 'config': {
1101
- 'query': {
1102
- 'Version': '2016-03-04',
1103
- 'Action': 'ImportImage'
1110
+ DescribeScheduledTask: {
1111
+ url: "/",
1112
+ method: "GET",
1113
+ config: {
1114
+ query: {
1115
+ Version: "2016-03-04",
1116
+ Action: "DescribeScheduledTask"
1104
1117
  },
1105
- 'headers': {
1106
- 'Content-Type': 'application/x-www-form-urlencoded'
1118
+ headers: {
1119
+ "Content-Type": "application/x-www-form-urlencoded"
1107
1120
  }
1108
1121
  },
1109
- 'paramsType': {
1110
- 'ImageName': 'String',
1111
- 'Architecture': 'String',
1112
- 'Platform': 'String',
1113
- 'ImageUrl': 'String',
1114
- 'ImageFormat': 'String',
1115
- 'DataImageUrl': 'Filter',
1116
- 'DataImageSize': 'Filter',
1117
- 'DataImageFormat': 'Filter'
1122
+ paramsType: {
1123
+ ScalingGroupId: "String",
1124
+ ScalingScheduledTaskId: "Filter",
1125
+ ScalingScheduledTaskName: "String",
1126
+ Marker: "Int",
1127
+ MaxResults: "Int"
1118
1128
  }
1119
1129
  },
1120
- 'CopyImage': {
1121
- 'url': '/',
1122
- 'method': 'GET',
1123
- 'config': {
1124
- 'query': {
1125
- 'Version': '2016-03-04',
1126
- 'Action': 'CopyImage'
1130
+ ModifyScheduledTask: {
1131
+ url: "/",
1132
+ method: "GET",
1133
+ config: {
1134
+ query: {
1135
+ Version: "2016-03-04",
1136
+ Action: "ModifyScheduledTask"
1127
1137
  },
1128
- 'headers': {
1129
- 'Content-Type': 'application/x-www-form-urlencoded'
1138
+ headers: {
1139
+ "Content-Type": "application/x-www-form-urlencoded"
1130
1140
  }
1131
1141
  },
1132
- 'paramsType': {
1133
- 'ImageId': 'Filter',
1134
- 'DestinationRegion': 'Filter',
1135
- 'DestinationImageName': 'String'
1136
- }
1142
+ paramsType: {}
1137
1143
  },
1138
- 'ModifyImageSharePermission': {
1139
- 'url': '/',
1140
- 'method': 'GET',
1141
- 'config': {
1142
- 'query': {
1143
- 'Version': '2016-03-04',
1144
- 'Action': 'ModifyImageSharePermission'
1144
+ DeleteScheduledTask: {
1145
+ url: "/",
1146
+ method: "GET",
1147
+ config: {
1148
+ query: {
1149
+ Version: "2016-03-04",
1150
+ Action: "DeleteScheduledTask"
1145
1151
  },
1146
- 'headers': {
1147
- 'Content-Type': 'application/x-www-form-urlencoded'
1152
+ headers: {
1153
+ "Content-Type": "application/x-www-form-urlencoded"
1148
1154
  }
1149
1155
  },
1150
- 'paramsType': {
1151
- 'ImageId': 'String',
1152
- 'AccountId': 'Filter',
1153
- 'Permission': 'String'
1156
+ paramsType: {
1157
+ ScalingScheduledTaskId: "String",
1158
+ ScalingGroupId: "String"
1154
1159
  }
1155
1160
  },
1156
- 'DescribeImageSharePermission': {
1157
- 'url': '/',
1158
- 'method': 'GET',
1159
- 'config': {
1160
- 'query': {
1161
- 'Version': '2016-03-04',
1162
- 'Action': 'DescribeImageSharePermission'
1163
- },
1164
- 'headers': {
1165
- 'Content-Type': 'application/x-www-form-urlencoded'
1161
+ CreateScalingPolicy: {
1162
+ url: "/",
1163
+ method: "GET",
1164
+ config: {
1165
+ query: {
1166
+ Version: "2016-03-04",
1167
+ Action: "CreateScalingPolicy"
1168
+ },
1169
+ headers: {
1170
+ "Content-Type": "application/x-www-form-urlencoded"
1166
1171
  }
1167
1172
  },
1168
- 'paramsType': {
1169
- 'ImageId': 'String'
1173
+ paramsType: {
1174
+ ScalingGroupId: "String",
1175
+ ScalingPolicyName: "String",
1176
+ Metric: "String",
1177
+ AdjustmentType: "String",
1178
+ AdjustmentValue: "Int",
1179
+ CoolDown: "Int"
1170
1180
  }
1171
1181
  },
1172
- 'DescribeRegions': {
1173
- 'url': '/',
1174
- 'method': 'GET',
1175
- 'config': {
1176
- 'query': {
1177
- 'Version': '2016-03-04',
1178
- 'Action': 'DescribeRegions'
1182
+ DescribeScalingPolicy: {
1183
+ url: "/",
1184
+ method: "GET",
1185
+ config: {
1186
+ query: {
1187
+ Version: "2016-03-04",
1188
+ Action: "DescribeScalingPolicy"
1179
1189
  },
1180
- 'headers': {
1181
- 'Content-Type': 'application/x-www-form-urlencoded'
1190
+ headers: {
1191
+ "Content-Type": "application/x-www-form-urlencoded"
1182
1192
  }
1183
1193
  },
1184
- 'paramsType': {}
1194
+ paramsType: {
1195
+ ScalingGroupId: "String",
1196
+ ScalingPolicyId: "Filter",
1197
+ ScalingPolicyName: "String",
1198
+ Marker: "Int",
1199
+ MaxResults: "Int"
1200
+ }
1185
1201
  },
1186
- 'AttachKey': {
1187
- 'url': '/',
1188
- 'method': 'GET',
1189
- 'config': {
1190
- 'query': {
1191
- 'Version': '2016-03-04',
1192
- 'Action': 'AttachKey'
1202
+ ModifyScalingPolicy: {
1203
+ url: "/",
1204
+ method: "GET",
1205
+ config: {
1206
+ query: {
1207
+ Version: "2016-03-04",
1208
+ Action: "ModifyScalingPolicy"
1193
1209
  },
1194
- 'headers': {
1195
- 'Content-Type': 'application/x-www-form-urlencoded'
1210
+ headers: {
1211
+ "Content-Type": "application/x-www-form-urlencoded"
1196
1212
  }
1197
1213
  },
1198
- 'paramsType': {
1199
- 'Action': 'String',
1200
- 'InstanceId': 'Filter',
1201
- 'KeyId': 'Filter'
1214
+ paramsType: {
1215
+ ScalingPolicyId: "String",
1216
+ ScalingGroupId: "String",
1217
+ ScalingPolicyName: "String",
1218
+ Metric: "String",
1219
+ AdjustmentType: "String",
1220
+ AdjustmentValue: "Int",
1221
+ CoolDown: "Int"
1202
1222
  }
1203
1223
  },
1204
- 'DetachKey': {
1205
- 'url': '/',
1206
- 'method': 'GET',
1207
- 'config': {
1208
- 'query': {
1209
- 'Version': '2016-03-04',
1210
- 'Action': 'DetachKey'
1224
+ DeleteScalingPolicy: {
1225
+ url: "/",
1226
+ method: "GET",
1227
+ config: {
1228
+ query: {
1229
+ Version: "2016-03-04",
1230
+ Action: "DeleteScalingPolicy"
1211
1231
  },
1212
- 'headers': {
1213
- 'Content-Type': 'application/x-www-form-urlencoded'
1232
+ headers: {
1233
+ "Content-Type": "application/x-www-form-urlencoded"
1214
1234
  }
1215
1235
  },
1216
- 'paramsType': {
1217
- 'Action': 'String',
1218
- 'InstanceId': 'Filter',
1219
- 'KeyId': 'Filter'
1236
+ paramsType: {
1237
+ ScalingGroupId: "String",
1238
+ ScalingPolicyId: "String"
1220
1239
  }
1221
1240
  },
1222
- 'DescribeAvailabilityZones': {
1223
- 'url': '/',
1224
- 'method': 'GET',
1225
- 'config': {
1226
- 'query': {
1227
- 'Version': '2016-03-04',
1228
- 'Action': 'DescribeAvailabilityZones'
1241
+ ImportImage: {
1242
+ url: "/",
1243
+ method: "GET",
1244
+ config: {
1245
+ query: {
1246
+ Version: "2016-03-04",
1247
+ Action: "ImportImage"
1229
1248
  },
1230
- 'headers': {
1231
- 'Content-Type': 'application/x-www-form-urlencoded'
1249
+ headers: {
1250
+ "Content-Type": "application/x-www-form-urlencoded"
1232
1251
  }
1233
1252
  },
1234
- 'paramsType': {}
1253
+ paramsType: {
1254
+ ImageName: "String",
1255
+ Architecture: "String",
1256
+ Platform: "String",
1257
+ ImageUrl: "String",
1258
+ ImageFormat: "String",
1259
+ DataImageUrl: "Filter",
1260
+ DataImageSize: "Filter",
1261
+ DataImageFormat: "Filter"
1262
+ }
1235
1263
  },
1236
- 'DescribeInstanceTypeConfigs': {
1237
- 'url': '/',
1238
- 'method': 'GET',
1239
- 'config': {
1240
- 'query': {
1241
- 'Version': '2016-03-04',
1242
- 'Action': 'DescribeInstanceTypeConfigs'
1264
+ CopyImage: {
1265
+ url: "/",
1266
+ method: "GET",
1267
+ config: {
1268
+ query: {
1269
+ Version: "2016-03-04",
1270
+ Action: "CopyImage"
1243
1271
  },
1244
- 'headers': {
1245
- 'Content-Type': 'application/x-www-form-urlencoded'
1272
+ headers: {
1273
+ "Content-Type": "application/x-www-form-urlencoded"
1246
1274
  }
1247
1275
  },
1248
- 'paramsType': {}
1276
+ paramsType: {
1277
+ ImageId: "Filter",
1278
+ DestinationRegion: "Filter",
1279
+ DestinationImageName: "String"
1280
+ }
1249
1281
  },
1250
- 'DescribeInstanceFamilys': {
1251
- 'url': '/',
1252
- 'method': 'GET',
1253
- 'config': {
1254
- 'query': {
1255
- 'Version': '2016-03-04',
1256
- 'Action': 'DescribeInstanceFamilys'
1282
+ ModifyImageSharePermission: {
1283
+ url: "/",
1284
+ method: "GET",
1285
+ config: {
1286
+ query: {
1287
+ Version: "2016-03-04",
1288
+ Action: "ModifyImageSharePermission"
1257
1289
  },
1258
- 'headers': {
1259
- 'Content-Type': 'application/x-www-form-urlencoded'
1290
+ headers: {
1291
+ "Content-Type": "application/x-www-form-urlencoded"
1260
1292
  }
1261
1293
  },
1262
- 'paramsType': {}
1294
+ paramsType: {
1295
+ ImageId: "String",
1296
+ AccountId: "Filter",
1297
+ Permission: "String"
1298
+ }
1263
1299
  },
1264
- 'AddVmIntoDataGuard': {
1265
- 'url': '/',
1266
- 'method': 'GET',
1267
- 'config': {
1268
- 'query': {
1269
- 'Version': '2016-03-04',
1270
- 'Action': 'AddVmIntoDataGuard'
1300
+ DescribeImageSharePermission: {
1301
+ url: "/",
1302
+ method: "GET",
1303
+ config: {
1304
+ query: {
1305
+ Version: "2016-03-04",
1306
+ Action: "DescribeImageSharePermission"
1271
1307
  },
1272
- 'headers': {
1273
- 'Content-Type': 'application/x-www-form-urlencoded'
1308
+ headers: {
1309
+ "Content-Type": "application/x-www-form-urlencoded"
1274
1310
  }
1275
1311
  },
1276
- 'paramsType': {
1277
- 'DataGuardId': 'String',
1278
- 'InstanceId': 'Filter'
1312
+ paramsType: {
1313
+ ImageId: "String"
1279
1314
  }
1280
1315
  },
1281
- 'CreateFileSystem': {
1282
- 'url': '/',
1283
- 'method': 'GET',
1284
- 'config': {
1285
- 'query': {
1286
- 'Version': '2016-03-04',
1287
- 'Action': 'CreateFileSystem'
1316
+ DescribeRegions: {
1317
+ url: "/",
1318
+ method: "GET",
1319
+ config: {
1320
+ query: {
1321
+ Version: "2016-03-04",
1322
+ Action: "DescribeRegions"
1288
1323
  },
1289
- 'headers': {
1290
- 'Content-Type': 'application/x-www-form-urlencoded'
1324
+ headers: {
1325
+ "Content-Type": "application/x-www-form-urlencoded"
1291
1326
  }
1292
1327
  },
1293
- 'paramsType': {
1294
- 'AvailabilityZone': 'String',
1295
- 'VpcId': 'String',
1296
- 'StorageType': 'String',
1297
- 'ProtocolType': 'String',
1298
- 'FileSystemName': 'String'
1299
- }
1328
+ paramsType: {}
1300
1329
  },
1301
- 'DeleteFileSystem': {
1302
- 'url': '/',
1303
- 'method': 'GET',
1304
- 'config': {
1305
- 'query': {
1306
- 'Version': '2016-03-04',
1307
- 'Action': 'DeleteFileSystem'
1330
+ AttachKey: {
1331
+ url: "/",
1332
+ method: "GET",
1333
+ config: {
1334
+ query: {
1335
+ Version: "2016-03-04",
1336
+ Action: "AttachKey"
1308
1337
  },
1309
- 'headers': {
1310
- 'Content-Type': 'application/x-www-form-urlencoded'
1338
+ headers: {
1339
+ "Content-Type": "application/x-www-form-urlencoded"
1311
1340
  }
1312
1341
  },
1313
- 'paramsType': {
1314
- 'FileSystemId': 'String'
1342
+ paramsType: {
1343
+ Action: "String",
1344
+ InstanceId: "Filter",
1345
+ KeyId: "Filter"
1315
1346
  }
1316
1347
  },
1317
- 'DescribeFileSystems': {
1318
- 'url': '/',
1319
- 'method': 'GET',
1320
- 'config': {
1321
- 'query': {
1322
- 'Version': '2016-03-04',
1323
- 'Action': 'DescribeFileSystems'
1348
+ DetachKey: {
1349
+ url: "/",
1350
+ method: "GET",
1351
+ config: {
1352
+ query: {
1353
+ Version: "2016-03-04",
1354
+ Action: "DetachKey"
1324
1355
  },
1325
- 'headers': {
1326
- 'Content-Type': 'application/x-www-form-urlencoded'
1356
+ headers: {
1357
+ "Content-Type": "application/x-www-form-urlencoded"
1327
1358
  }
1328
1359
  },
1329
- 'paramsType': {
1330
- 'FileSystemId': 'String',
1331
- 'MaxResults': 'Int',
1332
- 'Marker': 'Int'
1360
+ paramsType: {
1361
+ Action: "String",
1362
+ InstanceId: "Filter",
1363
+ KeyId: "Filter"
1333
1364
  }
1334
1365
  },
1335
- 'ModifyFileSystem': {
1336
- 'url': '/',
1337
- 'method': 'GET',
1338
- 'config': {
1339
- 'query': {
1340
- 'Version': '2016-03-04',
1341
- 'Action': 'ModifyFileSystem'
1342
- },
1343
- 'headers': {
1344
- 'Content-Type': 'application/x-www-form-urlencoded'
1345
- }
1346
- },
1347
- 'paramsType': {
1348
- 'FileSystemId': 'String',
1349
- 'FileSystemName': 'String'
1350
- }
1351
- },
1352
- 'CreateMountTarget': {
1353
- 'url': '/',
1354
- 'method': 'GET',
1355
- 'config': {
1356
- 'query': {
1357
- 'Version': '2016-03-04',
1358
- 'Action': 'CreateMountTarget'
1366
+ DescribeAvailabilityZones: {
1367
+ url: "/",
1368
+ method: "GET",
1369
+ config: {
1370
+ query: {
1371
+ Version: "2016-03-04",
1372
+ Action: "DescribeAvailabilityZones"
1359
1373
  },
1360
- 'headers': {
1361
- 'Content-Type': 'application/x-www-form-urlencoded'
1374
+ headers: {
1375
+ "Content-Type": "application/x-www-form-urlencoded"
1362
1376
  }
1363
1377
  },
1364
- 'paramsType': {
1365
- 'FileSystemId': 'String',
1366
- 'SubnetId': 'String',
1367
- 'IpVersion': 'String'
1368
- }
1378
+ paramsType: {}
1369
1379
  },
1370
- 'DeleteMountTarget': {
1371
- 'url': '/',
1372
- 'method': 'GET',
1373
- 'config': {
1374
- 'query': {
1375
- 'Version': '2016-03-04',
1376
- 'Action': 'DeleteMountTarget'
1380
+ DescribeInstanceTypeConfigs: {
1381
+ url: "/",
1382
+ method: "GET",
1383
+ config: {
1384
+ query: {
1385
+ Version: "2016-03-04",
1386
+ Action: "DescribeInstanceTypeConfigs"
1377
1387
  },
1378
- 'headers': {
1379
- 'Content-Type': 'application/x-www-form-urlencoded'
1388
+ headers: {
1389
+ "Content-Type": "application/x-www-form-urlencoded"
1380
1390
  }
1381
1391
  },
1382
- 'paramsType': {
1383
- 'MountTargetId': 'String'
1392
+ paramsType: {
1393
+ Filter: "Filter"
1384
1394
  }
1385
1395
  },
1386
- 'DescribeMountTargets': {
1387
- 'url': '/',
1388
- 'method': 'GET',
1389
- 'config': {
1390
- 'query': {
1391
- 'Version': '2016-03-04',
1392
- 'Action': 'DescribeMountTargets'
1396
+ DescribeInstanceFamilys: {
1397
+ url: "/",
1398
+ method: "GET",
1399
+ config: {
1400
+ query: {
1401
+ Version: "2016-03-04",
1402
+ Action: "DescribeInstanceFamilys"
1393
1403
  },
1394
- 'headers': {
1395
- 'Content-Type': 'application/x-www-form-urlencoded'
1404
+ headers: {
1405
+ "Content-Type": "application/x-www-form-urlencoded"
1396
1406
  }
1397
1407
  },
1398
- 'paramsType': {
1399
- 'FileSystemId': 'String',
1400
- 'MountTargetId': 'String',
1401
- 'MaxResults': 'Int',
1402
- 'Marker': 'Int'
1403
- }
1408
+ paramsType: {}
1404
1409
  },
1405
- 'CreateModel': {
1406
- 'url': '/',
1407
- 'method': 'GET',
1408
- 'config': {
1409
- 'query': {
1410
- 'Version': '2016-03-04',
1411
- 'Action': 'CreateModel'
1410
+ AddVmIntoDataGuard: {
1411
+ url: "/",
1412
+ method: "GET",
1413
+ config: {
1414
+ query: {
1415
+ Version: "2016-03-04",
1416
+ Action: "AddVmIntoDataGuard"
1412
1417
  },
1413
- 'headers': {
1414
- 'Content-Type': 'application/x-www-form-urlencoded'
1418
+ headers: {
1419
+ "Content-Type": "application/x-www-form-urlencoded"
1415
1420
  }
1416
1421
  },
1417
- 'paramsType': {
1418
- 'ImageId': 'String',
1419
- 'InstanceType': 'String',
1420
- 'SystemDisk.DiskSize': 'String',
1421
- 'DataDiskGb': 'Int',
1422
- 'SubnetId': 'String',
1423
- 'DataDisk': 'Filter',
1424
- 'KeepImageLogin': 'Boolean',
1425
- 'KeyId': 'String',
1426
- 'ChargeType': 'String',
1427
- 'PurchaseTime': 'Int',
1428
- 'SecurityGroupId': 'String',
1429
- 'PrivateIpAddress': 'String',
1430
- 'InstanceName': 'String',
1431
- 'InstanceNameSuffix': 'String',
1432
- 'SriovNetSupport': 'String',
1433
- 'ProjectId': 'Int',
1434
- 'DataGuardId': 'String',
1435
- 'AddressBandWidth': 'Int',
1436
- 'LineId': 'String',
1437
- 'AddressChargeType': 'String',
1438
- 'AddressPurchaseTime': 'Int',
1439
- 'AddressProjectId': 'String',
1440
- 'ModelName': 'String',
1441
- 'SystemDisk.DiskType': 'String',
1442
- 'SystemDisk.ResizeType': 'String'
1422
+ paramsType: {
1423
+ DataGuardId: "String",
1424
+ InstanceId: "Filter"
1443
1425
  }
1444
1426
  },
1445
- 'TerminateModels': {
1446
- 'url': '/',
1447
- 'method': 'GET',
1448
- 'config': {
1449
- 'query': {
1450
- 'Version': '2016-03-04',
1451
- 'Action': 'TerminateModels'
1427
+ CreateFileSystem: {
1428
+ url: "/",
1429
+ method: "GET",
1430
+ config: {
1431
+ query: {
1432
+ Version: "2016-03-04",
1433
+ Action: "CreateFileSystem"
1452
1434
  },
1453
- 'headers': {
1454
- 'Content-Type': 'application/x-www-form-urlencoded'
1435
+ headers: {
1436
+ "Content-Type": "application/x-www-form-urlencoded"
1455
1437
  }
1456
1438
  },
1457
- 'paramsType': {
1458
- 'ModelId': 'Filter'
1439
+ paramsType: {
1440
+ AvailabilityZone: "String",
1441
+ VpcId: "String",
1442
+ StorageType: "String",
1443
+ ProtocolType: "String",
1444
+ FileSystemName: "String",
1445
+ ProjectId: "Int"
1459
1446
  }
1460
1447
  },
1461
- 'DescribeModels': {
1462
- 'url': '/',
1463
- 'method': 'GET',
1464
- 'config': {
1465
- 'query': {
1466
- 'Version': '2016-03-04',
1467
- 'Action': 'DescribeModels'
1448
+ DeleteFileSystem: {
1449
+ url: "/",
1450
+ method: "GET",
1451
+ config: {
1452
+ query: {
1453
+ Version: "2016-03-04",
1454
+ Action: "DeleteFileSystem"
1468
1455
  },
1469
- 'headers': {
1470
- 'Content-Type': 'application/x-www-form-urlencoded'
1456
+ headers: {
1457
+ "Content-Type": "application/x-www-form-urlencoded"
1471
1458
  }
1472
1459
  },
1473
- 'paramsType': {
1474
- 'ModelId': 'Filter',
1475
- 'MaxResults': 'Int',
1476
- 'Marker': 'Int'
1460
+ paramsType: {
1461
+ FileSystemId: "String"
1477
1462
  }
1478
1463
  },
1479
- 'DescribeDedicatedCluster': {
1480
- 'url': '/',
1481
- 'method': 'GET',
1482
- 'config': {
1483
- 'query': {
1484
- 'Version': '2016-03-04',
1485
- 'Action': 'DescribeDedicatedCluster'
1464
+ DescribeFileSystems: {
1465
+ url: "/",
1466
+ method: "GET",
1467
+ config: {
1468
+ query: {
1469
+ Version: "2016-03-04",
1470
+ Action: "DescribeFileSystems"
1486
1471
  },
1487
- 'headers': {
1488
- 'Content-Type': 'application/x-www-form-urlencoded'
1472
+ headers: {
1473
+ "Content-Type": "application/x-www-form-urlencoded"
1489
1474
  }
1490
1475
  },
1491
- 'paramsType': {
1492
- 'DedicatedClusterId': 'Filter'
1476
+ paramsType: {
1477
+ FileSystemId: "Filter",
1478
+ MaxResults: "Int",
1479
+ Marker: "Int",
1480
+ ProjectId: "Filter",
1481
+ IncludeDel: "Boolean",
1482
+ Filter: "Filter"
1493
1483
  }
1494
1484
  },
1495
- 'CreateDedicatedCluster': {
1496
- 'url': '/',
1497
- 'method': 'GET',
1498
- 'config': {
1499
- 'query': {
1500
- 'Version': '2016-03-04',
1501
- 'Action': 'CreateDedicatedCluster'
1502
- },
1503
- 'headers': {
1504
- 'Content-Type': 'application/x-www-form-urlencoded'
1505
- }
1506
- },
1507
- 'paramsType': {
1508
- 'DedicatedClusterName': 'String',
1509
- 'Model': 'String',
1510
- 'AvailabilityZone': 'String'
1485
+ ModifyFileSystem: {
1486
+ url: "/",
1487
+ method: "GET",
1488
+ config: {
1489
+ query: {
1490
+ Version: "2016-03-04",
1491
+ Action: "ModifyFileSystem"
1492
+ },
1493
+ headers: {
1494
+ "Content-Type": "application/x-www-form-urlencoded"
1495
+ }
1496
+ },
1497
+ paramsType: {
1498
+ FileSystemId: "String",
1499
+ FileSystemName: "String"
1500
+ }
1501
+ },
1502
+ CreateMountTarget: {
1503
+ url: "/",
1504
+ method: "GET",
1505
+ config: {
1506
+ query: {
1507
+ Version: "2016-03-04",
1508
+ Action: "CreateMountTarget"
1509
+ },
1510
+ headers: {
1511
+ "Content-Type": "application/x-www-form-urlencoded"
1512
+ }
1513
+ },
1514
+ paramsType: {
1515
+ FileSystemId: "String",
1516
+ SubnetId: "String",
1517
+ IpVersion: "String"
1518
+ }
1519
+ },
1520
+ DeleteMountTarget: {
1521
+ url: "/",
1522
+ method: "GET",
1523
+ config: {
1524
+ query: {
1525
+ Version: "2016-03-04",
1526
+ Action: "DeleteMountTarget"
1527
+ },
1528
+ headers: {
1529
+ "Content-Type": "application/x-www-form-urlencoded"
1530
+ }
1531
+ },
1532
+ paramsType: {
1533
+ MountTargetId: "String"
1534
+ }
1535
+ },
1536
+ DescribeMountTargets: {
1537
+ url: "/",
1538
+ method: "GET",
1539
+ config: {
1540
+ query: {
1541
+ Version: "2016-03-04",
1542
+ Action: "DescribeMountTargets"
1543
+ },
1544
+ headers: {
1545
+ "Content-Type": "application/x-www-form-urlencoded"
1546
+ }
1547
+ },
1548
+ paramsType: {
1549
+ FileSystemId: "String",
1550
+ MountTargetId: "String",
1551
+ MaxResults: "Int",
1552
+ Marker: "Int"
1553
+ }
1554
+ },
1555
+ CreateModel: {
1556
+ url: "/",
1557
+ method: "GET",
1558
+ config: {
1559
+ query: {
1560
+ Version: "2016-03-04",
1561
+ Action: "CreateModel"
1562
+ },
1563
+ headers: {
1564
+ "Content-Type": "application/x-www-form-urlencoded"
1565
+ }
1566
+ },
1567
+ paramsType: {
1568
+ ImageId: "String",
1569
+ InstanceType: "String",
1570
+ DataDiskGb: "Int",
1571
+ SubnetId: "String",
1572
+ DataDisk: "Filter",
1573
+ KeepImageLogin: "Boolean",
1574
+ KeyId: "String",
1575
+ ChargeType: "String",
1576
+ PurchaseTime: "Int",
1577
+ SecurityGroupId: "Filter",
1578
+ PrivateIpAddress: "String",
1579
+ InstanceName: "String",
1580
+ InstanceNameSuffix: "String",
1581
+ SriovNetSupport: "String",
1582
+ ProjectId: "Int",
1583
+ DataGuardId: "String",
1584
+ AddressBandWidth: "Int",
1585
+ LineId: "String",
1586
+ AddressChargeType: "String",
1587
+ AddressPurchaseTime: "Int",
1588
+ AddressProjectId: "String",
1589
+ ModelName: "String",
1590
+ FailureAutoDelete: "Boolean",
1591
+ SystemDisk: "Object",
1592
+ HostName: "String",
1593
+ HostNameSuffix: "String",
1594
+ UserData: "String",
1595
+ NetworkInterface: "Filter",
1596
+ Tag: "Filter",
1597
+ AllocateAddress: "Boolean",
1598
+ IsDistributeIpv6: "Boolean",
1599
+ Mem: "String",
1600
+ Cpu: "String",
1601
+ IamRoleName: "String",
1602
+ AssembledImageDataDiskType: "String",
1603
+ LocalVolumeSnapshotId: "String",
1604
+ SyncTag: "Boolean"
1605
+ }
1606
+ },
1607
+ TerminateModels: {
1608
+ url: "/",
1609
+ method: "GET",
1610
+ config: {
1611
+ query: {
1612
+ Version: "2016-03-04",
1613
+ Action: "TerminateModels"
1614
+ },
1615
+ headers: {
1616
+ "Content-Type": "application/x-www-form-urlencoded"
1617
+ }
1618
+ },
1619
+ paramsType: {
1620
+ ModelId: "String",
1621
+ ModelVersion: "Int"
1622
+ }
1623
+ },
1624
+ DescribeModels: {
1625
+ url: "/",
1626
+ method: "GET",
1627
+ config: {
1628
+ query: {
1629
+ Version: "2016-03-04",
1630
+ Action: "DescribeModels"
1631
+ },
1632
+ headers: {
1633
+ "Content-Type": "application/x-www-form-urlencoded"
1634
+ }
1635
+ },
1636
+ paramsType: {
1637
+ ModelId: "Filter",
1638
+ MaxResults: "Int",
1639
+ Marker: "Int"
1640
+ }
1641
+ },
1642
+ DescribeDedicatedCluster: {
1643
+ url: "/",
1644
+ method: "GET",
1645
+ config: {
1646
+ query: {
1647
+ Version: "2016-03-04",
1648
+ Action: "DescribeDedicatedCluster"
1649
+ },
1650
+ headers: {
1651
+ "Content-Type": "application/x-www-form-urlencoded"
1652
+ }
1653
+ },
1654
+ paramsType: {
1655
+ DedicatedClusterId: "Filter"
1656
+ }
1657
+ },
1658
+ CreateDedicatedCluster: {
1659
+ url: "/",
1660
+ method: "GET",
1661
+ config: {
1662
+ query: {
1663
+ Version: "2016-03-04",
1664
+ Action: "CreateDedicatedCluster"
1665
+ },
1666
+ headers: {
1667
+ "Content-Type": "application/x-www-form-urlencoded"
1668
+ }
1669
+ },
1670
+ paramsType: {
1671
+ DedicatedClusterName: "String",
1672
+ Model: "String",
1673
+ AvailabilityZone: "String"
1511
1674
  }
1512
1675
  },
1513
- 'DeleteDedicatedCluster': {
1514
- 'url': '/',
1515
- 'method': 'GET',
1516
- 'config': {
1517
- 'query': {
1518
- 'Version': '2016-03-04',
1519
- 'Action': 'DeleteDedicatedCluster'
1676
+ DeleteDedicatedCluster: {
1677
+ url: "/",
1678
+ method: "GET",
1679
+ config: {
1680
+ query: {
1681
+ Version: "2016-03-04",
1682
+ Action: "DeleteDedicatedCluster"
1520
1683
  },
1521
- 'headers': {
1522
- 'Content-Type': 'application/x-www-form-urlencoded'
1684
+ headers: {
1685
+ "Content-Type": "application/x-www-form-urlencoded"
1523
1686
  }
1524
1687
  },
1525
- 'paramsType': {
1526
- 'DedicatedClusterId': 'Filter'
1688
+ paramsType: {
1689
+ DedicatedClusterId: "Filter"
1527
1690
  }
1528
1691
  },
1529
- 'SetvCPU': {
1530
- 'url': '/',
1531
- 'method': 'GET',
1532
- 'config': {
1533
- 'query': {
1534
- 'Version': '2016-03-04',
1535
- 'Action': 'SetvCPU'
1692
+ SetvCPU: {
1693
+ url: "/",
1694
+ method: "GET",
1695
+ config: {
1696
+ query: {
1697
+ Version: "2016-03-04",
1698
+ Action: "SetvCPU"
1536
1699
  },
1537
- 'headers': {
1538
- 'Content-Type': 'application/x-www-form-urlencoded'
1700
+ headers: {
1701
+ "Content-Type": "application/x-www-form-urlencoded"
1539
1702
  }
1540
1703
  },
1541
- 'paramsType': {
1542
- 'DedicatedHostId': 'Filter',
1543
- 'VCPU': 'Int'
1704
+ paramsType: {
1705
+ DedicatedHostId: "Filter",
1706
+ VCPU: "Int"
1544
1707
  }
1545
1708
  },
1546
- 'DedicatedHostMigrate': {
1547
- 'url': '/',
1548
- 'method': 'GET',
1549
- 'config': {
1550
- 'query': {
1551
- 'Version': '2016-03-04',
1552
- 'Action': 'DedicatedHostMigrate'
1709
+ DedicatedHostMigrate: {
1710
+ url: "/",
1711
+ method: "GET",
1712
+ config: {
1713
+ query: {
1714
+ Version: "2016-03-04",
1715
+ Action: "DedicatedHostMigrate"
1553
1716
  },
1554
- 'headers': {
1555
- 'Content-Type': 'application/x-www-form-urlencoded'
1717
+ headers: {
1718
+ "Content-Type": "application/x-www-form-urlencoded"
1556
1719
  }
1557
1720
  },
1558
- 'paramsType': {
1559
- 'DedicatedClusterId': 'String',
1560
- 'DedicatedHostId': 'Filter'
1721
+ paramsType: {
1722
+ DedicatedClusterId: "String",
1723
+ DedicatedHostId: "Filter"
1561
1724
  }
1562
1725
  },
1563
- 'ModifyDedicatedClusterName': {
1564
- 'url': '/',
1565
- 'method': 'GET',
1566
- 'config': {
1567
- 'query': {
1568
- 'Version': '2016-03-04',
1569
- 'Action': 'ModifyDedicatedClusterName'
1726
+ ModifyDedicatedClusterName: {
1727
+ url: "/",
1728
+ method: "GET",
1729
+ config: {
1730
+ query: {
1731
+ Version: "2016-03-04",
1732
+ Action: "ModifyDedicatedClusterName"
1570
1733
  },
1571
- 'headers': {
1572
- 'Content-Type': 'application/x-www-form-urlencoded'
1734
+ headers: {
1735
+ "Content-Type": "application/x-www-form-urlencoded"
1573
1736
  }
1574
1737
  },
1575
- 'paramsType': {
1576
- 'DedicatedClusterId': 'String',
1577
- 'DedicatedClusterName': 'String'
1578
- }
1579
- },
1580
- 'ModifyInstanceAutoDeleteTime': {
1581
- 'url': '/',
1582
- 'method': 'GET',
1583
- 'config': {
1584
- 'query': {
1585
- 'Version': '2016-03-04',
1586
- 'Action': 'ModifyInstanceAutoDeleteTime'
1587
- },
1588
- 'headers': {
1589
- 'Content-Type': 'application/x-www-form-urlencoded'
1590
- }
1591
- },
1592
- 'paramsType': {
1593
- 'InstanceId': 'Filter',
1594
- 'AutoDeleteTime': 'String',
1595
- 'AutoDeleteEip': 'Boolean'
1596
- }
1597
- },
1598
- 'ModifyScalingConfiguration': {
1599
- 'url': '/',
1600
- 'method': 'GET',
1601
- 'config': {
1602
- 'query': {
1603
- 'Version': '2016-03-04',
1604
- 'Action': 'ModifyScalingConfiguration'
1605
- },
1606
- 'headers': {
1607
- 'Content-Type': 'application/x-www-form-urlencoded'
1608
- }
1609
- },
1610
- 'paramsType': {
1611
- 'ScalingConfigurationId': 'String',
1612
- 'ScalingConfigurationName': 'String',
1613
- 'ImageId': 'String',
1614
- 'Password': 'String',
1615
- 'InstanceType': 'String',
1616
- 'ChargeType': 'String',
1617
- 'DataDiskGb': 'Int',
1618
- 'ProjectId': 'Int',
1619
- 'KeepImageLogin': 'Boolean',
1620
- 'KeyId': 'Filter',
1621
- 'DataDisk': 'Filter',
1622
- 'SystemDisk.DiskSize': 'Int',
1623
- 'AddressBandWidth': 'Int',
1624
- 'BandWidthShareId': 'String',
1625
- 'LineId': 'String',
1626
- 'AddressProjectId': 'Int',
1627
- 'InstanceName': 'String',
1628
- 'InstanceNameSuffix': 'String',
1629
- 'UserData': 'String',
1630
- 'InstanceNameTimeSuffix': 'Boolean',
1631
- 'Tag': 'Filter',
1632
- 'LoginSetAfter': 'Boolean',
1633
- 'IpBindAfter': 'Boolean',
1634
- 'InstanceNameRandom': 'Boolean',
1635
- 'SystemDisk.DiskType': 'String',
1636
- 'SystemDisk.ResizeType': 'String'
1738
+ paramsType: {
1739
+ DedicatedClusterId: "String",
1740
+ DedicatedClusterName: "String"
1637
1741
  }
1638
1742
  },
1639
- 'DescribeSpotPriceHistory': {
1640
- 'url': '/',
1641
- 'method': 'GET',
1642
- 'config': {
1643
- 'query': {
1644
- 'Version': '2016-03-04',
1645
- 'Action': 'DescribeSpotPriceHistory'
1743
+ InstanceMigrate: {
1744
+ url: "/",
1745
+ method: "GET",
1746
+ config: {
1747
+ query: {
1748
+ Version: "2016-03-04",
1749
+ Action: "InstanceMigrate"
1646
1750
  },
1647
- 'headers': {
1648
- 'Content-Type': 'application/x-www-form-urlencoded'
1751
+ headers: {
1752
+ "Content-Type": "application/x-www-form-urlencoded"
1649
1753
  }
1650
1754
  },
1651
- 'paramsType': {
1652
- 'InstanceType': 'String',
1653
- 'AvailabilityZone': 'String',
1654
- 'StartTime': 'String',
1655
- 'EndTime': 'String'
1755
+ paramsType: {
1756
+ DedicatedHostId: "String",
1757
+ InstanceId: "String",
1758
+ InstanceType: "String",
1759
+ DataDisk: "Filter"
1656
1760
  }
1657
1761
  },
1658
- 'DescribePrice': {
1659
- 'url': '/',
1660
- 'method': 'GET',
1661
- 'config': {
1662
- 'query': {
1663
- 'Version': '2016-03-04',
1664
- 'Action': 'DescribePrice'
1665
- },
1666
- 'headers': {
1667
- 'Content-Type': 'application/x-www-form-urlencoded'
1762
+ ModifyInstanceAutoDeleteTime: {
1763
+ url: "/",
1764
+ method: "GET",
1765
+ config: {
1766
+ query: {
1767
+ Version: "2016-03-04",
1768
+ Action: "ModifyInstanceAutoDeleteTime"
1769
+ },
1770
+ headers: {
1771
+ "Content-Type": "application/x-www-form-urlencoded"
1668
1772
  }
1669
1773
  },
1670
- 'paramsType': {
1671
- 'InstanceType': 'String',
1672
- 'SystemDisk.DiskSize': 'String',
1673
- 'ImageId': 'String',
1674
- 'ChargeType': 'String',
1675
- 'PurchaseTime': 'Int',
1676
- 'DataDiskGb': 'Int',
1677
- 'DataDisk': 'Filter',
1678
- 'MaxCount': 'Int',
1679
- 'SystemDisk.DiskType': 'String'
1680
- }
1681
- },
1682
- 'EnableImageCaching': {
1683
- 'url': '/',
1684
- 'method': 'GET',
1685
- 'config': {
1686
- 'query': {
1687
- 'Version': '2016-03-04',
1688
- 'Action': 'EnableImageCaching'
1774
+ paramsType: {
1775
+ InstanceId: "Filter",
1776
+ AutoDeleteTime: "String",
1777
+ AutoDeleteEip: "Boolean"
1778
+ }
1779
+ },
1780
+ DescribeKecInventory: {
1781
+ url: "/",
1782
+ method: "GET",
1783
+ config: {
1784
+ query: {
1785
+ Version: "2016-03-04",
1786
+ Action: "DescribeKecInventory"
1787
+ },
1788
+ headers: {
1789
+ "Content-Type": "application/x-www-form-urlencoded"
1790
+ }
1791
+ },
1792
+ paramsType: {
1793
+ InstanceType: "String",
1794
+ DataDiskGb: "Int",
1795
+ "SystemDisk.DiskSize": "Int",
1796
+ "SystemDisk.DiskType": "String",
1797
+ AvailabilityZone: "String"
1798
+ }
1799
+ },
1800
+ ModifyScalingConfiguration: {
1801
+ url: "/",
1802
+ method: "GET",
1803
+ config: {
1804
+ query: {
1805
+ Version: "2016-03-04",
1806
+ Action: "ModifyScalingConfiguration"
1807
+ },
1808
+ headers: {
1809
+ "Content-Type": "application/x-www-form-urlencoded"
1810
+ }
1811
+ },
1812
+ paramsType: {
1813
+ ScalingConfigurationId: "String",
1814
+ ScalingConfigurationName: "String",
1815
+ ImageId: "String",
1816
+ Password: "String",
1817
+ InstanceType: "String",
1818
+ ChargeType: "String",
1819
+ DataDiskGb: "Int",
1820
+ ProjectId: "Int",
1821
+ KeepImageLogin: "Boolean",
1822
+ KeyId: "Filter",
1823
+ DataDisk: "Filter",
1824
+ "SystemDisk.DiskSize": "Int",
1825
+ AddressBandWidth: "Int",
1826
+ BandWidthShareId: "String",
1827
+ LineId: "String",
1828
+ AddressProjectId: "Int",
1829
+ InstanceName: "String",
1830
+ InstanceNameSuffix: "String",
1831
+ UserData: "String",
1832
+ InstanceNameTimeSuffix: "Boolean",
1833
+ Tag: "Filter",
1834
+ LoginSetAfter: "Boolean",
1835
+ IpBindAfter: "Boolean",
1836
+ InstanceNameRandom: "Boolean",
1837
+ "SystemDisk.DiskType": "String",
1838
+ "SystemDisk.ResizeType": "String",
1839
+ SyncTag: "Boolean"
1840
+ }
1841
+ },
1842
+ DescribeSpotPriceHistory: {
1843
+ url: "/",
1844
+ method: "GET",
1845
+ config: {
1846
+ query: {
1847
+ Version: "2016-03-04",
1848
+ Action: "DescribeSpotPriceHistory"
1849
+ },
1850
+ headers: {
1851
+ "Content-Type": "application/x-www-form-urlencoded"
1852
+ }
1853
+ },
1854
+ paramsType: {
1855
+ InstanceType: "String",
1856
+ AvailabilityZone: "String",
1857
+ StartTime: "String",
1858
+ EndTime: "String"
1859
+ }
1860
+ },
1861
+ DescribePrice: {
1862
+ url: "/",
1863
+ method: "GET",
1864
+ config: {
1865
+ query: {
1866
+ Version: "2016-03-04",
1867
+ Action: "DescribePrice"
1689
1868
  },
1690
- 'headers': {
1691
- 'Content-Type': 'application/x-www-form-urlencoded'
1692
- }
1869
+ headers: {
1870
+ "Content-Type": "application/x-www-form-urlencoded"
1871
+ }
1872
+ },
1873
+ paramsType: {
1874
+ InstanceType: "String",
1875
+ "SystemDisk.DiskSize": "String",
1876
+ ImageId: "String",
1877
+ ChargeType: "String",
1878
+ PurchaseTime: "Int",
1879
+ DataDiskGb: "Int",
1880
+ DataDisk: "Filter",
1881
+ MaxCount: "Int",
1882
+ "SystemDisk.DiskType": "String"
1883
+ }
1884
+ },
1885
+ EnableImageCaching: {
1886
+ url: "/",
1887
+ method: "GET",
1888
+ config: {
1889
+ query: {
1890
+ Version: "2016-03-04",
1891
+ Action: "EnableImageCaching"
1892
+ },
1893
+ headers: {
1894
+ "Content-Type": "application/x-www-form-urlencoded"
1895
+ }
1693
1896
  },
1694
- 'paramsType': {
1695
- 'ImageId': 'Filter'
1696
- }
1897
+ paramsType: {
1898
+ ImageId: "Filter"
1899
+ }
1900
+ },
1901
+ DisableImageCaching: {
1902
+ url: "/",
1903
+ method: "GET",
1904
+ config: {
1905
+ query: {
1906
+ Version: "2016-03-04",
1907
+ Action: "DisableImageCaching"
1908
+ },
1909
+ headers: {
1910
+ "Content-Type": "application/x-www-form-urlencoded"
1911
+ }
1912
+ },
1913
+ paramsType: {
1914
+ ImageId: "Filter"
1915
+ }
1697
1916
  },
1698
- 'DisableImageCaching': {
1699
- 'url': '/',
1700
- 'method': 'GET',
1701
- 'config': {
1702
- 'query': {
1703
- 'Version': '2016-03-04',
1704
- 'Action': 'DisableImageCaching'
1917
+ ModifyLoadBalancers: {
1918
+ url: "/",
1919
+ method: "GET",
1920
+ config: {
1921
+ query: {
1922
+ Version: "2016-03-04",
1923
+ Action: "ModifyLoadBalancers"
1705
1924
  },
1706
- 'headers': {
1707
- 'Content-Type': 'application/x-www-form-urlencoded'
1925
+ headers: {
1926
+ "Content-Type": "application/x-www-form-urlencoded"
1708
1927
  }
1709
1928
  },
1710
- 'paramsType': {
1711
- 'ImageId': 'Filter'
1929
+ paramsType: {
1930
+ ScalingGroupId: "String"
1712
1931
  }
1713
1932
  },
1714
- 'ModifyLoadBalancers': {
1715
- 'url': '/',
1716
- 'method': 'GET',
1717
- 'config': {
1718
- 'query': {
1719
- 'Version': '2016-03-04',
1720
- 'Action': 'ModifyLoadBalancers'
1933
+ AttachInstancesIamRole: {
1934
+ url: "/",
1935
+ method: "GET",
1936
+ config: {
1937
+ query: {
1938
+ Version: "2016-03-04",
1939
+ Action: "AttachInstancesIamRole"
1721
1940
  },
1722
- 'headers': {
1723
- 'Content-Type': 'application/x-www-form-urlencoded'
1941
+ headers: {
1942
+ "Content-Type": "application/x-www-form-urlencoded"
1724
1943
  }
1725
1944
  },
1726
- 'paramsType': {
1727
- 'ScalingGroupId': 'String'
1945
+ paramsType: {
1946
+ InstanceId: "Filter",
1947
+ IamRoleName: "String"
1728
1948
  }
1729
1949
  },
1730
- 'AttachInstancesIamRole': {
1731
- 'url': '/',
1732
- 'method': 'GET',
1733
- 'config': {
1734
- 'query': {
1735
- 'Version': '2016-03-04',
1736
- 'Action': 'AttachInstancesIamRole'
1950
+ DetachInstancesIamRole: {
1951
+ url: "/",
1952
+ method: "GET",
1953
+ config: {
1954
+ query: {
1955
+ Version: "2016-03-04",
1956
+ Action: "DetachInstancesIamRole"
1737
1957
  },
1738
- 'headers': {
1739
- 'Content-Type': 'application/x-www-form-urlencoded'
1958
+ headers: {
1959
+ "Content-Type": "application/x-www-form-urlencoded"
1740
1960
  }
1741
1961
  },
1742
- 'paramsType': {
1743
- 'InstanceId': 'Filter',
1744
- 'IamRoleName': 'String'
1962
+ paramsType: {
1963
+ InstanceId: "Filter"
1745
1964
  }
1746
1965
  },
1747
- 'DetachInstancesIamRole': {
1748
- 'url': '/',
1749
- 'method': 'GET',
1750
- 'config': {
1751
- 'query': {
1752
- 'Version': '2016-03-04',
1753
- 'Action': 'DetachInstancesIamRole'
1966
+ CopySnapshot: {
1967
+ url: "/",
1968
+ method: "GET",
1969
+ config: {
1970
+ query: {
1971
+ Version: "2016-03-04",
1972
+ Action: "CopySnapshot"
1754
1973
  },
1755
- 'headers': {
1756
- 'Content-Type': 'application/x-www-form-urlencoded'
1974
+ headers: {
1975
+ "Content-Type": "application/x-www-form-urlencoded"
1757
1976
  }
1758
1977
  },
1759
- 'paramsType': {
1760
- 'InstanceId': 'Filter'
1978
+ paramsType: {
1979
+ SnapshotId: "Filter",
1980
+ DestinationRegion: "Filter",
1981
+ DestinationSnapshotName: "String",
1982
+ DestinationSnapshotDesc: "String"
1761
1983
  }
1762
1984
  },
1763
- 'PreMigrateInstance': {
1764
- 'url': '/',
1765
- 'method': 'GET',
1766
- 'config': {
1767
- 'query': {
1768
- 'Version': '2016-03-04',
1769
- 'Action': 'PreMigrateInstance'
1985
+ PreMigrateInstance: {
1986
+ url: "/",
1987
+ method: "GET",
1988
+ config: {
1989
+ query: {
1990
+ Version: "2016-03-04",
1991
+ Action: "PreMigrateInstance"
1770
1992
  },
1771
- 'headers': {
1772
- 'Content-Type': 'application/x-www-form-urlencoded'
1993
+ headers: {
1994
+ "Content-Type": "application/x-www-form-urlencoded"
1773
1995
  }
1774
1996
  },
1775
- 'paramsType': {
1776
- 'InstanceId': 'String',
1777
- 'InstanceType': 'String',
1778
- 'SystemDiskType': 'String',
1779
- 'DataDiskType': 'String'
1997
+ paramsType: {
1998
+ InstanceId: "String",
1999
+ InstanceType: "String",
2000
+ SystemDiskType: "String",
2001
+ DataDiskType: "String",
2002
+ InstantAccess: "Boolean"
1780
2003
  }
1781
2004
  },
1782
- 'CancelPreMigrateInstance': {
1783
- 'url': '/',
1784
- 'method': 'GET',
1785
- 'config': {
1786
- 'query': {
1787
- 'Version': '2016-03-04',
1788
- 'Action': 'CancelPreMigrateInstance'
2005
+ CancelPreMigrateInstance: {
2006
+ url: "/",
2007
+ method: "GET",
2008
+ config: {
2009
+ query: {
2010
+ Version: "2016-03-04",
2011
+ Action: "CancelPreMigrateInstance"
1789
2012
  },
1790
- 'headers': {
1791
- 'Content-Type': 'application/x-www-form-urlencoded'
2013
+ headers: {
2014
+ "Content-Type": "application/x-www-form-urlencoded"
1792
2015
  }
1793
2016
  },
1794
- 'paramsType': {
1795
- 'InstanceId': 'String'
2017
+ paramsType: {
2018
+ InstanceId: "String"
1796
2019
  }
1797
2020
  },
1798
- 'DescribeInstanceKmr': {
1799
- 'url': '/',
1800
- 'method': 'GET',
1801
- 'config': {
1802
- 'query': {
1803
- 'Version': '2016-03-04',
1804
- 'Action': 'DescribeInstanceKmr'
2021
+ SwitchImageType: {
2022
+ url: "/",
2023
+ method: "GET",
2024
+ config: {
2025
+ query: {
2026
+ Version: "2016-03-04",
2027
+ Action: "SwitchImageType"
1805
2028
  },
1806
- 'headers': {
1807
- 'Content-Type': 'application/json'
2029
+ headers: {
2030
+ "Content-Type": "application/x-www-form-urlencoded"
1808
2031
  }
1809
2032
  },
1810
- 'paramsType': {}
2033
+ paramsType: {
2034
+ ImageId: "Filter"
2035
+ }
1811
2036
  },
1812
- 'DescribeMinFlavorCount': {
1813
- 'url': '/',
1814
- 'method': 'GET',
1815
- 'config': {
1816
- 'query': {
1817
- 'Version': '2016-03-04',
1818
- 'Action': 'DescribeMinFlavorCount'
2037
+ SetInstanceResourceProtect: {
2038
+ url: "/",
2039
+ method: "GET",
2040
+ config: {
2041
+ query: {
2042
+ Version: "2016-03-04",
2043
+ Action: "SetInstanceResourceProtect"
1819
2044
  },
1820
- 'headers': {
1821
- 'Content-Type': 'application/json'
2045
+ headers: {
2046
+ "Content-Type": "application/x-www-form-urlencoded"
1822
2047
  }
1823
2048
  },
1824
- 'paramsType': {}
2049
+ paramsType: {
2050
+ InstanceId: "Filter",
2051
+ IsProtection: "Boolean"
2052
+ }
1825
2053
  },
1826
- 'DescribeProjectMaxNum': {
1827
- 'url': '/',
1828
- 'method': 'GET',
1829
- 'config': {
1830
- 'query': {
1831
- 'Version': '2016-03-04',
1832
- 'Action': 'DescribeProjectMaxNum'
2054
+ DescribeInstanceVncUrl: {
2055
+ url: "/",
2056
+ method: "GET",
2057
+ config: {
2058
+ query: {
2059
+ Version: "2016-03-04",
2060
+ Action: "DescribeInstanceVncUrl"
1833
2061
  },
1834
- 'headers': {
1835
- 'Content-Type': 'application/x-www-form-urlencoded'
2062
+ headers: {
2063
+ "Content-Type": "application/x-www-form-urlencoded"
1836
2064
  }
1837
2065
  },
1838
- 'paramsType': {}
2066
+ paramsType: {
2067
+ InstanceId: "String"
2068
+ }
1839
2069
  }
1840
2070
  });
1841
2071
  }
1842
-
1843
2072
  };