@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
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient";
5
5
  import { DeleteLicenseManagerReportGeneratorRequest, DeleteLicenseManagerReportGeneratorResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteLicenseManagerReportGeneratorCommand}.
8
10
  */
9
11
  export interface DeleteLicenseManagerReportGeneratorCommandInput extends DeleteLicenseManagerReportGeneratorRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteLicenseManagerReportGeneratorCommand}.
13
17
  */
14
18
  export interface DeleteLicenseManagerReportGeneratorCommandOutput extends DeleteLicenseManagerReportGeneratorResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deletes the specified report generator.</p>
18
23
  * <p>This action deletes the report generator, which stops it from generating future reports.
19
24
  * The action cannot be reversed. It has no effect on the previous reports from this generator.</p>
@@ -27,6 +32,8 @@ export interface DeleteLicenseManagerReportGeneratorCommandOutput extends Delete
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param DeleteLicenseManagerReportGeneratorCommandInput - {@link DeleteLicenseManagerReportGeneratorCommandInput}
36
+ * @returns {@link DeleteLicenseManagerReportGeneratorCommandOutput}
30
37
  * @see {@link DeleteLicenseManagerReportGeneratorCommandInput} for command's `input` shape.
31
38
  * @see {@link DeleteLicenseManagerReportGeneratorCommandOutput} for command's `response` shape.
32
39
  * @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
@@ -61,11 +68,20 @@ export interface DeleteLicenseManagerReportGeneratorCommandOutput extends Delete
61
68
  export declare class DeleteLicenseManagerReportGeneratorCommand extends $Command<DeleteLicenseManagerReportGeneratorCommandInput, DeleteLicenseManagerReportGeneratorCommandOutput, LicenseManagerClientResolvedConfig> {
62
69
  readonly input: DeleteLicenseManagerReportGeneratorCommandInput;
63
70
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
71
+ /**
72
+ * @public
73
+ */
64
74
  constructor(input: DeleteLicenseManagerReportGeneratorCommandInput);
65
75
  /**
66
76
  * @internal
67
77
  */
68
78
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteLicenseManagerReportGeneratorCommandInput, DeleteLicenseManagerReportGeneratorCommandOutput>;
79
+ /**
80
+ * @internal
81
+ */
69
82
  private serialize;
83
+ /**
84
+ * @internal
85
+ */
70
86
  private deserialize;
71
87
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient";
5
5
  import { DeleteTokenRequest, DeleteTokenResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteTokenCommand}.
8
10
  */
9
11
  export interface DeleteTokenCommandInput extends DeleteTokenRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteTokenCommand}.
13
17
  */
14
18
  export interface DeleteTokenCommandOutput extends DeleteTokenResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deletes the specified token. Must be called in the license home Region.</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 DeleteTokenCommandOutput extends DeleteTokenResponse, __Metadat
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DeleteTokenCommandInput - {@link DeleteTokenCommandInput}
34
+ * @returns {@link DeleteTokenCommandOutput}
28
35
  * @see {@link DeleteTokenCommandInput} for command's `input` shape.
29
36
  * @see {@link DeleteTokenCommandOutput} for command's `response` shape.
30
37
  * @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
@@ -56,11 +63,20 @@ export interface DeleteTokenCommandOutput extends DeleteTokenResponse, __Metadat
56
63
  export declare class DeleteTokenCommand extends $Command<DeleteTokenCommandInput, DeleteTokenCommandOutput, LicenseManagerClientResolvedConfig> {
57
64
  readonly input: DeleteTokenCommandInput;
58
65
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
66
+ /**
67
+ * @public
68
+ */
59
69
  constructor(input: DeleteTokenCommandInput);
60
70
  /**
61
71
  * @internal
62
72
  */
63
73
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteTokenCommandInput, DeleteTokenCommandOutput>;
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 { ExtendLicenseConsumptionRequest, ExtendLicenseConsumptionResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ExtendLicenseConsumptionCommand}.
8
10
  */
9
11
  export interface ExtendLicenseConsumptionCommandInput extends ExtendLicenseConsumptionRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ExtendLicenseConsumptionCommand}.
13
17
  */
