@aws-sdk/client-license-manager 3.296.0 → 3.297.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.
Files changed (55) hide show
  1. package/dist-types/LicenseManager.d.ts +51 -0
  2. package/dist-types/LicenseManagerClient.d.ts +24 -4
  3. package/dist-types/commands/AcceptGrantCommand.d.ts +16 -0
  4. package/dist-types/commands/CheckInLicenseCommand.d.ts +16 -0
  5. package/dist-types/commands/CheckoutBorrowLicenseCommand.d.ts +16 -0
  6. package/dist-types/commands/CheckoutLicenseCommand.d.ts +16 -0
  7. package/dist-types/commands/CreateGrantCommand.d.ts +16 -0
  8. package/dist-types/commands/CreateGrantVersionCommand.d.ts +16 -0
  9. package/dist-types/commands/CreateLicenseCommand.d.ts +16 -0
  10. package/dist-types/commands/CreateLicenseConfigurationCommand.d.ts +16 -0
  11. package/dist-types/commands/CreateLicenseConversionTaskForResourceCommand.d.ts +16 -0
  12. package/dist-types/commands/CreateLicenseManagerReportGeneratorCommand.d.ts +16 -0
  13. package/dist-types/commands/CreateLicenseVersionCommand.d.ts +16 -0
  14. package/dist-types/commands/CreateTokenCommand.d.ts +16 -0
  15. package/dist-types/commands/DeleteGrantCommand.d.ts +16 -0
  16. package/dist-types/commands/DeleteLicenseCommand.d.ts +16 -0
  17. package/dist-types/commands/DeleteLicenseConfigurationCommand.d.ts +16 -0
  18. package/dist-types/commands/DeleteLicenseManagerReportGeneratorCommand.d.ts +16 -0
  19. package/dist-types/commands/DeleteTokenCommand.d.ts +16 -0
  20. package/dist-types/commands/ExtendLicenseConsumptionCommand.d.ts +16 -0
  21. package/dist-types/commands/GetAccessTokenCommand.d.ts +16 -0
  22. package/dist-types/commands/GetGrantCommand.d.ts +16 -0
  23. package/dist-types/commands/GetLicenseCommand.d.ts +16 -0
  24. package/dist-types/commands/GetLicenseConfigurationCommand.d.ts +16 -0
  25. package/dist-types/commands/GetLicenseConversionTaskCommand.d.ts +16 -0
  26. package/dist-types/commands/GetLicenseManagerReportGeneratorCommand.d.ts +16 -0
  27. package/dist-types/commands/GetLicenseUsageCommand.d.ts +16 -0
  28. package/dist-types/commands/GetServiceSettingsCommand.d.ts +16 -0
  29. package/dist-types/commands/ListAssociationsForLicenseConfigurationCommand.d.ts +16 -0
  30. package/dist-types/commands/ListDistributedGrantsCommand.d.ts +16 -0
  31. package/dist-types/commands/ListFailuresForLicenseConfigurationOperationsCommand.d.ts +16 -0
  32. package/dist-types/commands/ListLicenseConfigurationsCommand.d.ts +16 -0
  33. package/dist-types/commands/ListLicenseConversionTasksCommand.d.ts +16 -0
  34. package/dist-types/commands/ListLicenseManagerReportGeneratorsCommand.d.ts +16 -0
  35. package/dist-types/commands/ListLicenseSpecificationsForResourceCommand.d.ts +16 -0
  36. package/dist-types/commands/ListLicenseVersionsCommand.d.ts +16 -0
  37. package/dist-types/commands/ListLicensesCommand.d.ts +16 -0
  38. package/dist-types/commands/ListReceivedGrantsCommand.d.ts +16 -0
  39. package/dist-types/commands/ListReceivedGrantsForOrganizationCommand.d.ts +16 -0
  40. package/dist-types/commands/ListReceivedLicensesCommand.d.ts +16 -0
  41. package/dist-types/commands/ListReceivedLicensesForOrganizationCommand.d.ts +16 -0
  42. package/dist-types/commands/ListResourceInventoryCommand.d.ts +16 -0
  43. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  44. package/dist-types/commands/ListTokensCommand.d.ts +16 -0
  45. package/dist-types/commands/ListUsageForLicenseConfigurationCommand.d.ts +16 -0
  46. package/dist-types/commands/RejectGrantCommand.d.ts +16 -0
  47. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  48. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  49. package/dist-types/commands/UpdateLicenseConfigurationCommand.d.ts +16 -0
  50. package/dist-types/commands/UpdateLicenseManagerReportGeneratorCommand.d.ts +16 -0
  51. package/dist-types/commands/UpdateLicenseSpecificationsForResourceCommand.d.ts +16 -0
  52. package/dist-types/commands/UpdateServiceSettingsCommand.d.ts +16 -0
  53. package/dist-types/models/LicenseManagerServiceException.d.ts +2 -0
  54. package/dist-types/models/models_0.d.ts +408 -0
  55. package/package.json +3 -3
