@aws-sdk/client-license-manager 3.325.0 → 3.327.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 +7 -7
|
@@ -43,6 +43,65 @@ export interface ListReceivedLicensesCommandOutput extends ListReceivedLicensesR
|
|
|
43
43
|
* };
|
|
44
44
|
* const command = new ListReceivedLicensesCommand(input);
|
|
45
45
|
* const response = await client.send(command);
|
|
46
|
+
* // { // ListReceivedLicensesResponse
|
|
47
|
+
* // Licenses: [ // GrantedLicenseList
|
|
48
|
+
* // { // GrantedLicense
|
|
49
|
+
* // LicenseArn: "STRING_VALUE",
|
|
50
|
+
* // LicenseName: "STRING_VALUE",
|
|
51
|
+
* // ProductName: "STRING_VALUE",
|
|
52
|
+
* // ProductSKU: "STRING_VALUE",
|
|
53
|
+
* // Issuer: { // IssuerDetails
|
|
54
|
+
* // Name: "STRING_VALUE",
|
|
55
|
+
* // SignKey: "STRING_VALUE",
|
|
56
|
+
* // KeyFingerprint: "STRING_VALUE",
|
|
57
|
+
* // },
|
|
58
|
+
* // HomeRegion: "STRING_VALUE",
|
|
59
|
+
* // Status: "AVAILABLE" || "PENDING_AVAILABLE" || "DEACTIVATED" || "SUSPENDED" || "EXPIRED" || "PENDING_DELETE" || "DELETED",
|
|
60
|
+
* // Validity: { // DatetimeRange
|
|
61
|
+
* // Begin: "STRING_VALUE", // required
|
|
62
|
+
* // End: "STRING_VALUE",
|
|
63
|
+
* // },
|
|
64
|
+
* // Beneficiary: "STRING_VALUE",
|
|
65
|
+
* // Entitlements: [ // EntitlementList
|
|
66
|
+
* // { // Entitlement
|
|
67
|
+
* // Name: "STRING_VALUE", // required
|
|
68
|
+
* // Value: "STRING_VALUE",
|
|
69
|
+
* // MaxCount: Number("long"),
|
|
70
|
+
* // Overage: true || false,
|
|
71
|
+
* // 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
|
|
72
|
+
* // AllowCheckIn: true || false,
|
|
73
|
+
* // },
|
|
74
|
+
* // ],
|
|
75
|
+
* // ConsumptionConfiguration: { // ConsumptionConfiguration
|
|
76
|
+
* // RenewType: "None" || "Weekly" || "Monthly",
|
|
77
|
+
* // ProvisionalConfiguration: { // ProvisionalConfiguration
|
|
78
|
+
* // MaxTimeToLiveInMinutes: Number("int"), // required
|
|
79
|
+
* // },
|
|
80
|
+
* // BorrowConfiguration: { // BorrowConfiguration
|
|
81
|
+
* // AllowEarlyCheckIn: true || false, // required
|
|
82
|
+
* // MaxTimeToLiveInMinutes: Number("int"), // required
|
|
83
|
+
* // },
|
|
84
|
+
* // },
|
|
85
|
+
* // LicenseMetadata: [ // MetadataList
|
|
86
|
+
* // { // Metadata
|
|
87
|
+
* // Name: "STRING_VALUE",
|
|
88
|
+
* // Value: "STRING_VALUE",
|
|
89
|
+
* // },
|
|
90
|
+
* // ],
|
|
91
|
+
* // CreateTime: "STRING_VALUE",
|
|
92
|
+
* // Version: "STRING_VALUE",
|
|
93
|
+
* // ReceivedMetadata: { // ReceivedMetadata
|
|
94
|
+
* // ReceivedStatus: "PENDING_WORKFLOW" || "PENDING_ACCEPT" || "REJECTED" || "ACTIVE" || "FAILED_WORKFLOW" || "DELETED" || "DISABLED" || "WORKFLOW_COMPLETED",
|
|
95
|
+
* // ReceivedStatusReason: "STRING_VALUE",
|
|
96
|
+
* // AllowedOperations: [ // AllowedOperationList
|
|
97
|
+
* // "CreateGrant" || "CheckoutLicense" || "CheckoutBorrowLicense" || "CheckInLicense" || "ExtendConsumptionLicense" || "ListPurchasedLicenses" || "CreateToken",
|
|
98
|
+
* // ],
|
|
99
|
+
* // },
|
|
100
|
+
* // },
|
|
101
|
+
* // ],
|
|
102
|
+
* // NextToken: "STRING_VALUE",
|
|
103
|
+
* // };
|
|
104
|
+
*
|
|
46
105
|
* ```
|
|
47
106
|
*
|
|
48
107
|
* @param ListReceivedLicensesCommandInput - {@link ListReceivedLicensesCommandInput}
|
|
@@ -73,6 +132,8 @@ export interface ListReceivedLicensesCommandOutput extends ListReceivedLicensesR
|
|
|
73
132
|
* @throws {@link ValidationException} (client fault)
|
|
74
133
|
* <p>The provided input is not valid. Try your request again.</p>
|
|
75
134
|
*
|
|
135
|
+
* @throws {@link LicenseManagerServiceException}
|
|
136
|
+
* <p>Base exception class for all service exceptions from LicenseManager service.</p>
|
|
76
137
|
*
|
|
77
138
|
*/
|
|
78
139
|
export declare class ListReceivedLicensesCommand extends $Command<ListReceivedLicensesCommandInput, ListReceivedLicensesCommandOutput, LicenseManagerClientResolvedConfig> {
|
|
@@ -40,6 +40,65 @@ export interface ListReceivedLicensesForOrganizationCommandOutput extends ListRe
|
|
|
40
40
|
* };
|
|
41
41
|
* const command = new ListReceivedLicensesForOrganizationCommand(input);
|
|
42
42
|
* const response = await client.send(command);
|
|
43
|
+
* // { // ListReceivedLicensesForOrganizationResponse
|
|
44
|
+
* // Licenses: [ // GrantedLicenseList
|
|
45
|
+
* // { // GrantedLicense
|
|
46
|
+
* // LicenseArn: "STRING_VALUE",
|
|
47
|
+
* // LicenseName: "STRING_VALUE",
|
|
48
|
+
* // ProductName: "STRING_VALUE",
|
|
49
|
+
* // ProductSKU: "STRING_VALUE",
|
|
50
|
+
* // Issuer: { // IssuerDetails
|
|
51
|
+
* // Name: "STRING_VALUE",
|
|
52
|
+
* // SignKey: "STRING_VALUE",
|
|
53
|
+
* // KeyFingerprint: "STRING_VALUE",
|
|
54
|
+
* // },
|
|
55
|
+
* // HomeRegion: "STRING_VALUE",
|
|
56
|
+
* // Status: "AVAILABLE" || "PENDING_AVAILABLE" || "DEACTIVATED" || "SUSPENDED" || "EXPIRED" || "PENDING_DELETE" || "DELETED",
|
|
57
|
+
* // Validity: { // DatetimeRange
|
|
58
|
+
* // Begin: "STRING_VALUE", // required
|
|
59
|
+
* // End: "STRING_VALUE",
|
|
60
|
+
* // },
|
|
61
|
+
* // Beneficiary: "STRING_VALUE",
|
|
62
|
+
* // Entitlements: [ // EntitlementList
|
|
63
|
+
* // { // Entitlement
|
|
64
|
+
* // Name: "STRING_VALUE", // required
|
|
65
|
+
* // Value: "STRING_VALUE",
|
|
66
|
+
* // MaxCount: Number("long"),
|
|
67
|
+
* // Overage: true || false,
|
|
68
|
+
* // 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
|
|
69
|
+
* // AllowCheckIn: true || false,
|
|
70
|
+
* // },
|
|
71
|
+
* // ],
|
|
72
|
+
* // ConsumptionConfiguration: { // ConsumptionConfiguration
|
|
73
|
+
* // RenewType: "None" || "Weekly" || "Monthly",
|
|
74
|
+
* // ProvisionalConfiguration: { // ProvisionalConfiguration
|
|
75
|
+
* // MaxTimeToLiveInMinutes: Number("int"), // required
|
|
76
|
+
* // },
|
|
77
|
+
* // BorrowConfiguration: { // BorrowConfiguration
|
|
78
|
+
* // AllowEarlyCheckIn: true || false, // required
|
|
79
|
+
* // MaxTimeToLiveInMinutes: Number("int"), // required
|
|
80
|
+
* // },
|
|
81
|
+
* // },
|
|
82
|
+
* // LicenseMetadata: [ // MetadataList
|
|
83
|
+
* // { // Metadata
|
|
84
|
+
* // Name: "STRING_VALUE",
|
|
85
|
+
* // Value: "STRING_VALUE",
|
|
86
|
+
* // },
|
|
87
|
+
* // ],
|
|
88
|
+
* // CreateTime: "STRING_VALUE",
|
|
89
|
+
* // Version: "STRING_VALUE",
|
|
90
|
+
* // ReceivedMetadata: { // ReceivedMetadata
|
|
91
|
+
* // ReceivedStatus: "PENDING_WORKFLOW" || "PENDING_ACCEPT" || "REJECTED" || "ACTIVE" || "FAILED_WORKFLOW" || "DELETED" || "DISABLED" || "WORKFLOW_COMPLETED",
|
|
92
|
+
* // ReceivedStatusReason: "STRING_VALUE",
|
|
93
|
+
* // AllowedOperations: [ // AllowedOperationList
|
|
94
|
+
* // "CreateGrant" || "CheckoutLicense" || "CheckoutBorrowLicense" || "CheckInLicense" || "ExtendConsumptionLicense" || "ListPurchasedLicenses" || "CreateToken",
|
|
95
|
+
* // ],
|
|
96
|
+
* // },
|
|
97
|
+
* // },
|
|
98
|
+
* // ],
|
|
99
|
+
* // NextToken: "STRING_VALUE",
|
|
100
|
+
* // };
|
|
101
|
+
*
|
|
43
102
|
* ```
|
|
44
103
|
*
|
|
45
104
|
* @param ListReceivedLicensesForOrganizationCommandInput - {@link ListReceivedLicensesForOrganizationCommandInput}
|
|
@@ -70,6 +129,8 @@ export interface ListReceivedLicensesForOrganizationCommandOutput extends ListRe
|
|
|
70
129
|
* @throws {@link ValidationException} (client fault)
|
|
71
130
|
* <p>The provided input is not valid. Try your request again.</p>
|
|
72
131
|
*
|
|
132
|
+
* @throws {@link LicenseManagerServiceException}
|
|
133
|
+
* <p>Base exception class for all service exceptions from LicenseManager service.</p>
|
|
73
134
|
*
|
|
74
135
|
*/
|
|
75
136
|
export declare class ListReceivedLicensesForOrganizationCommand extends $Command<ListReceivedLicensesForOrganizationCommandInput, ListReceivedLicensesForOrganizationCommandOutput, LicenseManagerClientResolvedConfig> {
|
|
@@ -39,6 +39,20 @@ export interface ListResourceInventoryCommandOutput extends ListResourceInventor
|
|
|
39
39
|
* };
|
|
40
40
|
* const command = new ListResourceInventoryCommand(input);
|
|
41
41
|
* const response = await client.send(command);
|
|
42
|
+
* // { // ListResourceInventoryResponse
|
|
43
|
+
* // ResourceInventoryList: [ // ResourceInventoryList
|
|
44
|
+
* // { // ResourceInventory
|
|
45
|
+
* // ResourceId: "STRING_VALUE",
|
|
46
|
+
* // ResourceType: "EC2_INSTANCE" || "EC2_HOST" || "EC2_AMI" || "RDS" || "SYSTEMS_MANAGER_MANAGED_INSTANCE",
|
|
47
|
+
* // ResourceArn: "STRING_VALUE",
|
|
48
|
+
* // Platform: "STRING_VALUE",
|
|
49
|
+
* // PlatformVersion: "STRING_VALUE",
|
|
50
|
+
* // ResourceOwningAccountId: "STRING_VALUE",
|
|
51
|
+
* // },
|
|
52
|
+
* // ],
|
|
53
|
+
* // NextToken: "STRING_VALUE",
|
|
54
|
+
* // };
|
|
55
|
+
*
|
|
42
56
|
* ```
|
|
43
57
|
*
|
|
44
58
|
* @param ListResourceInventoryCommandInput - {@link ListResourceInventoryCommandInput}
|
|
@@ -69,6 +83,8 @@ export interface ListResourceInventoryCommandOutput extends ListResourceInventor
|
|
|
69
83
|
* @throws {@link ServerInternalException} (server fault)
|
|
70
84
|
* <p>The server experienced an internal error. Try again.</p>
|
|
71
85
|
*
|
|
86
|
+
* @throws {@link LicenseManagerServiceException}
|
|
87
|
+
* <p>Base exception class for all service exceptions from LicenseManager service.</p>
|
|
72
88
|
*
|
|
73
89
|
*/
|
|
74
90
|
export declare class ListResourceInventoryCommand extends $Command<ListResourceInventoryCommandInput, ListResourceInventoryCommandOutput, LicenseManagerClientResolvedConfig> {
|
|
@@ -31,6 +31,15 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // ListTagsForResourceResponse
|
|
35
|
+
* // Tags: [ // TagList
|
|
36
|
+
* // { // Tag
|
|
37
|
+
* // Key: "STRING_VALUE",
|
|
38
|
+
* // Value: "STRING_VALUE",
|
|
39
|
+
* // },
|
|
40
|
+
* // ],
|
|
41
|
+
* // };
|
|
42
|
+
*
|
|
34
43
|
* ```
|
|
35
44
|
*
|
|
36
45
|
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
@@ -55,6 +64,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
55
64
|
* @throws {@link ServerInternalException} (server fault)
|
|
56
65
|
* <p>The server experienced an internal error. Try again.</p>
|
|
57
66
|
*
|
|
67
|
+
* @throws {@link LicenseManagerServiceException}
|
|
68
|
+
* <p>Base exception class for all service exceptions from LicenseManager service.</p>
|
|
58
69
|
*
|
|
59
70
|
*/
|
|
60
71
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, LicenseManagerClientResolvedConfig> {
|
|
@@ -43,6 +43,25 @@ export interface ListTokensCommandOutput extends ListTokensResponse, __MetadataB
|
|
|
43
43
|
* };
|
|
44
44
|
* const command = new ListTokensCommand(input);
|
|
45
45
|
* const response = await client.send(command);
|
|
46
|
+
* // { // ListTokensResponse
|
|
47
|
+
* // Tokens: [ // TokenList
|
|
48
|
+
* // { // TokenData
|
|
49
|
+
* // TokenId: "STRING_VALUE",
|
|
50
|
+
* // TokenType: "STRING_VALUE",
|
|
51
|
+
* // LicenseArn: "STRING_VALUE",
|
|
52
|
+
* // ExpirationTime: "STRING_VALUE",
|
|
53
|
+
* // TokenProperties: [ // MaxSize3StringList
|
|
54
|
+
* // "STRING_VALUE",
|
|
55
|
+
* // ],
|
|
56
|
+
* // RoleArns: [ // ArnList
|
|
57
|
+
* // "STRING_VALUE",
|
|
58
|
+
* // ],
|
|
59
|
+
* // Status: "STRING_VALUE",
|
|
60
|
+
* // },
|
|
61
|
+
* // ],
|
|
62
|
+
* // NextToken: "STRING_VALUE",
|
|
63
|
+
* // };
|
|
64
|
+
*
|
|
46
65
|
* ```
|
|
47
66
|
*
|
|
48
67
|
* @param ListTokensCommandInput - {@link ListTokensCommandInput}
|
|
@@ -67,6 +86,8 @@ export interface ListTokensCommandOutput extends ListTokensResponse, __MetadataB
|
|
|
67
86
|
* @throws {@link ValidationException} (client fault)
|
|
68
87
|
* <p>The provided input is not valid. Try your request again.</p>
|
|
69
88
|
*
|
|
89
|
+
* @throws {@link LicenseManagerServiceException}
|
|
90
|
+
* <p>Base exception class for all service exceptions from LicenseManager service.</p>
|
|
70
91
|
*
|
|
71
92
|
*/
|
|
72
93
|
export declare class ListTokensCommand extends $Command<ListTokensCommandInput, ListTokensCommandOutput, LicenseManagerClientResolvedConfig> {
|
|
@@ -43,6 +43,20 @@ export interface ListUsageForLicenseConfigurationCommandOutput extends ListUsage
|
|
|
43
43
|
* };
|
|
44
44
|
* const command = new ListUsageForLicenseConfigurationCommand(input);
|
|
45
45
|
* const response = await client.send(command);
|
|
46
|
+
* // { // ListUsageForLicenseConfigurationResponse
|
|
47
|
+
* // LicenseConfigurationUsageList: [ // LicenseConfigurationUsageList
|
|
48
|
+
* // { // LicenseConfigurationUsage
|
|
49
|
+
* // ResourceArn: "STRING_VALUE",
|
|
50
|
+
* // ResourceType: "EC2_INSTANCE" || "EC2_HOST" || "EC2_AMI" || "RDS" || "SYSTEMS_MANAGER_MANAGED_INSTANCE",
|
|
51
|
+
* // ResourceStatus: "STRING_VALUE",
|
|
52
|
+
* // ResourceOwnerId: "STRING_VALUE",
|
|
53
|
+
* // AssociationTime: new Date("TIMESTAMP"),
|
|
54
|
+
* // ConsumedLicenses: Number("long"),
|
|
55
|
+
* // },
|
|
56
|
+
* // ],
|
|
57
|
+
* // NextToken: "STRING_VALUE",
|
|
58
|
+
* // };
|
|
59
|
+
*
|
|
46
60
|
* ```
|
|
47
61
|
*
|
|
48
62
|
* @param ListUsageForLicenseConfigurationCommandInput - {@link ListUsageForLicenseConfigurationCommandInput}
|
|
@@ -70,6 +84,8 @@ export interface ListUsageForLicenseConfigurationCommandOutput extends ListUsage
|
|
|
70
84
|
* @throws {@link ServerInternalException} (server fault)
|
|
71
85
|
* <p>The server experienced an internal error. Try again.</p>
|
|
72
86
|
*
|
|
87
|
+
* @throws {@link LicenseManagerServiceException}
|
|
88
|
+
* <p>Base exception class for all service exceptions from LicenseManager service.</p>
|
|
73
89
|
*
|
|
74
90
|
*/
|
|
75
91
|
export declare class ListUsageForLicenseConfigurationCommand extends $Command<ListUsageForLicenseConfigurationCommandInput, ListUsageForLicenseConfigurationCommandOutput, LicenseManagerClientResolvedConfig> {
|
|
@@ -31,6 +31,12 @@ export interface RejectGrantCommandOutput extends RejectGrantResponse, __Metadat
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new RejectGrantCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // RejectGrantResponse
|
|
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 RejectGrantCommandInput - {@link RejectGrantCommandInput}
|
|
@@ -61,6 +67,8 @@ export interface RejectGrantCommandOutput extends RejectGrantResponse, __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 RejectGrantCommand extends $Command<RejectGrantCommandInput, RejectGrantCommandOutput, LicenseManagerClientResolvedConfig> {
|
|
@@ -37,6 +37,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new TagResourceCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // {};
|
|
41
|
+
*
|
|
40
42
|
* ```
|
|
41
43
|
*
|
|
42
44
|
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
@@ -61,6 +63,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
61
63
|
* @throws {@link ServerInternalException} (server fault)
|
|
62
64
|
* <p>The server experienced an internal error. Try 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 TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, LicenseManagerClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new UntagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
@@ -58,6 +60,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
58
60
|
* @throws {@link ServerInternalException} (server fault)
|
|
59
61
|
* <p>The server experienced an internal error. Try again.</p>
|
|
60
62
|
*
|
|
63
|
+
* @throws {@link LicenseManagerServiceException}
|
|
64
|
+
* <p>Base exception class for all service exceptions from LicenseManager service.</p>
|
|
61
65
|
*
|
|
62
66
|
*/
|
|
63
67
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, LicenseManagerClientResolvedConfig> {
|
|
@@ -54,6 +54,8 @@ export interface UpdateLicenseConfigurationCommandOutput extends UpdateLicenseCo
|
|
|
54
54
|
* };
|
|
55
55
|
* const command = new UpdateLicenseConfigurationCommand(input);
|
|
56
56
|
* const response = await client.send(command);
|
|
57
|
+
* // {};
|
|
58
|
+
*
|
|
57
59
|
* ```
|
|
58
60
|
*
|
|
59
61
|
* @param UpdateLicenseConfigurationCommandInput - {@link UpdateLicenseConfigurationCommandInput}
|
|
@@ -81,6 +83,8 @@ export interface UpdateLicenseConfigurationCommandOutput extends UpdateLicenseCo
|
|
|
81
83
|
* @throws {@link ServerInternalException} (server fault)
|
|
82
84
|
* <p>The server experienced an internal error. Try again.</p>
|
|
83
85
|
*
|
|
86
|
+
* @throws {@link LicenseManagerServiceException}
|
|
87
|
+
* <p>Base exception class for all service exceptions from LicenseManager service.</p>
|
|
84
88
|
*
|
|
85
89
|
*/
|
|
86
90
|
export declare class UpdateLicenseConfigurationCommand extends $Command<UpdateLicenseConfigurationCommandInput, UpdateLicenseConfigurationCommandOutput, LicenseManagerClientResolvedConfig> {
|
|
@@ -47,6 +47,8 @@ export interface UpdateLicenseManagerReportGeneratorCommandOutput extends Update
|
|
|
47
47
|
* };
|
|
48
48
|
* const command = new UpdateLicenseManagerReportGeneratorCommand(input);
|
|
49
49
|
* const response = await client.send(command);
|
|
50
|
+
* // {};
|
|
51
|
+
*
|
|
50
52
|
* ```
|
|
51
53
|
*
|
|
52
54
|
* @param UpdateLicenseManagerReportGeneratorCommandInput - {@link UpdateLicenseManagerReportGeneratorCommandInput}
|
|
@@ -80,6 +82,8 @@ export interface UpdateLicenseManagerReportGeneratorCommandOutput extends Update
|
|
|
80
82
|
* @throws {@link ValidationException} (client fault)
|
|
81
83
|
* <p>The provided input is not valid. Try your request again.</p>
|
|
82
84
|
*
|
|
85
|
+
* @throws {@link LicenseManagerServiceException}
|
|
86
|
+
* <p>Base exception class for all service exceptions from LicenseManager service.</p>
|
|
83
87
|
*
|
|
84
88
|
*/
|
|
85
89
|
export declare class UpdateLicenseManagerReportGeneratorCommand extends $Command<UpdateLicenseManagerReportGeneratorCommandInput, UpdateLicenseManagerReportGeneratorCommandOutput, LicenseManagerClientResolvedConfig> {
|
|
@@ -46,6 +46,8 @@ export interface UpdateLicenseSpecificationsForResourceCommandOutput extends Upd
|
|
|
46
46
|
* };
|
|
47
47
|
* const command = new UpdateLicenseSpecificationsForResourceCommand(input);
|
|
48
48
|
* const response = await client.send(command);
|
|
49
|
+
* // {};
|
|
50
|
+
*
|
|
49
51
|
* ```
|
|
50
52
|
*
|
|
51
53
|
* @param UpdateLicenseSpecificationsForResourceCommandInput - {@link UpdateLicenseSpecificationsForResourceCommandInput}
|
|
@@ -78,6 +80,8 @@ export interface UpdateLicenseSpecificationsForResourceCommandOutput extends Upd
|
|
|
78
80
|
* @throws {@link ServerInternalException} (server fault)
|
|
79
81
|
* <p>The server experienced an internal error. Try again.</p>
|
|
80
82
|
*
|
|
83
|
+
* @throws {@link LicenseManagerServiceException}
|
|
84
|
+
* <p>Base exception class for all service exceptions from LicenseManager service.</p>
|
|
81
85
|
*
|
|
82
86
|
*/
|
|
83
87
|
export declare class UpdateLicenseSpecificationsForResourceCommand extends $Command<UpdateLicenseSpecificationsForResourceCommandInput, UpdateLicenseSpecificationsForResourceCommandOutput, LicenseManagerClientResolvedConfig> {
|
|
@@ -36,6 +36,8 @@ export interface UpdateServiceSettingsCommandOutput extends UpdateServiceSetting
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new UpdateServiceSettingsCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // {};
|
|
40
|
+
*
|
|
39
41
|
* ```
|
|
40
42
|
*
|
|
41
43
|
* @param UpdateServiceSettingsCommandInput - {@link UpdateServiceSettingsCommandInput}
|
|
@@ -60,6 +62,8 @@ export interface UpdateServiceSettingsCommandOutput extends UpdateServiceSetting
|
|
|
60
62
|
* @throws {@link ServerInternalException} (server fault)
|
|
61
63
|
* <p>The server experienced an internal error. Try again.</p>
|
|
62
64
|
*
|
|
65
|
+
* @throws {@link LicenseManagerServiceException}
|
|
66
|
+
* <p>Base exception class for all service exceptions from LicenseManager service.</p>
|
|
63
67
|
*
|
|
64
68
|
*/
|
|
65
69
|
export declare class UpdateServiceSettingsCommand extends $Command<UpdateServiceSettingsCommandInput, UpdateServiceSettingsCommandOutput, LicenseManagerClientResolvedConfig> {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-license-manager",
|
|
3
3
|
"description": "AWS SDK for JavaScript License Manager Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.327.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.327.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.327.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
@@ -32,11 +32,11 @@
|
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.325.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.325.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.325.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.327.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.325.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.325.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.325.0",
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.327.0",
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.321.1",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.325.0",
|
|
50
50
|
"@aws-sdk/util-defaults-mode-node": "3.325.0",
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.327.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.327.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|
|
54
54
|
"@aws-sdk/util-user-agent-node": "3.310.0",
|
|
55
55
|
"@aws-sdk/util-utf8": "3.310.0",
|