14
18
  export interface ExtendLicenseConsumptionCommandOutput extends ExtendLicenseConsumptionResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Extends the expiration date for license consumption.</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 ExtendLicenseConsumptionCommandOutput extends ExtendLicenseCons
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ExtendLicenseConsumptionCommandInput - {@link ExtendLicenseConsumptionCommandInput}
34
+ * @returns {@link ExtendLicenseConsumptionCommandOutput}
28
35
  * @see {@link ExtendLicenseConsumptionCommandInput} for command's `input` shape.
29
36
  * @see {@link ExtendLicenseConsumptionCommandOutput} for command's `response` shape.
30
37
  * @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
@@ -56,11 +63,20 @@ export interface ExtendLicenseConsumptionCommandOutput extends ExtendLicenseCons
56
63
  export declare class ExtendLicenseConsumptionCommand extends $Command<ExtendLicenseConsumptionCommandInput, ExtendLicenseConsumptionCommandOutput, LicenseManagerClientResolvedConfig> {
57
64
  readonly input: ExtendLicenseConsumptionCommandInput;
58
65
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
66
+ /**
67
+ * @public
68
+ */
59
69
  constructor(input: ExtendLicenseConsumptionCommandInput);
60
70
  /**
61
71
  * @internal
62
72
  */
63
73
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ExtendLicenseConsumptionCommandInput, ExtendLicenseConsumptionCommandOutput>;
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 { GetAccessTokenRequest, GetAccessTokenResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetAccessTokenCommand}.
8
10
  */
9
11
  export interface GetAccessTokenCommandInput extends GetAccessTokenRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetAccessTokenCommand}.
13
17
  */
14
18
  export interface GetAccessTokenCommandOutput extends GetAccessTokenResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Gets a temporary access token to use with AssumeRoleWithWebIdentity. Access tokens
18
23
  * are valid for one hour.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface GetAccessTokenCommandOutput extends GetAccessTokenResponse, __M
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param GetAccessTokenCommandInput - {@link GetAccessTokenCommandInput}
35
+ * @returns {@link GetAccessTokenCommandOutput}
29
36
  * @see {@link GetAccessTokenCommandInput} for command's `input` shape.
30
37
  * @see {@link GetAccessTokenCommandOutput} for command's `response` shape.
31
38
  * @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
@@ -51,11 +58,20 @@ export interface GetAccessTokenCommandOutput extends GetAccessTokenResponse, __M
51
58
  export declare class GetAccessTokenCommand extends $Command<GetAccessTokenCommandInput, GetAccessTokenCommandOutput, LicenseManagerClientResolvedConfig> {
52
59
  readonly input: GetAccessTokenCommandInput;
53
60
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
61
+ /**
62
+ * @public
63
+ */
54
64
  constructor(input: GetAccessTokenCommandInput);
55
65
  /**
56
66
  * @internal
57
67
  */
58
68
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAccessTokenCommandInput, GetAccessTokenCommandOutput>;
69
+ /**
70
+ * @internal
71
+ */
59
72
  private serialize;
73
+ /**
74
+ * @internal
75
+ */
60
76
  private deserialize;
61
77
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient";
5
5
  import { GetGrantRequest, GetGrantResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetGrantCommand}.
8
10
  */
9
11
  export interface GetGrantCommandInput extends GetGrantRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetGrantCommand}.
13
17
  */
14
18
  export interface GetGrantCommandOutput extends GetGrantResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Gets detailed information about 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 GetGrantCommandOutput extends GetGrantResponse, __MetadataBeare
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetGrantCommandInput - {@link GetGrantCommandInput}
34
+ * @returns {@link GetGrantCommandOutput}
28
35
  * @see {@link GetGrantCommandInput} for command's `input` shape.
29
36
  * @see {@link GetGrantCommandOutput} for command's `response` shape.
30
37
  * @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
@@ -56,11 +63,20 @@ export interface GetGrantCommandOutput extends GetGrantResponse, __MetadataBeare
56
63
  export declare class GetGrantCommand extends $Command<GetGrantCommandInput, GetGrantCommandOutput, LicenseManagerClientResolvedConfig> {
57
64
  readonly input: GetGrantCommandInput;
58
65
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
66
+ /**
67
+ * @public
68
+ */
59
69
  constructor(input: GetGrantCommandInput);
60
70
  /**
61
71
  * @internal
62
72
  */
63
73
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetGrantCommandInput, GetGrantCommandOutput>;
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 { GetLicenseRequest, GetLicenseResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetLicenseCommand}.
8
10
  */
9
11
  export interface GetLicenseCommandInput extends GetLicenseRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetLicenseCommand}.