@@ -51,29 +51,34 @@ import { UpdateLicenseSpecificationsForResourceCommandInput, UpdateLicenseSpecif
51
51
  import { UpdateServiceSettingsCommandInput, UpdateServiceSettingsCommandOutput } from "./commands/UpdateServiceSettingsCommand";
52
52
  import { LicenseManagerClient } from "./LicenseManagerClient";
53
53
  /**
54
+ * @public
54
55
  * <p>License Manager makes it easier to manage licenses from software vendors across multiple
55
56
  * Amazon Web Services accounts and on-premises servers.</p>
56
57
  */
57
58
  export declare class LicenseManager extends LicenseManagerClient {
58
59
  /**
60
+ * @public
59
61
  * <p>Accepts the specified grant.</p>
60
62
  */
61
63
  acceptGrant(args: AcceptGrantCommandInput, options?: __HttpHandlerOptions): Promise<AcceptGrantCommandOutput>;
62
64
  acceptGrant(args: AcceptGrantCommandInput, cb: (err: any, data?: AcceptGrantCommandOutput) => void): void;
63
65
  acceptGrant(args: AcceptGrantCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AcceptGrantCommandOutput) => void): void;
64
66
  /**
67
+ * @public
65
68
  * <p>Checks in the specified license. Check in a license when it is no longer in use.</p>
66
69
  */
67
70
  checkInLicense(args: CheckInLicenseCommandInput, options?: __HttpHandlerOptions): Promise<CheckInLicenseCommandOutput>;
68
71
  checkInLicense(args: CheckInLicenseCommandInput, cb: (err: any, data?: CheckInLicenseCommandOutput) => void): void;
69
72
  checkInLicense(args: CheckInLicenseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CheckInLicenseCommandOutput) => void): void;
70
73
  /**
74
+ * @public
71
75
  * <p>Checks out the specified license for offline use.</p>
72
76
  */
73
77
  checkoutBorrowLicense(args: CheckoutBorrowLicenseCommandInput, options?: __HttpHandlerOptions): Promise<CheckoutBorrowLicenseCommandOutput>;
74
78
  checkoutBorrowLicense(args: CheckoutBorrowLicenseCommandInput, cb: (err: any, data?: CheckoutBorrowLicenseCommandOutput) => void): void;
75
79
  checkoutBorrowLicense(args: CheckoutBorrowLicenseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CheckoutBorrowLicenseCommandOutput) => void): void;
76
80
  /**
81
+ * @public
77
82
  * <p>Checks out the specified license.</p>
78
83
  * <note>
79
84
  * <p>If the account that created the license is the same that is performing the check out, you must
@@ -84,24 +89,28 @@ export declare class LicenseManager extends LicenseManagerClient {
84
89
  checkoutLicense(args: CheckoutLicenseCommandInput, cb: (err: any, data?: CheckoutLicenseCommandOutput) => void): void;
85
90
  checkoutLicense(args: CheckoutLicenseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CheckoutLicenseCommandOutput) => void): void;
86
91
  /**
92
+ * @public
87
93
  * <p>Creates a grant for the specified license. A grant shares the use of license entitlements with specific Amazon Web Services accounts.</p>
88
94
  */
89
95
  createGrant(args: CreateGrantCommandInput, options?: __HttpHandlerOptions): Promise<CreateGrantCommandOutput>;
90
96
  createGrant(args: CreateGrantCommandInput, cb: (err: any, data?: CreateGrantCommandOutput) => void): void;
91
97
  createGrant(args: CreateGrantCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateGrantCommandOutput) => void): void;
92
98
  /**
99
+ * @public
93
100
  * <p>Creates a new version of the specified grant.</p>
94
101
  */
95
102
  createGrantVersion(args: CreateGrantVersionCommandInput, options?: __HttpHandlerOptions): Promise<CreateGrantVersionCommandOutput>;
96
103
  createGrantVersion(args: CreateGrantVersionCommandInput, cb: (err: any, data?: CreateGrantVersionCommandOutput) => void): void;
97
104
  createGrantVersion(args: CreateGrantVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateGrantVersionCommandOutput) => void): void;
98
105
  /**
106
+ * @public
99
107
  * <p>Creates a license.</p>
100
108
  */
101
109
  createLicense(args: CreateLicenseCommandInput, options?: __HttpHandlerOptions): Promise<CreateLicenseCommandOutput>;
102
110
  createLicense(args: CreateLicenseCommandInput, cb: (err: any, data?: CreateLicenseCommandOutput) => void): void;
103
111
  createLicense(args: CreateLicenseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLicenseCommandOutput) => void): void;
104
112
  /**
113
+ * @public
105
114
  * <p>Creates a license configuration.</p>
106
115
  * <p>A license configuration is an abstraction of a customer license agreement that can be
107
116
  * consumed and enforced by License Manager. Components include specifications for the license
@@ -113,24 +122,28 @@ export declare class LicenseManager extends LicenseManagerClient {
113
122
  createLicenseConfiguration(args: CreateLicenseConfigurationCommandInput, cb: (err: any, data?: CreateLicenseConfigurationCommandOutput) => void): void;
114
123
  createLicenseConfiguration(args: CreateLicenseConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLicenseConfigurationCommandOutput) => void): void;
115
124
  /**
125
+ * @public
116
126
  * <p>Creates a new license conversion task.</p>
117
127
  */
118
128
  createLicenseConversionTaskForResource(args: CreateLicenseConversionTaskForResourceCommandInput, options?: __HttpHandlerOptions): Promise<CreateLicenseConversionTaskForResourceCommandOutput>;
