@aws-sdk/client-license-manager 3.299.0 → 3.300.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (51) hide show
  1. package/dist-types/commands/AcceptGrantCommand.d.ts +3 -0
  2. package/dist-types/commands/CheckInLicenseCommand.d.ts +4 -0
  3. package/dist-types/commands/CheckoutBorrowLicenseCommand.d.ts +19 -0
  4. package/dist-types/commands/CheckoutLicenseCommand.d.ts +15 -0
  5. package/dist-types/commands/CreateGrantCommand.d.ts +12 -0
  6. package/dist-types/commands/CreateGrantVersionCommand.d.ts +11 -0
  7. package/dist-types/commands/CreateLicenseCommand.d.ts +42 -0
  8. package/dist-types/commands/CreateLicenseConfigurationCommand.d.ts +31 -0
  9. package/dist-types/commands/CreateLicenseConversionTaskForResourceCommand.d.ts +9 -0
  10. package/dist-types/commands/CreateLicenseManagerReportGeneratorCommand.d.ts +23 -0
  11. package/dist-types/commands/CreateLicenseVersionCommand.d.ts +43 -0
  12. package/dist-types/commands/CreateTokenCommand.d.ts +11 -0
  13. package/dist-types/commands/DeleteGrantCommand.d.ts +5 -0
  14. package/dist-types/commands/DeleteLicenseCommand.d.ts +4 -0
  15. package/dist-types/commands/DeleteLicenseConfigurationCommand.d.ts +3 -0
  16. package/dist-types/commands/DeleteLicenseManagerReportGeneratorCommand.d.ts +3 -0
  17. package/dist-types/commands/DeleteTokenCommand.d.ts +3 -0
  18. package/dist-types/commands/ExtendLicenseConsumptionCommand.d.ts +4 -0
  19. package/dist-types/commands/GetAccessTokenCommand.d.ts +6 -0
  20. package/dist-types/commands/GetGrantCommand.d.ts +4 -0
  21. package/dist-types/commands/GetLicenseCommand.d.ts +4 -0
  22. package/dist-types/commands/GetLicenseConfigurationCommand.d.ts +3 -0
  23. package/dist-types/commands/GetLicenseConversionTaskCommand.d.ts +3 -0
  24. package/dist-types/commands/GetLicenseManagerReportGeneratorCommand.d.ts +3 -0
  25. package/dist-types/commands/GetLicenseUsageCommand.d.ts +3 -0
  26. package/dist-types/commands/GetServiceSettingsCommand.d.ts +1 -0
  27. package/dist-types/commands/ListAssociationsForLicenseConfigurationCommand.d.ts +5 -0
  28. package/dist-types/commands/ListDistributedGrantsCommand.d.ts +15 -0
  29. package/dist-types/commands/ListFailuresForLicenseConfigurationOperationsCommand.d.ts +5 -0
  30. package/dist-types/commands/ListLicenseConfigurationsCommand.d.ts +15 -0
  31. package/dist-types/commands/ListLicenseConversionTasksCommand.d.ts +12 -0
  32. package/dist-types/commands/ListLicenseManagerReportGeneratorsCommand.d.ts +12 -0
  33. package/dist-types/commands/ListLicenseSpecificationsForResourceCommand.d.ts +5 -0
  34. package/dist-types/commands/ListLicenseVersionsCommand.d.ts +5 -0
  35. package/dist-types/commands/ListLicensesCommand.d.ts +15 -0
  36. package/dist-types/commands/ListReceivedGrantsCommand.d.ts +15 -0
  37. package/dist-types/commands/ListReceivedGrantsForOrganizationCommand.d.ts +13 -0
  38. package/dist-types/commands/ListReceivedLicensesCommand.d.ts +15 -0
  39. package/dist-types/commands/ListReceivedLicensesForOrganizationCommand.d.ts +12 -0
  40. package/dist-types/commands/ListResourceInventoryCommand.d.ts +11 -0
  41. package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
  42. package/dist-types/commands/ListTokensCommand.d.ts +15 -0
  43. package/dist-types/commands/ListUsageForLicenseConfigurationCommand.d.ts +13 -0
  44. package/dist-types/commands/RejectGrantCommand.d.ts +3 -0
  45. package/dist-types/commands/TagResourceCommand.d.ts +9 -0
  46. package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
  47. package/dist-types/commands/UpdateLicenseConfigurationCommand.d.ts +26 -0
  48. package/dist-types/commands/UpdateLicenseManagerReportGeneratorCommand.d.ts +18 -0
  49. package/dist-types/commands/UpdateLicenseSpecificationsForResourceCommand.d.ts +15 -0
  50. package/dist-types/commands/UpdateServiceSettingsCommand.d.ts +8 -0
  51. 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 = {
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 = {
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 = {
30
+ * LicenseArn: "STRING_VALUE", // required
31
+ * Entitlements: [ // required
32
+ * {
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: [
41
+ * {
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 = {
34
+ * ProductSKU: "STRING_VALUE", // required
35
+ * CheckoutType: "PROVISIONAL" || "PERPETUAL", // required
36
+ * KeyFingerprint: "STRING_VALUE", // required
37
+ * Entitlements: [ // required
38
+ * {
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 = {
30
+ * ClientToken: "STRING_VALUE", // required
31
+ * GrantName: "STRING_VALUE", // required
32
+ * LicenseArn: "STRING_VALUE", // required
33
+ * Principals: [ // required
34
+ * "STRING_VALUE",
35
+ * ],
36
+ * HomeRegion: "STRING_VALUE", // required
37
+ * AllowedOperations: [ // 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 = {
30
+ * ClientToken: "STRING_VALUE", // required
31
+ * GrantArn: "STRING_VALUE", // required
32
+ * GrantName: "STRING_VALUE",
33
+ * AllowedOperations: [
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 = {
30
+ * LicenseName: "STRING_VALUE", // required
31
+ * ProductName: "STRING_VALUE", // required
32
+ * ProductSKU: "STRING_VALUE", // required
33
+ * Issuer: {
34
+ * Name: "STRING_VALUE", // required
35
+ * SignKey: "STRING_VALUE",
36
+ * },
37
+ * HomeRegion: "STRING_VALUE", // required
38
+ * Validity: {
39
+ * Begin: "STRING_VALUE", // required
40
+ * End: "STRING_VALUE",
41
+ * },
42
+ * Entitlements: [ // required
43
+ * {
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: {
54
+ * RenewType: "None" || "Weekly" || "Monthly",
55
+ * ProvisionalConfiguration: {
56
+ * MaxTimeToLiveInMinutes: Number("int"), // required
57
+ * },
58
+ * BorrowConfiguration: {
59
+ * AllowEarlyCheckIn: true || false, // required
60
+ * MaxTimeToLiveInMinutes: Number("int"), // required
61
+ * },
62
+ * },
63
+ * LicenseMetadata: [
64
+ * {
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 = {
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: [
41
+ * "STRING_VALUE",
42
+ * ],
43
+ * Tags: [
44
+ * {
45
+ * Key: "STRING_VALUE",
46
+ * Value: "STRING_VALUE",
47
+ * },
48
+ * ],
49
+ * DisassociateWhenNotFound: true || false,
50
+ * ProductInformationList: [
51
+ * {
52
+ * ResourceType: "STRING_VALUE", // required
53
+ * ProductInformationFilterList: [ // required
54
+ * {
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 = {
30
+ * ResourceArn: "STRING_VALUE", // required
31
+ * SourceLicenseContext: {
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 = {
30
+ * ReportGeneratorName: "STRING_VALUE", // required
31
+ * Type: [ // required
32
+ * "LicenseConfigurationSummaryReport" || "LicenseConfigurationUsageReport",
33
+ * ],
34
+ * ReportContext: {
35
+ * licenseConfigurationArns: [ // required
36
+ * "STRING_VALUE",
37
+ * ],
38
+ * },
39
+ * ReportFrequency: {
40
+ * value: Number("int"),
41
+ * period: "DAY" || "WEEK" || "MONTH",
42
+ * },
43
+ * ClientToken: "STRING_VALUE", // required
44
+ * Description: "STRING_VALUE",
45
+ * Tags: [
46
+ * {
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 = {
30
+ * LicenseArn: "STRING_VALUE", // required
31
+ * LicenseName: "STRING_VALUE", // required
32
+ * ProductName: "STRING_VALUE", // required
33
+ * Issuer: {
34
+ * Name: "STRING_VALUE", // required
35
+ * SignKey: "STRING_VALUE",
36
+ * },
37
+ * HomeRegion: "STRING_VALUE", // required
38
+ * Validity: {
39
+ * Begin: "STRING_VALUE", // required
40
+ * End: "STRING_VALUE",
41
+ * },
42
+ * LicenseMetadata: [
43
+ * {
44
+ * Name: "STRING_VALUE",
45
+ * Value: "STRING_VALUE",
46
+ * },
47
+ * ],
48
+ * Entitlements: [ // required
49
+ * {
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: {
59
+ * RenewType: "None" || "Weekly" || "Monthly",
60
+ * ProvisionalConfiguration: {
61
+ * MaxTimeToLiveInMinutes: Number("int"), // required
62
+ * },
63
+ * 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 = {
33
+ * LicenseArn: "STRING_VALUE", // required
34
+ * RoleArns: [
35
+ * "STRING_VALUE",
36
+ * ],
37
+ * ExpirationInDays: Number("int"),
38
+ * TokenProperties: [
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 = {
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 = {
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 = {
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 = {
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 = {
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 = {
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 = {
31
+ * Token: "STRING_VALUE", // required
32
+ * TokenProperties: [
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 = {
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 = {
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 = {
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 = {
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 = {
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 = {
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 = {
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 = {
30
+ * GrantArns: [
31
+ * "STRING_VALUE",
32
+ * ],
33
+ * Filters: [
34
+ * {
35
+ * Name: "STRING_VALUE",
36
+ * Values: [
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 = {
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 = {
30
+ * LicenseConfigurationArns: [
31
+ * "STRING_VALUE",
32
+ * ],
33
+ * MaxResults: Number("int"),
34
+ * NextToken: "STRING_VALUE",
35
+ * Filters: [
36
+ * {
37
+ * Name: "STRING_VALUE",
38
+ * Values: [
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 = {
30
+ * NextToken: "STRING_VALUE",
31
+ * MaxResults: Number("int"),
32
+ * Filters: [
33
+ * {
34
+ * Name: "STRING_VALUE",
35
+ * Values: [
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 = {
30
+ * Filters: [
31
+ * {
32
+ * Name: "STRING_VALUE",
33
+ * Values: [
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 = {
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 = {
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 = {
30
+ * LicenseArns: [
31
+ * "STRING_VALUE",
32
+ * ],
33
+ * Filters: [
34
+ * {
35
+ * Name: "STRING_VALUE",
36
+ * Values: [
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 = {
30
+ * GrantArns: [
31
+ * "STRING_VALUE",
32
+ * ],
33
+ * Filters: [
34
+ * {
35
+ * Name: "STRING_VALUE",
36
+ * Values: [
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 = {
30
+ * LicenseArn: "STRING_VALUE", // required
31
+ * Filters: [
32
+ * {
33
+ * Name: "STRING_VALUE",
34
+ * Values: [
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 = {
30
+ * LicenseArns: [
31
+ * "STRING_VALUE",
32
+ * ],
33
+ * Filters: [
34
+ * {
35
+ * Name: "STRING_VALUE",
36
+ * Values: [
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 = {
30
+ * Filters: [
31
+ * {
32
+ * Name: "STRING_VALUE",
33
+ * Values: [
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 = {
30
+ * MaxResults: Number("int"),
31
+ * NextToken: "STRING_VALUE",
32
+ * Filters: [
33
+ * {
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 = {
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 = {
30
+ * TokenIds: [
31
+ * "STRING_VALUE",
32
+ * ],
33
+ * Filters: [
34
+ * {
35
+ * Name: "STRING_VALUE",
36
+ * Values: [
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 = {
32
+ * LicenseConfigurationArn: "STRING_VALUE", // required
33
+ * MaxResults: Number("int"),
34
+ * NextToken: "STRING_VALUE",
35
+ * Filters: [
36
+ * {
37
+ * Name: "STRING_VALUE",
38
+ * Values: [
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 = {
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 = {
30
+ * ResourceArn: "STRING_VALUE", // required
31
+ * Tags: [ // required
32
+ * {
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 = {
30
+ * ResourceArn: "STRING_VALUE", // required
31
+ * TagKeys: [ // 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 = {
30
+ * LicenseConfigurationArn: "STRING_VALUE", // required
31
+ * LicenseConfigurationStatus: "AVAILABLE" || "DISABLED",
32
+ * LicenseRules: [
33
+ * "STRING_VALUE",
34
+ * ],
35
+ * LicenseCount: Number("long"),
36
+ * LicenseCountHardLimit: true || false,
37
+ * Name: "STRING_VALUE",
38
+ * Description: "STRING_VALUE",
39
+ * ProductInformationList: [
40
+ * {
41
+ * ResourceType: "STRING_VALUE", // required
42
+ * ProductInformationFilterList: [ // required
43
+ * {
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 = {
31
+ * LicenseManagerReportGeneratorArn: "STRING_VALUE", // required
32
+ * ReportGeneratorName: "STRING_VALUE", // required
33
+ * Type: [ // required
34
+ * "LicenseConfigurationSummaryReport" || "LicenseConfigurationUsageReport",
35
+ * ],
36
+ * ReportContext: {
37
+ * licenseConfigurationArns: [ // required
38
+ * "STRING_VALUE",
39
+ * ],
40
+ * },
41
+ * 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 = {
33
+ * ResourceArn: "STRING_VALUE", // required
34
+ * AddLicenseSpecifications: [
35
+ * {
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 = {
30
+ * S3BucketArn: "STRING_VALUE",
31
+ * SnsTopicArn: "STRING_VALUE",
32
+ * 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.299.0",
4
+ "version": "3.300.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.299.0",
25
- "@aws-sdk/config-resolver": "3.299.0",
26
- "@aws-sdk/credential-provider-node": "3.299.0",
24
+ "@aws-sdk/client-sts": "3.300.0",
25
+ "@aws-sdk/config-resolver": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.300.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.296.0",
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.296.0",
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.299.0",
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.299.0",
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
  },