13
17
  */
14
18
  export interface GetLicenseCommandOutput extends GetLicenseResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Gets detailed information about the specified license.</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 GetLicenseCommandOutput extends GetLicenseResponse, __MetadataB
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetLicenseCommandInput - {@link GetLicenseCommandInput}
34
+ * @returns {@link GetLicenseCommandOutput}
28
35
  * @see {@link GetLicenseCommandInput} for command's `input` shape.
29
36
  * @see {@link GetLicenseCommandOutput} for command's `response` shape.
30
37
  * @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
@@ -53,11 +60,20 @@ export interface GetLicenseCommandOutput extends GetLicenseResponse, __MetadataB
53
60
  export declare class GetLicenseCommand extends $Command<GetLicenseCommandInput, GetLicenseCommandOutput, LicenseManagerClientResolvedConfig> {
54
61
  readonly input: GetLicenseCommandInput;
55
62
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
63
+ /**
64
+ * @public
65
+ */
56
66
  constructor(input: GetLicenseCommandInput);
57
67
  /**
58
68
  * @internal
59
69
  */
60
70
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetLicenseCommandInput, GetLicenseCommandOutput>;
71
+ /**
72
+ * @internal
73
+ */
61
74
  private serialize;
75
+ /**
76
+ * @internal
77
+ */
62
78
  private deserialize;
63
79
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient";
5
5
  import { GetLicenseConfigurationRequest, GetLicenseConfigurationResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetLicenseConfigurationCommand}.
8
10
  */
9
11
  export interface GetLicenseConfigurationCommandInput extends GetLicenseConfigurationRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetLicenseConfigurationCommand}.
13
17
  */
14
18
  export interface GetLicenseConfigurationCommandOutput extends GetLicenseConfigurationResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Gets detailed information about the specified license configuration.</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 GetLicenseConfigurationCommandOutput extends GetLicenseConfigur
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetLicenseConfigurationCommandInput - {@link GetLicenseConfigurationCommandInput}
34
+ * @returns {@link GetLicenseConfigurationCommandOutput}
28
35
  * @see {@link GetLicenseConfigurationCommandInput} for command's `input` shape.
29
36
  * @see {@link GetLicenseConfigurationCommandOutput} for command's `response` shape.
30
37
  * @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
@@ -50,11 +57,20 @@ export interface GetLicenseConfigurationCommandOutput extends GetLicenseConfigur
50
57
  export declare class GetLicenseConfigurationCommand extends $Command<GetLicenseConfigurationCommandInput, GetLicenseConfigurationCommandOutput, LicenseManagerClientResolvedConfig> {
51
58
  readonly input: GetLicenseConfigurationCommandInput;
52
59
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
60
+ /**
61
+ * @public
62
+ */
53
63
  constructor(input: GetLicenseConfigurationCommandInput);
54
64
  /**
55
65
  * @internal
56
66
  */
57
67
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetLicenseConfigurationCommandInput, GetLicenseConfigurationCommandOutput>;
68
+ /**
69
+ * @internal
70
+ */
58
71
  private serialize;
72
+ /**
73
+ * @internal
74
+ */
59
75
  private deserialize;
60
76
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient";
5
5
  import { GetLicenseConversionTaskRequest, GetLicenseConversionTaskResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetLicenseConversionTaskCommand}.
8
10
  */
9
11
  export interface GetLicenseConversionTaskCommandInput extends GetLicenseConversionTaskRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetLicenseConversionTaskCommand}.
13
17
  */
14
18
  export interface GetLicenseConversionTaskCommandOutput extends GetLicenseConversionTaskResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Gets information about the specified license type conversion task.</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 GetLicenseConversionTaskCommandOutput extends GetLicenseConvers
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetLicenseConversionTaskCommandInput - {@link GetLicenseConversionTaskCommandInput}
34
+ * @returns {@link GetLicenseConversionTaskCommandOutput}
28
35
  * @see {@link GetLicenseConversionTaskCommandInput} for command's `input` shape.
29
36
  * @see {@link GetLicenseConversionTaskCommandOutput} for command's `response` shape.
30
37
  * @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