119
129
  createLicenseConversionTaskForResource(args: CreateLicenseConversionTaskForResourceCommandInput, cb: (err: any, data?: CreateLicenseConversionTaskForResourceCommandOutput) => void): void;
120
130
  createLicenseConversionTaskForResource(args: CreateLicenseConversionTaskForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLicenseConversionTaskForResourceCommandOutput) => void): void;
121
131
  /**
132
+ * @public
122
133
  * <p>Creates a report generator.</p>
123
134
  */
124
135
  createLicenseManagerReportGenerator(args: CreateLicenseManagerReportGeneratorCommandInput, options?: __HttpHandlerOptions): Promise<CreateLicenseManagerReportGeneratorCommandOutput>;
125
136
  createLicenseManagerReportGenerator(args: CreateLicenseManagerReportGeneratorCommandInput, cb: (err: any, data?: CreateLicenseManagerReportGeneratorCommandOutput) => void): void;
126
137
  createLicenseManagerReportGenerator(args: CreateLicenseManagerReportGeneratorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLicenseManagerReportGeneratorCommandOutput) => void): void;
127
138
  /**
139
+ * @public
128
140
  * <p>Creates a new version of the specified license.</p>
129
141
  */
130
142
  createLicenseVersion(args: CreateLicenseVersionCommandInput, options?: __HttpHandlerOptions): Promise<CreateLicenseVersionCommandOutput>;
131
143
  createLicenseVersion(args: CreateLicenseVersionCommandInput, cb: (err: any, data?: CreateLicenseVersionCommandOutput) => void): void;
132
144
  createLicenseVersion(args: CreateLicenseVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLicenseVersionCommandOutput) => void): void;
133
145
  /**
146
+ * @public
134
147
  * <p>Creates a long-lived token.</p>
135
148
  * <p>A refresh token is a JWT token used to get an access token. With an access token,
136
149
  * you can call AssumeRoleWithWebIdentity to get role credentials that you can use to
@@ -140,18 +153,21 @@ export declare class LicenseManager extends LicenseManagerClient {
140
153
  createToken(args: CreateTokenCommandInput, cb: (err: any, data?: CreateTokenCommandOutput) => void): void;
141
154
  createToken(args: CreateTokenCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTokenCommandOutput) => void): void;
142
155
  /**
156
+ * @public
143
157
  * <p>Deletes the specified grant.</p>
144
158
  */
145
159
  deleteGrant(args: DeleteGrantCommandInput, options?: __HttpHandlerOptions): Promise<DeleteGrantCommandOutput>;
146
160
  deleteGrant(args: DeleteGrantCommandInput, cb: (err: any, data?: DeleteGrantCommandOutput) => void): void;
147
161
  deleteGrant(args: DeleteGrantCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteGrantCommandOutput) => void): void;
148
162
  /**
163
+ * @public
149
164
  * <p>Deletes the specified license.</p>
150
165
  */
151
166
  deleteLicense(args: DeleteLicenseCommandInput, options?: __HttpHandlerOptions): Promise<DeleteLicenseCommandOutput>;
152
167
  deleteLicense(args: DeleteLicenseCommandInput, cb: (err: any, data?: DeleteLicenseCommandOutput) => void): void;
153
168
  deleteLicense(args: DeleteLicenseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteLicenseCommandOutput) => void): void;
154
169
  /**
170
+ * @public
155
171
  * <p>Deletes the specified license configuration.</p>
156
172
  * <p>You cannot delete a license configuration that is in use.</p>
157
173
  */
@@ -159,6 +175,7 @@ export declare class LicenseManager extends LicenseManagerClient {
159
175
  deleteLicenseConfiguration(args: DeleteLicenseConfigurationCommandInput, cb: (err: any, data?: DeleteLicenseConfigurationCommandOutput) => void): void;
160
176
  deleteLicenseConfiguration(args: DeleteLicenseConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteLicenseConfigurationCommandOutput) => void): void;
161
177
  /**
178
+ * @public
162
179
  * <p>Deletes the specified report generator.</p>
163
180
  * <p>This action deletes the report generator, which stops it from generating future reports.
164
181
  * The action cannot be reversed. It has no effect on the previous reports from this generator.</p>
@@ -167,18 +184,21 @@ export declare class LicenseManager extends LicenseManagerClient {
167
184
  deleteLicenseManagerReportGenerator(args: DeleteLicenseManagerReportGeneratorCommandInput, cb: (err: any, data?: DeleteLicenseManagerReportGeneratorCommandOutput) => void): void;
168
185
  deleteLicenseManagerReportGenerator(args: DeleteLicenseManagerReportGeneratorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteLicenseManagerReportGeneratorCommandOutput) => void): void;
169
186
  /**
187
+ * @public
170
188
  * <p>Deletes the specified token. Must be called in the license home Region.</p>
171
189
  */
172
190
  deleteToken(args: DeleteTokenCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTokenCommandOutput>;
173
191
  deleteToken(args: DeleteTokenCommandInput, cb: (err: any, data?: DeleteTokenCommandOutput) => void): void;
174
192
  deleteToken(args: DeleteTokenCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTokenCommandOutput) => void): void;
175
193
  /**
194
+ * @public
176
195
  * <p>Extends the expiration date for license consumption.</p>
177
196
  */
178
197
  extendLicenseConsumption(args: ExtendLicenseConsumptionCommandInput, options?: __HttpHandlerOptions): Promise<ExtendLicenseConsumptionCommandOutput>;
