@aws-sdk/client-license-manager 3.1075.0 → 3.1076.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/dist-cjs/index.js +2500 -15
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -1
- package/package.json +8 -8
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -46
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/LicenseManagerServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -243
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -39
- package/dist-cjs/schemas/schemas_0.js +0 -1999
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,57 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsJson1_1Protocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
|
|
17
|
+
const defaultLicenseManagerHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
18
|
+
return {
|
|
19
|
+
operation: getSmithyContext(context).operation,
|
|
20
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
21
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
22
|
+
})(),
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
26
|
+
return {
|
|
27
|
+
schemeId: "aws.auth#sigv4",
|
|
28
|
+
signingProperties: {
|
|
29
|
+
name: "license-manager",
|
|
30
|
+
region: authParameters.region,
|
|
31
|
+
},
|
|
32
|
+
propertiesExtractor: (config, context) => ({
|
|
33
|
+
signingProperties: {
|
|
34
|
+
config,
|
|
35
|
+
context,
|
|
36
|
+
},
|
|
37
|
+
}),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
const defaultLicenseManagerHttpAuthSchemeProvider = (authParameters) => {
|
|
41
|
+
const options = [];
|
|
42
|
+
switch (authParameters.operation) {
|
|
43
|
+
default: {
|
|
44
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
return options;
|
|
48
|
+
};
|
|
49
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
50
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
51
|
+
return Object.assign(config_0, {
|
|
52
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
53
|
+
});
|
|
54
|
+
};
|
|
19
55
|
|
|
20
56
|
const resolveClientEndpointParameters = (options) => {
|
|
21
57
|
return Object.assign(options, {
|
|
@@ -31,6 +67,2175 @@ const commonParams = {
|
|
|
31
67
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
68
|
};
|
|
33
69
|
|
|
70
|
+
var version = "3.1075.0";
|
|
71
|
+
var packageInfo = {
|
|
72
|
+
version: version};
|
|
73
|
+
|
|
74
|
+
const k = "ref";
|
|
75
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
76
|
+
const _data = {
|
|
77
|
+
conditions: [
|
|
78
|
+
[c, [g]],
|
|
79
|
+
[c, j],
|
|
80
|
+
["aws.partition", j, d],
|
|
81
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
82
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
83
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
|
|
85
|
+
],
|
|
86
|
+
results: [
|
|
87
|
+
[a],
|
|
88
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
89
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
90
|
+
[g, i],
|
|
91
|
+
["https://license-manager-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
92
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
93
|
+
["https://license-manager-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
94
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
95
|
+
["https://license-manager.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
96
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
97
|
+
["https://license-manager.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
98
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
99
|
+
]
|
|
100
|
+
};
|
|
101
|
+
const root = 2;
|
|
102
|
+
const r = 100_000_000;
|
|
103
|
+
const nodes = new Int32Array([
|
|
104
|
+
-1, 1, -1,
|
|
105
|
+
0, 12, 3,
|
|
106
|
+
1, 4, r + 11,
|
|
107
|
+
2, 5, r + 11,
|
|
108
|
+
3, 8, 6,
|
|
109
|
+
4, 7, r + 10,
|
|
110
|
+
5, r + 8, r + 9,
|
|
111
|
+
4, 10, 9,
|
|
112
|
+
6, r + 6, r + 7,
|
|
113
|
+
5, 11, r + 5,
|
|
114
|
+
6, r + 4, r + 5,
|
|
115
|
+
3, r + 1, 13,
|
|
116
|
+
4, r + 2, r + 3,
|
|
117
|
+
]);
|
|
118
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
119
|
+
|
|
120
|
+
const cache = new EndpointCache({
|
|
121
|
+
size: 50,
|
|
122
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
123
|
+
});
|
|
124
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
125
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
126
|
+
endpointParams: endpointParams,
|
|
127
|
+
logger: context.logger,
|
|
128
|
+
}));
|
|
129
|
+
};
|
|
130
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
131
|
+
|
|
132
|
+
class LicenseManagerServiceException extends ServiceException {
|
|
133
|
+
constructor(options) {
|
|
134
|
+
super(options);
|
|
135
|
+
Object.setPrototypeOf(this, LicenseManagerServiceException.prototype);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
class AccessDeniedException extends LicenseManagerServiceException {
|
|
140
|
+
name = "AccessDeniedException";
|
|
141
|
+
$fault = "client";
|
|
142
|
+
Message;
|
|
143
|
+
constructor(opts) {
|
|
144
|
+
super({
|
|
145
|
+
name: "AccessDeniedException",
|
|
146
|
+
$fault: "client",
|
|
147
|
+
...opts,
|
|
148
|
+
});
|
|
149
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
150
|
+
this.Message = opts.Message;
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
class AuthorizationException extends LicenseManagerServiceException {
|
|
154
|
+
name = "AuthorizationException";
|
|
155
|
+
$fault = "client";
|
|
156
|
+
Message;
|
|
157
|
+
constructor(opts) {
|
|
158
|
+
super({
|
|
159
|
+
name: "AuthorizationException",
|
|
160
|
+
$fault: "client",
|
|
161
|
+
...opts,
|
|
162
|
+
});
|
|
163
|
+
Object.setPrototypeOf(this, AuthorizationException.prototype);
|
|
164
|
+
this.Message = opts.Message;
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
class InvalidParameterValueException extends LicenseManagerServiceException {
|
|
168
|
+
name = "InvalidParameterValueException";
|
|
169
|
+
$fault = "client";
|
|
170
|
+
Message;
|
|
171
|
+
constructor(opts) {
|
|
172
|
+
super({
|
|
173
|
+
name: "InvalidParameterValueException",
|
|
174
|
+
$fault: "client",
|
|
175
|
+
...opts,
|
|
176
|
+
});
|
|
177
|
+
Object.setPrototypeOf(this, InvalidParameterValueException.prototype);
|
|
178
|
+
this.Message = opts.Message;
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
class RateLimitExceededException extends LicenseManagerServiceException {
|
|
182
|
+
name = "RateLimitExceededException";
|
|
183
|
+
$fault = "client";
|
|
184
|
+
Message;
|
|
185
|
+
constructor(opts) {
|
|
186
|
+
super({
|
|
187
|
+
name: "RateLimitExceededException",
|
|
188
|
+
$fault: "client",
|
|
189
|
+
...opts,
|
|
190
|
+
});
|
|
191
|
+
Object.setPrototypeOf(this, RateLimitExceededException.prototype);
|
|
192
|
+
this.Message = opts.Message;
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
class ResourceLimitExceededException extends LicenseManagerServiceException {
|
|
196
|
+
name = "ResourceLimitExceededException";
|
|
197
|
+
$fault = "client";
|
|
198
|
+
Message;
|
|
199
|
+
constructor(opts) {
|
|
200
|
+
super({
|
|
201
|
+
name: "ResourceLimitExceededException",
|
|
202
|
+
$fault: "client",
|
|
203
|
+
...opts,
|
|
204
|
+
});
|
|
205
|
+
Object.setPrototypeOf(this, ResourceLimitExceededException.prototype);
|
|
206
|
+
this.Message = opts.Message;
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
class ServerInternalException extends LicenseManagerServiceException {
|
|
210
|
+
name = "ServerInternalException";
|
|
211
|
+
$fault = "server";
|
|
212
|
+
Message;
|
|
213
|
+
constructor(opts) {
|
|
214
|
+
super({
|
|
215
|
+
name: "ServerInternalException",
|
|
216
|
+
$fault: "server",
|
|
217
|
+
...opts,
|
|
218
|
+
});
|
|
219
|
+
Object.setPrototypeOf(this, ServerInternalException.prototype);
|
|
220
|
+
this.Message = opts.Message;
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
class ValidationException extends LicenseManagerServiceException {
|
|
224
|
+
name = "ValidationException";
|
|
225
|
+
$fault = "client";
|
|
226
|
+
Message;
|
|
227
|
+
constructor(opts) {
|
|
228
|
+
super({
|
|
229
|
+
name: "ValidationException",
|
|
230
|
+
$fault: "client",
|
|
231
|
+
...opts,
|
|
232
|
+
});
|
|
233
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
234
|
+
this.Message = opts.Message;
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
class ConflictException extends LicenseManagerServiceException {
|
|
238
|
+
name = "ConflictException";
|
|
239
|
+
$fault = "client";
|
|
240
|
+
Message;
|
|
241
|
+
constructor(opts) {
|
|
242
|
+
super({
|
|
243
|
+
name: "ConflictException",
|
|
244
|
+
$fault: "client",
|
|
245
|
+
...opts,
|
|
246
|
+
});
|
|
247
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
248
|
+
this.Message = opts.Message;
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
class ResourceNotFoundException extends LicenseManagerServiceException {
|
|
252
|
+
name = "ResourceNotFoundException";
|
|
253
|
+
$fault = "client";
|
|
254
|
+
Message;
|
|
255
|
+
constructor(opts) {
|
|
256
|
+
super({
|
|
257
|
+
name: "ResourceNotFoundException",
|
|
258
|
+
$fault: "client",
|
|
259
|
+
...opts,
|
|
260
|
+
});
|
|
261
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
262
|
+
this.Message = opts.Message;
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
class EntitlementNotAllowedException extends LicenseManagerServiceException {
|
|
266
|
+
name = "EntitlementNotAllowedException";
|
|
267
|
+
$fault = "client";
|
|
268
|
+
Message;
|
|
269
|
+
constructor(opts) {
|
|
270
|
+
super({
|
|
271
|
+
name: "EntitlementNotAllowedException",
|
|
272
|
+
$fault: "client",
|
|
273
|
+
...opts,
|
|
274
|
+
});
|
|
275
|
+
Object.setPrototypeOf(this, EntitlementNotAllowedException.prototype);
|
|
276
|
+
this.Message = opts.Message;
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
class NoEntitlementsAllowedException extends LicenseManagerServiceException {
|
|
280
|
+
name = "NoEntitlementsAllowedException";
|
|
281
|
+
$fault = "client";
|
|
282
|
+
Message;
|
|
283
|
+
constructor(opts) {
|
|
284
|
+
super({
|
|
285
|
+
name: "NoEntitlementsAllowedException",
|
|
286
|
+
$fault: "client",
|
|
287
|
+
...opts,
|
|
288
|
+
});
|
|
289
|
+
Object.setPrototypeOf(this, NoEntitlementsAllowedException.prototype);
|
|
290
|
+
this.Message = opts.Message;
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
class RedirectException extends LicenseManagerServiceException {
|
|
294
|
+
name = "RedirectException";
|
|
295
|
+
$fault = "client";
|
|
296
|
+
Location;
|
|
297
|
+
Message;
|
|
298
|
+
constructor(opts) {
|
|
299
|
+
super({
|
|
300
|
+
name: "RedirectException",
|
|
301
|
+
$fault: "client",
|
|
302
|
+
...opts,
|
|
303
|
+
});
|
|
304
|
+
Object.setPrototypeOf(this, RedirectException.prototype);
|
|
305
|
+
this.Location = opts.Location;
|
|
306
|
+
this.Message = opts.Message;
|
|
307
|
+
}
|
|
308
|
+
}
|
|
309
|
+
class UnsupportedDigitalSignatureMethodException extends LicenseManagerServiceException {
|
|
310
|
+
name = "UnsupportedDigitalSignatureMethodException";
|
|
311
|
+
$fault = "client";
|
|
312
|
+
Message;
|
|
313
|
+
constructor(opts) {
|
|
314
|
+
super({
|
|
315
|
+
name: "UnsupportedDigitalSignatureMethodException",
|
|
316
|
+
$fault: "client",
|
|
317
|
+
...opts,
|
|
318
|
+
});
|
|
319
|
+
Object.setPrototypeOf(this, UnsupportedDigitalSignatureMethodException.prototype);
|
|
320
|
+
this.Message = opts.Message;
|
|
321
|
+
}
|
|
322
|
+
}
|
|
323
|
+
class FilterLimitExceededException extends LicenseManagerServiceException {
|
|
324
|
+
name = "FilterLimitExceededException";
|
|
325
|
+
$fault = "client";
|
|
326
|
+
Message;
|
|
327
|
+
constructor(opts) {
|
|
328
|
+
super({
|
|
329
|
+
name: "FilterLimitExceededException",
|
|
330
|
+
$fault: "client",
|
|
331
|
+
...opts,
|
|
332
|
+
});
|
|
333
|
+
Object.setPrototypeOf(this, FilterLimitExceededException.prototype);
|
|
334
|
+
this.Message = opts.Message;
|
|
335
|
+
}
|
|
336
|
+
}
|
|
337
|
+
class FailedDependencyException extends LicenseManagerServiceException {
|
|
338
|
+
name = "FailedDependencyException";
|
|
339
|
+
$fault = "client";
|
|
340
|
+
Message;
|
|
341
|
+
ErrorCode;
|
|
342
|
+
constructor(opts) {
|
|
343
|
+
super({
|
|
344
|
+
name: "FailedDependencyException",
|
|
345
|
+
$fault: "client",
|
|
346
|
+
...opts,
|
|
347
|
+
});
|
|
348
|
+
Object.setPrototypeOf(this, FailedDependencyException.prototype);
|
|
349
|
+
this.Message = opts.Message;
|
|
350
|
+
this.ErrorCode = opts.ErrorCode;
|
|
351
|
+
}
|
|
352
|
+
}
|
|
353
|
+
class InvalidResourceStateException extends LicenseManagerServiceException {
|
|
354
|
+
name = "InvalidResourceStateException";
|
|
355
|
+
$fault = "client";
|
|
356
|
+
Message;
|
|
357
|
+
constructor(opts) {
|
|
358
|
+
super({
|
|
359
|
+
name: "InvalidResourceStateException",
|
|
360
|
+
$fault: "client",
|
|
361
|
+
...opts,
|
|
362
|
+
});
|
|
363
|
+
Object.setPrototypeOf(this, InvalidResourceStateException.prototype);
|
|
364
|
+
this.Message = opts.Message;
|
|
365
|
+
}
|
|
366
|
+
}
|
|
367
|
+
class LicenseUsageException extends LicenseManagerServiceException {
|
|
368
|
+
name = "LicenseUsageException";
|
|
369
|
+
$fault = "client";
|
|
370
|
+
Message;
|
|
371
|
+
constructor(opts) {
|
|
372
|
+
super({
|
|
373
|
+
name: "LicenseUsageException",
|
|
374
|
+
$fault: "client",
|
|
375
|
+
...opts,
|
|
376
|
+
});
|
|
377
|
+
Object.setPrototypeOf(this, LicenseUsageException.prototype);
|
|
378
|
+
this.Message = opts.Message;
|
|
379
|
+
}
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
const _A = "Asset";
|
|
383
|
+
const _AA = "AssetArn";
|
|
384
|
+
const _AAS = "AmiAssociationScope";
|
|
385
|
+
const _AC = "AssociationCount";
|
|
386
|
+
const _ACI = "AllowCheckIn";
|
|
387
|
+
const _ADE = "AccessDeniedException";
|
|
388
|
+
const _ADI = "AutomatedDiscoveryInformation";
|
|
389
|
+
const _AE = "AuthorizationException";
|
|
390
|
+
const _AECI = "AllowEarlyCheckIn";
|
|
391
|
+
const _AG = "AcceptGrant";
|
|
392
|
+
const _AGR = "AcceptGrantRequest";
|
|
393
|
+
const _AGRc = "AcceptGrantResponse";
|
|
394
|
+
const _AI = "AmiId";
|
|
395
|
+
const _AL = "AssetList";
|
|
396
|
+
const _ALARARN = "AssociatedLicenseAssetRulesetARNs";
|
|
397
|
+
const _ALS = "AddLicenseSpecifications";
|
|
398
|
+
const _AO = "AllowedOperations";
|
|
399
|
+
const _AOB = "ActivationOverrideBehavior";
|
|
400
|
+
const _ARS = "AndRuleStatement";
|
|
401
|
+
const _AT = "AccessToken";
|
|
402
|
+
const _ATs = "AssociationTime";
|
|
403
|
+
const _ATss = "AssetType";
|
|
404
|
+
const _As = "Assets";
|
|
405
|
+
const _B = "Beneficiary";
|
|
406
|
+
const _BC = "BorrowConfiguration";
|
|
407
|
+
const _Be = "Begin";
|
|
408
|
+
const _C = "Condition";
|
|
409
|
+
const _CAD = "CrossAccountDiscovery";
|
|
410
|
+
const _CADSS = "CrossAccountDiscoveryServiceStatus";
|
|
411
|
+
const _CBL = "CheckoutBorrowLicense";
|
|
412
|
+
const _CBLR = "CheckoutBorrowLicenseRequest";
|
|
413
|
+
const _CBLRh = "CheckoutBorrowLicenseResponse";
|
|
414
|
+
const _CC = "ConsumptionConfiguration";
|
|
415
|
+
const _CE = "ConflictException";
|
|
416
|
+
const _CG = "CreateGrant";
|
|
417
|
+
const _CGR = "CreateGrantRequest";
|
|
418
|
+
const _CGRr = "CreateGrantResponse";
|
|
419
|
+
const _CGV = "CreateGrantVersion";
|
|
420
|
+
const _CGVR = "CreateGrantVersionRequest";
|
|
421
|
+
const _CGVRr = "CreateGrantVersionResponse";
|
|
422
|
+
const _CIL = "CheckInLicense";
|
|
423
|
+
const _CILR = "CheckInLicenseRequest";
|
|
424
|
+
const _CILRh = "CheckInLicenseResponse";
|
|
425
|
+
const _CL = "ConsumedLicenses";
|
|
426
|
+
const _CLAG = "CreateLicenseAssetGroup";
|
|
427
|
+
const _CLAGR = "CreateLicenseAssetGroupRequest";
|
|
428
|
+
const _CLAGRr = "CreateLicenseAssetGroupResponse";
|
|
429
|
+
const _CLAR = "CreateLicenseAssetRuleset";
|
|
430
|
+
const _CLARR = "CreateLicenseAssetRulesetRequest";
|
|
431
|
+
const _CLARRr = "CreateLicenseAssetRulesetResponse";
|
|
432
|
+
const _CLC = "CreateLicenseConfiguration";
|
|
433
|
+
const _CLCR = "CreateLicenseConfigurationRequest";
|
|
434
|
+
const _CLCRr = "CreateLicenseConfigurationResponse";
|
|
435
|
+
const _CLCTFR = "CreateLicenseConversionTaskForResource";
|
|
436
|
+
const _CLCTFRR = "CreateLicenseConversionTaskForResourceRequest";
|
|
437
|
+
const _CLCTFRRr = "CreateLicenseConversionTaskForResourceResponse";
|
|
438
|
+
const _CLMRG = "CreateLicenseManagerReportGenerator";
|
|
439
|
+
const _CLMRGR = "CreateLicenseManagerReportGeneratorRequest";
|
|
440
|
+
const _CLMRGRr = "CreateLicenseManagerReportGeneratorResponse";
|
|
441
|
+
const _CLR = "CheckoutLicenseRequest";
|
|
442
|
+
const _CLRh = "CheckoutLicenseResponse";
|
|
443
|
+
const _CLRr = "CreateLicenseRequest";
|
|
444
|
+
const _CLRre = "CreateLicenseResponse";
|
|
445
|
+
const _CLS = "ConsumedLicenseSummary";
|
|
446
|
+
const _CLSL = "ConsumedLicenseSummaryList";
|
|
447
|
+
const _CLV = "CreateLicenseVersion";
|
|
448
|
+
const _CLVR = "CreateLicenseVersionRequest";
|
|
449
|
+
const _CLVRr = "CreateLicenseVersionResponse";
|
|
450
|
+
const _CLh = "CheckoutLicense";
|
|
451
|
+
const _CLr = "CreateLicense";
|
|
452
|
+
const _CM = "CheckoutMetadata";
|
|
453
|
+
const _CRD = "CrossRegionDiscovery";
|
|
454
|
+
const _CRDHR = "CrossRegionDiscoveryHomeRegion";
|
|
455
|
+
const _CRDS = "CrossRegionDiscoveryStatus";
|
|
456
|
+
const _CRDSR = "CrossRegionDiscoverySourceRegions";
|
|
457
|
+
const _CT = "ClientToken";
|
|
458
|
+
const _CTR = "CreateTokenRequest";
|
|
459
|
+
const _CTRr = "CreateTokenResponse";
|
|
460
|
+
const _CTh = "CheckoutType";
|
|
461
|
+
const _CTr = "CreateTime";
|
|
462
|
+
const _CTre = "CreateToken";
|
|
463
|
+
const _CV = "ConsumedValue";
|
|
464
|
+
const _Co = "Constraint";
|
|
465
|
+
const _D = "Description";
|
|
466
|
+
const _DD = "DeletionDate";
|
|
467
|
+
const _DG = "DeleteGrant";
|
|
468
|
+
const _DGR = "DeleteGrantRequest";
|
|
469
|
+
const _DGRe = "DeleteGrantResponse";
|
|
470
|
+
const _DL = "DeleteLicense";
|
|
471
|
+
const _DLAG = "DeleteLicenseAssetGroup";
|
|
472
|
+
const _DLAGR = "DeleteLicenseAssetGroupRequest";
|
|
473
|
+
const _DLAGRe = "DeleteLicenseAssetGroupResponse";
|
|
474
|
+
const _DLAR = "DeleteLicenseAssetRuleset";
|
|
475
|
+
const _DLARR = "DeleteLicenseAssetRulesetRequest";
|
|
476
|
+
const _DLARRe = "DeleteLicenseAssetRulesetResponse";
|
|
477
|
+
const _DLC = "DestinationLicenseContext";
|
|
478
|
+
const _DLCR = "DeleteLicenseConfigurationRequest";
|
|
479
|
+
const _DLCRe = "DeleteLicenseConfigurationResponse";
|
|
480
|
+
const _DLCe = "DeleteLicenseConfiguration";
|
|
481
|
+
const _DLMRG = "DeleteLicenseManagerReportGenerator";
|
|
482
|
+
const _DLMRGR = "DeleteLicenseManagerReportGeneratorRequest";
|
|
483
|
+
const _DLMRGRe = "DeleteLicenseManagerReportGeneratorResponse";
|
|
484
|
+
const _DLR = "DeleteLicenseRequest";
|
|
485
|
+
const _DLRe = "DeleteLicenseResponse";
|
|
486
|
+
const _DR = "DatetimeRange";
|
|
487
|
+
const _DRr = "DryRun";
|
|
488
|
+
const _DSM = "DigitalSignatureMethod";
|
|
489
|
+
const _DT = "DeleteToken";
|
|
490
|
+
const _DTR = "DeleteTokenRequest";
|
|
491
|
+
const _DTRe = "DeleteTokenResponse";
|
|
492
|
+
const _DWNF = "DisassociateWhenNotFound";
|
|
493
|
+
const _E = "Entitlements";
|
|
494
|
+
const _EA = "EntitlementsAllowed";
|
|
495
|
+
const _EC = "ErrorCode";
|
|
496
|
+
const _ECAD = "EnableCrossAccountsDiscovery";
|
|
497
|
+
const _ED = "EntitlementData";
|
|
498
|
+
const _EDL = "EntitlementDataList";
|
|
499
|
+
const _EDSR = "EnabledDiscoverySourceRegions";
|
|
500
|
+
const _EI = "EnableIntegration";
|
|
501
|
+
const _EID = "ExpirationInDays";
|
|
502
|
+
const _EL = "EntitlementList";
|
|
503
|
+
const _ELC = "ExtendLicenseConsumption";
|
|
504
|
+
const _ELCR = "ExtendLicenseConsumptionRequest";
|
|
505
|
+
const _ELCRx = "ExtendLicenseConsumptionResponse";
|
|
506
|
+
const _EM = "ErrorMessage";
|
|
507
|
+
const _ENAE = "EntitlementNotAllowedException";
|
|
508
|
+
const _ET = "EndTime";
|
|
509
|
+
const _ETx = "ExpirationTime";
|
|
510
|
+
const _EU = "EntitlementUsage";
|
|
511
|
+
const _EUL = "EntitlementUsageList";
|
|
512
|
+
const _EUn = "EntitlementUsages";
|
|
513
|
+
const _En = "End";
|
|
514
|
+
const _Ent = "Entitlement";
|
|
515
|
+
const _Ex = "Expiration";
|
|
516
|
+
const _F = "Filter";
|
|
517
|
+
const _FDE = "FailedDependencyException";
|
|
518
|
+
const _FL = "FilterList";
|
|
519
|
+
const _FLEE = "FilterLimitExceededException";
|
|
520
|
+
const _FT = "FailureTime";
|
|
521
|
+
const _FV = "FilterValues";
|
|
522
|
+
const _Fi = "Filters";
|
|
523
|
+
const _G = "Grant";
|
|
524
|
+
const _GA = "GrantArn";
|
|
525
|
+
const _GAT = "GetAccessToken";
|
|
526
|
+
const _GATR = "GetAccessTokenRequest";
|
|
527
|
+
const _GATRe = "GetAccessTokenResponse";
|
|
528
|
+
const _GAr = "GrantArns";
|
|
529
|
+
const _GG = "GetGrant";
|
|
530
|
+
const _GGR = "GetGrantRequest";
|
|
531
|
+
const _GGRe = "GetGrantResponse";
|
|
532
|
+
const _GL = "GrantedLicense";
|
|
533
|
+
const _GLAG = "GetLicenseAssetGroup";
|
|
534
|
+
const _GLAGR = "GetLicenseAssetGroupRequest";
|
|
535
|
+
const _GLAGRe = "GetLicenseAssetGroupResponse";
|
|
536
|
+
const _GLAR = "GetLicenseAssetRuleset";
|
|
537
|
+
const _GLARR = "GetLicenseAssetRulesetRequest";
|
|
538
|
+
const _GLARRe = "GetLicenseAssetRulesetResponse";
|
|
539
|
+
const _GLC = "GetLicenseConfiguration";
|
|
540
|
+
const _GLCR = "GetLicenseConfigurationRequest";
|
|
541
|
+
const _GLCRe = "GetLicenseConfigurationResponse";
|
|
542
|
+
const _GLCT = "GetLicenseConversionTask";
|
|
543
|
+
const _GLCTR = "GetLicenseConversionTaskRequest";
|
|
544
|
+
const _GLCTRe = "GetLicenseConversionTaskResponse";
|
|
545
|
+
const _GLL = "GrantedLicenseList";
|
|
546
|
+
const _GLMRG = "GetLicenseManagerReportGenerator";
|
|
547
|
+
const _GLMRGR = "GetLicenseManagerReportGeneratorRequest";
|
|
548
|
+
const _GLMRGRe = "GetLicenseManagerReportGeneratorResponse";
|
|
549
|
+
const _GLR = "GetLicenseRequest";
|
|
550
|
+
const _GLRe = "GetLicenseResponse";
|
|
551
|
+
const _GLU = "GetLicenseUsage";
|
|
552
|
+
const _GLUR = "GetLicenseUsageRequest";
|
|
553
|
+
const _GLURe = "GetLicenseUsageResponse";
|
|
554
|
+
const _GLe = "GetLicense";
|
|
555
|
+
const _GLr = "GrantList";
|
|
556
|
+
const _GN = "GrantName";
|
|
557
|
+
const _GO = "GrantedOperations";
|
|
558
|
+
const _GPA = "GranteePrincipalArn";
|
|
559
|
+
const _GS = "GrantStatus";
|
|
560
|
+
const _GSS = "GetServiceSettings";
|
|
561
|
+
const _GSSR = "GetServiceSettingsRequest";
|
|
562
|
+
const _GSSRe = "GetServiceSettingsResponse";
|
|
563
|
+
const _Gr = "Grants";
|
|
564
|
+
const _HI = "HostId";
|
|
565
|
+
const _HR = "HomeRegion";
|
|
566
|
+
const _I = "Issuer";
|
|
567
|
+
const _IA = "IssuedAt";
|
|
568
|
+
const _ID = "IssuerDetails";
|
|
569
|
+
const _IF = "InventoryFilter";
|
|
570
|
+
const _IFL = "InventoryFilterList";
|
|
571
|
+
const _IPVE = "InvalidParameterValueException";
|
|
572
|
+
const _IRS = "InstanceRuleStatement";
|
|
573
|
+
const _IRSE = "InvalidResourceStateException";
|
|
574
|
+
const _IT = "InstanceType";
|
|
575
|
+
const _K = "Key";
|
|
576
|
+
const _KF = "KeyFingerprint";
|
|
577
|
+
const _KTM = "KeyToMatch";
|
|
578
|
+
const _L = "Location";
|
|
579
|
+
const _LA = "LicenseArn";
|
|
580
|
+
const _LADT = "LatestAssetDiscoveryTime";
|
|
581
|
+
const _LAFLAG = "ListAssetsForLicenseAssetGroup";
|
|
582
|
+
const _LAFLAGR = "ListAssetsForLicenseAssetGroupRequest";
|
|
583
|
+
const _LAFLAGRi = "ListAssetsForLicenseAssetGroupResponse";
|
|
584
|
+
const _LAFLC = "ListAssociationsForLicenseConfiguration";
|
|
585
|
+
const _LAFLCR = "ListAssociationsForLicenseConfigurationRequest";
|
|
586
|
+
const _LAFLCRi = "ListAssociationsForLicenseConfigurationResponse";
|
|
587
|
+
const _LAG = "LicenseAssetGroup";
|
|
588
|
+
const _LAGA = "LicenseAssetGroupArn";
|
|
589
|
+
const _LAGC = "LicenseAssetGroupConfigurations";
|
|
590
|
+
const _LAGCL = "LicenseAssetGroupConfigurationList";
|
|
591
|
+
const _LAGCi = "LicenseAssetGroupConfiguration";
|
|
592
|
+
const _LAGL = "LicenseAssetGroupList";
|
|
593
|
+
const _LAGP = "LicenseAssetGroupProperty";
|
|
594
|
+
const _LAGPL = "LicenseAssetGroupPropertyList";
|
|
595
|
+
const _LAGi = "LicenseAssetGroups";
|
|
596
|
+
const _LAR = "LicenseAssetRuleset";
|
|
597
|
+
const _LARA = "LicenseAssetRulesetArn";
|
|
598
|
+
const _LARL = "LicenseAssetRuleList";
|
|
599
|
+
const _LARLi = "LicenseAssetRulesetList";
|
|
600
|
+
const _LARi = "LicenseAssetRule";
|
|
601
|
+
const _LARic = "LicenseAssetRulesets";
|
|
602
|
+
const _LAi = "LicenseArns";
|
|
603
|
+
const _LC = "LicenseCount";
|
|
604
|
+
const _LCA = "LicenseConfigurationArn";
|
|
605
|
+
const _LCAi = "LicenseConfigurationAssociation";
|
|
606
|
+
const _LCAic = "LicenseConfigurationAssociations";
|
|
607
|
+
const _LCAice = "LicenseConfigurationArns";
|
|
608
|
+
const _LCC = "LicenseConversionContext";
|
|
609
|
+
const _LCHL = "LicenseCountHardLimit";
|
|
610
|
+
const _LCI = "LicenseConfigurationId";
|
|
611
|
+
const _LCRS = "LicenseConfigurationRuleStatement";
|
|
612
|
+
const _LCS = "LicenseConfigurationStatus";
|
|
613
|
+
const _LCT = "LicenseConsumptionToken";
|
|
614
|
+
const _LCTI = "LicenseConversionTaskId";
|
|
615
|
+
const _LCTi = "LicenseCountingType";
|
|
616
|
+
const _LCTic = "LicenseConversionTime";
|
|
617
|
+
const _LCTice = "LicenseConversionTask";
|
|
618
|
+
const _LCTicen = "LicenseConversionTasks";
|
|
619
|
+
const _LCU = "LicenseConfigurationUsage";
|
|
620
|
+
const _LCUL = "LicenseConfigurationUsageList";
|
|
621
|
+
const _LCi = "LicenseConfiguration";
|
|
622
|
+
const _LCic = "LicenseConfigurations";
|
|
623
|
+
const _LDG = "ListDistributedGrants";
|
|
624
|
+
const _LDGR = "ListDistributedGrantsRequest";
|
|
625
|
+
const _LDGRi = "ListDistributedGrantsResponse";
|
|
626
|
+
const _LE = "LicenseExpiry";
|
|
627
|
+
const _LFFLCO = "ListFailuresForLicenseConfigurationOperations";
|
|
628
|
+
const _LFFLCOR = "ListFailuresForLicenseConfigurationOperationsRequest";
|
|
629
|
+
const _LFFLCORi = "ListFailuresForLicenseConfigurationOperationsResponse";
|
|
630
|
+
const _LL = "LicenseList";
|
|
631
|
+
const _LLAG = "ListLicenseAssetGroups";
|
|
632
|
+
const _LLAGR = "ListLicenseAssetGroupsRequest";
|
|
633
|
+
const _LLAGRi = "ListLicenseAssetGroupsResponse";
|
|
634
|
+
const _LLAR = "ListLicenseAssetRulesets";
|
|
635
|
+
const _LLARR = "ListLicenseAssetRulesetsRequest";
|
|
636
|
+
const _LLARRi = "ListLicenseAssetRulesetsResponse";
|
|
637
|
+
const _LLC = "ListLicenseConfigurations";
|
|
638
|
+
const _LLCFO = "ListLicenseConfigurationsForOrganization";
|
|
639
|
+
const _LLCFOR = "ListLicenseConfigurationsForOrganizationRequest";
|
|
640
|
+
const _LLCFORi = "ListLicenseConfigurationsForOrganizationResponse";
|
|
641
|
+
const _LLCR = "ListLicenseConfigurationsRequest";
|
|
642
|
+
const _LLCRi = "ListLicenseConfigurationsResponse";
|
|
643
|
+
const _LLCT = "ListLicenseConversionTasks";
|
|
644
|
+
const _LLCTR = "ListLicenseConversionTasksRequest";
|
|
645
|
+
const _LLCTRi = "ListLicenseConversionTasksResponse";
|
|
646
|
+
const _LLMRG = "ListLicenseManagerReportGenerators";
|
|
647
|
+
const _LLMRGR = "ListLicenseManagerReportGeneratorsRequest";
|
|
648
|
+
const _LLMRGRi = "ListLicenseManagerReportGeneratorsResponse";
|
|
649
|
+
const _LLR = "ListLicensesRequest";
|
|
650
|
+
const _LLRi = "ListLicensesResponse";
|
|
651
|
+
const _LLSFR = "ListLicenseSpecificationsForResource";
|
|
652
|
+
const _LLSFRR = "ListLicenseSpecificationsForResourceRequest";
|
|
653
|
+
const _LLSFRRi = "ListLicenseSpecificationsForResourceResponse";
|
|
654
|
+
const _LLV = "ListLicenseVersions";
|
|
655
|
+
const _LLVR = "ListLicenseVersionsRequest";
|
|
656
|
+
const _LLVRi = "ListLicenseVersionsResponse";
|
|
657
|
+
const _LLi = "ListLicenses";
|
|
658
|
+
const _LM = "LicenseMetadata";
|
|
659
|
+
const _LMRGA = "LicenseManagerReportGeneratorArn";
|
|
660
|
+
const _LMRSA = "LicenseManagerResourceShareArn";
|
|
661
|
+
const _LN = "LicenseName";
|
|
662
|
+
const _LOF = "LicenseOperationFailure";
|
|
663
|
+
const _LOFL = "LicenseOperationFailureList";
|
|
664
|
+
const _LR = "LicenseRules";
|
|
665
|
+
const _LRDT = "LatestResourceDiscoveryTime";
|
|
666
|
+
const _LRFR = "LastRunFailureReason";
|
|
667
|
+
const _LRG = "ListReceivedGrants";
|
|
668
|
+
const _LRGFO = "ListReceivedGrantsForOrganization";
|
|
669
|
+
const _LRGFOR = "ListReceivedGrantsForOrganizationRequest";
|
|
670
|
+
const _LRGFORi = "ListReceivedGrantsForOrganizationResponse";
|
|
671
|
+
const _LRGR = "ListReceivedGrantsRequest";
|
|
672
|
+
const _LRGRi = "ListReceivedGrantsResponse";
|
|
673
|
+
const _LRGT = "LastReportGenerationTime";
|
|
674
|
+
const _LRI = "ListResourceInventory";
|
|
675
|
+
const _LRIR = "ListResourceInventoryRequest";
|
|
676
|
+
const _LRIRi = "ListResourceInventoryResponse";
|
|
677
|
+
const _LRL = "ListReceivedLicenses";
|
|
678
|
+
const _LRLFO = "ListReceivedLicensesForOrganization";
|
|
679
|
+
const _LRLFOR = "ListReceivedLicensesForOrganizationRequest";
|
|
680
|
+
const _LRLFORi = "ListReceivedLicensesForOrganizationResponse";
|
|
681
|
+
const _LRLR = "ListReceivedLicensesRequest";
|
|
682
|
+
const _LRLRi = "ListReceivedLicensesResponse";
|
|
683
|
+
const _LRS = "LicenseRuleStatement";
|
|
684
|
+
const _LRSa = "LastRunStatus";
|
|
685
|
+
const _LRT = "LastRunTime";
|
|
686
|
+
const _LS = "LicenseSpecification";
|
|
687
|
+
const _LSi = "LicenseSpecifications";
|
|
688
|
+
const _LT = "ListTokens";
|
|
689
|
+
const _LTFR = "ListTagsForResource";
|
|
690
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
691
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
692
|
+
const _LTR = "ListTokensRequest";
|
|
693
|
+
const _LTRi = "ListTokensResponse";
|
|
694
|
+
const _LU = "LicenseUsage";
|
|
695
|
+
const _LUAT = "LatestUsageAnalysisTime";
|
|
696
|
+
const _LUE = "LicenseUsageException";
|
|
697
|
+
const _LUFLC = "ListUsageForLicenseConfiguration";
|
|
698
|
+
const _LUFLCR = "ListUsageForLicenseConfigurationRequest";
|
|
699
|
+
const _LUFLCRi = "ListUsageForLicenseConfigurationResponse";
|
|
700
|
+
const _Li = "License";
|
|
701
|
+
const _Lic = "Licenses";
|
|
702
|
+
const _M = "Message";
|
|
703
|
+
const _MC = "MaxCount";
|
|
704
|
+
const _ML = "MetadataList";
|
|
705
|
+
const _MPC = "MarketplaceProductCodes";
|
|
706
|
+
const _MR = "MaxResults";
|
|
707
|
+
const _MRS = "MatchingRuleStatements";
|
|
708
|
+
const _MRSL = "ManagedResourceSummaryList";
|
|
709
|
+
const _MRSLa = "MatchingRuleStatementList";
|
|
710
|
+
const _MRSa = "MatchingRuleStatement";
|
|
711
|
+
const _MRSan = "ManagedResourceSummary";
|
|
712
|
+
const _MTTLIM = "MaxTimeToLiveInMinutes";
|
|
713
|
+
const _Me = "Metadata";
|
|
714
|
+
const _N = "Name";
|
|
715
|
+
const _NEAE = "NoEntitlementsAllowedException";
|
|
716
|
+
const _NI = "NodeId";
|
|
717
|
+
const _NT = "NextToken";
|
|
718
|
+
const _O = "Options";
|
|
719
|
+
const _OAI = "OwnerAccountId";
|
|
720
|
+
const _OC = "OrganizationConfiguration";
|
|
721
|
+
const _ON = "OperationName";
|
|
722
|
+
const _ORB = "OperationRequestedBy";
|
|
723
|
+
const _ORS = "OrRuleStatement";
|
|
724
|
+
const _Ov = "Overage";
|
|
725
|
+
const _P = "Principals";
|
|
726
|
+
const _PA = "ParentArn";
|
|
727
|
+
const _PC = "ProvisionalConfiguration";
|
|
728
|
+
const _PCI = "ProductCodeId";
|
|
729
|
+
const _PCL = "ProductCodeList";
|
|
730
|
+
const _PCLI = "ProductCodeListItem";
|
|
731
|
+
const _PCT = "ProductCodeType";
|
|
732
|
+
const _PCr = "ProductCodes";
|
|
733
|
+
const _PI = "ProductInformation";
|
|
734
|
+
const _PIF = "ProductInformationFilter";
|
|
735
|
+
const _PIFC = "ProductInformationFilterComparator";
|
|
736
|
+
const _PIFL = "ProductInformationFilterList";
|
|
737
|
+
const _PIFN = "ProductInformationFilterName";
|
|
738
|
+
const _PIFV = "ProductInformationFilterValue";
|
|
739
|
+
const _PIL = "ProductInformationList";
|
|
740
|
+
const _PN = "ProductName";
|
|
741
|
+
const _PSKU = "ProductSKU";
|
|
742
|
+
const _PV = "PlatformVersion";
|
|
743
|
+
const _Pl = "Platform";
|
|
744
|
+
const _Pr = "Properties";
|
|
745
|
+
const _R = "Rules";
|
|
746
|
+
const _RA = "ResourceArn";
|
|
747
|
+
const _RAo = "RoleArns";
|
|
748
|
+
const _RC = "ReportContext";
|
|
749
|
+
const _RCA = "ReportCreatorAccount";
|
|
750
|
+
const _RE = "RedirectException";
|
|
751
|
+
const _RF = "ReportFrequency";
|
|
752
|
+
const _RG = "ReportGenerator";
|
|
753
|
+
const _RGL = "ReportGeneratorList";
|
|
754
|
+
const _RGN = "ReportGeneratorName";
|
|
755
|
+
const _RGR = "RejectGrantRequest";
|
|
756
|
+
const _RGRe = "RejectGrantResponse";
|
|
757
|
+
const _RGe = "ReportGenerators";
|
|
758
|
+
const _RGej = "RejectGrant";
|
|
759
|
+
const _RI = "ResourceInventory";
|
|
760
|
+
const _RIL = "ResourceInventoryList";
|
|
761
|
+
const _RIe = "ResourceId";
|
|
762
|
+
const _RLEE = "RateLimitExceededException";
|
|
763
|
+
const _RLEEe = "ResourceLimitExceededException";
|
|
764
|
+
const _RLS = "RemoveLicenseSpecifications";
|
|
765
|
+
const _RM = "ReceivedMetadata";
|
|
766
|
+
const _RNFE = "ResourceNotFoundException";
|
|
767
|
+
const _ROAI = "ResourceOwningAccountId";
|
|
768
|
+
const _ROI = "ResourceOwnerId";
|
|
769
|
+
const _RS = "RuleStatement";
|
|
770
|
+
const _RSM = "RegionStatusMap";
|
|
771
|
+
const _RSR = "ReceivedStatusReason";
|
|
772
|
+
const _RSe = "ResourceStatus";
|
|
773
|
+
const _RSec = "ReceivedStatus";
|
|
774
|
+
const _RSeg = "RegionStatus";
|
|
775
|
+
const _RT = "ResourceType";
|
|
776
|
+
const _RTe = "RenewType";
|
|
777
|
+
const _RTep = "ReportType";
|
|
778
|
+
const _Re = "Region";
|
|
779
|
+
const _S = "Status";
|
|
780
|
+
const _SAWSMLAR = "ShowAWSManagedLicenseAssetRulesets";
|
|
781
|
+
const _SBA = "S3BucketArn";
|
|
782
|
+
const _SIE = "ServerInternalException";
|
|
783
|
+
const _SK = "SignKey";
|
|
784
|
+
const _SL = "S3Location";
|
|
785
|
+
const _SLC = "SourceLicenseContext";
|
|
786
|
+
const _SM = "StatusMessage";
|
|
787
|
+
const _SR = "StatusReason";
|
|
788
|
+
const _SRS = "ScriptRuleStatements";
|
|
789
|
+
const _SRSL = "ScriptRuleStatementList";
|
|
790
|
+
const _SRSc = "ScriptRuleStatement";
|
|
791
|
+
const _SS = "ServiceStatus";
|
|
792
|
+
const _ST = "SignedToken";
|
|
793
|
+
const _STA = "SnsTopicArn";
|
|
794
|
+
const _STt = "StartTime";
|
|
795
|
+
const _SV = "SourceVersion";
|
|
796
|
+
const _Sc = "Script";
|
|
797
|
+
const _T = "Tags";
|
|
798
|
+
const _TD = "TokenData";
|
|
799
|
+
const _TI = "TokenId";
|
|
800
|
+
const _TIo = "TokenIds";
|
|
801
|
+
const _TK = "TagKeys";
|
|
802
|
+
const _TL = "TagList";
|
|
803
|
+
const _TLo = "TokenList";
|
|
804
|
+
const _TP = "TokenProperties";
|
|
805
|
+
const _TR = "TagResource";
|
|
806
|
+
const _TRR = "TagResourceRequest";
|
|
807
|
+
const _TRRa = "TagResourceResponse";
|
|
808
|
+
const _TT = "TokenType";
|
|
809
|
+
const _Ta = "Tag";
|
|
810
|
+
const _To = "Token";
|
|
811
|
+
const _Tok = "Tokens";
|
|
812
|
+
const _Ty = "Type";
|
|
813
|
+
const _U = "Unit";
|
|
814
|
+
const _UD = "UsageDimension";
|
|
815
|
+
const _UDSME = "UnsupportedDigitalSignatureMethodException";
|
|
816
|
+
const _ULAG = "UpdateLicenseAssetGroup";
|
|
817
|
+
const _ULAGR = "UpdateLicenseAssetGroupRequest";
|
|
818
|
+
const _ULAGRp = "UpdateLicenseAssetGroupResponse";
|
|
819
|
+
const _ULAR = "UpdateLicenseAssetRuleset";
|
|
820
|
+
const _ULARR = "UpdateLicenseAssetRulesetRequest";
|
|
821
|
+
const _ULARRp = "UpdateLicenseAssetRulesetResponse";
|
|
822
|
+
const _ULC = "UpdateLicenseConfiguration";
|
|
823
|
+
const _ULCR = "UpdateLicenseConfigurationRequest";
|
|
824
|
+
const _ULCRp = "UpdateLicenseConfigurationResponse";
|
|
825
|
+
const _ULMRG = "UpdateLicenseManagerReportGenerator";
|
|
826
|
+
const _ULMRGR = "UpdateLicenseManagerReportGeneratorRequest";
|
|
827
|
+
const _ULMRGRp = "UpdateLicenseManagerReportGeneratorResponse";
|
|
828
|
+
const _ULSFR = "UpdateLicenseSpecificationsForResource";
|
|
829
|
+
const _ULSFRR = "UpdateLicenseSpecificationsForResourceRequest";
|
|
830
|
+
const _ULSFRRp = "UpdateLicenseSpecificationsForResourceResponse";
|
|
831
|
+
const _UO = "UsageOperation";
|
|
832
|
+
const _UR = "UntagResource";
|
|
833
|
+
const _URR = "UntagResourceRequest";
|
|
834
|
+
const _URRn = "UntagResourceResponse";
|
|
835
|
+
const _USS = "UpdateServiceSettings";
|
|
836
|
+
const _USSR = "UpdateServiceSettingsRequest";
|
|
837
|
+
const _USSRp = "UpdateServiceSettingsResponse";
|
|
838
|
+
const _V = "Version";
|
|
839
|
+
const _VE = "ValidationException";
|
|
840
|
+
const _VTM = "ValueToMatch";
|
|
841
|
+
const _Va = "Validity";
|
|
842
|
+
const _Val = "Value";
|
|
843
|
+
const _Valu = "Values";
|
|
844
|
+
const _aQE = "awsQueryError";
|
|
845
|
+
const _b = "bucket";
|
|
846
|
+
const _c = "client";
|
|
847
|
+
const _e = "error";
|
|
848
|
+
const _hE = "httpError";
|
|
849
|
+
const _hH = "httpHeader";
|
|
850
|
+
const _i = "item";
|
|
851
|
+
const _kP = "keyPrefix";
|
|
852
|
+
const _lAGA = "licenseAssetGroupArns";
|
|
853
|
+
const _lCA = "licenseConfigurationArns";
|
|
854
|
+
const _p = "period";
|
|
855
|
+
const _rED = "reportEndDate";
|
|
856
|
+
const _rSD = "reportStartDate";
|
|
857
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.licensemanager";
|
|
858
|
+
const _se = "server";
|
|
859
|
+
const _v = "value";
|
|
860
|
+
const _xN = "xmlName";
|
|
861
|
+
const n0 = "com.amazonaws.licensemanager";
|
|
862
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
863
|
+
var LicenseManagerServiceException$ = [-3, _s, "LicenseManagerServiceException", 0, [], []];
|
|
864
|
+
_s_registry.registerError(LicenseManagerServiceException$, LicenseManagerServiceException);
|
|
865
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
866
|
+
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
867
|
+
{ [_aQE]: [`ServiceAccessDenied`, 401], [_e]: _c, [_hE]: 401 },
|
|
868
|
+
[_M],
|
|
869
|
+
[0]
|
|
870
|
+
];
|
|
871
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
872
|
+
var AuthorizationException$ = [-3, n0, _AE,
|
|
873
|
+
{ [_aQE]: [`AuthorizationFailure`, 403], [_e]: _c, [_hE]: 403 },
|
|
874
|
+
[_M],
|
|
875
|
+
[0]
|
|
876
|
+
];
|
|
877
|
+
n0_registry.registerError(AuthorizationException$, AuthorizationException);
|
|
878
|
+
var ConflictException$ = [-3, n0, _CE,
|
|
879
|
+
{ [_aQE]: [`ConflictException`, 409], [_e]: _c, [_hE]: 409 },
|
|
880
|
+
[_M],
|
|
881
|
+
[0]
|
|
882
|
+
];
|
|
883
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
884
|
+
var EntitlementNotAllowedException$ = [-3, n0, _ENAE,
|
|
885
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
886
|
+
[_M],
|
|
887
|
+
[0]
|
|
888
|
+
];
|
|
889
|
+
n0_registry.registerError(EntitlementNotAllowedException$, EntitlementNotAllowedException);
|
|
890
|
+
var FailedDependencyException$ = [-3, n0, _FDE,
|
|
891
|
+
{ [_aQE]: [`FailedDependency`, 424], [_e]: _c, [_hE]: 424 },
|
|
892
|
+
[_M, _EC],
|
|
893
|
+
[0, 0]
|
|
894
|
+
];
|
|
895
|
+
n0_registry.registerError(FailedDependencyException$, FailedDependencyException);
|
|
896
|
+
var FilterLimitExceededException$ = [-3, n0, _FLEE,
|
|
897
|
+
{ [_aQE]: [`FilterLimitExceeded`, 400], [_e]: _c, [_hE]: 400 },
|
|
898
|
+
[_M],
|
|
899
|
+
[0]
|
|
900
|
+
];
|
|
901
|
+
n0_registry.registerError(FilterLimitExceededException$, FilterLimitExceededException);
|
|
902
|
+
var InvalidParameterValueException$ = [-3, n0, _IPVE,
|
|
903
|
+
{ [_aQE]: [`InvalidParameterValueProvided`, 400], [_e]: _c, [_hE]: 400 },
|
|
904
|
+
[_M],
|
|
905
|
+
[0]
|
|
906
|
+
];
|
|
907
|
+
n0_registry.registerError(InvalidParameterValueException$, InvalidParameterValueException);
|
|
908
|
+
var InvalidResourceStateException$ = [-3, n0, _IRSE,
|
|
909
|
+
{ [_aQE]: [`InvalidResourceState`, 400], [_e]: _c, [_hE]: 400 },
|
|
910
|
+
[_M],
|
|
911
|
+
[0]
|
|
912
|
+
];
|
|
913
|
+
n0_registry.registerError(InvalidResourceStateException$, InvalidResourceStateException);
|
|
914
|
+
var LicenseUsageException$ = [-3, n0, _LUE,
|
|
915
|
+
{ [_aQE]: [`LicenseUsageFailure`, 412], [_e]: _c, [_hE]: 412 },
|
|
916
|
+
[_M],
|
|
917
|
+
[0]
|
|
918
|
+
];
|
|
919
|
+
n0_registry.registerError(LicenseUsageException$, LicenseUsageException);
|
|
920
|
+
var NoEntitlementsAllowedException$ = [-3, n0, _NEAE,
|
|
921
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
922
|
+
[_M],
|
|
923
|
+
[0]
|
|
924
|
+
];
|
|
925
|
+
n0_registry.registerError(NoEntitlementsAllowedException$, NoEntitlementsAllowedException);
|
|
926
|
+
var RateLimitExceededException$ = [-3, n0, _RLEE,
|
|
927
|
+
{ [_aQE]: [`RateLimitExceeded`, 429], [_e]: _c, [_hE]: 429 },
|
|
928
|
+
[_M],
|
|
929
|
+
[0]
|
|
930
|
+
];
|
|
931
|
+
n0_registry.registerError(RateLimitExceededException$, RateLimitExceededException);
|
|
932
|
+
var RedirectException$ = [-3, n0, _RE,
|
|
933
|
+
{ [_e]: _c, [_hE]: 308 },
|
|
934
|
+
[_L, _M],
|
|
935
|
+
[[0, { [_hH]: _L }], 0]
|
|
936
|
+
];
|
|
937
|
+
n0_registry.registerError(RedirectException$, RedirectException);
|
|
938
|
+
var ResourceLimitExceededException$ = [-3, n0, _RLEEe,
|
|
939
|
+
{ [_aQE]: [`ResourceLimitExceeded`, 400], [_e]: _c, [_hE]: 400 },
|
|
940
|
+
[_M],
|
|
941
|
+
[0]
|
|
942
|
+
];
|
|
943
|
+
n0_registry.registerError(ResourceLimitExceededException$, ResourceLimitExceededException);
|
|
944
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
945
|
+
{ [_aQE]: [`InvalidResource.NotFound`, 400], [_e]: _c, [_hE]: 400 },
|
|
946
|
+
[_M],
|
|
947
|
+
[0]
|
|
948
|
+
];
|
|
949
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
950
|
+
var ServerInternalException$ = [-3, n0, _SIE,
|
|
951
|
+
{ [_aQE]: [`InternalError`, 500], [_e]: _se, [_hE]: 500 },
|
|
952
|
+
[_M],
|
|
953
|
+
[0]
|
|
954
|
+
];
|
|
955
|
+
n0_registry.registerError(ServerInternalException$, ServerInternalException);
|
|
956
|
+
var UnsupportedDigitalSignatureMethodException$ = [-3, n0, _UDSME,
|
|
957
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
958
|
+
[_M],
|
|
959
|
+
[0]
|
|
960
|
+
];
|
|
961
|
+
n0_registry.registerError(UnsupportedDigitalSignatureMethodException$, UnsupportedDigitalSignatureMethodException);
|
|
962
|
+
var ValidationException$ = [-3, n0, _VE,
|
|
963
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
964
|
+
[_M],
|
|
965
|
+
[0]
|
|
966
|
+
];
|
|
967
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
968
|
+
const errorTypeRegistries = [
|
|
969
|
+
_s_registry,
|
|
970
|
+
n0_registry,
|
|
971
|
+
];
|
|
972
|
+
var AcceptGrantRequest$ = [3, n0, _AGR,
|
|
973
|
+
0,
|
|
974
|
+
[_GA],
|
|
975
|
+
[0], 1
|
|
976
|
+
];
|
|
977
|
+
var AcceptGrantResponse$ = [3, n0, _AGRc,
|
|
978
|
+
0,
|
|
979
|
+
[_GA, _S, _V],
|
|
980
|
+
[0, 0, 0]
|
|
981
|
+
];
|
|
982
|
+
var AndRuleStatement$ = [3, n0, _ARS,
|
|
983
|
+
0,
|
|
984
|
+
[_MRS, _SRS],
|
|
985
|
+
[() => MatchingRuleStatementList, () => ScriptRuleStatementList]
|
|
986
|
+
];
|
|
987
|
+
var Asset$ = [3, n0, _A,
|
|
988
|
+
0,
|
|
989
|
+
[_AA, _LADT],
|
|
990
|
+
[0, 4]
|
|
991
|
+
];
|
|
992
|
+
var AutomatedDiscoveryInformation$ = [3, n0, _ADI,
|
|
993
|
+
0,
|
|
994
|
+
[_LRT],
|
|
995
|
+
[4]
|
|
996
|
+
];
|
|
997
|
+
var BorrowConfiguration$ = [3, n0, _BC,
|
|
998
|
+
0,
|
|
999
|
+
[_AECI, _MTTLIM],
|
|
1000
|
+
[2, 1], 2
|
|
1001
|
+
];
|
|
1002
|
+
var CheckInLicenseRequest$ = [3, n0, _CILR,
|
|
1003
|
+
0,
|
|
1004
|
+
[_LCT, _B],
|
|
1005
|
+
[0, 0], 1
|
|
1006
|
+
];
|
|
1007
|
+
var CheckInLicenseResponse$ = [3, n0, _CILRh,
|
|
1008
|
+
0,
|
|
1009
|
+
[],
|
|
1010
|
+
[]
|
|
1011
|
+
];
|
|
1012
|
+
var CheckoutBorrowLicenseRequest$ = [3, n0, _CBLR,
|
|
1013
|
+
0,
|
|
1014
|
+
[_LA, _E, _DSM, _CT, _NI, _CM],
|
|
1015
|
+
[0, () => EntitlementDataList, 0, 0, 0, () => MetadataList], 4
|
|
1016
|
+
];
|
|
1017
|
+
var CheckoutBorrowLicenseResponse$ = [3, n0, _CBLRh,
|
|
1018
|
+
0,
|
|
1019
|
+
[_LA, _LCT, _EA, _NI, _ST, _IA, _Ex, _CM],
|
|
1020
|
+
[0, 0, () => EntitlementDataList, 0, 0, 0, 0, () => MetadataList]
|
|
1021
|
+
];
|
|
1022
|
+
var CheckoutLicenseRequest$ = [3, n0, _CLR,
|
|
1023
|
+
0,
|
|
1024
|
+
[_PSKU, _CTh, _KF, _E, _CT, _B, _NI],
|
|
1025
|
+
[0, 0, 0, () => EntitlementDataList, 0, 0, 0], 5
|
|
1026
|
+
];
|
|
1027
|
+
var CheckoutLicenseResponse$ = [3, n0, _CLRh,
|
|
1028
|
+
0,
|
|
1029
|
+
[_CTh, _LCT, _EA, _ST, _NI, _IA, _Ex, _LA],
|
|
1030
|
+
[0, 0, () => EntitlementDataList, 0, 0, 0, 0, 0]
|
|
1031
|
+
];
|
|
1032
|
+
var ConsumedLicenseSummary$ = [3, n0, _CLS,
|
|
1033
|
+
0,
|
|
1034
|
+
[_RT, _CL],
|
|
1035
|
+
[0, 1]
|
|
1036
|
+
];
|
|
1037
|
+
var ConsumptionConfiguration$ = [3, n0, _CC,
|
|
1038
|
+
0,
|
|
1039
|
+
[_RTe, _PC, _BC],
|
|
1040
|
+
[0, () => ProvisionalConfiguration$, () => BorrowConfiguration$]
|
|
1041
|
+
];
|
|
1042
|
+
var CreateGrantRequest$ = [3, n0, _CGR,
|
|
1043
|
+
0,
|
|
1044
|
+
[_CT, _GN, _LA, _P, _HR, _AO, _T],
|
|
1045
|
+
[0, 0, 0, 64 | 0, 0, 64 | 0, () => TagList], 6
|
|
1046
|
+
];
|
|
1047
|
+
var CreateGrantResponse$ = [3, n0, _CGRr,
|
|
1048
|
+
0,
|
|
1049
|
+
[_GA, _S, _V],
|
|
1050
|
+
[0, 0, 0]
|
|
1051
|
+
];
|
|
1052
|
+
var CreateGrantVersionRequest$ = [3, n0, _CGVR,
|
|
1053
|
+
0,
|
|
1054
|
+
[_CT, _GA, _GN, _AO, _S, _SR, _SV, _O],
|
|
1055
|
+
[0, 0, 0, 64 | 0, 0, 0, 0, () => Options$], 2
|
|
1056
|
+
];
|
|
1057
|
+
var CreateGrantVersionResponse$ = [3, n0, _CGVRr,
|
|
1058
|
+
0,
|
|
1059
|
+
[_GA, _S, _V],
|
|
1060
|
+
[0, 0, 0]
|
|
1061
|
+
];
|
|
1062
|
+
var CreateLicenseAssetGroupRequest$ = [3, n0, _CLAGR,
|
|
1063
|
+
0,
|
|
1064
|
+
[_N, _LAGC, _ALARARN, _CT, _D, _Pr, _T],
|
|
1065
|
+
[0, () => LicenseAssetGroupConfigurationList, 64 | 0, 0, 0, () => LicenseAssetGroupPropertyList, () => TagList], 4
|
|
1066
|
+
];
|
|
1067
|
+
var CreateLicenseAssetGroupResponse$ = [3, n0, _CLAGRr,
|
|
1068
|
+
0,
|
|
1069
|
+
[_LAGA, _S],
|
|
1070
|
+
[0, 0], 2
|
|
1071
|
+
];
|
|
1072
|
+
var CreateLicenseAssetRulesetRequest$ = [3, n0, _CLARR,
|
|
1073
|
+
0,
|
|
1074
|
+
[_N, _R, _CT, _D, _T],
|
|
1075
|
+
[0, () => LicenseAssetRuleList, 0, 0, () => TagList], 3
|
|
1076
|
+
];
|
|
1077
|
+
var CreateLicenseAssetRulesetResponse$ = [3, n0, _CLARRr,
|
|
1078
|
+
0,
|
|
1079
|
+
[_LARA],
|
|
1080
|
+
[0], 1
|
|
1081
|
+
];
|
|
1082
|
+
var CreateLicenseConfigurationRequest$ = [3, n0, _CLCR,
|
|
1083
|
+
0,
|
|
1084
|
+
[_N, _LCTi, _D, _LC, _LCHL, _LR, _T, _DWNF, _PIL, _LE],
|
|
1085
|
+
[0, 0, 0, 1, 2, 64 | 0, () => TagList, 2, () => ProductInformationList, 1], 2
|
|
1086
|
+
];
|
|
1087
|
+
var CreateLicenseConfigurationResponse$ = [3, n0, _CLCRr,
|
|
1088
|
+
0,
|
|
1089
|
+
[_LCA],
|
|
1090
|
+
[0]
|
|
1091
|
+
];
|
|
1092
|
+
var CreateLicenseConversionTaskForResourceRequest$ = [3, n0, _CLCTFRR,
|
|
1093
|
+
0,
|
|
1094
|
+
[_RA, _SLC, _DLC],
|
|
1095
|
+
[0, () => LicenseConversionContext$, () => LicenseConversionContext$], 3
|
|
1096
|
+
];
|
|
1097
|
+
var CreateLicenseConversionTaskForResourceResponse$ = [3, n0, _CLCTFRRr,
|
|
1098
|
+
0,
|
|
1099
|
+
[_LCTI],
|
|
1100
|
+
[0]
|
|
1101
|
+
];
|
|
1102
|
+
var CreateLicenseManagerReportGeneratorRequest$ = [3, n0, _CLMRGR,
|
|
1103
|
+
0,
|
|
1104
|
+
[_RGN, _Ty, _RC, _RF, _CT, _D, _T],
|
|
1105
|
+
[0, 64 | 0, () => ReportContext$, () => ReportFrequency$, 0, 0, () => TagList], 5
|
|
1106
|
+
];
|
|
1107
|
+
var CreateLicenseManagerReportGeneratorResponse$ = [3, n0, _CLMRGRr,
|
|
1108
|
+
0,
|
|
1109
|
+
[_LMRGA],
|
|
1110
|
+
[0]
|
|
1111
|
+
];
|
|
1112
|
+
var CreateLicenseRequest$ = [3, n0, _CLRr,
|
|
1113
|
+
0,
|
|
1114
|
+
[_LN, _PN, _PSKU, _I, _HR, _Va, _E, _B, _CC, _CT, _LM, _T],
|
|
1115
|
+
[0, 0, 0, () => Issuer$, 0, () => DatetimeRange$, () => EntitlementList, 0, () => ConsumptionConfiguration$, 0, () => MetadataList, () => TagList], 10
|
|
1116
|
+
];
|
|
1117
|
+
var CreateLicenseResponse$ = [3, n0, _CLRre,
|
|
1118
|
+
0,
|
|
1119
|
+
[_LA, _S, _V],
|
|
1120
|
+
[0, 0, 0]
|
|
1121
|
+
];
|
|
1122
|
+
var CreateLicenseVersionRequest$ = [3, n0, _CLVR,
|
|
1123
|
+
0,
|
|
1124
|
+
[_LA, _LN, _PN, _I, _HR, _Va, _E, _CC, _S, _CT, _LM, _SV],
|
|
1125
|
+
[0, 0, 0, () => Issuer$, 0, () => DatetimeRange$, () => EntitlementList, () => ConsumptionConfiguration$, 0, 0, () => MetadataList, 0], 10
|
|
1126
|
+
];
|
|
1127
|
+
var CreateLicenseVersionResponse$ = [3, n0, _CLVRr,
|
|
1128
|
+
0,
|
|
1129
|
+
[_LA, _V, _S],
|
|
1130
|
+
[0, 0, 0]
|
|
1131
|
+
];
|
|
1132
|
+
var CreateTokenRequest$ = [3, n0, _CTR,
|
|
1133
|
+
0,
|
|
1134
|
+
[_LA, _CT, _RAo, _EID, _TP],
|
|
1135
|
+
[0, 0, 64 | 0, 1, 64 | 0], 2
|
|
1136
|
+
];
|
|
1137
|
+
var CreateTokenResponse$ = [3, n0, _CTRr,
|
|
1138
|
+
0,
|
|
1139
|
+
[_TI, _TT, _To],
|
|
1140
|
+
[0, 0, 0]
|
|
1141
|
+
];
|
|
1142
|
+
var CrossAccountDiscoveryServiceStatus$ = [3, n0, _CADSS,
|
|
1143
|
+
0,
|
|
1144
|
+
[_M],
|
|
1145
|
+
[0]
|
|
1146
|
+
];
|
|
1147
|
+
var CrossRegionDiscoveryStatus$ = [3, n0, _CRDS,
|
|
1148
|
+
0,
|
|
1149
|
+
[_M],
|
|
1150
|
+
[() => RegionStatusMap]
|
|
1151
|
+
];
|
|
1152
|
+
var DatetimeRange$ = [3, n0, _DR,
|
|
1153
|
+
0,
|
|
1154
|
+
[_Be, _En],
|
|
1155
|
+
[0, 0], 1
|
|
1156
|
+
];
|
|
1157
|
+
var DeleteGrantRequest$ = [3, n0, _DGR,
|
|
1158
|
+
0,
|
|
1159
|
+
[_GA, _V, _SR],
|
|
1160
|
+
[0, 0, 0], 2
|
|
1161
|
+
];
|
|
1162
|
+
var DeleteGrantResponse$ = [3, n0, _DGRe,
|
|
1163
|
+
0,
|
|
1164
|
+
[_GA, _S, _V],
|
|
1165
|
+
[0, 0, 0]
|
|
1166
|
+
];
|
|
1167
|
+
var DeleteLicenseAssetGroupRequest$ = [3, n0, _DLAGR,
|
|
1168
|
+
0,
|
|
1169
|
+
[_LAGA],
|
|
1170
|
+
[0], 1
|
|
1171
|
+
];
|
|
1172
|
+
var DeleteLicenseAssetGroupResponse$ = [3, n0, _DLAGRe,
|
|
1173
|
+
0,
|
|
1174
|
+
[_S],
|
|
1175
|
+
[0], 1
|
|
1176
|
+
];
|
|
1177
|
+
var DeleteLicenseAssetRulesetRequest$ = [3, n0, _DLARR,
|
|
1178
|
+
0,
|
|
1179
|
+
[_LARA],
|
|
1180
|
+
[0], 1
|
|
1181
|
+
];
|
|
1182
|
+
var DeleteLicenseAssetRulesetResponse$ = [3, n0, _DLARRe,
|
|
1183
|
+
0,
|
|
1184
|
+
[],
|
|
1185
|
+
[]
|
|
1186
|
+
];
|
|
1187
|
+
var DeleteLicenseConfigurationRequest$ = [3, n0, _DLCR,
|
|
1188
|
+
0,
|
|
1189
|
+
[_LCA],
|
|
1190
|
+
[0], 1
|
|
1191
|
+
];
|
|
1192
|
+
var DeleteLicenseConfigurationResponse$ = [3, n0, _DLCRe,
|
|
1193
|
+
0,
|
|
1194
|
+
[],
|
|
1195
|
+
[]
|
|
1196
|
+
];
|
|
1197
|
+
var DeleteLicenseManagerReportGeneratorRequest$ = [3, n0, _DLMRGR,
|
|
1198
|
+
0,
|
|
1199
|
+
[_LMRGA],
|
|
1200
|
+
[0], 1
|
|
1201
|
+
];
|
|
1202
|
+
var DeleteLicenseManagerReportGeneratorResponse$ = [3, n0, _DLMRGRe,
|
|
1203
|
+
0,
|
|
1204
|
+
[],
|
|
1205
|
+
[]
|
|
1206
|
+
];
|
|
1207
|
+
var DeleteLicenseRequest$ = [3, n0, _DLR,
|
|
1208
|
+
0,
|
|
1209
|
+
[_LA, _SV],
|
|
1210
|
+
[0, 0], 2
|
|
1211
|
+
];
|
|
1212
|
+
var DeleteLicenseResponse$ = [3, n0, _DLRe,
|
|
1213
|
+
0,
|
|
1214
|
+
[_S, _DD],
|
|
1215
|
+
[0, 0]
|
|
1216
|
+
];
|
|
1217
|
+
var DeleteTokenRequest$ = [3, n0, _DTR,
|
|
1218
|
+
0,
|
|
1219
|
+
[_TI],
|
|
1220
|
+
[0], 1
|
|
1221
|
+
];
|
|
1222
|
+
var DeleteTokenResponse$ = [3, n0, _DTRe,
|
|
1223
|
+
0,
|
|
1224
|
+
[],
|
|
1225
|
+
[]
|
|
1226
|
+
];
|
|
1227
|
+
var Entitlement$ = [3, n0, _Ent,
|
|
1228
|
+
0,
|
|
1229
|
+
[_N, _U, _Val, _MC, _Ov, _ACI],
|
|
1230
|
+
[0, 0, 0, 1, 2, 2], 2
|
|
1231
|
+
];
|
|
1232
|
+
var EntitlementData$ = [3, n0, _ED,
|
|
1233
|
+
0,
|
|
1234
|
+
[_N, _U, _Val],
|
|
1235
|
+
[0, 0, 0], 2
|
|
1236
|
+
];
|
|
1237
|
+
var EntitlementUsage$ = [3, n0, _EU,
|
|
1238
|
+
0,
|
|
1239
|
+
[_N, _CV, _U, _MC],
|
|
1240
|
+
[0, 0, 0, 0], 3
|
|
1241
|
+
];
|
|
1242
|
+
var ExtendLicenseConsumptionRequest$ = [3, n0, _ELCR,
|
|
1243
|
+
0,
|
|
1244
|
+
[_LCT, _DRr],
|
|
1245
|
+
[0, 2], 1
|
|
1246
|
+
];
|
|
1247
|
+
var ExtendLicenseConsumptionResponse$ = [3, n0, _ELCRx,
|
|
1248
|
+
0,
|
|
1249
|
+
[_LCT, _Ex],
|
|
1250
|
+
[0, 0]
|
|
1251
|
+
];
|
|
1252
|
+
var Filter$ = [3, n0, _F,
|
|
1253
|
+
0,
|
|
1254
|
+
[_N, _Valu],
|
|
1255
|
+
[0, [() => FilterValues, 0]]
|
|
1256
|
+
];
|
|
1257
|
+
var GetAccessTokenRequest$ = [3, n0, _GATR,
|
|
1258
|
+
0,
|
|
1259
|
+
[_To, _TP],
|
|
1260
|
+
[0, 64 | 0], 1
|
|
1261
|
+
];
|
|
1262
|
+
var GetAccessTokenResponse$ = [3, n0, _GATRe,
|
|
1263
|
+
0,
|
|
1264
|
+
[_AT],
|
|
1265
|
+
[0]
|
|
1266
|
+
];
|
|
1267
|
+
var GetGrantRequest$ = [3, n0, _GGR,
|
|
1268
|
+
0,
|
|
1269
|
+
[_GA, _V],
|
|
1270
|
+
[0, 0], 1
|
|
1271
|
+
];
|
|
1272
|
+
var GetGrantResponse$ = [3, n0, _GGRe,
|
|
1273
|
+
0,
|
|
1274
|
+
[_G],
|
|
1275
|
+
[() => Grant$]
|
|
1276
|
+
];
|
|
1277
|
+
var GetLicenseAssetGroupRequest$ = [3, n0, _GLAGR,
|
|
1278
|
+
0,
|
|
1279
|
+
[_LAGA],
|
|
1280
|
+
[0], 1
|
|
1281
|
+
];
|
|
1282
|
+
var GetLicenseAssetGroupResponse$ = [3, n0, _GLAGRe,
|
|
1283
|
+
0,
|
|
1284
|
+
[_LAG],
|
|
1285
|
+
[() => LicenseAssetGroup$], 1
|
|
1286
|
+
];
|
|
1287
|
+
var GetLicenseAssetRulesetRequest$ = [3, n0, _GLARR,
|
|
1288
|
+
0,
|
|
1289
|
+
[_LARA],
|
|
1290
|
+
[0], 1
|
|
1291
|
+
];
|
|
1292
|
+
var GetLicenseAssetRulesetResponse$ = [3, n0, _GLARRe,
|
|
1293
|
+
0,
|
|
1294
|
+
[_LAR],
|
|
1295
|
+
[() => LicenseAssetRuleset$], 1
|
|
1296
|
+
];
|
|
1297
|
+
var GetLicenseConfigurationRequest$ = [3, n0, _GLCR,
|
|
1298
|
+
0,
|
|
1299
|
+
[_LCA],
|
|
1300
|
+
[0], 1
|
|
1301
|
+
];
|
|
1302
|
+
var GetLicenseConfigurationResponse$ = [3, n0, _GLCRe,
|
|
1303
|
+
0,
|
|
1304
|
+
[_LCI, _LCA, _N, _D, _LCTi, _LR, _LC, _LCHL, _CL, _S, _OAI, _CLSL, _MRSL, _T, _PIL, _ADI, _DWNF, _LE],
|
|
1305
|
+
[0, 0, 0, 0, 0, 64 | 0, 1, 2, 1, 0, 0, () => ConsumedLicenseSummaryList, () => ManagedResourceSummaryList, () => TagList, () => ProductInformationList, () => AutomatedDiscoveryInformation$, 2, 1]
|
|
1306
|
+
];
|
|
1307
|
+
var GetLicenseConversionTaskRequest$ = [3, n0, _GLCTR,
|
|
1308
|
+
0,
|
|
1309
|
+
[_LCTI],
|
|
1310
|
+
[0], 1
|
|
1311
|
+
];
|
|
1312
|
+
var GetLicenseConversionTaskResponse$ = [3, n0, _GLCTRe,
|
|
1313
|
+
0,
|
|
1314
|
+
[_LCTI, _RA, _SLC, _DLC, _SM, _S, _STt, _LCTic, _ET],
|
|
1315
|
+
[0, 0, () => LicenseConversionContext$, () => LicenseConversionContext$, 0, 0, 4, 4, 4]
|
|
1316
|
+
];
|
|
1317
|
+
var GetLicenseManagerReportGeneratorRequest$ = [3, n0, _GLMRGR,
|
|
1318
|
+
0,
|
|
1319
|
+
[_LMRGA],
|
|
1320
|
+
[0], 1
|
|
1321
|
+
];
|
|
1322
|
+
var GetLicenseManagerReportGeneratorResponse$ = [3, n0, _GLMRGRe,
|
|
1323
|
+
0,
|
|
1324
|
+
[_RG],
|
|
1325
|
+
[() => ReportGenerator$]
|
|
1326
|
+
];
|
|
1327
|
+
var GetLicenseRequest$ = [3, n0, _GLR,
|
|
1328
|
+
0,
|
|
1329
|
+
[_LA, _V],
|
|
1330
|
+
[0, 0], 1
|
|
1331
|
+
];
|
|
1332
|
+
var GetLicenseResponse$ = [3, n0, _GLRe,
|
|
1333
|
+
0,
|
|
1334
|
+
[_Li],
|
|
1335
|
+
[() => License$]
|
|
1336
|
+
];
|
|
1337
|
+
var GetLicenseUsageRequest$ = [3, n0, _GLUR,
|
|
1338
|
+
0,
|
|
1339
|
+
[_LA],
|
|
1340
|
+
[0], 1
|
|
1341
|
+
];
|
|
1342
|
+
var GetLicenseUsageResponse$ = [3, n0, _GLURe,
|
|
1343
|
+
0,
|
|
1344
|
+
[_LU],
|
|
1345
|
+
[() => LicenseUsage$]
|
|
1346
|
+
];
|
|
1347
|
+
var GetServiceSettingsRequest$ = [3, n0, _GSSR,
|
|
1348
|
+
0,
|
|
1349
|
+
[],
|
|
1350
|
+
[]
|
|
1351
|
+
];
|
|
1352
|
+
var GetServiceSettingsResponse$ = [3, n0, _GSSRe,
|
|
1353
|
+
0,
|
|
1354
|
+
[_SBA, _STA, _OC, _ECAD, _LMRSA, _CRDHR, _CRDSR, _SS],
|
|
1355
|
+
[0, 0, () => OrganizationConfiguration$, 2, 0, 0, 64 | 0, () => ServiceStatus$]
|
|
1356
|
+
];
|
|
1357
|
+
var Grant$ = [3, n0, _G,
|
|
1358
|
+
0,
|
|
1359
|
+
[_GA, _GN, _PA, _LA, _GPA, _HR, _GS, _V, _GO, _SR, _O],
|
|
1360
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 64 | 0, 0, () => Options$], 9
|
|
1361
|
+
];
|
|
1362
|
+
var GrantedLicense$ = [3, n0, _GL,
|
|
1363
|
+
0,
|
|
1364
|
+
[_LA, _LN, _PN, _PSKU, _I, _HR, _S, _Va, _B, _E, _CC, _LM, _CTr, _V, _RM],
|
|
1365
|
+
[0, 0, 0, 0, () => IssuerDetails$, 0, 0, () => DatetimeRange$, 0, () => EntitlementList, () => ConsumptionConfiguration$, () => MetadataList, 0, 0, () => ReceivedMetadata$]
|
|
1366
|
+
];
|
|
1367
|
+
var InstanceRuleStatement$ = [3, n0, _IRS,
|
|
1368
|
+
0,
|
|
1369
|
+
[_ARS, _ORS, _MRSa, _SRSc],
|
|
1370
|
+
[() => AndRuleStatement$, () => OrRuleStatement$, () => MatchingRuleStatement$, () => ScriptRuleStatement$]
|
|
1371
|
+
];
|
|
1372
|
+
var InventoryFilter$ = [3, n0, _IF,
|
|
1373
|
+
0,
|
|
1374
|
+
[_N, _C, _Val],
|
|
1375
|
+
[0, 0, 0], 2
|
|
1376
|
+
];
|
|
1377
|
+
var Issuer$ = [3, n0, _I,
|
|
1378
|
+
0,
|
|
1379
|
+
[_N, _SK],
|
|
1380
|
+
[0, 0], 1
|
|
1381
|
+
];
|
|
1382
|
+
var IssuerDetails$ = [3, n0, _ID,
|
|
1383
|
+
0,
|
|
1384
|
+
[_N, _SK, _KF],
|
|
1385
|
+
[0, 0, 0]
|
|
1386
|
+
];
|
|
1387
|
+
var License$ = [3, n0, _Li,
|
|
1388
|
+
0,
|
|
1389
|
+
[_LA, _LN, _PN, _PSKU, _I, _HR, _S, _Va, _B, _E, _CC, _LM, _CTr, _V],
|
|
1390
|
+
[0, 0, 0, 0, () => IssuerDetails$, 0, 0, () => DatetimeRange$, 0, () => EntitlementList, () => ConsumptionConfiguration$, () => MetadataList, 0, 0]
|
|
1391
|
+
];
|
|
1392
|
+
var LicenseAssetGroup$ = [3, n0, _LAG,
|
|
1393
|
+
0,
|
|
1394
|
+
[_N, _ALARARN, _LAGA, _S, _D, _LAGC, _Pr, _SM, _LUAT, _LRDT],
|
|
1395
|
+
[0, 64 | 0, 0, 0, 0, () => LicenseAssetGroupConfigurationList, () => LicenseAssetGroupPropertyList, 0, 4, 4], 4
|
|
1396
|
+
];
|
|
1397
|
+
var LicenseAssetGroupConfiguration$ = [3, n0, _LAGCi,
|
|
1398
|
+
0,
|
|
1399
|
+
[_UD],
|
|
1400
|
+
[0]
|
|
1401
|
+
];
|
|
1402
|
+
var LicenseAssetGroupProperty$ = [3, n0, _LAGP,
|
|
1403
|
+
0,
|
|
1404
|
+
[_K, _Val],
|
|
1405
|
+
[0, 0], 2
|
|
1406
|
+
];
|
|
1407
|
+
var LicenseAssetRule$ = [3, n0, _LARi,
|
|
1408
|
+
0,
|
|
1409
|
+
[_RS],
|
|
1410
|
+
[() => RuleStatement$], 1
|
|
1411
|
+
];
|
|
1412
|
+
var LicenseAssetRuleset$ = [3, n0, _LAR,
|
|
1413
|
+
0,
|
|
1414
|
+
[_N, _R, _LARA, _D],
|
|
1415
|
+
[0, () => LicenseAssetRuleList, 0, 0], 3
|
|
1416
|
+
];
|
|
1417
|
+
var LicenseConfiguration$ = [3, n0, _LCi,
|
|
1418
|
+
0,
|
|
1419
|
+
[_LCI, _LCA, _N, _D, _LCTi, _LR, _LC, _LCHL, _DWNF, _CL, _S, _OAI, _CLSL, _MRSL, _PIL, _ADI, _LE],
|
|
1420
|
+
[0, 0, 0, 0, 0, 64 | 0, 1, 2, 2, 1, 0, 0, () => ConsumedLicenseSummaryList, () => ManagedResourceSummaryList, () => ProductInformationList, () => AutomatedDiscoveryInformation$, 1]
|
|
1421
|
+
];
|
|
1422
|
+
var LicenseConfigurationAssociation$ = [3, n0, _LCAi,
|
|
1423
|
+
0,
|
|
1424
|
+
[_RA, _RT, _ROI, _ATs, _AAS],
|
|
1425
|
+
[0, 0, 0, 4, 0]
|
|
1426
|
+
];
|
|
1427
|
+
var LicenseConfigurationRuleStatement$ = [3, n0, _LCRS,
|
|
1428
|
+
0,
|
|
1429
|
+
[_ARS, _ORS, _MRSa],
|
|
1430
|
+
[() => AndRuleStatement$, () => OrRuleStatement$, () => MatchingRuleStatement$]
|
|
1431
|
+
];
|
|
1432
|
+
var LicenseConfigurationUsage$ = [3, n0, _LCU,
|
|
1433
|
+
0,
|
|
1434
|
+
[_RA, _RT, _RSe, _ROI, _ATs, _CL],
|
|
1435
|
+
[0, 0, 0, 0, 4, 1]
|
|
1436
|
+
];
|
|
1437
|
+
var LicenseConversionContext$ = [3, n0, _LCC,
|
|
1438
|
+
0,
|
|
1439
|
+
[_UO, _PCr],
|
|
1440
|
+
[0, () => ProductCodeList]
|
|
1441
|
+
];
|
|
1442
|
+
var LicenseConversionTask$ = [3, n0, _LCTice,
|
|
1443
|
+
0,
|
|
1444
|
+
[_LCTI, _RA, _SLC, _DLC, _S, _SM, _STt, _LCTic, _ET],
|
|
1445
|
+
[0, 0, () => LicenseConversionContext$, () => LicenseConversionContext$, 0, 0, 4, 4, 4]
|
|
1446
|
+
];
|
|
1447
|
+
var LicenseOperationFailure$ = [3, n0, _LOF,
|
|
1448
|
+
0,
|
|
1449
|
+
[_RA, _RT, _EM, _FT, _ON, _ROI, _ORB, _ML],
|
|
1450
|
+
[0, 0, 0, 4, 0, 0, 0, () => MetadataList]
|
|
1451
|
+
];
|
|
1452
|
+
var LicenseRuleStatement$ = [3, n0, _LRS,
|
|
1453
|
+
0,
|
|
1454
|
+
[_ARS, _ORS, _MRSa],
|
|
1455
|
+
[() => AndRuleStatement$, () => OrRuleStatement$, () => MatchingRuleStatement$]
|
|
1456
|
+
];
|
|
1457
|
+
var LicenseSpecification$ = [3, n0, _LS,
|
|
1458
|
+
0,
|
|
1459
|
+
[_LCA, _AAS],
|
|
1460
|
+
[0, 0], 1
|
|
1461
|
+
];
|
|
1462
|
+
var LicenseUsage$ = [3, n0, _LU,
|
|
1463
|
+
0,
|
|
1464
|
+
[_EUn],
|
|
1465
|
+
[() => EntitlementUsageList]
|
|
1466
|
+
];
|
|
1467
|
+
var ListAssetsForLicenseAssetGroupRequest$ = [3, n0, _LAFLAGR,
|
|
1468
|
+
0,
|
|
1469
|
+
[_LAGA, _ATss, _MR, _NT],
|
|
1470
|
+
[0, 0, 1, 0], 2
|
|
1471
|
+
];
|
|
1472
|
+
var ListAssetsForLicenseAssetGroupResponse$ = [3, n0, _LAFLAGRi,
|
|
1473
|
+
0,
|
|
1474
|
+
[_As, _NT],
|
|
1475
|
+
[() => AssetList, 0]
|
|
1476
|
+
];
|
|
1477
|
+
var ListAssociationsForLicenseConfigurationRequest$ = [3, n0, _LAFLCR,
|
|
1478
|
+
0,
|
|
1479
|
+
[_LCA, _MR, _NT],
|
|
1480
|
+
[0, 1, 0], 1
|
|
1481
|
+
];
|
|
1482
|
+
var ListAssociationsForLicenseConfigurationResponse$ = [3, n0, _LAFLCRi,
|
|
1483
|
+
0,
|
|
1484
|
+
[_LCAic, _NT],
|
|
1485
|
+
[() => LicenseConfigurationAssociations, 0]
|
|
1486
|
+
];
|
|
1487
|
+
var ListDistributedGrantsRequest$ = [3, n0, _LDGR,
|
|
1488
|
+
0,
|
|
1489
|
+
[_GAr, _Fi, _NT, _MR],
|
|
1490
|
+
[64 | 0, [() => FilterList, 0], 0, 1]
|
|
1491
|
+
];
|
|
1492
|
+
var ListDistributedGrantsResponse$ = [3, n0, _LDGRi,
|
|
1493
|
+
0,
|
|
1494
|
+
[_Gr, _NT],
|
|
1495
|
+
[() => GrantList, 0]
|
|
1496
|
+
];
|
|
1497
|
+
var ListFailuresForLicenseConfigurationOperationsRequest$ = [3, n0, _LFFLCOR,
|
|
1498
|
+
0,
|
|
1499
|
+
[_LCA, _MR, _NT],
|
|
1500
|
+
[0, 1, 0], 1
|
|
1501
|
+
];
|
|
1502
|
+
var ListFailuresForLicenseConfigurationOperationsResponse$ = [3, n0, _LFFLCORi,
|
|
1503
|
+
0,
|
|
1504
|
+
[_LOFL, _NT],
|
|
1505
|
+
[() => LicenseOperationFailureList, 0]
|
|
1506
|
+
];
|
|
1507
|
+
var ListLicenseAssetGroupsRequest$ = [3, n0, _LLAGR,
|
|
1508
|
+
0,
|
|
1509
|
+
[_Fi, _MR, _NT],
|
|
1510
|
+
[[() => Filters, 0], 1, 0]
|
|
1511
|
+
];
|
|
1512
|
+
var ListLicenseAssetGroupsResponse$ = [3, n0, _LLAGRi,
|
|
1513
|
+
0,
|
|
1514
|
+
[_LAGi, _NT],
|
|
1515
|
+
[() => LicenseAssetGroupList, 0]
|
|
1516
|
+
];
|
|
1517
|
+
var ListLicenseAssetRulesetsRequest$ = [3, n0, _LLARR,
|
|
1518
|
+
0,
|
|
1519
|
+
[_Fi, _SAWSMLAR, _MR, _NT],
|
|
1520
|
+
[[() => Filters, 0], 2, 1, 0]
|
|
1521
|
+
];
|
|
1522
|
+
var ListLicenseAssetRulesetsResponse$ = [3, n0, _LLARRi,
|
|
1523
|
+
0,
|
|
1524
|
+
[_LARic, _NT],
|
|
1525
|
+
[() => LicenseAssetRulesetList, 0]
|
|
1526
|
+
];
|
|
1527
|
+
var ListLicenseConfigurationsForOrganizationRequest$ = [3, n0, _LLCFOR,
|
|
1528
|
+
0,
|
|
1529
|
+
[_LCAice, _MR, _NT, _Fi],
|
|
1530
|
+
[64 | 0, 1, 0, [() => Filters, 0]]
|
|
1531
|
+
];
|
|
1532
|
+
var ListLicenseConfigurationsForOrganizationResponse$ = [3, n0, _LLCFORi,
|
|
1533
|
+
0,
|
|
1534
|
+
[_LCic, _NT],
|
|
1535
|
+
[() => LicenseConfigurations, 0]
|
|
1536
|
+
];
|
|
1537
|
+
var ListLicenseConfigurationsRequest$ = [3, n0, _LLCR,
|
|
1538
|
+
0,
|
|
1539
|
+
[_LCAice, _MR, _NT, _Fi],
|
|
1540
|
+
[64 | 0, 1, 0, [() => Filters, 0]]
|
|
1541
|
+
];
|
|
1542
|
+
var ListLicenseConfigurationsResponse$ = [3, n0, _LLCRi,
|
|
1543
|
+
0,
|
|
1544
|
+
[_LCic, _NT],
|
|
1545
|
+
[() => LicenseConfigurations, 0]
|
|
1546
|
+
];
|
|
1547
|
+
var ListLicenseConversionTasksRequest$ = [3, n0, _LLCTR,
|
|
1548
|
+
0,
|
|
1549
|
+
[_NT, _MR, _Fi],
|
|
1550
|
+
[0, 1, [() => Filters, 0]]
|
|
1551
|
+
];
|
|
1552
|
+
var ListLicenseConversionTasksResponse$ = [3, n0, _LLCTRi,
|
|
1553
|
+
0,
|
|
1554
|
+
[_LCTicen, _NT],
|
|
1555
|
+
[() => LicenseConversionTasks, 0]
|
|
1556
|
+
];
|
|
1557
|
+
var ListLicenseManagerReportGeneratorsRequest$ = [3, n0, _LLMRGR,
|
|
1558
|
+
0,
|
|
1559
|
+
[_Fi, _NT, _MR],
|
|
1560
|
+
[[() => FilterList, 0], 0, 1]
|
|
1561
|
+
];
|
|
1562
|
+
var ListLicenseManagerReportGeneratorsResponse$ = [3, n0, _LLMRGRi,
|
|
1563
|
+
0,
|
|
1564
|
+
[_RGe, _NT],
|
|
1565
|
+
[() => ReportGeneratorList, 0]
|
|
1566
|
+
];
|
|
1567
|
+
var ListLicenseSpecificationsForResourceRequest$ = [3, n0, _LLSFRR,
|
|
1568
|
+
0,
|
|
1569
|
+
[_RA, _MR, _NT],
|
|
1570
|
+
[0, 1, 0], 1
|
|
1571
|
+
];
|
|
1572
|
+
var ListLicenseSpecificationsForResourceResponse$ = [3, n0, _LLSFRRi,
|
|
1573
|
+
0,
|
|
1574
|
+
[_LSi, _NT],
|
|
1575
|
+
[() => LicenseSpecifications, 0]
|
|
1576
|
+
];
|
|
1577
|
+
var ListLicensesRequest$ = [3, n0, _LLR,
|
|
1578
|
+
0,
|
|
1579
|
+
[_LAi, _Fi, _NT, _MR],
|
|
1580
|
+
[64 | 0, [() => FilterList, 0], 0, 1]
|
|
1581
|
+
];
|
|
1582
|
+
var ListLicensesResponse$ = [3, n0, _LLRi,
|
|
1583
|
+
0,
|
|
1584
|
+
[_Lic, _NT],
|
|
1585
|
+
[() => LicenseList, 0]
|
|
1586
|
+
];
|
|
1587
|
+
var ListLicenseVersionsRequest$ = [3, n0, _LLVR,
|
|
1588
|
+
0,
|
|
1589
|
+
[_LA, _NT, _MR],
|
|
1590
|
+
[0, 0, 1], 1
|
|
1591
|
+
];
|
|
1592
|
+
var ListLicenseVersionsResponse$ = [3, n0, _LLVRi,
|
|
1593
|
+
0,
|
|
1594
|
+
[_Lic, _NT],
|
|
1595
|
+
[() => LicenseList, 0]
|
|
1596
|
+
];
|
|
1597
|
+
var ListReceivedGrantsForOrganizationRequest$ = [3, n0, _LRGFOR,
|
|
1598
|
+
0,
|
|
1599
|
+
[_LA, _Fi, _NT, _MR],
|
|
1600
|
+
[0, [() => FilterList, 0], 0, 1], 1
|
|
1601
|
+
];
|
|
1602
|
+
var ListReceivedGrantsForOrganizationResponse$ = [3, n0, _LRGFORi,
|
|
1603
|
+
0,
|
|
1604
|
+
[_Gr, _NT],
|
|
1605
|
+
[() => GrantList, 0]
|
|
1606
|
+
];
|
|
1607
|
+
var ListReceivedGrantsRequest$ = [3, n0, _LRGR,
|
|
1608
|
+
0,
|
|
1609
|
+
[_GAr, _Fi, _NT, _MR],
|
|
1610
|
+
[64 | 0, [() => FilterList, 0], 0, 1]
|
|
1611
|
+
];
|
|
1612
|
+
var ListReceivedGrantsResponse$ = [3, n0, _LRGRi,
|
|
1613
|
+
0,
|
|
1614
|
+
[_Gr, _NT],
|
|
1615
|
+
[() => GrantList, 0]
|
|
1616
|
+
];
|
|
1617
|
+
var ListReceivedLicensesForOrganizationRequest$ = [3, n0, _LRLFOR,
|
|
1618
|
+
0,
|
|
1619
|
+
[_Fi, _NT, _MR],
|
|
1620
|
+
[[() => FilterList, 0], 0, 1]
|
|
1621
|
+
];
|
|
1622
|
+
var ListReceivedLicensesForOrganizationResponse$ = [3, n0, _LRLFORi,
|
|
1623
|
+
0,
|
|
1624
|
+
[_Lic, _NT],
|
|
1625
|
+
[() => GrantedLicenseList, 0]
|
|
1626
|
+
];
|
|
1627
|
+
var ListReceivedLicensesRequest$ = [3, n0, _LRLR,
|
|
1628
|
+
0,
|
|
1629
|
+
[_LAi, _Fi, _NT, _MR],
|
|
1630
|
+
[64 | 0, [() => FilterList, 0], 0, 1]
|
|
1631
|
+
];
|
|
1632
|
+
var ListReceivedLicensesResponse$ = [3, n0, _LRLRi,
|
|
1633
|
+
0,
|
|
1634
|
+
[_Lic, _NT],
|
|
1635
|
+
[() => GrantedLicenseList, 0]
|
|
1636
|
+
];
|
|
1637
|
+
var ListResourceInventoryRequest$ = [3, n0, _LRIR,
|
|
1638
|
+
0,
|
|
1639
|
+
[_MR, _NT, _Fi],
|
|
1640
|
+
[1, 0, () => InventoryFilterList]
|
|
1641
|
+
];
|
|
1642
|
+
var ListResourceInventoryResponse$ = [3, n0, _LRIRi,
|
|
1643
|
+
0,
|
|
1644
|
+
[_RIL, _NT],
|
|
1645
|
+
[() => ResourceInventoryList, 0]
|
|
1646
|
+
];
|
|
1647
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1648
|
+
0,
|
|
1649
|
+
[_RA],
|
|
1650
|
+
[0], 1
|
|
1651
|
+
];
|
|
1652
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1653
|
+
0,
|
|
1654
|
+
[_T],
|
|
1655
|
+
[() => TagList]
|
|
1656
|
+
];
|
|
1657
|
+
var ListTokensRequest$ = [3, n0, _LTR,
|
|
1658
|
+
0,
|
|
1659
|
+
[_TIo, _Fi, _NT, _MR],
|
|
1660
|
+
[64 | 0, [() => FilterList, 0], 0, 1]
|
|
1661
|
+
];
|
|
1662
|
+
var ListTokensResponse$ = [3, n0, _LTRi,
|
|
1663
|
+
0,
|
|
1664
|
+
[_Tok, _NT],
|
|
1665
|
+
[() => TokenList, 0]
|
|
1666
|
+
];
|
|
1667
|
+
var ListUsageForLicenseConfigurationRequest$ = [3, n0, _LUFLCR,
|
|
1668
|
+
0,
|
|
1669
|
+
[_LCA, _MR, _NT, _Fi],
|
|
1670
|
+
[0, 1, 0, [() => Filters, 0]], 1
|
|
1671
|
+
];
|
|
1672
|
+
var ListUsageForLicenseConfigurationResponse$ = [3, n0, _LUFLCRi,
|
|
1673
|
+
0,
|
|
1674
|
+
[_LCUL, _NT],
|
|
1675
|
+
[() => LicenseConfigurationUsageList, 0]
|
|
1676
|
+
];
|
|
1677
|
+
var ManagedResourceSummary$ = [3, n0, _MRSan,
|
|
1678
|
+
0,
|
|
1679
|
+
[_RT, _AC],
|
|
1680
|
+
[0, 1]
|
|
1681
|
+
];
|
|
1682
|
+
var MatchingRuleStatement$ = [3, n0, _MRSa,
|
|
1683
|
+
0,
|
|
1684
|
+
[_KTM, _Co, _VTM],
|
|
1685
|
+
[0, 0, 64 | 0], 3
|
|
1686
|
+
];
|
|
1687
|
+
var Metadata$ = [3, n0, _Me,
|
|
1688
|
+
0,
|
|
1689
|
+
[_N, _Val],
|
|
1690
|
+
[0, 0]
|
|
1691
|
+
];
|
|
1692
|
+
var Options$ = [3, n0, _O,
|
|
1693
|
+
0,
|
|
1694
|
+
[_AOB],
|
|
1695
|
+
[0]
|
|
1696
|
+
];
|
|
1697
|
+
var OrganizationConfiguration$ = [3, n0, _OC,
|
|
1698
|
+
0,
|
|
1699
|
+
[_EI],
|
|
1700
|
+
[2], 1
|
|
1701
|
+
];
|
|
1702
|
+
var OrRuleStatement$ = [3, n0, _ORS,
|
|
1703
|
+
0,
|
|
1704
|
+
[_MRS, _SRS],
|
|
1705
|
+
[() => MatchingRuleStatementList, () => ScriptRuleStatementList]
|
|
1706
|
+
];
|
|
1707
|
+
var ProductCodeListItem$ = [3, n0, _PCLI,
|
|
1708
|
+
0,
|
|
1709
|
+
[_PCI, _PCT],
|
|
1710
|
+
[0, 0], 2
|
|
1711
|
+
];
|
|
1712
|
+
var ProductInformation$ = [3, n0, _PI,
|
|
1713
|
+
0,
|
|
1714
|
+
[_RT, _PIFL],
|
|
1715
|
+
[0, () => ProductInformationFilterList], 2
|
|
1716
|
+
];
|
|
1717
|
+
var ProductInformationFilter$ = [3, n0, _PIF,
|
|
1718
|
+
0,
|
|
1719
|
+
[_PIFN, _PIFC, _PIFV],
|
|
1720
|
+
[0, 0, 64 | 0], 2
|
|
1721
|
+
];
|
|
1722
|
+
var ProvisionalConfiguration$ = [3, n0, _PC,
|
|
1723
|
+
0,
|
|
1724
|
+
[_MTTLIM],
|
|
1725
|
+
[1], 1
|
|
1726
|
+
];
|
|
1727
|
+
var ReceivedMetadata$ = [3, n0, _RM,
|
|
1728
|
+
0,
|
|
1729
|
+
[_RSec, _RSR, _AO],
|
|
1730
|
+
[0, 0, 64 | 0]
|
|
1731
|
+
];
|
|
1732
|
+
var RegionStatus$ = [3, n0, _RSeg,
|
|
1733
|
+
0,
|
|
1734
|
+
[_S],
|
|
1735
|
+
[0]
|
|
1736
|
+
];
|
|
1737
|
+
var RejectGrantRequest$ = [3, n0, _RGR,
|
|
1738
|
+
0,
|
|
1739
|
+
[_GA],
|
|
1740
|
+
[0], 1
|
|
1741
|
+
];
|
|
1742
|
+
var RejectGrantResponse$ = [3, n0, _RGRe,
|
|
1743
|
+
0,
|
|
1744
|
+
[_GA, _S, _V],
|
|
1745
|
+
[0, 0, 0]
|
|
1746
|
+
];
|
|
1747
|
+
var ReportContext$ = [3, n0, _RC,
|
|
1748
|
+
0,
|
|
1749
|
+
[_lCA, _lAGA, _rSD, _rED],
|
|
1750
|
+
[64 | 0, 64 | 0, 4, 4]
|
|
1751
|
+
];
|
|
1752
|
+
var ReportFrequency$ = [3, n0, _RF,
|
|
1753
|
+
0,
|
|
1754
|
+
[_v, _p],
|
|
1755
|
+
[1, 0]
|
|
1756
|
+
];
|
|
1757
|
+
var ReportGenerator$ = [3, n0, _RG,
|
|
1758
|
+
0,
|
|
1759
|
+
[_RGN, _RTep, _RC, _RF, _LMRGA, _LRSa, _LRFR, _LRGT, _RCA, _D, _SL, _CTr, _T],
|
|
1760
|
+
[0, 64 | 0, () => ReportContext$, () => ReportFrequency$, 0, 0, 0, 0, 0, 0, () => S3Location$, 0, () => TagList]
|
|
1761
|
+
];
|
|
1762
|
+
var ResourceInventory$ = [3, n0, _RI,
|
|
1763
|
+
0,
|
|
1764
|
+
[_RIe, _RT, _RA, _Pl, _PV, _ROAI, _MPC, _UO, _AI, _HI, _Re, _IT],
|
|
1765
|
+
[0, 0, 0, 0, 0, 0, 64 | 0, 0, 0, 0, 0, 0]
|
|
1766
|
+
];
|
|
1767
|
+
var RuleStatement$ = [3, n0, _RS,
|
|
1768
|
+
0,
|
|
1769
|
+
[_LCRS, _LRS, _IRS],
|
|
1770
|
+
[() => LicenseConfigurationRuleStatement$, () => LicenseRuleStatement$, () => InstanceRuleStatement$]
|
|
1771
|
+
];
|
|
1772
|
+
var S3Location$ = [3, n0, _SL,
|
|
1773
|
+
0,
|
|
1774
|
+
[_b, _kP],
|
|
1775
|
+
[0, 0]
|
|
1776
|
+
];
|
|
1777
|
+
var ScriptRuleStatement$ = [3, n0, _SRSc,
|
|
1778
|
+
0,
|
|
1779
|
+
[_KTM, _Sc],
|
|
1780
|
+
[0, 0], 2
|
|
1781
|
+
];
|
|
1782
|
+
var ServiceStatus$ = [3, n0, _SS,
|
|
1783
|
+
0,
|
|
1784
|
+
[_CAD, _CRD],
|
|
1785
|
+
[() => CrossAccountDiscoveryServiceStatus$, () => CrossRegionDiscoveryStatus$]
|
|
1786
|
+
];
|
|
1787
|
+
var Tag$ = [3, n0, _Ta,
|
|
1788
|
+
0,
|
|
1789
|
+
[_K, _Val],
|
|
1790
|
+
[0, 0]
|
|
1791
|
+
];
|
|
1792
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1793
|
+
0,
|
|
1794
|
+
[_RA, _T],
|
|
1795
|
+
[0, () => TagList], 2
|
|
1796
|
+
];
|
|
1797
|
+
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1798
|
+
0,
|
|
1799
|
+
[],
|
|
1800
|
+
[]
|
|
1801
|
+
];
|
|
1802
|
+
var TokenData$ = [3, n0, _TD,
|
|
1803
|
+
0,
|
|
1804
|
+
[_TI, _TT, _LA, _ETx, _TP, _RAo, _S],
|
|
1805
|
+
[0, 0, 0, 0, 64 | 0, 64 | 0, 0]
|
|
1806
|
+
];
|
|
1807
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1808
|
+
0,
|
|
1809
|
+
[_RA, _TK],
|
|
1810
|
+
[0, 64 | 0], 2
|
|
1811
|
+
];
|
|
1812
|
+
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1813
|
+
0,
|
|
1814
|
+
[],
|
|
1815
|
+
[]
|
|
1816
|
+
];
|
|
1817
|
+
var UpdateLicenseAssetGroupRequest$ = [3, n0, _ULAGR,
|
|
1818
|
+
0,
|
|
1819
|
+
[_ALARARN, _LAGA, _CT, _N, _D, _LAGC, _Pr, _S],
|
|
1820
|
+
[64 | 0, 0, 0, 0, 0, () => LicenseAssetGroupConfigurationList, () => LicenseAssetGroupPropertyList, 0], 3
|
|
1821
|
+
];
|
|
1822
|
+
var UpdateLicenseAssetGroupResponse$ = [3, n0, _ULAGRp,
|
|
1823
|
+
0,
|
|
1824
|
+
[_LAGA, _S],
|
|
1825
|
+
[0, 0], 2
|
|
1826
|
+
];
|
|
1827
|
+
var UpdateLicenseAssetRulesetRequest$ = [3, n0, _ULARR,
|
|
1828
|
+
0,
|
|
1829
|
+
[_R, _LARA, _CT, _N, _D],
|
|
1830
|
+
[() => LicenseAssetRuleList, 0, 0, 0, 0], 3
|
|
1831
|
+
];
|
|
1832
|
+
var UpdateLicenseAssetRulesetResponse$ = [3, n0, _ULARRp,
|
|
1833
|
+
0,
|
|
1834
|
+
[_LARA],
|
|
1835
|
+
[0], 1
|
|
1836
|
+
];
|
|
1837
|
+
var UpdateLicenseConfigurationRequest$ = [3, n0, _ULCR,
|
|
1838
|
+
0,
|
|
1839
|
+
[_LCA, _LCS, _LR, _LC, _LCHL, _N, _D, _PIL, _DWNF, _LE],
|
|
1840
|
+
[0, 0, 64 | 0, 1, 2, 0, 0, () => ProductInformationList, 2, 1], 1
|
|
1841
|
+
];
|
|
1842
|
+
var UpdateLicenseConfigurationResponse$ = [3, n0, _ULCRp,
|
|
1843
|
+
0,
|
|
1844
|
+
[],
|
|
1845
|
+
[]
|
|
1846
|
+
];
|
|
1847
|
+
var UpdateLicenseManagerReportGeneratorRequest$ = [3, n0, _ULMRGR,
|
|
1848
|
+
0,
|
|
1849
|
+
[_LMRGA, _RGN, _Ty, _RC, _RF, _CT, _D],
|
|
1850
|
+
[0, 0, 64 | 0, () => ReportContext$, () => ReportFrequency$, 0, 0], 6
|
|
1851
|
+
];
|
|
1852
|
+
var UpdateLicenseManagerReportGeneratorResponse$ = [3, n0, _ULMRGRp,
|
|
1853
|
+
0,
|
|
1854
|
+
[],
|
|
1855
|
+
[]
|
|
1856
|
+
];
|
|
1857
|
+
var UpdateLicenseSpecificationsForResourceRequest$ = [3, n0, _ULSFRR,
|
|
1858
|
+
0,
|
|
1859
|
+
[_RA, _ALS, _RLS],
|
|
1860
|
+
[0, () => LicenseSpecifications, () => LicenseSpecifications], 1
|
|
1861
|
+
];
|
|
1862
|
+
var UpdateLicenseSpecificationsForResourceResponse$ = [3, n0, _ULSFRRp,
|
|
1863
|
+
0,
|
|
1864
|
+
[],
|
|
1865
|
+
[]
|
|
1866
|
+
];
|
|
1867
|
+
var UpdateServiceSettingsRequest$ = [3, n0, _USSR,
|
|
1868
|
+
0,
|
|
1869
|
+
[_SBA, _STA, _OC, _ECAD, _EDSR],
|
|
1870
|
+
[0, 0, () => OrganizationConfiguration$, 2, 64 | 0]
|
|
1871
|
+
];
|
|
1872
|
+
var UpdateServiceSettingsResponse$ = [3, n0, _USSRp,
|
|
1873
|
+
0,
|
|
1874
|
+
[],
|
|
1875
|
+
[]
|
|
1876
|
+
];
|
|
1877
|
+
var AssetList = [1, n0, _AL,
|
|
1878
|
+
0, () => Asset$
|
|
1879
|
+
];
|
|
1880
|
+
var ConsumedLicenseSummaryList = [1, n0, _CLSL,
|
|
1881
|
+
0, () => ConsumedLicenseSummary$
|
|
1882
|
+
];
|
|
1883
|
+
var EntitlementDataList = [1, n0, _EDL,
|
|
1884
|
+
0, () => EntitlementData$
|
|
1885
|
+
];
|
|
1886
|
+
var EntitlementList = [1, n0, _EL,
|
|
1887
|
+
0, () => Entitlement$
|
|
1888
|
+
];
|
|
1889
|
+
var EntitlementUsageList = [1, n0, _EUL,
|
|
1890
|
+
0, () => EntitlementUsage$
|
|
1891
|
+
];
|
|
1892
|
+
var FilterList = [1, n0, _FL,
|
|
1893
|
+
0, [() => Filter$,
|
|
1894
|
+
0]
|
|
1895
|
+
];
|
|
1896
|
+
var Filters = [1, n0, _Fi,
|
|
1897
|
+
0, [() => Filter$,
|
|
1898
|
+
{ [_xN]: _i }]
|
|
1899
|
+
];
|
|
1900
|
+
var FilterValues = [1, n0, _FV,
|
|
1901
|
+
0, [0,
|
|
1902
|
+
{ [_xN]: _i }]
|
|
1903
|
+
];
|
|
1904
|
+
var GrantedLicenseList = [1, n0, _GLL,
|
|
1905
|
+
0, () => GrantedLicense$
|
|
1906
|
+
];
|
|
1907
|
+
var GrantList = [1, n0, _GLr,
|
|
1908
|
+
0, () => Grant$
|
|
1909
|
+
];
|
|
1910
|
+
var InventoryFilterList = [1, n0, _IFL,
|
|
1911
|
+
0, () => InventoryFilter$
|
|
1912
|
+
];
|
|
1913
|
+
var LicenseAssetGroupConfigurationList = [1, n0, _LAGCL,
|
|
1914
|
+
0, () => LicenseAssetGroupConfiguration$
|
|
1915
|
+
];
|
|
1916
|
+
var LicenseAssetGroupList = [1, n0, _LAGL,
|
|
1917
|
+
0, () => LicenseAssetGroup$
|
|
1918
|
+
];
|
|
1919
|
+
var LicenseAssetGroupPropertyList = [1, n0, _LAGPL,
|
|
1920
|
+
0, () => LicenseAssetGroupProperty$
|
|
1921
|
+
];
|
|
1922
|
+
var LicenseAssetRuleList = [1, n0, _LARL,
|
|
1923
|
+
0, () => LicenseAssetRule$
|
|
1924
|
+
];
|
|
1925
|
+
var LicenseAssetRulesetList = [1, n0, _LARLi,
|
|
1926
|
+
0, () => LicenseAssetRuleset$
|
|
1927
|
+
];
|
|
1928
|
+
var LicenseConfigurationAssociations = [1, n0, _LCAic,
|
|
1929
|
+
0, () => LicenseConfigurationAssociation$
|
|
1930
|
+
];
|
|
1931
|
+
var LicenseConfigurations = [1, n0, _LCic,
|
|
1932
|
+
0, () => LicenseConfiguration$
|
|
1933
|
+
];
|
|
1934
|
+
var LicenseConfigurationUsageList = [1, n0, _LCUL,
|
|
1935
|
+
0, () => LicenseConfigurationUsage$
|
|
1936
|
+
];
|
|
1937
|
+
var LicenseConversionTasks = [1, n0, _LCTicen,
|
|
1938
|
+
0, () => LicenseConversionTask$
|
|
1939
|
+
];
|
|
1940
|
+
var LicenseList = [1, n0, _LL,
|
|
1941
|
+
0, () => License$
|
|
1942
|
+
];
|
|
1943
|
+
var LicenseOperationFailureList = [1, n0, _LOFL,
|
|
1944
|
+
0, () => LicenseOperationFailure$
|
|
1945
|
+
];
|
|
1946
|
+
var LicenseSpecifications = [1, n0, _LSi,
|
|
1947
|
+
0, () => LicenseSpecification$
|
|
1948
|
+
];
|
|
1949
|
+
var ManagedResourceSummaryList = [1, n0, _MRSL,
|
|
1950
|
+
0, () => ManagedResourceSummary$
|
|
1951
|
+
];
|
|
1952
|
+
var MatchingRuleStatementList = [1, n0, _MRSLa,
|
|
1953
|
+
0, () => MatchingRuleStatement$
|
|
1954
|
+
];
|
|
1955
|
+
var MetadataList = [1, n0, _ML,
|
|
1956
|
+
0, () => Metadata$
|
|
1957
|
+
];
|
|
1958
|
+
var ProductCodeList = [1, n0, _PCL,
|
|
1959
|
+
0, () => ProductCodeListItem$
|
|
1960
|
+
];
|
|
1961
|
+
var ProductInformationFilterList = [1, n0, _PIFL,
|
|
1962
|
+
0, () => ProductInformationFilter$
|
|
1963
|
+
];
|
|
1964
|
+
var ProductInformationList = [1, n0, _PIL,
|
|
1965
|
+
0, () => ProductInformation$
|
|
1966
|
+
];
|
|
1967
|
+
var ReportGeneratorList = [1, n0, _RGL,
|
|
1968
|
+
0, () => ReportGenerator$
|
|
1969
|
+
];
|
|
1970
|
+
var ResourceInventoryList = [1, n0, _RIL,
|
|
1971
|
+
0, () => ResourceInventory$
|
|
1972
|
+
];
|
|
1973
|
+
var ScriptRuleStatementList = [1, n0, _SRSL,
|
|
1974
|
+
0, () => ScriptRuleStatement$
|
|
1975
|
+
];
|
|
1976
|
+
var TagList = [1, n0, _TL,
|
|
1977
|
+
0, () => Tag$
|
|
1978
|
+
];
|
|
1979
|
+
var TokenList = [1, n0, _TLo,
|
|
1980
|
+
0, () => TokenData$
|
|
1981
|
+
];
|
|
1982
|
+
var RegionStatusMap = [2, n0, _RSM,
|
|
1983
|
+
0, 0, () => RegionStatus$
|
|
1984
|
+
];
|
|
1985
|
+
var AcceptGrant$ = [9, n0, _AG,
|
|
1986
|
+
0, () => AcceptGrantRequest$, () => AcceptGrantResponse$
|
|
1987
|
+
];
|
|
1988
|
+
var CheckInLicense$ = [9, n0, _CIL,
|
|
1989
|
+
0, () => CheckInLicenseRequest$, () => CheckInLicenseResponse$
|
|
1990
|
+
];
|
|
1991
|
+
var CheckoutBorrowLicense$ = [9, n0, _CBL,
|
|
1992
|
+
0, () => CheckoutBorrowLicenseRequest$, () => CheckoutBorrowLicenseResponse$
|
|
1993
|
+
];
|
|
1994
|
+
var CheckoutLicense$ = [9, n0, _CLh,
|
|
1995
|
+
0, () => CheckoutLicenseRequest$, () => CheckoutLicenseResponse$
|
|
1996
|
+
];
|
|
1997
|
+
var CreateGrant$ = [9, n0, _CG,
|
|
1998
|
+
0, () => CreateGrantRequest$, () => CreateGrantResponse$
|
|
1999
|
+
];
|
|
2000
|
+
var CreateGrantVersion$ = [9, n0, _CGV,
|
|
2001
|
+
0, () => CreateGrantVersionRequest$, () => CreateGrantVersionResponse$
|
|
2002
|
+
];
|
|
2003
|
+
var CreateLicense$ = [9, n0, _CLr,
|
|
2004
|
+
0, () => CreateLicenseRequest$, () => CreateLicenseResponse$
|
|
2005
|
+
];
|
|
2006
|
+
var CreateLicenseAssetGroup$ = [9, n0, _CLAG,
|
|
2007
|
+
0, () => CreateLicenseAssetGroupRequest$, () => CreateLicenseAssetGroupResponse$
|
|
2008
|
+
];
|
|
2009
|
+
var CreateLicenseAssetRuleset$ = [9, n0, _CLAR,
|
|
2010
|
+
0, () => CreateLicenseAssetRulesetRequest$, () => CreateLicenseAssetRulesetResponse$
|
|
2011
|
+
];
|
|
2012
|
+
var CreateLicenseConfiguration$ = [9, n0, _CLC,
|
|
2013
|
+
0, () => CreateLicenseConfigurationRequest$, () => CreateLicenseConfigurationResponse$
|
|
2014
|
+
];
|
|
2015
|
+
var CreateLicenseConversionTaskForResource$ = [9, n0, _CLCTFR,
|
|
2016
|
+
0, () => CreateLicenseConversionTaskForResourceRequest$, () => CreateLicenseConversionTaskForResourceResponse$
|
|
2017
|
+
];
|
|
2018
|
+
var CreateLicenseManagerReportGenerator$ = [9, n0, _CLMRG,
|
|
2019
|
+
0, () => CreateLicenseManagerReportGeneratorRequest$, () => CreateLicenseManagerReportGeneratorResponse$
|
|
2020
|
+
];
|
|
2021
|
+
var CreateLicenseVersion$ = [9, n0, _CLV,
|
|
2022
|
+
0, () => CreateLicenseVersionRequest$, () => CreateLicenseVersionResponse$
|
|
2023
|
+
];
|
|
2024
|
+
var CreateToken$ = [9, n0, _CTre,
|
|
2025
|
+
0, () => CreateTokenRequest$, () => CreateTokenResponse$
|
|
2026
|
+
];
|
|
2027
|
+
var DeleteGrant$ = [9, n0, _DG,
|
|
2028
|
+
0, () => DeleteGrantRequest$, () => DeleteGrantResponse$
|
|
2029
|
+
];
|
|
2030
|
+
var DeleteLicense$ = [9, n0, _DL,
|
|
2031
|
+
0, () => DeleteLicenseRequest$, () => DeleteLicenseResponse$
|
|
2032
|
+
];
|
|
2033
|
+
var DeleteLicenseAssetGroup$ = [9, n0, _DLAG,
|
|
2034
|
+
0, () => DeleteLicenseAssetGroupRequest$, () => DeleteLicenseAssetGroupResponse$
|
|
2035
|
+
];
|
|
2036
|
+
var DeleteLicenseAssetRuleset$ = [9, n0, _DLAR,
|
|
2037
|
+
0, () => DeleteLicenseAssetRulesetRequest$, () => DeleteLicenseAssetRulesetResponse$
|
|
2038
|
+
];
|
|
2039
|
+
var DeleteLicenseConfiguration$ = [9, n0, _DLCe,
|
|
2040
|
+
0, () => DeleteLicenseConfigurationRequest$, () => DeleteLicenseConfigurationResponse$
|
|
2041
|
+
];
|
|
2042
|
+
var DeleteLicenseManagerReportGenerator$ = [9, n0, _DLMRG,
|
|
2043
|
+
0, () => DeleteLicenseManagerReportGeneratorRequest$, () => DeleteLicenseManagerReportGeneratorResponse$
|
|
2044
|
+
];
|
|
2045
|
+
var DeleteToken$ = [9, n0, _DT,
|
|
2046
|
+
0, () => DeleteTokenRequest$, () => DeleteTokenResponse$
|
|
2047
|
+
];
|
|
2048
|
+
var ExtendLicenseConsumption$ = [9, n0, _ELC,
|
|
2049
|
+
0, () => ExtendLicenseConsumptionRequest$, () => ExtendLicenseConsumptionResponse$
|
|
2050
|
+
];
|
|
2051
|
+
var GetAccessToken$ = [9, n0, _GAT,
|
|
2052
|
+
0, () => GetAccessTokenRequest$, () => GetAccessTokenResponse$
|
|
2053
|
+
];
|
|
2054
|
+
var GetGrant$ = [9, n0, _GG,
|
|
2055
|
+
0, () => GetGrantRequest$, () => GetGrantResponse$
|
|
2056
|
+
];
|
|
2057
|
+
var GetLicense$ = [9, n0, _GLe,
|
|
2058
|
+
0, () => GetLicenseRequest$, () => GetLicenseResponse$
|
|
2059
|
+
];
|
|
2060
|
+
var GetLicenseAssetGroup$ = [9, n0, _GLAG,
|
|
2061
|
+
0, () => GetLicenseAssetGroupRequest$, () => GetLicenseAssetGroupResponse$
|
|
2062
|
+
];
|
|
2063
|
+
var GetLicenseAssetRuleset$ = [9, n0, _GLAR,
|
|
2064
|
+
0, () => GetLicenseAssetRulesetRequest$, () => GetLicenseAssetRulesetResponse$
|
|
2065
|
+
];
|
|
2066
|
+
var GetLicenseConfiguration$ = [9, n0, _GLC,
|
|
2067
|
+
0, () => GetLicenseConfigurationRequest$, () => GetLicenseConfigurationResponse$
|
|
2068
|
+
];
|
|
2069
|
+
var GetLicenseConversionTask$ = [9, n0, _GLCT,
|
|
2070
|
+
0, () => GetLicenseConversionTaskRequest$, () => GetLicenseConversionTaskResponse$
|
|
2071
|
+
];
|
|
2072
|
+
var GetLicenseManagerReportGenerator$ = [9, n0, _GLMRG,
|
|
2073
|
+
0, () => GetLicenseManagerReportGeneratorRequest$, () => GetLicenseManagerReportGeneratorResponse$
|
|
2074
|
+
];
|
|
2075
|
+
var GetLicenseUsage$ = [9, n0, _GLU,
|
|
2076
|
+
0, () => GetLicenseUsageRequest$, () => GetLicenseUsageResponse$
|
|
2077
|
+
];
|
|
2078
|
+
var GetServiceSettings$ = [9, n0, _GSS,
|
|
2079
|
+
0, () => GetServiceSettingsRequest$, () => GetServiceSettingsResponse$
|
|
2080
|
+
];
|
|
2081
|
+
var ListAssetsForLicenseAssetGroup$ = [9, n0, _LAFLAG,
|
|
2082
|
+
0, () => ListAssetsForLicenseAssetGroupRequest$, () => ListAssetsForLicenseAssetGroupResponse$
|
|
2083
|
+
];
|
|
2084
|
+
var ListAssociationsForLicenseConfiguration$ = [9, n0, _LAFLC,
|
|
2085
|
+
0, () => ListAssociationsForLicenseConfigurationRequest$, () => ListAssociationsForLicenseConfigurationResponse$
|
|
2086
|
+
];
|
|
2087
|
+
var ListDistributedGrants$ = [9, n0, _LDG,
|
|
2088
|
+
0, () => ListDistributedGrantsRequest$, () => ListDistributedGrantsResponse$
|
|
2089
|
+
];
|
|
2090
|
+
var ListFailuresForLicenseConfigurationOperations$ = [9, n0, _LFFLCO,
|
|
2091
|
+
0, () => ListFailuresForLicenseConfigurationOperationsRequest$, () => ListFailuresForLicenseConfigurationOperationsResponse$
|
|
2092
|
+
];
|
|
2093
|
+
var ListLicenseAssetGroups$ = [9, n0, _LLAG,
|
|
2094
|
+
0, () => ListLicenseAssetGroupsRequest$, () => ListLicenseAssetGroupsResponse$
|
|
2095
|
+
];
|
|
2096
|
+
var ListLicenseAssetRulesets$ = [9, n0, _LLAR,
|
|
2097
|
+
0, () => ListLicenseAssetRulesetsRequest$, () => ListLicenseAssetRulesetsResponse$
|
|
2098
|
+
];
|
|
2099
|
+
var ListLicenseConfigurations$ = [9, n0, _LLC,
|
|
2100
|
+
0, () => ListLicenseConfigurationsRequest$, () => ListLicenseConfigurationsResponse$
|
|
2101
|
+
];
|
|
2102
|
+
var ListLicenseConfigurationsForOrganization$ = [9, n0, _LLCFO,
|
|
2103
|
+
0, () => ListLicenseConfigurationsForOrganizationRequest$, () => ListLicenseConfigurationsForOrganizationResponse$
|
|
2104
|
+
];
|
|
2105
|
+
var ListLicenseConversionTasks$ = [9, n0, _LLCT,
|
|
2106
|
+
0, () => ListLicenseConversionTasksRequest$, () => ListLicenseConversionTasksResponse$
|
|
2107
|
+
];
|
|
2108
|
+
var ListLicenseManagerReportGenerators$ = [9, n0, _LLMRG,
|
|
2109
|
+
0, () => ListLicenseManagerReportGeneratorsRequest$, () => ListLicenseManagerReportGeneratorsResponse$
|
|
2110
|
+
];
|
|
2111
|
+
var ListLicenses$ = [9, n0, _LLi,
|
|
2112
|
+
0, () => ListLicensesRequest$, () => ListLicensesResponse$
|
|
2113
|
+
];
|
|
2114
|
+
var ListLicenseSpecificationsForResource$ = [9, n0, _LLSFR,
|
|
2115
|
+
0, () => ListLicenseSpecificationsForResourceRequest$, () => ListLicenseSpecificationsForResourceResponse$
|
|
2116
|
+
];
|
|
2117
|
+
var ListLicenseVersions$ = [9, n0, _LLV,
|
|
2118
|
+
0, () => ListLicenseVersionsRequest$, () => ListLicenseVersionsResponse$
|
|
2119
|
+
];
|
|
2120
|
+
var ListReceivedGrants$ = [9, n0, _LRG,
|
|
2121
|
+
0, () => ListReceivedGrantsRequest$, () => ListReceivedGrantsResponse$
|
|
2122
|
+
];
|
|
2123
|
+
var ListReceivedGrantsForOrganization$ = [9, n0, _LRGFO,
|
|
2124
|
+
0, () => ListReceivedGrantsForOrganizationRequest$, () => ListReceivedGrantsForOrganizationResponse$
|
|
2125
|
+
];
|
|
2126
|
+
var ListReceivedLicenses$ = [9, n0, _LRL,
|
|
2127
|
+
0, () => ListReceivedLicensesRequest$, () => ListReceivedLicensesResponse$
|
|
2128
|
+
];
|
|
2129
|
+
var ListReceivedLicensesForOrganization$ = [9, n0, _LRLFO,
|
|
2130
|
+
0, () => ListReceivedLicensesForOrganizationRequest$, () => ListReceivedLicensesForOrganizationResponse$
|
|
2131
|
+
];
|
|
2132
|
+
var ListResourceInventory$ = [9, n0, _LRI,
|
|
2133
|
+
0, () => ListResourceInventoryRequest$, () => ListResourceInventoryResponse$
|
|
2134
|
+
];
|
|
2135
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
2136
|
+
0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
2137
|
+
];
|
|
2138
|
+
var ListTokens$ = [9, n0, _LT,
|
|
2139
|
+
0, () => ListTokensRequest$, () => ListTokensResponse$
|
|
2140
|
+
];
|
|
2141
|
+
var ListUsageForLicenseConfiguration$ = [9, n0, _LUFLC,
|
|
2142
|
+
0, () => ListUsageForLicenseConfigurationRequest$, () => ListUsageForLicenseConfigurationResponse$
|
|
2143
|
+
];
|
|
2144
|
+
var RejectGrant$ = [9, n0, _RGej,
|
|
2145
|
+
0, () => RejectGrantRequest$, () => RejectGrantResponse$
|
|
2146
|
+
];
|
|
2147
|
+
var TagResource$ = [9, n0, _TR,
|
|
2148
|
+
0, () => TagResourceRequest$, () => TagResourceResponse$
|
|
2149
|
+
];
|
|
2150
|
+
var UntagResource$ = [9, n0, _UR,
|
|
2151
|
+
0, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
2152
|
+
];
|
|
2153
|
+
var UpdateLicenseAssetGroup$ = [9, n0, _ULAG,
|
|
2154
|
+
0, () => UpdateLicenseAssetGroupRequest$, () => UpdateLicenseAssetGroupResponse$
|
|
2155
|
+
];
|
|
2156
|
+
var UpdateLicenseAssetRuleset$ = [9, n0, _ULAR,
|
|
2157
|
+
0, () => UpdateLicenseAssetRulesetRequest$, () => UpdateLicenseAssetRulesetResponse$
|
|
2158
|
+
];
|
|
2159
|
+
var UpdateLicenseConfiguration$ = [9, n0, _ULC,
|
|
2160
|
+
0, () => UpdateLicenseConfigurationRequest$, () => UpdateLicenseConfigurationResponse$
|
|
2161
|
+
];
|
|
2162
|
+
var UpdateLicenseManagerReportGenerator$ = [9, n0, _ULMRG,
|
|
2163
|
+
0, () => UpdateLicenseManagerReportGeneratorRequest$, () => UpdateLicenseManagerReportGeneratorResponse$
|
|
2164
|
+
];
|
|
2165
|
+
var UpdateLicenseSpecificationsForResource$ = [9, n0, _ULSFR,
|
|
2166
|
+
0, () => UpdateLicenseSpecificationsForResourceRequest$, () => UpdateLicenseSpecificationsForResourceResponse$
|
|
2167
|
+
];
|
|
2168
|
+
var UpdateServiceSettings$ = [9, n0, _USS,
|
|
2169
|
+
0, () => UpdateServiceSettingsRequest$, () => UpdateServiceSettingsResponse$
|
|
2170
|
+
];
|
|
2171
|
+
|
|
2172
|
+
const getRuntimeConfig$1 = (config) => {
|
|
2173
|
+
return {
|
|
2174
|
+
apiVersion: "2018-08-01",
|
|
2175
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
2176
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
2177
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
2178
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
2179
|
+
extensions: config?.extensions ?? [],
|
|
2180
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultLicenseManagerHttpAuthSchemeProvider,
|
|
2181
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
2182
|
+
{
|
|
2183
|
+
schemeId: "aws.auth#sigv4",
|
|
2184
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
2185
|
+
signer: new AwsSdkSigV4Signer(),
|
|
2186
|
+
},
|
|
2187
|
+
],
|
|
2188
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
2189
|
+
protocol: config?.protocol ?? AwsJson1_1Protocol,
|
|
2190
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
2191
|
+
defaultNamespace: "com.amazonaws.licensemanager",
|
|
2192
|
+
errorTypeRegistries,
|
|
2193
|
+
xmlNamespace: "https://license-manager.amazonaws.com/doc/2018_08_01",
|
|
2194
|
+
version: "2018-08-01",
|
|
2195
|
+
serviceTarget: "AWSLicenseManager",
|
|
2196
|
+
},
|
|
2197
|
+
serviceId: config?.serviceId ?? "License Manager",
|
|
2198
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
2199
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
2200
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
2201
|
+
};
|
|
2202
|
+
};
|
|
2203
|
+
|
|
2204
|
+
const getRuntimeConfig = (config) => {
|
|
2205
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
2206
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
2207
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
2208
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
2209
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
2210
|
+
const loaderConfig = {
|
|
2211
|
+
profile: config?.profile,
|
|
2212
|
+
logger: clientSharedValues.logger,
|
|
2213
|
+
};
|
|
2214
|
+
return {
|
|
2215
|
+
...clientSharedValues,
|
|
2216
|
+
...config,
|
|
2217
|
+
runtime: "node",
|
|
2218
|
+
defaultsMode,
|
|
2219
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
2220
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
2221
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
2222
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
2223
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
2224
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
2225
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
2226
|
+
retryMode: config?.retryMode ??
|
|
2227
|
+
loadConfig({
|
|
2228
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
2229
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
2230
|
+
}, config),
|
|
2231
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
2232
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
2233
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
2234
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
2235
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
2236
|
+
};
|
|
2237
|
+
};
|
|
2238
|
+
|
|
34
2239
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
2240
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
2241
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -1091,88 +3296,368 @@ const LicenseConfigurationStatus = {
|
|
|
1091
3296
|
DISABLED: "DISABLED",
|
|
1092
3297
|
};
|
|
1093
3298
|
|
|
3299
|
+
exports.AcceptGrant$ = AcceptGrant$;
|
|
1094
3300
|
exports.AcceptGrantCommand = AcceptGrantCommand;
|
|
3301
|
+
exports.AcceptGrantRequest$ = AcceptGrantRequest$;
|
|
3302
|
+
exports.AcceptGrantResponse$ = AcceptGrantResponse$;
|
|
3303
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
3304
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
1095
3305
|
exports.ActivationOverrideBehavior = ActivationOverrideBehavior;
|
|
1096
3306
|
exports.AllowedOperation = AllowedOperation;
|
|
3307
|
+
exports.AndRuleStatement$ = AndRuleStatement$;
|
|
3308
|
+
exports.Asset$ = Asset$;
|
|
3309
|
+
exports.AuthorizationException = AuthorizationException;
|
|
3310
|
+
exports.AuthorizationException$ = AuthorizationException$;
|
|
3311
|
+
exports.AutomatedDiscoveryInformation$ = AutomatedDiscoveryInformation$;
|
|
3312
|
+
exports.BorrowConfiguration$ = BorrowConfiguration$;
|
|
3313
|
+
exports.CheckInLicense$ = CheckInLicense$;
|
|
1097
3314
|
exports.CheckInLicenseCommand = CheckInLicenseCommand;
|
|
3315
|
+
exports.CheckInLicenseRequest$ = CheckInLicenseRequest$;
|
|
3316
|
+
exports.CheckInLicenseResponse$ = CheckInLicenseResponse$;
|
|
3317
|
+
exports.CheckoutBorrowLicense$ = CheckoutBorrowLicense$;
|
|
1098
3318
|
exports.CheckoutBorrowLicenseCommand = CheckoutBorrowLicenseCommand;
|
|
3319
|
+
exports.CheckoutBorrowLicenseRequest$ = CheckoutBorrowLicenseRequest$;
|
|
3320
|
+
exports.CheckoutBorrowLicenseResponse$ = CheckoutBorrowLicenseResponse$;
|
|
3321
|
+
exports.CheckoutLicense$ = CheckoutLicense$;
|
|
1099
3322
|
exports.CheckoutLicenseCommand = CheckoutLicenseCommand;
|
|
3323
|
+
exports.CheckoutLicenseRequest$ = CheckoutLicenseRequest$;
|
|
3324
|
+
exports.CheckoutLicenseResponse$ = CheckoutLicenseResponse$;
|
|
1100
3325
|
exports.CheckoutType = CheckoutType;
|
|
3326
|
+
exports.ConflictException = ConflictException;
|
|
3327
|
+
exports.ConflictException$ = ConflictException$;
|
|
3328
|
+
exports.ConsumedLicenseSummary$ = ConsumedLicenseSummary$;
|
|
3329
|
+
exports.ConsumptionConfiguration$ = ConsumptionConfiguration$;
|
|
3330
|
+
exports.CreateGrant$ = CreateGrant$;
|
|
1101
3331
|
exports.CreateGrantCommand = CreateGrantCommand;
|
|
3332
|
+
exports.CreateGrantRequest$ = CreateGrantRequest$;
|
|
3333
|
+
exports.CreateGrantResponse$ = CreateGrantResponse$;
|
|
3334
|
+
exports.CreateGrantVersion$ = CreateGrantVersion$;
|
|
1102
3335
|
exports.CreateGrantVersionCommand = CreateGrantVersionCommand;
|
|
3336
|
+
exports.CreateGrantVersionRequest$ = CreateGrantVersionRequest$;
|
|
3337
|
+
exports.CreateGrantVersionResponse$ = CreateGrantVersionResponse$;
|
|
3338
|
+
exports.CreateLicense$ = CreateLicense$;
|
|
3339
|
+
exports.CreateLicenseAssetGroup$ = CreateLicenseAssetGroup$;
|
|
1103
3340
|
exports.CreateLicenseAssetGroupCommand = CreateLicenseAssetGroupCommand;
|
|
3341
|
+
exports.CreateLicenseAssetGroupRequest$ = CreateLicenseAssetGroupRequest$;
|
|
3342
|
+
exports.CreateLicenseAssetGroupResponse$ = CreateLicenseAssetGroupResponse$;
|
|
3343
|
+
exports.CreateLicenseAssetRuleset$ = CreateLicenseAssetRuleset$;
|
|
1104
3344
|
exports.CreateLicenseAssetRulesetCommand = CreateLicenseAssetRulesetCommand;
|
|
3345
|
+
exports.CreateLicenseAssetRulesetRequest$ = CreateLicenseAssetRulesetRequest$;
|
|
3346
|
+
exports.CreateLicenseAssetRulesetResponse$ = CreateLicenseAssetRulesetResponse$;
|
|
1105
3347
|
exports.CreateLicenseCommand = CreateLicenseCommand;
|
|
3348
|
+
exports.CreateLicenseConfiguration$ = CreateLicenseConfiguration$;
|
|
1106
3349
|
exports.CreateLicenseConfigurationCommand = CreateLicenseConfigurationCommand;
|
|
3350
|
+
exports.CreateLicenseConfigurationRequest$ = CreateLicenseConfigurationRequest$;
|
|
3351
|
+
exports.CreateLicenseConfigurationResponse$ = CreateLicenseConfigurationResponse$;
|
|
3352
|
+
exports.CreateLicenseConversionTaskForResource$ = CreateLicenseConversionTaskForResource$;
|
|
1107
3353
|
exports.CreateLicenseConversionTaskForResourceCommand = CreateLicenseConversionTaskForResourceCommand;
|
|
3354
|
+
exports.CreateLicenseConversionTaskForResourceRequest$ = CreateLicenseConversionTaskForResourceRequest$;
|
|
3355
|
+
exports.CreateLicenseConversionTaskForResourceResponse$ = CreateLicenseConversionTaskForResourceResponse$;
|
|
3356
|
+
exports.CreateLicenseManagerReportGenerator$ = CreateLicenseManagerReportGenerator$;
|
|
1108
3357
|
exports.CreateLicenseManagerReportGeneratorCommand = CreateLicenseManagerReportGeneratorCommand;
|
|
3358
|
+
exports.CreateLicenseManagerReportGeneratorRequest$ = CreateLicenseManagerReportGeneratorRequest$;
|
|
3359
|
+
exports.CreateLicenseManagerReportGeneratorResponse$ = CreateLicenseManagerReportGeneratorResponse$;
|
|
3360
|
+
exports.CreateLicenseRequest$ = CreateLicenseRequest$;
|
|
3361
|
+
exports.CreateLicenseResponse$ = CreateLicenseResponse$;
|
|
3362
|
+
exports.CreateLicenseVersion$ = CreateLicenseVersion$;
|
|
1109
3363
|
exports.CreateLicenseVersionCommand = CreateLicenseVersionCommand;
|
|
3364
|
+
exports.CreateLicenseVersionRequest$ = CreateLicenseVersionRequest$;
|
|
3365
|
+
exports.CreateLicenseVersionResponse$ = CreateLicenseVersionResponse$;
|
|
3366
|
+
exports.CreateToken$ = CreateToken$;
|
|
1110
3367
|
exports.CreateTokenCommand = CreateTokenCommand;
|
|
3368
|
+
exports.CreateTokenRequest$ = CreateTokenRequest$;
|
|
3369
|
+
exports.CreateTokenResponse$ = CreateTokenResponse$;
|
|
3370
|
+
exports.CrossAccountDiscoveryServiceStatus$ = CrossAccountDiscoveryServiceStatus$;
|
|
3371
|
+
exports.CrossRegionDiscoveryStatus$ = CrossRegionDiscoveryStatus$;
|
|
3372
|
+
exports.DatetimeRange$ = DatetimeRange$;
|
|
3373
|
+
exports.DeleteGrant$ = DeleteGrant$;
|
|
1111
3374
|
exports.DeleteGrantCommand = DeleteGrantCommand;
|
|
3375
|
+
exports.DeleteGrantRequest$ = DeleteGrantRequest$;
|
|
3376
|
+
exports.DeleteGrantResponse$ = DeleteGrantResponse$;
|
|
3377
|
+
exports.DeleteLicense$ = DeleteLicense$;
|
|
3378
|
+
exports.DeleteLicenseAssetGroup$ = DeleteLicenseAssetGroup$;
|
|
1112
3379
|
exports.DeleteLicenseAssetGroupCommand = DeleteLicenseAssetGroupCommand;
|
|
3380
|
+
exports.DeleteLicenseAssetGroupRequest$ = DeleteLicenseAssetGroupRequest$;
|
|
3381
|
+
exports.DeleteLicenseAssetGroupResponse$ = DeleteLicenseAssetGroupResponse$;
|
|
3382
|
+
exports.DeleteLicenseAssetRuleset$ = DeleteLicenseAssetRuleset$;
|
|
1113
3383
|
exports.DeleteLicenseAssetRulesetCommand = DeleteLicenseAssetRulesetCommand;
|
|
3384
|
+
exports.DeleteLicenseAssetRulesetRequest$ = DeleteLicenseAssetRulesetRequest$;
|
|
3385
|
+
exports.DeleteLicenseAssetRulesetResponse$ = DeleteLicenseAssetRulesetResponse$;
|
|
1114
3386
|
exports.DeleteLicenseCommand = DeleteLicenseCommand;
|
|
3387
|
+
exports.DeleteLicenseConfiguration$ = DeleteLicenseConfiguration$;
|
|
1115
3388
|
exports.DeleteLicenseConfigurationCommand = DeleteLicenseConfigurationCommand;
|
|
3389
|
+
exports.DeleteLicenseConfigurationRequest$ = DeleteLicenseConfigurationRequest$;
|
|
3390
|
+
exports.DeleteLicenseConfigurationResponse$ = DeleteLicenseConfigurationResponse$;
|
|
3391
|
+
exports.DeleteLicenseManagerReportGenerator$ = DeleteLicenseManagerReportGenerator$;
|
|
1116
3392
|
exports.DeleteLicenseManagerReportGeneratorCommand = DeleteLicenseManagerReportGeneratorCommand;
|
|
3393
|
+
exports.DeleteLicenseManagerReportGeneratorRequest$ = DeleteLicenseManagerReportGeneratorRequest$;
|
|
3394
|
+
exports.DeleteLicenseManagerReportGeneratorResponse$ = DeleteLicenseManagerReportGeneratorResponse$;
|
|
3395
|
+
exports.DeleteLicenseRequest$ = DeleteLicenseRequest$;
|
|
3396
|
+
exports.DeleteLicenseResponse$ = DeleteLicenseResponse$;
|
|
3397
|
+
exports.DeleteToken$ = DeleteToken$;
|
|
1117
3398
|
exports.DeleteTokenCommand = DeleteTokenCommand;
|
|
3399
|
+
exports.DeleteTokenRequest$ = DeleteTokenRequest$;
|
|
3400
|
+
exports.DeleteTokenResponse$ = DeleteTokenResponse$;
|
|
1118
3401
|
exports.DigitalSignatureMethod = DigitalSignatureMethod;
|
|
3402
|
+
exports.Entitlement$ = Entitlement$;
|
|
3403
|
+
exports.EntitlementData$ = EntitlementData$;
|
|
1119
3404
|
exports.EntitlementDataUnit = EntitlementDataUnit;
|
|
3405
|
+
exports.EntitlementNotAllowedException = EntitlementNotAllowedException;
|
|
3406
|
+
exports.EntitlementNotAllowedException$ = EntitlementNotAllowedException$;
|
|
1120
3407
|
exports.EntitlementUnit = EntitlementUnit;
|
|
3408
|
+
exports.EntitlementUsage$ = EntitlementUsage$;
|
|
3409
|
+
exports.ExtendLicenseConsumption$ = ExtendLicenseConsumption$;
|
|
1121
3410
|
exports.ExtendLicenseConsumptionCommand = ExtendLicenseConsumptionCommand;
|
|
3411
|
+
exports.ExtendLicenseConsumptionRequest$ = ExtendLicenseConsumptionRequest$;
|
|
3412
|
+
exports.ExtendLicenseConsumptionResponse$ = ExtendLicenseConsumptionResponse$;
|
|
3413
|
+
exports.FailedDependencyException = FailedDependencyException;
|
|
3414
|
+
exports.FailedDependencyException$ = FailedDependencyException$;
|
|
3415
|
+
exports.Filter$ = Filter$;
|
|
3416
|
+
exports.FilterLimitExceededException = FilterLimitExceededException;
|
|
3417
|
+
exports.FilterLimitExceededException$ = FilterLimitExceededException$;
|
|
3418
|
+
exports.GetAccessToken$ = GetAccessToken$;
|
|
1122
3419
|
exports.GetAccessTokenCommand = GetAccessTokenCommand;
|
|
3420
|
+
exports.GetAccessTokenRequest$ = GetAccessTokenRequest$;
|
|
3421
|
+
exports.GetAccessTokenResponse$ = GetAccessTokenResponse$;
|
|
3422
|
+
exports.GetGrant$ = GetGrant$;
|
|
1123
3423
|
exports.GetGrantCommand = GetGrantCommand;
|
|
3424
|
+
exports.GetGrantRequest$ = GetGrantRequest$;
|
|
3425
|
+
exports.GetGrantResponse$ = GetGrantResponse$;
|
|
3426
|
+
exports.GetLicense$ = GetLicense$;
|
|
3427
|
+
exports.GetLicenseAssetGroup$ = GetLicenseAssetGroup$;
|
|
1124
3428
|
exports.GetLicenseAssetGroupCommand = GetLicenseAssetGroupCommand;
|
|
3429
|
+
exports.GetLicenseAssetGroupRequest$ = GetLicenseAssetGroupRequest$;
|
|
3430
|
+
exports.GetLicenseAssetGroupResponse$ = GetLicenseAssetGroupResponse$;
|
|
3431
|
+
exports.GetLicenseAssetRuleset$ = GetLicenseAssetRuleset$;
|
|
1125
3432
|
exports.GetLicenseAssetRulesetCommand = GetLicenseAssetRulesetCommand;
|
|
3433
|
+
exports.GetLicenseAssetRulesetRequest$ = GetLicenseAssetRulesetRequest$;
|
|
3434
|
+
exports.GetLicenseAssetRulesetResponse$ = GetLicenseAssetRulesetResponse$;
|
|
1126
3435
|
exports.GetLicenseCommand = GetLicenseCommand;
|
|
3436
|
+
exports.GetLicenseConfiguration$ = GetLicenseConfiguration$;
|
|
1127
3437
|
exports.GetLicenseConfigurationCommand = GetLicenseConfigurationCommand;
|
|
3438
|
+
exports.GetLicenseConfigurationRequest$ = GetLicenseConfigurationRequest$;
|
|
3439
|
+
exports.GetLicenseConfigurationResponse$ = GetLicenseConfigurationResponse$;
|
|
3440
|
+
exports.GetLicenseConversionTask$ = GetLicenseConversionTask$;
|
|
1128
3441
|
exports.GetLicenseConversionTaskCommand = GetLicenseConversionTaskCommand;
|
|
3442
|
+
exports.GetLicenseConversionTaskRequest$ = GetLicenseConversionTaskRequest$;
|
|
3443
|
+
exports.GetLicenseConversionTaskResponse$ = GetLicenseConversionTaskResponse$;
|
|
3444
|
+
exports.GetLicenseManagerReportGenerator$ = GetLicenseManagerReportGenerator$;
|
|
1129
3445
|
exports.GetLicenseManagerReportGeneratorCommand = GetLicenseManagerReportGeneratorCommand;
|
|
3446
|
+
exports.GetLicenseManagerReportGeneratorRequest$ = GetLicenseManagerReportGeneratorRequest$;
|
|
3447
|
+
exports.GetLicenseManagerReportGeneratorResponse$ = GetLicenseManagerReportGeneratorResponse$;
|
|
3448
|
+
exports.GetLicenseRequest$ = GetLicenseRequest$;
|
|
3449
|
+
exports.GetLicenseResponse$ = GetLicenseResponse$;
|
|
3450
|
+
exports.GetLicenseUsage$ = GetLicenseUsage$;
|
|
1130
3451
|
exports.GetLicenseUsageCommand = GetLicenseUsageCommand;
|
|
3452
|
+
exports.GetLicenseUsageRequest$ = GetLicenseUsageRequest$;
|
|
3453
|
+
exports.GetLicenseUsageResponse$ = GetLicenseUsageResponse$;
|
|
3454
|
+
exports.GetServiceSettings$ = GetServiceSettings$;
|
|
1131
3455
|
exports.GetServiceSettingsCommand = GetServiceSettingsCommand;
|
|
3456
|
+
exports.GetServiceSettingsRequest$ = GetServiceSettingsRequest$;
|
|
3457
|
+
exports.GetServiceSettingsResponse$ = GetServiceSettingsResponse$;
|
|
3458
|
+
exports.Grant$ = Grant$;
|
|
1132
3459
|
exports.GrantStatus = GrantStatus;
|
|
3460
|
+
exports.GrantedLicense$ = GrantedLicense$;
|
|
3461
|
+
exports.InstanceRuleStatement$ = InstanceRuleStatement$;
|
|
3462
|
+
exports.InvalidParameterValueException = InvalidParameterValueException;
|
|
3463
|
+
exports.InvalidParameterValueException$ = InvalidParameterValueException$;
|
|
3464
|
+
exports.InvalidResourceStateException = InvalidResourceStateException;
|
|
3465
|
+
exports.InvalidResourceStateException$ = InvalidResourceStateException$;
|
|
3466
|
+
exports.InventoryFilter$ = InventoryFilter$;
|
|
1133
3467
|
exports.InventoryFilterCondition = InventoryFilterCondition;
|
|
3468
|
+
exports.Issuer$ = Issuer$;
|
|
3469
|
+
exports.IssuerDetails$ = IssuerDetails$;
|
|
3470
|
+
exports.License$ = License$;
|
|
3471
|
+
exports.LicenseAssetGroup$ = LicenseAssetGroup$;
|
|
3472
|
+
exports.LicenseAssetGroupConfiguration$ = LicenseAssetGroupConfiguration$;
|
|
3473
|
+
exports.LicenseAssetGroupProperty$ = LicenseAssetGroupProperty$;
|
|
1134
3474
|
exports.LicenseAssetGroupStatus = LicenseAssetGroupStatus;
|
|
3475
|
+
exports.LicenseAssetRule$ = LicenseAssetRule$;
|
|
3476
|
+
exports.LicenseAssetRuleset$ = LicenseAssetRuleset$;
|
|
3477
|
+
exports.LicenseConfiguration$ = LicenseConfiguration$;
|
|
3478
|
+
exports.LicenseConfigurationAssociation$ = LicenseConfigurationAssociation$;
|
|
3479
|
+
exports.LicenseConfigurationRuleStatement$ = LicenseConfigurationRuleStatement$;
|
|
1135
3480
|
exports.LicenseConfigurationStatus = LicenseConfigurationStatus;
|
|
3481
|
+
exports.LicenseConfigurationUsage$ = LicenseConfigurationUsage$;
|
|
3482
|
+
exports.LicenseConversionContext$ = LicenseConversionContext$;
|
|
3483
|
+
exports.LicenseConversionTask$ = LicenseConversionTask$;
|
|
1136
3484
|
exports.LicenseConversionTaskStatus = LicenseConversionTaskStatus;
|
|
1137
3485
|
exports.LicenseCountingType = LicenseCountingType;
|
|
1138
3486
|
exports.LicenseDeletionStatus = LicenseDeletionStatus;
|
|
1139
3487
|
exports.LicenseManager = LicenseManager;
|
|
1140
3488
|
exports.LicenseManagerClient = LicenseManagerClient;
|
|
3489
|
+
exports.LicenseManagerServiceException = LicenseManagerServiceException;
|
|
3490
|
+
exports.LicenseManagerServiceException$ = LicenseManagerServiceException$;
|
|
3491
|
+
exports.LicenseOperationFailure$ = LicenseOperationFailure$;
|
|
3492
|
+
exports.LicenseRuleStatement$ = LicenseRuleStatement$;
|
|
3493
|
+
exports.LicenseSpecification$ = LicenseSpecification$;
|
|
1141
3494
|
exports.LicenseStatus = LicenseStatus;
|
|
3495
|
+
exports.LicenseUsage$ = LicenseUsage$;
|
|
3496
|
+
exports.LicenseUsageException = LicenseUsageException;
|
|
3497
|
+
exports.LicenseUsageException$ = LicenseUsageException$;
|
|
3498
|
+
exports.ListAssetsForLicenseAssetGroup$ = ListAssetsForLicenseAssetGroup$;
|
|
1142
3499
|
exports.ListAssetsForLicenseAssetGroupCommand = ListAssetsForLicenseAssetGroupCommand;
|
|
3500
|
+
exports.ListAssetsForLicenseAssetGroupRequest$ = ListAssetsForLicenseAssetGroupRequest$;
|
|
3501
|
+
exports.ListAssetsForLicenseAssetGroupResponse$ = ListAssetsForLicenseAssetGroupResponse$;
|
|
3502
|
+
exports.ListAssociationsForLicenseConfiguration$ = ListAssociationsForLicenseConfiguration$;
|
|
1143
3503
|
exports.ListAssociationsForLicenseConfigurationCommand = ListAssociationsForLicenseConfigurationCommand;
|
|
3504
|
+
exports.ListAssociationsForLicenseConfigurationRequest$ = ListAssociationsForLicenseConfigurationRequest$;
|
|
3505
|
+
exports.ListAssociationsForLicenseConfigurationResponse$ = ListAssociationsForLicenseConfigurationResponse$;
|
|
3506
|
+
exports.ListDistributedGrants$ = ListDistributedGrants$;
|
|
1144
3507
|
exports.ListDistributedGrantsCommand = ListDistributedGrantsCommand;
|
|
3508
|
+
exports.ListDistributedGrantsRequest$ = ListDistributedGrantsRequest$;
|
|
3509
|
+
exports.ListDistributedGrantsResponse$ = ListDistributedGrantsResponse$;
|
|
3510
|
+
exports.ListFailuresForLicenseConfigurationOperations$ = ListFailuresForLicenseConfigurationOperations$;
|
|
1145
3511
|
exports.ListFailuresForLicenseConfigurationOperationsCommand = ListFailuresForLicenseConfigurationOperationsCommand;
|
|
3512
|
+
exports.ListFailuresForLicenseConfigurationOperationsRequest$ = ListFailuresForLicenseConfigurationOperationsRequest$;
|
|
3513
|
+
exports.ListFailuresForLicenseConfigurationOperationsResponse$ = ListFailuresForLicenseConfigurationOperationsResponse$;
|
|
3514
|
+
exports.ListLicenseAssetGroups$ = ListLicenseAssetGroups$;
|
|
1146
3515
|
exports.ListLicenseAssetGroupsCommand = ListLicenseAssetGroupsCommand;
|
|
3516
|
+
exports.ListLicenseAssetGroupsRequest$ = ListLicenseAssetGroupsRequest$;
|
|
3517
|
+
exports.ListLicenseAssetGroupsResponse$ = ListLicenseAssetGroupsResponse$;
|
|
3518
|
+
exports.ListLicenseAssetRulesets$ = ListLicenseAssetRulesets$;
|
|
1147
3519
|
exports.ListLicenseAssetRulesetsCommand = ListLicenseAssetRulesetsCommand;
|
|
3520
|
+
exports.ListLicenseAssetRulesetsRequest$ = ListLicenseAssetRulesetsRequest$;
|
|
3521
|
+
exports.ListLicenseAssetRulesetsResponse$ = ListLicenseAssetRulesetsResponse$;
|
|
3522
|
+
exports.ListLicenseConfigurations$ = ListLicenseConfigurations$;
|
|
1148
3523
|
exports.ListLicenseConfigurationsCommand = ListLicenseConfigurationsCommand;
|
|
3524
|
+
exports.ListLicenseConfigurationsForOrganization$ = ListLicenseConfigurationsForOrganization$;
|
|
1149
3525
|
exports.ListLicenseConfigurationsForOrganizationCommand = ListLicenseConfigurationsForOrganizationCommand;
|
|
3526
|
+
exports.ListLicenseConfigurationsForOrganizationRequest$ = ListLicenseConfigurationsForOrganizationRequest$;
|
|
3527
|
+
exports.ListLicenseConfigurationsForOrganizationResponse$ = ListLicenseConfigurationsForOrganizationResponse$;
|
|
3528
|
+
exports.ListLicenseConfigurationsRequest$ = ListLicenseConfigurationsRequest$;
|
|
3529
|
+
exports.ListLicenseConfigurationsResponse$ = ListLicenseConfigurationsResponse$;
|
|
3530
|
+
exports.ListLicenseConversionTasks$ = ListLicenseConversionTasks$;
|
|
1150
3531
|
exports.ListLicenseConversionTasksCommand = ListLicenseConversionTasksCommand;
|
|
3532
|
+
exports.ListLicenseConversionTasksRequest$ = ListLicenseConversionTasksRequest$;
|
|
3533
|
+
exports.ListLicenseConversionTasksResponse$ = ListLicenseConversionTasksResponse$;
|
|
3534
|
+
exports.ListLicenseManagerReportGenerators$ = ListLicenseManagerReportGenerators$;
|
|
1151
3535
|
exports.ListLicenseManagerReportGeneratorsCommand = ListLicenseManagerReportGeneratorsCommand;
|
|
3536
|
+
exports.ListLicenseManagerReportGeneratorsRequest$ = ListLicenseManagerReportGeneratorsRequest$;
|
|
3537
|
+
exports.ListLicenseManagerReportGeneratorsResponse$ = ListLicenseManagerReportGeneratorsResponse$;
|
|
3538
|
+
exports.ListLicenseSpecificationsForResource$ = ListLicenseSpecificationsForResource$;
|
|
1152
3539
|
exports.ListLicenseSpecificationsForResourceCommand = ListLicenseSpecificationsForResourceCommand;
|
|
3540
|
+
exports.ListLicenseSpecificationsForResourceRequest$ = ListLicenseSpecificationsForResourceRequest$;
|
|
3541
|
+
exports.ListLicenseSpecificationsForResourceResponse$ = ListLicenseSpecificationsForResourceResponse$;
|
|
3542
|
+
exports.ListLicenseVersions$ = ListLicenseVersions$;
|
|
1153
3543
|
exports.ListLicenseVersionsCommand = ListLicenseVersionsCommand;
|
|
3544
|
+
exports.ListLicenseVersionsRequest$ = ListLicenseVersionsRequest$;
|
|
3545
|
+
exports.ListLicenseVersionsResponse$ = ListLicenseVersionsResponse$;
|
|
3546
|
+
exports.ListLicenses$ = ListLicenses$;
|
|
1154
3547
|
exports.ListLicensesCommand = ListLicensesCommand;
|
|
3548
|
+
exports.ListLicensesRequest$ = ListLicensesRequest$;
|
|
3549
|
+
exports.ListLicensesResponse$ = ListLicensesResponse$;
|
|
3550
|
+
exports.ListReceivedGrants$ = ListReceivedGrants$;
|
|
1155
3551
|
exports.ListReceivedGrantsCommand = ListReceivedGrantsCommand;
|
|
3552
|
+
exports.ListReceivedGrantsForOrganization$ = ListReceivedGrantsForOrganization$;
|
|
1156
3553
|
exports.ListReceivedGrantsForOrganizationCommand = ListReceivedGrantsForOrganizationCommand;
|
|
3554
|
+
exports.ListReceivedGrantsForOrganizationRequest$ = ListReceivedGrantsForOrganizationRequest$;
|
|
3555
|
+
exports.ListReceivedGrantsForOrganizationResponse$ = ListReceivedGrantsForOrganizationResponse$;
|
|
3556
|
+
exports.ListReceivedGrantsRequest$ = ListReceivedGrantsRequest$;
|
|
3557
|
+
exports.ListReceivedGrantsResponse$ = ListReceivedGrantsResponse$;
|
|
3558
|
+
exports.ListReceivedLicenses$ = ListReceivedLicenses$;
|
|
1157
3559
|
exports.ListReceivedLicensesCommand = ListReceivedLicensesCommand;
|
|
3560
|
+
exports.ListReceivedLicensesForOrganization$ = ListReceivedLicensesForOrganization$;
|
|
1158
3561
|
exports.ListReceivedLicensesForOrganizationCommand = ListReceivedLicensesForOrganizationCommand;
|
|
3562
|
+
exports.ListReceivedLicensesForOrganizationRequest$ = ListReceivedLicensesForOrganizationRequest$;
|
|
3563
|
+
exports.ListReceivedLicensesForOrganizationResponse$ = ListReceivedLicensesForOrganizationResponse$;
|
|
3564
|
+
exports.ListReceivedLicensesRequest$ = ListReceivedLicensesRequest$;
|
|
3565
|
+
exports.ListReceivedLicensesResponse$ = ListReceivedLicensesResponse$;
|
|
3566
|
+
exports.ListResourceInventory$ = ListResourceInventory$;
|
|
1159
3567
|
exports.ListResourceInventoryCommand = ListResourceInventoryCommand;
|
|
3568
|
+
exports.ListResourceInventoryRequest$ = ListResourceInventoryRequest$;
|
|
3569
|
+
exports.ListResourceInventoryResponse$ = ListResourceInventoryResponse$;
|
|
3570
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1160
3571
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
3572
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
3573
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
3574
|
+
exports.ListTokens$ = ListTokens$;
|
|
1161
3575
|
exports.ListTokensCommand = ListTokensCommand;
|
|
3576
|
+
exports.ListTokensRequest$ = ListTokensRequest$;
|
|
3577
|
+
exports.ListTokensResponse$ = ListTokensResponse$;
|
|
3578
|
+
exports.ListUsageForLicenseConfiguration$ = ListUsageForLicenseConfiguration$;
|
|
1162
3579
|
exports.ListUsageForLicenseConfigurationCommand = ListUsageForLicenseConfigurationCommand;
|
|
3580
|
+
exports.ListUsageForLicenseConfigurationRequest$ = ListUsageForLicenseConfigurationRequest$;
|
|
3581
|
+
exports.ListUsageForLicenseConfigurationResponse$ = ListUsageForLicenseConfigurationResponse$;
|
|
3582
|
+
exports.ManagedResourceSummary$ = ManagedResourceSummary$;
|
|
3583
|
+
exports.MatchingRuleStatement$ = MatchingRuleStatement$;
|
|
3584
|
+
exports.Metadata$ = Metadata$;
|
|
3585
|
+
exports.NoEntitlementsAllowedException = NoEntitlementsAllowedException;
|
|
3586
|
+
exports.NoEntitlementsAllowedException$ = NoEntitlementsAllowedException$;
|
|
3587
|
+
exports.Options$ = Options$;
|
|
3588
|
+
exports.OrRuleStatement$ = OrRuleStatement$;
|
|
3589
|
+
exports.OrganizationConfiguration$ = OrganizationConfiguration$;
|
|
3590
|
+
exports.ProductCodeListItem$ = ProductCodeListItem$;
|
|
1163
3591
|
exports.ProductCodeType = ProductCodeType;
|
|
3592
|
+
exports.ProductInformation$ = ProductInformation$;
|
|
3593
|
+
exports.ProductInformationFilter$ = ProductInformationFilter$;
|
|
3594
|
+
exports.ProvisionalConfiguration$ = ProvisionalConfiguration$;
|
|
3595
|
+
exports.RateLimitExceededException = RateLimitExceededException;
|
|
3596
|
+
exports.RateLimitExceededException$ = RateLimitExceededException$;
|
|
3597
|
+
exports.ReceivedMetadata$ = ReceivedMetadata$;
|
|
1164
3598
|
exports.ReceivedStatus = ReceivedStatus;
|
|
3599
|
+
exports.RedirectException = RedirectException;
|
|
3600
|
+
exports.RedirectException$ = RedirectException$;
|
|
3601
|
+
exports.RegionStatus$ = RegionStatus$;
|
|
3602
|
+
exports.RejectGrant$ = RejectGrant$;
|
|
1165
3603
|
exports.RejectGrantCommand = RejectGrantCommand;
|
|
3604
|
+
exports.RejectGrantRequest$ = RejectGrantRequest$;
|
|
3605
|
+
exports.RejectGrantResponse$ = RejectGrantResponse$;
|
|
1166
3606
|
exports.RenewType = RenewType;
|
|
3607
|
+
exports.ReportContext$ = ReportContext$;
|
|
3608
|
+
exports.ReportFrequency$ = ReportFrequency$;
|
|
1167
3609
|
exports.ReportFrequencyType = ReportFrequencyType;
|
|
3610
|
+
exports.ReportGenerator$ = ReportGenerator$;
|
|
1168
3611
|
exports.ReportType = ReportType;
|
|
3612
|
+
exports.ResourceInventory$ = ResourceInventory$;
|
|
3613
|
+
exports.ResourceLimitExceededException = ResourceLimitExceededException;
|
|
3614
|
+
exports.ResourceLimitExceededException$ = ResourceLimitExceededException$;
|
|
3615
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
3616
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1169
3617
|
exports.ResourceType = ResourceType;
|
|
3618
|
+
exports.RuleStatement$ = RuleStatement$;
|
|
3619
|
+
exports.S3Location$ = S3Location$;
|
|
3620
|
+
exports.ScriptRuleStatement$ = ScriptRuleStatement$;
|
|
3621
|
+
exports.ServerInternalException = ServerInternalException;
|
|
3622
|
+
exports.ServerInternalException$ = ServerInternalException$;
|
|
3623
|
+
exports.ServiceStatus$ = ServiceStatus$;
|
|
3624
|
+
exports.Tag$ = Tag$;
|
|
3625
|
+
exports.TagResource$ = TagResource$;
|
|
1170
3626
|
exports.TagResourceCommand = TagResourceCommand;
|
|
3627
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
3628
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
3629
|
+
exports.TokenData$ = TokenData$;
|
|
1171
3630
|
exports.TokenType = TokenType;
|
|
3631
|
+
exports.UnsupportedDigitalSignatureMethodException = UnsupportedDigitalSignatureMethodException;
|
|
3632
|
+
exports.UnsupportedDigitalSignatureMethodException$ = UnsupportedDigitalSignatureMethodException$;
|
|
3633
|
+
exports.UntagResource$ = UntagResource$;
|
|
1172
3634
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
3635
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
3636
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
3637
|
+
exports.UpdateLicenseAssetGroup$ = UpdateLicenseAssetGroup$;
|
|
1173
3638
|
exports.UpdateLicenseAssetGroupCommand = UpdateLicenseAssetGroupCommand;
|
|
3639
|
+
exports.UpdateLicenseAssetGroupRequest$ = UpdateLicenseAssetGroupRequest$;
|
|
3640
|
+
exports.UpdateLicenseAssetGroupResponse$ = UpdateLicenseAssetGroupResponse$;
|
|
3641
|
+
exports.UpdateLicenseAssetRuleset$ = UpdateLicenseAssetRuleset$;
|
|
1174
3642
|
exports.UpdateLicenseAssetRulesetCommand = UpdateLicenseAssetRulesetCommand;
|
|
3643
|
+
exports.UpdateLicenseAssetRulesetRequest$ = UpdateLicenseAssetRulesetRequest$;
|
|
3644
|
+
exports.UpdateLicenseAssetRulesetResponse$ = UpdateLicenseAssetRulesetResponse$;
|
|
3645
|
+
exports.UpdateLicenseConfiguration$ = UpdateLicenseConfiguration$;
|
|
1175
3646
|
exports.UpdateLicenseConfigurationCommand = UpdateLicenseConfigurationCommand;
|
|
3647
|
+
exports.UpdateLicenseConfigurationRequest$ = UpdateLicenseConfigurationRequest$;
|
|
3648
|
+
exports.UpdateLicenseConfigurationResponse$ = UpdateLicenseConfigurationResponse$;
|
|
3649
|
+
exports.UpdateLicenseManagerReportGenerator$ = UpdateLicenseManagerReportGenerator$;
|
|
1176
3650
|
exports.UpdateLicenseManagerReportGeneratorCommand = UpdateLicenseManagerReportGeneratorCommand;
|
|
3651
|
+
exports.UpdateLicenseManagerReportGeneratorRequest$ = UpdateLicenseManagerReportGeneratorRequest$;
|
|
3652
|
+
exports.UpdateLicenseManagerReportGeneratorResponse$ = UpdateLicenseManagerReportGeneratorResponse$;
|
|
3653
|
+
exports.UpdateLicenseSpecificationsForResource$ = UpdateLicenseSpecificationsForResource$;
|
|
1177
3654
|
exports.UpdateLicenseSpecificationsForResourceCommand = UpdateLicenseSpecificationsForResourceCommand;
|
|
3655
|
+
exports.UpdateLicenseSpecificationsForResourceRequest$ = UpdateLicenseSpecificationsForResourceRequest$;
|
|
3656
|
+
exports.UpdateLicenseSpecificationsForResourceResponse$ = UpdateLicenseSpecificationsForResourceResponse$;
|
|
3657
|
+
exports.UpdateServiceSettings$ = UpdateServiceSettings$;
|
|
1178
3658
|
exports.UpdateServiceSettingsCommand = UpdateServiceSettingsCommand;
|
|
3659
|
+
exports.UpdateServiceSettingsRequest$ = UpdateServiceSettingsRequest$;
|
|
3660
|
+
exports.UpdateServiceSettingsResponse$ = UpdateServiceSettingsResponse$;
|
|
3661
|
+
exports.ValidationException = ValidationException;
|
|
3662
|
+
exports.ValidationException$ = ValidationException$;
|
|
3663
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|