@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
|
@@ -5,6 +5,8 @@ import { CheckoutBorrowLicenseCommandInput, CheckoutBorrowLicenseCommandOutput }
|
|
|
5
5
|
import { CheckoutLicenseCommandInput, CheckoutLicenseCommandOutput } from "./commands/CheckoutLicenseCommand";
|
|
6
6
|
import { CreateGrantCommandInput, CreateGrantCommandOutput } from "./commands/CreateGrantCommand";
|
|
7
7
|
import { CreateGrantVersionCommandInput, CreateGrantVersionCommandOutput } from "./commands/CreateGrantVersionCommand";
|
|
8
|
+
import { CreateLicenseAssetGroupCommandInput, CreateLicenseAssetGroupCommandOutput } from "./commands/CreateLicenseAssetGroupCommand";
|
|
9
|
+
import { CreateLicenseAssetRulesetCommandInput, CreateLicenseAssetRulesetCommandOutput } from "./commands/CreateLicenseAssetRulesetCommand";
|
|
8
10
|
import { CreateLicenseCommandInput, CreateLicenseCommandOutput } from "./commands/CreateLicenseCommand";
|
|
9
11
|
import { CreateLicenseConfigurationCommandInput, CreateLicenseConfigurationCommandOutput } from "./commands/CreateLicenseConfigurationCommand";
|
|
10
12
|
import { CreateLicenseConversionTaskForResourceCommandInput, CreateLicenseConversionTaskForResourceCommandOutput } from "./commands/CreateLicenseConversionTaskForResourceCommand";
|
|
@@ -12,6 +14,8 @@ import { CreateLicenseManagerReportGeneratorCommandInput, CreateLicenseManagerRe
|
|
|
12
14
|
import { CreateLicenseVersionCommandInput, CreateLicenseVersionCommandOutput } from "./commands/CreateLicenseVersionCommand";
|
|
13
15
|
import { CreateTokenCommandInput, CreateTokenCommandOutput } from "./commands/CreateTokenCommand";
|
|
14
16
|
import { DeleteGrantCommandInput, DeleteGrantCommandOutput } from "./commands/DeleteGrantCommand";
|
|
17
|
+
import { DeleteLicenseAssetGroupCommandInput, DeleteLicenseAssetGroupCommandOutput } from "./commands/DeleteLicenseAssetGroupCommand";
|
|
18
|
+
import { DeleteLicenseAssetRulesetCommandInput, DeleteLicenseAssetRulesetCommandOutput } from "./commands/DeleteLicenseAssetRulesetCommand";
|
|
15
19
|
import { DeleteLicenseCommandInput, DeleteLicenseCommandOutput } from "./commands/DeleteLicenseCommand";
|
|
16
20
|
import { DeleteLicenseConfigurationCommandInput, DeleteLicenseConfigurationCommandOutput } from "./commands/DeleteLicenseConfigurationCommand";
|
|
17
21
|
import { DeleteLicenseManagerReportGeneratorCommandInput, DeleteLicenseManagerReportGeneratorCommandOutput } from "./commands/DeleteLicenseManagerReportGeneratorCommand";
|
|
@@ -19,16 +23,22 @@ import { DeleteTokenCommandInput, DeleteTokenCommandOutput } from "./commands/De
|
|
|
19
23
|
import { ExtendLicenseConsumptionCommandInput, ExtendLicenseConsumptionCommandOutput } from "./commands/ExtendLicenseConsumptionCommand";
|
|
20
24
|
import { GetAccessTokenCommandInput, GetAccessTokenCommandOutput } from "./commands/GetAccessTokenCommand";
|
|
21
25
|
import { GetGrantCommandInput, GetGrantCommandOutput } from "./commands/GetGrantCommand";
|
|
26
|
+
import { GetLicenseAssetGroupCommandInput, GetLicenseAssetGroupCommandOutput } from "./commands/GetLicenseAssetGroupCommand";
|
|
27
|
+
import { GetLicenseAssetRulesetCommandInput, GetLicenseAssetRulesetCommandOutput } from "./commands/GetLicenseAssetRulesetCommand";
|
|
22
28
|
import { GetLicenseCommandInput, GetLicenseCommandOutput } from "./commands/GetLicenseCommand";
|
|
23
29
|
import { GetLicenseConfigurationCommandInput, GetLicenseConfigurationCommandOutput } from "./commands/GetLicenseConfigurationCommand";
|
|
24
30
|
import { GetLicenseConversionTaskCommandInput, GetLicenseConversionTaskCommandOutput } from "./commands/GetLicenseConversionTaskCommand";
|
|
25
31
|
import { GetLicenseManagerReportGeneratorCommandInput, GetLicenseManagerReportGeneratorCommandOutput } from "./commands/GetLicenseManagerReportGeneratorCommand";
|
|
26
32
|
import { GetLicenseUsageCommandInput, GetLicenseUsageCommandOutput } from "./commands/GetLicenseUsageCommand";
|
|
27
33
|
import { GetServiceSettingsCommandInput, GetServiceSettingsCommandOutput } from "./commands/GetServiceSettingsCommand";
|
|
34
|
+
import { ListAssetsForLicenseAssetGroupCommandInput, ListAssetsForLicenseAssetGroupCommandOutput } from "./commands/ListAssetsForLicenseAssetGroupCommand";
|
|
28
35
|
import { ListAssociationsForLicenseConfigurationCommandInput, ListAssociationsForLicenseConfigurationCommandOutput } from "./commands/ListAssociationsForLicenseConfigurationCommand";
|
|
29
36
|
import { ListDistributedGrantsCommandInput, ListDistributedGrantsCommandOutput } from "./commands/ListDistributedGrantsCommand";
|
|
30
37
|
import { ListFailuresForLicenseConfigurationOperationsCommandInput, ListFailuresForLicenseConfigurationOperationsCommandOutput } from "./commands/ListFailuresForLicenseConfigurationOperationsCommand";
|
|
38
|
+
import { ListLicenseAssetGroupsCommandInput, ListLicenseAssetGroupsCommandOutput } from "./commands/ListLicenseAssetGroupsCommand";
|
|
39
|
+
import { ListLicenseAssetRulesetsCommandInput, ListLicenseAssetRulesetsCommandOutput } from "./commands/ListLicenseAssetRulesetsCommand";
|
|
31
40
|
import { ListLicenseConfigurationsCommandInput, ListLicenseConfigurationsCommandOutput } from "./commands/ListLicenseConfigurationsCommand";
|
|
41
|
+
import { ListLicenseConfigurationsForOrganizationCommandInput, ListLicenseConfigurationsForOrganizationCommandOutput } from "./commands/ListLicenseConfigurationsForOrganizationCommand";
|
|
32
42
|
import { ListLicenseConversionTasksCommandInput, ListLicenseConversionTasksCommandOutput } from "./commands/ListLicenseConversionTasksCommand";
|
|
33
43
|
import { ListLicenseManagerReportGeneratorsCommandInput, ListLicenseManagerReportGeneratorsCommandOutput } from "./commands/ListLicenseManagerReportGeneratorsCommand";
|
|
34
44
|
import { ListLicensesCommandInput, ListLicensesCommandOutput } from "./commands/ListLicensesCommand";
|
|
@@ -45,6 +55,8 @@ import { ListUsageForLicenseConfigurationCommandInput, ListUsageForLicenseConfig
|
|
|
45
55
|
import { RejectGrantCommandInput, RejectGrantCommandOutput } from "./commands/RejectGrantCommand";
|
|
46
56
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
47
57
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
58
|
+
import { UpdateLicenseAssetGroupCommandInput, UpdateLicenseAssetGroupCommandOutput } from "./commands/UpdateLicenseAssetGroupCommand";
|
|
59
|
+
import { UpdateLicenseAssetRulesetCommandInput, UpdateLicenseAssetRulesetCommandOutput } from "./commands/UpdateLicenseAssetRulesetCommand";
|
|
48
60
|
import { UpdateLicenseConfigurationCommandInput, UpdateLicenseConfigurationCommandOutput } from "./commands/UpdateLicenseConfigurationCommand";
|
|
49
61
|
import { UpdateLicenseManagerReportGeneratorCommandInput, UpdateLicenseManagerReportGeneratorCommandOutput } from "./commands/UpdateLicenseManagerReportGeneratorCommand";
|
|
50
62
|
import { UpdateLicenseSpecificationsForResourceCommandInput, UpdateLicenseSpecificationsForResourceCommandOutput } from "./commands/UpdateLicenseSpecificationsForResourceCommand";
|
|
@@ -93,6 +105,18 @@ export interface LicenseManager {
|
|
|
93
105
|
createLicense(args: CreateLicenseCommandInput, options?: __HttpHandlerOptions): Promise<CreateLicenseCommandOutput>;
|
|
94
106
|
createLicense(args: CreateLicenseCommandInput, cb: (err: any, data?: CreateLicenseCommandOutput) => void): void;
|
|
95
107
|
createLicense(args: CreateLicenseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLicenseCommandOutput) => void): void;
|
|
108
|
+
/**
|
|
109
|
+
* @see {@link CreateLicenseAssetGroupCommand}
|
|
110
|
+
*/
|
|
111
|
+
createLicenseAssetGroup(args: CreateLicenseAssetGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateLicenseAssetGroupCommandOutput>;
|
|
112
|
+
createLicenseAssetGroup(args: CreateLicenseAssetGroupCommandInput, cb: (err: any, data?: CreateLicenseAssetGroupCommandOutput) => void): void;
|
|
113
|
+
createLicenseAssetGroup(args: CreateLicenseAssetGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLicenseAssetGroupCommandOutput) => void): void;
|
|
114
|
+
/**
|
|
115
|
+
* @see {@link CreateLicenseAssetRulesetCommand}
|
|
116
|
+
*/
|
|
117
|
+
createLicenseAssetRuleset(args: CreateLicenseAssetRulesetCommandInput, options?: __HttpHandlerOptions): Promise<CreateLicenseAssetRulesetCommandOutput>;
|
|
118
|
+
createLicenseAssetRuleset(args: CreateLicenseAssetRulesetCommandInput, cb: (err: any, data?: CreateLicenseAssetRulesetCommandOutput) => void): void;
|
|
119
|
+
createLicenseAssetRuleset(args: CreateLicenseAssetRulesetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLicenseAssetRulesetCommandOutput) => void): void;
|
|
96
120
|
/**
|
|
97
121
|
* @see {@link CreateLicenseConfigurationCommand}
|
|
98
122
|
*/
|
|
@@ -135,6 +159,18 @@ export interface LicenseManager {
|
|
|
135
159
|
deleteLicense(args: DeleteLicenseCommandInput, options?: __HttpHandlerOptions): Promise<DeleteLicenseCommandOutput>;
|
|
136
160
|
deleteLicense(args: DeleteLicenseCommandInput, cb: (err: any, data?: DeleteLicenseCommandOutput) => void): void;
|
|
137
161
|
deleteLicense(args: DeleteLicenseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteLicenseCommandOutput) => void): void;
|
|
162
|
+
/**
|
|
163
|
+
* @see {@link DeleteLicenseAssetGroupCommand}
|
|
164
|
+
*/
|
|
165
|
+
deleteLicenseAssetGroup(args: DeleteLicenseAssetGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteLicenseAssetGroupCommandOutput>;
|
|
166
|
+
deleteLicenseAssetGroup(args: DeleteLicenseAssetGroupCommandInput, cb: (err: any, data?: DeleteLicenseAssetGroupCommandOutput) => void): void;
|
|
167
|
+
deleteLicenseAssetGroup(args: DeleteLicenseAssetGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteLicenseAssetGroupCommandOutput) => void): void;
|
|
168
|
+
/**
|
|
169
|
+
* @see {@link DeleteLicenseAssetRulesetCommand}
|
|
170
|
+
*/
|
|
171
|
+
deleteLicenseAssetRuleset(args: DeleteLicenseAssetRulesetCommandInput, options?: __HttpHandlerOptions): Promise<DeleteLicenseAssetRulesetCommandOutput>;
|
|
172
|
+
deleteLicenseAssetRuleset(args: DeleteLicenseAssetRulesetCommandInput, cb: (err: any, data?: DeleteLicenseAssetRulesetCommandOutput) => void): void;
|
|
173
|
+
deleteLicenseAssetRuleset(args: DeleteLicenseAssetRulesetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteLicenseAssetRulesetCommandOutput) => void): void;
|
|
138
174
|
/**
|
|
139
175
|
* @see {@link DeleteLicenseConfigurationCommand}
|
|
140
176
|
*/
|
|
@@ -177,6 +213,18 @@ export interface LicenseManager {
|
|
|
177
213
|
getLicense(args: GetLicenseCommandInput, options?: __HttpHandlerOptions): Promise<GetLicenseCommandOutput>;
|
|
178
214
|
getLicense(args: GetLicenseCommandInput, cb: (err: any, data?: GetLicenseCommandOutput) => void): void;
|
|
179
215
|
getLicense(args: GetLicenseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetLicenseCommandOutput) => void): void;
|
|
216
|
+
/**
|
|
217
|
+
* @see {@link GetLicenseAssetGroupCommand}
|
|
218
|
+
*/
|
|
219
|
+
getLicenseAssetGroup(args: GetLicenseAssetGroupCommandInput, options?: __HttpHandlerOptions): Promise<GetLicenseAssetGroupCommandOutput>;
|
|
220
|
+
getLicenseAssetGroup(args: GetLicenseAssetGroupCommandInput, cb: (err: any, data?: GetLicenseAssetGroupCommandOutput) => void): void;
|
|
221
|
+
getLicenseAssetGroup(args: GetLicenseAssetGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetLicenseAssetGroupCommandOutput) => void): void;
|
|
222
|
+
/**
|
|
223
|
+
* @see {@link GetLicenseAssetRulesetCommand}
|
|
224
|
+
*/
|
|
225
|
+
getLicenseAssetRuleset(args: GetLicenseAssetRulesetCommandInput, options?: __HttpHandlerOptions): Promise<GetLicenseAssetRulesetCommandOutput>;
|
|
226
|
+
getLicenseAssetRuleset(args: GetLicenseAssetRulesetCommandInput, cb: (err: any, data?: GetLicenseAssetRulesetCommandOutput) => void): void;
|
|
227
|
+
getLicenseAssetRuleset(args: GetLicenseAssetRulesetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetLicenseAssetRulesetCommandOutput) => void): void;
|
|
180
228
|
/**
|
|
181
229
|
* @see {@link GetLicenseConfigurationCommand}
|
|
182
230
|
*/
|
|
@@ -208,6 +256,12 @@ export interface LicenseManager {
|
|
|
208
256
|
getServiceSettings(args: GetServiceSettingsCommandInput, options?: __HttpHandlerOptions): Promise<GetServiceSettingsCommandOutput>;
|
|
209
257
|
getServiceSettings(args: GetServiceSettingsCommandInput, cb: (err: any, data?: GetServiceSettingsCommandOutput) => void): void;
|
|
210
258
|
getServiceSettings(args: GetServiceSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetServiceSettingsCommandOutput) => void): void;
|
|
259
|
+
/**
|
|
260
|
+
* @see {@link ListAssetsForLicenseAssetGroupCommand}
|
|
261
|
+
*/
|
|
262
|
+
listAssetsForLicenseAssetGroup(args: ListAssetsForLicenseAssetGroupCommandInput, options?: __HttpHandlerOptions): Promise<ListAssetsForLicenseAssetGroupCommandOutput>;
|
|
263
|
+
listAssetsForLicenseAssetGroup(args: ListAssetsForLicenseAssetGroupCommandInput, cb: (err: any, data?: ListAssetsForLicenseAssetGroupCommandOutput) => void): void;
|
|
264
|
+
listAssetsForLicenseAssetGroup(args: ListAssetsForLicenseAssetGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAssetsForLicenseAssetGroupCommandOutput) => void): void;
|
|
211
265
|
/**
|
|
212
266
|
* @see {@link ListAssociationsForLicenseConfigurationCommand}
|
|
213
267
|
*/
|
|
@@ -227,6 +281,20 @@ export interface LicenseManager {
|
|
|
227
281
|
listFailuresForLicenseConfigurationOperations(args: ListFailuresForLicenseConfigurationOperationsCommandInput, options?: __HttpHandlerOptions): Promise<ListFailuresForLicenseConfigurationOperationsCommandOutput>;
|
|
228
282
|
listFailuresForLicenseConfigurationOperations(args: ListFailuresForLicenseConfigurationOperationsCommandInput, cb: (err: any, data?: ListFailuresForLicenseConfigurationOperationsCommandOutput) => void): void;
|
|
229
283
|
listFailuresForLicenseConfigurationOperations(args: ListFailuresForLicenseConfigurationOperationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFailuresForLicenseConfigurationOperationsCommandOutput) => void): void;
|
|
284
|
+
/**
|
|
285
|
+
* @see {@link ListLicenseAssetGroupsCommand}
|
|
286
|
+
*/
|
|
287
|
+
listLicenseAssetGroups(): Promise<ListLicenseAssetGroupsCommandOutput>;
|
|
288
|
+
listLicenseAssetGroups(args: ListLicenseAssetGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListLicenseAssetGroupsCommandOutput>;
|
|
289
|
+
listLicenseAssetGroups(args: ListLicenseAssetGroupsCommandInput, cb: (err: any, data?: ListLicenseAssetGroupsCommandOutput) => void): void;
|
|
290
|
+
listLicenseAssetGroups(args: ListLicenseAssetGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLicenseAssetGroupsCommandOutput) => void): void;
|
|
291
|
+
/**
|
|
292
|
+
* @see {@link ListLicenseAssetRulesetsCommand}
|
|
293
|
+
*/
|
|
294
|
+
listLicenseAssetRulesets(): Promise<ListLicenseAssetRulesetsCommandOutput>;
|
|
295
|
+
listLicenseAssetRulesets(args: ListLicenseAssetRulesetsCommandInput, options?: __HttpHandlerOptions): Promise<ListLicenseAssetRulesetsCommandOutput>;
|
|
296
|
+
listLicenseAssetRulesets(args: ListLicenseAssetRulesetsCommandInput, cb: (err: any, data?: ListLicenseAssetRulesetsCommandOutput) => void): void;
|
|
297
|
+
listLicenseAssetRulesets(args: ListLicenseAssetRulesetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLicenseAssetRulesetsCommandOutput) => void): void;
|
|
230
298
|
/**
|
|
231
299
|
* @see {@link ListLicenseConfigurationsCommand}
|
|
232
300
|
*/
|
|
@@ -234,6 +302,13 @@ export interface LicenseManager {
|
|
|
234
302
|
listLicenseConfigurations(args: ListLicenseConfigurationsCommandInput, options?: __HttpHandlerOptions): Promise<ListLicenseConfigurationsCommandOutput>;
|
|
235
303
|
listLicenseConfigurations(args: ListLicenseConfigurationsCommandInput, cb: (err: any, data?: ListLicenseConfigurationsCommandOutput) => void): void;
|
|
236
304
|
listLicenseConfigurations(args: ListLicenseConfigurationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLicenseConfigurationsCommandOutput) => void): void;
|
|
305
|
+
/**
|
|
306
|
+
* @see {@link ListLicenseConfigurationsForOrganizationCommand}
|
|
307
|
+
*/
|
|
308
|
+
listLicenseConfigurationsForOrganization(): Promise<ListLicenseConfigurationsForOrganizationCommandOutput>;
|
|
309
|
+
listLicenseConfigurationsForOrganization(args: ListLicenseConfigurationsForOrganizationCommandInput, options?: __HttpHandlerOptions): Promise<ListLicenseConfigurationsForOrganizationCommandOutput>;
|
|
310
|
+
listLicenseConfigurationsForOrganization(args: ListLicenseConfigurationsForOrganizationCommandInput, cb: (err: any, data?: ListLicenseConfigurationsForOrganizationCommandOutput) => void): void;
|
|
311
|
+
listLicenseConfigurationsForOrganization(args: ListLicenseConfigurationsForOrganizationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLicenseConfigurationsForOrganizationCommandOutput) => void): void;
|
|
237
312
|
/**
|
|
238
313
|
* @see {@link ListLicenseConversionTasksCommand}
|
|
239
314
|
*/
|
|
@@ -338,6 +413,18 @@ export interface LicenseManager {
|
|
|
338
413
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
339
414
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
340
415
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
416
|
+
/**
|
|
417
|
+
* @see {@link UpdateLicenseAssetGroupCommand}
|
|
418
|
+
*/
|
|
419
|
+
updateLicenseAssetGroup(args: UpdateLicenseAssetGroupCommandInput, options?: __HttpHandlerOptions): Promise<UpdateLicenseAssetGroupCommandOutput>;
|
|
420
|
+
updateLicenseAssetGroup(args: UpdateLicenseAssetGroupCommandInput, cb: (err: any, data?: UpdateLicenseAssetGroupCommandOutput) => void): void;
|
|
421
|
+
updateLicenseAssetGroup(args: UpdateLicenseAssetGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateLicenseAssetGroupCommandOutput) => void): void;
|
|
422
|
+
/**
|
|
423
|
+
* @see {@link UpdateLicenseAssetRulesetCommand}
|
|
424
|
+
*/
|
|
425
|
+
updateLicenseAssetRuleset(args: UpdateLicenseAssetRulesetCommandInput, options?: __HttpHandlerOptions): Promise<UpdateLicenseAssetRulesetCommandOutput>;
|
|
426
|
+
updateLicenseAssetRuleset(args: UpdateLicenseAssetRulesetCommandInput, cb: (err: any, data?: UpdateLicenseAssetRulesetCommandOutput) => void): void;
|
|
427
|
+
updateLicenseAssetRuleset(args: UpdateLicenseAssetRulesetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateLicenseAssetRulesetCommandOutput) => void): void;
|
|
341
428
|
/**
|
|
342
429
|
* @see {@link UpdateLicenseConfigurationCommand}
|
|
343
430
|
*/
|
|
@@ -13,6 +13,8 @@ import { CheckoutBorrowLicenseCommandInput, CheckoutBorrowLicenseCommandOutput }
|
|
|
13
13
|
import { CheckoutLicenseCommandInput, CheckoutLicenseCommandOutput } from "./commands/CheckoutLicenseCommand";
|
|
14
14
|
import { CreateGrantCommandInput, CreateGrantCommandOutput } from "./commands/CreateGrantCommand";
|
|
15
15
|
import { CreateGrantVersionCommandInput, CreateGrantVersionCommandOutput } from "./commands/CreateGrantVersionCommand";
|
|
16
|
+
import { CreateLicenseAssetGroupCommandInput, CreateLicenseAssetGroupCommandOutput } from "./commands/CreateLicenseAssetGroupCommand";
|
|
17
|
+
import { CreateLicenseAssetRulesetCommandInput, CreateLicenseAssetRulesetCommandOutput } from "./commands/CreateLicenseAssetRulesetCommand";
|
|
16
18
|
import { CreateLicenseCommandInput, CreateLicenseCommandOutput } from "./commands/CreateLicenseCommand";
|
|
17
19
|
import { CreateLicenseConfigurationCommandInput, CreateLicenseConfigurationCommandOutput } from "./commands/CreateLicenseConfigurationCommand";
|
|
18
20
|
import { CreateLicenseConversionTaskForResourceCommandInput, CreateLicenseConversionTaskForResourceCommandOutput } from "./commands/CreateLicenseConversionTaskForResourceCommand";
|
|
@@ -20,6 +22,8 @@ import { CreateLicenseManagerReportGeneratorCommandInput, CreateLicenseManagerRe
|
|
|
20
22
|
import { CreateLicenseVersionCommandInput, CreateLicenseVersionCommandOutput } from "./commands/CreateLicenseVersionCommand";
|
|
21
23
|
import { CreateTokenCommandInput, CreateTokenCommandOutput } from "./commands/CreateTokenCommand";
|
|
22
24
|
import { DeleteGrantCommandInput, DeleteGrantCommandOutput } from "./commands/DeleteGrantCommand";
|
|
25
|
+
import { DeleteLicenseAssetGroupCommandInput, DeleteLicenseAssetGroupCommandOutput } from "./commands/DeleteLicenseAssetGroupCommand";
|
|
26
|
+
import { DeleteLicenseAssetRulesetCommandInput, DeleteLicenseAssetRulesetCommandOutput } from "./commands/DeleteLicenseAssetRulesetCommand";
|
|
23
27
|
import { DeleteLicenseCommandInput, DeleteLicenseCommandOutput } from "./commands/DeleteLicenseCommand";
|
|
24
28
|
import { DeleteLicenseConfigurationCommandInput, DeleteLicenseConfigurationCommandOutput } from "./commands/DeleteLicenseConfigurationCommand";
|
|
25
29
|
import { DeleteLicenseManagerReportGeneratorCommandInput, DeleteLicenseManagerReportGeneratorCommandOutput } from "./commands/DeleteLicenseManagerReportGeneratorCommand";
|
|
@@ -27,16 +31,22 @@ import { DeleteTokenCommandInput, DeleteTokenCommandOutput } from "./commands/De
|
|
|
27
31
|
import { ExtendLicenseConsumptionCommandInput, ExtendLicenseConsumptionCommandOutput } from "./commands/ExtendLicenseConsumptionCommand";
|
|
28
32
|
import { GetAccessTokenCommandInput, GetAccessTokenCommandOutput } from "./commands/GetAccessTokenCommand";
|
|
29
33
|
import { GetGrantCommandInput, GetGrantCommandOutput } from "./commands/GetGrantCommand";
|
|
34
|
+
import { GetLicenseAssetGroupCommandInput, GetLicenseAssetGroupCommandOutput } from "./commands/GetLicenseAssetGroupCommand";
|
|
35
|
+
import { GetLicenseAssetRulesetCommandInput, GetLicenseAssetRulesetCommandOutput } from "./commands/GetLicenseAssetRulesetCommand";
|
|
30
36
|
import { GetLicenseCommandInput, GetLicenseCommandOutput } from "./commands/GetLicenseCommand";
|
|
31
37
|
import { GetLicenseConfigurationCommandInput, GetLicenseConfigurationCommandOutput } from "./commands/GetLicenseConfigurationCommand";
|
|
32
38
|
import { GetLicenseConversionTaskCommandInput, GetLicenseConversionTaskCommandOutput } from "./commands/GetLicenseConversionTaskCommand";
|
|
33
39
|
import { GetLicenseManagerReportGeneratorCommandInput, GetLicenseManagerReportGeneratorCommandOutput } from "./commands/GetLicenseManagerReportGeneratorCommand";
|
|
34
40
|
import { GetLicenseUsageCommandInput, GetLicenseUsageCommandOutput } from "./commands/GetLicenseUsageCommand";
|
|
35
41
|
import { GetServiceSettingsCommandInput, GetServiceSettingsCommandOutput } from "./commands/GetServiceSettingsCommand";
|
|
42
|
+
import { ListAssetsForLicenseAssetGroupCommandInput, ListAssetsForLicenseAssetGroupCommandOutput } from "./commands/ListAssetsForLicenseAssetGroupCommand";
|
|
36
43
|
import { ListAssociationsForLicenseConfigurationCommandInput, ListAssociationsForLicenseConfigurationCommandOutput } from "./commands/ListAssociationsForLicenseConfigurationCommand";
|
|
37
44
|
import { ListDistributedGrantsCommandInput, ListDistributedGrantsCommandOutput } from "./commands/ListDistributedGrantsCommand";
|
|
38
45
|
import { ListFailuresForLicenseConfigurationOperationsCommandInput, ListFailuresForLicenseConfigurationOperationsCommandOutput } from "./commands/ListFailuresForLicenseConfigurationOperationsCommand";
|
|
46
|
+
import { ListLicenseAssetGroupsCommandInput, ListLicenseAssetGroupsCommandOutput } from "./commands/ListLicenseAssetGroupsCommand";
|
|
47
|
+
import { ListLicenseAssetRulesetsCommandInput, ListLicenseAssetRulesetsCommandOutput } from "./commands/ListLicenseAssetRulesetsCommand";
|
|
39
48
|
import { ListLicenseConfigurationsCommandInput, ListLicenseConfigurationsCommandOutput } from "./commands/ListLicenseConfigurationsCommand";
|
|
49
|
+
import { ListLicenseConfigurationsForOrganizationCommandInput, ListLicenseConfigurationsForOrganizationCommandOutput } from "./commands/ListLicenseConfigurationsForOrganizationCommand";
|
|
40
50
|
import { ListLicenseConversionTasksCommandInput, ListLicenseConversionTasksCommandOutput } from "./commands/ListLicenseConversionTasksCommand";
|
|
41
51
|
import { ListLicenseManagerReportGeneratorsCommandInput, ListLicenseManagerReportGeneratorsCommandOutput } from "./commands/ListLicenseManagerReportGeneratorsCommand";
|
|
42
52
|
import { ListLicensesCommandInput, ListLicensesCommandOutput } from "./commands/ListLicensesCommand";
|
|
@@ -53,6 +63,8 @@ import { ListUsageForLicenseConfigurationCommandInput, ListUsageForLicenseConfig
|
|
|
53
63
|
import { RejectGrantCommandInput, RejectGrantCommandOutput } from "./commands/RejectGrantCommand";
|
|
54
64
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
55
65
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
66
|
+
import { UpdateLicenseAssetGroupCommandInput, UpdateLicenseAssetGroupCommandOutput } from "./commands/UpdateLicenseAssetGroupCommand";
|
|
67
|
+
import { UpdateLicenseAssetRulesetCommandInput, UpdateLicenseAssetRulesetCommandOutput } from "./commands/UpdateLicenseAssetRulesetCommand";
|
|
56
68
|
import { UpdateLicenseConfigurationCommandInput, UpdateLicenseConfigurationCommandOutput } from "./commands/UpdateLicenseConfigurationCommand";
|
|
57
69
|
import { UpdateLicenseManagerReportGeneratorCommandInput, UpdateLicenseManagerReportGeneratorCommandOutput } from "./commands/UpdateLicenseManagerReportGeneratorCommand";
|
|
58
70
|
import { UpdateLicenseSpecificationsForResourceCommandInput, UpdateLicenseSpecificationsForResourceCommandOutput } from "./commands/UpdateLicenseSpecificationsForResourceCommand";
|
|
@@ -63,11 +75,11 @@ export { __Client };
|
|
|
63
75
|
/**
|
|
64
76
|
* @public
|
|
65
77
|
*/
|
|
66
|
-
export type ServiceInputTypes = AcceptGrantCommandInput | CheckInLicenseCommandInput | CheckoutBorrowLicenseCommandInput | CheckoutLicenseCommandInput | CreateGrantCommandInput | CreateGrantVersionCommandInput | CreateLicenseCommandInput | CreateLicenseConfigurationCommandInput | CreateLicenseConversionTaskForResourceCommandInput | CreateLicenseManagerReportGeneratorCommandInput | CreateLicenseVersionCommandInput | CreateTokenCommandInput | DeleteGrantCommandInput | DeleteLicenseCommandInput | DeleteLicenseConfigurationCommandInput | DeleteLicenseManagerReportGeneratorCommandInput | DeleteTokenCommandInput | ExtendLicenseConsumptionCommandInput | GetAccessTokenCommandInput | GetGrantCommandInput | GetLicenseCommandInput | GetLicenseConfigurationCommandInput | GetLicenseConversionTaskCommandInput | GetLicenseManagerReportGeneratorCommandInput | GetLicenseUsageCommandInput | GetServiceSettingsCommandInput | ListAssociationsForLicenseConfigurationCommandInput | ListDistributedGrantsCommandInput | ListFailuresForLicenseConfigurationOperationsCommandInput | ListLicenseConfigurationsCommandInput | ListLicenseConversionTasksCommandInput | ListLicenseManagerReportGeneratorsCommandInput | ListLicenseSpecificationsForResourceCommandInput | ListLicenseVersionsCommandInput | ListLicensesCommandInput | ListReceivedGrantsCommandInput | ListReceivedGrantsForOrganizationCommandInput | ListReceivedLicensesCommandInput | ListReceivedLicensesForOrganizationCommandInput | ListResourceInventoryCommandInput | ListTagsForResourceCommandInput | ListTokensCommandInput | ListUsageForLicenseConfigurationCommandInput | RejectGrantCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateLicenseConfigurationCommandInput | UpdateLicenseManagerReportGeneratorCommandInput | UpdateLicenseSpecificationsForResourceCommandInput | UpdateServiceSettingsCommandInput;
|
|
78
|
+
export type ServiceInputTypes = AcceptGrantCommandInput | CheckInLicenseCommandInput | CheckoutBorrowLicenseCommandInput | CheckoutLicenseCommandInput | CreateGrantCommandInput | CreateGrantVersionCommandInput | CreateLicenseAssetGroupCommandInput | CreateLicenseAssetRulesetCommandInput | CreateLicenseCommandInput | CreateLicenseConfigurationCommandInput | CreateLicenseConversionTaskForResourceCommandInput | CreateLicenseManagerReportGeneratorCommandInput | CreateLicenseVersionCommandInput | CreateTokenCommandInput | DeleteGrantCommandInput | DeleteLicenseAssetGroupCommandInput | DeleteLicenseAssetRulesetCommandInput | DeleteLicenseCommandInput | DeleteLicenseConfigurationCommandInput | DeleteLicenseManagerReportGeneratorCommandInput | DeleteTokenCommandInput | ExtendLicenseConsumptionCommandInput | GetAccessTokenCommandInput | GetGrantCommandInput | GetLicenseAssetGroupCommandInput | GetLicenseAssetRulesetCommandInput | GetLicenseCommandInput | GetLicenseConfigurationCommandInput | GetLicenseConversionTaskCommandInput | GetLicenseManagerReportGeneratorCommandInput | GetLicenseUsageCommandInput | GetServiceSettingsCommandInput | ListAssetsForLicenseAssetGroupCommandInput | ListAssociationsForLicenseConfigurationCommandInput | ListDistributedGrantsCommandInput | ListFailuresForLicenseConfigurationOperationsCommandInput | ListLicenseAssetGroupsCommandInput | ListLicenseAssetRulesetsCommandInput | ListLicenseConfigurationsCommandInput | ListLicenseConfigurationsForOrganizationCommandInput | ListLicenseConversionTasksCommandInput | ListLicenseManagerReportGeneratorsCommandInput | ListLicenseSpecificationsForResourceCommandInput | ListLicenseVersionsCommandInput | ListLicensesCommandInput | ListReceivedGrantsCommandInput | ListReceivedGrantsForOrganizationCommandInput | ListReceivedLicensesCommandInput | ListReceivedLicensesForOrganizationCommandInput | ListResourceInventoryCommandInput | ListTagsForResourceCommandInput | ListTokensCommandInput | ListUsageForLicenseConfigurationCommandInput | RejectGrantCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateLicenseAssetGroupCommandInput | UpdateLicenseAssetRulesetCommandInput | UpdateLicenseConfigurationCommandInput | UpdateLicenseManagerReportGeneratorCommandInput | UpdateLicenseSpecificationsForResourceCommandInput | UpdateServiceSettingsCommandInput;
|
|
67
79
|
/**
|
|
68
80
|
* @public
|
|
69
81
|
*/
|
|
70
|
-
export type ServiceOutputTypes = AcceptGrantCommandOutput | CheckInLicenseCommandOutput | CheckoutBorrowLicenseCommandOutput | CheckoutLicenseCommandOutput | CreateGrantCommandOutput | CreateGrantVersionCommandOutput | CreateLicenseCommandOutput | CreateLicenseConfigurationCommandOutput | CreateLicenseConversionTaskForResourceCommandOutput | CreateLicenseManagerReportGeneratorCommandOutput | CreateLicenseVersionCommandOutput | CreateTokenCommandOutput | DeleteGrantCommandOutput | DeleteLicenseCommandOutput | DeleteLicenseConfigurationCommandOutput | DeleteLicenseManagerReportGeneratorCommandOutput | DeleteTokenCommandOutput | ExtendLicenseConsumptionCommandOutput | GetAccessTokenCommandOutput | GetGrantCommandOutput | GetLicenseCommandOutput | GetLicenseConfigurationCommandOutput | GetLicenseConversionTaskCommandOutput | GetLicenseManagerReportGeneratorCommandOutput | GetLicenseUsageCommandOutput | GetServiceSettingsCommandOutput | ListAssociationsForLicenseConfigurationCommandOutput | ListDistributedGrantsCommandOutput | ListFailuresForLicenseConfigurationOperationsCommandOutput | ListLicenseConfigurationsCommandOutput | ListLicenseConversionTasksCommandOutput | ListLicenseManagerReportGeneratorsCommandOutput | ListLicenseSpecificationsForResourceCommandOutput | ListLicenseVersionsCommandOutput | ListLicensesCommandOutput | ListReceivedGrantsCommandOutput | ListReceivedGrantsForOrganizationCommandOutput | ListReceivedLicensesCommandOutput | ListReceivedLicensesForOrganizationCommandOutput | ListResourceInventoryCommandOutput | ListTagsForResourceCommandOutput | ListTokensCommandOutput | ListUsageForLicenseConfigurationCommandOutput | RejectGrantCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateLicenseConfigurationCommandOutput | UpdateLicenseManagerReportGeneratorCommandOutput | UpdateLicenseSpecificationsForResourceCommandOutput | UpdateServiceSettingsCommandOutput;
|
|
82
|
+
export type ServiceOutputTypes = AcceptGrantCommandOutput | CheckInLicenseCommandOutput | CheckoutBorrowLicenseCommandOutput | CheckoutLicenseCommandOutput | CreateGrantCommandOutput | CreateGrantVersionCommandOutput | CreateLicenseAssetGroupCommandOutput | CreateLicenseAssetRulesetCommandOutput | CreateLicenseCommandOutput | CreateLicenseConfigurationCommandOutput | CreateLicenseConversionTaskForResourceCommandOutput | CreateLicenseManagerReportGeneratorCommandOutput | CreateLicenseVersionCommandOutput | CreateTokenCommandOutput | DeleteGrantCommandOutput | DeleteLicenseAssetGroupCommandOutput | DeleteLicenseAssetRulesetCommandOutput | DeleteLicenseCommandOutput | DeleteLicenseConfigurationCommandOutput | DeleteLicenseManagerReportGeneratorCommandOutput | DeleteTokenCommandOutput | ExtendLicenseConsumptionCommandOutput | GetAccessTokenCommandOutput | GetGrantCommandOutput | GetLicenseAssetGroupCommandOutput | GetLicenseAssetRulesetCommandOutput | GetLicenseCommandOutput | GetLicenseConfigurationCommandOutput | GetLicenseConversionTaskCommandOutput | GetLicenseManagerReportGeneratorCommandOutput | GetLicenseUsageCommandOutput | GetServiceSettingsCommandOutput | ListAssetsForLicenseAssetGroupCommandOutput | ListAssociationsForLicenseConfigurationCommandOutput | ListDistributedGrantsCommandOutput | ListFailuresForLicenseConfigurationOperationsCommandOutput | ListLicenseAssetGroupsCommandOutput | ListLicenseAssetRulesetsCommandOutput | ListLicenseConfigurationsCommandOutput | ListLicenseConfigurationsForOrganizationCommandOutput | ListLicenseConversionTasksCommandOutput | ListLicenseManagerReportGeneratorsCommandOutput | ListLicenseSpecificationsForResourceCommandOutput | ListLicenseVersionsCommandOutput | ListLicensesCommandOutput | ListReceivedGrantsCommandOutput | ListReceivedGrantsForOrganizationCommandOutput | ListReceivedLicensesCommandOutput | ListReceivedLicensesForOrganizationCommandOutput | ListResourceInventoryCommandOutput | ListTagsForResourceCommandOutput | ListTokensCommandOutput | ListUsageForLicenseConfigurationCommandOutput | RejectGrantCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateLicenseAssetGroupCommandOutput | UpdateLicenseAssetRulesetCommandOutput | UpdateLicenseConfigurationCommandOutput | UpdateLicenseManagerReportGeneratorCommandOutput | UpdateLicenseSpecificationsForResourceCommandOutput | UpdateServiceSettingsCommandOutput;
|
|
71
83
|
/**
|
|
72
84
|
* @public
|
|
73
85
|
*/
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient";
|
|
4
|
+
import { CreateLicenseAssetGroupRequest, CreateLicenseAssetGroupResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link CreateLicenseAssetGroupCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface CreateLicenseAssetGroupCommandInput extends CreateLicenseAssetGroupRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link CreateLicenseAssetGroupCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateLicenseAssetGroupCommandOutput extends CreateLicenseAssetGroupResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const CreateLicenseAssetGroupCommand_base: {
|
|
25
|
+
new (input: CreateLicenseAssetGroupCommandInput): import("@smithy/smithy-client").CommandImpl<CreateLicenseAssetGroupCommandInput, CreateLicenseAssetGroupCommandOutput, LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: CreateLicenseAssetGroupCommandInput): import("@smithy/smithy-client").CommandImpl<CreateLicenseAssetGroupCommandInput, CreateLicenseAssetGroupCommandOutput, LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Creates a license asset group.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { LicenseManagerClient, CreateLicenseAssetGroupCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
35
|
+
* // const { LicenseManagerClient, CreateLicenseAssetGroupCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
36
|
+
* // import type { LicenseManagerClientConfig } from "@aws-sdk/client-license-manager";
|
|
37
|
+
* const config = {}; // type is LicenseManagerClientConfig
|
|
38
|
+
* const client = new LicenseManagerClient(config);
|
|
39
|
+
* const input = { // CreateLicenseAssetGroupRequest
|
|
40
|
+
* Name: "STRING_VALUE", // required
|
|
41
|
+
* Description: "STRING_VALUE",
|
|
42
|
+
* LicenseAssetGroupConfigurations: [ // LicenseAssetGroupConfigurationList // required
|
|
43
|
+
* { // LicenseAssetGroupConfiguration
|
|
44
|
+
* UsageDimension: "STRING_VALUE",
|
|
45
|
+
* },
|
|
46
|
+
* ],
|
|
47
|
+
* AssociatedLicenseAssetRulesetARNs: [ // LicenseAssetRulesetArnList // required
|
|
48
|
+
* "STRING_VALUE",
|
|
49
|
+
* ],
|
|
50
|
+
* Properties: [ // LicenseAssetGroupPropertyList
|
|
51
|
+
* { // LicenseAssetGroupProperty
|
|
52
|
+
* Key: "STRING_VALUE", // required
|
|
53
|
+
* Value: "STRING_VALUE", // required
|
|
54
|
+
* },
|
|
55
|
+
* ],
|
|
56
|
+
* Tags: [ // TagList
|
|
57
|
+
* { // Tag
|
|
58
|
+
* Key: "STRING_VALUE",
|
|
59
|
+
* Value: "STRING_VALUE",
|
|
60
|
+
* },
|
|
61
|
+
* ],
|
|
62
|
+
* ClientToken: "STRING_VALUE", // required
|
|
63
|
+
* };
|
|
64
|
+
* const command = new CreateLicenseAssetGroupCommand(input);
|
|
65
|
+
* const response = await client.send(command);
|
|
66
|
+
* // { // CreateLicenseAssetGroupResponse
|
|
67
|
+
* // LicenseAssetGroupArn: "STRING_VALUE", // required
|
|
68
|
+
* // Status: "STRING_VALUE", // required
|
|
69
|
+
* // };
|
|
70
|
+
*
|
|
71
|
+
* ```
|
|
72
|
+
*
|
|
73
|
+
* @param CreateLicenseAssetGroupCommandInput - {@link CreateLicenseAssetGroupCommandInput}
|
|
74
|
+
* @returns {@link CreateLicenseAssetGroupCommandOutput}
|
|
75
|
+
* @see {@link CreateLicenseAssetGroupCommandInput} for command's `input` shape.
|
|
76
|
+
* @see {@link CreateLicenseAssetGroupCommandOutput} for command's `response` shape.
|
|
77
|
+
* @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
|
|
78
|
+
*
|
|
79
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
80
|
+
* <p>Access to resource denied.</p>
|
|
81
|
+
*
|
|
82
|
+
* @throws {@link AuthorizationException} (client fault)
|
|
83
|
+
* <p>The Amazon Web Services user account does not have permission to perform the action. Check the IAM
|
|
84
|
+
* policy associated with this account.</p>
|
|
85
|
+
*
|
|
86
|
+
* @throws {@link InvalidParameterValueException} (client fault)
|
|
87
|
+
* <p>One or more parameter values are not valid.</p>
|
|
88
|
+
*
|
|
89
|
+
* @throws {@link RateLimitExceededException} (client fault)
|
|
90
|
+
* <p>Too many requests have been submitted. Try again after a brief wait.</p>
|
|
91
|
+
*
|
|
92
|
+
* @throws {@link ServerInternalException} (server fault)
|
|
93
|
+
* <p>The server experienced an internal error. Try again.</p>
|
|
94
|
+
*
|
|
95
|
+
* @throws {@link ValidationException} (client fault)
|
|
96
|
+
* <p>The provided input is not valid. Try your request again.</p>
|
|
97
|
+
*
|
|
98
|
+
* @throws {@link LicenseManagerServiceException}
|
|
99
|
+
* <p>Base exception class for all service exceptions from LicenseManager service.</p>
|
|
100
|
+
*
|
|
101
|
+
*
|
|
102
|
+
* @public
|
|
103
|
+
*/
|
|
104
|
+
export declare class CreateLicenseAssetGroupCommand extends CreateLicenseAssetGroupCommand_base {
|
|
105
|
+
/** @internal type navigation helper, not in runtime. */
|
|
106
|
+
protected static __types: {
|
|
107
|
+
api: {
|
|
108
|
+
input: CreateLicenseAssetGroupRequest;
|
|
109
|
+
output: CreateLicenseAssetGroupResponse;
|
|
110
|
+
};
|
|
111
|
+
sdk: {
|
|
112
|
+
input: CreateLicenseAssetGroupCommandInput;
|
|
113
|
+
output: CreateLicenseAssetGroupCommandOutput;
|
|
114
|
+
};
|
|
115
|
+
};
|
|
116
|
+
}
|
|
@@ -0,0 +1,206 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient";
|
|
4
|
+
import { CreateLicenseAssetRulesetRequest, CreateLicenseAssetRulesetResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link CreateLicenseAssetRulesetCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface CreateLicenseAssetRulesetCommandInput extends CreateLicenseAssetRulesetRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link CreateLicenseAssetRulesetCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateLicenseAssetRulesetCommandOutput extends CreateLicenseAssetRulesetResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const CreateLicenseAssetRulesetCommand_base: {
|
|
25
|
+
new (input: CreateLicenseAssetRulesetCommandInput): import("@smithy/smithy-client").CommandImpl<CreateLicenseAssetRulesetCommandInput, CreateLicenseAssetRulesetCommandOutput, LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: CreateLicenseAssetRulesetCommandInput): import("@smithy/smithy-client").CommandImpl<CreateLicenseAssetRulesetCommandInput, CreateLicenseAssetRulesetCommandOutput, LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Creates a license asset ruleset.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { LicenseManagerClient, CreateLicenseAssetRulesetCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
35
|
+
* // const { LicenseManagerClient, CreateLicenseAssetRulesetCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
36
|
+
* // import type { LicenseManagerClientConfig } from "@aws-sdk/client-license-manager";
|
|
37
|
+
* const config = {}; // type is LicenseManagerClientConfig
|
|
38
|
+
* const client = new LicenseManagerClient(config);
|
|
39
|
+
* const input = { // CreateLicenseAssetRulesetRequest
|
|
40
|
+
* Name: "STRING_VALUE", // required
|
|
41
|
+
* Description: "STRING_VALUE",
|
|
42
|
+
* Rules: [ // LicenseAssetRuleList // required
|
|
43
|
+
* { // LicenseAssetRule
|
|
44
|
+
* RuleStatement: { // RuleStatement
|
|
45
|
+
* LicenseConfigurationRuleStatement: { // LicenseConfigurationRuleStatement
|
|
46
|
+
* AndRuleStatement: { // AndRuleStatement
|
|
47
|
+
* MatchingRuleStatements: [ // MatchingRuleStatementList
|
|
48
|
+
* { // MatchingRuleStatement
|
|
49
|
+
* KeyToMatch: "STRING_VALUE", // required
|
|
50
|
+
* Constraint: "STRING_VALUE", // required
|
|
51
|
+
* ValueToMatch: [ // StringList // required
|
|
52
|
+
* "STRING_VALUE",
|
|
53
|
+
* ],
|
|
54
|
+
* },
|
|
55
|
+
* ],
|
|
56
|
+
* ScriptRuleStatements: [ // ScriptRuleStatementList
|
|
57
|
+
* { // ScriptRuleStatement
|
|
58
|
+
* KeyToMatch: "STRING_VALUE", // required
|
|
59
|
+
* Script: "STRING_VALUE", // required
|
|
60
|
+
* },
|
|
61
|
+
* ],
|
|
62
|
+
* },
|
|
63
|
+
* OrRuleStatement: { // OrRuleStatement
|
|
64
|
+
* MatchingRuleStatements: [
|
|
65
|
+
* {
|
|
66
|
+
* KeyToMatch: "STRING_VALUE", // required
|
|
67
|
+
* Constraint: "STRING_VALUE", // required
|
|
68
|
+
* ValueToMatch: [ // required
|
|
69
|
+
* "STRING_VALUE",
|
|
70
|
+
* ],
|
|
71
|
+
* },
|
|
72
|
+
* ],
|
|
73
|
+
* ScriptRuleStatements: [
|
|
74
|
+
* {
|
|
75
|
+
* KeyToMatch: "STRING_VALUE", // required
|
|
76
|
+
* Script: "STRING_VALUE", // required
|
|
77
|
+
* },
|
|
78
|
+
* ],
|
|
79
|
+
* },
|
|
80
|
+
* MatchingRuleStatement: {
|
|
81
|
+
* KeyToMatch: "STRING_VALUE", // required
|
|
82
|
+
* Constraint: "STRING_VALUE", // required
|
|
83
|
+
* ValueToMatch: [ // required
|
|
84
|
+
* "STRING_VALUE",
|
|
85
|
+
* ],
|
|
86
|
+
* },
|
|
87
|
+
* },
|
|
88
|
+
* LicenseRuleStatement: { // LicenseRuleStatement
|
|
89
|
+
* AndRuleStatement: {
|
|
90
|
+
* MatchingRuleStatements: [
|
|
91
|
+
* {
|
|
92
|
+
* KeyToMatch: "STRING_VALUE", // required
|
|
93
|
+
* Constraint: "STRING_VALUE", // required
|
|
94
|
+
* ValueToMatch: [ // required
|
|
95
|
+
* "STRING_VALUE",
|
|
96
|
+
* ],
|
|
97
|
+
* },
|
|
98
|
+
* ],
|
|
99
|
+
* ScriptRuleStatements: [
|
|
100
|
+
* {
|
|
101
|
+
* KeyToMatch: "STRING_VALUE", // required
|
|
102
|
+
* Script: "STRING_VALUE", // required
|
|
103
|
+
* },
|
|
104
|
+
* ],
|
|
105
|
+
* },
|
|
106
|
+
* OrRuleStatement: {
|
|
107
|
+
* MatchingRuleStatements: [
|
|
108
|
+
* {
|
|
109
|
+
* KeyToMatch: "STRING_VALUE", // required
|
|
110
|
+
* Constraint: "STRING_VALUE", // required
|
|
111
|
+
* ValueToMatch: [ // required
|
|
112
|
+
* "STRING_VALUE",
|
|
113
|
+
* ],
|
|
114
|
+
* },
|
|
115
|
+
* ],
|
|
116
|
+
* ScriptRuleStatements: [
|
|
117
|
+
* {
|
|
118
|
+
* KeyToMatch: "STRING_VALUE", // required
|
|
119
|
+
* Script: "STRING_VALUE", // required
|
|
120
|
+
* },
|
|
121
|
+
* ],
|
|
122
|
+
* },
|
|
123
|
+
* MatchingRuleStatement: "<MatchingRuleStatement>",
|
|
124
|
+
* },
|
|
125
|
+
* InstanceRuleStatement: { // InstanceRuleStatement
|
|
126
|
+
* AndRuleStatement: {
|
|
127
|
+
* MatchingRuleStatements: [
|
|
128
|
+
* "<MatchingRuleStatement>",
|
|
129
|
+
* ],
|
|
130
|
+
* ScriptRuleStatements: [
|
|
131
|
+
* {
|
|
132
|
+
* KeyToMatch: "STRING_VALUE", // required
|
|
133
|
+
* Script: "STRING_VALUE", // required
|
|
134
|
+
* },
|
|
135
|
+
* ],
|
|
136
|
+
* },
|
|
137
|
+
* OrRuleStatement: {
|
|
138
|
+
* MatchingRuleStatements: "<MatchingRuleStatementList>",
|
|
139
|
+
* ScriptRuleStatements: "<ScriptRuleStatementList>",
|
|
140
|
+
* },
|
|
141
|
+
* MatchingRuleStatement: "<MatchingRuleStatement>",
|
|
142
|
+
* ScriptRuleStatement: "<ScriptRuleStatement>",
|
|
143
|
+
* },
|
|
144
|
+
* },
|
|
145
|
+
* },
|
|
146
|
+
* ],
|
|
147
|
+
* Tags: [ // TagList
|
|
148
|
+
* { // Tag
|
|
149
|
+
* Key: "STRING_VALUE",
|
|
150
|
+
* Value: "STRING_VALUE",
|
|
151
|
+
* },
|
|
152
|
+
* ],
|
|
153
|
+
* ClientToken: "STRING_VALUE", // required
|
|
154
|
+
* };
|
|
155
|
+
* const command = new CreateLicenseAssetRulesetCommand(input);
|
|
156
|
+
* const response = await client.send(command);
|
|
157
|
+
* // { // CreateLicenseAssetRulesetResponse
|
|
158
|
+
* // LicenseAssetRulesetArn: "STRING_VALUE", // required
|
|
159
|
+
* // };
|
|
160
|
+
*
|
|
161
|
+
* ```
|
|
162
|
+
*
|
|
163
|
+
* @param CreateLicenseAssetRulesetCommandInput - {@link CreateLicenseAssetRulesetCommandInput}
|
|
164
|
+
* @returns {@link CreateLicenseAssetRulesetCommandOutput}
|
|
165
|
+
* @see {@link CreateLicenseAssetRulesetCommandInput} for command's `input` shape.
|
|
166
|
+
* @see {@link CreateLicenseAssetRulesetCommandOutput} for command's `response` shape.
|
|
167
|
+
* @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
|
|
168
|
+
*
|
|
169
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
170
|
+
* <p>Access to resource denied.</p>
|
|
171
|
+
*
|
|
172
|
+
* @throws {@link AuthorizationException} (client fault)
|
|
173
|
+
* <p>The Amazon Web Services user account does not have permission to perform the action. Check the IAM
|
|
174
|
+
* policy associated with this account.</p>
|
|
175
|
+
*
|
|
176
|
+
* @throws {@link InvalidParameterValueException} (client fault)
|
|
177
|
+
* <p>One or more parameter values are not valid.</p>
|
|
178
|
+
*
|
|
179
|
+
* @throws {@link RateLimitExceededException} (client fault)
|
|
180
|
+
* <p>Too many requests have been submitted. Try again after a brief wait.</p>
|
|
181
|
+
*
|
|
182
|
+
* @throws {@link ServerInternalException} (server fault)
|
|
183
|
+
* <p>The server experienced an internal error. Try again.</p>
|
|
184
|
+
*
|
|
185
|
+
* @throws {@link ValidationException} (client fault)
|
|
186
|
+
* <p>The provided input is not valid. Try your request again.</p>
|
|
187
|
+
*
|
|
188
|
+
* @throws {@link LicenseManagerServiceException}
|
|
189
|
+
* <p>Base exception class for all service exceptions from LicenseManager service.</p>
|
|
190
|
+
*
|
|
191
|
+
*
|
|
192
|
+
* @public
|
|
193
|
+
*/
|
|
194
|
+
export declare class CreateLicenseAssetRulesetCommand extends CreateLicenseAssetRulesetCommand_base {
|
|
195
|
+
/** @internal type navigation helper, not in runtime. */
|
|
196
|
+
protected static __types: {
|
|
197
|
+
api: {
|
|
198
|
+
input: CreateLicenseAssetRulesetRequest;
|
|
199
|
+
output: CreateLicenseAssetRulesetResponse;
|
|
200
|
+
};
|
|
201
|
+
sdk: {
|
|
202
|
+
input: CreateLicenseAssetRulesetCommandInput;
|
|
203
|
+
output: CreateLicenseAssetRulesetCommandOutput;
|
|
204
|
+
};
|
|
205
|
+
};
|
|
206
|
+
}
|
|
@@ -39,16 +39,21 @@ declare const CreateLicenseManagerReportGeneratorCommand_base: {
|
|
|
39
39
|
* const input = { // CreateLicenseManagerReportGeneratorRequest
|
|
40
40
|
* ReportGeneratorName: "STRING_VALUE", // required
|
|
41
41
|
* Type: [ // ReportTypeList // required
|
|
42
|
-
* "LicenseConfigurationSummaryReport" || "LicenseConfigurationUsageReport",
|
|
42
|
+
* "LicenseConfigurationSummaryReport" || "LicenseConfigurationUsageReport" || "LicenseAssetGroupUsageReport",
|
|
43
43
|
* ],
|
|
44
44
|
* ReportContext: { // ReportContext
|
|
45
|
-
* licenseConfigurationArns: [ // ArnList
|
|
45
|
+
* licenseConfigurationArns: [ // ArnList
|
|
46
46
|
* "STRING_VALUE",
|
|
47
47
|
* ],
|
|
48
|
+
* licenseAssetGroupArns: [
|
|
49
|
+
* "STRING_VALUE",
|
|
50
|
+
* ],
|
|
51
|
+
* reportStartDate: new Date("TIMESTAMP"),
|
|
52
|
+
* reportEndDate: new Date("TIMESTAMP"),
|
|
48
53
|
* },
|
|
49
54
|
* ReportFrequency: { // ReportFrequency
|
|
50
55
|
* value: Number("int"),
|
|
51
|
-
* period: "DAY" || "WEEK" || "MONTH",
|
|
56
|
+
* period: "DAY" || "WEEK" || "MONTH" || "ONE_TIME",
|
|
52
57
|
* },
|
|
53
58
|
* ClientToken: "STRING_VALUE", // required
|
|
54
59
|
* Description: "STRING_VALUE",
|