179
198
  extendLicenseConsumption(args: ExtendLicenseConsumptionCommandInput, cb: (err: any, data?: ExtendLicenseConsumptionCommandOutput) => void): void;
180
199
  extendLicenseConsumption(args: ExtendLicenseConsumptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ExtendLicenseConsumptionCommandOutput) => void): void;
181
200
  /**
201
+ * @public
182
202
  * <p>Gets a temporary access token to use with AssumeRoleWithWebIdentity. Access tokens
183
203
  * are valid for one hour.</p>
184
204
  */
@@ -186,48 +206,56 @@ export declare class LicenseManager extends LicenseManagerClient {
186
206
  getAccessToken(args: GetAccessTokenCommandInput, cb: (err: any, data?: GetAccessTokenCommandOutput) => void): void;
187
207
  getAccessToken(args: GetAccessTokenCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAccessTokenCommandOutput) => void): void;
188
208
  /**
209
+ * @public
189
210
  * <p>Gets detailed information about the specified grant.</p>
190
211
  */
191
212
  getGrant(args: GetGrantCommandInput, options?: __HttpHandlerOptions): Promise<GetGrantCommandOutput>;
192
213
  getGrant(args: GetGrantCommandInput, cb: (err: any, data?: GetGrantCommandOutput) => void): void;
193
214
  getGrant(args: GetGrantCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetGrantCommandOutput) => void): void;
194
215
  /**
216
+ * @public
195
217
  * <p>Gets detailed information about the specified license.</p>
196
218
  */
197
219
  getLicense(args: GetLicenseCommandInput, options?: __HttpHandlerOptions): Promise<GetLicenseCommandOutput>;
198
220
  getLicense(args: GetLicenseCommandInput, cb: (err: any, data?: GetLicenseCommandOutput) => void): void;
199
221
  getLicense(args: GetLicenseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetLicenseCommandOutput) => void): void;
200
222
  /**
223
+ * @public
201
224
  * <p>Gets detailed information about the specified license configuration.</p>
202
225
  */
203
226
  getLicenseConfiguration(args: GetLicenseConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetLicenseConfigurationCommandOutput>;
204
227
  getLicenseConfiguration(args: GetLicenseConfigurationCommandInput, cb: (err: any, data?: GetLicenseConfigurationCommandOutput) => void): void;
205
228
  getLicenseConfiguration(args: GetLicenseConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetLicenseConfigurationCommandOutput) => void): void;
206
229
  /**
230
+ * @public
207
231
  * <p>Gets information about the specified license type conversion task.</p>
208
232
  */
209
233
  getLicenseConversionTask(args: GetLicenseConversionTaskCommandInput, options?: __HttpHandlerOptions): Promise<GetLicenseConversionTaskCommandOutput>;
210
234
  getLicenseConversionTask(args: GetLicenseConversionTaskCommandInput, cb: (err: any, data?: GetLicenseConversionTaskCommandOutput) => void): void;
211
235
  getLicenseConversionTask(args: GetLicenseConversionTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetLicenseConversionTaskCommandOutput) => void): void;
212
236
  /**
237
+ * @public
213
238
  * <p>Gets information about the specified report generator.</p>
214
239
  */
215
240
  getLicenseManagerReportGenerator(args: GetLicenseManagerReportGeneratorCommandInput, options?: __HttpHandlerOptions): Promise<GetLicenseManagerReportGeneratorCommandOutput>;
216
241
  getLicenseManagerReportGenerator(args: GetLicenseManagerReportGeneratorCommandInput, cb: (err: any, data?: GetLicenseManagerReportGeneratorCommandOutput) => void): void;
217
242
  getLicenseManagerReportGenerator(args: GetLicenseManagerReportGeneratorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetLicenseManagerReportGeneratorCommandOutput) => void): void;
218
243
  /**
244
+ * @public
219
245
  * <p>Gets detailed information about the usage of the specified license.</p>
220
246
  */
221
247
  getLicenseUsage(args: GetLicenseUsageCommandInput, options?: __HttpHandlerOptions): Promise<GetLicenseUsageCommandOutput>;
222
248
  getLicenseUsage(args: GetLicenseUsageCommandInput, cb: (err: any, data?: GetLicenseUsageCommandOutput) => void): void;
223
249
  getLicenseUsage(args: GetLicenseUsageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetLicenseUsageCommandOutput) => void): void;
224
250
  /**
251
+ * @public
225
252
  * <p>Gets the License Manager settings for the current Region.</p>
226
253
  */
227
254
  getServiceSettings(args: GetServiceSettingsCommandInput, options?: __HttpHandlerOptions): Promise<GetServiceSettingsCommandOutput>;
228
255
  getServiceSettings(args: GetServiceSettingsCommandInput, cb: (err: any, data?: GetServiceSettingsCommandOutput) => void): void;
229
256
  getServiceSettings(args: GetServiceSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetServiceSettingsCommandOutput) => void): void;
230
257
  /**
258
+ * @public
231
259
  * <p>Lists the resource associations for the specified license configuration.</p>
232
260
  * <p>Resource associations need not consume licenses from a license configuration.
233
261
  * For example, an AMI or a stopped instance might not consume a license (depending on
@@ -237,96 +265,112 @@ export declare class LicenseManager extends LicenseManagerClient {
237
265
  listAssociationsForLicenseConfiguration(args: ListAssociationsForLicenseConfigurationCommandInput, cb: (err: any, data?: ListAssociationsForLicenseConfigurationCommandOutput) => void): void;
238
266
  listAssociationsForLicenseConfiguration(args: ListAssociationsForLicenseConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAssociationsForLicenseConfigurationCommandOutput) => void): void;
239
267
  /**
268
+ * @public
240
269
  * <p>Lists the grants distributed for the specified license.</p>
241
270
  */
242
271
  listDistributedGrants(args: ListDistributedGrantsCommandInput, options?: __HttpHandlerOptions): Promise<ListDistributedGrantsCommandOutput>;
243
272
  listDistributedGrants(args: ListDistributedGrantsCommandInput, cb: (err: any, data?: ListDistributedGrantsCommandOutput) => void): void;
244
273
  listDistributedGrants(args: ListDistributedGrantsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDistributedGrantsCommandOutput) => void): void;
245
274
  /**
275
+ * @public
246
276
  * <p>Lists the license configuration operations that failed.</p>
247
277
  */
248
278
  listFailuresForLicenseConfigurationOperations(args: ListFailuresForLicenseConfigurationOperationsCommandInput, options?: __HttpHandlerOptions): Promise<ListFailuresForLicenseConfigurationOperationsCommandOutput>;
249
279
  listFailuresForLicenseConfigurationOperations(args: ListFailuresForLicenseConfigurationOperationsCommandInput, cb: (err: any, data?: ListFailuresForLicenseConfigurationOperationsCommandOutput) => void): void;
250
280
  listFailuresForLicenseConfigurationOperations(args: ListFailuresForLicenseConfigurationOperationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFailuresForLicenseConfigurationOperationsCommandOutput) => void): void;
251
281
  /**
282
+ * @public
252
283
  * <p>Lists the license configurations for your account.</p>
253
284
  */
254
285
  listLicenseConfigurations(args: ListLicenseConfigurationsCommandInput, options?: __HttpHandlerOptions): Promise<ListLicenseConfigurationsCommandOutput>;
255
286
  listLicenseConfigurations(args: ListLicenseConfigurationsCommandInput, cb: (err: any, data?: ListLicenseConfigurationsCommandOutput) => void): void;
256
287
  listLicenseConfigurations(args: ListLicenseConfigurationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLicenseConfigurationsCommandOutput) => void): void;
257
288
  /**
289
+ * @public
258
290
  * <p>Lists the license type conversion tasks for your account.</p>
259
291
  */
260
292
  listLicenseConversionTasks(args: ListLicenseConversionTasksCommandInput, options?: __HttpHandlerOptions): Promise<ListLicenseConversionTasksCommandOutput>;
261
293
  listLicenseConversionTasks(args: ListLicenseConversionTasksCommandInput, cb: (err: any, data?: ListLicenseConversionTasksCommandOutput) => void): void;
262
294
  listLicenseConversionTasks(args: ListLicenseConversionTasksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLicenseConversionTasksCommandOutput) => void): void;
263
295
  /**
296
+ * @public
264
297
  * <p>Lists the report generators for your account.</p>
265
298
  */
266
299
  listLicenseManagerReportGenerators(args: ListLicenseManagerReportGeneratorsCommandInput, options?: __HttpHandlerOptions): Promise<ListLicenseManagerReportGeneratorsCommandOutput>;
267
300
  listLicenseManagerReportGenerators(args: ListLicenseManagerReportGeneratorsCommandInput, cb: (err: any, data?: ListLicenseManagerReportGeneratorsCommandOutput) => void): void;
268
301
  listLicenseManagerReportGenerators(args: ListLicenseManagerReportGeneratorsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLicenseManagerReportGeneratorsCommandOutput) => void): void;
269
302
  /**
303
+ * @public
270
304
  * <p>Lists the licenses for your account.</p>
271
305
  */
272
306
  listLicenses(args: ListLicensesCommandInput, options?: __HttpHandlerOptions): Promise<ListLicensesCommandOutput>;
273
307
  listLicenses(args: ListLicensesCommandInput, cb: (err: any, data?: ListLicensesCommandOutput) => void): void;
274
308
  listLicenses(args: ListLicensesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLicensesCommandOutput) => void): void;
275
309
  /**
310
+ * @public
276
311
  * <p>Describes the license configurations for the specified resource.</p>
277
312
  */
278
313
  listLicenseSpecificationsForResource(args: ListLicenseSpecificationsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListLicenseSpecificationsForResourceCommandOutput>;
279
314
  listLicenseSpecificationsForResource(args: ListLicenseSpecificationsForResourceCommandInput, cb: (err: any, data?: ListLicenseSpecificationsForResourceCommandOutput) => void): void;
280
315
  listLicenseSpecificationsForResource(args: ListLicenseSpecificationsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLicenseSpecificationsForResourceCommandOutput) => void): void;
281
316
  /**
317
+ * @public
282
318
  * <p>Lists all versions of the specified license.</p>
283
319
  */
284
320
  listLicenseVersions(args: ListLicenseVersionsCommandInput, options?: __HttpHandlerOptions): Promise<ListLicenseVersionsCommandOutput>;
285
321
  listLicenseVersions(args: ListLicenseVersionsCommandInput, cb: (err: any, data?: ListLicenseVersionsCommandOutput) => void): void;