@@ -50,11 +57,20 @@ export interface GetLicenseConversionTaskCommandOutput extends GetLicenseConvers
50
57
  export declare class GetLicenseConversionTaskCommand extends $Command<GetLicenseConversionTaskCommandInput, GetLicenseConversionTaskCommandOutput, LicenseManagerClientResolvedConfig> {
51
58
  readonly input: GetLicenseConversionTaskCommandInput;
52
59
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
60
+ /**
61
+ * @public
62
+ */
53
63
  constructor(input: GetLicenseConversionTaskCommandInput);
54
64
  /**
55
65
  * @internal
56
66
  */
57
67
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetLicenseConversionTaskCommandInput, GetLicenseConversionTaskCommandOutput>;
68
+ /**
69
+ * @internal
70
+ */
58
71
  private serialize;
72
+ /**
73
+ * @internal
74
+ */
59
75
  private deserialize;
60
76
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient";
5
5
  import { GetLicenseManagerReportGeneratorRequest, GetLicenseManagerReportGeneratorResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetLicenseManagerReportGeneratorCommand}.
8
10
  */
9
11
  export interface GetLicenseManagerReportGeneratorCommandInput extends GetLicenseManagerReportGeneratorRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetLicenseManagerReportGeneratorCommand}.
13
17
  */
14
18
  export interface GetLicenseManagerReportGeneratorCommandOutput extends GetLicenseManagerReportGeneratorResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Gets information about the specified report generator.</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 GetLicenseManagerReportGeneratorCommandOutput extends GetLicens
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetLicenseManagerReportGeneratorCommandInput - {@link GetLicenseManagerReportGeneratorCommandInput}
34
+ * @returns {@link GetLicenseManagerReportGeneratorCommandOutput}
28
35
  * @see {@link GetLicenseManagerReportGeneratorCommandInput} for command's `input` shape.
29
36
  * @see {@link GetLicenseManagerReportGeneratorCommandOutput} for command's `response` shape.
30
37
  * @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
@@ -59,11 +66,20 @@ export interface GetLicenseManagerReportGeneratorCommandOutput extends GetLicens
59
66
  export declare class GetLicenseManagerReportGeneratorCommand extends $Command<GetLicenseManagerReportGeneratorCommandInput, GetLicenseManagerReportGeneratorCommandOutput, LicenseManagerClientResolvedConfig> {
60
67
  readonly input: GetLicenseManagerReportGeneratorCommandInput;
61
68
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
69
+ /**
70
+ * @public
71
+ */
62
72
  constructor(input: GetLicenseManagerReportGeneratorCommandInput);
63
73
  /**
64
74
  * @internal
65
75
  */
66
76
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetLicenseManagerReportGeneratorCommandInput, GetLicenseManagerReportGeneratorCommandOutput>;
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 { GetLicenseUsageRequest, GetLicenseUsageResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetLicenseUsageCommand}.
8
10
  */
9
11
  export interface GetLicenseUsageCommandInput extends GetLicenseUsageRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetLicenseUsageCommand}.
13
17
  */
14
18
  export interface GetLicenseUsageCommandOutput extends GetLicenseUsageResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Gets detailed information about the usage of the specified license.</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 GetLicenseUsageCommandOutput extends GetLicenseUsageResponse, _
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetLicenseUsageCommandInput - {@link GetLicenseUsageCommandInput}
34
+ * @returns {@link GetLicenseUsageCommandOutput}
28
35
  * @see {@link GetLicenseUsageCommandInput} for command's `input` shape.
29
36
  * @see {@link GetLicenseUsageCommandOutput} for command's `response` shape.
30
37
  * @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
@@ -53,11 +60,20 @@ export interface GetLicenseUsageCommandOutput extends GetLicenseUsageResponse, _
53
60
  export declare class GetLicenseUsageCommand extends $Command<GetLicenseUsageCommandInput, GetLicenseUsageCommandOutput, LicenseManagerClientResolvedConfig> {
54
61
  readonly input: GetLicenseUsageCommandInput;
55
62
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
63
+ /**
64
+ * @public
65
+ */
56
66
  constructor(input: GetLicenseUsageCommandInput);
57
67
  /**
58
68
  * @internal
59
69
  */
60
70
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetLicenseUsageCommandInput, GetLicenseUsageCommandOutput>;
71
+ /**
72
+ * @internal
73
+ */
61
74
  private serialize;
75
+ /**
76
+ * @internal
77
+ */
62
78
  private deserialize;
63
79
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient";
5
5
  import { GetServiceSettingsRequest, GetServiceSettingsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetServiceSettingsCommand}.
8
10
  */
9
11
  export interface GetServiceSettingsCommandInput extends GetServiceSettingsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetServiceSettingsCommand}.
