@aws-sdk/client-license-manager 3.299.0 → 3.301.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 +3 -0
- package/dist-types/commands/CheckInLicenseCommand.d.ts +4 -0
- package/dist-types/commands/CheckoutBorrowLicenseCommand.d.ts +19 -0
- package/dist-types/commands/CheckoutLicenseCommand.d.ts +15 -0
- package/dist-types/commands/CreateGrantCommand.d.ts +12 -0
- package/dist-types/commands/CreateGrantVersionCommand.d.ts +11 -0
- package/dist-types/commands/CreateLicenseCommand.d.ts +42 -0
- package/dist-types/commands/CreateLicenseConfigurationCommand.d.ts +31 -0
- package/dist-types/commands/CreateLicenseConversionTaskForResourceCommand.d.ts +9 -0
- package/dist-types/commands/CreateLicenseManagerReportGeneratorCommand.d.ts +23 -0
- package/dist-types/commands/CreateLicenseVersionCommand.d.ts +43 -0
- package/dist-types/commands/CreateTokenCommand.d.ts +11 -0
- package/dist-types/commands/DeleteGrantCommand.d.ts +5 -0
- package/dist-types/commands/DeleteLicenseCommand.d.ts +4 -0
- package/dist-types/commands/DeleteLicenseConfigurationCommand.d.ts +3 -0
- package/dist-types/commands/DeleteLicenseManagerReportGeneratorCommand.d.ts +3 -0
- package/dist-types/commands/DeleteTokenCommand.d.ts +3 -0
- package/dist-types/commands/ExtendLicenseConsumptionCommand.d.ts +4 -0
- package/dist-types/commands/GetAccessTokenCommand.d.ts +6 -0
- package/dist-types/commands/GetGrantCommand.d.ts +4 -0
- package/dist-types/commands/GetLicenseCommand.d.ts +4 -0
- package/dist-types/commands/GetLicenseConfigurationCommand.d.ts +3 -0
- package/dist-types/commands/GetLicenseConversionTaskCommand.d.ts +3 -0
- package/dist-types/commands/GetLicenseManagerReportGeneratorCommand.d.ts +3 -0
- package/dist-types/commands/GetLicenseUsageCommand.d.ts +3 -0
- package/dist-types/commands/GetServiceSettingsCommand.d.ts +1 -0
- package/dist-types/commands/ListAssociationsForLicenseConfigurationCommand.d.ts +5 -0
- package/dist-types/commands/ListDistributedGrantsCommand.d.ts +15 -0
- package/dist-types/commands/ListFailuresForLicenseConfigurationOperationsCommand.d.ts +5 -0
- package/dist-types/commands/ListLicenseConfigurationsCommand.d.ts +15 -0
- package/dist-types/commands/ListLicenseConversionTasksCommand.d.ts +12 -0
- package/dist-types/commands/ListLicenseManagerReportGeneratorsCommand.d.ts +12 -0
- package/dist-types/commands/ListLicenseSpecificationsForResourceCommand.d.ts +5 -0
- package/dist-types/commands/ListLicenseVersionsCommand.d.ts +5 -0
- package/dist-types/commands/ListLicensesCommand.d.ts +15 -0
- package/dist-types/commands/ListReceivedGrantsCommand.d.ts +15 -0
- package/dist-types/commands/ListReceivedGrantsForOrganizationCommand.d.ts +13 -0
- package/dist-types/commands/ListReceivedLicensesCommand.d.ts +15 -0
- package/dist-types/commands/ListReceivedLicensesForOrganizationCommand.d.ts +12 -0
- package/dist-types/commands/ListResourceInventoryCommand.d.ts +11 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
- package/dist-types/commands/ListTokensCommand.d.ts +15 -0
- package/dist-types/commands/ListUsageForLicenseConfigurationCommand.d.ts +13 -0
- package/dist-types/commands/RejectGrantCommand.d.ts +3 -0
- package/dist-types/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UpdateLicenseConfigurationCommand.d.ts +26 -0
- package/dist-types/commands/UpdateLicenseManagerReportGeneratorCommand.d.ts +18 -0
- package/dist-types/commands/UpdateLicenseSpecificationsForResourceCommand.d.ts +15 -0
- package/dist-types/commands/UpdateServiceSettingsCommand.d.ts +8 -0
- package/package.json +8 -8
|
@@ -26,6 +26,9 @@ export interface AcceptGrantCommandOutput extends AcceptGrantResponse, __Metadat
|
|
|
26
26
|
* import { LicenseManagerClient, AcceptGrantCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
27
27
|
* // const { LicenseManagerClient, AcceptGrantCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
28
28
|
* const client = new LicenseManagerClient(config);
|
|
29
|
+
* const input = { // AcceptGrantRequest
|
|
30
|
+
* GrantArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new AcceptGrantCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface CheckInLicenseCommandOutput extends CheckInLicenseResponse, __M
|
|
|
26
26
|
* import { LicenseManagerClient, CheckInLicenseCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
27
27
|
* // const { LicenseManagerClient, CheckInLicenseCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
28
28
|
* const client = new LicenseManagerClient(config);
|
|
29
|
+
* const input = { // CheckInLicenseRequest
|
|
30
|
+
* LicenseConsumptionToken: "STRING_VALUE", // required
|
|
31
|
+
* Beneficiary: "STRING_VALUE",
|
|
32
|
+
* };
|
|
29
33
|
* const command = new CheckInLicenseCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,25 @@ export interface CheckoutBorrowLicenseCommandOutput extends CheckoutBorrowLicens
|
|
|
26
26
|
* import { LicenseManagerClient, CheckoutBorrowLicenseCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
27
27
|
* // const { LicenseManagerClient, CheckoutBorrowLicenseCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
28
28
|
* const client = new LicenseManagerClient(config);
|
|
29
|
+
* const input = { // CheckoutBorrowLicenseRequest
|
|
30
|
+
* LicenseArn: "STRING_VALUE", // required
|
|
31
|
+
* Entitlements: [ // EntitlementDataList // required
|
|
32
|
+
* { // EntitlementData
|
|
33
|
+
* Name: "STRING_VALUE", // required
|
|
34
|
+
* Value: "STRING_VALUE",
|
|
35
|
+
* 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
|
|
36
|
+
* },
|
|
37
|
+
* ],
|
|
38
|
+
* DigitalSignatureMethod: "JWT_PS384", // required
|
|
39
|
+
* NodeId: "STRING_VALUE",
|
|
40
|
+
* CheckoutMetadata: [ // MetadataList
|
|
41
|
+
* { // Metadata
|
|
42
|
+
* Name: "STRING_VALUE",
|
|
43
|
+
* Value: "STRING_VALUE",
|
|
44
|
+
* },
|
|
45
|
+
* ],
|
|
46
|
+
* ClientToken: "STRING_VALUE", // required
|
|
47
|
+
* };
|
|
29
48
|
* const command = new CheckoutBorrowLicenseCommand(input);
|
|
30
49
|
* const response = await client.send(command);
|
|
31
50
|
* ```
|
|
@@ -30,6 +30,21 @@ export interface CheckoutLicenseCommandOutput extends CheckoutLicenseResponse, _
|
|
|
30
30
|
* import { LicenseManagerClient, CheckoutLicenseCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
31
31
|
* // const { LicenseManagerClient, CheckoutLicenseCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
32
32
|
* const client = new LicenseManagerClient(config);
|
|
33
|
+
* const input = { // CheckoutLicenseRequest
|
|
34
|
+
* ProductSKU: "STRING_VALUE", // required
|
|
35
|
+
* CheckoutType: "PROVISIONAL" || "PERPETUAL", // required
|
|
36
|
+
* KeyFingerprint: "STRING_VALUE", // required
|
|
37
|
+
* Entitlements: [ // EntitlementDataList // required
|
|
38
|
+
* { // EntitlementData
|
|
39
|
+
* Name: "STRING_VALUE", // required
|
|
40
|
+
* Value: "STRING_VALUE",
|
|
41
|
+
* 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
|
|
42
|
+
* },
|
|
43
|
+
* ],
|
|
44
|
+
* ClientToken: "STRING_VALUE", // required
|
|
45
|
+
* Beneficiary: "STRING_VALUE",
|
|
46
|
+
* NodeId: "STRING_VALUE",
|
|
47
|
+
* };
|
|
33
48
|
* const command = new CheckoutLicenseCommand(input);
|
|
34
49
|
* const response = await client.send(command);
|
|
35
50
|
* ```
|
|
@@ -26,6 +26,18 @@ export interface CreateGrantCommandOutput extends CreateGrantResponse, __Metadat
|
|
|
26
26
|
* import { LicenseManagerClient, CreateGrantCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
27
27
|
* // const { LicenseManagerClient, CreateGrantCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
28
28
|
* const client = new LicenseManagerClient(config);
|
|
29
|
+
* const input = { // CreateGrantRequest
|
|
30
|
+
* ClientToken: "STRING_VALUE", // required
|
|
31
|
+
* GrantName: "STRING_VALUE", // required
|
|
32
|
+
* LicenseArn: "STRING_VALUE", // required
|
|
33
|
+
* Principals: [ // PrincipalArnList // required
|
|
34
|
+
* "STRING_VALUE",
|
|
35
|
+
* ],
|
|
36
|
+
* HomeRegion: "STRING_VALUE", // required
|
|
37
|
+
* AllowedOperations: [ // AllowedOperationList // required
|
|
38
|
+
* "CreateGrant" || "CheckoutLicense" || "CheckoutBorrowLicense" || "CheckInLicense" || "ExtendConsumptionLicense" || "ListPurchasedLicenses" || "CreateToken",
|
|
39
|
+
* ],
|
|
40
|
+
* };
|
|
29
41
|
* const command = new CreateGrantCommand(input);
|
|
30
42
|
* const response = await client.send(command);
|
|
31
43
|
* ```
|
|
@@ -26,6 +26,17 @@ export interface CreateGrantVersionCommandOutput extends CreateGrantVersionRespo
|
|
|
26
26
|
* import { LicenseManagerClient, CreateGrantVersionCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
27
27
|
* // const { LicenseManagerClient, CreateGrantVersionCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
28
28
|
* const client = new LicenseManagerClient(config);
|
|
29
|
+
* const input = { // CreateGrantVersionRequest
|
|
30
|
+
* ClientToken: "STRING_VALUE", // required
|
|
31
|
+
* GrantArn: "STRING_VALUE", // required
|
|
32
|
+
* GrantName: "STRING_VALUE",
|
|
33
|
+
* AllowedOperations: [ // AllowedOperationList
|
|
34
|
+
* "CreateGrant" || "CheckoutLicense" || "CheckoutBorrowLicense" || "CheckInLicense" || "ExtendConsumptionLicense" || "ListPurchasedLicenses" || "CreateToken",
|
|
35
|
+
* ],
|
|
36
|
+
* Status: "PENDING_WORKFLOW" || "PENDING_ACCEPT" || "REJECTED" || "ACTIVE" || "FAILED_WORKFLOW" || "DELETED" || "PENDING_DELETE" || "DISABLED" || "WORKFLOW_COMPLETED",
|
|
37
|
+
* StatusReason: "STRING_VALUE",
|
|
38
|
+
* SourceVersion: "STRING_VALUE",
|
|
39
|
+
* };
|
|
29
40
|
* const command = new CreateGrantVersionCommand(input);
|
|
30
41
|
* const response = await client.send(command);
|
|
31
42
|
* ```
|
|
@@ -26,6 +26,48 @@ export interface CreateLicenseCommandOutput extends CreateLicenseResponse, __Met
|
|
|
26
26
|
* import { LicenseManagerClient, CreateLicenseCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
27
27
|
* // const { LicenseManagerClient, CreateLicenseCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
28
28
|
* const client = new LicenseManagerClient(config);
|
|
29
|
+
* const input = { // CreateLicenseRequest
|
|
30
|
+
* LicenseName: "STRING_VALUE", // required
|
|
31
|
+
* ProductName: "STRING_VALUE", // required
|
|
32
|
+
* ProductSKU: "STRING_VALUE", // required
|
|
33
|
+
* Issuer: { // Issuer
|
|
34
|
+
* Name: "STRING_VALUE", // required
|
|
35
|
+
* SignKey: "STRING_VALUE",
|
|
36
|
+
* },
|
|
37
|
+
* HomeRegion: "STRING_VALUE", // required
|
|
38
|
+
* Validity: { // DatetimeRange
|
|
39
|
+
* Begin: "STRING_VALUE", // required
|
|
40
|
+
* End: "STRING_VALUE",
|
|
41
|
+
* },
|
|
42
|
+
* Entitlements: [ // EntitlementList // required
|
|
43
|
+
* { // Entitlement
|
|
44
|
+
* Name: "STRING_VALUE", // required
|
|
45
|
+
* Value: "STRING_VALUE",
|
|
46
|
+
* MaxCount: Number("long"),
|
|
47
|
+
* Overage: true || false,
|
|
48
|
+
* 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
|
|
49
|
+
* AllowCheckIn: true || false,
|
|
50
|
+
* },
|
|
51
|
+
* ],
|
|
52
|
+
* Beneficiary: "STRING_VALUE", // required
|
|
53
|
+
* ConsumptionConfiguration: { // ConsumptionConfiguration
|
|
54
|
+
* RenewType: "None" || "Weekly" || "Monthly",
|
|
55
|
+
* ProvisionalConfiguration: { // ProvisionalConfiguration
|
|
56
|
+
* MaxTimeToLiveInMinutes: Number("int"), // required
|
|
57
|
+
* },
|
|
58
|
+
* BorrowConfiguration: { // BorrowConfiguration
|
|
59
|
+
* AllowEarlyCheckIn: true || false, // required
|
|
60
|
+
* MaxTimeToLiveInMinutes: Number("int"), // required
|
|
61
|
+
* },
|
|
62
|
+
* },
|
|
63
|
+
* LicenseMetadata: [ // MetadataList
|
|
64
|
+
* { // Metadata
|
|
65
|
+
* Name: "STRING_VALUE",
|
|
66
|
+
* Value: "STRING_VALUE",
|
|
67
|
+
* },
|
|
68
|
+
* ],
|
|
69
|
+
* ClientToken: "STRING_VALUE", // required
|
|
70
|
+
* };
|
|
29
71
|
* const command = new CreateLicenseCommand(input);
|
|
30
72
|
* const response = await client.send(command);
|
|
31
73
|
* ```
|
|
@@ -31,6 +31,37 @@ export interface CreateLicenseConfigurationCommandOutput extends CreateLicenseCo
|
|
|
31
31
|
* import { LicenseManagerClient, CreateLicenseConfigurationCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
32
32
|
* // const { LicenseManagerClient, CreateLicenseConfigurationCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
33
33
|
* const client = new LicenseManagerClient(config);
|
|
34
|
+
* const input = { // CreateLicenseConfigurationRequest
|
|
35
|
+
* Name: "STRING_VALUE", // required
|
|
36
|
+
* Description: "STRING_VALUE",
|
|
37
|
+
* LicenseCountingType: "vCPU" || "Instance" || "Core" || "Socket", // required
|
|
38
|
+
* LicenseCount: Number("long"),
|
|
39
|
+
* LicenseCountHardLimit: true || false,
|
|
40
|
+
* LicenseRules: [ // StringList
|
|
41
|
+
* "STRING_VALUE",
|
|
42
|
+
* ],
|
|
43
|
+
* Tags: [ // TagList
|
|
44
|
+
* { // Tag
|
|
45
|
+
* Key: "STRING_VALUE",
|
|
46
|
+
* Value: "STRING_VALUE",
|
|
47
|
+
* },
|
|
48
|
+
* ],
|
|
49
|
+
* DisassociateWhenNotFound: true || false,
|
|
50
|
+
* ProductInformationList: [ // ProductInformationList
|
|
51
|
+
* { // ProductInformation
|
|
52
|
+
* ResourceType: "STRING_VALUE", // required
|
|
53
|
+
* ProductInformationFilterList: [ // ProductInformationFilterList // required
|
|
54
|
+
* { // ProductInformationFilter
|
|
55
|
+
* ProductInformationFilterName: "STRING_VALUE", // required
|
|
56
|
+
* ProductInformationFilterValue: [
|
|
57
|
+
* "STRING_VALUE",
|
|
58
|
+
* ],
|
|
59
|
+
* ProductInformationFilterComparator: "STRING_VALUE", // required
|
|
60
|
+
* },
|
|
61
|
+
* ],
|
|
62
|
+
* },
|
|
63
|
+
* ],
|
|
64
|
+
* };
|
|
34
65
|
* const command = new CreateLicenseConfigurationCommand(input);
|
|
35
66
|
* const response = await client.send(command);
|
|
36
67
|
* ```
|
|
@@ -26,6 +26,15 @@ export interface CreateLicenseConversionTaskForResourceCommandOutput extends Cre
|
|
|
26
26
|
* import { LicenseManagerClient, CreateLicenseConversionTaskForResourceCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
27
27
|
* // const { LicenseManagerClient, CreateLicenseConversionTaskForResourceCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
28
28
|
* const client = new LicenseManagerClient(config);
|
|
29
|
+
* const input = { // CreateLicenseConversionTaskForResourceRequest
|
|
30
|
+
* ResourceArn: "STRING_VALUE", // required
|
|
31
|
+
* SourceLicenseContext: { // LicenseConversionContext
|
|
32
|
+
* UsageOperation: "STRING_VALUE",
|
|
33
|
+
* },
|
|
34
|
+
* DestinationLicenseContext: {
|
|
35
|
+
* UsageOperation: "STRING_VALUE",
|
|
36
|
+
* },
|
|
37
|
+
* };
|
|
29
38
|
* const command = new CreateLicenseConversionTaskForResourceCommand(input);
|
|
30
39
|
* const response = await client.send(command);
|
|
31
40
|
* ```
|
|
@@ -26,6 +26,29 @@ export interface CreateLicenseManagerReportGeneratorCommandOutput extends Create
|
|
|
26
26
|
* import { LicenseManagerClient, CreateLicenseManagerReportGeneratorCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
27
27
|
* // const { LicenseManagerClient, CreateLicenseManagerReportGeneratorCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
28
28
|
* const client = new LicenseManagerClient(config);
|
|
29
|
+
* const input = { // CreateLicenseManagerReportGeneratorRequest
|
|
30
|
+
* ReportGeneratorName: "STRING_VALUE", // required
|
|
31
|
+
* Type: [ // ReportTypeList // required
|
|
32
|
+
* "LicenseConfigurationSummaryReport" || "LicenseConfigurationUsageReport",
|
|
33
|
+
* ],
|
|
34
|
+
* ReportContext: { // ReportContext
|
|
35
|
+
* licenseConfigurationArns: [ // ArnList // required
|
|
36
|
+
* "STRING_VALUE",
|
|
37
|
+
* ],
|
|
38
|
+
* },
|
|
39
|
+
* ReportFrequency: { // ReportFrequency
|
|
40
|
+
* value: Number("int"),
|
|
41
|
+
* period: "DAY" || "WEEK" || "MONTH",
|
|
42
|
+
* },
|
|
43
|
+
* ClientToken: "STRING_VALUE", // required
|
|
44
|
+
* Description: "STRING_VALUE",
|
|
45
|
+
* Tags: [ // TagList
|
|
46
|
+
* { // Tag
|
|
47
|
+
* Key: "STRING_VALUE",
|
|
48
|
+
* Value: "STRING_VALUE",
|
|
49
|
+
* },
|
|
50
|
+
* ],
|
|
51
|
+
* };
|
|
29
52
|
* const command = new CreateLicenseManagerReportGeneratorCommand(input);
|
|
30
53
|
* const response = await client.send(command);
|
|
31
54
|
* ```
|
|
@@ -26,6 +26,49 @@ export interface CreateLicenseVersionCommandOutput extends CreateLicenseVersionR
|
|
|
26
26
|
* import { LicenseManagerClient, CreateLicenseVersionCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
27
27
|
* // const { LicenseManagerClient, CreateLicenseVersionCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
28
28
|
* const client = new LicenseManagerClient(config);
|
|
29
|
+
* const input = { // CreateLicenseVersionRequest
|
|
30
|
+
* LicenseArn: "STRING_VALUE", // required
|
|
31
|
+
* LicenseName: "STRING_VALUE", // required
|
|
32
|
+
* ProductName: "STRING_VALUE", // required
|
|
33
|
+
* Issuer: { // Issuer
|
|
34
|
+
* Name: "STRING_VALUE", // required
|
|
35
|
+
* SignKey: "STRING_VALUE",
|
|
36
|
+
* },
|
|
37
|
+
* HomeRegion: "STRING_VALUE", // required
|
|
38
|
+
* Validity: { // DatetimeRange
|
|
39
|
+
* Begin: "STRING_VALUE", // required
|
|
40
|
+
* End: "STRING_VALUE",
|
|
41
|
+
* },
|
|
42
|
+
* LicenseMetadata: [ // MetadataList
|
|
43
|
+
* { // Metadata
|
|
44
|
+
* Name: "STRING_VALUE",
|
|
45
|
+
* Value: "STRING_VALUE",
|
|
46
|
+
* },
|
|
47
|
+
* ],
|
|
48
|
+
* Entitlements: [ // EntitlementList // required
|
|
49
|
+
* { // Entitlement
|
|
50
|
+
* Name: "STRING_VALUE", // required
|
|
51
|
+
* Value: "STRING_VALUE",
|
|
52
|
+
* MaxCount: Number("long"),
|
|
53
|
+
* Overage: true || false,
|
|
54
|
+
* 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
|
|
55
|
+
* AllowCheckIn: true || false,
|
|
56
|
+
* },
|
|
57
|
+
* ],
|
|
58
|
+
* ConsumptionConfiguration: { // ConsumptionConfiguration
|
|
59
|
+
* RenewType: "None" || "Weekly" || "Monthly",
|
|
60
|
+
* ProvisionalConfiguration: { // ProvisionalConfiguration
|
|
61
|
+
* MaxTimeToLiveInMinutes: Number("int"), // required
|
|
62
|
+
* },
|
|
63
|
+
* BorrowConfiguration: { // BorrowConfiguration
|
|
64
|
+
* AllowEarlyCheckIn: true || false, // required
|
|
65
|
+
* MaxTimeToLiveInMinutes: Number("int"), // required
|
|
66
|
+
* },
|
|
67
|
+
* },
|
|
68
|
+
* Status: "AVAILABLE" || "PENDING_AVAILABLE" || "DEACTIVATED" || "SUSPENDED" || "EXPIRED" || "PENDING_DELETE" || "DELETED", // required
|
|
69
|
+
* ClientToken: "STRING_VALUE", // required
|
|
70
|
+
* SourceVersion: "STRING_VALUE",
|
|
71
|
+
* };
|
|
29
72
|
* const command = new CreateLicenseVersionCommand(input);
|
|
30
73
|
* const response = await client.send(command);
|
|
31
74
|
* ```
|
|
@@ -29,6 +29,17 @@ export interface CreateTokenCommandOutput extends CreateTokenResponse, __Metadat
|
|
|
29
29
|
* import { LicenseManagerClient, CreateTokenCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
30
30
|
* // const { LicenseManagerClient, CreateTokenCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
31
31
|
* const client = new LicenseManagerClient(config);
|
|
32
|
+
* const input = { // CreateTokenRequest
|
|
33
|
+
* LicenseArn: "STRING_VALUE", // required
|
|
34
|
+
* RoleArns: [ // ArnList
|
|
35
|
+
* "STRING_VALUE",
|
|
36
|
+
* ],
|
|
37
|
+
* ExpirationInDays: Number("int"),
|
|
38
|
+
* TokenProperties: [ // MaxSize3StringList
|
|
39
|
+
* "STRING_VALUE",
|
|
40
|
+
* ],
|
|
41
|
+
* ClientToken: "STRING_VALUE", // required
|
|
42
|
+
* };
|
|
32
43
|
* const command = new CreateTokenCommand(input);
|
|
33
44
|
* const response = await client.send(command);
|
|
34
45
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface DeleteGrantCommandOutput extends DeleteGrantResponse, __Metadat
|
|
|
26
26
|
* import { LicenseManagerClient, DeleteGrantCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
27
27
|
* // const { LicenseManagerClient, DeleteGrantCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
28
28
|
* const client = new LicenseManagerClient(config);
|
|
29
|
+
* const input = { // DeleteGrantRequest
|
|
30
|
+
* GrantArn: "STRING_VALUE", // required
|
|
31
|
+
* StatusReason: "STRING_VALUE",
|
|
32
|
+
* Version: "STRING_VALUE", // required
|
|
33
|
+
* };
|
|
29
34
|
* const command = new DeleteGrantCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface DeleteLicenseCommandOutput extends DeleteLicenseResponse, __Met
|
|
|
26
26
|
* import { LicenseManagerClient, DeleteLicenseCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
27
27
|
* // const { LicenseManagerClient, DeleteLicenseCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
28
28
|
* const client = new LicenseManagerClient(config);
|
|
29
|
+
* const input = { // DeleteLicenseRequest
|
|
30
|
+
* LicenseArn: "STRING_VALUE", // required
|
|
31
|
+
* SourceVersion: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new DeleteLicenseCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -27,6 +27,9 @@ export interface DeleteLicenseConfigurationCommandOutput extends DeleteLicenseCo
|
|
|
27
27
|
* import { LicenseManagerClient, DeleteLicenseConfigurationCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
28
28
|
* // const { LicenseManagerClient, DeleteLicenseConfigurationCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
29
29
|
* const client = new LicenseManagerClient(config);
|
|
30
|
+
* const input = { // DeleteLicenseConfigurationRequest
|
|
31
|
+
* LicenseConfigurationArn: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
30
33
|
* const command = new DeleteLicenseConfigurationCommand(input);
|
|
31
34
|
* const response = await client.send(command);
|
|
32
35
|
* ```
|
|
@@ -28,6 +28,9 @@ export interface DeleteLicenseManagerReportGeneratorCommandOutput extends Delete
|
|
|
28
28
|
* import { LicenseManagerClient, DeleteLicenseManagerReportGeneratorCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
29
29
|
* // const { LicenseManagerClient, DeleteLicenseManagerReportGeneratorCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
30
30
|
* const client = new LicenseManagerClient(config);
|
|
31
|
+
* const input = { // DeleteLicenseManagerReportGeneratorRequest
|
|
32
|
+
* LicenseManagerReportGeneratorArn: "STRING_VALUE", // required
|
|
33
|
+
* };
|
|
31
34
|
* const command = new DeleteLicenseManagerReportGeneratorCommand(input);
|
|
32
35
|
* const response = await client.send(command);
|
|
33
36
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DeleteTokenCommandOutput extends DeleteTokenResponse, __Metadat
|
|
|
26
26
|
* import { LicenseManagerClient, DeleteTokenCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
27
27
|
* // const { LicenseManagerClient, DeleteTokenCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
28
28
|
* const client = new LicenseManagerClient(config);
|
|
29
|
+
* const input = { // DeleteTokenRequest
|
|
30
|
+
* TokenId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DeleteTokenCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface ExtendLicenseConsumptionCommandOutput extends ExtendLicenseCons
|
|
|
26
26
|
* import { LicenseManagerClient, ExtendLicenseConsumptionCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
27
27
|
* // const { LicenseManagerClient, ExtendLicenseConsumptionCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
28
28
|
* const client = new LicenseManagerClient(config);
|
|
29
|
+
* const input = { // ExtendLicenseConsumptionRequest
|
|
30
|
+
* LicenseConsumptionToken: "STRING_VALUE", // required
|
|
31
|
+
* DryRun: true || false,
|
|
32
|
+
* };
|
|
29
33
|
* const command = new ExtendLicenseConsumptionCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -27,6 +27,12 @@ export interface GetAccessTokenCommandOutput extends GetAccessTokenResponse, __M
|
|
|
27
27
|
* import { LicenseManagerClient, GetAccessTokenCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
28
28
|
* // const { LicenseManagerClient, GetAccessTokenCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
29
29
|
* const client = new LicenseManagerClient(config);
|
|
30
|
+
* const input = { // GetAccessTokenRequest
|
|
31
|
+
* Token: "STRING_VALUE", // required
|
|
32
|
+
* TokenProperties: [ // MaxSize3StringList
|
|
33
|
+
* "STRING_VALUE",
|
|
34
|
+
* ],
|
|
35
|
+
* };
|
|
30
36
|
* const command = new GetAccessTokenCommand(input);
|
|
31
37
|
* const response = await client.send(command);
|
|
32
38
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface GetGrantCommandOutput extends GetGrantResponse, __MetadataBeare
|
|
|
26
26
|
* import { LicenseManagerClient, GetGrantCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
27
27
|
* // const { LicenseManagerClient, GetGrantCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
28
28
|
* const client = new LicenseManagerClient(config);
|
|
29
|
+
* const input = { // GetGrantRequest
|
|
30
|
+
* GrantArn: "STRING_VALUE", // required
|
|
31
|
+
* Version: "STRING_VALUE",
|
|
32
|
+
* };
|
|
29
33
|
* const command = new GetGrantCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface GetLicenseCommandOutput extends GetLicenseResponse, __MetadataB
|
|
|
26
26
|
* import { LicenseManagerClient, GetLicenseCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
27
27
|
* // const { LicenseManagerClient, GetLicenseCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
28
28
|
* const client = new LicenseManagerClient(config);
|
|
29
|
+
* const input = { // GetLicenseRequest
|
|
30
|
+
* LicenseArn: "STRING_VALUE", // required
|
|
31
|
+
* Version: "STRING_VALUE",
|
|
32
|
+
* };
|
|
29
33
|
* const command = new GetLicenseCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface GetLicenseConfigurationCommandOutput extends GetLicenseConfigur
|
|
|
26
26
|
* import { LicenseManagerClient, GetLicenseConfigurationCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
27
27
|
* // const { LicenseManagerClient, GetLicenseConfigurationCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
28
28
|
* const client = new LicenseManagerClient(config);
|
|
29
|
+
* const input = { // GetLicenseConfigurationRequest
|
|
30
|
+
* LicenseConfigurationArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new GetLicenseConfigurationCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface GetLicenseConversionTaskCommandOutput extends GetLicenseConvers
|
|
|
26
26
|
* import { LicenseManagerClient, GetLicenseConversionTaskCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
27
27
|
* // const { LicenseManagerClient, GetLicenseConversionTaskCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
28
28
|
* const client = new LicenseManagerClient(config);
|
|
29
|
+
* const input = { // GetLicenseConversionTaskRequest
|
|
30
|
+
* LicenseConversionTaskId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new GetLicenseConversionTaskCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface GetLicenseManagerReportGeneratorCommandOutput extends GetLicens
|
|
|
26
26
|
* import { LicenseManagerClient, GetLicenseManagerReportGeneratorCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
27
27
|
* // const { LicenseManagerClient, GetLicenseManagerReportGeneratorCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
28
28
|
* const client = new LicenseManagerClient(config);
|
|
29
|
+
* const input = { // GetLicenseManagerReportGeneratorRequest
|
|
30
|
+
* LicenseManagerReportGeneratorArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new GetLicenseManagerReportGeneratorCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface GetLicenseUsageCommandOutput extends GetLicenseUsageResponse, _
|
|
|
26
26
|
* import { LicenseManagerClient, GetLicenseUsageCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
27
27
|
* // const { LicenseManagerClient, GetLicenseUsageCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
28
28
|
* const client = new LicenseManagerClient(config);
|
|
29
|
+
* const input = { // GetLicenseUsageRequest
|
|
30
|
+
* LicenseArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new GetLicenseUsageCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,7 @@ export interface GetServiceSettingsCommandOutput extends GetServiceSettingsRespo
|
|
|
26
26
|
* import { LicenseManagerClient, GetServiceSettingsCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
27
27
|
* // const { LicenseManagerClient, GetServiceSettingsCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
28
28
|
* const client = new LicenseManagerClient(config);
|
|
29
|
+
* const input = {};
|
|
29
30
|
* const command = new GetServiceSettingsCommand(input);
|
|
30
31
|
* const response = await client.send(command);
|
|
31
32
|
* ```
|
|
@@ -29,6 +29,11 @@ export interface ListAssociationsForLicenseConfigurationCommandOutput extends Li
|
|
|
29
29
|
* import { LicenseManagerClient, ListAssociationsForLicenseConfigurationCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
30
30
|
* // const { LicenseManagerClient, ListAssociationsForLicenseConfigurationCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
31
31
|
* const client = new LicenseManagerClient(config);
|
|
32
|
+
* const input = { // ListAssociationsForLicenseConfigurationRequest
|
|
33
|
+
* LicenseConfigurationArn: "STRING_VALUE", // required
|
|
34
|
+
* MaxResults: Number("int"),
|
|
35
|
+
* NextToken: "STRING_VALUE",
|
|
36
|
+
* };
|
|
32
37
|
* const command = new ListAssociationsForLicenseConfigurationCommand(input);
|
|
33
38
|
* const response = await client.send(command);
|
|
34
39
|
* ```
|
|
@@ -26,6 +26,21 @@ export interface ListDistributedGrantsCommandOutput extends ListDistributedGrant
|
|
|
26
26
|
* import { LicenseManagerClient, ListDistributedGrantsCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
27
27
|
* // const { LicenseManagerClient, ListDistributedGrantsCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
28
28
|
* const client = new LicenseManagerClient(config);
|
|
29
|
+
* const input = { // ListDistributedGrantsRequest
|
|
30
|
+
* GrantArns: [ // ArnList
|
|
31
|
+
* "STRING_VALUE",
|
|
32
|
+
* ],
|
|
33
|
+
* Filters: [ // FilterList
|
|
34
|
+
* { // Filter
|
|
35
|
+
* Name: "STRING_VALUE",
|
|
36
|
+
* Values: [ // FilterValues
|
|
37
|
+
* "STRING_VALUE",
|
|
38
|
+
* ],
|
|
39
|
+
* },
|
|
40
|
+
* ],
|
|
41
|
+
* NextToken: "STRING_VALUE",
|
|
42
|
+
* MaxResults: Number("int"),
|
|
43
|
+
* };
|
|
29
44
|
* const command = new ListDistributedGrantsCommand(input);
|
|
30
45
|
* const response = await client.send(command);
|
|
31
46
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface ListFailuresForLicenseConfigurationOperationsCommandOutput exte
|
|
|
26
26
|
* import { LicenseManagerClient, ListFailuresForLicenseConfigurationOperationsCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
27
27
|
* // const { LicenseManagerClient, ListFailuresForLicenseConfigurationOperationsCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
28
28
|
* const client = new LicenseManagerClient(config);
|
|
29
|
+
* const input = { // ListFailuresForLicenseConfigurationOperationsRequest
|
|
30
|
+
* LicenseConfigurationArn: "STRING_VALUE", // required
|
|
31
|
+
* MaxResults: Number("int"),
|
|
32
|
+
* NextToken: "STRING_VALUE",
|
|
33
|
+
* };
|
|
29
34
|
* const command = new ListFailuresForLicenseConfigurationOperationsCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,21 @@ export interface ListLicenseConfigurationsCommandOutput extends ListLicenseConfi
|
|
|
26
26
|
* import { LicenseManagerClient, ListLicenseConfigurationsCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
27
27
|
* // const { LicenseManagerClient, ListLicenseConfigurationsCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
28
28
|
* const client = new LicenseManagerClient(config);
|
|
29
|
+
* const input = { // ListLicenseConfigurationsRequest
|
|
30
|
+
* LicenseConfigurationArns: [ // StringList
|
|
31
|
+
* "STRING_VALUE",
|
|
32
|
+
* ],
|
|
33
|
+
* MaxResults: Number("int"),
|
|
34
|
+
* NextToken: "STRING_VALUE",
|
|
35
|
+
* Filters: [ // Filters
|
|
36
|
+
* { // Filter
|
|
37
|
+
* Name: "STRING_VALUE",
|
|
38
|
+
* Values: [ // FilterValues
|
|
39
|
+
* "STRING_VALUE",
|
|
40
|
+
* ],
|
|
41
|
+
* },
|
|
42
|
+
* ],
|
|
43
|
+
* };
|
|
29
44
|
* const command = new ListLicenseConfigurationsCommand(input);
|
|
30
45
|
* const response = await client.send(command);
|
|
31
46
|
* ```
|
|
@@ -26,6 +26,18 @@ export interface ListLicenseConversionTasksCommandOutput extends ListLicenseConv
|
|
|
26
26
|
* import { LicenseManagerClient, ListLicenseConversionTasksCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
27
27
|
* // const { LicenseManagerClient, ListLicenseConversionTasksCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
28
28
|
* const client = new LicenseManagerClient(config);
|
|
29
|
+
* const input = { // ListLicenseConversionTasksRequest
|
|
30
|
+
* NextToken: "STRING_VALUE",
|
|
31
|
+
* MaxResults: Number("int"),
|
|
32
|
+
* Filters: [ // Filters
|
|
33
|
+
* { // Filter
|
|
34
|
+
* Name: "STRING_VALUE",
|
|
35
|
+
* Values: [ // FilterValues
|
|
36
|
+
* "STRING_VALUE",
|
|
37
|
+
* ],
|
|
38
|
+
* },
|
|
39
|
+
* ],
|
|
40
|
+
* };
|
|
29
41
|
* const command = new ListLicenseConversionTasksCommand(input);
|
|
30
42
|
* const response = await client.send(command);
|
|
31
43
|
* ```
|
|
@@ -26,6 +26,18 @@ export interface ListLicenseManagerReportGeneratorsCommandOutput extends ListLic
|
|
|
26
26
|
* import { LicenseManagerClient, ListLicenseManagerReportGeneratorsCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
27
27
|
* // const { LicenseManagerClient, ListLicenseManagerReportGeneratorsCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
28
28
|
* const client = new LicenseManagerClient(config);
|
|
29
|
+
* const input = { // ListLicenseManagerReportGeneratorsRequest
|
|
30
|
+
* Filters: [ // FilterList
|
|
31
|
+
* { // Filter
|
|
32
|
+
* Name: "STRING_VALUE",
|
|
33
|
+
* Values: [ // FilterValues
|
|
34
|
+
* "STRING_VALUE",
|
|
35
|
+
* ],
|
|
36
|
+
* },
|
|
37
|
+
* ],
|
|
38
|
+
* NextToken: "STRING_VALUE",
|
|
39
|
+
* MaxResults: Number("int"),
|
|
40
|
+
* };
|
|
29
41
|
* const command = new ListLicenseManagerReportGeneratorsCommand(input);
|
|
30
42
|
* const response = await client.send(command);
|
|
31
43
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface ListLicenseSpecificationsForResourceCommandOutput extends ListL
|
|
|
26
26
|
* import { LicenseManagerClient, ListLicenseSpecificationsForResourceCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
27
27
|
* // const { LicenseManagerClient, ListLicenseSpecificationsForResourceCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
28
28
|
* const client = new LicenseManagerClient(config);
|
|
29
|
+
* const input = { // ListLicenseSpecificationsForResourceRequest
|
|
30
|
+
* ResourceArn: "STRING_VALUE", // required
|
|
31
|
+
* MaxResults: Number("int"),
|
|
32
|
+
* NextToken: "STRING_VALUE",
|
|
33
|
+
* };
|
|
29
34
|
* const command = new ListLicenseSpecificationsForResourceCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface ListLicenseVersionsCommandOutput extends ListLicenseVersionsRes
|
|
|
26
26
|
* import { LicenseManagerClient, ListLicenseVersionsCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
27
27
|
* // const { LicenseManagerClient, ListLicenseVersionsCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
28
28
|
* const client = new LicenseManagerClient(config);
|
|
29
|
+
* const input = { // ListLicenseVersionsRequest
|
|
30
|
+
* LicenseArn: "STRING_VALUE", // required
|
|
31
|
+
* NextToken: "STRING_VALUE",
|
|
32
|
+
* MaxResults: Number("int"),
|
|
33
|
+
* };
|
|
29
34
|
* const command = new ListLicenseVersionsCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,21 @@ export interface ListLicensesCommandOutput extends ListLicensesResponse, __Metad
|
|
|
26
26
|
* import { LicenseManagerClient, ListLicensesCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
27
27
|
* // const { LicenseManagerClient, ListLicensesCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
28
28
|
* const client = new LicenseManagerClient(config);
|
|
29
|
+
* const input = { // ListLicensesRequest
|
|
30
|
+
* LicenseArns: [ // ArnList
|
|
31
|
+
* "STRING_VALUE",
|
|
32
|
+
* ],
|
|
33
|
+
* Filters: [ // FilterList
|
|
34
|
+
* { // Filter
|
|
35
|
+
* Name: "STRING_VALUE",
|
|
36
|
+
* Values: [ // FilterValues
|
|
37
|
+
* "STRING_VALUE",
|
|
38
|
+
* ],
|
|
39
|
+
* },
|
|
40
|
+
* ],
|
|
41
|
+
* NextToken: "STRING_VALUE",
|
|
42
|
+
* MaxResults: Number("int"),
|
|
43
|
+
* };
|
|
29
44
|
* const command = new ListLicensesCommand(input);
|
|
30
45
|
* const response = await client.send(command);
|
|
31
46
|
* ```
|
|
@@ -26,6 +26,21 @@ export interface ListReceivedGrantsCommandOutput extends ListReceivedGrantsRespo
|
|
|
26
26
|
* import { LicenseManagerClient, ListReceivedGrantsCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
27
27
|
* // const { LicenseManagerClient, ListReceivedGrantsCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
28
28
|
* const client = new LicenseManagerClient(config);
|
|
29
|
+
* const input = { // ListReceivedGrantsRequest
|
|
30
|
+
* GrantArns: [ // ArnList
|
|
31
|
+
* "STRING_VALUE",
|
|
32
|
+
* ],
|
|
33
|
+
* Filters: [ // FilterList
|
|
34
|
+
* { // Filter
|
|
35
|
+
* Name: "STRING_VALUE",
|
|
36
|
+
* Values: [ // FilterValues
|
|
37
|
+
* "STRING_VALUE",
|
|
38
|
+
* ],
|
|
39
|
+
* },
|
|
40
|
+
* ],
|
|
41
|
+
* NextToken: "STRING_VALUE",
|
|
42
|
+
* MaxResults: Number("int"),
|
|
43
|
+
* };
|
|
29
44
|
* const command = new ListReceivedGrantsCommand(input);
|
|
30
45
|
* const response = await client.send(command);
|
|
31
46
|
* ```
|
|
@@ -26,6 +26,19 @@ export interface ListReceivedGrantsForOrganizationCommandOutput extends ListRece
|
|
|
26
26
|
* import { LicenseManagerClient, ListReceivedGrantsForOrganizationCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
27
27
|
* // const { LicenseManagerClient, ListReceivedGrantsForOrganizationCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
28
28
|
* const client = new LicenseManagerClient(config);
|
|
29
|
+
* const input = { // ListReceivedGrantsForOrganizationRequest
|
|
30
|
+
* LicenseArn: "STRING_VALUE", // required
|
|
31
|
+
* Filters: [ // FilterList
|
|
32
|
+
* { // Filter
|
|
33
|
+
* Name: "STRING_VALUE",
|
|
34
|
+
* Values: [ // FilterValues
|
|
35
|
+
* "STRING_VALUE",
|
|
36
|
+
* ],
|
|
37
|
+
* },
|
|
38
|
+
* ],
|
|
39
|
+
* NextToken: "STRING_VALUE",
|
|
40
|
+
* MaxResults: Number("int"),
|
|
41
|
+
* };
|
|
29
42
|
* const command = new ListReceivedGrantsForOrganizationCommand(input);
|
|
30
43
|
* const response = await client.send(command);
|
|
31
44
|
* ```
|
|
@@ -26,6 +26,21 @@ export interface ListReceivedLicensesCommandOutput extends ListReceivedLicensesR
|
|
|
26
26
|
* import { LicenseManagerClient, ListReceivedLicensesCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
27
27
|
* // const { LicenseManagerClient, ListReceivedLicensesCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
28
28
|
* const client = new LicenseManagerClient(config);
|
|
29
|
+
* const input = { // ListReceivedLicensesRequest
|
|
30
|
+
* LicenseArns: [ // ArnList
|
|
31
|
+
* "STRING_VALUE",
|
|
32
|
+
* ],
|
|
33
|
+
* Filters: [ // FilterList
|
|
34
|
+
* { // Filter
|
|
35
|
+
* Name: "STRING_VALUE",
|
|
36
|
+
* Values: [ // FilterValues
|
|
37
|
+
* "STRING_VALUE",
|
|
38
|
+
* ],
|
|
39
|
+
* },
|
|
40
|
+
* ],
|
|
41
|
+
* NextToken: "STRING_VALUE",
|
|
42
|
+
* MaxResults: Number("int"),
|
|
43
|
+
* };
|
|
29
44
|
* const command = new ListReceivedLicensesCommand(input);
|
|
30
45
|
* const response = await client.send(command);
|
|
31
46
|
* ```
|
|
@@ -26,6 +26,18 @@ export interface ListReceivedLicensesForOrganizationCommandOutput extends ListRe
|
|
|
26
26
|
* import { LicenseManagerClient, ListReceivedLicensesForOrganizationCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
27
27
|
* // const { LicenseManagerClient, ListReceivedLicensesForOrganizationCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
28
28
|
* const client = new LicenseManagerClient(config);
|
|
29
|
+
* const input = { // ListReceivedLicensesForOrganizationRequest
|
|
30
|
+
* Filters: [ // FilterList
|
|
31
|
+
* { // Filter
|
|
32
|
+
* Name: "STRING_VALUE",
|
|
33
|
+
* Values: [ // FilterValues
|
|
34
|
+
* "STRING_VALUE",
|
|
35
|
+
* ],
|
|
36
|
+
* },
|
|
37
|
+
* ],
|
|
38
|
+
* NextToken: "STRING_VALUE",
|
|
39
|
+
* MaxResults: Number("int"),
|
|
40
|
+
* };
|
|
29
41
|
* const command = new ListReceivedLicensesForOrganizationCommand(input);
|
|
30
42
|
* const response = await client.send(command);
|
|
31
43
|
* ```
|
|
@@ -26,6 +26,17 @@ export interface ListResourceInventoryCommandOutput extends ListResourceInventor
|
|
|
26
26
|
* import { LicenseManagerClient, ListResourceInventoryCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
27
27
|
* // const { LicenseManagerClient, ListResourceInventoryCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
28
28
|
* const client = new LicenseManagerClient(config);
|
|
29
|
+
* const input = { // ListResourceInventoryRequest
|
|
30
|
+
* MaxResults: Number("int"),
|
|
31
|
+
* NextToken: "STRING_VALUE",
|
|
32
|
+
* Filters: [ // InventoryFilterList
|
|
33
|
+
* { // InventoryFilter
|
|
34
|
+
* Name: "STRING_VALUE", // required
|
|
35
|
+
* Condition: "EQUALS" || "NOT_EQUALS" || "BEGINS_WITH" || "CONTAINS", // required
|
|
36
|
+
* Value: "STRING_VALUE",
|
|
37
|
+
* },
|
|
38
|
+
* ],
|
|
39
|
+
* };
|
|
29
40
|
* const command = new ListResourceInventoryCommand(input);
|
|
30
41
|
* const response = await client.send(command);
|
|
31
42
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
26
26
|
* import { LicenseManagerClient, ListTagsForResourceCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
27
27
|
* // const { LicenseManagerClient, ListTagsForResourceCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
28
28
|
* const client = new LicenseManagerClient(config);
|
|
29
|
+
* const input = { // ListTagsForResourceRequest
|
|
30
|
+
* ResourceArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,21 @@ export interface ListTokensCommandOutput extends ListTokensResponse, __MetadataB
|
|
|
26
26
|
* import { LicenseManagerClient, ListTokensCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
27
27
|
* // const { LicenseManagerClient, ListTokensCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
28
28
|
* const client = new LicenseManagerClient(config);
|
|
29
|
+
* const input = { // ListTokensRequest
|
|
30
|
+
* TokenIds: [ // StringList
|
|
31
|
+
* "STRING_VALUE",
|
|
32
|
+
* ],
|
|
33
|
+
* Filters: [ // FilterList
|
|
34
|
+
* { // Filter
|
|
35
|
+
* Name: "STRING_VALUE",
|
|
36
|
+
* Values: [ // FilterValues
|
|
37
|
+
* "STRING_VALUE",
|
|
38
|
+
* ],
|
|
39
|
+
* },
|
|
40
|
+
* ],
|
|
41
|
+
* NextToken: "STRING_VALUE",
|
|
42
|
+
* MaxResults: Number("int"),
|
|
43
|
+
* };
|
|
29
44
|
* const command = new ListTokensCommand(input);
|
|
30
45
|
* const response = await client.send(command);
|
|
31
46
|
* ```
|
|
@@ -28,6 +28,19 @@ export interface ListUsageForLicenseConfigurationCommandOutput extends ListUsage
|
|
|
28
28
|
* import { LicenseManagerClient, ListUsageForLicenseConfigurationCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
29
29
|
* // const { LicenseManagerClient, ListUsageForLicenseConfigurationCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
30
30
|
* const client = new LicenseManagerClient(config);
|
|
31
|
+
* const input = { // ListUsageForLicenseConfigurationRequest
|
|
32
|
+
* LicenseConfigurationArn: "STRING_VALUE", // required
|
|
33
|
+
* MaxResults: Number("int"),
|
|
34
|
+
* NextToken: "STRING_VALUE",
|
|
35
|
+
* Filters: [ // Filters
|
|
36
|
+
* { // Filter
|
|
37
|
+
* Name: "STRING_VALUE",
|
|
38
|
+
* Values: [ // FilterValues
|
|
39
|
+
* "STRING_VALUE",
|
|
40
|
+
* ],
|
|
41
|
+
* },
|
|
42
|
+
* ],
|
|
43
|
+
* };
|
|
31
44
|
* const command = new ListUsageForLicenseConfigurationCommand(input);
|
|
32
45
|
* const response = await client.send(command);
|
|
33
46
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface RejectGrantCommandOutput extends RejectGrantResponse, __Metadat
|
|
|
26
26
|
* import { LicenseManagerClient, RejectGrantCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
27
27
|
* // const { LicenseManagerClient, RejectGrantCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
28
28
|
* const client = new LicenseManagerClient(config);
|
|
29
|
+
* const input = { // RejectGrantRequest
|
|
30
|
+
* GrantArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new RejectGrantCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,15 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
26
26
|
* import { LicenseManagerClient, TagResourceCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
27
27
|
* // const { LicenseManagerClient, TagResourceCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
28
28
|
* const client = new LicenseManagerClient(config);
|
|
29
|
+
* const input = { // TagResourceRequest
|
|
30
|
+
* ResourceArn: "STRING_VALUE", // required
|
|
31
|
+
* Tags: [ // TagList // required
|
|
32
|
+
* { // Tag
|
|
33
|
+
* Key: "STRING_VALUE",
|
|
34
|
+
* Value: "STRING_VALUE",
|
|
35
|
+
* },
|
|
36
|
+
* ],
|
|
37
|
+
* };
|
|
29
38
|
* const command = new TagResourceCommand(input);
|
|
30
39
|
* const response = await client.send(command);
|
|
31
40
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
26
26
|
* import { LicenseManagerClient, UntagResourceCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
27
27
|
* // const { LicenseManagerClient, UntagResourceCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
28
28
|
* const client = new LicenseManagerClient(config);
|
|
29
|
+
* const input = { // UntagResourceRequest
|
|
30
|
+
* ResourceArn: "STRING_VALUE", // required
|
|
31
|
+
* TagKeys: [ // TagKeyList // required
|
|
32
|
+
* "STRING_VALUE",
|
|
33
|
+
* ],
|
|
34
|
+
* };
|
|
29
35
|
* const command = new UntagResourceCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -26,6 +26,32 @@ export interface UpdateLicenseConfigurationCommandOutput extends UpdateLicenseCo
|
|
|
26
26
|
* import { LicenseManagerClient, UpdateLicenseConfigurationCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
27
27
|
* // const { LicenseManagerClient, UpdateLicenseConfigurationCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
28
28
|
* const client = new LicenseManagerClient(config);
|
|
29
|
+
* const input = { // UpdateLicenseConfigurationRequest
|
|
30
|
+
* LicenseConfigurationArn: "STRING_VALUE", // required
|
|
31
|
+
* LicenseConfigurationStatus: "AVAILABLE" || "DISABLED",
|
|
32
|
+
* LicenseRules: [ // StringList
|
|
33
|
+
* "STRING_VALUE",
|
|
34
|
+
* ],
|
|
35
|
+
* LicenseCount: Number("long"),
|
|
36
|
+
* LicenseCountHardLimit: true || false,
|
|
37
|
+
* Name: "STRING_VALUE",
|
|
38
|
+
* Description: "STRING_VALUE",
|
|
39
|
+
* ProductInformationList: [ // ProductInformationList
|
|
40
|
+
* { // ProductInformation
|
|
41
|
+
* ResourceType: "STRING_VALUE", // required
|
|
42
|
+
* ProductInformationFilterList: [ // ProductInformationFilterList // required
|
|
43
|
+
* { // ProductInformationFilter
|
|
44
|
+
* ProductInformationFilterName: "STRING_VALUE", // required
|
|
45
|
+
* ProductInformationFilterValue: [
|
|
46
|
+
* "STRING_VALUE",
|
|
47
|
+
* ],
|
|
48
|
+
* ProductInformationFilterComparator: "STRING_VALUE", // required
|
|
49
|
+
* },
|
|
50
|
+
* ],
|
|
51
|
+
* },
|
|
52
|
+
* ],
|
|
53
|
+
* DisassociateWhenNotFound: true || false,
|
|
54
|
+
* };
|
|
29
55
|
* const command = new UpdateLicenseConfigurationCommand(input);
|
|
30
56
|
* const response = await client.send(command);
|
|
31
57
|
* ```
|
|
@@ -27,6 +27,24 @@ export interface UpdateLicenseManagerReportGeneratorCommandOutput extends Update
|
|
|
27
27
|
* import { LicenseManagerClient, UpdateLicenseManagerReportGeneratorCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
28
28
|
* // const { LicenseManagerClient, UpdateLicenseManagerReportGeneratorCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
29
29
|
* const client = new LicenseManagerClient(config);
|
|
30
|
+
* const input = { // UpdateLicenseManagerReportGeneratorRequest
|
|
31
|
+
* LicenseManagerReportGeneratorArn: "STRING_VALUE", // required
|
|
32
|
+
* ReportGeneratorName: "STRING_VALUE", // required
|
|
33
|
+
* Type: [ // ReportTypeList // required
|
|
34
|
+
* "LicenseConfigurationSummaryReport" || "LicenseConfigurationUsageReport",
|
|
35
|
+
* ],
|
|
36
|
+
* ReportContext: { // ReportContext
|
|
37
|
+
* licenseConfigurationArns: [ // ArnList // required
|
|
38
|
+
* "STRING_VALUE",
|
|
39
|
+
* ],
|
|
40
|
+
* },
|
|
41
|
+
* ReportFrequency: { // ReportFrequency
|
|
42
|
+
* value: Number("int"),
|
|
43
|
+
* period: "DAY" || "WEEK" || "MONTH",
|
|
44
|
+
* },
|
|
45
|
+
* ClientToken: "STRING_VALUE", // required
|
|
46
|
+
* Description: "STRING_VALUE",
|
|
47
|
+
* };
|
|
30
48
|
* const command = new UpdateLicenseManagerReportGeneratorCommand(input);
|
|
31
49
|
* const response = await client.send(command);
|
|
32
50
|
* ```
|
|
@@ -29,6 +29,21 @@ export interface UpdateLicenseSpecificationsForResourceCommandOutput extends Upd
|
|
|
29
29
|
* import { LicenseManagerClient, UpdateLicenseSpecificationsForResourceCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
30
30
|
* // const { LicenseManagerClient, UpdateLicenseSpecificationsForResourceCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
31
31
|
* const client = new LicenseManagerClient(config);
|
|
32
|
+
* const input = { // UpdateLicenseSpecificationsForResourceRequest
|
|
33
|
+
* ResourceArn: "STRING_VALUE", // required
|
|
34
|
+
* AddLicenseSpecifications: [ // LicenseSpecifications
|
|
35
|
+
* { // LicenseSpecification
|
|
36
|
+
* LicenseConfigurationArn: "STRING_VALUE", // required
|
|
37
|
+
* AmiAssociationScope: "STRING_VALUE",
|
|
38
|
+
* },
|
|
39
|
+
* ],
|
|
40
|
+
* RemoveLicenseSpecifications: [
|
|
41
|
+
* {
|
|
42
|
+
* LicenseConfigurationArn: "STRING_VALUE", // required
|
|
43
|
+
* AmiAssociationScope: "STRING_VALUE",
|
|
44
|
+
* },
|
|
45
|
+
* ],
|
|
46
|
+
* };
|
|
32
47
|
* const command = new UpdateLicenseSpecificationsForResourceCommand(input);
|
|
33
48
|
* const response = await client.send(command);
|
|
34
49
|
* ```
|
|
@@ -26,6 +26,14 @@ export interface UpdateServiceSettingsCommandOutput extends UpdateServiceSetting
|
|
|
26
26
|
* import { LicenseManagerClient, UpdateServiceSettingsCommand } from "@aws-sdk/client-license-manager"; // ES Modules import
|
|
27
27
|
* // const { LicenseManagerClient, UpdateServiceSettingsCommand } = require("@aws-sdk/client-license-manager"); // CommonJS import
|
|
28
28
|
* const client = new LicenseManagerClient(config);
|
|
29
|
+
* const input = { // UpdateServiceSettingsRequest
|
|
30
|
+
* S3BucketArn: "STRING_VALUE",
|
|
31
|
+
* SnsTopicArn: "STRING_VALUE",
|
|
32
|
+
* OrganizationConfiguration: { // OrganizationConfiguration
|
|
33
|
+
* EnableIntegration: true || false, // required
|
|
34
|
+
* },
|
|
35
|
+
* EnableCrossAccountsDiscovery: true || false,
|
|
36
|
+
* };
|
|
29
37
|
* const command = new UpdateServiceSettingsCommand(input);
|
|
30
38
|
* const response = await client.send(command);
|
|
31
39
|
* ```
|
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.301.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.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.301.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.296.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.296.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.296.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.300.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.296.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.299.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.296.0",
|
|
39
39
|
"@aws-sdk/middleware-user-agent": "3.299.0",
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.300.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.296.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.296.0",
|
|
43
43
|
"@aws-sdk/smithy-client": "3.296.0",
|
|
@@ -47,11 +47,11 @@
|
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.295.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.295.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.296.0",
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.300.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.296.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.296.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.299.0",
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.300.0",
|
|
55
55
|
"@aws-sdk/util-utf8": "3.295.0",
|
|
56
56
|
"tslib": "^2.5.0"
|
|
57
57
|
},
|