@aws-sdk/client-license-manager 3.321.1 → 3.326.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/commands/AcceptGrantCommand.d.ts +8 -0
- package/dist-types/commands/CheckInLicenseCommand.d.ts +4 -0
- package/dist-types/commands/CheckoutBorrowLicenseCommand.d.ts +24 -0
- package/dist-types/commands/CheckoutLicenseCommand.d.ts +19 -0
- package/dist-types/commands/CreateGrantCommand.d.ts +8 -0
- package/dist-types/commands/CreateGrantVersionCommand.d.ts +8 -0
- package/dist-types/commands/CreateLicenseCommand.d.ts +8 -0
- package/dist-types/commands/CreateLicenseConfigurationCommand.d.ts +6 -0
- package/dist-types/commands/CreateLicenseConversionTaskForResourceCommand.d.ts +6 -0
- package/dist-types/commands/CreateLicenseManagerReportGeneratorCommand.d.ts +6 -0
- package/dist-types/commands/CreateLicenseVersionCommand.d.ts +8 -0
- package/dist-types/commands/CreateTokenCommand.d.ts +8 -0
- package/dist-types/commands/DeleteGrantCommand.d.ts +8 -0
- package/dist-types/commands/DeleteLicenseCommand.d.ts +7 -0
- package/dist-types/commands/DeleteLicenseConfigurationCommand.d.ts +4 -0
- package/dist-types/commands/DeleteLicenseManagerReportGeneratorCommand.d.ts +4 -0
- package/dist-types/commands/DeleteTokenCommand.d.ts +4 -0
- package/dist-types/commands/ExtendLicenseConsumptionCommand.d.ts +7 -0
- package/dist-types/commands/GetAccessTokenCommand.d.ts +6 -0
- package/dist-types/commands/GetGrantCommand.d.ts +22 -0
- package/dist-types/commands/GetLicenseCommand.d.ts +51 -0
- package/dist-types/commands/GetLicenseConfigurationCommand.d.ts +54 -0
- package/dist-types/commands/GetLicenseConversionTaskCommand.d.ts +18 -0
- package/dist-types/commands/GetLicenseManagerReportGeneratorCommand.d.ts +37 -0
- package/dist-types/commands/GetLicenseUsageCommand.d.ts +15 -0
- package/dist-types/commands/GetServiceSettingsCommand.d.ts +12 -0
- package/dist-types/commands/ListAssociationsForLicenseConfigurationCommand.d.ts +15 -0
- package/dist-types/commands/ListDistributedGrantsCommand.d.ts +25 -0
- package/dist-types/commands/ListFailuresForLicenseConfigurationOperationsCommand.d.ts +23 -0
- package/dist-types/commands/ListLicenseConfigurationsCommand.d.ts +53 -0
- package/dist-types/commands/ListLicenseConversionTasksCommand.d.ts +23 -0
- package/dist-types/commands/ListLicenseManagerReportGeneratorsCommand.d.ts +40 -0
- package/dist-types/commands/ListLicenseSpecificationsForResourceCommand.d.ts +12 -0
- package/dist-types/commands/ListLicenseVersionsCommand.d.ts +54 -0
- package/dist-types/commands/ListLicensesCommand.d.ts +54 -0
- package/dist-types/commands/ListReceivedGrantsCommand.d.ts +25 -0
- package/dist-types/commands/ListReceivedGrantsForOrganizationCommand.d.ts +25 -0
- package/dist-types/commands/ListReceivedLicensesCommand.d.ts +61 -0
- package/dist-types/commands/ListReceivedLicensesForOrganizationCommand.d.ts +61 -0
- package/dist-types/commands/ListResourceInventoryCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +11 -0
- package/dist-types/commands/ListTokensCommand.d.ts +21 -0
- package/dist-types/commands/ListUsageForLicenseConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/RejectGrantCommand.d.ts +8 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateLicenseConfigurationCommand.d.ts +4 -0
- package/dist-types/commands/UpdateLicenseManagerReportGeneratorCommand.d.ts +4 -0
- package/dist-types/commands/UpdateLicenseSpecificationsForResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateServiceSettingsCommand.d.ts +4 -0
- package/package.json +16 -16
|
@@ -31,6 +31,12 @@ export interface AcceptGrantCommandOutput extends AcceptGrantResponse, __Metadat
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new AcceptGrantCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // AcceptGrantResponse
|
|
35
|
+
* // GrantArn: "STRING_VALUE",
|
|
36
|
+
* // Status: "PENDING_WORKFLOW" || "PENDING_ACCEPT" || "REJECTED" || "ACTIVE" || "FAILED_WORKFLOW" || "DELETED" || "PENDING_DELETE" || "DISABLED" || "WORKFLOW_COMPLETED",
|
|
37
|
+
* // Version: "STRING_VALUE",
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
34
40
|
* ```
|
|
35
41
|
*
|
|
36
42
|
* @param AcceptGrantCommandInput - {@link AcceptGrantCommandInput}
|
|
@@ -61,6 +67,8 @@ export interface AcceptGrantCommandOutput extends AcceptGrantResponse, __Metadat
|
|
|
61
67
|
* @throws {@link ValidationException} (client fault)
|
|
62
68
|
* <p>The provided input is not valid. Try your request again.</p>
|
|
63
69
|
*
|
|
70
|
+
* @throws {@link LicenseManagerServiceException}
|
|
71
|
+
* <p>Base exception class for all service exceptions from LicenseManager service.</p>
|
|
64
72
|
*
|
|
65
73
|
*/
|
|
66
74
|
export declare class AcceptGrantCommand extends $Command<AcceptGrantCommandInput, AcceptGrantCommandOutput, LicenseManagerClientResolvedConfig> {
|
|
@@ -32,6 +32,8 @@ export interface CheckInLicenseCommandOutput extends CheckInLicenseResponse, __M
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new CheckInLicenseCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param CheckInLicenseCommandInput - {@link CheckInLicenseCommandInput}
|
|
@@ -65,6 +67,8 @@ export interface CheckInLicenseCommandOutput extends CheckInLicenseResponse, __M
|
|
|
65
67
|
* @throws {@link ValidationException} (client fault)
|
|
66
68
|
* <p>The provided input is not valid. Try your request again.</p>
|
|
67
69
|
*
|
|
70
|
+
* @throws {@link LicenseManagerServiceException}
|
|
71
|
+
* <p>Base exception class for all service exceptions from LicenseManager service.</p>
|
|
68
72
|
*
|
|
69
73
|
*/
|
|
70
74
|
export declare class CheckInLicenseCommand extends $Command<CheckInLicenseCommandInput, CheckInLicenseCommandOutput, LicenseManagerClientResolvedConfig> {
|
|
@@ -47,6 +47,28 @@ export interface CheckoutBorrowLicenseCommandOutput extends CheckoutBorrowLicens
|
|
|
47
47
|
* };
|
|
48
48
|
* const command = new CheckoutBorrowLicenseCommand(input);
|
|
49
49
|
* const response = await client.send(command);
|
|
50
|
+
* // { // CheckoutBorrowLicenseResponse
|
|
51
|
+
* // LicenseArn: "STRING_VALUE",
|
|
52
|
+
* // LicenseConsumptionToken: "STRING_VALUE",
|
|
53
|
+
* // EntitlementsAllowed: [ // EntitlementDataList
|
|
54
|
+
* // { // EntitlementData
|
|
55
|
+
* // Name: "STRING_VALUE", // required
|
|
56
|
+
* // Value: "STRING_VALUE",
|
|
57
|
+
* // Unit: "Count" || "None" || "Seconds" || "Microseconds" || "Milliseconds" || "Bytes" || "Kilobytes" || "Megabytes" || "Gigabytes" || "Terabytes" || "Bits" || "Kilobits" || "Megabits" || "Gigabits" || "Terabits" || "Percent" || "Bytes/Second" || "Kilobytes/Second" || "Megabytes/Second" || "Gigabytes/Second" || "Terabytes/Second" || "Bits/Second" || "Kilobits/Second" || "Megabits/Second" || "Gigabits/Second" || "Terabits/Second" || "Count/Second", // required
|
|
58
|
+
* // },
|
|
59
|
+
* // ],
|
|
60
|
+
* // NodeId: "STRING_VALUE",
|
|
61
|
+
* // SignedToken: "STRING_VALUE",
|
|
62
|
+
* // IssuedAt: "STRING_VALUE",
|
|
63
|
+
* // Expiration: "STRING_VALUE",
|
|
64
|
+
* // CheckoutMetadata: [ // MetadataList
|
|
65
|
+
* // { // Metadata
|
|
66
|
+
* // Name: "STRING_VALUE",
|
|
67
|
+
* // Value: "STRING_VALUE",
|
|
68
|
+
* // },
|
|
69
|
+
* // ],
|
|
70
|
+
* // };
|
|
71
|
+
*
|
|
50
72
|
* ```
|
|
51
73
|
*
|
|
52
74
|
* @param CheckoutBorrowLicenseCommandInput - {@link CheckoutBorrowLicenseCommandInput}
|
|
@@ -89,6 +111,8 @@ export interface CheckoutBorrowLicenseCommandOutput extends CheckoutBorrowLicens
|
|
|
89
111
|
* @throws {@link ValidationException} (client fault)
|
|
90
112
|
* <p>The provided input is not valid. Try your request again.</p>
|
|
91
113
|
*
|
|
114
|
+
* @throws {@link LicenseManagerServiceException}
|
|
115
|
+
* <p>Base exception class for all service exceptions from LicenseManager service.</p>
|
|
92
116
|
*
|
|
93
117
|
*/
|
|
94
118
|
export declare class CheckoutBorrowLicenseCommand extends $Command<CheckoutBorrowLicenseCommandInput, CheckoutBorrowLicenseCommandOutput, LicenseManagerClientResolvedConfig> {
|
|
@@ -47,6 +47,23 @@ export interface CheckoutLicenseCommandOutput extends CheckoutLicenseResponse, _
|
|
|
47
47
|
* };
|
|
48
48
|
* const command = new CheckoutLicenseCommand(input);
|
|
49
49
|
* const response = await client.send(command);
|
|
50
|
+
* // { // CheckoutLicenseResponse
|
|
51
|
+
* // CheckoutType: "PROVISIONAL" || "PERPETUAL",
|
|
52
|
+
* // LicenseConsumptionToken: "STRING_VALUE",
|
|
53
|
+
* // EntitlementsAllowed: [ // EntitlementDataList
|
|
54
|
+
* // { // EntitlementData
|
|
55
|
+
* // Name: "STRING_VALUE", // required
|
|
56
|
+
* // Value: "STRING_VALUE",
|
|
57
|
+
* // Unit: "Count" || "None" || "Seconds" || "Microseconds" || "Milliseconds" || "Bytes" || "Kilobytes" || "Megabytes" || "Gigabytes" || "Terabytes" || "Bits" || "Kilobits" || "Megabits" || "Gigabits" || "Terabits" || "Percent" || "Bytes/Second" || "Kilobytes/Second" || "Megabytes/Second" || "Gigabytes/Second" || "Terabytes/Second" || "Bits/Second" || "Kilobits/Second" || "Megabits/Second" || "Gigabits/Second" || "Terabits/Second" || "Count/Second", // required
|
|
58
|
+
* // },
|
|
59
|
+
* // ],
|
|
60
|
+
* // SignedToken: "STRING_VALUE",
|
|
61
|
+
* // NodeId: "STRING_VALUE",
|
|
62
|
+
* // IssuedAt: "STRING_VALUE",
|
|
63
|
+
* // Expiration: "STRING_VALUE",
|
|
64
|
+
* // LicenseArn: "STRING_VALUE",
|
|
65
|
+
* // };
|
|
66
|
+
*
|
|
50
67
|
* ```
|
|
51
68
|
*
|
|
52
69
|
* @param CheckoutLicenseCommandInput - {@link CheckoutLicenseCommandInput}
|
|
@@ -86,6 +103,8 @@ export interface CheckoutLicenseCommandOutput extends CheckoutLicenseResponse, _
|
|
|
86
103
|
* @throws {@link ValidationException} (client fault)
|
|
87
104
|
* <p>The provided input is not valid. Try your request again.</p>
|
|
88
105
|
*
|
|
106
|
+
* @throws {@link LicenseManagerServiceException}
|
|
107
|
+
* <p>Base exception class for all service exceptions from LicenseManager service.</p>
|
|
89
108
|
*
|
|
90
109
|
*/
|
|
91
110
|
export declare class CheckoutLicenseCommand extends $Command<CheckoutLicenseCommandInput, CheckoutLicenseCommandOutput, LicenseManagerClientResolvedConfig> {
|
|
@@ -42,6 +42,12 @@ export interface CreateGrantCommandOutput extends CreateGrantResponse, __Metadat
|
|
|
42
42
|
* };
|
|
43
43
|
* const command = new CreateGrantCommand(input);
|
|
44
44
|
* const response = await client.send(command);
|
|
45
|
+
* // { // CreateGrantResponse
|
|
46
|
+
* // GrantArn: "STRING_VALUE",
|
|
47
|
+
* // Status: "PENDING_WORKFLOW" || "PENDING_ACCEPT" || "REJECTED" || "ACTIVE" || "FAILED_WORKFLOW" || "DELETED" || "PENDING_DELETE" || "DISABLED" || "WORKFLOW_COMPLETED",
|
|
48
|
+
* // Version: "STRING_VALUE",
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
45
51
|
* ```
|
|
46
52
|
*
|
|
47
53
|
* @param CreateGrantCommandInput - {@link CreateGrantCommandInput}
|
|
@@ -72,6 +78,8 @@ export interface CreateGrantCommandOutput extends CreateGrantResponse, __Metadat
|
|
|
72
78
|
* @throws {@link ValidationException} (client fault)
|
|
73
79
|
* <p>The provided input is not valid. Try your request again.</p>
|
|
74
80
|
*
|
|
81
|
+
* @throws {@link LicenseManagerServiceException}
|
|
82
|
+
* <p>Base exception class for all service exceptions from LicenseManager service.</p>
|
|
75
83
|
*
|
|
76
84
|
*/
|
|
77
85
|
export declare class CreateGrantCommand extends $Command<CreateGrantCommandInput, CreateGrantCommandOutput, LicenseManagerClientResolvedConfig> {
|
|
@@ -43,6 +43,12 @@ export interface CreateGrantVersionCommandOutput extends CreateGrantVersionRespo
|
|
|
43
43
|
* };
|
|
44
44
|
* const command = new CreateGrantVersionCommand(input);
|
|
45
45
|
* const response = await client.send(command);
|
|
46
|
+
* // { // CreateGrantVersionResponse
|
|
47
|
+
* // GrantArn: "STRING_VALUE",
|
|
48
|
+
* // Status: "PENDING_WORKFLOW" || "PENDING_ACCEPT" || "REJECTED" || "ACTIVE" || "FAILED_WORKFLOW" || "DELETED" || "PENDING_DELETE" || "DISABLED" || "WORKFLOW_COMPLETED",
|
|
49
|
+
* // Version: "STRING_VALUE",
|
|
50
|
+
* // };
|
|
51
|
+
*
|
|
46
52
|
* ```
|
|
47
53
|
*
|
|
48
54
|
* @param CreateGrantVersionCommandInput - {@link CreateGrantVersionCommandInput}
|
|
@@ -73,6 +79,8 @@ export interface CreateGrantVersionCommandOutput extends CreateGrantVersionRespo
|
|
|
73
79
|
* @throws {@link ValidationException} (client fault)
|
|
74
80
|
* <p>The provided input is not valid. Try your request again.</p>
|
|
75
81
|
*
|
|
82
|
+
* @throws {@link LicenseManagerServiceException}
|
|
83
|
+
* <p>Base exception class for all service exceptions from LicenseManager service.</p>
|
|
76
84
|
*
|
|
77
85
|
*/
|
|
78
86
|
export declare class CreateGrantVersionCommand extends $Command<CreateGrantVersionCommandInput, CreateGrantVersionCommandOutput, LicenseManagerClientResolvedConfig> {
|
|
@@ -70,6 +70,12 @@ export interface CreateLicenseCommandOutput extends CreateLicenseResponse, __Met
|
|
|
70
70
|
* };
|
|
71
71
|
* const command = new CreateLicenseCommand(input);
|
|
72
72
|
* const response = await client.send(command);
|
|
73
|
+
* // { // CreateLicenseResponse
|
|
74
|
+
* // LicenseArn: "STRING_VALUE",
|
|
75
|
+
* // Status: "AVAILABLE" || "PENDING_AVAILABLE" || "DEACTIVATED" || "SUSPENDED" || "EXPIRED" || "PENDING_DELETE" || "DELETED",
|
|
76
|
+
* // Version: "STRING_VALUE",
|
|
77
|
+
* // };
|
|
78
|
+
*
|
|
73
79
|
* ```
|
|
74
80
|
*
|
|
75
81
|
* @param CreateLicenseCommandInput - {@link CreateLicenseCommandInput}
|
|
@@ -100,6 +106,8 @@ export interface CreateLicenseCommandOutput extends CreateLicenseResponse, __Met
|
|
|
100
106
|
* @throws {@link ValidationException} (client fault)
|
|
101
107
|
* <p>The provided input is not valid. Try your request again.</p>
|
|
102
108
|
*
|
|
109
|
+
* @throws {@link LicenseManagerServiceException}
|
|
110
|
+
* <p>Base exception class for all service exceptions from LicenseManager service.</p>
|
|
103
111
|
*
|
|
104
112
|
*/
|
|
105
113
|
export declare class CreateLicenseCommand extends $Command<CreateLicenseCommandInput, CreateLicenseCommandOutput, LicenseManagerClientResolvedConfig> {
|
|
@@ -64,6 +64,10 @@ export interface CreateLicenseConfigurationCommandOutput extends CreateLicenseCo
|
|
|
64
64
|
* };
|
|
65
65
|
* const command = new CreateLicenseConfigurationCommand(input);
|
|
66
66
|
* const response = await client.send(command);
|
|
67
|
+
* // { // CreateLicenseConfigurationResponse
|
|
68
|
+
* // LicenseConfigurationArn: "STRING_VALUE",
|
|
69
|
+
* // };
|
|
70
|
+
*
|
|
67
71
|
* ```
|
|
68
72
|
*
|
|
69
73
|
* @param CreateLicenseConfigurationCommandInput - {@link CreateLicenseConfigurationCommandInput}
|
|
@@ -91,6 +95,8 @@ export interface CreateLicenseConfigurationCommandOutput extends CreateLicenseCo
|
|
|
91
95
|
* @throws {@link ServerInternalException} (server fault)
|
|
92
96
|
* <p>The server experienced an internal error. Try again.</p>
|
|
93
97
|
*
|
|
98
|
+
* @throws {@link LicenseManagerServiceException}
|
|
99
|
+
* <p>Base exception class for all service exceptions from LicenseManager service.</p>
|
|
94
100
|
*
|
|
95
101
|
*/
|
|
96
102
|
export declare class CreateLicenseConfigurationCommand extends $Command<CreateLicenseConfigurationCommandInput, CreateLicenseConfigurationCommandOutput, LicenseManagerClientResolvedConfig> {
|
|
@@ -37,6 +37,10 @@ export interface CreateLicenseConversionTaskForResourceCommandOutput extends Cre
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new CreateLicenseConversionTaskForResourceCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // { // CreateLicenseConversionTaskForResourceResponse
|
|
41
|
+
* // LicenseConversionTaskId: "STRING_VALUE",
|
|
42
|
+
* // };
|
|
43
|
+
*
|
|
40
44
|
* ```
|
|
41
45
|
*
|
|
42
46
|
* @param CreateLicenseConversionTaskForResourceCommandInput - {@link CreateLicenseConversionTaskForResourceCommandInput}
|
|
@@ -64,6 +68,8 @@ export interface CreateLicenseConversionTaskForResourceCommandOutput extends Cre
|
|
|
64
68
|
* @throws {@link ValidationException} (client fault)
|
|
65
69
|
* <p>The provided input is not valid. Try your request again.</p>
|
|
66
70
|
*
|
|
71
|
+
* @throws {@link LicenseManagerServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from LicenseManager service.</p>
|
|
67
73
|
*
|
|
68
74
|
*/
|
|
69
75
|
export declare class CreateLicenseConversionTaskForResourceCommand extends $Command<CreateLicenseConversionTaskForResourceCommandInput, CreateLicenseConversionTaskForResourceCommandOutput, LicenseManagerClientResolvedConfig> {
|
|
@@ -51,6 +51,10 @@ export interface CreateLicenseManagerReportGeneratorCommandOutput extends Create
|
|
|
51
51
|
* };
|
|
52
52
|
* const command = new CreateLicenseManagerReportGeneratorCommand(input);
|
|
53
53
|
* const response = await client.send(command);
|
|
54
|
+
* // { // CreateLicenseManagerReportGeneratorResponse
|
|
55
|
+
* // LicenseManagerReportGeneratorArn: "STRING_VALUE",
|
|
56
|
+
* // };
|
|
57
|
+
*
|
|
54
58
|
* ```
|
|
55
59
|
*
|
|
56
60
|
* @param CreateLicenseManagerReportGeneratorCommandInput - {@link CreateLicenseManagerReportGeneratorCommandInput}
|
|
@@ -84,6 +88,8 @@ export interface CreateLicenseManagerReportGeneratorCommandOutput extends Create
|
|
|
84
88
|
* @throws {@link ValidationException} (client fault)
|
|
85
89
|
* <p>The provided input is not valid. Try your request again.</p>
|
|
86
90
|
*
|
|
91
|
+
* @throws {@link LicenseManagerServiceException}
|
|
92
|
+
* <p>Base exception class for all service exceptions from LicenseManager service.</p>
|
|
87
93
|
*
|
|
88
94
|
*/
|
|
89
95
|
export declare class CreateLicenseManagerReportGeneratorCommand extends $Command<CreateLicenseManagerReportGeneratorCommandInput, CreateLicenseManagerReportGeneratorCommandOutput, LicenseManagerClientResolvedConfig> {
|
|
@@ -71,6 +71,12 @@ export interface CreateLicenseVersionCommandOutput extends CreateLicenseVersionR
|
|
|
71
71
|
* };
|
|
72
72
|
* const command = new CreateLicenseVersionCommand(input);
|
|
73
73
|
* const response = await client.send(command);
|
|
74
|
+
* // { // CreateLicenseVersionResponse
|
|
75
|
+
* // LicenseArn: "STRING_VALUE",
|
|
76
|
+
* // Version: "STRING_VALUE",
|
|
77
|
+
* // Status: "AVAILABLE" || "PENDING_AVAILABLE" || "DEACTIVATED" || "SUSPENDED" || "EXPIRED" || "PENDING_DELETE" || "DELETED",
|
|
78
|
+
* // };
|
|
79
|
+
*
|
|
74
80
|
* ```
|
|
75
81
|
*
|
|
76
82
|
* @param CreateLicenseVersionCommandInput - {@link CreateLicenseVersionCommandInput}
|
|
@@ -104,6 +110,8 @@ export interface CreateLicenseVersionCommandOutput extends CreateLicenseVersionR
|
|
|
104
110
|
* @throws {@link ValidationException} (client fault)
|
|
105
111
|
* <p>The provided input is not valid. Try your request again.</p>
|
|
106
112
|
*
|
|
113
|
+
* @throws {@link LicenseManagerServiceException}
|
|
114
|
+
* <p>Base exception class for all service exceptions from LicenseManager service.</p>
|
|
107
115
|
*
|
|
108
116
|
*/
|
|
109
117
|
export declare class CreateLicenseVersionCommand extends $Command<CreateLicenseVersionCommandInput, CreateLicenseVersionCommandOutput, LicenseManagerClientResolvedConfig> {
|
|
@@ -42,6 +42,12 @@ export interface CreateTokenCommandOutput extends CreateTokenResponse, __Metadat
|
|
|
42
42
|
* };
|
|
43
43
|
* const command = new CreateTokenCommand(input);
|
|
44
44
|
* const response = await client.send(command);
|
|
45
|
+
* // { // CreateTokenResponse
|
|
46
|
+
* // TokenId: "STRING_VALUE",
|
|
47
|
+
* // TokenType: "REFRESH_TOKEN",
|
|
48
|
+
* // Token: "STRING_VALUE",
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
45
51
|
* ```
|
|
46
52
|
*
|
|
47
53
|
* @param CreateTokenCommandInput - {@link CreateTokenCommandInput}
|
|
@@ -75,6 +81,8 @@ export interface CreateTokenCommandOutput extends CreateTokenResponse, __Metadat
|
|
|
75
81
|
* @throws {@link ValidationException} (client fault)
|
|
76
82
|
* <p>The provided input is not valid. Try your request again.</p>
|
|
77
83
|
*
|
|
84
|
+
* @throws {@link LicenseManagerServiceException}
|
|
85
|
+
* <p>Base exception class for all service exceptions from LicenseManager service.</p>
|
|
78
86
|
*
|
|
79
87
|
*/
|
|
80
88
|
export declare class CreateTokenCommand extends $Command<CreateTokenCommandInput, CreateTokenCommandOutput, LicenseManagerClientResolvedConfig> {
|
|
@@ -33,6 +33,12 @@ export interface DeleteGrantCommandOutput extends DeleteGrantResponse, __Metadat
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DeleteGrantCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // DeleteGrantResponse
|
|
37
|
+
* // GrantArn: "STRING_VALUE",
|
|
38
|
+
* // Status: "PENDING_WORKFLOW" || "PENDING_ACCEPT" || "REJECTED" || "ACTIVE" || "FAILED_WORKFLOW" || "DELETED" || "PENDING_DELETE" || "DISABLED" || "WORKFLOW_COMPLETED",
|
|
39
|
+
* // Version: "STRING_VALUE",
|
|
40
|
+
* // };
|
|
41
|
+
*
|
|
36
42
|
* ```
|
|
37
43
|
*
|
|
38
44
|
* @param DeleteGrantCommandInput - {@link DeleteGrantCommandInput}
|
|
@@ -63,6 +69,8 @@ export interface DeleteGrantCommandOutput extends DeleteGrantResponse, __Metadat
|
|
|
63
69
|
* @throws {@link ValidationException} (client fault)
|
|
64
70
|
* <p>The provided input is not valid. Try your request again.</p>
|
|
65
71
|
*
|
|
72
|
+
* @throws {@link LicenseManagerServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from LicenseManager service.</p>
|
|
66
74
|
*
|
|
67
75
|
*/
|
|
68
76
|
export declare class DeleteGrantCommand extends $Command<DeleteGrantCommandInput, DeleteGrantCommandOutput, LicenseManagerClientResolvedConfig> {
|
|
@@ -32,6 +32,11 @@ export interface DeleteLicenseCommandOutput extends DeleteLicenseResponse, __Met
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteLicenseCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // DeleteLicenseResponse
|
|
36
|
+
* // Status: "PENDING_DELETE" || "DELETED",
|
|
37
|
+
* // DeletionDate: "STRING_VALUE",
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
35
40
|
* ```
|
|
36
41
|
*
|
|
37
42
|
* @param DeleteLicenseCommandInput - {@link DeleteLicenseCommandInput}
|
|
@@ -65,6 +70,8 @@ export interface DeleteLicenseCommandOutput extends DeleteLicenseResponse, __Met
|
|
|
65
70
|
* @throws {@link ValidationException} (client fault)
|
|
66
71
|
* <p>The provided input is not valid. Try your request again.</p>
|
|
67
72
|
*
|
|
73
|
+
* @throws {@link LicenseManagerServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from LicenseManager service.</p>
|
|
68
75
|
*
|
|
69
76
|
*/
|
|
70
77
|
export declare class DeleteLicenseCommand extends $Command<DeleteLicenseCommandInput, DeleteLicenseCommandOutput, LicenseManagerClientResolvedConfig> {
|
|
@@ -32,6 +32,8 @@ export interface DeleteLicenseConfigurationCommandOutput extends DeleteLicenseCo
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteLicenseConfigurationCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param DeleteLicenseConfigurationCommandInput - {@link DeleteLicenseConfigurationCommandInput}
|
|
@@ -56,6 +58,8 @@ export interface DeleteLicenseConfigurationCommandOutput extends DeleteLicenseCo
|
|
|
56
58
|
* @throws {@link ServerInternalException} (server fault)
|
|
57
59
|
* <p>The server experienced an internal error. Try again.</p>
|
|
58
60
|
*
|
|
61
|
+
* @throws {@link LicenseManagerServiceException}
|
|
62
|
+
* <p>Base exception class for all service exceptions from LicenseManager service.</p>
|
|
59
63
|
*
|
|
60
64
|
*/
|
|
61
65
|
export declare class DeleteLicenseConfigurationCommand extends $Command<DeleteLicenseConfigurationCommandInput, DeleteLicenseConfigurationCommandOutput, LicenseManagerClientResolvedConfig> {
|
|
@@ -33,6 +33,8 @@ export interface DeleteLicenseManagerReportGeneratorCommandOutput extends Delete
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DeleteLicenseManagerReportGeneratorCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // {};
|
|
37
|
+
*
|
|
36
38
|
* ```
|
|
37
39
|
*
|
|
38
40
|
* @param DeleteLicenseManagerReportGeneratorCommandInput - {@link DeleteLicenseManagerReportGeneratorCommandInput}
|
|
@@ -66,6 +68,8 @@ export interface DeleteLicenseManagerReportGeneratorCommandOutput extends Delete
|
|
|
66
68
|
* @throws {@link ValidationException} (client fault)
|
|
67
69
|
* <p>The provided input is not valid. Try your request again.</p>
|
|
68
70
|
*
|
|
71
|
+
* @throws {@link LicenseManagerServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from LicenseManager service.</p>
|
|
69
73
|
*
|
|
70
74
|
*/
|
|
71
75
|
export declare class DeleteLicenseManagerReportGeneratorCommand extends $Command<DeleteLicenseManagerReportGeneratorCommandInput, DeleteLicenseManagerReportGeneratorCommandOutput, LicenseManagerClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteTokenCommandOutput extends DeleteTokenResponse, __Metadat
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteTokenCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteTokenCommandInput - {@link DeleteTokenCommandInput}
|
|
@@ -61,6 +63,8 @@ export interface DeleteTokenCommandOutput extends DeleteTokenResponse, __Metadat
|
|
|
61
63
|
* @throws {@link ValidationException} (client fault)
|
|
62
64
|
* <p>The provided input is not valid. Try your request again.</p>
|
|
63
65
|
*
|
|
66
|
+
* @throws {@link LicenseManagerServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from LicenseManager service.</p>
|
|
64
68
|
*
|
|
65
69
|
*/
|
|
66
70
|
export declare class DeleteTokenCommand extends $Command<DeleteTokenCommandInput, DeleteTokenCommandOutput, LicenseManagerClientResolvedConfig> {
|
|
@@ -32,6 +32,11 @@ export interface ExtendLicenseConsumptionCommandOutput extends ExtendLicenseCons
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ExtendLicenseConsumptionCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ExtendLicenseConsumptionResponse
|
|
36
|
+
* // LicenseConsumptionToken: "STRING_VALUE",
|
|
37
|
+
* // Expiration: "STRING_VALUE",
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
35
40
|
* ```
|
|
36
41
|
*
|
|
37
42
|
* @param ExtendLicenseConsumptionCommandInput - {@link ExtendLicenseConsumptionCommandInput}
|
|
@@ -62,6 +67,8 @@ export interface ExtendLicenseConsumptionCommandOutput extends ExtendLicenseCons
|
|
|
62
67
|
* @throws {@link ValidationException} (client fault)
|
|
63
68
|
* <p>The provided input is not valid. Try your request again.</p>
|
|
64
69
|
*
|
|
70
|
+
* @throws {@link LicenseManagerServiceException}
|
|
71
|
+
* <p>Base exception class for all service exceptions from LicenseManager service.</p>
|
|
65
72
|
*
|
|
66
73
|
*/
|
|
67
74
|
export declare class ExtendLicenseConsumptionCommand extends $Command<ExtendLicenseConsumptionCommandInput, ExtendLicenseConsumptionCommandOutput, LicenseManagerClientResolvedConfig> {
|
|
@@ -35,6 +35,10 @@ export interface GetAccessTokenCommandOutput extends GetAccessTokenResponse, __M
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new GetAccessTokenCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // GetAccessTokenResponse
|
|
39
|
+
* // AccessToken: "STRING_VALUE",
|
|
40
|
+
* // };
|
|
41
|
+
*
|
|
38
42
|
* ```
|
|
39
43
|
*
|
|
40
44
|
* @param GetAccessTokenCommandInput - {@link GetAccessTokenCommandInput}
|
|
@@ -59,6 +63,8 @@ export interface GetAccessTokenCommandOutput extends GetAccessTokenResponse, __M
|
|
|
59
63
|
* @throws {@link ValidationException} (client fault)
|
|
60
64
|
* <p>The provided input is not valid. Try your request again.</p>
|
|
61
65
|
*
|
|
66
|
+
* @throws {@link LicenseManagerServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from LicenseManager service.</p>
|
|
62
68
|
*
|
|
63
69
|
*/
|
|
64
70
|
export declare class GetAccessTokenCommand extends $Command<GetAccessTokenCommandInput, GetAccessTokenCommandOutput, LicenseManagerClientResolvedConfig> {
|
|
@@ -32,6 +32,26 @@ export interface GetGrantCommandOutput extends GetGrantResponse, __MetadataBeare
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetGrantCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // GetGrantResponse
|
|
36
|
+
* // Grant: { // Grant
|
|
37
|
+
* // GrantArn: "STRING_VALUE", // required
|
|
38
|
+
* // GrantName: "STRING_VALUE", // required
|
|
39
|
+
* // ParentArn: "STRING_VALUE", // required
|
|
40
|
+
* // LicenseArn: "STRING_VALUE", // required
|
|
41
|
+
* // GranteePrincipalArn: "STRING_VALUE", // required
|
|
42
|
+
* // HomeRegion: "STRING_VALUE", // required
|
|
43
|
+
* // GrantStatus: "PENDING_WORKFLOW" || "PENDING_ACCEPT" || "REJECTED" || "ACTIVE" || "FAILED_WORKFLOW" || "DELETED" || "PENDING_DELETE" || "DISABLED" || "WORKFLOW_COMPLETED", // required
|
|
44
|
+
* // StatusReason: "STRING_VALUE",
|
|
45
|
+
* // Version: "STRING_VALUE", // required
|
|
46
|
+
* // GrantedOperations: [ // AllowedOperationList // required
|
|
47
|
+
* // "CreateGrant" || "CheckoutLicense" || "CheckoutBorrowLicense" || "CheckInLicense" || "ExtendConsumptionLicense" || "ListPurchasedLicenses" || "CreateToken",
|
|
48
|
+
* // ],
|
|
49
|
+
* // Options: { // Options
|
|
50
|
+
* // ActivationOverrideBehavior: "DISTRIBUTED_GRANTS_ONLY" || "ALL_GRANTS_PERMITTED_BY_ISSUER",
|
|
51
|
+
* // },
|
|
52
|
+
* // },
|
|
53
|
+
* // };
|
|
54
|
+
*
|
|
35
55
|
* ```
|
|
36
56
|
*
|
|
37
57
|
* @param GetGrantCommandInput - {@link GetGrantCommandInput}
|
|
@@ -62,6 +82,8 @@ export interface GetGrantCommandOutput extends GetGrantResponse, __MetadataBeare
|
|
|
62
82
|
* @throws {@link ValidationException} (client fault)
|
|
63
83
|
* <p>The provided input is not valid. Try your request again.</p>
|
|
64
84
|
*
|
|
85
|
+
* @throws {@link LicenseManagerServiceException}
|
|
86
|
+
* <p>Base exception class for all service exceptions from LicenseManager service.</p>
|
|
65
87
|
*
|
|
66
88
|
*/
|
|
67
89
|
export declare class GetGrantCommand extends $Command<GetGrantCommandInput, GetGrantCommandOutput, LicenseManagerClientResolvedConfig> {
|
|
@@ -32,6 +32,55 @@ export interface GetLicenseCommandOutput extends GetLicenseResponse, __MetadataB
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetLicenseCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // GetLicenseResponse
|
|
36
|
+
* // License: { // License
|
|
37
|
+
* // LicenseArn: "STRING_VALUE",
|
|
38
|
+
* // LicenseName: "STRING_VALUE",
|
|
39
|
+
* // ProductName: "STRING_VALUE",
|
|
40
|
+
* // ProductSKU: "STRING_VALUE",
|
|
41
|
+
* // Issuer: { // IssuerDetails
|
|
42
|
+
* // Name: "STRING_VALUE",
|
|
43
|
+
* // SignKey: "STRING_VALUE",
|
|
44
|
+
* // KeyFingerprint: "STRING_VALUE",
|
|
45
|
+
* // },
|
|
46
|
+
* // HomeRegion: "STRING_VALUE",
|
|
47
|
+
* // Status: "AVAILABLE" || "PENDING_AVAILABLE" || "DEACTIVATED" || "SUSPENDED" || "EXPIRED" || "PENDING_DELETE" || "DELETED",
|
|
48
|
+
* // Validity: { // DatetimeRange
|
|
49
|
+
* // Begin: "STRING_VALUE", // required
|
|
50
|
+
* // End: "STRING_VALUE",
|
|
51
|
+
* // },
|
|
52
|
+
* // Beneficiary: "STRING_VALUE",
|
|
53
|
+
* // Entitlements: [ // EntitlementList
|
|
54
|
+
* // { // Entitlement
|
|
55
|
+
* // Name: "STRING_VALUE", // required
|
|
56
|
+
* // Value: "STRING_VALUE",
|
|
57
|
+
* // MaxCount: Number("long"),
|
|
58
|
+
* // Overage: true || false,
|
|
59
|
+
* // Unit: "Count" || "None" || "Seconds" || "Microseconds" || "Milliseconds" || "Bytes" || "Kilobytes" || "Megabytes" || "Gigabytes" || "Terabytes" || "Bits" || "Kilobits" || "Megabits" || "Gigabits" || "Terabits" || "Percent" || "Bytes/Second" || "Kilobytes/Second" || "Megabytes/Second" || "Gigabytes/Second" || "Terabytes/Second" || "Bits/Second" || "Kilobits/Second" || "Megabits/Second" || "Gigabits/Second" || "Terabits/Second" || "Count/Second", // required
|
|
60
|
+
* // AllowCheckIn: true || false,
|
|
61
|
+
* // },
|
|
62
|
+
* // ],
|
|
63
|
+
* // ConsumptionConfiguration: { // ConsumptionConfiguration
|
|
64
|
+
* // RenewType: "None" || "Weekly" || "Monthly",
|
|
65
|
+
* // ProvisionalConfiguration: { // ProvisionalConfiguration
|
|
66
|
+
* // MaxTimeToLiveInMinutes: Number("int"), // required
|
|
67
|
+
* // },
|
|
68
|
+
* // BorrowConfiguration: { // BorrowConfiguration
|
|
69
|
+
* // AllowEarlyCheckIn: true || false, // required
|
|
70
|
+
* // MaxTimeToLiveInMinutes: Number("int"), // required
|
|
71
|
+
* // },
|
|
72
|
+
* // },
|
|
73
|
+
* // LicenseMetadata: [ // MetadataList
|
|
74
|
+
* // { // Metadata
|
|
75
|
+
* // Name: "STRING_VALUE",
|
|
76
|
+
* // Value: "STRING_VALUE",
|
|
77
|
+
* // },
|
|
78
|
+
* // ],
|
|
79
|
+
* // CreateTime: "STRING_VALUE",
|
|
80
|
+
* // Version: "STRING_VALUE",
|
|
81
|
+
* // },
|
|
82
|
+
* // };
|
|
83
|
+
*
|
|
35
84
|
* ```
|
|
36
85
|
*
|
|
37
86
|
* @param GetLicenseCommandInput - {@link GetLicenseCommandInput}
|
|
@@ -59,6 +108,8 @@ export interface GetLicenseCommandOutput extends GetLicenseResponse, __MetadataB
|
|
|
59
108
|
* @throws {@link ValidationException} (client fault)
|
|
60
109
|
* <p>The provided input is not valid. Try your request again.</p>
|
|
61
110
|
*
|
|
111
|
+
* @throws {@link LicenseManagerServiceException}
|
|
112
|
+
* <p>Base exception class for all service exceptions from LicenseManager service.</p>
|
|
62
113
|
*
|
|
63
114
|
*/
|
|
64
115
|
export declare class GetLicenseCommand extends $Command<GetLicenseCommandInput, GetLicenseCommandOutput, LicenseManagerClientResolvedConfig> {
|
|
@@ -31,6 +31,58 @@ export interface GetLicenseConfigurationCommandOutput extends GetLicenseConfigur
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetLicenseConfigurationCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetLicenseConfigurationResponse
|
|
35
|
+
* // LicenseConfigurationId: "STRING_VALUE",
|
|
36
|
+
* // LicenseConfigurationArn: "STRING_VALUE",
|
|
37
|
+
* // Name: "STRING_VALUE",
|
|
38
|
+
* // Description: "STRING_VALUE",
|
|
39
|
+
* // LicenseCountingType: "vCPU" || "Instance" || "Core" || "Socket",
|
|
40
|
+
* // LicenseRules: [ // StringList
|
|
41
|
+
* // "STRING_VALUE",
|
|
42
|
+
* // ],
|
|
43
|
+
* // LicenseCount: Number("long"),
|
|
44
|
+
* // LicenseCountHardLimit: true || false,
|
|
45
|
+
* // ConsumedLicenses: Number("long"),
|
|
46
|
+
* // Status: "STRING_VALUE",
|
|
47
|
+
* // OwnerAccountId: "STRING_VALUE",
|
|
48
|
+
* // ConsumedLicenseSummaryList: [ // ConsumedLicenseSummaryList
|
|
49
|
+
* // { // ConsumedLicenseSummary
|
|
50
|
+
* // ResourceType: "EC2_INSTANCE" || "EC2_HOST" || "EC2_AMI" || "RDS" || "SYSTEMS_MANAGER_MANAGED_INSTANCE",
|
|
51
|
+
* // ConsumedLicenses: Number("long"),
|
|
52
|
+
* // },
|
|
53
|
+
* // ],
|
|
54
|
+
* // ManagedResourceSummaryList: [ // ManagedResourceSummaryList
|
|
55
|
+
* // { // ManagedResourceSummary
|
|
56
|
+
* // ResourceType: "EC2_INSTANCE" || "EC2_HOST" || "EC2_AMI" || "RDS" || "SYSTEMS_MANAGER_MANAGED_INSTANCE",
|
|
57
|
+
* // AssociationCount: Number("long"),
|
|
58
|
+
* // },
|
|
59
|
+
* // ],
|
|
60
|
+
* // Tags: [ // TagList
|
|
61
|
+
* // { // Tag
|
|
62
|
+
* // Key: "STRING_VALUE",
|
|
63
|
+
* // Value: "STRING_VALUE",
|
|
64
|
+
* // },
|
|
65
|
+
* // ],
|
|
66
|
+
* // ProductInformationList: [ // ProductInformationList
|
|
67
|
+
* // { // ProductInformation
|
|
68
|
+
* // ResourceType: "STRING_VALUE", // required
|
|
69
|
+
* // ProductInformationFilterList: [ // ProductInformationFilterList // required
|
|
70
|
+
* // { // ProductInformationFilter
|
|
71
|
+
* // ProductInformationFilterName: "STRING_VALUE", // required
|
|
72
|
+
* // ProductInformationFilterValue: [
|
|
73
|
+
* // "STRING_VALUE",
|
|
74
|
+
* // ],
|
|
75
|
+
* // ProductInformationFilterComparator: "STRING_VALUE", // required
|
|
76
|
+
* // },
|
|
77
|
+
* // ],
|
|
78
|
+
* // },
|
|
79
|
+
* // ],
|
|
80
|
+
* // AutomatedDiscoveryInformation: { // AutomatedDiscoveryInformation
|
|
81
|
+
* // LastRunTime: new Date("TIMESTAMP"),
|
|
82
|
+
* // },
|
|
83
|
+
* // DisassociateWhenNotFound: true || false,
|
|
84
|
+
* // };
|
|
85
|
+
*
|
|
34
86
|
* ```
|
|
35
87
|
*
|
|
36
88
|
* @param GetLicenseConfigurationCommandInput - {@link GetLicenseConfigurationCommandInput}
|
|
@@ -55,6 +107,8 @@ export interface GetLicenseConfigurationCommandOutput extends GetLicenseConfigur
|
|
|
55
107
|
* @throws {@link ServerInternalException} (server fault)
|
|
56
108
|
* <p>The server experienced an internal error. Try again.</p>
|
|
57
109
|
*
|
|
110
|
+
* @throws {@link LicenseManagerServiceException}
|
|
111
|
+
* <p>Base exception class for all service exceptions from LicenseManager service.</p>
|
|
58
112
|
*
|
|
59
113
|
*/
|
|
60
114
|
export declare class GetLicenseConfigurationCommand extends $Command<GetLicenseConfigurationCommandInput, GetLicenseConfigurationCommandOutput, LicenseManagerClientResolvedConfig> {
|
|
@@ -31,6 +31,22 @@ export interface GetLicenseConversionTaskCommandOutput extends GetLicenseConvers
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetLicenseConversionTaskCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetLicenseConversionTaskResponse
|
|
35
|
+
* // LicenseConversionTaskId: "STRING_VALUE",
|
|
36
|
+
* // ResourceArn: "STRING_VALUE",
|
|
37
|
+
* // SourceLicenseContext: { // LicenseConversionContext
|
|
38
|
+
* // UsageOperation: "STRING_VALUE",
|
|
39
|
+
* // },
|
|
40
|
+
* // DestinationLicenseContext: {
|
|
41
|
+
* // UsageOperation: "STRING_VALUE",
|
|
42
|
+
* // },
|
|
43
|
+
* // StatusMessage: "STRING_VALUE",
|
|
44
|
+
* // Status: "IN_PROGRESS" || "SUCCEEDED" || "FAILED",
|
|
45
|
+
* // StartTime: new Date("TIMESTAMP"),
|
|
46
|
+
* // LicenseConversionTime: new Date("TIMESTAMP"),
|
|
47
|
+
* // EndTime: new Date("TIMESTAMP"),
|
|
48
|
+
* // };
|
|
49
|
+
*
|
|
34
50
|
* ```
|
|
35
51
|
*
|
|
36
52
|
* @param GetLicenseConversionTaskCommandInput - {@link GetLicenseConversionTaskCommandInput}
|
|
@@ -55,6 +71,8 @@ export interface GetLicenseConversionTaskCommandOutput extends GetLicenseConvers
|
|
|
55
71
|
* @throws {@link ServerInternalException} (server fault)
|
|
56
72
|
* <p>The server experienced an internal error. Try again.</p>
|
|
57
73
|
*
|
|
74
|
+
* @throws {@link LicenseManagerServiceException}
|
|
75
|
+
* <p>Base exception class for all service exceptions from LicenseManager service.</p>
|
|
58
76
|
*
|
|
59
77
|
*/
|
|
60
78
|
export declare class GetLicenseConversionTaskCommand extends $Command<GetLicenseConversionTaskCommandInput, GetLicenseConversionTaskCommandOutput, LicenseManagerClientResolvedConfig> {
|