@aws-sdk/client-license-manager 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.
Files changed (60) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-es/LicenseManager.js +194 -201
  3. package/dist-es/LicenseManagerClient.js +22 -28
  4. package/dist-es/commands/AcceptGrantCommand.js +21 -28
  5. package/dist-es/commands/CheckInLicenseCommand.js +21 -28
  6. package/dist-es/commands/CheckoutBorrowLicenseCommand.js +21 -28
  7. package/dist-es/commands/CheckoutLicenseCommand.js +21 -28
  8. package/dist-es/commands/CreateGrantCommand.js +21 -28
  9. package/dist-es/commands/CreateGrantVersionCommand.js +21 -28
  10. package/dist-es/commands/CreateLicenseCommand.js +21 -28
  11. package/dist-es/commands/CreateLicenseConfigurationCommand.js +21 -28
  12. package/dist-es/commands/CreateLicenseConversionTaskForResourceCommand.js +21 -28
  13. package/dist-es/commands/CreateLicenseManagerReportGeneratorCommand.js +21 -28
  14. package/dist-es/commands/CreateLicenseVersionCommand.js +21 -28
  15. package/dist-es/commands/CreateTokenCommand.js +21 -28
  16. package/dist-es/commands/DeleteGrantCommand.js +21 -28
  17. package/dist-es/commands/DeleteLicenseCommand.js +21 -28
  18. package/dist-es/commands/DeleteLicenseConfigurationCommand.js +21 -28
  19. package/dist-es/commands/DeleteLicenseManagerReportGeneratorCommand.js +21 -28
  20. package/dist-es/commands/DeleteTokenCommand.js +21 -28
  21. package/dist-es/commands/ExtendLicenseConsumptionCommand.js +21 -28
  22. package/dist-es/commands/GetAccessTokenCommand.js +21 -28
  23. package/dist-es/commands/GetGrantCommand.js +21 -28
  24. package/dist-es/commands/GetLicenseCommand.js +21 -28
  25. package/dist-es/commands/GetLicenseConfigurationCommand.js +21 -28
  26. package/dist-es/commands/GetLicenseConversionTaskCommand.js +21 -28
  27. package/dist-es/commands/GetLicenseManagerReportGeneratorCommand.js +21 -28
  28. package/dist-es/commands/GetLicenseUsageCommand.js +21 -28
  29. package/dist-es/commands/GetServiceSettingsCommand.js +21 -28
  30. package/dist-es/commands/ListAssociationsForLicenseConfigurationCommand.js +21 -28
  31. package/dist-es/commands/ListDistributedGrantsCommand.js +21 -28
  32. package/dist-es/commands/ListFailuresForLicenseConfigurationOperationsCommand.js +21 -28
  33. package/dist-es/commands/ListLicenseConfigurationsCommand.js +21 -28
  34. package/dist-es/commands/ListLicenseConversionTasksCommand.js +21 -28
  35. package/dist-es/commands/ListLicenseManagerReportGeneratorsCommand.js +21 -28
  36. package/dist-es/commands/ListLicenseSpecificationsForResourceCommand.js +21 -28
  37. package/dist-es/commands/ListLicenseVersionsCommand.js +21 -28
  38. package/dist-es/commands/ListLicensesCommand.js +21 -28
  39. package/dist-es/commands/ListReceivedGrantsCommand.js +21 -28
  40. package/dist-es/commands/ListReceivedLicensesCommand.js +21 -28
  41. package/dist-es/commands/ListResourceInventoryCommand.js +21 -28
  42. package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
  43. package/dist-es/commands/ListTokensCommand.js +21 -28
  44. package/dist-es/commands/ListUsageForLicenseConfigurationCommand.js +21 -28
  45. package/dist-es/commands/RejectGrantCommand.js +21 -28
  46. package/dist-es/commands/TagResourceCommand.js +21 -28
  47. package/dist-es/commands/UntagResourceCommand.js +21 -28
  48. package/dist-es/commands/UpdateLicenseConfigurationCommand.js +21 -28
  49. package/dist-es/commands/UpdateLicenseManagerReportGeneratorCommand.js +21 -28
  50. package/dist-es/commands/UpdateLicenseSpecificationsForResourceCommand.js +21 -28
  51. package/dist-es/commands/UpdateServiceSettingsCommand.js +21 -28
  52. package/dist-es/endpoints.js +8 -8
  53. package/dist-es/models/LicenseManagerServiceException.js +5 -10
  54. package/dist-es/models/models_0.js +605 -340
  55. package/dist-es/protocols/Aws_json1_1.js +3776 -4747
  56. package/dist-es/runtimeConfig.browser.js +26 -12
  57. package/dist-es/runtimeConfig.js +30 -12
  58. package/dist-es/runtimeConfig.native.js +8 -5
  59. package/dist-es/runtimeConfig.shared.js +8 -11
  60. package/package.json +33 -33
@@ -1,4 +1,3 @@
1
- import { __assign, __extends } from "tslib";
2
1
  import { LicenseManagerServiceException as __BaseException } from "./LicenseManagerServiceException";
3
2
  export var GrantStatus;
4
3
  (function (GrantStatus) {
@@ -12,97 +11,97 @@ export var GrantStatus;
12
11
  GrantStatus["REJECTED"] = "REJECTED";
13
12
  GrantStatus["WORKFLOW_COMPLETED"] = "WORKFLOW_COMPLETED";
14
13
  })(GrantStatus || (GrantStatus = {}));
