@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.
- package/dist-types/LicenseManager.d.ts +51 -0
- package/dist-types/LicenseManagerClient.d.ts +24 -4
- package/dist-types/commands/AcceptGrantCommand.d.ts +16 -0
- package/dist-types/commands/CheckInLicenseCommand.d.ts +16 -0
- package/dist-types/commands/CheckoutBorrowLicenseCommand.d.ts +16 -0
- package/dist-types/commands/CheckoutLicenseCommand.d.ts +16 -0
- package/dist-types/commands/CreateGrantCommand.d.ts +16 -0
- package/dist-types/commands/CreateGrantVersionCommand.d.ts +16 -0
- package/dist-types/commands/CreateLicenseCommand.d.ts +16 -0
- package/dist-types/commands/CreateLicenseConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/CreateLicenseConversionTaskForResourceCommand.d.ts +16 -0
- package/dist-types/commands/CreateLicenseManagerReportGeneratorCommand.d.ts +16 -0
- package/dist-types/commands/CreateLicenseVersionCommand.d.ts +16 -0
- package/dist-types/commands/CreateTokenCommand.d.ts +16 -0
- package/dist-types/commands/DeleteGrantCommand.d.ts +16 -0
- package/dist-types/commands/DeleteLicenseCommand.d.ts +16 -0
- package/dist-types/commands/DeleteLicenseConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteLicenseManagerReportGeneratorCommand.d.ts +16 -0
- package/dist-types/commands/DeleteTokenCommand.d.ts +16 -0
- package/dist-types/commands/ExtendLicenseConsumptionCommand.d.ts +16 -0
- package/dist-types/commands/GetAccessTokenCommand.d.ts +16 -0
- package/dist-types/commands/GetGrantCommand.d.ts +16 -0
- package/dist-types/commands/GetLicenseCommand.d.ts +16 -0
- package/dist-types/commands/GetLicenseConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/GetLicenseConversionTaskCommand.d.ts +16 -0
- package/dist-types/commands/GetLicenseManagerReportGeneratorCommand.d.ts +16 -0
- package/dist-types/commands/GetLicenseUsageCommand.d.ts +16 -0
- package/dist-types/commands/GetServiceSettingsCommand.d.ts +16 -0
- package/dist-types/commands/ListAssociationsForLicenseConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/ListDistributedGrantsCommand.d.ts +16 -0
- package/dist-types/commands/ListFailuresForLicenseConfigurationOperationsCommand.d.ts +16 -0
- package/dist-types/commands/ListLicenseConfigurationsCommand.d.ts +16 -0
- package/dist-types/commands/ListLicenseConversionTasksCommand.d.ts +16 -0
- package/dist-types/commands/ListLicenseManagerReportGeneratorsCommand.d.ts +16 -0
- package/dist-types/commands/ListLicenseSpecificationsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ListLicenseVersionsCommand.d.ts +16 -0
- package/dist-types/commands/ListLicensesCommand.d.ts +16 -0
- package/dist-types/commands/ListReceivedGrantsCommand.d.ts +16 -0
- package/dist-types/commands/ListReceivedGrantsForOrganizationCommand.d.ts +16 -0
- package/dist-types/commands/ListReceivedLicensesCommand.d.ts +16 -0
- package/dist-types/commands/ListReceivedLicensesForOrganizationCommand.d.ts +16 -0
- package/dist-types/commands/ListResourceInventoryCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ListTokensCommand.d.ts +16 -0
- package/dist-types/commands/ListUsageForLicenseConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/RejectGrantCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateLicenseConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateLicenseManagerReportGeneratorCommand.d.ts +16 -0
- package/dist-types/commands/UpdateLicenseSpecificationsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateServiceSettingsCommand.d.ts +16 -0
- package/dist-types/models/LicenseManagerServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +408 -0
- 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 { ListDistributedGrantsRequest, ListDistributedGrantsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListDistributedGrantsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListDistributedGrantsCommandInput extends ListDistributedGrantsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListDistributedGrantsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListDistributedGrantsCommandOutput extends ListDistributedGrantsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the grants distributed for 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 ListDistributedGrantsCommandOutput extends ListDistributedGrant
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListDistributedGrantsCommandInput - {@link ListDistributedGrantsCommandInput}
|
|
34
|
+
* @returns {@link ListDistributedGrantsCommandOutput}
|
|
28
35
|
* @see {@link ListDistributedGrantsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListDistributedGrantsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
|
|
@@ -56,11 +63,20 @@ export interface ListDistributedGrantsCommandOutput extends ListDistributedGrant
|
|
|
56
63
|
export declare class ListDistributedGrantsCommand extends $Command<ListDistributedGrantsCommandInput, ListDistributedGrantsCommandOutput, LicenseManagerClientResolvedConfig> {
|
|
57
64
|
readonly input: ListDistributedGrantsCommandInput;
|
|
58
65
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
59
69
|
constructor(input: ListDistributedGrantsCommandInput);
|
|
60
70
|
/**
|
|
61
71
|
* @internal
|
|
62
72
|
*/
|
|
63
73
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListDistributedGrantsCommandInput, ListDistributedGrantsCommandOutput>;
|
|
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 { ListFailuresForLicenseConfigurationOperationsRequest, ListFailuresForLicenseConfigurationOperationsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListFailuresForLicenseConfigurationOperationsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListFailuresForLicenseConfigurationOperationsCommandInput extends ListFailuresForLicenseConfigurationOperationsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListFailuresForLicenseConfigurationOperationsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListFailuresForLicenseConfigurationOperationsCommandOutput extends ListFailuresForLicenseConfigurationOperationsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the license configuration operations that failed.</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 ListFailuresForLicenseConfigurationOperationsCommandOutput exte
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListFailuresForLicenseConfigurationOperationsCommandInput - {@link ListFailuresForLicenseConfigurationOperationsCommandInput}
|
|
34
|
+
* @returns {@link ListFailuresForLicenseConfigurationOperationsCommandOutput}
|
|
28
35
|
* @see {@link ListFailuresForLicenseConfigurationOperationsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListFailuresForLicenseConfigurationOperationsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface ListFailuresForLicenseConfigurationOperationsCommandOutput exte
|
|
|
50
57
|
export declare class ListFailuresForLicenseConfigurationOperationsCommand extends $Command<ListFailuresForLicenseConfigurationOperationsCommandInput, ListFailuresForLicenseConfigurationOperationsCommandOutput, LicenseManagerClientResolvedConfig> {
|
|
51
58
|
readonly input: ListFailuresForLicenseConfigurationOperationsCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: ListFailuresForLicenseConfigurationOperationsCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListFailuresForLicenseConfigurationOperationsCommandInput, ListFailuresForLicenseConfigurationOperationsCommandOutput>;
|
|
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 { ListLicenseConfigurationsRequest, ListLicenseConfigurationsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListLicenseConfigurationsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListLicenseConfigurationsCommandInput extends ListLicenseConfigurationsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListLicenseConfigurationsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListLicenseConfigurationsCommandOutput extends ListLicenseConfigurationsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the license configurations for your account.</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 ListLicenseConfigurationsCommandOutput extends ListLicenseConfi
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListLicenseConfigurationsCommandInput - {@link ListLicenseConfigurationsCommandInput}
|
|
34
|
+
* @returns {@link ListLicenseConfigurationsCommandOutput}
|
|
28
35
|
* @see {@link ListLicenseConfigurationsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListLicenseConfigurationsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface ListLicenseConfigurationsCommandOutput extends ListLicenseConfi
|
|
|
53
60
|
export declare class ListLicenseConfigurationsCommand extends $Command<ListLicenseConfigurationsCommandInput, ListLicenseConfigurationsCommandOutput, LicenseManagerClientResolvedConfig> {
|
|
54
61
|
readonly input: ListLicenseConfigurationsCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: ListLicenseConfigurationsCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListLicenseConfigurationsCommandInput, ListLicenseConfigurationsCommandOutput>;
|
|
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 { ListLicenseConversionTasksRequest, ListLicenseConversionTasksResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListLicenseConversionTasksCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListLicenseConversionTasksCommandInput extends ListLicenseConversionTasksRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListLicenseConversionTasksCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListLicenseConversionTasksCommandOutput extends ListLicenseConversionTasksResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the license type conversion tasks for your account.</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 ListLicenseConversionTasksCommandOutput extends ListLicenseConv
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListLicenseConversionTasksCommandInput - {@link ListLicenseConversionTasksCommandInput}
|
|
34
|
+
* @returns {@link ListLicenseConversionTasksCommandOutput}
|
|
28
35
|
* @see {@link ListLicenseConversionTasksCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListLicenseConversionTasksCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface ListLicenseConversionTasksCommandOutput extends ListLicenseConv
|
|
|
50
57
|
export declare class ListLicenseConversionTasksCommand extends $Command<ListLicenseConversionTasksCommandInput, ListLicenseConversionTasksCommandOutput, LicenseManagerClientResolvedConfig> {
|
|
51
58
|
readonly input: ListLicenseConversionTasksCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: ListLicenseConversionTasksCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListLicenseConversionTasksCommandInput, ListLicenseConversionTasksCommandOutput>;
|
|
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 { ListLicenseManagerReportGeneratorsRequest, ListLicenseManagerReportGeneratorsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListLicenseManagerReportGeneratorsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListLicenseManagerReportGeneratorsCommandInput extends ListLicenseManagerReportGeneratorsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListLicenseManagerReportGeneratorsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListLicenseManagerReportGeneratorsCommandOutput extends ListLicenseManagerReportGeneratorsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the report generators for your account.</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 ListLicenseManagerReportGeneratorsCommandOutput extends ListLic
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListLicenseManagerReportGeneratorsCommandInput - {@link ListLicenseManagerReportGeneratorsCommandInput}
|
|
34
|
+
* @returns {@link ListLicenseManagerReportGeneratorsCommandOutput}
|
|
28
35
|
* @see {@link ListLicenseManagerReportGeneratorsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListLicenseManagerReportGeneratorsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
|
|
@@ -59,11 +66,20 @@ export interface ListLicenseManagerReportGeneratorsCommandOutput extends ListLic
|
|
|
59
66
|
export declare class ListLicenseManagerReportGeneratorsCommand extends $Command<ListLicenseManagerReportGeneratorsCommandInput, ListLicenseManagerReportGeneratorsCommandOutput, LicenseManagerClientResolvedConfig> {
|
|
60
67
|
readonly input: ListLicenseManagerReportGeneratorsCommandInput;
|
|
61
68
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
69
|
+
/**
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
62
72
|
constructor(input: ListLicenseManagerReportGeneratorsCommandInput);
|
|
63
73
|
/**
|
|
64
74
|
* @internal
|
|
65
75
|
*/
|
|
66
76
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListLicenseManagerReportGeneratorsCommandInput, ListLicenseManagerReportGeneratorsCommandOutput>;
|
|
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 { ListLicenseSpecificationsForResourceRequest, ListLicenseSpecificationsForResourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListLicenseSpecificationsForResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListLicenseSpecificationsForResourceCommandInput extends ListLicenseSpecificationsForResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListLicenseSpecificationsForResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListLicenseSpecificationsForResourceCommandOutput extends ListLicenseSpecificationsForResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Describes the license configurations for the specified resource.</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 ListLicenseSpecificationsForResourceCommandOutput extends ListL
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListLicenseSpecificationsForResourceCommandInput - {@link ListLicenseSpecificationsForResourceCommandInput}
|
|
34
|
+
* @returns {@link ListLicenseSpecificationsForResourceCommandOutput}
|
|
28
35
|
* @see {@link ListLicenseSpecificationsForResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListLicenseSpecificationsForResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface ListLicenseSpecificationsForResourceCommandOutput extends ListL
|
|
|
50
57
|
export declare class ListLicenseSpecificationsForResourceCommand extends $Command<ListLicenseSpecificationsForResourceCommandInput, ListLicenseSpecificationsForResourceCommandOutput, LicenseManagerClientResolvedConfig> {
|
|
51
58
|
readonly input: ListLicenseSpecificationsForResourceCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: ListLicenseSpecificationsForResourceCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListLicenseSpecificationsForResourceCommandInput, ListLicenseSpecificationsForResourceCommandOutput>;
|
|
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 { ListLicenseVersionsRequest, ListLicenseVersionsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListLicenseVersionsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListLicenseVersionsCommandInput extends ListLicenseVersionsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListLicenseVersionsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListLicenseVersionsCommandOutput extends ListLicenseVersionsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists all versions 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 ListLicenseVersionsCommandOutput extends ListLicenseVersionsRes
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListLicenseVersionsCommandInput - {@link ListLicenseVersionsCommandInput}
|
|
34
|
+
* @returns {@link ListLicenseVersionsCommandOutput}
|
|
28
35
|
* @see {@link ListLicenseVersionsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListLicenseVersionsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface ListLicenseVersionsCommandOutput extends ListLicenseVersionsRes
|
|
|
50
57
|
export declare class ListLicenseVersionsCommand extends $Command<ListLicenseVersionsCommandInput, ListLicenseVersionsCommandOutput, LicenseManagerClientResolvedConfig> {
|
|
51
58
|
readonly input: ListLicenseVersionsCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: ListLicenseVersionsCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListLicenseVersionsCommandInput, ListLicenseVersionsCommandOutput>;
|
|
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 { ListLicensesRequest, ListLicensesResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListLicensesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListLicensesCommandInput extends ListLicensesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListLicensesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListLicensesCommandOutput extends ListLicensesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the licenses for your account.</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 ListLicensesCommandOutput extends ListLicensesResponse, __Metad
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListLicensesCommandInput - {@link ListLicensesCommandInput}
|
|
34
|
+
* @returns {@link ListLicensesCommandOutput}
|
|
28
35
|
* @see {@link ListLicensesCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListLicensesCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface ListLicensesCommandOutput extends ListLicensesResponse, __Metad
|
|
|
53
60
|
export declare class ListLicensesCommand extends $Command<ListLicensesCommandInput, ListLicensesCommandOutput, LicenseManagerClientResolvedConfig> {
|
|
54
61
|
readonly input: ListLicensesCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: ListLicensesCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListLicensesCommandInput, ListLicensesCommandOutput>;
|
|
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 { ListReceivedGrantsRequest, ListReceivedGrantsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListReceivedGrantsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListReceivedGrantsCommandInput extends ListReceivedGrantsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListReceivedGrantsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListReceivedGrantsCommandOutput extends ListReceivedGrantsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists grants that are received but not accepted.</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 ListReceivedGrantsCommandOutput extends ListReceivedGrantsRespo
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListReceivedGrantsCommandInput - {@link ListReceivedGrantsCommandInput}
|
|
34
|
+
* @returns {@link ListReceivedGrantsCommandOutput}
|
|
28
35
|
* @see {@link ListReceivedGrantsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListReceivedGrantsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
|
|
@@ -56,11 +63,20 @@ export interface ListReceivedGrantsCommandOutput extends ListReceivedGrantsRespo
|
|
|
56
63
|
export declare class ListReceivedGrantsCommand extends $Command<ListReceivedGrantsCommandInput, ListReceivedGrantsCommandOutput, LicenseManagerClientResolvedConfig> {
|
|
57
64
|
readonly input: ListReceivedGrantsCommandInput;
|
|
58
65
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
59
69
|
constructor(input: ListReceivedGrantsCommandInput);
|
|
60
70
|
/**
|
|
61
71
|
* @internal
|
|
62
72
|
*/
|
|
63
73
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListReceivedGrantsCommandInput, ListReceivedGrantsCommandOutput>;
|
|
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 { ListReceivedGrantsForOrganizationRequest, ListReceivedGrantsForOrganizationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListReceivedGrantsForOrganizationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListReceivedGrantsForOrganizationCommandInput extends ListReceivedGrantsForOrganizationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListReceivedGrantsForOrganizationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListReceivedGrantsForOrganizationCommandOutput extends ListReceivedGrantsForOrganizationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the grants received for all accounts in the organization.</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 ListReceivedGrantsForOrganizationCommandOutput extends ListRece
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListReceivedGrantsForOrganizationCommandInput - {@link ListReceivedGrantsForOrganizationCommandInput}
|
|
34
|
+
* @returns {@link ListReceivedGrantsForOrganizationCommandOutput}
|
|
28
35
|
* @see {@link ListReceivedGrantsForOrganizationCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListReceivedGrantsForOrganizationCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
|
|
@@ -56,11 +63,20 @@ export interface ListReceivedGrantsForOrganizationCommandOutput extends ListRece
|
|
|
56
63
|
export declare class ListReceivedGrantsForOrganizationCommand extends $Command<ListReceivedGrantsForOrganizationCommandInput, ListReceivedGrantsForOrganizationCommandOutput, LicenseManagerClientResolvedConfig> {
|
|
57
64
|
readonly input: ListReceivedGrantsForOrganizationCommandInput;
|
|
58
65
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
59
69
|
constructor(input: ListReceivedGrantsForOrganizationCommandInput);
|
|
60
70
|
/**
|
|
61
71
|
* @internal
|
|
62
72
|
*/
|
|
63
73
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListReceivedGrantsForOrganizationCommandInput, ListReceivedGrantsForOrganizationCommandOutput>;
|
|
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 { ListReceivedLicensesRequest, ListReceivedLicensesResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListReceivedLicensesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListReceivedLicensesCommandInput extends ListReceivedLicensesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListReceivedLicensesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListReceivedLicensesCommandOutput extends ListReceivedLicensesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists received licenses.</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 ListReceivedLicensesCommandOutput extends ListReceivedLicensesR
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListReceivedLicensesCommandInput - {@link ListReceivedLicensesCommandInput}
|
|
34
|
+
* @returns {@link ListReceivedLicensesCommandOutput}
|
|
28
35
|
* @see {@link ListReceivedLicensesCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListReceivedLicensesCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
|
|
@@ -56,11 +63,20 @@ export interface ListReceivedLicensesCommandOutput extends ListReceivedLicensesR
|
|
|
56
63
|
export declare class ListReceivedLicensesCommand extends $Command<ListReceivedLicensesCommandInput, ListReceivedLicensesCommandOutput, LicenseManagerClientResolvedConfig> {
|
|
57
64
|
readonly input: ListReceivedLicensesCommandInput;
|
|
58
65
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
59
69
|
constructor(input: ListReceivedLicensesCommandInput);
|
|
60
70
|
/**
|
|
61
71
|
* @internal
|
|
62
72
|
*/
|
|
63
73
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListReceivedLicensesCommandInput, ListReceivedLicensesCommandOutput>;
|
|
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 { ListReceivedLicensesForOrganizationRequest, ListReceivedLicensesForOrganizationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListReceivedLicensesForOrganizationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListReceivedLicensesForOrganizationCommandInput extends ListReceivedLicensesForOrganizationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListReceivedLicensesForOrganizationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListReceivedLicensesForOrganizationCommandOutput extends ListReceivedLicensesForOrganizationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the licenses received for all accounts in the organization.</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 ListReceivedLicensesForOrganizationCommandOutput extends ListRe
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListReceivedLicensesForOrganizationCommandInput - {@link ListReceivedLicensesForOrganizationCommandInput}
|
|
34
|
+
* @returns {@link ListReceivedLicensesForOrganizationCommandOutput}
|
|
28
35
|
* @see {@link ListReceivedLicensesForOrganizationCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListReceivedLicensesForOrganizationCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
|
|
@@ -56,11 +63,20 @@ export interface ListReceivedLicensesForOrganizationCommandOutput extends ListRe
|
|
|
56
63
|
export declare class ListReceivedLicensesForOrganizationCommand extends $Command<ListReceivedLicensesForOrganizationCommandInput, ListReceivedLicensesForOrganizationCommandOutput, LicenseManagerClientResolvedConfig> {
|
|
57
64
|
readonly input: ListReceivedLicensesForOrganizationCommandInput;
|
|
58
65
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
59
69
|
constructor(input: ListReceivedLicensesForOrganizationCommandInput);
|
|
60
70
|
/**
|
|
61
71
|
* @internal
|
|
62
72
|
*/
|
|
63
73
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: LicenseManagerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListReceivedLicensesForOrganizationCommandInput, ListReceivedLicensesForOrganizationCommandOutput>;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
64
77
|
private serialize;
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
65
81
|
private deserialize;
|
|
66
82
|
}
|