@aws-sdk/client-cloudcontrol 3.183.0 → 3.185.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/dist-cjs/protocols/Aws_json1_0.js +2 -2
- package/dist-es/CloudControl.js +41 -34
- package/dist-es/CloudControlClient.js +28 -22
- package/dist-es/commands/CancelResourceRequestCommand.js +28 -21
- package/dist-es/commands/CreateResourceCommand.js +28 -21
- package/dist-es/commands/DeleteResourceCommand.js +28 -21
- package/dist-es/commands/GetResourceCommand.js +28 -21
- package/dist-es/commands/GetResourceRequestStatusCommand.js +28 -21
- package/dist-es/commands/ListResourceRequestsCommand.js +28 -21
- package/dist-es/commands/ListResourcesCommand.js +28 -21
- package/dist-es/commands/UpdateResourceCommand.js +28 -21
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/CloudControlServiceException.js +10 -5
- package/dist-es/models/models_0.js +279 -327
- package/dist-es/pagination/ListResourceRequestsPaginator.js +68 -25
- package/dist-es/pagination/ListResourcesPaginator.js +68 -25
- package/dist-es/protocols/Aws_json1_0.js +1136 -908
- package/dist-es/runtimeConfig.browser.js +12 -26
- package/dist-es/runtimeConfig.js +12 -30
- package/dist-es/runtimeConfig.native.js +5 -8
- package/dist-es/runtimeConfig.shared.js +11 -8
- package/dist-es/waiters/waitForResourceRequestSuccess.js +65 -45
- package/package.json +5 -5
|
@@ -1,18 +1,19 @@
|
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
1
2
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { CloudControlServiceException as __BaseException } from "./CloudControlServiceException";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
Object.setPrototypeOf(this, AlreadyExistsException.prototype);
|
|
13
|
-
this.Message = opts.Message;
|
|
4
|
+
var AlreadyExistsException = (function (_super) {
|
|
5
|
+
__extends(AlreadyExistsException, _super);
|
|
6
|
+
function AlreadyExistsException(opts) {
|
|
7
|
+
var _this = _super.call(this, __assign({ name: "AlreadyExistsException", $fault: "client" }, opts)) || this;
|
|
8
|
+
_this.name = "AlreadyExistsException";
|
|
9
|
+
_this.$fault = "client";
|
|
10
|
+
Object.setPrototypeOf(_this, AlreadyExistsException.prototype);
|
|
11
|
+
_this.Message = opts.Message;
|
|
12
|
+
return _this;
|
|
14
13
|
}
|
|
15
|
-
|
|
14
|
+
return AlreadyExistsException;
|
|
15
|
+
}(__BaseException));
|
|
16
|
+
export { AlreadyExistsException };
|
|
16
17
|
export var HandlerErrorCode;
|
|
17
18
|
(function (HandlerErrorCode) {
|
|
18
19
|
HandlerErrorCode["ACCESS_DENIED"] = "AccessDenied";
|
|
@@ -46,339 +47,290 @@ export var OperationStatus;
|
|
|
46
47
|
OperationStatus["PENDING"] = "PENDING";
|
|
47
48
|
OperationStatus["SUCCESS"] = "SUCCESS";
|
|
48
49
|
})(OperationStatus || (OperationStatus = {}));
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
|
|
59
|
-
this.Message = opts.Message;
|
|
50
|
+
var ConcurrentModificationException = (function (_super) {
|
|
51
|
+
__extends(ConcurrentModificationException, _super);
|
|
52
|
+
function ConcurrentModificationException(opts) {
|
|
53
|
+
var _this = _super.call(this, __assign({ name: "ConcurrentModificationException", $fault: "server" }, opts)) || this;
|
|
54
|
+
_this.name = "ConcurrentModificationException";
|
|
55
|
+
_this.$fault = "server";
|
|
56
|
+
Object.setPrototypeOf(_this, ConcurrentModificationException.prototype);
|
|
57
|
+
_this.Message = opts.Message;
|
|
58
|
+
return _this;
|
|
60
59
|
}
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
60
|
+
return ConcurrentModificationException;
|
|
61
|
+
}(__BaseException));
|
|
62
|
+
export { ConcurrentModificationException };
|
|
63
|
+
var RequestTokenNotFoundException = (function (_super) {
|
|
64
|
+
__extends(RequestTokenNotFoundException, _super);
|
|
65
|
+
function RequestTokenNotFoundException(opts) {
|
|
66
|
+
var _this = _super.call(this, __assign({ name: "RequestTokenNotFoundException", $fault: "client" }, opts)) || this;
|
|
67
|
+
_this.name = "RequestTokenNotFoundException";
|
|
68
|
+
_this.$fault = "client";
|
|
69
|
+
Object.setPrototypeOf(_this, RequestTokenNotFoundException.prototype);
|
|
70
|
+
_this.Message = opts.Message;
|
|
71
|
+
return _this;
|
|
73
72
|
}
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
73
|
+
return RequestTokenNotFoundException;
|
|
74
|
+
}(__BaseException));
|
|
75
|
+
export { RequestTokenNotFoundException };
|
|
76
|
+
var ClientTokenConflictException = (function (_super) {
|
|
77
|
+
__extends(ClientTokenConflictException, _super);
|
|
78
|
+
function ClientTokenConflictException(opts) {
|
|
79
|
+
var _this = _super.call(this, __assign({ name: "ClientTokenConflictException", $fault: "client" }, opts)) || this;
|
|
80
|
+
_this.name = "ClientTokenConflictException";
|
|
81
|
+
_this.$fault = "client";
|
|
82
|
+
Object.setPrototypeOf(_this, ClientTokenConflictException.prototype);
|
|
83
|
+
_this.Message = opts.Message;
|
|
84
|
+
return _this;
|
|
86
85
|
}
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
86
|
+
return ClientTokenConflictException;
|
|
87
|
+
}(__BaseException));
|
|
88
|
+
export { ClientTokenConflictException };
|
|
89
|
+
var ConcurrentOperationException = (function (_super) {
|
|
90
|
+
__extends(ConcurrentOperationException, _super);
|
|
91
|
+
function ConcurrentOperationException(opts) {
|
|
92
|
+
var _this = _super.call(this, __assign({ name: "ConcurrentOperationException", $fault: "client" }, opts)) || this;
|
|
93
|
+
_this.name = "ConcurrentOperationException";
|
|
94
|
+
_this.$fault = "client";
|
|
95
|
+
Object.setPrototypeOf(_this, ConcurrentOperationException.prototype);
|
|
96
|
+
_this.Message = opts.Message;
|
|
97
|
+
return _this;
|
|
99
98
|
}
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
99
|
+
return ConcurrentOperationException;
|
|
100
|
+
}(__BaseException));
|
|
101
|
+
export { ConcurrentOperationException };
|
|
102
|
+
var GeneralServiceException = (function (_super) {
|
|
103
|
+
__extends(GeneralServiceException, _super);
|
|
104
|
+
function GeneralServiceException(opts) {
|
|
105
|
+
var _this = _super.call(this, __assign({ name: "GeneralServiceException", $fault: "client" }, opts)) || this;
|
|
106
|
+
_this.name = "GeneralServiceException";
|
|
107
|
+
_this.$fault = "client";
|
|
108
|
+
Object.setPrototypeOf(_this, GeneralServiceException.prototype);
|
|
109
|
+
_this.Message = opts.Message;
|
|
110
|
+
return _this;
|
|
112
111
|
}
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
112
|
+
return GeneralServiceException;
|
|
113
|
+
}(__BaseException));
|
|
114
|
+
export { GeneralServiceException };
|
|
115
|
+
var HandlerFailureException = (function (_super) {
|
|
116
|
+
__extends(HandlerFailureException, _super);
|
|
117
|
+
function HandlerFailureException(opts) {
|
|
118
|
+
var _this = _super.call(this, __assign({ name: "HandlerFailureException", $fault: "server" }, opts)) || this;
|
|
119
|
+
_this.name = "HandlerFailureException";
|
|
120
|
+
_this.$fault = "server";
|
|
121
|
+
Object.setPrototypeOf(_this, HandlerFailureException.prototype);
|
|
122
|
+
_this.Message = opts.Message;
|
|
123
|
+
return _this;
|
|
125
124
|
}
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
125
|
+
return HandlerFailureException;
|
|
126
|
+
}(__BaseException));
|
|
127
|
+
export { HandlerFailureException };
|
|
128
|
+
var HandlerInternalFailureException = (function (_super) {
|
|
129
|
+
__extends(HandlerInternalFailureException, _super);
|
|
130
|
+
function HandlerInternalFailureException(opts) {
|
|
131
|
+
var _this = _super.call(this, __assign({ name: "HandlerInternalFailureException", $fault: "server" }, opts)) || this;
|
|
132
|
+
_this.name = "HandlerInternalFailureException";
|
|
133
|
+
_this.$fault = "server";
|
|
134
|
+
Object.setPrototypeOf(_this, HandlerInternalFailureException.prototype);
|
|
135
|
+
_this.Message = opts.Message;
|
|
136
|
+
return _this;
|
|
138
137
|
}
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
138
|
+
return HandlerInternalFailureException;
|
|
139
|
+
}(__BaseException));
|
|
140
|
+
export { HandlerInternalFailureException };
|
|
141
|
+
var InvalidCredentialsException = (function (_super) {
|
|
142
|
+
__extends(InvalidCredentialsException, _super);
|
|
143
|
+
function InvalidCredentialsException(opts) {
|
|
144
|
+
var _this = _super.call(this, __assign({ name: "InvalidCredentialsException", $fault: "client" }, opts)) || this;
|
|
145
|
+
_this.name = "InvalidCredentialsException";
|
|
146
|
+
_this.$fault = "client";
|
|
147
|
+
Object.setPrototypeOf(_this, InvalidCredentialsException.prototype);
|
|
148
|
+
_this.Message = opts.Message;
|
|
149
|
+
return _this;
|
|
151
150
|
}
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
151
|
+
return InvalidCredentialsException;
|
|
152
|
+
}(__BaseException));
|
|
153
|
+
export { InvalidCredentialsException };
|
|
154
|
+
var InvalidRequestException = (function (_super) {
|
|
155
|
+
__extends(InvalidRequestException, _super);
|
|
156
|
+
function InvalidRequestException(opts) {
|
|
157
|
+
var _this = _super.call(this, __assign({ name: "InvalidRequestException", $fault: "client" }, opts)) || this;
|
|
158
|
+
_this.name = "InvalidRequestException";
|
|
159
|
+
_this.$fault = "client";
|
|
160
|
+
Object.setPrototypeOf(_this, InvalidRequestException.prototype);
|
|
161
|
+
_this.Message = opts.Message;
|
|
162
|
+
return _this;
|
|
164
163
|
}
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
164
|
+
return InvalidRequestException;
|
|
165
|
+
}(__BaseException));
|
|
166
|
+
export { InvalidRequestException };
|
|
167
|
+
var NetworkFailureException = (function (_super) {
|
|
168
|
+
__extends(NetworkFailureException, _super);
|
|
169
|
+
function NetworkFailureException(opts) {
|
|
170
|
+
var _this = _super.call(this, __assign({ name: "NetworkFailureException", $fault: "server" }, opts)) || this;
|
|
171
|
+
_this.name = "NetworkFailureException";
|
|
172
|
+
_this.$fault = "server";
|
|
173
|
+
Object.setPrototypeOf(_this, NetworkFailureException.prototype);
|
|
174
|
+
_this.Message = opts.Message;
|
|
175
|
+
return _this;
|
|
177
176
|
}
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
177
|
+
return NetworkFailureException;
|
|
178
|
+
}(__BaseException));
|
|
179
|
+
export { NetworkFailureException };
|
|
180
|
+
var NotStabilizedException = (function (_super) {
|
|
181
|
+
__extends(NotStabilizedException, _super);
|
|
182
|
+
function NotStabilizedException(opts) {
|
|
183
|
+
var _this = _super.call(this, __assign({ name: "NotStabilizedException", $fault: "client" }, opts)) || this;
|
|
184
|
+
_this.name = "NotStabilizedException";
|
|
185
|
+
_this.$fault = "client";
|
|
186
|
+
Object.setPrototypeOf(_this, NotStabilizedException.prototype);
|
|
187
|
+
_this.Message = opts.Message;
|
|
188
|
+
return _this;
|
|
190
189
|
}
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
190
|
+
return NotStabilizedException;
|
|
191
|
+
}(__BaseException));
|
|
192
|
+
export { NotStabilizedException };
|
|
193
|
+
var NotUpdatableException = (function (_super) {
|
|
194
|
+
__extends(NotUpdatableException, _super);
|
|
195
|
+
function NotUpdatableException(opts) {
|
|
196
|
+
var _this = _super.call(this, __assign({ name: "NotUpdatableException", $fault: "client" }, opts)) || this;
|
|
197
|
+
_this.name = "NotUpdatableException";
|
|
198
|
+
_this.$fault = "client";
|
|
199
|
+
Object.setPrototypeOf(_this, NotUpdatableException.prototype);
|
|
200
|
+
_this.Message = opts.Message;
|
|
201
|
+
return _this;
|
|
203
202
|
}
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
203
|
+
return NotUpdatableException;
|
|
204
|
+
}(__BaseException));
|
|
205
|
+
export { NotUpdatableException };
|
|
206
|
+
var PrivateTypeException = (function (_super) {
|
|
207
|
+
__extends(PrivateTypeException, _super);
|
|
208
|
+
function PrivateTypeException(opts) {
|
|
209
|
+
var _this = _super.call(this, __assign({ name: "PrivateTypeException", $fault: "client" }, opts)) || this;
|
|
210
|
+
_this.name = "PrivateTypeException";
|
|
211
|
+
_this.$fault = "client";
|
|
212
|
+
Object.setPrototypeOf(_this, PrivateTypeException.prototype);
|
|
213
|
+
_this.Message = opts.Message;
|
|
214
|
+
return _this;
|
|
216
215
|
}
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
216
|
+
return PrivateTypeException;
|
|
217
|
+
}(__BaseException));
|
|
218
|
+
export { PrivateTypeException };
|
|
219
|
+
var ResourceConflictException = (function (_super) {
|
|
220
|
+
__extends(ResourceConflictException, _super);
|
|
221
|
+
function ResourceConflictException(opts) {
|
|
222
|
+
var _this = _super.call(this, __assign({ name: "ResourceConflictException", $fault: "client" }, opts)) || this;
|
|
223
|
+
_this.name = "ResourceConflictException";
|
|
224
|
+
_this.$fault = "client";
|
|
225
|
+
Object.setPrototypeOf(_this, ResourceConflictException.prototype);
|
|
226
|
+
_this.Message = opts.Message;
|
|
227
|
+
return _this;
|
|
229
228
|
}
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
229
|
+
return ResourceConflictException;
|
|
230
|
+
}(__BaseException));
|
|
231
|
+
export { ResourceConflictException };
|
|
232
|
+
var ResourceNotFoundException = (function (_super) {
|
|
233
|
+
__extends(ResourceNotFoundException, _super);
|
|
234
|
+
function ResourceNotFoundException(opts) {
|
|
235
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
236
|
+
_this.name = "ResourceNotFoundException";
|
|
237
|
+
_this.$fault = "client";
|
|
238
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
239
|
+
_this.Message = opts.Message;
|
|
240
|
+
return _this;
|
|
242
241
|
}
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
242
|
+
return ResourceNotFoundException;
|
|
243
|
+
}(__BaseException));
|
|
244
|
+
export { ResourceNotFoundException };
|
|
245
|
+
var ServiceInternalErrorException = (function (_super) {
|
|
246
|
+
__extends(ServiceInternalErrorException, _super);
|
|
247
|
+
function ServiceInternalErrorException(opts) {
|
|
248
|
+
var _this = _super.call(this, __assign({ name: "ServiceInternalErrorException", $fault: "server" }, opts)) || this;
|
|
249
|
+
_this.name = "ServiceInternalErrorException";
|
|
250
|
+
_this.$fault = "server";
|
|
251
|
+
Object.setPrototypeOf(_this, ServiceInternalErrorException.prototype);
|
|
252
|
+
_this.Message = opts.Message;
|
|
253
|
+
return _this;
|
|
255
254
|
}
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
255
|
+
return ServiceInternalErrorException;
|
|
256
|
+
}(__BaseException));
|
|
257
|
+
export { ServiceInternalErrorException };
|
|
258
|
+
var ServiceLimitExceededException = (function (_super) {
|
|
259
|
+
__extends(ServiceLimitExceededException, _super);
|
|
260
|
+
function ServiceLimitExceededException(opts) {
|
|
261
|
+
var _this = _super.call(this, __assign({ name: "ServiceLimitExceededException", $fault: "client" }, opts)) || this;
|
|
262
|
+
_this.name = "ServiceLimitExceededException";
|
|
263
|
+
_this.$fault = "client";
|
|
264
|
+
Object.setPrototypeOf(_this, ServiceLimitExceededException.prototype);
|
|
265
|
+
_this.Message = opts.Message;
|
|
266
|
+
return _this;
|
|
268
267
|
}
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
268
|
+
return ServiceLimitExceededException;
|
|
269
|
+
}(__BaseException));
|
|
270
|
+
export { ServiceLimitExceededException };
|
|
271
|
+
var ThrottlingException = (function (_super) {
|
|
272
|
+
__extends(ThrottlingException, _super);
|
|
273
|
+
function ThrottlingException(opts) {
|
|
274
|
+
var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
|
|
275
|
+
_this.name = "ThrottlingException";
|
|
276
|
+
_this.$fault = "client";
|
|
277
|
+
Object.setPrototypeOf(_this, ThrottlingException.prototype);
|
|
278
|
+
_this.Message = opts.Message;
|
|
279
|
+
return _this;
|
|
281
280
|
}
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
281
|
+
return ThrottlingException;
|
|
282
|
+
}(__BaseException));
|
|
283
|
+
export { ThrottlingException };
|
|
284
|
+
var TypeNotFoundException = (function (_super) {
|
|
285
|
+
__extends(TypeNotFoundException, _super);
|
|
286
|
+
function TypeNotFoundException(opts) {
|
|
287
|
+
var _this = _super.call(this, __assign({ name: "TypeNotFoundException", $fault: "client" }, opts)) || this;
|
|
288
|
+
_this.name = "TypeNotFoundException";
|
|
289
|
+
_this.$fault = "client";
|
|
290
|
+
Object.setPrototypeOf(_this, TypeNotFoundException.prototype);
|
|
291
|
+
_this.Message = opts.Message;
|
|
292
|
+
return _this;
|
|
294
293
|
}
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
294
|
+
return TypeNotFoundException;
|
|
295
|
+
}(__BaseException));
|
|
296
|
+
export { TypeNotFoundException };
|
|
297
|
+
var UnsupportedActionException = (function (_super) {
|
|
298
|
+
__extends(UnsupportedActionException, _super);
|
|
299
|
+
function UnsupportedActionException(opts) {
|
|
300
|
+
var _this = _super.call(this, __assign({ name: "UnsupportedActionException", $fault: "client" }, opts)) || this;
|
|
301
|
+
_this.name = "UnsupportedActionException";
|
|
302
|
+
_this.$fault = "client";
|
|
303
|
+
Object.setPrototypeOf(_this, UnsupportedActionException.prototype);
|
|
304
|
+
_this.Message = opts.Message;
|
|
305
|
+
return _this;
|
|
307
306
|
}
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
});
|
|
312
|
-
export
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
});
|
|
316
|
-
export
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
});
|
|
320
|
-
export
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
});
|
|
324
|
-
export
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
})
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
});
|
|
331
|
-
export const DeleteResourceOutputFilterSensitiveLog = (obj) => ({
|
|
332
|
-
...obj,
|
|
333
|
-
...(obj.ProgressEvent && { ProgressEvent: ProgressEventFilterSensitiveLog(obj.ProgressEvent) }),
|
|
334
|
-
});
|
|
335
|
-
export const GetResourceInputFilterSensitiveLog = (obj) => ({
|
|
336
|
-
...obj,
|
|
337
|
-
});
|
|
338
|
-
export const ResourceDescriptionFilterSensitiveLog = (obj) => ({
|
|
339
|
-
...obj,
|
|
340
|
-
...(obj.Properties && { Properties: SENSITIVE_STRING }),
|
|
341
|
-
});
|
|
342
|
-
export const GetResourceOutputFilterSensitiveLog = (obj) => ({
|
|
343
|
-
...obj,
|
|
344
|
-
...(obj.ResourceDescription && {
|
|
345
|
-
ResourceDescription: ResourceDescriptionFilterSensitiveLog(obj.ResourceDescription),
|
|
307
|
+
return UnsupportedActionException;
|
|
308
|
+
}(__BaseException));
|
|
309
|
+
export { UnsupportedActionException };
|
|
310
|
+
export var CancelResourceRequestInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
311
|
+
export var ProgressEventFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.ResourceModel && { ResourceModel: SENSITIVE_STRING }))); };
|
|
312
|
+
export var CancelResourceRequestOutputFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.ProgressEvent && { ProgressEvent: ProgressEventFilterSensitiveLog(obj.ProgressEvent) }))); };
|
|
313
|
+
export var CreateResourceInputFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.DesiredState && { DesiredState: SENSITIVE_STRING }))); };
|
|
314
|
+
export var CreateResourceOutputFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.ProgressEvent && { ProgressEvent: ProgressEventFilterSensitiveLog(obj.ProgressEvent) }))); };
|
|
315
|
+
export var DeleteResourceInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
316
|
+
export var DeleteResourceOutputFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.ProgressEvent && { ProgressEvent: ProgressEventFilterSensitiveLog(obj.ProgressEvent) }))); };
|
|
317
|
+
export var GetResourceInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
318
|
+
export var ResourceDescriptionFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Properties && { Properties: SENSITIVE_STRING }))); };
|
|
319
|
+
export var GetResourceOutputFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.ResourceDescription && {
|
|
320
|
+
ResourceDescription: ResourceDescriptionFilterSensitiveLog(obj.ResourceDescription),
|
|
321
|
+
}))); };
|
|
322
|
+
export var GetResourceRequestStatusInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
323
|
+
export var GetResourceRequestStatusOutputFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.ProgressEvent && { ProgressEvent: ProgressEventFilterSensitiveLog(obj.ProgressEvent) }))); };
|
|
324
|
+
export var ResourceRequestStatusFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
325
|
+
export var ListResourceRequestsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
326
|
+
export var ListResourceRequestsOutputFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.ResourceRequestStatusSummaries && {
|
|
327
|
+
ResourceRequestStatusSummaries: obj.ResourceRequestStatusSummaries.map(function (item) {
|
|
328
|
+
return ProgressEventFilterSensitiveLog(item);
|
|
346
329
|
}),
|
|
347
|
-
});
|
|
348
|
-
export
|
|
349
|
-
|
|
350
|
-
})
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
});
|
|
355
|
-
export const ResourceRequestStatusFilterFilterSensitiveLog = (obj) => ({
|
|
356
|
-
...obj,
|
|
357
|
-
});
|
|
358
|
-
export const ListResourceRequestsInputFilterSensitiveLog = (obj) => ({
|
|
359
|
-
...obj,
|
|
360
|
-
});
|
|
361
|
-
export const ListResourceRequestsOutputFilterSensitiveLog = (obj) => ({
|
|
362
|
-
...obj,
|
|
363
|
-
...(obj.ResourceRequestStatusSummaries && {
|
|
364
|
-
ResourceRequestStatusSummaries: obj.ResourceRequestStatusSummaries.map((item) => ProgressEventFilterSensitiveLog(item)),
|
|
365
|
-
}),
|
|
366
|
-
});
|
|
367
|
-
export const ListResourcesInputFilterSensitiveLog = (obj) => ({
|
|
368
|
-
...obj,
|
|
369
|
-
...(obj.ResourceModel && { ResourceModel: SENSITIVE_STRING }),
|
|
370
|
-
});
|
|
371
|
-
export const ListResourcesOutputFilterSensitiveLog = (obj) => ({
|
|
372
|
-
...obj,
|
|
373
|
-
...(obj.ResourceDescriptions && {
|
|
374
|
-
ResourceDescriptions: obj.ResourceDescriptions.map((item) => ResourceDescriptionFilterSensitiveLog(item)),
|
|
375
|
-
}),
|
|
376
|
-
});
|
|
377
|
-
export const UpdateResourceInputFilterSensitiveLog = (obj) => ({
|
|
378
|
-
...obj,
|
|
379
|
-
...(obj.PatchDocument && { PatchDocument: SENSITIVE_STRING }),
|
|
380
|
-
});
|
|
381
|
-
export const UpdateResourceOutputFilterSensitiveLog = (obj) => ({
|
|
382
|
-
...obj,
|
|
383
|
-
...(obj.ProgressEvent && { ProgressEvent: ProgressEventFilterSensitiveLog(obj.ProgressEvent) }),
|
|
384
|
-
});
|
|
330
|
+
}))); };
|
|
331
|
+
export var ListResourcesInputFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.ResourceModel && { ResourceModel: SENSITIVE_STRING }))); };
|
|
332
|
+
export var ListResourcesOutputFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.ResourceDescriptions && {
|
|
333
|
+
ResourceDescriptions: obj.ResourceDescriptions.map(function (item) { return ResourceDescriptionFilterSensitiveLog(item); }),
|
|
334
|
+
}))); };
|
|
335
|
+
export var UpdateResourceInputFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.PatchDocument && { PatchDocument: SENSITIVE_STRING }))); };
|
|
336
|
+
export var UpdateResourceOutputFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.ProgressEvent && { ProgressEvent: ProgressEventFilterSensitiveLog(obj.ProgressEvent) }))); };
|