15
- var AccessDeniedException = (function (_super) {
16
- __extends(AccessDeniedException, _super);
17
- function AccessDeniedException(opts) {
18
- var _this = _super.call(this, __assign({ name: "AccessDeniedException", $fault: "client" }, opts)) || this;
19
- _this.name = "AccessDeniedException";
20
- _this.$fault = "client";
21
- Object.setPrototypeOf(_this, AccessDeniedException.prototype);
22
- _this.Message = opts.Message;
23
- return _this;
14
+ export class AccessDeniedException extends __BaseException {
15
+ constructor(opts) {
16
+ super({
17
+ name: "AccessDeniedException",
18
+ $fault: "client",
19
+ ...opts,
20
+ });
21
+ this.name = "AccessDeniedException";
22
+ this.$fault = "client";
23
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
24
+ this.Message = opts.Message;
24
25
  }
25
- return AccessDeniedException;
26
- }(__BaseException));
27
- export { AccessDeniedException };
28
- var AuthorizationException = (function (_super) {
29
- __extends(AuthorizationException, _super);
30
- function AuthorizationException(opts) {
31
- var _this = _super.call(this, __assign({ name: "AuthorizationException", $fault: "client" }, opts)) || this;
32
- _this.name = "AuthorizationException";
33
- _this.$fault = "client";
34
- Object.setPrototypeOf(_this, AuthorizationException.prototype);
35
- _this.Message = opts.Message;
36
- return _this;
26
+ }
27
+ export class AuthorizationException extends __BaseException {
28
+ constructor(opts) {
29
+ super({
30
+ name: "AuthorizationException",
31
+ $fault: "client",
32
+ ...opts,
33
+ });
34
+ this.name = "AuthorizationException";
35
+ this.$fault = "client";
36
+ Object.setPrototypeOf(this, AuthorizationException.prototype);
37
+ this.Message = opts.Message;
37
38
  }
38
- return AuthorizationException;
39
- }(__BaseException));
40
- export { AuthorizationException };
41
- var InvalidParameterValueException = (function (_super) {
42
- __extends(InvalidParameterValueException, _super);
43
- function InvalidParameterValueException(opts) {
44
- var _this = _super.call(this, __assign({ name: "InvalidParameterValueException", $fault: "client" }, opts)) || this;
45
- _this.name = "InvalidParameterValueException";
46
- _this.$fault = "client";
47
- Object.setPrototypeOf(_this, InvalidParameterValueException.prototype);
48
- _this.Message = opts.Message;
49
- return _this;
39
+ }
40
+ export class InvalidParameterValueException extends __BaseException {
41
+ constructor(opts) {
42
+ super({
43
+ name: "InvalidParameterValueException",
44
+ $fault: "client",
45
+ ...opts,
46
+ });
47
+ this.name = "InvalidParameterValueException";
48
+ this.$fault = "client";
49
+ Object.setPrototypeOf(this, InvalidParameterValueException.prototype);
50
+ this.Message = opts.Message;
50
51
  }
51
- return InvalidParameterValueException;
52
- }(__BaseException));
53
- export { InvalidParameterValueException };
54
- var RateLimitExceededException = (function (_super) {
55
- __extends(RateLimitExceededException, _super);
56
- function RateLimitExceededException(opts) {
57
- var _this = _super.call(this, __assign({ name: "RateLimitExceededException", $fault: "client" }, opts)) || this;
58
- _this.name = "RateLimitExceededException";
59
- _this.$fault = "client";
60
- Object.setPrototypeOf(_this, RateLimitExceededException.prototype);
61
- _this.Message = opts.Message;
62
- return _this;
52
+ }
53
+ export class RateLimitExceededException extends __BaseException {
54
+ constructor(opts) {
55
+ super({
56
+ name: "RateLimitExceededException",
57
+ $fault: "client",
58
+ ...opts,
59
+ });
60
+ this.name = "RateLimitExceededException";
61
+ this.$fault = "client";
62
+ Object.setPrototypeOf(this, RateLimitExceededException.prototype);
63
+ this.Message = opts.Message;
63
64
  }
64
- return RateLimitExceededException;
65
- }(__BaseException));
66
- export { RateLimitExceededException };
67
- var ResourceLimitExceededException = (function (_super) {
68
- __extends(ResourceLimitExceededException, _super);
69
- function ResourceLimitExceededException(opts) {
70
- var _this = _super.call(this, __assign({ name: "ResourceLimitExceededException", $fault: "client" }, opts)) || this;
71
- _this.name = "ResourceLimitExceededException";
72
- _this.$fault = "client";
73
- Object.setPrototypeOf(_this, ResourceLimitExceededException.prototype);
74
- _this.Message = opts.Message;
75
- return _this;
65
+ }
66
+ export class ResourceLimitExceededException extends __BaseException {
67
+ constructor(opts) {
68
+ super({
69
+ name: "ResourceLimitExceededException",
70
+ $fault: "client",
71
+ ...opts,
72
+ });
73
+ this.name = "ResourceLimitExceededException";
74
+ this.$fault = "client";
75
+ Object.setPrototypeOf(this, ResourceLimitExceededException.prototype);
76
+ this.Message = opts.Message;
76
77
  }
77
- return ResourceLimitExceededException;
78
- }(__BaseException));
79
- export { ResourceLimitExceededException };
80
- var ServerInternalException = (function (_super) {
81
- __extends(ServerInternalException, _super);
82
- function ServerInternalException(opts) {
83
- var _this = _super.call(this, __assign({ name: "ServerInternalException", $fault: "server" }, opts)) || this;
84
- _this.name = "ServerInternalException";
85
- _this.$fault = "server";
86
- Object.setPrototypeOf(_this, ServerInternalException.prototype);
87
- _this.Message = opts.Message;
88
- return _this;
78
+ }
79
+ export class ServerInternalException extends __BaseException {
80
+ constructor(opts) {
81
+ super({
82
+ name: "ServerInternalException",
83
+ $fault: "server",
84
+ ...opts,
85
+ });
86
+ this.name = "ServerInternalException";
87
+ this.$fault = "server";
88
+ Object.setPrototypeOf(this, ServerInternalException.prototype);
89
+ this.Message = opts.Message;
89
90
  }
90
- return ServerInternalException;
91
- }(__BaseException));
92
- export { ServerInternalException };
93
- var ValidationException = (function (_super) {
94
- __extends(ValidationException, _super);
95
- function ValidationException(opts) {
96
- var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
97
- _this.name = "ValidationException";
98
- _this.$fault = "client";
99
- Object.setPrototypeOf(_this, ValidationException.prototype);
100
- _this.Message = opts.Message;
101
- return _this;
91
+ }
92
+ export class ValidationException extends __BaseException {
93
+ constructor(opts) {
94
+ super({
95
+ name: "ValidationException",
96
+ $fault: "client",
97
+ ...opts,
98
+ });
99
+ this.name = "ValidationException";
100
+ this.$fault = "client";
101
+ Object.setPrototypeOf(this, ValidationException.prototype);
102
+ this.Message = opts.Message;
102
103
  }
103
- return ValidationException;
104
- }(__BaseException));
105
- export { ValidationException };
104
+ }
106
105
  export var AllowedOperation;
107
106
  (function (AllowedOperation) {
108
107
  AllowedOperation["CHECKOUT_BORROW_LICENSE"] = "CheckoutBorrowLicense";
@@ -113,32 +112,32 @@ export var AllowedOperation;
113
112
  AllowedOperation["EXTEND_CONSUMPTION_LICENSE"] = "ExtendConsumptionLicense";
114
113
  AllowedOperation["LIST_PURCHASED_LICENSES"] = "ListPurchasedLicenses";
115
114
  })(AllowedOperation || (AllowedOperation = {}));
116
- var ConflictException = (function (_super) {
117
- __extends(ConflictException, _super);
118
- function ConflictException(opts) {
119
- var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
120
- _this.name = "ConflictException";
121
- _this.$fault = "client";
122
- Object.setPrototypeOf(_this, ConflictException.prototype);
123
- _this.Message = opts.Message;
124
- return _this;
115
+ export class ConflictException extends __BaseException {
116
+ constructor(opts) {
117
+ super({
118
+ name: "ConflictException",
119
+ $fault: "client",
120
+ ...opts,
121
+ });
122
+ this.name = "ConflictException";
123
+ this.$fault = "client";
124
+ Object.setPrototypeOf(this, ConflictException.prototype);
125
+ this.Message = opts.Message;
125
126
  }
126
- return ConflictException;
127
- }(__BaseException));
128
- export { ConflictException };
129
- var ResourceNotFoundException = (function (_super) {
130
- __extends(ResourceNotFoundException, _super);
131
- function ResourceNotFoundException(opts) {
132
- var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
133
- _this.name = "ResourceNotFoundException";
134
- _this.$fault = "client";
135
- Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
136
- _this.Message = opts.Message;
137
- return _this;
127
+ }
128
+ export class ResourceNotFoundException extends __BaseException {
129
+ constructor(opts) {
130
+ super({
131
+ name: "ResourceNotFoundException",
132
+ $fault: "client",
133
+ ...opts,
134
+ });
135
+ this.name = "ResourceNotFoundException";
136
+ this.$fault = "client";
137
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
138
+ this.Message = opts.Message;
138
139
  }
139
- return ResourceNotFoundException;
140
- }(__BaseException));
141
- export { ResourceNotFoundException };
140
+ }
142
141
  export var DigitalSignatureMethod;
143
142
  (function (DigitalSignatureMethod) {
144
143
  DigitalSignatureMethod["JWT_PS384"] = "JWT_PS384";
@@ -173,59 +172,59 @@ export var EntitlementDataUnit;
173
172
  EntitlementDataUnit["TERABYTES"] = "Terabytes";
174
173
  EntitlementDataUnit["TERABYTES_PER_SECOND"] = "Terabytes/Second";
175
174
  })(EntitlementDataUnit || (EntitlementDataUnit = {}));
176
- var EntitlementNotAllowedException = (function (_super) {
177
- __extends(EntitlementNotAllowedException, _super);
178
- function EntitlementNotAllowedException(opts) {
179
- var _this = _super.call(this, __assign({ name: "EntitlementNotAllowedException", $fault: "client" }, opts)) || this;
180
- _this.name = "EntitlementNotAllowedException";
181
- _this.$fault = "client";
182
- Object.setPrototypeOf(_this, EntitlementNotAllowedException.prototype);
183
- _this.Message = opts.Message;
184
- return _this;
175
+ export class EntitlementNotAllowedException extends __BaseException {
176
+ constructor(opts) {
177
+ super({
178
+ name: "EntitlementNotAllowedException",
179
+ $fault: "client",
180
+ ...opts,
181
+ });
182
+ this.name = "EntitlementNotAllowedException";
183
+ this.$fault = "client";
184
+ Object.setPrototypeOf(this, EntitlementNotAllowedException.prototype);
185
+ this.Message = opts.Message;
185
186
  }
186
- return EntitlementNotAllowedException;
187
- }(__BaseException));
188
- export { EntitlementNotAllowedException };
189
- var NoEntitlementsAllowedException = (function (_super) {
190
- __extends(NoEntitlementsAllowedException, _super);
191
- function NoEntitlementsAllowedException(opts) {
192
- var _this = _super.call(this, __assign({ name: "NoEntitlementsAllowedException", $fault: "client" }, opts)) || this;
193
- _this.name = "NoEntitlementsAllowedException";
194
- _this.$fault = "client";
195
- Object.setPrototypeOf(_this, NoEntitlementsAllowedException.prototype);
196
- _this.Message = opts.Message;
197
- return _this;
187
+ }
188
+ export class NoEntitlementsAllowedException extends __BaseException {
189
+ constructor(opts) {
190
+ super({
191
+ name: "NoEntitlementsAllowedException",
192
+ $fault: "client",
193
+ ...opts,
194
+ });
195
+ this.name = "NoEntitlementsAllowedException";
196
+ this.$fault = "client";
197
+ Object.setPrototypeOf(this, NoEntitlementsAllowedException.prototype);
198
+ this.Message = opts.Message;
198
199
  }
199
- return NoEntitlementsAllowedException;
200
- }(__BaseException));
201
- export { NoEntitlementsAllowedException };
202
- var RedirectException = (function (_super) {
203
- __extends(RedirectException, _super);
204
- function RedirectException(opts) {
205
- var _this = _super.call(this, __assign({ name: "RedirectException", $fault: "client" }, opts)) || this;
206
- _this.name = "RedirectException";
207
- _this.$fault = "client";
208
- Object.setPrototypeOf(_this, RedirectException.prototype);
209
- _this.Location = opts.Location;
210
- _this.Message = opts.Message;
211
- return _this;
200
+ }
201
+ export class RedirectException extends __BaseException {
202
+ constructor(opts) {
203
+ super({
204
+ name: "RedirectException",
205
+ $fault: "client",
206
+ ...opts,
207
+ });
208
+ this.name = "RedirectException";
209
+ this.$fault = "client";
210
+ Object.setPrototypeOf(this, RedirectException.prototype);
211
+ this.Location = opts.Location;
212
+ this.Message = opts.Message;
212
213
  }
213
- return RedirectException;
214
- }(__BaseException));
215
- export { RedirectException };
216
- var UnsupportedDigitalSignatureMethodException = (function (_super) {
217
- __extends(UnsupportedDigitalSignatureMethodException, _super);
218
- function UnsupportedDigitalSignatureMethodException(opts) {
219
- var _this = _super.call(this, __assign({ name: "UnsupportedDigitalSignatureMethodException", $fault: "client" }, opts)) || this;
220
- _this.name = "UnsupportedDigitalSignatureMethodException";
221
- _this.$fault = "client";
222
- Object.setPrototypeOf(_this, UnsupportedDigitalSignatureMethodException.prototype);
223
- _this.Message = opts.Message;
224
- return _this;
214
+ }
215
+ export class UnsupportedDigitalSignatureMethodException extends __BaseException {
216
+ constructor(opts) {
217
+ super({
218
+ name: "UnsupportedDigitalSignatureMethodException",
219
+ $fault: "client",
220
+ ...opts,
221
+ });
222
+ this.name = "UnsupportedDigitalSignatureMethodException";
223
+ this.$fault = "client";
224
+ Object.setPrototypeOf(this, UnsupportedDigitalSignatureMethodException.prototype);
225
+ this.Message = opts.Message;
225
226
  }
226
- return UnsupportedDigitalSignatureMethodException;
227
- }(__BaseException));
228
- export { UnsupportedDigitalSignatureMethodException };
227
+ }
229
228
  export var CheckoutType;
230
229
  (function (CheckoutType) {
231
230
  CheckoutType["PERPETUAL"] = "PERPETUAL";
@@ -318,19 +317,19 @@ export var LicenseConversionTaskStatus;
318
317
  LicenseConversionTaskStatus["IN_PROGRESS"] = "IN_PROGRESS";
319
318
  LicenseConversionTaskStatus["SUCCEEDED"] = "SUCCEEDED";
320
319
  })(LicenseConversionTaskStatus || (LicenseConversionTaskStatus = {}));
321
- var FilterLimitExceededException = (function (_super) {
322
- __extends(FilterLimitExceededException, _super);
323
- function FilterLimitExceededException(opts) {
324
- var _this = _super.call(this, __assign({ name: "FilterLimitExceededException", $fault: "client" }, opts)) || this;
325
- _this.name = "FilterLimitExceededException";
326
- _this.$fault = "client";
327
- Object.setPrototypeOf(_this, FilterLimitExceededException.prototype);
328
- _this.Message = opts.Message;
329
- return _this;
320
+ export class FilterLimitExceededException extends __BaseException {
321
+ constructor(opts) {
322
+ super({
323
+ name: "FilterLimitExceededException",
324
+ $fault: "client",
325
+ ...opts,
326
+ });
327
+ this.name = "FilterLimitExceededException";
328
+ this.$fault = "client";
329
+ Object.setPrototypeOf(this, FilterLimitExceededException.prototype);
330
+ this.Message = opts.Message;
330
331
  }
331
- return FilterLimitExceededException;
332
- }(__BaseException));
333
- export { FilterLimitExceededException };
332
+ }
334
333
  export var ReceivedStatus;
335
334
  (function (ReceivedStatus) {
336
335
  ReceivedStatus["ACTIVE"] = "ACTIVE";
@@ -342,20 +341,20 @@ export var ReceivedStatus;
342
341
  ReceivedStatus["REJECTED"] = "REJECTED";
343
342
  ReceivedStatus["WORKFLOW_COMPLETED"] = "WORKFLOW_COMPLETED";
344
343
  })(ReceivedStatus || (ReceivedStatus = {}));
345
- var FailedDependencyException = (function (_super) {
346
- __extends(FailedDependencyException, _super);
347
- function FailedDependencyException(opts) {
348
- var _this = _super.call(this, __assign({ name: "FailedDependencyException", $fault: "client" }, opts)) || this;
349
- _this.name = "FailedDependencyException";
350
- _this.$fault = "client";
351
- Object.setPrototypeOf(_this, FailedDependencyException.prototype);
352
- _this.Message = opts.Message;
353
- _this.ErrorCode = opts.ErrorCode;
354
- return _this;
344
+ export class FailedDependencyException extends __BaseException {
345
+ constructor(opts) {
346
+ super({
347
+ name: "FailedDependencyException",
348
+ $fault: "client",
349
+ ...opts,
350
+ });
351
+ this.name = "FailedDependencyException";
352
+ this.$fault = "client";
353
+ Object.setPrototypeOf(this, FailedDependencyException.prototype);
354
+ this.Message = opts.Message;
355
+ this.ErrorCode = opts.ErrorCode;
355
356
  }
356
- return FailedDependencyException;
357
- }(__BaseException));
358
- export { FailedDependencyException };
357
+ }
359
358
  export var InventoryFilterCondition;
360
359
  (function (InventoryFilterCondition) {
361
360
  InventoryFilterCondition["BEGINS_WITH"] = "BEGINS_WITH";
@@ -368,162 +367,428 @@ export var LicenseConfigurationStatus;
368
367
  LicenseConfigurationStatus["AVAILABLE"] = "AVAILABLE";
369
368
  LicenseConfigurationStatus["DISABLED"] = "DISABLED";
370
369
  })(LicenseConfigurationStatus || (LicenseConfigurationStatus = {}));
371
- var InvalidResourceStateException = (function (_super) {
372
- __extends(InvalidResourceStateException, _super);
373
- function InvalidResourceStateException(opts) {
374
- var _this = _super.call(this, __assign({ name: "InvalidResourceStateException", $fault: "client" }, opts)) || this;
375
- _this.name = "InvalidResourceStateException";
376
- _this.$fault = "client";
377
- Object.setPrototypeOf(_this, InvalidResourceStateException.prototype);
378
- _this.Message = opts.Message;
379
- return _this;
370
+ export class InvalidResourceStateException extends __BaseException {
371
+ constructor(opts) {
372
+ super({
373
+ name: "InvalidResourceStateException",
374
+ $fault: "client",
375
+ ...opts,
376
+ });
377
+ this.name = "InvalidResourceStateException";
378
+ this.$fault = "client";
379
+ Object.setPrototypeOf(this, InvalidResourceStateException.prototype);
380
+ this.Message = opts.Message;
380
381
  }
381
- return InvalidResourceStateException;
382
- }(__BaseException));
383
- export { InvalidResourceStateException };
384
- var LicenseUsageException = (function (_super) {
385
- __extends(LicenseUsageException, _super);
386
- function LicenseUsageException(opts) {
387
- var _this = _super.call(this, __assign({ name: "LicenseUsageException", $fault: "client" }, opts)) || this;
388
- _this.name = "LicenseUsageException";
389
- _this.$fault = "client";
390
- Object.setPrototypeOf(_this, LicenseUsageException.prototype);
391
- _this.Message = opts.Message;
392
- return _this;
382
+ }
383
+ export class LicenseUsageException extends __BaseException {
384
+ constructor(opts) {
385
+ super({
386
+ name: "LicenseUsageException",
387
+ $fault: "client",
388
+ ...opts,
389
+ });
390
+ this.name = "LicenseUsageException";
391
+ this.$fault = "client";
392
+ Object.setPrototypeOf(this, LicenseUsageException.prototype);
393
+ this.Message = opts.Message;
393
394
  }
394
- return LicenseUsageException;
395
- }(__BaseException));
396
- export { LicenseUsageException };
397
- export var AcceptGrantRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
398
- export var AcceptGrantResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
399
- export var AutomatedDiscoveryInformationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
400
- export var CheckInLicenseRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
401
- export var CheckInLicenseResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
402
- export var MetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
403
- export var EntitlementDataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
404
- export var CheckoutBorrowLicenseRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
405
- export var CheckoutBorrowLicenseResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
406
- export var CheckoutLicenseRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
407
- export var CheckoutLicenseResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
408
- export var CreateGrantRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
409
- export var CreateGrantResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
410
- export var CreateGrantVersionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
411
- export var CreateGrantVersionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
412
- export var BorrowConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
413
- export var ProvisionalConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
414
- export var ConsumptionConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
415
- export var EntitlementFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
416
- export var IssuerFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
417
- export var DatetimeRangeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
418
- export var CreateLicenseRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
419
- export var CreateLicenseResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
420
- export var ProductInformationFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
421
- export var ProductInformationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
422
- export var TagFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
423
- export var CreateLicenseConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
424
- export var CreateLicenseConfigurationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
425
- export var LicenseConversionContextFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
426
- export var CreateLicenseConversionTaskForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
427
- export var CreateLicenseConversionTaskForResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
428
- export var ReportContextFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
429
- export var ReportFrequencyFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
430
- export var CreateLicenseManagerReportGeneratorRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
431
- export var CreateLicenseManagerReportGeneratorResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
432
- export var CreateLicenseVersionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
433
- export var CreateLicenseVersionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
434
- export var CreateTokenRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
435
- export var CreateTokenResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
436
- export var DeleteGrantRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
437
- export var DeleteGrantResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
438
- export var DeleteLicenseRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
439
- export var DeleteLicenseResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
440
- export var DeleteLicenseConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
441
- export var DeleteLicenseConfigurationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
442
- export var DeleteLicenseManagerReportGeneratorRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
443
- export var DeleteLicenseManagerReportGeneratorResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
444
- export var DeleteTokenRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
445
- export var DeleteTokenResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
446
- export var ExtendLicenseConsumptionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
447
- export var ExtendLicenseConsumptionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
448
- export var GetAccessTokenRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
449
- export var GetAccessTokenResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
450
- export var GetGrantRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
451
- export var GrantFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
452
- export var GetGrantResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
453
- export var GetLicenseRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
454
- export var IssuerDetailsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
455
- export var LicenseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
456
- export var GetLicenseResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
457
- export var GetLicenseConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
458
- export var ConsumedLicenseSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
459
- export var ManagedResourceSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
460
- export var GetLicenseConfigurationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
461
- export var GetLicenseConversionTaskRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
462
- export var GetLicenseConversionTaskResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
463
- export var GetLicenseManagerReportGeneratorRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
464
- export var S3LocationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
465
- export var ReportGeneratorFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
466
- export var GetLicenseManagerReportGeneratorResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
467
- export var GetLicenseUsageRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
468
- export var EntitlementUsageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
469
- export var LicenseUsageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
470
- export var GetLicenseUsageResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
471
- export var GetServiceSettingsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
472
- export var OrganizationConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
473
- export var GetServiceSettingsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
474
- export var ListAssociationsForLicenseConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
475
- export var LicenseConfigurationAssociationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
476
- export var ListAssociationsForLicenseConfigurationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
477
- export var FilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
478
- export var ListDistributedGrantsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
479
- export var ListDistributedGrantsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
480
- export var ListFailuresForLicenseConfigurationOperationsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
481
- export var LicenseOperationFailureFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
482
- export var ListFailuresForLicenseConfigurationOperationsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
483
- export var ListLicenseConfigurationsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
484
- export var LicenseConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
485
- export var ListLicenseConfigurationsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
486
- export var ListLicenseConversionTasksRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
487
- export var LicenseConversionTaskFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
488
- export var ListLicenseConversionTasksResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
489
- export var ListLicenseManagerReportGeneratorsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
490
- export var ListLicenseManagerReportGeneratorsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
491
- export var ListLicensesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
492
- export var ListLicensesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
493
- export var ListLicenseSpecificationsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
494
- export var LicenseSpecificationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
495
- export var ListLicenseSpecificationsForResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
496
- export var ListLicenseVersionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
497
- export var ListLicenseVersionsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
498
- export var ListReceivedGrantsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
499
- export var ListReceivedGrantsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
500
- export var ListReceivedLicensesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
501
- export var ReceivedMetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
502
- export var GrantedLicenseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
503
- export var ListReceivedLicensesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
504
- export var InventoryFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
505
- export var ListResourceInventoryRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
506
- export var ResourceInventoryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
507
- export var ListResourceInventoryResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
508
- export var ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
509
- export var ListTagsForResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
510
- export var ListTokensRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
511
- export var TokenDataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
512
- export var ListTokensResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
513
- export var ListUsageForLicenseConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
514
- export var LicenseConfigurationUsageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
515
- export var ListUsageForLicenseConfigurationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
516
- export var RejectGrantRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
517
- export var RejectGrantResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
518
- export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
519
- export var TagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
520
- export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
521
- export var UntagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
522
- export var UpdateLicenseConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
523
- export var UpdateLicenseConfigurationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
524
- export var UpdateLicenseManagerReportGeneratorRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
525
- export var UpdateLicenseManagerReportGeneratorResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
526
- export var UpdateLicenseSpecificationsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
527
- export var UpdateLicenseSpecificationsForResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
528
- export var UpdateServiceSettingsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
529
- export var UpdateServiceSettingsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
395
+ }
396
+ export const AcceptGrantRequestFilterSensitiveLog = (obj) => ({
397
+ ...obj,
398
+ });
399
+ export const AcceptGrantResponseFilterSensitiveLog = (obj) => ({
400
+ ...obj,
401
+ });
402
+ export const AutomatedDiscoveryInformationFilterSensitiveLog = (obj) => ({
403
+ ...obj,
404
+ });
405
+ export const CheckInLicenseRequestFilterSensitiveLog = (obj) => ({
406
+ ...obj,
407
+ });
408
+ export const CheckInLicenseResponseFilterSensitiveLog = (obj) => ({
409
+ ...obj,
410
+ });
411
+ export const MetadataFilterSensitiveLog = (obj) => ({
412
+ ...obj,
413
+ });
414
+ export const EntitlementDataFilterSensitiveLog = (obj) => ({
415
+ ...obj,
416
+ });
417
+ export const CheckoutBorrowLicenseRequestFilterSensitiveLog = (obj) => ({
418
+ ...obj,
419
+ });
420
+ export const CheckoutBorrowLicenseResponseFilterSensitiveLog = (obj) => ({
421
+ ...obj,
422
+ });
423
+ export const CheckoutLicenseRequestFilterSensitiveLog = (obj) => ({
424
+ ...obj,
425
+ });
426
+ export const CheckoutLicenseResponseFilterSensitiveLog = (obj) => ({
427
+ ...obj,
428
+ });
429
+ export const CreateGrantRequestFilterSensitiveLog = (obj) => ({
430
+ ...obj,
431
+ });
432
+ export const CreateGrantResponseFilterSensitiveLog = (obj) => ({
433
+ ...obj,
434
+ });
435
+ export const CreateGrantVersionRequestFilterSensitiveLog = (obj) => ({
436
+ ...obj,
437
+ });
438
+ export const CreateGrantVersionResponseFilterSensitiveLog = (obj) => ({
439
+ ...obj,
440
+ });
441
+ export const BorrowConfigurationFilterSensitiveLog = (obj) => ({
442
+ ...obj,
443
+ });
444
+ export const ProvisionalConfigurationFilterSensitiveLog = (obj) => ({
445
+ ...obj,
446
+ });
447
+ export const ConsumptionConfigurationFilterSensitiveLog = (obj) => ({
448
+ ...obj,
449
+ });
450
+ export const EntitlementFilterSensitiveLog = (obj) => ({
451
+ ...obj,
452
+ });
453
+ export const IssuerFilterSensitiveLog = (obj) => ({
454
+ ...obj,
455
+ });
456
+ export const DatetimeRangeFilterSensitiveLog = (obj) => ({
457
+ ...obj,
458
+ });
459
+ export const CreateLicenseRequestFilterSensitiveLog = (obj) => ({
460
+ ...obj,
461
+ });
462
+ export const CreateLicenseResponseFilterSensitiveLog = (obj) => ({
463
+ ...obj,
464
+ });
465
+ export const ProductInformationFilterFilterSensitiveLog = (obj) => ({
466
+ ...obj,
467
+ });
468
+ export const ProductInformationFilterSensitiveLog = (obj) => ({
469
+ ...obj,
470
+ });
471
+ export const TagFilterSensitiveLog = (obj) => ({
472
+ ...obj,
473
+ });
474
+ export const CreateLicenseConfigurationRequestFilterSensitiveLog = (obj) => ({
475
+ ...obj,
476
+ });
477
+ export const CreateLicenseConfigurationResponseFilterSensitiveLog = (obj) => ({
478
+ ...obj,
479
+ });
480
+ export const LicenseConversionContextFilterSensitiveLog = (obj) => ({
481
+ ...obj,
482
+ });
483
+ export const CreateLicenseConversionTaskForResourceRequestFilterSensitiveLog = (obj) => ({
484
+ ...obj,
485
+ });
486
+ export const CreateLicenseConversionTaskForResourceResponseFilterSensitiveLog = (obj) => ({
487
+ ...obj,
488
+ });
489
+ export const ReportContextFilterSensitiveLog = (obj) => ({
490
+ ...obj,
491
+ });
492
+ export const ReportFrequencyFilterSensitiveLog = (obj) => ({
493
+ ...obj,
494
+ });
495
+ export const CreateLicenseManagerReportGeneratorRequestFilterSensitiveLog = (obj) => ({
496
+ ...obj,
497
+ });
498
+ export const CreateLicenseManagerReportGeneratorResponseFilterSensitiveLog = (obj) => ({
499
+ ...obj,
500
+ });
501
+ export const CreateLicenseVersionRequestFilterSensitiveLog = (obj) => ({
502
+ ...obj,
503
+ });
504
+ export const CreateLicenseVersionResponseFilterSensitiveLog = (obj) => ({
505
+ ...obj,
506
+ });
507
+ export const CreateTokenRequestFilterSensitiveLog = (obj) => ({
508
+ ...obj,
509
+ });
510
+ export const CreateTokenResponseFilterSensitiveLog = (obj) => ({
511
+ ...obj,
512
+ });
513
+ export const DeleteGrantRequestFilterSensitiveLog = (obj) => ({
514
+ ...obj,
515
+ });
516
+ export const DeleteGrantResponseFilterSensitiveLog = (obj) => ({
517
+ ...obj,
518
+ });
519
+ export const DeleteLicenseRequestFilterSensitiveLog = (obj) => ({
520
+ ...obj,
521
+ });
522
+ export const DeleteLicenseResponseFilterSensitiveLog = (obj) => ({
523
+ ...obj,
524
+ });
525
+ export const DeleteLicenseConfigurationRequestFilterSensitiveLog = (obj) => ({
526
+ ...obj,
527
+ });
528
+ export const DeleteLicenseConfigurationResponseFilterSensitiveLog = (obj) => ({
529
+ ...obj,
530
+ });
531
+ export const DeleteLicenseManagerReportGeneratorRequestFilterSensitiveLog = (obj) => ({
532
+ ...obj,
533
+ });
534
+ export const DeleteLicenseManagerReportGeneratorResponseFilterSensitiveLog = (obj) => ({
535
+ ...obj,
536
+ });
537
+ export const DeleteTokenRequestFilterSensitiveLog = (obj) => ({
538
+ ...obj,
539
+ });
540
+ export const DeleteTokenResponseFilterSensitiveLog = (obj) => ({
541
+ ...obj,
542
+ });
543
+ export const ExtendLicenseConsumptionRequestFilterSensitiveLog = (obj) => ({
544
+ ...obj,
545
+ });
546
+ export const ExtendLicenseConsumptionResponseFilterSensitiveLog = (obj) => ({
547
+ ...obj,
548
+ });
549
+ export const GetAccessTokenRequestFilterSensitiveLog = (obj) => ({
550
+ ...obj,
551
+ });
552
+ export const GetAccessTokenResponseFilterSensitiveLog = (obj) => ({
553
+ ...obj,
554
+ });
555
+ export const GetGrantRequestFilterSensitiveLog = (obj) => ({
556
+ ...obj,
557
+ });
558
+ export const GrantFilterSensitiveLog = (obj) => ({
559
+ ...obj,
560
+ });
561
+ export const GetGrantResponseFilterSensitiveLog = (obj) => ({
562
+ ...obj,
563
+ });
564
+ export const GetLicenseRequestFilterSensitiveLog = (obj) => ({
565
+ ...obj,
566
+ });
567
+ export const IssuerDetailsFilterSensitiveLog = (obj) => ({
568
+ ...obj,
569
+ });
570
+ export const LicenseFilterSensitiveLog = (obj) => ({
571
+ ...obj,
572
+ });
573
+ export const GetLicenseResponseFilterSensitiveLog = (obj) => ({
574
+ ...obj,
575
+ });
576
+ export const GetLicenseConfigurationRequestFilterSensitiveLog = (obj) => ({
577
+ ...obj,
578
+ });
579
+ export const ConsumedLicenseSummaryFilterSensitiveLog = (obj) => ({
580
+ ...obj,
581
+ });
582
+ export const ManagedResourceSummaryFilterSensitiveLog = (obj) => ({
583
+ ...obj,
584
+ });
585
+ export const GetLicenseConfigurationResponseFilterSensitiveLog = (obj) => ({
586
+ ...obj,
587
+ });
588
+ export const GetLicenseConversionTaskRequestFilterSensitiveLog = (obj) => ({
589
+ ...obj,
590
+ });
591
+ export const GetLicenseConversionTaskResponseFilterSensitiveLog = (obj) => ({
592
+ ...obj,
593
+ });
594
+ export const GetLicenseManagerReportGeneratorRequestFilterSensitiveLog = (obj) => ({
595
+ ...obj,
596
+ });
597
+ export const S3LocationFilterSensitiveLog = (obj) => ({
598
+ ...obj,
599
+ });
600
+ export const ReportGeneratorFilterSensitiveLog = (obj) => ({
601
+ ...obj,
602
+ });
603
+ export const GetLicenseManagerReportGeneratorResponseFilterSensitiveLog = (obj) => ({
604
+ ...obj,
605
+ });
606
+ export const GetLicenseUsageRequestFilterSensitiveLog = (obj) => ({
607
+ ...obj,
608
+ });
609
+ export const EntitlementUsageFilterSensitiveLog = (obj) => ({
610
+ ...obj,
611
+ });
612
+ export const LicenseUsageFilterSensitiveLog = (obj) => ({
613
+ ...obj,
614
+ });
615
+ export const GetLicenseUsageResponseFilterSensitiveLog = (obj) => ({
616
+ ...obj,
617
+ });
618
+ export const GetServiceSettingsRequestFilterSensitiveLog = (obj) => ({
619
+ ...obj,
620
+ });
621
+ export const OrganizationConfigurationFilterSensitiveLog = (obj) => ({
622
+ ...obj,
623
+ });
624
+ export const GetServiceSettingsResponseFilterSensitiveLog = (obj) => ({
625
+ ...obj,
626
+ });
627
+ export const ListAssociationsForLicenseConfigurationRequestFilterSensitiveLog = (obj) => ({
628
+ ...obj,
629
+ });
630
+ export const LicenseConfigurationAssociationFilterSensitiveLog = (obj) => ({
631
+ ...obj,
632
+ });
633
+ export const ListAssociationsForLicenseConfigurationResponseFilterSensitiveLog = (obj) => ({
634
+ ...obj,
635
+ });
636
+ export const FilterFilterSensitiveLog = (obj) => ({
637
+ ...obj,
638
+ });
639
+ export const ListDistributedGrantsRequestFilterSensitiveLog = (obj) => ({
640
+ ...obj,
641
+ });
642
+ export const ListDistributedGrantsResponseFilterSensitiveLog = (obj) => ({
643
+ ...obj,
644
+ });
645
+ export const ListFailuresForLicenseConfigurationOperationsRequestFilterSensitiveLog = (obj) => ({
646
+ ...obj,
647
+ });
648
+ export const LicenseOperationFailureFilterSensitiveLog = (obj) => ({
649
+ ...obj,
650
+ });
651
+ export const ListFailuresForLicenseConfigurationOperationsResponseFilterSensitiveLog = (obj) => ({
652
+ ...obj,
653
+ });
654
+ export const ListLicenseConfigurationsRequestFilterSensitiveLog = (obj) => ({
655
+ ...obj,
656
+ });
657
+ export const LicenseConfigurationFilterSensitiveLog = (obj) => ({
658
+ ...obj,
659
+ });
660
+ export const ListLicenseConfigurationsResponseFilterSensitiveLog = (obj) => ({
661
+ ...obj,
662
+ });
663
+ export const ListLicenseConversionTasksRequestFilterSensitiveLog = (obj) => ({
664
+ ...obj,
665
+ });
666
+ export const LicenseConversionTaskFilterSensitiveLog = (obj) => ({
667
+ ...obj,
668
+ });
669
+ export const ListLicenseConversionTasksResponseFilterSensitiveLog = (obj) => ({
670
+ ...obj,
671
+ });
672
+ export const ListLicenseManagerReportGeneratorsRequestFilterSensitiveLog = (obj) => ({
673
+ ...obj,
674
+ });
675
+ export const ListLicenseManagerReportGeneratorsResponseFilterSensitiveLog = (obj) => ({
676
+ ...obj,
677
+ });
678
+ export const ListLicensesRequestFilterSensitiveLog = (obj) => ({
679
+ ...obj,
680
+ });
681
+ export const ListLicensesResponseFilterSensitiveLog = (obj) => ({
682
+ ...obj,
683
+ });
684
+ export const ListLicenseSpecificationsForResourceRequestFilterSensitiveLog = (obj) => ({
685
+ ...obj,
686
+ });
687
+ export const LicenseSpecificationFilterSensitiveLog = (obj) => ({
688
+ ...obj,
689
+ });
690
+ export const ListLicenseSpecificationsForResourceResponseFilterSensitiveLog = (obj) => ({
691
+ ...obj,
692
+ });
693
+ export const ListLicenseVersionsRequestFilterSensitiveLog = (obj) => ({
694
+ ...obj,
695
+ });
696
+ export const ListLicenseVersionsResponseFilterSensitiveLog = (obj) => ({
697
+ ...obj,
698
+ });
699
+ export const ListReceivedGrantsRequestFilterSensitiveLog = (obj) => ({
700
+ ...obj,
701
+ });
702
+ export const ListReceivedGrantsResponseFilterSensitiveLog = (obj) => ({
703
+ ...obj,
704
+ });
705
+ export const ListReceivedLicensesRequestFilterSensitiveLog = (obj) => ({
706
+ ...obj,
707
+ });
708
+ export const ReceivedMetadataFilterSensitiveLog = (obj) => ({
709
+ ...obj,
710
+ });
711
+ export const GrantedLicenseFilterSensitiveLog = (obj) => ({
712
+ ...obj,
713
+ });
714
+ export const ListReceivedLicensesResponseFilterSensitiveLog = (obj) => ({
715
+ ...obj,
716
+ });
717
+ export const InventoryFilterFilterSensitiveLog = (obj) => ({
718
+ ...obj,
719
+ });
720
+ export const ListResourceInventoryRequestFilterSensitiveLog = (obj) => ({
721
+ ...obj,
722
+ });
723
+ export const ResourceInventoryFilterSensitiveLog = (obj) => ({
724
+ ...obj,
725
+ });
726
+ export const ListResourceInventoryResponseFilterSensitiveLog = (obj) => ({
727
+ ...obj,
728
+ });
729
+ export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
730
+ ...obj,
731
+ });
732
+ export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
733
+ ...obj,
734
+ });
735
+ export const ListTokensRequestFilterSensitiveLog = (obj) => ({
736
+ ...obj,
737
+ });
738
+ export const TokenDataFilterSensitiveLog = (obj) => ({
739
+ ...obj,
740
+ });
741
+ export const ListTokensResponseFilterSensitiveLog = (obj) => ({
742
+ ...obj,
743
+ });
744
+ export const ListUsageForLicenseConfigurationRequestFilterSensitiveLog = (obj) => ({
745
+ ...obj,
746
+ });
747
+ export const LicenseConfigurationUsageFilterSensitiveLog = (obj) => ({
748
+ ...obj,
749
+ });
750
+ export const ListUsageForLicenseConfigurationResponseFilterSensitiveLog = (obj) => ({
751
+ ...obj,
752
+ });
753
+ export const RejectGrantRequestFilterSensitiveLog = (obj) => ({
754
+ ...obj,
755
+ });
756
+ export const RejectGrantResponseFilterSensitiveLog = (obj) => ({
757
+ ...obj,
758
+ });
759
+ export const TagResourceRequestFilterSensitiveLog = (obj) => ({
760
+ ...obj,
761
+ });
762
+ export const TagResourceResponseFilterSensitiveLog = (obj) => ({
763
+ ...obj,
764
+ });
765
+ export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
766
+ ...obj,
767
+ });
768
+ export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
769
+ ...obj,
770
+ });
771
+ export const UpdateLicenseConfigurationRequestFilterSensitiveLog = (obj) => ({
772
+ ...obj,
773
+ });
774
+ export const UpdateLicenseConfigurationResponseFilterSensitiveLog = (obj) => ({
775
+ ...obj,
776
+ });
777
+ export const UpdateLicenseManagerReportGeneratorRequestFilterSensitiveLog = (obj) => ({
778
+ ...obj,
779
+ });
780
+ export const UpdateLicenseManagerReportGeneratorResponseFilterSensitiveLog = (obj) => ({
781
+ ...obj,
782
+ });
783
+ export const UpdateLicenseSpecificationsForResourceRequestFilterSensitiveLog = (obj) => ({
784
+ ...obj,
785
+ });
786
+ export const UpdateLicenseSpecificationsForResourceResponseFilterSensitiveLog = (obj) => ({
787
+ ...obj,
788
+ });
789
+ export const UpdateServiceSettingsRequestFilterSensitiveLog = (obj) => ({
790
+ ...obj,
791
+ });
792
+ export const UpdateServiceSettingsResponseFilterSensitiveLog = (obj) => ({
793
+ ...obj,
794
+ });