286
322
  listLicenseVersions(args: ListLicenseVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLicenseVersionsCommandOutput) => void): void;
287
323
  /**
324
+ * @public
288
325
  * <p>Lists grants that are received but not accepted.</p>
289
326
  */
290
327
  listReceivedGrants(args: ListReceivedGrantsCommandInput, options?: __HttpHandlerOptions): Promise<ListReceivedGrantsCommandOutput>;
291
328
  listReceivedGrants(args: ListReceivedGrantsCommandInput, cb: (err: any, data?: ListReceivedGrantsCommandOutput) => void): void;
292
329
  listReceivedGrants(args: ListReceivedGrantsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListReceivedGrantsCommandOutput) => void): void;
293
330
  /**
331
+ * @public
294
332
  * <p>Lists the grants received for all accounts in the organization.</p>
295
333
  */
296
334
  listReceivedGrantsForOrganization(args: ListReceivedGrantsForOrganizationCommandInput, options?: __HttpHandlerOptions): Promise<ListReceivedGrantsForOrganizationCommandOutput>;
297
335
  listReceivedGrantsForOrganization(args: ListReceivedGrantsForOrganizationCommandInput, cb: (err: any, data?: ListReceivedGrantsForOrganizationCommandOutput) => void): void;
298
336
  listReceivedGrantsForOrganization(args: ListReceivedGrantsForOrganizationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListReceivedGrantsForOrganizationCommandOutput) => void): void;
299
337
  /**
338
+ * @public
300
339
  * <p>Lists received licenses.</p>
301
340
  */
302
341
  listReceivedLicenses(args: ListReceivedLicensesCommandInput, options?: __HttpHandlerOptions): Promise<ListReceivedLicensesCommandOutput>;
303
342
  listReceivedLicenses(args: ListReceivedLicensesCommandInput, cb: (err: any, data?: ListReceivedLicensesCommandOutput) => void): void;
304
343
  listReceivedLicenses(args: ListReceivedLicensesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListReceivedLicensesCommandOutput) => void): void;
305
344
  /**
345
+ * @public
306
346
  * <p>Lists the licenses received for all accounts in the organization.</p>
307
347
  */
308
348
  listReceivedLicensesForOrganization(args: ListReceivedLicensesForOrganizationCommandInput, options?: __HttpHandlerOptions): Promise<ListReceivedLicensesForOrganizationCommandOutput>;
309
349
  listReceivedLicensesForOrganization(args: ListReceivedLicensesForOrganizationCommandInput, cb: (err: any, data?: ListReceivedLicensesForOrganizationCommandOutput) => void): void;
310
350
  listReceivedLicensesForOrganization(args: ListReceivedLicensesForOrganizationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListReceivedLicensesForOrganizationCommandOutput) => void): void;
311
351
  /**
352
+ * @public
312
353
  * <p>Lists resources managed using Systems Manager inventory.</p>
313
354
  */
314
355
  listResourceInventory(args: ListResourceInventoryCommandInput, options?: __HttpHandlerOptions): Promise<ListResourceInventoryCommandOutput>;
315
356
  listResourceInventory(args: ListResourceInventoryCommandInput, cb: (err: any, data?: ListResourceInventoryCommandOutput) => void): void;
316
357
  listResourceInventory(args: ListResourceInventoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListResourceInventoryCommandOutput) => void): void;
317
358
  /**
359
+ * @public
318
360
  * <p>Lists the tags for the specified license configuration.</p>
319
361
  */
320
362
  listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
321
363
  listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
322
364
  listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
323
365
  /**
366
+ * @public
324
367
  * <p>Lists your tokens.</p>
325
368
  */
326
369
  listTokens(args: ListTokensCommandInput, options?: __HttpHandlerOptions): Promise<ListTokensCommandOutput>;
327
370
  listTokens(args: ListTokensCommandInput, cb: (err: any, data?: ListTokensCommandOutput) => void): void;
328
371
  listTokens(args: ListTokensCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTokensCommandOutput) => void): void;
329
372
  /**
373
+ * @public
330
374
  * <p>Lists all license usage records for a license configuration, displaying license
331
375
  * consumption details by resource at a selected point in time. Use this action to audit the
332
376
  * current license consumption for any license inventory and configuration.</p>
@@ -335,30 +379,35 @@ export declare class LicenseManager extends LicenseManagerClient {
335
379
  listUsageForLicenseConfiguration(args: ListUsageForLicenseConfigurationCommandInput, cb: (err: any, data?: ListUsageForLicenseConfigurationCommandOutput) => void): void;
336
380
  listUsageForLicenseConfiguration(args: ListUsageForLicenseConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListUsageForLicenseConfigurationCommandOutput) => void): void;
337
381
  /**
382
+ * @public
338
383
  * <p>Rejects the specified grant.</p>
339
384
  */
340
385
  rejectGrant(args: RejectGrantCommandInput, options?: __HttpHandlerOptions): Promise<RejectGrantCommandOutput>;
341
386
  rejectGrant(args: RejectGrantCommandInput, cb: (err: any, data?: RejectGrantCommandOutput) => void): void;
342
387
  rejectGrant(args: RejectGrantCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RejectGrantCommandOutput) => void): void;
