@aws-sdk/client-service-quotas 3.186.0 → 3.188.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 +8 -0
- package/dist-es/ServiceQuotas.js +78 -85
- package/dist-es/ServiceQuotasClient.js +22 -28
- package/dist-es/commands/AssociateServiceQuotaTemplateCommand.js +21 -28
- package/dist-es/commands/DeleteServiceQuotaIncreaseRequestFromTemplateCommand.js +21 -28
- package/dist-es/commands/DisassociateServiceQuotaTemplateCommand.js +21 -28
- package/dist-es/commands/GetAWSDefaultServiceQuotaCommand.js +21 -28
- package/dist-es/commands/GetAssociationForServiceQuotaTemplateCommand.js +21 -28
- package/dist-es/commands/GetRequestedServiceQuotaChangeCommand.js +21 -28
- package/dist-es/commands/GetServiceQuotaCommand.js +21 -28
- package/dist-es/commands/GetServiceQuotaIncreaseRequestFromTemplateCommand.js +21 -28
- package/dist-es/commands/ListAWSDefaultServiceQuotasCommand.js +21 -28
- package/dist-es/commands/ListRequestedServiceQuotaChangeHistoryByQuotaCommand.js +21 -28
- package/dist-es/commands/ListRequestedServiceQuotaChangeHistoryCommand.js +21 -28
- package/dist-es/commands/ListServiceQuotaIncreaseRequestsInTemplateCommand.js +21 -28
- package/dist-es/commands/ListServiceQuotasCommand.js +21 -28
- package/dist-es/commands/ListServicesCommand.js +21 -28
- package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
- package/dist-es/commands/PutServiceQuotaIncreaseRequestIntoTemplateCommand.js +21 -28
- package/dist-es/commands/RequestServiceQuotaIncreaseCommand.js +21 -28
- package/dist-es/commands/TagResourceCommand.js +21 -28
- package/dist-es/commands/UntagResourceCommand.js +21 -28
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/ServiceQuotasServiceException.js +5 -10
- package/dist-es/models/models_0.js +342 -251
- package/dist-es/pagination/ListAWSDefaultServiceQuotasPaginator.js +25 -68
- package/dist-es/pagination/ListRequestedServiceQuotaChangeHistoryByQuotaPaginator.js +25 -68
- package/dist-es/pagination/ListRequestedServiceQuotaChangeHistoryPaginator.js +25 -68
- package/dist-es/pagination/ListServiceQuotaIncreaseRequestsInTemplatePaginator.js +25 -68
- package/dist-es/pagination/ListServiceQuotasPaginator.js +25 -68
- package/dist-es/pagination/ListServicesPaginator.js +25 -68
- package/dist-es/protocols/Aws_json1_1.js +1501 -1952
- package/dist-es/runtimeConfig.browser.js +26 -12
- package/dist-es/runtimeConfig.js +30 -12
- package/dist-es/runtimeConfig.native.js +8 -5
- package/dist-es/runtimeConfig.shared.js +8 -11
- package/package.json +33 -33
|
@@ -1,148 +1,147 @@
|
|
|
1
|
-
import { __assign, __extends } from "tslib";
|
|
2
1
|
import { ServiceQuotasServiceException as __BaseException } from "./ServiceQuotasServiceException";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
2
|
+
export class AccessDeniedException extends __BaseException {
|
|
3
|
+
constructor(opts) {
|
|
4
|
+
super({
|
|
5
|
+
name: "AccessDeniedException",
|
|
6
|
+
$fault: "client",
|
|
7
|
+
...opts,
|
|
8
|
+
});
|
|
9
|
+
this.name = "AccessDeniedException";
|
|
10
|
+
this.$fault = "client";
|
|
11
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
12
|
+
this.Message = opts.Message;
|
|
12
13
|
}
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
14
|
+
}
|
|
15
|
+
export class AWSServiceAccessNotEnabledException extends __BaseException {
|
|
16
|
+
constructor(opts) {
|
|
17
|
+
super({
|
|
18
|
+
name: "AWSServiceAccessNotEnabledException",
|
|
19
|
+
$fault: "client",
|
|
20
|
+
...opts,
|
|
21
|
+
});
|
|
22
|
+
this.name = "AWSServiceAccessNotEnabledException";
|
|
23
|
+
this.$fault = "client";
|
|
24
|
+
Object.setPrototypeOf(this, AWSServiceAccessNotEnabledException.prototype);
|
|
25
|
+
this.Message = opts.Message;
|
|
25
26
|
}
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
27
|
+
}
|
|
28
|
+
export class DependencyAccessDeniedException extends __BaseException {
|
|
29
|
+
constructor(opts) {
|
|
30
|
+
super({
|
|
31
|
+
name: "DependencyAccessDeniedException",
|
|
32
|
+
$fault: "client",
|
|
33
|
+
...opts,
|
|
34
|
+
});
|
|
35
|
+
this.name = "DependencyAccessDeniedException";
|
|
36
|
+
this.$fault = "client";
|
|
37
|
+
Object.setPrototypeOf(this, DependencyAccessDeniedException.prototype);
|
|
38
|
+
this.Message = opts.Message;
|
|
38
39
|
}
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
40
|
+
}
|
|
41
|
+
export class NoAvailableOrganizationException extends __BaseException {
|
|
42
|
+
constructor(opts) {
|
|
43
|
+
super({
|
|
44
|
+
name: "NoAvailableOrganizationException",
|
|
45
|
+
$fault: "client",
|
|
46
|
+
...opts,
|
|
47
|
+
});
|
|
48
|
+
this.name = "NoAvailableOrganizationException";
|
|
49
|
+
this.$fault = "client";
|
|
50
|
+
Object.setPrototypeOf(this, NoAvailableOrganizationException.prototype);
|
|
51
|
+
this.Message = opts.Message;
|
|
51
52
|
}
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
53
|
+
}
|
|
54
|
+
export class OrganizationNotInAllFeaturesModeException extends __BaseException {
|
|
55
|
+
constructor(opts) {
|
|
56
|
+
super({
|
|
57
|
+
name: "OrganizationNotInAllFeaturesModeException",
|
|
58
|
+
$fault: "client",
|
|
59
|
+
...opts,
|
|
60
|
+
});
|
|
61
|
+
this.name = "OrganizationNotInAllFeaturesModeException";
|
|
62
|
+
this.$fault = "client";
|
|
63
|
+
Object.setPrototypeOf(this, OrganizationNotInAllFeaturesModeException.prototype);
|
|
64
|
+
this.Message = opts.Message;
|
|
64
65
|
}
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
66
|
+
}
|
|
67
|
+
export class ServiceException extends __BaseException {
|
|
68
|
+
constructor(opts) {
|
|
69
|
+
super({
|
|
70
|
+
name: "ServiceException",
|
|
71
|
+
$fault: "server",
|
|
72
|
+
...opts,
|
|
73
|
+
});
|
|
74
|
+
this.name = "ServiceException";
|
|
75
|
+
this.$fault = "server";
|
|
76
|
+
Object.setPrototypeOf(this, ServiceException.prototype);
|
|
77
|
+
this.Message = opts.Message;
|
|
77
78
|
}
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
79
|
+
}
|
|
80
|
+
export class TemplatesNotAvailableInRegionException extends __BaseException {
|
|
81
|
+
constructor(opts) {
|
|
82
|
+
super({
|
|
83
|
+
name: "TemplatesNotAvailableInRegionException",
|
|
84
|
+
$fault: "client",
|
|
85
|
+
...opts,
|
|
86
|
+
});
|
|
87
|
+
this.name = "TemplatesNotAvailableInRegionException";
|
|
88
|
+
this.$fault = "client";
|
|
89
|
+
Object.setPrototypeOf(this, TemplatesNotAvailableInRegionException.prototype);
|
|
90
|
+
this.Message = opts.Message;
|
|
90
91
|
}
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
92
|
+
}
|
|
93
|
+
export class TooManyRequestsException extends __BaseException {
|
|
94
|
+
constructor(opts) {
|
|
95
|
+
super({
|
|
96
|
+
name: "TooManyRequestsException",
|
|
97
|
+
$fault: "client",
|
|
98
|
+
...opts,
|
|
99
|
+
});
|
|
100
|
+
this.name = "TooManyRequestsException";
|
|
101
|
+
this.$fault = "client";
|
|
102
|
+
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
103
|
+
this.Message = opts.Message;
|
|
103
104
|
}
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
105
|
+
}
|
|
106
|
+
export class IllegalArgumentException extends __BaseException {
|
|
107
|
+
constructor(opts) {
|
|
108
|
+
super({
|
|
109
|
+
name: "IllegalArgumentException",
|
|
110
|
+
$fault: "client",
|
|
111
|
+
...opts,
|
|
112
|
+
});
|
|
113
|
+
this.name = "IllegalArgumentException";
|
|
114
|
+
this.$fault = "client";
|
|
115
|
+
Object.setPrototypeOf(this, IllegalArgumentException.prototype);
|
|
116
|
+
this.Message = opts.Message;
|
|
116
117
|
}
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
118
|
+
}
|
|
119
|
+
export class NoSuchResourceException extends __BaseException {
|
|
120
|
+
constructor(opts) {
|
|
121
|
+
super({
|
|
122
|
+
name: "NoSuchResourceException",
|
|
123
|
+
$fault: "client",
|
|
124
|
+
...opts,
|
|
125
|
+
});
|
|
126
|
+
this.name = "NoSuchResourceException";
|
|
127
|
+
this.$fault = "client";
|
|
128
|
+
Object.setPrototypeOf(this, NoSuchResourceException.prototype);
|
|
129
|
+
this.Message = opts.Message;
|
|
129
130
|
}
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
131
|
+
}
|
|
132
|
+
export class ServiceQuotaTemplateNotInUseException extends __BaseException {
|
|
133
|
+
constructor(opts) {
|
|
134
|
+
super({
|
|
135
|
+
name: "ServiceQuotaTemplateNotInUseException",
|
|
136
|
+
$fault: "client",
|
|
137
|
+
...opts,
|
|
138
|
+
});
|
|
139
|
+
this.name = "ServiceQuotaTemplateNotInUseException";
|
|
140
|
+
this.$fault = "client";
|
|
141
|
+
Object.setPrototypeOf(this, ServiceQuotaTemplateNotInUseException.prototype);
|
|
142
|
+
this.Message = opts.Message;
|
|
142
143
|
}
|
|
143
|
-
|
|
144
|
-
}(__BaseException));
|
|
145
|
-
export { ServiceQuotaTemplateNotInUseException };
|
|
144
|
+
}
|
|
146
145
|
export var ErrorCode;
|
|
147
146
|
(function (ErrorCode) {
|
|
148
147
|
ErrorCode["DEPENDENCY_ACCESS_DENIED_ERROR"] = "DEPENDENCY_ACCESS_DENIED_ERROR";
|
|
@@ -173,127 +172,219 @@ export var RequestStatus;
|
|
|
173
172
|
RequestStatus["DENIED"] = "DENIED";
|
|
174
173
|
RequestStatus["PENDING"] = "PENDING";
|
|
175
174
|
})(RequestStatus || (RequestStatus = {}));
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
175
|
+
export class InvalidPaginationTokenException extends __BaseException {
|
|
176
|
+
constructor(opts) {
|
|
177
|
+
super({
|
|
178
|
+
name: "InvalidPaginationTokenException",
|
|
179
|
+
$fault: "client",
|
|
180
|
+
...opts,
|
|
181
|
+
});
|
|
182
|
+
this.name = "InvalidPaginationTokenException";
|
|
183
|
+
this.$fault = "client";
|
|
184
|
+
Object.setPrototypeOf(this, InvalidPaginationTokenException.prototype);
|
|
185
|
+
this.Message = opts.Message;
|
|
185
186
|
}
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
187
|
+
}
|
|
188
|
+
export class InvalidResourceStateException extends __BaseException {
|
|
189
|
+
constructor(opts) {
|
|
190
|
+
super({
|
|
191
|
+
name: "InvalidResourceStateException",
|
|
192
|
+
$fault: "client",
|
|
193
|
+
...opts,
|
|
194
|
+
});
|
|
195
|
+
this.name = "InvalidResourceStateException";
|
|
196
|
+
this.$fault = "client";
|
|
197
|
+
Object.setPrototypeOf(this, InvalidResourceStateException.prototype);
|
|
198
|
+
this.Message = opts.Message;
|
|
198
199
|
}
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
200
|
+
}
|
|
201
|
+
export class QuotaExceededException extends __BaseException {
|
|
202
|
+
constructor(opts) {
|
|
203
|
+
super({
|
|
204
|
+
name: "QuotaExceededException",
|
|
205
|
+
$fault: "client",
|
|
206
|
+
...opts,
|
|
207
|
+
});
|
|
208
|
+
this.name = "QuotaExceededException";
|
|
209
|
+
this.$fault = "client";
|
|
210
|
+
Object.setPrototypeOf(this, QuotaExceededException.prototype);
|
|
211
|
+
this.Message = opts.Message;
|
|
211
212
|
}
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
213
|
+
}
|
|
214
|
+
export class ResourceAlreadyExistsException extends __BaseException {
|
|
215
|
+
constructor(opts) {
|
|
216
|
+
super({
|
|
217
|
+
name: "ResourceAlreadyExistsException",
|
|
218
|
+
$fault: "client",
|
|
219
|
+
...opts,
|
|
220
|
+
});
|
|
221
|
+
this.name = "ResourceAlreadyExistsException";
|
|
222
|
+
this.$fault = "client";
|
|
223
|
+
Object.setPrototypeOf(this, ResourceAlreadyExistsException.prototype);
|
|
224
|
+
this.Message = opts.Message;
|
|
224
225
|
}
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
226
|
+
}
|
|
227
|
+
export class TagPolicyViolationException extends __BaseException {
|
|
228
|
+
constructor(opts) {
|
|
229
|
+
super({
|
|
230
|
+
name: "TagPolicyViolationException",
|
|
231
|
+
$fault: "client",
|
|
232
|
+
...opts,
|
|
233
|
+
});
|
|
234
|
+
this.name = "TagPolicyViolationException";
|
|
235
|
+
this.$fault = "client";
|
|
236
|
+
Object.setPrototypeOf(this, TagPolicyViolationException.prototype);
|
|
237
|
+
this.Message = opts.Message;
|
|
237
238
|
}
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
239
|
+
}
|
|
240
|
+
export class TooManyTagsException extends __BaseException {
|
|
241
|
+
constructor(opts) {
|
|
242
|
+
super({
|
|
243
|
+
name: "TooManyTagsException",
|
|
244
|
+
$fault: "client",
|
|
245
|
+
...opts,
|
|
246
|
+
});
|
|
247
|
+
this.name = "TooManyTagsException";
|
|
248
|
+
this.$fault = "client";
|
|
249
|
+
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
250
|
+
this.Message = opts.Message;
|
|
250
251
|
}
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
export
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
export
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
export
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
export
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
export
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
export
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
export
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
export
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
export
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
export
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
export
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
export
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
export
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
export
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
export
|
|
298
|
-
|
|
299
|
-
|
|
252
|
+
}
|
|
253
|
+
export const AssociateServiceQuotaTemplateRequestFilterSensitiveLog = (obj) => ({
|
|
254
|
+
...obj,
|
|
255
|
+
});
|
|
256
|
+
export const AssociateServiceQuotaTemplateResponseFilterSensitiveLog = (obj) => ({
|
|
257
|
+
...obj,
|
|
258
|
+
});
|
|
259
|
+
export const DeleteServiceQuotaIncreaseRequestFromTemplateRequestFilterSensitiveLog = (obj) => ({
|
|
260
|
+
...obj,
|
|
261
|
+
});
|
|
262
|
+
export const DeleteServiceQuotaIncreaseRequestFromTemplateResponseFilterSensitiveLog = (obj) => ({
|
|
263
|
+
...obj,
|
|
264
|
+
});
|
|
265
|
+
export const DisassociateServiceQuotaTemplateRequestFilterSensitiveLog = (obj) => ({
|
|
266
|
+
...obj,
|
|
267
|
+
});
|
|
268
|
+
export const DisassociateServiceQuotaTemplateResponseFilterSensitiveLog = (obj) => ({
|
|
269
|
+
...obj,
|
|
270
|
+
});
|
|
271
|
+
export const ErrorReasonFilterSensitiveLog = (obj) => ({
|
|
272
|
+
...obj,
|
|
273
|
+
});
|
|
274
|
+
export const GetAssociationForServiceQuotaTemplateRequestFilterSensitiveLog = (obj) => ({
|
|
275
|
+
...obj,
|
|
276
|
+
});
|
|
277
|
+
export const GetAssociationForServiceQuotaTemplateResponseFilterSensitiveLog = (obj) => ({
|
|
278
|
+
...obj,
|
|
279
|
+
});
|
|
280
|
+
export const GetAWSDefaultServiceQuotaRequestFilterSensitiveLog = (obj) => ({
|
|
281
|
+
...obj,
|
|
282
|
+
});
|
|
283
|
+
export const QuotaPeriodFilterSensitiveLog = (obj) => ({
|
|
284
|
+
...obj,
|
|
285
|
+
});
|
|
286
|
+
export const MetricInfoFilterSensitiveLog = (obj) => ({
|
|
287
|
+
...obj,
|
|
288
|
+
});
|
|
289
|
+
export const ServiceQuotaFilterSensitiveLog = (obj) => ({
|
|
290
|
+
...obj,
|
|
291
|
+
});
|
|
292
|
+
export const GetAWSDefaultServiceQuotaResponseFilterSensitiveLog = (obj) => ({
|
|
293
|
+
...obj,
|
|
294
|
+
});
|
|
295
|
+
export const GetRequestedServiceQuotaChangeRequestFilterSensitiveLog = (obj) => ({
|
|
296
|
+
...obj,
|
|
297
|
+
});
|
|
298
|
+
export const RequestedServiceQuotaChangeFilterSensitiveLog = (obj) => ({
|
|
299
|
+
...obj,
|
|
300
|
+
});
|
|
301
|
+
export const GetRequestedServiceQuotaChangeResponseFilterSensitiveLog = (obj) => ({
|
|
302
|
+
...obj,
|
|
303
|
+
});
|
|
304
|
+
export const GetServiceQuotaRequestFilterSensitiveLog = (obj) => ({
|
|
305
|
+
...obj,
|
|
306
|
+
});
|
|
307
|
+
export const GetServiceQuotaResponseFilterSensitiveLog = (obj) => ({
|
|
308
|
+
...obj,
|
|
309
|
+
});
|
|
310
|
+
export const GetServiceQuotaIncreaseRequestFromTemplateRequestFilterSensitiveLog = (obj) => ({
|
|
311
|
+
...obj,
|
|
312
|
+
});
|
|
313
|
+
export const ServiceQuotaIncreaseRequestInTemplateFilterSensitiveLog = (obj) => ({
|
|
314
|
+
...obj,
|
|
315
|
+
});
|
|
316
|
+
export const GetServiceQuotaIncreaseRequestFromTemplateResponseFilterSensitiveLog = (obj) => ({
|
|
317
|
+
...obj,
|
|
318
|
+
});
|
|
319
|
+
export const TagFilterSensitiveLog = (obj) => ({
|
|
320
|
+
...obj,
|
|
321
|
+
});
|
|
322
|
+
export const ListAWSDefaultServiceQuotasRequestFilterSensitiveLog = (obj) => ({
|
|
323
|
+
...obj,
|
|
324
|
+
});
|
|
325
|
+
export const ListAWSDefaultServiceQuotasResponseFilterSensitiveLog = (obj) => ({
|
|
326
|
+
...obj,
|
|
327
|
+
});
|
|
328
|
+
export const ListRequestedServiceQuotaChangeHistoryRequestFilterSensitiveLog = (obj) => ({
|
|
329
|
+
...obj,
|
|
330
|
+
});
|
|
331
|
+
export const ListRequestedServiceQuotaChangeHistoryResponseFilterSensitiveLog = (obj) => ({
|
|
332
|
+
...obj,
|
|
333
|
+
});
|
|
334
|
+
export const ListRequestedServiceQuotaChangeHistoryByQuotaRequestFilterSensitiveLog = (obj) => ({
|
|
335
|
+
...obj,
|
|
336
|
+
});
|
|
337
|
+
export const ListRequestedServiceQuotaChangeHistoryByQuotaResponseFilterSensitiveLog = (obj) => ({
|
|
338
|
+
...obj,
|
|
339
|
+
});
|
|
340
|
+
export const ListServiceQuotaIncreaseRequestsInTemplateRequestFilterSensitiveLog = (obj) => ({
|
|
341
|
+
...obj,
|
|
342
|
+
});
|
|
343
|
+
export const ListServiceQuotaIncreaseRequestsInTemplateResponseFilterSensitiveLog = (obj) => ({
|
|
344
|
+
...obj,
|
|
345
|
+
});
|
|
346
|
+
export const ListServiceQuotasRequestFilterSensitiveLog = (obj) => ({
|
|
347
|
+
...obj,
|
|
348
|
+
});
|
|
349
|
+
export const ListServiceQuotasResponseFilterSensitiveLog = (obj) => ({
|
|
350
|
+
...obj,
|
|
351
|
+
});
|
|
352
|
+
export const ListServicesRequestFilterSensitiveLog = (obj) => ({
|
|
353
|
+
...obj,
|
|
354
|
+
});
|
|
355
|
+
export const ServiceInfoFilterSensitiveLog = (obj) => ({
|
|
356
|
+
...obj,
|
|
357
|
+
});
|
|
358
|
+
export const ListServicesResponseFilterSensitiveLog = (obj) => ({
|
|
359
|
+
...obj,
|
|
360
|
+
});
|
|
361
|
+
export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
|
|
362
|
+
...obj,
|
|
363
|
+
});
|
|
364
|
+
export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
|
|
365
|
+
...obj,
|
|
366
|
+
});
|
|
367
|
+
export const PutServiceQuotaIncreaseRequestIntoTemplateRequestFilterSensitiveLog = (obj) => ({
|
|
368
|
+
...obj,
|
|
369
|
+
});
|
|
370
|
+
export const PutServiceQuotaIncreaseRequestIntoTemplateResponseFilterSensitiveLog = (obj) => ({
|
|
371
|
+
...obj,
|
|
372
|
+
});
|
|
373
|
+
export const RequestServiceQuotaIncreaseRequestFilterSensitiveLog = (obj) => ({
|
|
374
|
+
...obj,
|
|
375
|
+
});
|
|
376
|
+
export const RequestServiceQuotaIncreaseResponseFilterSensitiveLog = (obj) => ({
|
|
377
|
+
...obj,
|
|
378
|
+
});
|
|
379
|
+
export const TagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
380
|
+
...obj,
|
|
381
|
+
});
|
|
382
|
+
export const TagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
383
|
+
...obj,
|
|
384
|
+
});
|
|
385
|
+
export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
386
|
+
...obj,
|
|
387
|
+
});
|
|
388
|
+
export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
389
|
+
...obj,
|
|
390
|
+
});
|