@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.
- package/CHANGELOG.md +8 -0
- package/dist-es/LicenseManager.js +194 -201
- package/dist-es/LicenseManagerClient.js +22 -28
- package/dist-es/commands/AcceptGrantCommand.js +21 -28
- package/dist-es/commands/CheckInLicenseCommand.js +21 -28
- package/dist-es/commands/CheckoutBorrowLicenseCommand.js +21 -28
- package/dist-es/commands/CheckoutLicenseCommand.js +21 -28
- package/dist-es/commands/CreateGrantCommand.js +21 -28
- package/dist-es/commands/CreateGrantVersionCommand.js +21 -28
- package/dist-es/commands/CreateLicenseCommand.js +21 -28
- package/dist-es/commands/CreateLicenseConfigurationCommand.js +21 -28
- package/dist-es/commands/CreateLicenseConversionTaskForResourceCommand.js +21 -28
- package/dist-es/commands/CreateLicenseManagerReportGeneratorCommand.js +21 -28
- package/dist-es/commands/CreateLicenseVersionCommand.js +21 -28
- package/dist-es/commands/CreateTokenCommand.js +21 -28
- package/dist-es/commands/DeleteGrantCommand.js +21 -28
- package/dist-es/commands/DeleteLicenseCommand.js +21 -28
- package/dist-es/commands/DeleteLicenseConfigurationCommand.js +21 -28
- package/dist-es/commands/DeleteLicenseManagerReportGeneratorCommand.js +21 -28
- package/dist-es/commands/DeleteTokenCommand.js +21 -28
- package/dist-es/commands/ExtendLicenseConsumptionCommand.js +21 -28
- package/dist-es/commands/GetAccessTokenCommand.js +21 -28
- package/dist-es/commands/GetGrantCommand.js +21 -28
- package/dist-es/commands/GetLicenseCommand.js +21 -28
- package/dist-es/commands/GetLicenseConfigurationCommand.js +21 -28
- package/dist-es/commands/GetLicenseConversionTaskCommand.js +21 -28
- package/dist-es/commands/GetLicenseManagerReportGeneratorCommand.js +21 -28
- package/dist-es/commands/GetLicenseUsageCommand.js +21 -28
- package/dist-es/commands/GetServiceSettingsCommand.js +21 -28
- package/dist-es/commands/ListAssociationsForLicenseConfigurationCommand.js +21 -28
- package/dist-es/commands/ListDistributedGrantsCommand.js +21 -28
- package/dist-es/commands/ListFailuresForLicenseConfigurationOperationsCommand.js +21 -28
- package/dist-es/commands/ListLicenseConfigurationsCommand.js +21 -28
- package/dist-es/commands/ListLicenseConversionTasksCommand.js +21 -28
- package/dist-es/commands/ListLicenseManagerReportGeneratorsCommand.js +21 -28
- package/dist-es/commands/ListLicenseSpecificationsForResourceCommand.js +21 -28
- package/dist-es/commands/ListLicenseVersionsCommand.js +21 -28
- package/dist-es/commands/ListLicensesCommand.js +21 -28
- package/dist-es/commands/ListReceivedGrantsCommand.js +21 -28
- package/dist-es/commands/ListReceivedLicensesCommand.js +21 -28
- package/dist-es/commands/ListResourceInventoryCommand.js +21 -28
- package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
- package/dist-es/commands/ListTokensCommand.js +21 -28
- package/dist-es/commands/ListUsageForLicenseConfigurationCommand.js +21 -28
- package/dist-es/commands/RejectGrantCommand.js +21 -28
- package/dist-es/commands/TagResourceCommand.js +21 -28
- package/dist-es/commands/UntagResourceCommand.js +21 -28
- package/dist-es/commands/UpdateLicenseConfigurationCommand.js +21 -28
- package/dist-es/commands/UpdateLicenseManagerReportGeneratorCommand.js +21 -28
- package/dist-es/commands/UpdateLicenseSpecificationsForResourceCommand.js +21 -28
- package/dist-es/commands/UpdateServiceSettingsCommand.js +21 -28
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/LicenseManagerServiceException.js +5 -10
- package/dist-es/models/models_0.js +605 -340
- package/dist-es/protocols/Aws_json1_1.js +3776 -4747
- 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,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
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
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
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
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
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
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
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
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
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
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
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
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
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
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
|
-
|
|
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
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
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
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
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
|
-
|
|
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
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
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
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
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
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
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
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
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
|
-
|
|
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
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
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
|
-
|
|
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
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
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
|
-
|
|
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
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
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
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
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
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
export
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
export
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
export
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
export
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
export
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
export
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
export
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
export
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
export
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
export
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
export
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
export
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
export
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
export
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
export
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
export
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
export
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
export
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
export
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
export
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
export
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
export
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
export
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
export
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
export
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
export
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
export
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
export
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
export
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
export
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
export
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
export
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
export
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
export
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
export
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
export
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
export
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
export
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
export
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
export
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
export
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
export
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
export
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
export
|
|
528
|
-
|
|
529
|
-
|
|
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
|
+
});
|