343
388
  /**
389
+ * @public
344
390
  * <p>Adds the specified tags to the specified license configuration.</p>
345
391
  */
346
392
  tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
347
393
  tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
348
394
  tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
349
395
  /**
396
+ * @public
350
397
  * <p>Removes the specified tags from the specified license configuration.</p>
351
398
  */
352
399
  untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
353
400
  untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
354
401
  untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
355
402
  /**
403
+ * @public
356
404
  * <p>Modifies the attributes of an existing license configuration.</p>
357
405
  */
358
406
  updateLicenseConfiguration(args: UpdateLicenseConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateLicenseConfigurationCommandOutput>;
359
407
  updateLicenseConfiguration(args: UpdateLicenseConfigurationCommandInput, cb: (err: any, data?: UpdateLicenseConfigurationCommandOutput) => void): void;
360
408
  updateLicenseConfiguration(args: UpdateLicenseConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateLicenseConfigurationCommandOutput) => void): void;
361
409
  /**
410
+ * @public
362
411
  * <p>Updates a report generator.</p>
363
412
  * <p>After you make changes to a report generator, it starts generating new reports within 60 minutes of being updated.</p>
364
413
  */
@@ -366,6 +415,7 @@ export declare class LicenseManager extends LicenseManagerClient {
366
415
  updateLicenseManagerReportGenerator(args: UpdateLicenseManagerReportGeneratorCommandInput, cb: (err: any, data?: UpdateLicenseManagerReportGeneratorCommandOutput) => void): void;
367
416
  updateLicenseManagerReportGenerator(args: UpdateLicenseManagerReportGeneratorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateLicenseManagerReportGeneratorCommandOutput) => void): void;
368
417
  /**
418
+ * @public
369
419
  * <p>Adds or removes the specified license configurations for the specified Amazon Web Services resource.</p>
370
420
  * <p>You can update the license specifications of AMIs, instances, and hosts.
371
421
  * You cannot update the license specifications for launch templates and CloudFormation templates,
@@ -375,6 +425,7 @@ export declare class LicenseManager extends LicenseManagerClient {
375
425
  updateLicenseSpecificationsForResource(args: UpdateLicenseSpecificationsForResourceCommandInput, cb: (err: any, data?: UpdateLicenseSpecificationsForResourceCommandOutput) => void): void;
376
426
  updateLicenseSpecificationsForResource(args: UpdateLicenseSpecificationsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateLicenseSpecificationsForResourceCommandOutput) => void): void;
377
427
  /**
428
+ * @public
378
429
  * <p>Updates License Manager settings for the current Region.</p>
379
430
  */
380
431
  updateServiceSettings(args: UpdateServiceSettingsCommandInput, options?: __HttpHandlerOptions): Promise<UpdateServiceSettingsCommandOutput>;
@@ -58,15 +58,24 @@ import { UpdateLicenseManagerReportGeneratorCommandInput, UpdateLicenseManagerRe
58
58
  import { UpdateLicenseSpecificationsForResourceCommandInput, UpdateLicenseSpecificationsForResourceCommandOutput } from "./commands/UpdateLicenseSpecificationsForResourceCommand";
59
59
  import { UpdateServiceSettingsCommandInput, UpdateServiceSettingsCommandOutput } from "./commands/UpdateServiceSettingsCommand";
60
60
  import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
61
+ /**
62
+ * @public
63
+ */
61
64
  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;
65
+ /**
66
+ * @public
67
+ */
62
68
  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;
69
+ /**
70
+ * @public
71
+ */
63
72
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
64
73
  /**
65
74
  * The HTTP handler to use. Fetch in browser and Https in Nodejs.
66
75
  */
67
76
  requestHandler?: __HttpHandler;
68
77
  /**
69
- * A constructor for a class implementing the {@link __Checksum} interface
78
+ * A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
70
79
  * that computes the SHA-256 HMAC or checksum of a string or binary buffer.
71
80
  * @internal
72
81
  */
@@ -156,23 +165,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
156
165
  */
157
166
  logger?: __Logger;
158
167
  /**
159
- * The {@link __DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
168
+ * The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
160
169
  */
161
170
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
162
171
  }
172
+ /**
173
+ * @public
174
+ */
163
175
  type LicenseManagerClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
164
176
  /**
165
- * The configuration interface of LicenseManagerClient class constructor that set the region, credentials and other options.
177
+ * @public
178
+ *
179
+ * The configuration interface of LicenseManagerClient class constructor that set the region, credentials and other options.
166
180
  */
167
181
  export interface LicenseManagerClientConfig extends LicenseManagerClientConfigType {
168
182
  }
183
+ /**
184
+ * @public
185
+ */
169
186
  type LicenseManagerClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
170
187
  /**
171
- * The resolved configuration interface of LicenseManagerClient class. This is resolved and normalized from the {@link LicenseManagerClientConfig | constructor configuration interface}.
188
+ * @public
189
+ *
190
+ * The resolved configuration interface of LicenseManagerClient class. This is resolved and normalized from the {@link LicenseManagerClientConfig | constructor configuration interface}.
172
191
  */
173
192
  export interface LicenseManagerClientResolvedConfig extends LicenseManagerClientResolvedConfigType {
174
193
  }
