@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
|
@@ -1,7 +1,9 @@
|
|
|
1
|
-
import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
|
|
1
|
+
import { StaticErrorSchema, StaticListSchema, StaticMapSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
|
|
2
2
|
export declare var AcceptGrantRequest: StaticStructureSchema;
|
|
3
3
|
export declare var AcceptGrantResponse: StaticStructureSchema;
|
|
4
4
|
export declare var AccessDeniedException: StaticErrorSchema;
|
|
5
|
+
export declare var AndRuleStatement: StaticStructureSchema;
|
|
6
|
+
export declare var Asset: StaticStructureSchema;
|
|
5
7
|
export declare var AuthorizationException: StaticErrorSchema;
|
|
6
8
|
export declare var AutomatedDiscoveryInformation: StaticStructureSchema;
|
|
7
9
|
export declare var BorrowConfiguration: StaticStructureSchema;
|
|
@@ -18,6 +20,10 @@ export declare var CreateGrantRequest: StaticStructureSchema;
|
|
|
18
20
|
export declare var CreateGrantResponse: StaticStructureSchema;
|
|
19
21
|
export declare var CreateGrantVersionRequest: StaticStructureSchema;
|
|
20
22
|
export declare var CreateGrantVersionResponse: StaticStructureSchema;
|
|
23
|
+
export declare var CreateLicenseAssetGroupRequest: StaticStructureSchema;
|
|
24
|
+
export declare var CreateLicenseAssetGroupResponse: StaticStructureSchema;
|
|
25
|
+
export declare var CreateLicenseAssetRulesetRequest: StaticStructureSchema;
|
|
26
|
+
export declare var CreateLicenseAssetRulesetResponse: StaticStructureSchema;
|
|
21
27
|
export declare var CreateLicenseConfigurationRequest: StaticStructureSchema;
|
|
22
28
|
export declare var CreateLicenseConfigurationResponse: StaticStructureSchema;
|
|
23
29
|
export declare var CreateLicenseConversionTaskForResourceRequest: StaticStructureSchema;
|
|
@@ -30,9 +36,15 @@ export declare var CreateLicenseVersionRequest: StaticStructureSchema;
|
|
|
30
36
|
export declare var CreateLicenseVersionResponse: StaticStructureSchema;
|
|
31
37
|
export declare var CreateTokenRequest: StaticStructureSchema;
|
|
32
38
|
export declare var CreateTokenResponse: StaticStructureSchema;
|
|
39
|
+
export declare var CrossAccountDiscoveryServiceStatus: StaticStructureSchema;
|
|
40
|
+
export declare var CrossRegionDiscoveryStatus: StaticStructureSchema;
|
|
33
41
|
export declare var DatetimeRange: StaticStructureSchema;
|
|
34
42
|
export declare var DeleteGrantRequest: StaticStructureSchema;
|
|
35
43
|
export declare var DeleteGrantResponse: StaticStructureSchema;
|
|
44
|
+
export declare var DeleteLicenseAssetGroupRequest: StaticStructureSchema;
|
|
45
|
+
export declare var DeleteLicenseAssetGroupResponse: StaticStructureSchema;
|
|
46
|
+
export declare var DeleteLicenseAssetRulesetRequest: StaticStructureSchema;
|
|
47
|
+
export declare var DeleteLicenseAssetRulesetResponse: StaticStructureSchema;
|
|
36
48
|
export declare var DeleteLicenseConfigurationRequest: StaticStructureSchema;
|
|
37
49
|
export declare var DeleteLicenseConfigurationResponse: StaticStructureSchema;
|
|
38
50
|
export declare var DeleteLicenseManagerReportGeneratorRequest: StaticStructureSchema;
|
|
@@ -54,6 +66,10 @@ export declare var GetAccessTokenRequest: StaticStructureSchema;
|
|
|
54
66
|
export declare var GetAccessTokenResponse: StaticStructureSchema;
|
|
55
67
|
export declare var GetGrantRequest: StaticStructureSchema;
|
|
56
68
|
export declare var GetGrantResponse: StaticStructureSchema;
|
|
69
|
+
export declare var GetLicenseAssetGroupRequest: StaticStructureSchema;
|
|
70
|
+
export declare var GetLicenseAssetGroupResponse: StaticStructureSchema;
|
|
71
|
+
export declare var GetLicenseAssetRulesetRequest: StaticStructureSchema;
|
|
72
|
+
export declare var GetLicenseAssetRulesetResponse: StaticStructureSchema;
|
|
57
73
|
export declare var GetLicenseConfigurationRequest: StaticStructureSchema;
|
|
58
74
|
export declare var GetLicenseConfigurationResponse: StaticStructureSchema;
|
|
59
75
|
export declare var GetLicenseConversionTaskRequest: StaticStructureSchema;
|
|
@@ -68,27 +84,43 @@ export declare var GetServiceSettingsRequest: StaticStructureSchema;
|
|
|
68
84
|
export declare var GetServiceSettingsResponse: StaticStructureSchema;
|
|
69
85
|
export declare var Grant: StaticStructureSchema;
|
|
70
86
|
export declare var GrantedLicense: StaticStructureSchema;
|
|
87
|
+
export declare var InstanceRuleStatement: StaticStructureSchema;
|
|
71
88
|
export declare var InvalidParameterValueException: StaticErrorSchema;
|
|
72
89
|
export declare var InvalidResourceStateException: StaticErrorSchema;
|
|
73
90
|
export declare var InventoryFilter: StaticStructureSchema;
|
|
74
91
|
export declare var Issuer: StaticStructureSchema;
|
|
75
92
|
export declare var IssuerDetails: StaticStructureSchema;
|
|
76
93
|
export declare var License: StaticStructureSchema;
|
|
94
|
+
export declare var LicenseAssetGroup: StaticStructureSchema;
|
|
95
|
+
export declare var LicenseAssetGroupConfiguration: StaticStructureSchema;
|
|
96
|
+
export declare var LicenseAssetGroupProperty: StaticStructureSchema;
|
|
97
|
+
export declare var LicenseAssetRule: StaticStructureSchema;
|
|
98
|
+
export declare var LicenseAssetRuleset: StaticStructureSchema;
|
|
77
99
|
export declare var LicenseConfiguration: StaticStructureSchema;
|
|
78
100
|
export declare var LicenseConfigurationAssociation: StaticStructureSchema;
|
|
101
|
+
export declare var LicenseConfigurationRuleStatement: StaticStructureSchema;
|
|
79
102
|
export declare var LicenseConfigurationUsage: StaticStructureSchema;
|
|
80
103
|
export declare var LicenseConversionContext: StaticStructureSchema;
|
|
81
104
|
export declare var LicenseConversionTask: StaticStructureSchema;
|
|
82
105
|
export declare var LicenseOperationFailure: StaticStructureSchema;
|
|
106
|
+
export declare var LicenseRuleStatement: StaticStructureSchema;
|
|
83
107
|
export declare var LicenseSpecification: StaticStructureSchema;
|
|
84
108
|
export declare var LicenseUsage: StaticStructureSchema;
|
|
85
109
|
export declare var LicenseUsageException: StaticErrorSchema;
|
|
110
|
+
export declare var ListAssetsForLicenseAssetGroupRequest: StaticStructureSchema;
|
|
111
|
+
export declare var ListAssetsForLicenseAssetGroupResponse: StaticStructureSchema;
|
|
86
112
|
export declare var ListAssociationsForLicenseConfigurationRequest: StaticStructureSchema;
|
|
87
113
|
export declare var ListAssociationsForLicenseConfigurationResponse: StaticStructureSchema;
|
|
88
114
|
export declare var ListDistributedGrantsRequest: StaticStructureSchema;
|
|
89
115
|
export declare var ListDistributedGrantsResponse: StaticStructureSchema;
|
|
90
116
|
export declare var ListFailuresForLicenseConfigurationOperationsRequest: StaticStructureSchema;
|
|
91
117
|
export declare var ListFailuresForLicenseConfigurationOperationsResponse: StaticStructureSchema;
|
|
118
|
+
export declare var ListLicenseAssetGroupsRequest: StaticStructureSchema;
|
|
119
|
+
export declare var ListLicenseAssetGroupsResponse: StaticStructureSchema;
|
|
120
|
+
export declare var ListLicenseAssetRulesetsRequest: StaticStructureSchema;
|
|
121
|
+
export declare var ListLicenseAssetRulesetsResponse: StaticStructureSchema;
|
|
122
|
+
export declare var ListLicenseConfigurationsForOrganizationRequest: StaticStructureSchema;
|
|
123
|
+
export declare var ListLicenseConfigurationsForOrganizationResponse: StaticStructureSchema;
|
|
92
124
|
export declare var ListLicenseConfigurationsRequest: StaticStructureSchema;
|
|
93
125
|
export declare var ListLicenseConfigurationsResponse: StaticStructureSchema;
|
|
94
126
|
export declare var ListLicenseConversionTasksRequest: StaticStructureSchema;
|
|
@@ -118,10 +150,12 @@ export declare var ListTokensResponse: StaticStructureSchema;
|
|
|
118
150
|
export declare var ListUsageForLicenseConfigurationRequest: StaticStructureSchema;
|
|
119
151
|
export declare var ListUsageForLicenseConfigurationResponse: StaticStructureSchema;
|
|
120
152
|
export declare var ManagedResourceSummary: StaticStructureSchema;
|
|
153
|
+
export declare var MatchingRuleStatement: StaticStructureSchema;
|
|
121
154
|
export declare var Metadata: StaticStructureSchema;
|
|
122
155
|
export declare var NoEntitlementsAllowedException: StaticErrorSchema;
|
|
123
156
|
export declare var Options: StaticStructureSchema;
|
|
124
157
|
export declare var OrganizationConfiguration: StaticStructureSchema;
|
|
158
|
+
export declare var OrRuleStatement: StaticStructureSchema;
|
|
125
159
|
export declare var ProductCodeListItem: StaticStructureSchema;
|
|
126
160
|
export declare var ProductInformation: StaticStructureSchema;
|
|
127
161
|
export declare var ProductInformationFilter: StaticStructureSchema;
|
|
@@ -129,6 +163,7 @@ export declare var ProvisionalConfiguration: StaticStructureSchema;
|
|
|
129
163
|
export declare var RateLimitExceededException: StaticErrorSchema;
|
|
130
164
|
export declare var ReceivedMetadata: StaticStructureSchema;
|
|
131
165
|
export declare var RedirectException: StaticErrorSchema;
|
|
166
|
+
export declare var RegionStatus: StaticStructureSchema;
|
|
132
167
|
export declare var RejectGrantRequest: StaticStructureSchema;
|
|
133
168
|
export declare var RejectGrantResponse: StaticStructureSchema;
|
|
134
169
|
export declare var ReportContext: StaticStructureSchema;
|
|
@@ -137,8 +172,11 @@ export declare var ReportGenerator: StaticStructureSchema;
|
|
|
137
172
|
export declare var ResourceInventory: StaticStructureSchema;
|
|
138
173
|
export declare var ResourceLimitExceededException: StaticErrorSchema;
|
|
139
174
|
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
175
|
+
export declare var RuleStatement: StaticStructureSchema;
|
|
140
176
|
export declare var S3Location: StaticStructureSchema;
|
|
177
|
+
export declare var ScriptRuleStatement: StaticStructureSchema;
|
|
141
178
|
export declare var ServerInternalException: StaticErrorSchema;
|
|
179
|
+
export declare var ServiceStatus: StaticStructureSchema;
|
|
142
180
|
export declare var Tag: StaticStructureSchema;
|
|
143
181
|
export declare var TagResourceRequest: StaticStructureSchema;
|
|
144
182
|
export declare var TagResourceResponse: StaticStructureSchema;
|
|
@@ -146,6 +184,10 @@ export declare var TokenData: StaticStructureSchema;
|
|
|
146
184
|
export declare var UnsupportedDigitalSignatureMethodException: StaticErrorSchema;
|
|
147
185
|
export declare var UntagResourceRequest: StaticStructureSchema;
|
|
148
186
|
export declare var UntagResourceResponse: StaticStructureSchema;
|
|
187
|
+
export declare var UpdateLicenseAssetGroupRequest: StaticStructureSchema;
|
|
188
|
+
export declare var UpdateLicenseAssetGroupResponse: StaticStructureSchema;
|
|
189
|
+
export declare var UpdateLicenseAssetRulesetRequest: StaticStructureSchema;
|
|
190
|
+
export declare var UpdateLicenseAssetRulesetResponse: StaticStructureSchema;
|
|
149
191
|
export declare var UpdateLicenseConfigurationRequest: StaticStructureSchema;
|
|
150
192
|
export declare var UpdateLicenseConfigurationResponse: StaticStructureSchema;
|
|
151
193
|
export declare var UpdateLicenseManagerReportGeneratorRequest: StaticStructureSchema;
|
|
@@ -159,6 +201,7 @@ export declare var __Unit: "unit";
|
|
|
159
201
|
export declare var LicenseManagerServiceException: StaticErrorSchema;
|
|
160
202
|
export declare var AllowedOperationList: number;
|
|
161
203
|
export declare var ArnList: number;
|
|
204
|
+
export declare var AssetList: StaticListSchema;
|
|
162
205
|
export declare var ConsumedLicenseSummaryList: StaticListSchema;
|
|
163
206
|
export declare var EntitlementDataList: StaticListSchema;
|
|
164
207
|
export declare var EntitlementList: StaticListSchema;
|
|
@@ -169,6 +212,12 @@ export declare var FilterValues: StaticListSchema;
|
|
|
169
212
|
export declare var GrantedLicenseList: StaticListSchema;
|
|
170
213
|
export declare var GrantList: StaticListSchema;
|
|
171
214
|
export declare var InventoryFilterList: StaticListSchema;
|
|
215
|
+
export declare var LicenseAssetGroupConfigurationList: StaticListSchema;
|
|
216
|
+
export declare var LicenseAssetGroupList: StaticListSchema;
|
|
217
|
+
export declare var LicenseAssetGroupPropertyList: StaticListSchema;
|
|
218
|
+
export declare var LicenseAssetRuleList: StaticListSchema;
|
|
219
|
+
export declare var LicenseAssetRulesetArnList: number;
|
|
220
|
+
export declare var LicenseAssetRulesetList: StaticListSchema;
|
|
172
221
|
export declare var LicenseConfigurationAssociations: StaticListSchema;
|
|
173
222
|
export declare var LicenseConfigurations: StaticListSchema;
|
|
174
223
|
export declare var LicenseConfigurationUsageList: StaticListSchema;
|
|
@@ -177,6 +226,7 @@ export declare var LicenseList: StaticListSchema;
|
|
|
177
226
|
export declare var LicenseOperationFailureList: StaticListSchema;
|
|
178
227
|
export declare var LicenseSpecifications: StaticListSchema;
|
|
179
228
|
export declare var ManagedResourceSummaryList: StaticListSchema;
|
|
229
|
+
export declare var MatchingRuleStatementList: StaticListSchema;
|
|
180
230
|
export declare var MaxSize3StringList: number;
|
|
181
231
|
export declare var MetadataList: StaticListSchema;
|
|
182
232
|
export declare var PrincipalArnList: number;
|
|
@@ -186,10 +236,12 @@ export declare var ProductInformationList: StaticListSchema;
|
|
|
186
236
|
export declare var ReportGeneratorList: StaticListSchema;
|
|
187
237
|
export declare var ReportTypeList: number;
|
|
188
238
|
export declare var ResourceInventoryList: StaticListSchema;
|
|
239
|
+
export declare var ScriptRuleStatementList: StaticListSchema;
|
|
189
240
|
export declare var StringList: number;
|
|
190
241
|
export declare var TagKeyList: number;
|
|
191
242
|
export declare var TagList: StaticListSchema;
|
|
192
243
|
export declare var TokenList: StaticListSchema;
|
|
244
|
+
export declare var RegionStatusMap: StaticMapSchema;
|
|
193
245
|
export declare var AcceptGrant: StaticOperationSchema;
|
|
194
246
|
export declare var CheckInLicense: StaticOperationSchema;
|
|
195
247
|
export declare var CheckoutBorrowLicense: StaticOperationSchema;
|
|
@@ -197,6 +249,8 @@ export declare var CheckoutLicense: StaticOperationSchema;
|
|
|
197
249
|
export declare var CreateGrant: StaticOperationSchema;
|
|
198
250
|
export declare var CreateGrantVersion: StaticOperationSchema;
|
|
199
251
|
export declare var CreateLicense: StaticOperationSchema;
|
|
252
|
+
export declare var CreateLicenseAssetGroup: StaticOperationSchema;
|
|
253
|
+
export declare var CreateLicenseAssetRuleset: StaticOperationSchema;
|
|
200
254
|
export declare var CreateLicenseConfiguration: StaticOperationSchema;
|
|
201
255
|
export declare var CreateLicenseConversionTaskForResource: StaticOperationSchema;
|
|
202
256
|
export declare var CreateLicenseManagerReportGenerator: StaticOperationSchema;
|
|
@@ -204,6 +258,8 @@ export declare var CreateLicenseVersion: StaticOperationSchema;
|
|
|
204
258
|
export declare var CreateToken: StaticOperationSchema;
|
|
205
259
|
export declare var DeleteGrant: StaticOperationSchema;
|
|
206
260
|
export declare var DeleteLicense: StaticOperationSchema;
|
|
261
|
+
export declare var DeleteLicenseAssetGroup: StaticOperationSchema;
|
|
262
|
+
export declare var DeleteLicenseAssetRuleset: StaticOperationSchema;
|
|
207
263
|
export declare var DeleteLicenseConfiguration: StaticOperationSchema;
|
|
208
264
|
export declare var DeleteLicenseManagerReportGenerator: StaticOperationSchema;
|
|
209
265
|
export declare var DeleteToken: StaticOperationSchema;
|
|
@@ -211,15 +267,21 @@ export declare var ExtendLicenseConsumption: StaticOperationSchema;
|
|
|
211
267
|
export declare var GetAccessToken: StaticOperationSchema;
|
|
212
268
|
export declare var GetGrant: StaticOperationSchema;
|
|
213
269
|
export declare var GetLicense: StaticOperationSchema;
|
|
270
|
+
export declare var GetLicenseAssetGroup: StaticOperationSchema;
|
|
271
|
+
export declare var GetLicenseAssetRuleset: StaticOperationSchema;
|
|
214
272
|
export declare var GetLicenseConfiguration: StaticOperationSchema;
|
|
215
273
|
export declare var GetLicenseConversionTask: StaticOperationSchema;
|
|
216
274
|
export declare var GetLicenseManagerReportGenerator: StaticOperationSchema;
|
|
217
275
|
export declare var GetLicenseUsage: StaticOperationSchema;
|
|
218
276
|
export declare var GetServiceSettings: StaticOperationSchema;
|
|
277
|
+
export declare var ListAssetsForLicenseAssetGroup: StaticOperationSchema;
|
|
219
278
|
export declare var ListAssociationsForLicenseConfiguration: StaticOperationSchema;
|
|
220
279
|
export declare var ListDistributedGrants: StaticOperationSchema;
|
|
221
280
|
export declare var ListFailuresForLicenseConfigurationOperations: StaticOperationSchema;
|
|
281
|
+
export declare var ListLicenseAssetGroups: StaticOperationSchema;
|
|
282
|
+
export declare var ListLicenseAssetRulesets: StaticOperationSchema;
|
|
222
283
|
export declare var ListLicenseConfigurations: StaticOperationSchema;
|
|
284
|
+
export declare var ListLicenseConfigurationsForOrganization: StaticOperationSchema;
|
|
223
285
|
export declare var ListLicenseConversionTasks: StaticOperationSchema;
|
|
224
286
|
export declare var ListLicenseManagerReportGenerators: StaticOperationSchema;
|
|
225
287
|
export declare var ListLicenses: StaticOperationSchema;
|
|
@@ -236,6 +298,8 @@ export declare var ListUsageForLicenseConfiguration: StaticOperationSchema;
|
|
|
236
298
|
export declare var RejectGrant: StaticOperationSchema;
|
|
237
299
|
export declare var TagResource: StaticOperationSchema;
|
|
238
300
|
export declare var UntagResource: StaticOperationSchema;
|
|
301
|
+
export declare var UpdateLicenseAssetGroup: StaticOperationSchema;
|
|
302
|
+
export declare var UpdateLicenseAssetRuleset: StaticOperationSchema;
|
|
239
303
|
export declare var UpdateLicenseConfiguration: StaticOperationSchema;
|
|
240
304
|
export declare var UpdateLicenseManagerReportGenerator: StaticOperationSchema;
|
|
241
305
|
export declare var UpdateLicenseSpecificationsForResource: StaticOperationSchema;
|
|
@@ -23,6 +23,14 @@ import {
|
|
|
23
23
|
CreateGrantVersionCommandInput,
|
|
24
24
|
CreateGrantVersionCommandOutput,
|
|
25
25
|
} from "./commands/CreateGrantVersionCommand";
|
|
26
|
+
import {
|
|
27
|
+
CreateLicenseAssetGroupCommandInput,
|
|
28
|
+
CreateLicenseAssetGroupCommandOutput,
|
|
29
|
+
} from "./commands/CreateLicenseAssetGroupCommand";
|
|
30
|
+
import {
|
|
31
|
+
CreateLicenseAssetRulesetCommandInput,
|
|
32
|
+
CreateLicenseAssetRulesetCommandOutput,
|
|
33
|
+
} from "./commands/CreateLicenseAssetRulesetCommand";
|
|
26
34
|
import {
|
|
27
35
|
CreateLicenseCommandInput,
|
|
28
36
|
CreateLicenseCommandOutput,
|
|
@@ -51,6 +59,14 @@ import {
|
|
|
51
59
|
DeleteGrantCommandInput,
|
|
52
60
|
DeleteGrantCommandOutput,
|
|
53
61
|
} from "./commands/DeleteGrantCommand";
|
|
62
|
+
import {
|
|
63
|
+
DeleteLicenseAssetGroupCommandInput,
|
|
64
|
+
DeleteLicenseAssetGroupCommandOutput,
|
|
65
|
+
} from "./commands/DeleteLicenseAssetGroupCommand";
|
|
66
|
+
import {
|
|
67
|
+
DeleteLicenseAssetRulesetCommandInput,
|
|
68
|
+
DeleteLicenseAssetRulesetCommandOutput,
|
|
69
|
+
} from "./commands/DeleteLicenseAssetRulesetCommand";
|
|
54
70
|
import {
|
|
55
71
|
DeleteLicenseCommandInput,
|
|
56
72
|
DeleteLicenseCommandOutput,
|
|
@@ -79,6 +95,14 @@ import {
|
|
|
79
95
|
GetGrantCommandInput,
|
|
80
96
|
GetGrantCommandOutput,
|
|
81
97
|
} from "./commands/GetGrantCommand";
|
|
98
|
+
import {
|
|
99
|
+
GetLicenseAssetGroupCommandInput,
|
|
100
|
+
GetLicenseAssetGroupCommandOutput,
|
|
101
|
+
} from "./commands/GetLicenseAssetGroupCommand";
|
|
102
|
+
import {
|
|
103
|
+
GetLicenseAssetRulesetCommandInput,
|
|
104
|
+
GetLicenseAssetRulesetCommandOutput,
|
|
105
|
+
} from "./commands/GetLicenseAssetRulesetCommand";
|
|
82
106
|
import {
|
|
83
107
|
GetLicenseCommandInput,
|
|
84
108
|
GetLicenseCommandOutput,
|
|
@@ -103,6 +127,10 @@ import {
|
|
|
103
127
|
GetServiceSettingsCommandInput,
|
|
104
128
|
GetServiceSettingsCommandOutput,
|
|
105
129
|
} from "./commands/GetServiceSettingsCommand";
|
|
130
|
+
import {
|
|
131
|
+
ListAssetsForLicenseAssetGroupCommandInput,
|
|
132
|
+
ListAssetsForLicenseAssetGroupCommandOutput,
|
|
133
|
+
} from "./commands/ListAssetsForLicenseAssetGroupCommand";
|
|
106
134
|
import {
|
|
107
135
|
ListAssociationsForLicenseConfigurationCommandInput,
|
|
108
136
|
ListAssociationsForLicenseConfigurationCommandOutput,
|
|
@@ -115,10 +143,22 @@ import {
|
|
|
115
143
|
ListFailuresForLicenseConfigurationOperationsCommandInput,
|
|
116
144
|
ListFailuresForLicenseConfigurationOperationsCommandOutput,
|
|
117
145
|
} from "./commands/ListFailuresForLicenseConfigurationOperationsCommand";
|
|
146
|
+
import {
|
|
147
|
+
ListLicenseAssetGroupsCommandInput,
|
|
148
|
+
ListLicenseAssetGroupsCommandOutput,
|
|
149
|
+
} from "./commands/ListLicenseAssetGroupsCommand";
|
|
150
|
+
import {
|
|
151
|
+
ListLicenseAssetRulesetsCommandInput,
|
|
152
|
+
ListLicenseAssetRulesetsCommandOutput,
|
|
153
|
+
} from "./commands/ListLicenseAssetRulesetsCommand";
|
|
118
154
|
import {
|
|
119
155
|
ListLicenseConfigurationsCommandInput,
|
|
120
156
|
ListLicenseConfigurationsCommandOutput,
|
|
121
157
|
} from "./commands/ListLicenseConfigurationsCommand";
|
|
158
|
+
import {
|
|
159
|
+
ListLicenseConfigurationsForOrganizationCommandInput,
|
|
160
|
+
ListLicenseConfigurationsForOrganizationCommandOutput,
|
|
161
|
+
} from "./commands/ListLicenseConfigurationsForOrganizationCommand";
|
|
122
162
|
import {
|
|
123
163
|
ListLicenseConversionTasksCommandInput,
|
|
124
164
|
ListLicenseConversionTasksCommandOutput,
|
|
@@ -183,6 +223,14 @@ import {
|
|
|
183
223
|
UntagResourceCommandInput,
|
|
184
224
|
UntagResourceCommandOutput,
|
|
185
225
|
} from "./commands/UntagResourceCommand";
|
|
226
|
+
import {
|
|
227
|
+
UpdateLicenseAssetGroupCommandInput,
|
|
228
|
+
UpdateLicenseAssetGroupCommandOutput,
|
|
229
|
+
} from "./commands/UpdateLicenseAssetGroupCommand";
|
|
230
|
+
import {
|
|
231
|
+
UpdateLicenseAssetRulesetCommandInput,
|
|
232
|
+
UpdateLicenseAssetRulesetCommandOutput,
|
|
233
|
+
} from "./commands/UpdateLicenseAssetRulesetCommand";
|
|
186
234
|
import {
|
|
187
235
|
UpdateLicenseConfigurationCommandInput,
|
|
188
236
|
UpdateLicenseConfigurationCommandOutput,
|
|
@@ -292,6 +340,32 @@ export interface LicenseManager {
|
|
|
292
340
|
options: __HttpHandlerOptions,
|
|
293
341
|
cb: (err: any, data?: CreateLicenseCommandOutput) => void
|
|
294
342
|
): void;
|
|
343
|
+
createLicenseAssetGroup(
|
|
344
|
+
args: CreateLicenseAssetGroupCommandInput,
|
|
345
|
+
options?: __HttpHandlerOptions
|
|
346
|
+
): Promise<CreateLicenseAssetGroupCommandOutput>;
|
|
347
|
+
createLicenseAssetGroup(
|
|
348
|
+
args: CreateLicenseAssetGroupCommandInput,
|
|
349
|
+
cb: (err: any, data?: CreateLicenseAssetGroupCommandOutput) => void
|
|
350
|
+
): void;
|
|
351
|
+
createLicenseAssetGroup(
|
|
352
|
+
args: CreateLicenseAssetGroupCommandInput,
|
|
353
|
+
options: __HttpHandlerOptions,
|
|
354
|
+
cb: (err: any, data?: CreateLicenseAssetGroupCommandOutput) => void
|
|
355
|
+
): void;
|
|
356
|
+
createLicenseAssetRuleset(
|
|
357
|
+
args: CreateLicenseAssetRulesetCommandInput,
|
|
358
|
+
options?: __HttpHandlerOptions
|
|
359
|
+
): Promise<CreateLicenseAssetRulesetCommandOutput>;
|
|
360
|
+
createLicenseAssetRuleset(
|
|
361
|
+
args: CreateLicenseAssetRulesetCommandInput,
|
|
362
|
+
cb: (err: any, data?: CreateLicenseAssetRulesetCommandOutput) => void
|
|
363
|
+
): void;
|
|
364
|
+
createLicenseAssetRuleset(
|
|
365
|
+
args: CreateLicenseAssetRulesetCommandInput,
|
|
366
|
+
options: __HttpHandlerOptions,
|
|
367
|
+
cb: (err: any, data?: CreateLicenseAssetRulesetCommandOutput) => void
|
|
368
|
+
): void;
|
|
295
369
|
createLicenseConfiguration(
|
|
296
370
|
args: CreateLicenseConfigurationCommandInput,
|
|
297
371
|
options?: __HttpHandlerOptions
|
|
@@ -395,6 +469,32 @@ export interface LicenseManager {
|
|
|
395
469
|
options: __HttpHandlerOptions,
|
|
396
470
|
cb: (err: any, data?: DeleteLicenseCommandOutput) => void
|
|
397
471
|
): void;
|
|
472
|
+
deleteLicenseAssetGroup(
|
|
473
|
+
args: DeleteLicenseAssetGroupCommandInput,
|
|
474
|
+
options?: __HttpHandlerOptions
|
|
475
|
+
): Promise<DeleteLicenseAssetGroupCommandOutput>;
|
|
476
|
+
deleteLicenseAssetGroup(
|
|
477
|
+
args: DeleteLicenseAssetGroupCommandInput,
|
|
478
|
+
cb: (err: any, data?: DeleteLicenseAssetGroupCommandOutput) => void
|
|
479
|
+
): void;
|
|
480
|
+
deleteLicenseAssetGroup(
|
|
481
|
+
args: DeleteLicenseAssetGroupCommandInput,
|
|
482
|
+
options: __HttpHandlerOptions,
|
|
483
|
+
cb: (err: any, data?: DeleteLicenseAssetGroupCommandOutput) => void
|
|
484
|
+
): void;
|
|
485
|
+
deleteLicenseAssetRuleset(
|
|
486
|
+
args: DeleteLicenseAssetRulesetCommandInput,
|
|
487
|
+
options?: __HttpHandlerOptions
|
|
488
|
+
): Promise<DeleteLicenseAssetRulesetCommandOutput>;
|
|
489
|
+
deleteLicenseAssetRuleset(
|
|
490
|
+
args: DeleteLicenseAssetRulesetCommandInput,
|
|
491
|
+
cb: (err: any, data?: DeleteLicenseAssetRulesetCommandOutput) => void
|
|
492
|
+
): void;
|
|
493
|
+
deleteLicenseAssetRuleset(
|
|
494
|
+
args: DeleteLicenseAssetRulesetCommandInput,
|
|
495
|
+
options: __HttpHandlerOptions,
|
|
496
|
+
cb: (err: any, data?: DeleteLicenseAssetRulesetCommandOutput) => void
|
|
497
|
+
): void;
|
|
398
498
|
deleteLicenseConfiguration(
|
|
399
499
|
args: DeleteLicenseConfigurationCommandInput,
|
|
400
500
|
options?: __HttpHandlerOptions
|
|
@@ -492,6 +592,32 @@ export interface LicenseManager {
|
|
|
492
592
|
options: __HttpHandlerOptions,
|
|
493
593
|
cb: (err: any, data?: GetLicenseCommandOutput) => void
|
|
494
594
|
): void;
|
|
595
|
+
getLicenseAssetGroup(
|
|
596
|
+
args: GetLicenseAssetGroupCommandInput,
|
|
597
|
+
options?: __HttpHandlerOptions
|
|
598
|
+
): Promise<GetLicenseAssetGroupCommandOutput>;
|
|
599
|
+
getLicenseAssetGroup(
|
|
600
|
+
args: GetLicenseAssetGroupCommandInput,
|
|
601
|
+
cb: (err: any, data?: GetLicenseAssetGroupCommandOutput) => void
|
|
602
|
+
): void;
|
|
603
|
+
getLicenseAssetGroup(
|
|
604
|
+
args: GetLicenseAssetGroupCommandInput,
|
|
605
|
+
options: __HttpHandlerOptions,
|
|
606
|
+
cb: (err: any, data?: GetLicenseAssetGroupCommandOutput) => void
|
|
607
|
+
): void;
|
|
608
|
+
getLicenseAssetRuleset(
|
|
609
|
+
args: GetLicenseAssetRulesetCommandInput,
|
|
610
|
+
options?: __HttpHandlerOptions
|
|
611
|
+
): Promise<GetLicenseAssetRulesetCommandOutput>;
|
|
612
|
+
getLicenseAssetRuleset(
|
|
613
|
+
args: GetLicenseAssetRulesetCommandInput,
|
|
614
|
+
cb: (err: any, data?: GetLicenseAssetRulesetCommandOutput) => void
|
|
615
|
+
): void;
|
|
616
|
+
getLicenseAssetRuleset(
|
|
617
|
+
args: GetLicenseAssetRulesetCommandInput,
|
|
618
|
+
options: __HttpHandlerOptions,
|
|
619
|
+
cb: (err: any, data?: GetLicenseAssetRulesetCommandOutput) => void
|
|
620
|
+
): void;
|
|
495
621
|
getLicenseConfiguration(
|
|
496
622
|
args: GetLicenseConfigurationCommandInput,
|
|
497
623
|
options?: __HttpHandlerOptions
|
|
@@ -558,6 +684,19 @@ export interface LicenseManager {
|
|
|
558
684
|
options: __HttpHandlerOptions,
|
|
559
685
|
cb: (err: any, data?: GetServiceSettingsCommandOutput) => void
|
|
560
686
|
): void;
|
|
687
|
+
listAssetsForLicenseAssetGroup(
|
|
688
|
+
args: ListAssetsForLicenseAssetGroupCommandInput,
|
|
689
|
+
options?: __HttpHandlerOptions
|
|
690
|
+
): Promise<ListAssetsForLicenseAssetGroupCommandOutput>;
|
|
691
|
+
listAssetsForLicenseAssetGroup(
|
|
692
|
+
args: ListAssetsForLicenseAssetGroupCommandInput,
|
|
693
|
+
cb: (err: any, data?: ListAssetsForLicenseAssetGroupCommandOutput) => void
|
|
694
|
+
): void;
|
|
695
|
+
listAssetsForLicenseAssetGroup(
|
|
696
|
+
args: ListAssetsForLicenseAssetGroupCommandInput,
|
|
697
|
+
options: __HttpHandlerOptions,
|
|
698
|
+
cb: (err: any, data?: ListAssetsForLicenseAssetGroupCommandOutput) => void
|
|
699
|
+
): void;
|
|
561
700
|
listAssociationsForLicenseConfiguration(
|
|
562
701
|
args: ListAssociationsForLicenseConfigurationCommandInput,
|
|
563
702
|
options?: __HttpHandlerOptions
|
|
@@ -610,6 +749,34 @@ export interface LicenseManager {
|
|
|
610
749
|
data?: ListFailuresForLicenseConfigurationOperationsCommandOutput
|
|
611
750
|
) => void
|
|
612
751
|
): void;
|
|
752
|
+
listLicenseAssetGroups(): Promise<ListLicenseAssetGroupsCommandOutput>;
|
|
753
|
+
listLicenseAssetGroups(
|
|
754
|
+
args: ListLicenseAssetGroupsCommandInput,
|
|
755
|
+
options?: __HttpHandlerOptions
|
|
756
|
+
): Promise<ListLicenseAssetGroupsCommandOutput>;
|
|
757
|
+
listLicenseAssetGroups(
|
|
758
|
+
args: ListLicenseAssetGroupsCommandInput,
|
|
759
|
+
cb: (err: any, data?: ListLicenseAssetGroupsCommandOutput) => void
|
|
760
|
+
): void;
|
|
761
|
+
listLicenseAssetGroups(
|
|
762
|
+
args: ListLicenseAssetGroupsCommandInput,
|
|
763
|
+
options: __HttpHandlerOptions,
|
|
764
|
+
cb: (err: any, data?: ListLicenseAssetGroupsCommandOutput) => void
|
|
765
|
+
): void;
|
|
766
|
+
listLicenseAssetRulesets(): Promise<ListLicenseAssetRulesetsCommandOutput>;
|
|
767
|
+
listLicenseAssetRulesets(
|
|
768
|
+
args: ListLicenseAssetRulesetsCommandInput,
|
|
769
|
+
options?: __HttpHandlerOptions
|
|
770
|
+
): Promise<ListLicenseAssetRulesetsCommandOutput>;
|
|
771
|
+
listLicenseAssetRulesets(
|
|
772
|
+
args: ListLicenseAssetRulesetsCommandInput,
|
|
773
|
+
cb: (err: any, data?: ListLicenseAssetRulesetsCommandOutput) => void
|
|
774
|
+
): void;
|
|
775
|
+
listLicenseAssetRulesets(
|
|
776
|
+
args: ListLicenseAssetRulesetsCommandInput,
|
|
777
|
+
options: __HttpHandlerOptions,
|
|
778
|
+
cb: (err: any, data?: ListLicenseAssetRulesetsCommandOutput) => void
|
|
779
|
+
): void;
|
|
613
780
|
listLicenseConfigurations(): Promise<ListLicenseConfigurationsCommandOutput>;
|
|
614
781
|
listLicenseConfigurations(
|
|
615
782
|
args: ListLicenseConfigurationsCommandInput,
|
|
@@ -624,6 +791,26 @@ export interface LicenseManager {
|
|
|
624
791
|
options: __HttpHandlerOptions,
|
|
625
792
|
cb: (err: any, data?: ListLicenseConfigurationsCommandOutput) => void
|
|
626
793
|
): void;
|
|
794
|
+
listLicenseConfigurationsForOrganization(): Promise<ListLicenseConfigurationsForOrganizationCommandOutput>;
|
|
795
|
+
listLicenseConfigurationsForOrganization(
|
|
796
|
+
args: ListLicenseConfigurationsForOrganizationCommandInput,
|
|
797
|
+
options?: __HttpHandlerOptions
|
|
798
|
+
): Promise<ListLicenseConfigurationsForOrganizationCommandOutput>;
|
|
799
|
+
listLicenseConfigurationsForOrganization(
|
|
800
|
+
args: ListLicenseConfigurationsForOrganizationCommandInput,
|
|
801
|
+
cb: (
|
|
802
|
+
err: any,
|
|
803
|
+
data?: ListLicenseConfigurationsForOrganizationCommandOutput
|
|
804
|
+
) => void
|
|
805
|
+
): void;
|
|
806
|
+
listLicenseConfigurationsForOrganization(
|
|
807
|
+
args: ListLicenseConfigurationsForOrganizationCommandInput,
|
|
808
|
+
options: __HttpHandlerOptions,
|
|
809
|
+
cb: (
|
|
810
|
+
err: any,
|
|
811
|
+
data?: ListLicenseConfigurationsForOrganizationCommandOutput
|
|
812
|
+
) => void
|
|
813
|
+
): void;
|
|
627
814
|
listLicenseConversionTasks(): Promise<ListLicenseConversionTasksCommandOutput>;
|
|
628
815
|
listLicenseConversionTasks(
|
|
629
816
|
args: ListLicenseConversionTasksCommandInput,
|
|
@@ -864,6 +1051,32 @@ export interface LicenseManager {
|
|
|
864
1051
|
options: __HttpHandlerOptions,
|
|
865
1052
|
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
866
1053
|
): void;
|
|
1054
|
+
updateLicenseAssetGroup(
|
|
1055
|
+
args: UpdateLicenseAssetGroupCommandInput,
|
|
1056
|
+
options?: __HttpHandlerOptions
|
|
1057
|
+
): Promise<UpdateLicenseAssetGroupCommandOutput>;
|
|
1058
|
+
updateLicenseAssetGroup(
|
|
1059
|
+
args: UpdateLicenseAssetGroupCommandInput,
|
|
1060
|
+
cb: (err: any, data?: UpdateLicenseAssetGroupCommandOutput) => void
|
|
1061
|
+
): void;
|
|
1062
|
+
updateLicenseAssetGroup(
|
|
1063
|
+
args: UpdateLicenseAssetGroupCommandInput,
|
|
1064
|
+
options: __HttpHandlerOptions,
|
|
1065
|
+
cb: (err: any, data?: UpdateLicenseAssetGroupCommandOutput) => void
|
|
1066
|
+
): void;
|
|
1067
|
+
updateLicenseAssetRuleset(
|
|
1068
|
+
args: UpdateLicenseAssetRulesetCommandInput,
|
|
1069
|
+
options?: __HttpHandlerOptions
|
|
1070
|
+
): Promise<UpdateLicenseAssetRulesetCommandOutput>;
|
|
1071
|
+
updateLicenseAssetRuleset(
|
|
1072
|
+
args: UpdateLicenseAssetRulesetCommandInput,
|
|
1073
|
+
cb: (err: any, data?: UpdateLicenseAssetRulesetCommandOutput) => void
|
|
1074
|
+
): void;
|
|
1075
|
+
updateLicenseAssetRuleset(
|
|
1076
|
+
args: UpdateLicenseAssetRulesetCommandInput,
|
|
1077
|
+
options: __HttpHandlerOptions,
|
|
1078
|
+
cb: (err: any, data?: UpdateLicenseAssetRulesetCommandOutput) => void
|
|
1079
|
+
): void;
|
|
867
1080
|
updateLicenseConfiguration(
|
|
868
1081
|
args: UpdateLicenseConfigurationCommandInput,
|
|
869
1082
|
options?: __HttpHandlerOptions
|