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