175
194
  /**
195
+ * @public
176
196
  * <p>License Manager makes it easier to manage licenses from software vendors across multiple
177
197
  * Amazon Web Services accounts and on-premises servers.</p>
178
198
  */
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient";
5
5
  import { AcceptGrantRequest, AcceptGrantResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link AcceptGrantCommand}.
8
10
  */
9
11
  export interface AcceptGrantCommandInput extends AcceptGrantRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link AcceptGrantCommand}.
13
17
  */
14
18
  export interface AcceptGrantCommandOutput extends AcceptGrantResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Accepts the specified grant.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface AcceptGrantCommandOutput extends AcceptGrantResponse, __Metadat
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param AcceptGrantCommandInput - {@link AcceptGrantCommandInput}
34
+ * @returns {@link AcceptGrantCommandOutput}
28
35
  * @see {@link AcceptGrantCommandInput} for command's `input` shape.
29
36
  * @see {@link AcceptGrantCommandOutput} for command's `response` shape.
30
37
  * @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
@@ -56,11 +63,20 @@ export interface AcceptGrantCommandOutput extends AcceptGrantResponse, __Metadat
56
63
  export declare class AcceptGrantCommand extends $Command<AcceptGrantCommandInput, AcceptGrantCommandOutput, LicenseManagerClientResolvedConfig> {
57
64
  readonly input: AcceptGrantCommandInput;
58
65
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
66
+ /**
67
+ * @public
68
+ */
59
69
  constructor(input: AcceptGrantCommandInput);
60
70
  /**
61
71
  * @internal
62
72
  */
63
73
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AcceptGrantCommandInput, AcceptGrantCommandOutput>;
74
+ /**
75
+ * @internal
76
+ */
64
77
  private serialize;
78
+ /**
79
+ * @internal
80
+ */
65
81
  private deserialize;
66
82
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient";
5
5
  import { CheckInLicenseRequest, CheckInLicenseResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CheckInLicenseCommand}.
8
10
  */
9
11
  export interface CheckInLicenseCommandInput extends CheckInLicenseRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CheckInLicenseCommand}.
13
17
  */
14
18
  export interface CheckInLicenseCommandOutput extends CheckInLicenseResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Checks in the specified license. Check in a license when it is no longer in use.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface CheckInLicenseCommandOutput extends CheckInLicenseResponse, __M
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param CheckInLicenseCommandInput - {@link CheckInLicenseCommandInput}
34
+ * @returns {@link CheckInLicenseCommandOutput}
28
35
  * @see {@link CheckInLicenseCommandInput} for command's `input` shape.
29
36
  * @see {@link CheckInLicenseCommandOutput} for command's `response` shape.
30
37
  * @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
@@ -59,11 +66,20 @@ export interface CheckInLicenseCommandOutput extends CheckInLicenseResponse, __M
59
66
  export declare class CheckInLicenseCommand extends $Command<CheckInLicenseCommandInput, CheckInLicenseCommandOutput, LicenseManagerClientResolvedConfig> {
60
67
  readonly input: CheckInLicenseCommandInput;
61
68
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
69
+ /**
70
+ * @public
71
+ */
62
72
  constructor(input: CheckInLicenseCommandInput);
63
73
  /**
64
74
  * @internal
65
75
  */
66
76
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CheckInLicenseCommandInput, CheckInLicenseCommandOutput>;
77
+ /**
78
+ * @internal
79
+ */
67
80
  private serialize;
81
+ /**
82
+ * @internal
83
+ */
68
84
  private deserialize;
69
85
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient";
5
5
  import { CheckoutBorrowLicenseRequest, CheckoutBorrowLicenseResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CheckoutBorrowLicenseCommand}.
8
10
  */
9
11
  export interface CheckoutBorrowLicenseCommandInput extends CheckoutBorrowLicenseRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CheckoutBorrowLicenseCommand}.
13
17
  */
14
18
  export interface CheckoutBorrowLicenseCommandOutput extends CheckoutBorrowLicenseResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Checks out the specified license for offline use.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface CheckoutBorrowLicenseCommandOutput extends CheckoutBorrowLicens
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param CheckoutBorrowLicenseCommandInput - {@link CheckoutBorrowLicenseCommandInput}
34
+ * @returns {@link CheckoutBorrowLicenseCommandOutput}
28
35
  * @see {@link CheckoutBorrowLicenseCommandInput} for command's `input` shape.
29
36
  * @see {@link CheckoutBorrowLicenseCommandOutput} for command's `response` shape.
30
37
  * @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
@@ -68,11 +75,20 @@ export interface CheckoutBorrowLicenseCommandOutput extends CheckoutBorrowLicens
68
75
  export declare class CheckoutBorrowLicenseCommand extends $Command<CheckoutBorrowLicenseCommandInput, CheckoutBorrowLicenseCommandOutput, LicenseManagerClientResolvedConfig> {
69
76
  readonly input: CheckoutBorrowLicenseCommandInput;
70
77
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
78
+ /**
79
+ * @public
80
+ */
71
81
  constructor(input: CheckoutBorrowLicenseCommandInput);
72
82
  /**
73
83
  * @internal
74
84
  */
75
85
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CheckoutBorrowLicenseCommandInput, CheckoutBorrowLicenseCommandOutput>;
86
+ /**
87
+ * @internal
88
+ */
76
89
  private serialize;
90
+ /**
91
+ * @internal
92
+ */
77
93
  private deserialize;
78
94
  }