13
17
  */
14
18
  export interface GetServiceSettingsCommandOutput extends GetServiceSettingsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Gets the License Manager settings for the current Region.</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 GetServiceSettingsCommandOutput extends GetServiceSettingsRespo
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetServiceSettingsCommandInput - {@link GetServiceSettingsCommandInput}
34
+ * @returns {@link GetServiceSettingsCommandOutput}
28
35
  * @see {@link GetServiceSettingsCommandInput} for command's `input` shape.
29
36
  * @see {@link GetServiceSettingsCommandOutput} for command's `response` shape.
30
37
  * @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
@@ -47,11 +54,20 @@ export interface GetServiceSettingsCommandOutput extends GetServiceSettingsRespo
47
54
  export declare class GetServiceSettingsCommand extends $Command<GetServiceSettingsCommandInput, GetServiceSettingsCommandOutput, LicenseManagerClientResolvedConfig> {
48
55
  readonly input: GetServiceSettingsCommandInput;
49
56
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
57
+ /**
58
+ * @public
59
+ */
50
60
  constructor(input: GetServiceSettingsCommandInput);
51
61
  /**
52
62
  * @internal
53
63
  */
54
64
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetServiceSettingsCommandInput, GetServiceSettingsCommandOutput>;
65
+ /**
66
+ * @internal
67
+ */
55
68
  private serialize;
69
+ /**
70
+ * @internal
71
+ */
56
72
  private deserialize;
57
73
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient";
5
5
  import { ListAssociationsForLicenseConfigurationRequest, ListAssociationsForLicenseConfigurationResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListAssociationsForLicenseConfigurationCommand}.
8
10
  */
9
11
  export interface ListAssociationsForLicenseConfigurationCommandInput extends ListAssociationsForLicenseConfigurationRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListAssociationsForLicenseConfigurationCommand}.
13
17
  */
14
18
  export interface ListAssociationsForLicenseConfigurationCommandOutput extends ListAssociationsForLicenseConfigurationResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists the resource associations for the specified license configuration.</p>
18
23
  * <p>Resource associations need not consume licenses from a license configuration.
19
24
  * For example, an AMI or a stopped instance might not consume a license (depending on
@@ -28,6 +33,8 @@ export interface ListAssociationsForLicenseConfigurationCommandOutput extends Li
28
33
  * const response = await client.send(command);
29
34
  * ```
30
35
  *
36
+ * @param ListAssociationsForLicenseConfigurationCommandInput - {@link ListAssociationsForLicenseConfigurationCommandInput}
37
+ * @returns {@link ListAssociationsForLicenseConfigurationCommandOutput}
31
38
  * @see {@link ListAssociationsForLicenseConfigurationCommandInput} for command's `input` shape.
32
39
  * @see {@link ListAssociationsForLicenseConfigurationCommandOutput} for command's `response` shape.
33
40
  * @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
@@ -56,11 +63,20 @@ export interface ListAssociationsForLicenseConfigurationCommandOutput extends Li
56
63
  export declare class ListAssociationsForLicenseConfigurationCommand extends $Command<ListAssociationsForLicenseConfigurationCommandInput, ListAssociationsForLicenseConfigurationCommandOutput, LicenseManagerClientResolvedConfig> {
57
64
  readonly input: ListAssociationsForLicenseConfigurationCommandInput;
58
65
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
66
+ /**
67
+ * @public
68
+ */
59
69
  constructor(input: ListAssociationsForLicenseConfigurationCommandInput);
60
70
  /**
61
71
  * @internal
62
72
  */
63
73
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAssociationsForLicenseConfigurationCommandInput, ListAssociationsForLicenseConfigurationCommandOutput>;
74
+ /**
75
+ * @internal
76
+ */
64
77
  private serialize;
78
+ /**
79
+ * @internal
80
+ */
65
81
  private deserialize;
66
82
  }