@aws-sdk/client-license-manager 3.936.0 → 3.939.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/README.md +96 -0
- package/dist-cjs/index.js +605 -21
- package/dist-es/LicenseManager.js +24 -0
- package/dist-es/commands/CreateLicenseAssetGroupCommand.js +16 -0
- package/dist-es/commands/CreateLicenseAssetRulesetCommand.js +16 -0
- package/dist-es/commands/DeleteLicenseAssetGroupCommand.js +16 -0
- package/dist-es/commands/DeleteLicenseAssetRulesetCommand.js +16 -0
- package/dist-es/commands/GetLicenseAssetGroupCommand.js +16 -0
- package/dist-es/commands/GetLicenseAssetRulesetCommand.js +16 -0
- package/dist-es/commands/ListAssetsForLicenseAssetGroupCommand.js +16 -0
- package/dist-es/commands/ListLicenseAssetGroupsCommand.js +16 -0
- package/dist-es/commands/ListLicenseAssetRulesetsCommand.js +16 -0
- package/dist-es/commands/ListLicenseConfigurationsForOrganizationCommand.js +16 -0
- package/dist-es/commands/UpdateLicenseAssetGroupCommand.js +16 -0
- package/dist-es/commands/UpdateLicenseAssetRulesetCommand.js +16 -0
- package/dist-es/commands/index.js +12 -0
- package/dist-es/models/enums.js +7 -0
- package/dist-es/schemas/schemas_0.js +430 -21
- package/dist-types/LicenseManager.d.ts +87 -0
- package/dist-types/LicenseManagerClient.d.ts +14 -2
- package/dist-types/commands/CreateLicenseAssetGroupCommand.d.ts +116 -0
- package/dist-types/commands/CreateLicenseAssetRulesetCommand.d.ts +206 -0
- package/dist-types/commands/CreateLicenseConfigurationCommand.d.ts +1 -0
- package/dist-types/commands/CreateLicenseManagerReportGeneratorCommand.d.ts +8 -3
- package/dist-types/commands/DeleteLicenseAssetGroupCommand.d.ts +93 -0
- package/dist-types/commands/DeleteLicenseAssetRulesetCommand.d.ts +91 -0
- package/dist-types/commands/GetLicenseAssetGroupCommand.d.ts +115 -0
- package/dist-types/commands/GetLicenseAssetRulesetCommand.d.ts +202 -0
- package/dist-types/commands/GetLicenseConfigurationCommand.d.ts +1 -0
- package/dist-types/commands/GetLicenseManagerReportGeneratorCommand.d.ts +8 -3
- package/dist-types/commands/GetServiceSettingsCommand.d.ts +16 -0
- package/dist-types/commands/ListAssetsForLicenseAssetGroupCommand.d.ts +102 -0
- package/dist-types/commands/ListLicenseAssetGroupsCommand.d.ts +127 -0
- package/dist-types/commands/ListLicenseAssetRulesetsCommand.d.ts +215 -0
- package/dist-types/commands/ListLicenseConfigurationsCommand.d.ts +1 -0
- package/dist-types/commands/ListLicenseConfigurationsForOrganizationCommand.d.ts +153 -0
- package/dist-types/commands/ListLicenseManagerReportGeneratorsCommand.d.ts +8 -3
- package/dist-types/commands/ListResourceInventoryCommand.d.ts +8 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
- package/dist-types/commands/TagResourceCommand.d.ts +3 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +3 -0
- package/dist-types/commands/UpdateLicenseAssetGroupCommand.d.ts +112 -0
- package/dist-types/commands/UpdateLicenseAssetRulesetCommand.d.ts +201 -0
- package/dist-types/commands/UpdateLicenseConfigurationCommand.d.ts +1 -0
- package/dist-types/commands/UpdateLicenseManagerReportGeneratorCommand.d.ts +8 -3
- package/dist-types/commands/UpdateServiceSettingsCommand.d.ts +9 -0
- package/dist-types/commands/index.d.ts +12 -0
- package/dist-types/models/enums.d.ts +15 -0
- package/dist-types/models/models_0.d.ts +991 -4
- package/dist-types/schemas/schemas_0.d.ts +65 -1
- package/dist-types/ts3.4/LicenseManager.d.ts +213 -0
- package/dist-types/ts3.4/LicenseManagerClient.d.ts +72 -0
- package/dist-types/ts3.4/commands/CreateLicenseAssetGroupCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateLicenseAssetRulesetCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteLicenseAssetGroupCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteLicenseAssetRulesetCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetLicenseAssetGroupCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetLicenseAssetRulesetCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListAssetsForLicenseAssetGroupCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListLicenseAssetGroupsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListLicenseAssetRulesetsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListLicenseConfigurationsForOrganizationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateLicenseAssetGroupCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateLicenseAssetRulesetCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +12 -0
- package/dist-types/ts3.4/models/enums.d.ts +9 -0
- package/dist-types/ts3.4/models/models_0.d.ts +216 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +65 -0
- package/package.json +2 -2
|
@@ -72,6 +72,14 @@ import {
|
|
|
72
72
|
CreateGrantVersionCommandInput,
|
|
73
73
|
CreateGrantVersionCommandOutput,
|
|
74
74
|
} from "./commands/CreateGrantVersionCommand";
|
|
75
|
+
import {
|
|
76
|
+
CreateLicenseAssetGroupCommandInput,
|
|
77
|
+
CreateLicenseAssetGroupCommandOutput,
|
|
78
|
+
} from "./commands/CreateLicenseAssetGroupCommand";
|
|
79
|
+
import {
|
|
80
|
+
CreateLicenseAssetRulesetCommandInput,
|
|
81
|
+
CreateLicenseAssetRulesetCommandOutput,
|
|
82
|
+
} from "./commands/CreateLicenseAssetRulesetCommand";
|
|
75
83
|
import {
|
|
76
84
|
CreateLicenseCommandInput,
|
|
77
85
|
CreateLicenseCommandOutput,
|
|
@@ -100,6 +108,14 @@ import {
|
|
|
100
108
|
DeleteGrantCommandInput,
|
|
101
109
|
DeleteGrantCommandOutput,
|
|
102
110
|
} from "./commands/DeleteGrantCommand";
|
|
111
|
+
import {
|
|
112
|
+
DeleteLicenseAssetGroupCommandInput,
|
|
113
|
+
DeleteLicenseAssetGroupCommandOutput,
|
|
114
|
+
} from "./commands/DeleteLicenseAssetGroupCommand";
|
|
115
|
+
import {
|
|
116
|
+
DeleteLicenseAssetRulesetCommandInput,
|
|
117
|
+
DeleteLicenseAssetRulesetCommandOutput,
|
|
118
|
+
} from "./commands/DeleteLicenseAssetRulesetCommand";
|
|
103
119
|
import {
|
|
104
120
|
DeleteLicenseCommandInput,
|
|
105
121
|
DeleteLicenseCommandOutput,
|
|
@@ -128,6 +144,14 @@ import {
|
|
|
128
144
|
GetGrantCommandInput,
|
|
129
145
|
GetGrantCommandOutput,
|
|
130
146
|
} from "./commands/GetGrantCommand";
|
|
147
|
+
import {
|
|
148
|
+
GetLicenseAssetGroupCommandInput,
|
|
149
|
+
GetLicenseAssetGroupCommandOutput,
|
|
150
|
+
} from "./commands/GetLicenseAssetGroupCommand";
|
|
151
|
+
import {
|
|
152
|
+
GetLicenseAssetRulesetCommandInput,
|
|
153
|
+
GetLicenseAssetRulesetCommandOutput,
|
|
154
|
+
} from "./commands/GetLicenseAssetRulesetCommand";
|
|
131
155
|
import {
|
|
132
156
|
GetLicenseCommandInput,
|
|
133
157
|
GetLicenseCommandOutput,
|
|
@@ -152,6 +176,10 @@ import {
|
|
|
152
176
|
GetServiceSettingsCommandInput,
|
|
153
177
|
GetServiceSettingsCommandOutput,
|
|
154
178
|
} from "./commands/GetServiceSettingsCommand";
|
|
179
|
+
import {
|
|
180
|
+
ListAssetsForLicenseAssetGroupCommandInput,
|
|
181
|
+
ListAssetsForLicenseAssetGroupCommandOutput,
|
|
182
|
+
} from "./commands/ListAssetsForLicenseAssetGroupCommand";
|
|
155
183
|
import {
|
|
156
184
|
ListAssociationsForLicenseConfigurationCommandInput,
|
|
157
185
|
ListAssociationsForLicenseConfigurationCommandOutput,
|
|
@@ -164,10 +192,22 @@ import {
|
|
|
164
192
|
ListFailuresForLicenseConfigurationOperationsCommandInput,
|
|
165
193
|
ListFailuresForLicenseConfigurationOperationsCommandOutput,
|
|
166
194
|
} from "./commands/ListFailuresForLicenseConfigurationOperationsCommand";
|
|
195
|
+
import {
|
|
196
|
+
ListLicenseAssetGroupsCommandInput,
|
|
197
|
+
ListLicenseAssetGroupsCommandOutput,
|
|
198
|
+
} from "./commands/ListLicenseAssetGroupsCommand";
|
|
199
|
+
import {
|
|
200
|
+
ListLicenseAssetRulesetsCommandInput,
|
|
201
|
+
ListLicenseAssetRulesetsCommandOutput,
|
|
202
|
+
} from "./commands/ListLicenseAssetRulesetsCommand";
|
|
167
203
|
import {
|
|
168
204
|
ListLicenseConfigurationsCommandInput,
|
|
169
205
|
ListLicenseConfigurationsCommandOutput,
|
|
170
206
|
} from "./commands/ListLicenseConfigurationsCommand";
|
|
207
|
+
import {
|
|
208
|
+
ListLicenseConfigurationsForOrganizationCommandInput,
|
|
209
|
+
ListLicenseConfigurationsForOrganizationCommandOutput,
|
|
210
|
+
} from "./commands/ListLicenseConfigurationsForOrganizationCommand";
|
|
171
211
|
import {
|
|
172
212
|
ListLicenseConversionTasksCommandInput,
|
|
173
213
|
ListLicenseConversionTasksCommandOutput,
|
|
@@ -232,6 +272,14 @@ import {
|
|
|
232
272
|
UntagResourceCommandInput,
|
|
233
273
|
UntagResourceCommandOutput,
|
|
234
274
|
} from "./commands/UntagResourceCommand";
|
|
275
|
+
import {
|
|
276
|
+
UpdateLicenseAssetGroupCommandInput,
|
|
277
|
+
UpdateLicenseAssetGroupCommandOutput,
|
|
278
|
+
} from "./commands/UpdateLicenseAssetGroupCommand";
|
|
279
|
+
import {
|
|
280
|
+
UpdateLicenseAssetRulesetCommandInput,
|
|
281
|
+
UpdateLicenseAssetRulesetCommandOutput,
|
|
282
|
+
} from "./commands/UpdateLicenseAssetRulesetCommand";
|
|
235
283
|
import {
|
|
236
284
|
UpdateLicenseConfigurationCommandInput,
|
|
237
285
|
UpdateLicenseConfigurationCommandOutput,
|
|
@@ -262,6 +310,8 @@ export type ServiceInputTypes =
|
|
|
262
310
|
| CheckoutLicenseCommandInput
|
|
263
311
|
| CreateGrantCommandInput
|
|
264
312
|
| CreateGrantVersionCommandInput
|
|
313
|
+
| CreateLicenseAssetGroupCommandInput
|
|
314
|
+
| CreateLicenseAssetRulesetCommandInput
|
|
265
315
|
| CreateLicenseCommandInput
|
|
266
316
|
| CreateLicenseConfigurationCommandInput
|
|
267
317
|
| CreateLicenseConversionTaskForResourceCommandInput
|
|
@@ -269,6 +319,8 @@ export type ServiceInputTypes =
|
|
|
269
319
|
| CreateLicenseVersionCommandInput
|
|
270
320
|
| CreateTokenCommandInput
|
|
271
321
|
| DeleteGrantCommandInput
|
|
322
|
+
| DeleteLicenseAssetGroupCommandInput
|
|
323
|
+
| DeleteLicenseAssetRulesetCommandInput
|
|
272
324
|
| DeleteLicenseCommandInput
|
|
273
325
|
| DeleteLicenseConfigurationCommandInput
|
|
274
326
|
| DeleteLicenseManagerReportGeneratorCommandInput
|
|
@@ -276,16 +328,22 @@ export type ServiceInputTypes =
|
|
|
276
328
|
| ExtendLicenseConsumptionCommandInput
|
|
277
329
|
| GetAccessTokenCommandInput
|
|
278
330
|
| GetGrantCommandInput
|
|
331
|
+
| GetLicenseAssetGroupCommandInput
|
|
332
|
+
| GetLicenseAssetRulesetCommandInput
|
|
279
333
|
| GetLicenseCommandInput
|
|
280
334
|
| GetLicenseConfigurationCommandInput
|
|
281
335
|
| GetLicenseConversionTaskCommandInput
|
|
282
336
|
| GetLicenseManagerReportGeneratorCommandInput
|
|
283
337
|
| GetLicenseUsageCommandInput
|
|
284
338
|
| GetServiceSettingsCommandInput
|
|
339
|
+
| ListAssetsForLicenseAssetGroupCommandInput
|
|
285
340
|
| ListAssociationsForLicenseConfigurationCommandInput
|
|
286
341
|
| ListDistributedGrantsCommandInput
|
|
287
342
|
| ListFailuresForLicenseConfigurationOperationsCommandInput
|
|
343
|
+
| ListLicenseAssetGroupsCommandInput
|
|
344
|
+
| ListLicenseAssetRulesetsCommandInput
|
|
288
345
|
| ListLicenseConfigurationsCommandInput
|
|
346
|
+
| ListLicenseConfigurationsForOrganizationCommandInput
|
|
289
347
|
| ListLicenseConversionTasksCommandInput
|
|
290
348
|
| ListLicenseManagerReportGeneratorsCommandInput
|
|
291
349
|
| ListLicenseSpecificationsForResourceCommandInput
|
|
@@ -302,6 +360,8 @@ export type ServiceInputTypes =
|
|
|
302
360
|
| RejectGrantCommandInput
|
|
303
361
|
| TagResourceCommandInput
|
|
304
362
|
| UntagResourceCommandInput
|
|
363
|
+
| UpdateLicenseAssetGroupCommandInput
|
|
364
|
+
| UpdateLicenseAssetRulesetCommandInput
|
|
305
365
|
| UpdateLicenseConfigurationCommandInput
|
|
306
366
|
| UpdateLicenseManagerReportGeneratorCommandInput
|
|
307
367
|
| UpdateLicenseSpecificationsForResourceCommandInput
|
|
@@ -313,6 +373,8 @@ export type ServiceOutputTypes =
|
|
|
313
373
|
| CheckoutLicenseCommandOutput
|
|
314
374
|
| CreateGrantCommandOutput
|
|
315
375
|
| CreateGrantVersionCommandOutput
|
|
376
|
+
| CreateLicenseAssetGroupCommandOutput
|
|
377
|
+
| CreateLicenseAssetRulesetCommandOutput
|
|
316
378
|
| CreateLicenseCommandOutput
|
|
317
379
|
| CreateLicenseConfigurationCommandOutput
|
|
318
380
|
| CreateLicenseConversionTaskForResourceCommandOutput
|
|
@@ -320,6 +382,8 @@ export type ServiceOutputTypes =
|
|
|
320
382
|
| CreateLicenseVersionCommandOutput
|
|
321
383
|
| CreateTokenCommandOutput
|
|
322
384
|
| DeleteGrantCommandOutput
|
|
385
|
+
| DeleteLicenseAssetGroupCommandOutput
|
|
386
|
+
| DeleteLicenseAssetRulesetCommandOutput
|
|
323
387
|
| DeleteLicenseCommandOutput
|
|
324
388
|
| DeleteLicenseConfigurationCommandOutput
|
|
325
389
|
| DeleteLicenseManagerReportGeneratorCommandOutput
|
|
@@ -327,16 +391,22 @@ export type ServiceOutputTypes =
|
|
|
327
391
|
| ExtendLicenseConsumptionCommandOutput
|
|
328
392
|
| GetAccessTokenCommandOutput
|
|
329
393
|
| GetGrantCommandOutput
|
|
394
|
+
| GetLicenseAssetGroupCommandOutput
|
|
395
|
+
| GetLicenseAssetRulesetCommandOutput
|
|
330
396
|
| GetLicenseCommandOutput
|
|
331
397
|
| GetLicenseConfigurationCommandOutput
|
|
332
398
|
| GetLicenseConversionTaskCommandOutput
|
|
333
399
|
| GetLicenseManagerReportGeneratorCommandOutput
|
|
334
400
|
| GetLicenseUsageCommandOutput
|
|
335
401
|
| GetServiceSettingsCommandOutput
|
|
402
|
+
| ListAssetsForLicenseAssetGroupCommandOutput
|
|
336
403
|
| ListAssociationsForLicenseConfigurationCommandOutput
|
|
337
404
|
| ListDistributedGrantsCommandOutput
|
|
338
405
|
| ListFailuresForLicenseConfigurationOperationsCommandOutput
|
|
406
|
+
| ListLicenseAssetGroupsCommandOutput
|
|
407
|
+
| ListLicenseAssetRulesetsCommandOutput
|
|
339
408
|
| ListLicenseConfigurationsCommandOutput
|
|
409
|
+
| ListLicenseConfigurationsForOrganizationCommandOutput
|
|
340
410
|
| ListLicenseConversionTasksCommandOutput
|
|
341
411
|
| ListLicenseManagerReportGeneratorsCommandOutput
|
|
342
412
|
| ListLicenseSpecificationsForResourceCommandOutput
|
|
@@ -353,6 +423,8 @@ export type ServiceOutputTypes =
|
|
|
353
423
|
| RejectGrantCommandOutput
|
|
354
424
|
| TagResourceCommandOutput
|
|
355
425
|
| UntagResourceCommandOutput
|
|
426
|
+
| UpdateLicenseAssetGroupCommandOutput
|
|
427
|
+
| UpdateLicenseAssetRulesetCommandOutput
|
|
356
428
|
| UpdateLicenseConfigurationCommandOutput
|
|
357
429
|
| UpdateLicenseManagerReportGeneratorCommandOutput
|
|
358
430
|
| UpdateLicenseSpecificationsForResourceCommandOutput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
LicenseManagerClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../LicenseManagerClient";
|
|
8
|
+
import {
|
|
9
|
+
CreateLicenseAssetGroupRequest,
|
|
10
|
+
CreateLicenseAssetGroupResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateLicenseAssetGroupCommandInput
|
|
15
|
+
extends CreateLicenseAssetGroupRequest {}
|
|
16
|
+
export interface CreateLicenseAssetGroupCommandOutput
|
|
17
|
+
extends CreateLicenseAssetGroupResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateLicenseAssetGroupCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateLicenseAssetGroupCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateLicenseAssetGroupCommandInput,
|
|
24
|
+
CreateLicenseAssetGroupCommandOutput,
|
|
25
|
+
LicenseManagerClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: CreateLicenseAssetGroupCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateLicenseAssetGroupCommandInput,
|
|
33
|
+
CreateLicenseAssetGroupCommandOutput,
|
|
34
|
+
LicenseManagerClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateLicenseAssetGroupCommand extends CreateLicenseAssetGroupCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateLicenseAssetGroupRequest;
|
|
44
|
+
output: CreateLicenseAssetGroupResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateLicenseAssetGroupCommandInput;
|
|
48
|
+
output: CreateLicenseAssetGroupCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
LicenseManagerClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../LicenseManagerClient";
|
|
8
|
+
import {
|
|
9
|
+
CreateLicenseAssetRulesetRequest,
|
|
10
|
+
CreateLicenseAssetRulesetResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateLicenseAssetRulesetCommandInput
|
|
15
|
+
extends CreateLicenseAssetRulesetRequest {}
|
|
16
|
+
export interface CreateLicenseAssetRulesetCommandOutput
|
|
17
|
+
extends CreateLicenseAssetRulesetResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateLicenseAssetRulesetCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateLicenseAssetRulesetCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateLicenseAssetRulesetCommandInput,
|
|
24
|
+
CreateLicenseAssetRulesetCommandOutput,
|
|
25
|
+
LicenseManagerClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: CreateLicenseAssetRulesetCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateLicenseAssetRulesetCommandInput,
|
|
33
|
+
CreateLicenseAssetRulesetCommandOutput,
|
|
34
|
+
LicenseManagerClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateLicenseAssetRulesetCommand extends CreateLicenseAssetRulesetCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateLicenseAssetRulesetRequest;
|
|
44
|
+
output: CreateLicenseAssetRulesetResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateLicenseAssetRulesetCommandInput;
|
|
48
|
+
output: CreateLicenseAssetRulesetCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
LicenseManagerClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../LicenseManagerClient";
|
|
8
|
+
import {
|
|
9
|
+
DeleteLicenseAssetGroupRequest,
|
|
10
|
+
DeleteLicenseAssetGroupResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteLicenseAssetGroupCommandInput
|
|
15
|
+
extends DeleteLicenseAssetGroupRequest {}
|
|
16
|
+
export interface DeleteLicenseAssetGroupCommandOutput
|
|
17
|
+
extends DeleteLicenseAssetGroupResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteLicenseAssetGroupCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteLicenseAssetGroupCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DeleteLicenseAssetGroupCommandInput,
|
|
24
|
+
DeleteLicenseAssetGroupCommandOutput,
|
|
25
|
+
LicenseManagerClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: DeleteLicenseAssetGroupCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DeleteLicenseAssetGroupCommandInput,
|
|
33
|
+
DeleteLicenseAssetGroupCommandOutput,
|
|
34
|
+
LicenseManagerClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DeleteLicenseAssetGroupCommand extends DeleteLicenseAssetGroupCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DeleteLicenseAssetGroupRequest;
|
|
44
|
+
output: DeleteLicenseAssetGroupResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DeleteLicenseAssetGroupCommandInput;
|
|
48
|
+
output: DeleteLicenseAssetGroupCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
LicenseManagerClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../LicenseManagerClient";
|
|
8
|
+
import {
|
|
9
|
+
DeleteLicenseAssetRulesetRequest,
|
|
10
|
+
DeleteLicenseAssetRulesetResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteLicenseAssetRulesetCommandInput
|
|
15
|
+
extends DeleteLicenseAssetRulesetRequest {}
|
|
16
|
+
export interface DeleteLicenseAssetRulesetCommandOutput
|
|
17
|
+
extends DeleteLicenseAssetRulesetResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteLicenseAssetRulesetCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteLicenseAssetRulesetCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DeleteLicenseAssetRulesetCommandInput,
|
|
24
|
+
DeleteLicenseAssetRulesetCommandOutput,
|
|
25
|
+
LicenseManagerClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: DeleteLicenseAssetRulesetCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DeleteLicenseAssetRulesetCommandInput,
|
|
33
|
+
DeleteLicenseAssetRulesetCommandOutput,
|
|
34
|
+
LicenseManagerClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DeleteLicenseAssetRulesetCommand extends DeleteLicenseAssetRulesetCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DeleteLicenseAssetRulesetRequest;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DeleteLicenseAssetRulesetCommandInput;
|
|
48
|
+
output: DeleteLicenseAssetRulesetCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
LicenseManagerClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../LicenseManagerClient";
|
|
8
|
+
import {
|
|
9
|
+
GetLicenseAssetGroupRequest,
|
|
10
|
+
GetLicenseAssetGroupResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetLicenseAssetGroupCommandInput
|
|
15
|
+
extends GetLicenseAssetGroupRequest {}
|
|
16
|
+
export interface GetLicenseAssetGroupCommandOutput
|
|
17
|
+
extends GetLicenseAssetGroupResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetLicenseAssetGroupCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetLicenseAssetGroupCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetLicenseAssetGroupCommandInput,
|
|
24
|
+
GetLicenseAssetGroupCommandOutput,
|
|
25
|
+
LicenseManagerClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: GetLicenseAssetGroupCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetLicenseAssetGroupCommandInput,
|
|
33
|
+
GetLicenseAssetGroupCommandOutput,
|
|
34
|
+
LicenseManagerClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetLicenseAssetGroupCommand extends GetLicenseAssetGroupCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetLicenseAssetGroupRequest;
|
|
44
|
+
output: GetLicenseAssetGroupResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetLicenseAssetGroupCommandInput;
|
|
48
|
+
output: GetLicenseAssetGroupCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
LicenseManagerClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../LicenseManagerClient";
|
|
8
|
+
import {
|
|
9
|
+
GetLicenseAssetRulesetRequest,
|
|
10
|
+
GetLicenseAssetRulesetResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetLicenseAssetRulesetCommandInput
|
|
15
|
+
extends GetLicenseAssetRulesetRequest {}
|
|
16
|
+
export interface GetLicenseAssetRulesetCommandOutput
|
|
17
|
+
extends GetLicenseAssetRulesetResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetLicenseAssetRulesetCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetLicenseAssetRulesetCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetLicenseAssetRulesetCommandInput,
|
|
24
|
+
GetLicenseAssetRulesetCommandOutput,
|
|
25
|
+
LicenseManagerClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: GetLicenseAssetRulesetCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetLicenseAssetRulesetCommandInput,
|
|
33
|
+
GetLicenseAssetRulesetCommandOutput,
|
|
34
|
+
LicenseManagerClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetLicenseAssetRulesetCommand extends GetLicenseAssetRulesetCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetLicenseAssetRulesetRequest;
|
|
44
|
+
output: GetLicenseAssetRulesetResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetLicenseAssetRulesetCommandInput;
|
|
48
|
+
output: GetLicenseAssetRulesetCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
LicenseManagerClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../LicenseManagerClient";
|
|
8
|
+
import {
|
|
9
|
+
ListAssetsForLicenseAssetGroupRequest,
|
|
10
|
+
ListAssetsForLicenseAssetGroupResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListAssetsForLicenseAssetGroupCommandInput
|
|
15
|
+
extends ListAssetsForLicenseAssetGroupRequest {}
|
|
16
|
+
export interface ListAssetsForLicenseAssetGroupCommandOutput
|
|
17
|
+
extends ListAssetsForLicenseAssetGroupResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListAssetsForLicenseAssetGroupCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListAssetsForLicenseAssetGroupCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListAssetsForLicenseAssetGroupCommandInput,
|
|
24
|
+
ListAssetsForLicenseAssetGroupCommandOutput,
|
|
25
|
+
LicenseManagerClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: ListAssetsForLicenseAssetGroupCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListAssetsForLicenseAssetGroupCommandInput,
|
|
33
|
+
ListAssetsForLicenseAssetGroupCommandOutput,
|
|
34
|
+
LicenseManagerClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListAssetsForLicenseAssetGroupCommand extends ListAssetsForLicenseAssetGroupCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListAssetsForLicenseAssetGroupRequest;
|
|
44
|
+
output: ListAssetsForLicenseAssetGroupResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListAssetsForLicenseAssetGroupCommandInput;
|
|
48
|
+
output: ListAssetsForLicenseAssetGroupCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
LicenseManagerClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../LicenseManagerClient";
|
|
8
|
+
import {
|
|
9
|
+
ListLicenseAssetGroupsRequest,
|
|
10
|
+
ListLicenseAssetGroupsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListLicenseAssetGroupsCommandInput
|
|
15
|
+
extends ListLicenseAssetGroupsRequest {}
|
|
16
|
+
export interface ListLicenseAssetGroupsCommandOutput
|
|
17
|
+
extends ListLicenseAssetGroupsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListLicenseAssetGroupsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListLicenseAssetGroupsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListLicenseAssetGroupsCommandInput,
|
|
24
|
+
ListLicenseAssetGroupsCommandOutput,
|
|
25
|
+
LicenseManagerClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [ListLicenseAssetGroupsCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListLicenseAssetGroupsCommandInput,
|
|
33
|
+
ListLicenseAssetGroupsCommandOutput,
|
|
34
|
+
LicenseManagerClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListLicenseAssetGroupsCommand extends ListLicenseAssetGroupsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListLicenseAssetGroupsRequest;
|
|
44
|
+
output: ListLicenseAssetGroupsResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListLicenseAssetGroupsCommandInput;
|
|
48
|
+
output: ListLicenseAssetGroupsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
LicenseManagerClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../LicenseManagerClient";
|
|
8
|
+
import {
|
|
9
|
+
ListLicenseAssetRulesetsRequest,
|
|
10
|
+
ListLicenseAssetRulesetsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListLicenseAssetRulesetsCommandInput
|
|
15
|
+
extends ListLicenseAssetRulesetsRequest {}
|
|
16
|
+
export interface ListLicenseAssetRulesetsCommandOutput
|
|
17
|
+
extends ListLicenseAssetRulesetsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListLicenseAssetRulesetsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListLicenseAssetRulesetsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListLicenseAssetRulesetsCommandInput,
|
|
24
|
+
ListLicenseAssetRulesetsCommandOutput,
|
|
25
|
+
LicenseManagerClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [ListLicenseAssetRulesetsCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListLicenseAssetRulesetsCommandInput,
|
|
33
|
+
ListLicenseAssetRulesetsCommandOutput,
|
|
34
|
+
LicenseManagerClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListLicenseAssetRulesetsCommand extends ListLicenseAssetRulesetsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListLicenseAssetRulesetsRequest;
|
|
44
|
+
output: ListLicenseAssetRulesetsResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListLicenseAssetRulesetsCommandInput;
|
|
48
|
+
output: ListLicenseAssetRulesetsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|