@aws-sdk/client-license-manager 3.325.0 → 3.327.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (51) hide show
  1. package/dist-types/commands/AcceptGrantCommand.d.ts +8 -0
  2. package/dist-types/commands/CheckInLicenseCommand.d.ts +4 -0
  3. package/dist-types/commands/CheckoutBorrowLicenseCommand.d.ts +24 -0
  4. package/dist-types/commands/CheckoutLicenseCommand.d.ts +19 -0
  5. package/dist-types/commands/CreateGrantCommand.d.ts +8 -0
  6. package/dist-types/commands/CreateGrantVersionCommand.d.ts +8 -0
  7. package/dist-types/commands/CreateLicenseCommand.d.ts +8 -0
  8. package/dist-types/commands/CreateLicenseConfigurationCommand.d.ts +6 -0
  9. package/dist-types/commands/CreateLicenseConversionTaskForResourceCommand.d.ts +6 -0
  10. package/dist-types/commands/CreateLicenseManagerReportGeneratorCommand.d.ts +6 -0
  11. package/dist-types/commands/CreateLicenseVersionCommand.d.ts +8 -0
  12. package/dist-types/commands/CreateTokenCommand.d.ts +8 -0
  13. package/dist-types/commands/DeleteGrantCommand.d.ts +8 -0
  14. package/dist-types/commands/DeleteLicenseCommand.d.ts +7 -0
  15. package/dist-types/commands/DeleteLicenseConfigurationCommand.d.ts +4 -0
  16. package/dist-types/commands/DeleteLicenseManagerReportGeneratorCommand.d.ts +4 -0
  17. package/dist-types/commands/DeleteTokenCommand.d.ts +4 -0
  18. package/dist-types/commands/ExtendLicenseConsumptionCommand.d.ts +7 -0
  19. package/dist-types/commands/GetAccessTokenCommand.d.ts +6 -0
  20. package/dist-types/commands/GetGrantCommand.d.ts +22 -0
  21. package/dist-types/commands/GetLicenseCommand.d.ts +51 -0
  22. package/dist-types/commands/GetLicenseConfigurationCommand.d.ts +54 -0
  23. package/dist-types/commands/GetLicenseConversionTaskCommand.d.ts +18 -0
  24. package/dist-types/commands/GetLicenseManagerReportGeneratorCommand.d.ts +37 -0
  25. package/dist-types/commands/GetLicenseUsageCommand.d.ts +15 -0
  26. package/dist-types/commands/GetServiceSettingsCommand.d.ts +12 -0
  27. package/dist-types/commands/ListAssociationsForLicenseConfigurationCommand.d.ts +15 -0
  28. package/dist-types/commands/ListDistributedGrantsCommand.d.ts +25 -0
  29. package/dist-types/commands/ListFailuresForLicenseConfigurationOperationsCommand.d.ts +23 -0
  30. package/dist-types/commands/ListLicenseConfigurationsCommand.d.ts +53 -0
  31. package/dist-types/commands/ListLicenseConversionTasksCommand.d.ts +23 -0
  32. package/dist-types/commands/ListLicenseManagerReportGeneratorsCommand.d.ts +40 -0
  33. package/dist-types/commands/ListLicenseSpecificationsForResourceCommand.d.ts +12 -0
  34. package/dist-types/commands/ListLicenseVersionsCommand.d.ts +54 -0
  35. package/dist-types/commands/ListLicensesCommand.d.ts +54 -0
  36. package/dist-types/commands/ListReceivedGrantsCommand.d.ts +25 -0
  37. package/dist-types/commands/ListReceivedGrantsForOrganizationCommand.d.ts +25 -0
  38. package/dist-types/commands/ListReceivedLicensesCommand.d.ts +61 -0
  39. package/dist-types/commands/ListReceivedLicensesForOrganizationCommand.d.ts +61 -0
  40. package/dist-types/commands/ListResourceInventoryCommand.d.ts +16 -0
  41. package/dist-types/commands/ListTagsForResourceCommand.d.ts +11 -0
  42. package/dist-types/commands/ListTokensCommand.d.ts +21 -0
  43. package/dist-types/commands/ListUsageForLicenseConfigurationCommand.d.ts +16 -0
  44. package/dist-types/commands/RejectGrantCommand.d.ts +8 -0
  45. package/dist-types/commands/TagResourceCommand.d.ts +4 -0
  46. package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
  47. package/dist-types/commands/UpdateLicenseConfigurationCommand.d.ts +4 -0
  48. package/dist-types/commands/UpdateLicenseManagerReportGeneratorCommand.d.ts +4 -0
  49. package/dist-types/commands/UpdateLicenseSpecificationsForResourceCommand.d.ts +4 -0
  50. package/dist-types/commands/UpdateServiceSettingsCommand.d.ts +4 -0
  51. package/package.json +7 -7
@@ -31,6 +31,41 @@ export interface GetLicenseManagerReportGeneratorCommandOutput extends GetLicens
31
31
  * };
32
32
  * const command = new GetLicenseManagerReportGeneratorCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // GetLicenseManagerReportGeneratorResponse
35
+ * // ReportGenerator: { // ReportGenerator
36
+ * // ReportGeneratorName: "STRING_VALUE",
37
+ * // ReportType: [ // ReportTypeList
38
+ * // "LicenseConfigurationSummaryReport" || "LicenseConfigurationUsageReport",
39
+ * // ],
40
+ * // ReportContext: { // ReportContext
41
+ * // licenseConfigurationArns: [ // ArnList // required
42
+ * // "STRING_VALUE",
43
+ * // ],
44
+ * // },
45
+ * // ReportFrequency: { // ReportFrequency
46
+ * // value: Number("int"),
47
+ * // period: "DAY" || "WEEK" || "MONTH",
48
+ * // },
49
+ * // LicenseManagerReportGeneratorArn: "STRING_VALUE",
50
+ * // LastRunStatus: "STRING_VALUE",
51
+ * // LastRunFailureReason: "STRING_VALUE",
52
+ * // LastReportGenerationTime: "STRING_VALUE",
53
+ * // ReportCreatorAccount: "STRING_VALUE",
54
+ * // Description: "STRING_VALUE",
55
+ * // S3Location: { // S3Location
56
+ * // bucket: "STRING_VALUE",
57
+ * // keyPrefix: "STRING_VALUE",
58
+ * // },
59
+ * // CreateTime: "STRING_VALUE",
60
+ * // Tags: [ // TagList
61
+ * // { // Tag
62
+ * // Key: "STRING_VALUE",
63
+ * // Value: "STRING_VALUE",
64
+ * // },
65
+ * // ],
66
+ * // },
67
+ * // };
68
+ *
34
69
  * ```
35
70
  *
36
71
  * @param GetLicenseManagerReportGeneratorCommandInput - {@link GetLicenseManagerReportGeneratorCommandInput}
@@ -64,6 +99,8 @@ export interface GetLicenseManagerReportGeneratorCommandOutput extends GetLicens
64
99
  * @throws {@link ValidationException} (client fault)
65
100
  * <p>The provided input is not valid. Try your request again.</p>
66
101
  *
102
+ * @throws {@link LicenseManagerServiceException}
103
+ * <p>Base exception class for all service exceptions from LicenseManager service.</p>
67
104
  *
68
105
  */
69
106
  export declare class GetLicenseManagerReportGeneratorCommand extends $Command<GetLicenseManagerReportGeneratorCommandInput, GetLicenseManagerReportGeneratorCommandOutput, LicenseManagerClientResolvedConfig> {
@@ -31,6 +31,19 @@ export interface GetLicenseUsageCommandOutput extends GetLicenseUsageResponse, _
31
31
  * };
32
32
  * const command = new GetLicenseUsageCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // GetLicenseUsageResponse
35
+ * // LicenseUsage: { // LicenseUsage
36
+ * // EntitlementUsages: [ // EntitlementUsageList
37
+ * // { // EntitlementUsage
38
+ * // Name: "STRING_VALUE", // required
39
+ * // ConsumedValue: "STRING_VALUE", // required
40
+ * // MaxCount: "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
+ * // },
45
+ * // };
46
+ *
34
47
  * ```
35
48
  *
36
49
  * @param GetLicenseUsageCommandInput - {@link GetLicenseUsageCommandInput}
@@ -58,6 +71,8 @@ export interface GetLicenseUsageCommandOutput extends GetLicenseUsageResponse, _
58
71
  * @throws {@link ValidationException} (client fault)
59
72
  * <p>The provided input is not valid. Try your request again.</p>
60
73
  *
74
+ * @throws {@link LicenseManagerServiceException}
75
+ * <p>Base exception class for all service exceptions from LicenseManager service.</p>
61
76
  *
62
77
  */
63
78
  export declare class GetLicenseUsageCommand extends $Command<GetLicenseUsageCommandInput, GetLicenseUsageCommandOutput, LicenseManagerClientResolvedConfig> {
@@ -29,6 +29,16 @@ export interface GetServiceSettingsCommandOutput extends GetServiceSettingsRespo
29
29
  * const input = {};
30
30
  * const command = new GetServiceSettingsCommand(input);
31
31
  * const response = await client.send(command);
32
+ * // { // GetServiceSettingsResponse
33
+ * // S3BucketArn: "STRING_VALUE",
34
+ * // SnsTopicArn: "STRING_VALUE",
35
+ * // OrganizationConfiguration: { // OrganizationConfiguration
36
+ * // EnableIntegration: true || false, // required
37
+ * // },
38
+ * // EnableCrossAccountsDiscovery: true || false,
39
+ * // LicenseManagerResourceShareArn: "STRING_VALUE",
40
+ * // };
41
+ *
32
42
  * ```
33
43
  *
34
44
  * @param GetServiceSettingsCommandInput - {@link GetServiceSettingsCommandInput}
@@ -50,6 +60,8 @@ export interface GetServiceSettingsCommandOutput extends GetServiceSettingsRespo
50
60
  * @throws {@link ServerInternalException} (server fault)
51
61
  * <p>The server experienced an internal error. Try again.</p>
52
62
  *
63
+ * @throws {@link LicenseManagerServiceException}
64
+ * <p>Base exception class for all service exceptions from LicenseManager service.</p>
53
65
  *
54
66
  */
55
67
  export declare class GetServiceSettingsCommand extends $Command<GetServiceSettingsCommandInput, GetServiceSettingsCommandOutput, LicenseManagerClientResolvedConfig> {
@@ -36,6 +36,19 @@ export interface ListAssociationsForLicenseConfigurationCommandOutput extends Li
36
36
  * };
37
37
  * const command = new ListAssociationsForLicenseConfigurationCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // ListAssociationsForLicenseConfigurationResponse
40
+ * // LicenseConfigurationAssociations: [ // LicenseConfigurationAssociations
41
+ * // { // LicenseConfigurationAssociation
42
+ * // ResourceArn: "STRING_VALUE",
43
+ * // ResourceType: "EC2_INSTANCE" || "EC2_HOST" || "EC2_AMI" || "RDS" || "SYSTEMS_MANAGER_MANAGED_INSTANCE",
44
+ * // ResourceOwnerId: "STRING_VALUE",
45
+ * // AssociationTime: new Date("TIMESTAMP"),
46
+ * // AmiAssociationScope: "STRING_VALUE",
47
+ * // },
48
+ * // ],
49
+ * // NextToken: "STRING_VALUE",
50
+ * // };
51
+ *
39
52
  * ```
40
53
  *
41
54
  * @param ListAssociationsForLicenseConfigurationCommandInput - {@link ListAssociationsForLicenseConfigurationCommandInput}
@@ -63,6 +76,8 @@ export interface ListAssociationsForLicenseConfigurationCommandOutput extends Li
63
76
  * @throws {@link ServerInternalException} (server fault)
64
77
  * <p>The server experienced an internal error. Try again.</p>
65
78
  *
79
+ * @throws {@link LicenseManagerServiceException}
80
+ * <p>Base exception class for all service exceptions from LicenseManager service.</p>
66
81
  *
67
82
  */
68
83
  export declare class ListAssociationsForLicenseConfigurationCommand extends $Command<ListAssociationsForLicenseConfigurationCommandInput, ListAssociationsForLicenseConfigurationCommandOutput, LicenseManagerClientResolvedConfig> {
@@ -43,6 +43,29 @@ export interface ListDistributedGrantsCommandOutput extends ListDistributedGrant
43
43
  * };
44
44
  * const command = new ListDistributedGrantsCommand(input);
45
45
  * const response = await client.send(command);
46
+ * // { // ListDistributedGrantsResponse
47
+ * // Grants: [ // GrantList
48
+ * // { // Grant
49
+ * // GrantArn: "STRING_VALUE", // required
50
+ * // GrantName: "STRING_VALUE", // required
51
+ * // ParentArn: "STRING_VALUE", // required
52
+ * // LicenseArn: "STRING_VALUE", // required
53
+ * // GranteePrincipalArn: "STRING_VALUE", // required
54
+ * // HomeRegion: "STRING_VALUE", // required
55
+ * // GrantStatus: "PENDING_WORKFLOW" || "PENDING_ACCEPT" || "REJECTED" || "ACTIVE" || "FAILED_WORKFLOW" || "DELETED" || "PENDING_DELETE" || "DISABLED" || "WORKFLOW_COMPLETED", // required
56
+ * // StatusReason: "STRING_VALUE",
57
+ * // Version: "STRING_VALUE", // required
58
+ * // GrantedOperations: [ // AllowedOperationList // required
59
+ * // "CreateGrant" || "CheckoutLicense" || "CheckoutBorrowLicense" || "CheckInLicense" || "ExtendConsumptionLicense" || "ListPurchasedLicenses" || "CreateToken",
60
+ * // ],
61
+ * // Options: { // Options
62
+ * // ActivationOverrideBehavior: "DISTRIBUTED_GRANTS_ONLY" || "ALL_GRANTS_PERMITTED_BY_ISSUER",
63
+ * // },
64
+ * // },
65
+ * // ],
66
+ * // NextToken: "STRING_VALUE",
67
+ * // };
68
+ *
46
69
  * ```
47
70
  *
48
71
  * @param ListDistributedGrantsCommandInput - {@link ListDistributedGrantsCommandInput}
@@ -73,6 +96,8 @@ export interface ListDistributedGrantsCommandOutput extends ListDistributedGrant
73
96
  * @throws {@link ValidationException} (client fault)
74
97
  * <p>The provided input is not valid. Try your request again.</p>
75
98
  *
99
+ * @throws {@link LicenseManagerServiceException}
100
+ * <p>Base exception class for all service exceptions from LicenseManager service.</p>
76
101
  *
77
102
  */
78
103
  export declare class ListDistributedGrantsCommand extends $Command<ListDistributedGrantsCommandInput, ListDistributedGrantsCommandOutput, LicenseManagerClientResolvedConfig> {
@@ -33,6 +33,27 @@ export interface ListFailuresForLicenseConfigurationOperationsCommandOutput exte
33
33
  * };
34
34
  * const command = new ListFailuresForLicenseConfigurationOperationsCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // ListFailuresForLicenseConfigurationOperationsResponse
37
+ * // LicenseOperationFailureList: [ // LicenseOperationFailureList
38
+ * // { // LicenseOperationFailure
39
+ * // ResourceArn: "STRING_VALUE",
40
+ * // ResourceType: "EC2_INSTANCE" || "EC2_HOST" || "EC2_AMI" || "RDS" || "SYSTEMS_MANAGER_MANAGED_INSTANCE",
41
+ * // ErrorMessage: "STRING_VALUE",
42
+ * // FailureTime: new Date("TIMESTAMP"),
43
+ * // OperationName: "STRING_VALUE",
44
+ * // ResourceOwnerId: "STRING_VALUE",
45
+ * // OperationRequestedBy: "STRING_VALUE",
46
+ * // MetadataList: [ // MetadataList
47
+ * // { // Metadata
48
+ * // Name: "STRING_VALUE",
49
+ * // Value: "STRING_VALUE",
50
+ * // },
51
+ * // ],
52
+ * // },
53
+ * // ],
54
+ * // NextToken: "STRING_VALUE",
55
+ * // };
56
+ *
36
57
  * ```
37
58
  *
38
59
  * @param ListFailuresForLicenseConfigurationOperationsCommandInput - {@link ListFailuresForLicenseConfigurationOperationsCommandInput}
@@ -57,6 +78,8 @@ export interface ListFailuresForLicenseConfigurationOperationsCommandOutput exte
57
78
  * @throws {@link ServerInternalException} (server fault)
58
79
  * <p>The server experienced an internal error. Try again.</p>
59
80
  *
81
+ * @throws {@link LicenseManagerServiceException}
82
+ * <p>Base exception class for all service exceptions from LicenseManager service.</p>
60
83
  *
61
84
  */
62
85
  export declare class ListFailuresForLicenseConfigurationOperationsCommand extends $Command<ListFailuresForLicenseConfigurationOperationsCommandInput, ListFailuresForLicenseConfigurationOperationsCommandOutput, LicenseManagerClientResolvedConfig> {
@@ -43,6 +43,57 @@ export interface ListLicenseConfigurationsCommandOutput extends ListLicenseConfi
43
43
  * };
44
44
  * const command = new ListLicenseConfigurationsCommand(input);
45
45
  * const response = await client.send(command);
46
+ * // { // ListLicenseConfigurationsResponse
47
+ * // LicenseConfigurations: [ // LicenseConfigurations
48
+ * // { // LicenseConfiguration
49
+ * // LicenseConfigurationId: "STRING_VALUE",
50
+ * // LicenseConfigurationArn: "STRING_VALUE",
51
+ * // Name: "STRING_VALUE",
52
+ * // Description: "STRING_VALUE",
53
+ * // LicenseCountingType: "vCPU" || "Instance" || "Core" || "Socket",
54
+ * // LicenseRules: [ // StringList
55
+ * // "STRING_VALUE",
56
+ * // ],
57
+ * // LicenseCount: Number("long"),
58
+ * // LicenseCountHardLimit: true || false,
59
+ * // DisassociateWhenNotFound: true || false,
60
+ * // ConsumedLicenses: Number("long"),
61
+ * // Status: "STRING_VALUE",
62
+ * // OwnerAccountId: "STRING_VALUE",
63
+ * // ConsumedLicenseSummaryList: [ // ConsumedLicenseSummaryList
64
+ * // { // ConsumedLicenseSummary
65
+ * // ResourceType: "EC2_INSTANCE" || "EC2_HOST" || "EC2_AMI" || "RDS" || "SYSTEMS_MANAGER_MANAGED_INSTANCE",
66
+ * // ConsumedLicenses: Number("long"),
67
+ * // },
68
+ * // ],
69
+ * // ManagedResourceSummaryList: [ // ManagedResourceSummaryList
70
+ * // { // ManagedResourceSummary
71
+ * // ResourceType: "EC2_INSTANCE" || "EC2_HOST" || "EC2_AMI" || "RDS" || "SYSTEMS_MANAGER_MANAGED_INSTANCE",
72
+ * // AssociationCount: Number("long"),
73
+ * // },
74
+ * // ],
75
+ * // ProductInformationList: [ // ProductInformationList
76
+ * // { // ProductInformation
77
+ * // ResourceType: "STRING_VALUE", // required
78
+ * // ProductInformationFilterList: [ // ProductInformationFilterList // required
79
+ * // { // ProductInformationFilter
80
+ * // ProductInformationFilterName: "STRING_VALUE", // required
81
+ * // ProductInformationFilterValue: [
82
+ * // "STRING_VALUE",
83
+ * // ],
84
+ * // ProductInformationFilterComparator: "STRING_VALUE", // required
85
+ * // },
86
+ * // ],
87
+ * // },
88
+ * // ],
89
+ * // AutomatedDiscoveryInformation: { // AutomatedDiscoveryInformation
90
+ * // LastRunTime: new Date("TIMESTAMP"),
91
+ * // },
92
+ * // },
93
+ * // ],
94
+ * // NextToken: "STRING_VALUE",
95
+ * // };
96
+ *
46
97
  * ```
47
98
  *
48
99
  * @param ListLicenseConfigurationsCommandInput - {@link ListLicenseConfigurationsCommandInput}
@@ -70,6 +121,8 @@ export interface ListLicenseConfigurationsCommandOutput extends ListLicenseConfi
70
121
  * @throws {@link ServerInternalException} (server fault)
71
122
  * <p>The server experienced an internal error. Try again.</p>
72
123
  *
124
+ * @throws {@link LicenseManagerServiceException}
125
+ * <p>Base exception class for all service exceptions from LicenseManager service.</p>
73
126
  *
74
127
  */
75
128
  export declare class ListLicenseConfigurationsCommand extends $Command<ListLicenseConfigurationsCommandInput, ListLicenseConfigurationsCommandOutput, LicenseManagerClientResolvedConfig> {
@@ -40,6 +40,27 @@ export interface ListLicenseConversionTasksCommandOutput extends ListLicenseConv
40
40
  * };
41
41
  * const command = new ListLicenseConversionTasksCommand(input);
42
42
  * const response = await client.send(command);
43
+ * // { // ListLicenseConversionTasksResponse
44
+ * // LicenseConversionTasks: [ // LicenseConversionTasks
45
+ * // { // LicenseConversionTask
46
+ * // LicenseConversionTaskId: "STRING_VALUE",
47
+ * // ResourceArn: "STRING_VALUE",
48
+ * // SourceLicenseContext: { // LicenseConversionContext
49
+ * // UsageOperation: "STRING_VALUE",
50
+ * // },
51
+ * // DestinationLicenseContext: {
52
+ * // UsageOperation: "STRING_VALUE",
53
+ * // },
54
+ * // Status: "IN_PROGRESS" || "SUCCEEDED" || "FAILED",
55
+ * // StatusMessage: "STRING_VALUE",
56
+ * // StartTime: new Date("TIMESTAMP"),
57
+ * // LicenseConversionTime: new Date("TIMESTAMP"),
58
+ * // EndTime: new Date("TIMESTAMP"),
59
+ * // },
60
+ * // ],
61
+ * // NextToken: "STRING_VALUE",
62
+ * // };
63
+ *
43
64
  * ```
44
65
  *
45
66
  * @param ListLicenseConversionTasksCommandInput - {@link ListLicenseConversionTasksCommandInput}
@@ -64,6 +85,8 @@ export interface ListLicenseConversionTasksCommandOutput extends ListLicenseConv
64
85
  * @throws {@link ServerInternalException} (server fault)
65
86
  * <p>The server experienced an internal error. Try again.</p>
66
87
  *
88
+ * @throws {@link LicenseManagerServiceException}
89
+ * <p>Base exception class for all service exceptions from LicenseManager service.</p>
67
90
  *
68
91
  */
69
92
  export declare class ListLicenseConversionTasksCommand extends $Command<ListLicenseConversionTasksCommandInput, ListLicenseConversionTasksCommandOutput, LicenseManagerClientResolvedConfig> {
@@ -40,6 +40,44 @@ export interface ListLicenseManagerReportGeneratorsCommandOutput extends ListLic
40
40
  * };
41
41
  * const command = new ListLicenseManagerReportGeneratorsCommand(input);
42
42
  * const response = await client.send(command);
43
+ * // { // ListLicenseManagerReportGeneratorsResponse
44
+ * // ReportGenerators: [ // ReportGeneratorList
45
+ * // { // ReportGenerator
46
+ * // ReportGeneratorName: "STRING_VALUE",
47
+ * // ReportType: [ // ReportTypeList
48
+ * // "LicenseConfigurationSummaryReport" || "LicenseConfigurationUsageReport",
49
+ * // ],
50
+ * // ReportContext: { // ReportContext
51
+ * // licenseConfigurationArns: [ // ArnList // required
52
+ * // "STRING_VALUE",
53
+ * // ],
54
+ * // },
55
+ * // ReportFrequency: { // ReportFrequency
56
+ * // value: Number("int"),
57
+ * // period: "DAY" || "WEEK" || "MONTH",
58
+ * // },
59
+ * // LicenseManagerReportGeneratorArn: "STRING_VALUE",
60
+ * // LastRunStatus: "STRING_VALUE",
61
+ * // LastRunFailureReason: "STRING_VALUE",
62
+ * // LastReportGenerationTime: "STRING_VALUE",
63
+ * // ReportCreatorAccount: "STRING_VALUE",
64
+ * // Description: "STRING_VALUE",
65
+ * // S3Location: { // S3Location
66
+ * // bucket: "STRING_VALUE",
67
+ * // keyPrefix: "STRING_VALUE",
68
+ * // },
69
+ * // CreateTime: "STRING_VALUE",
70
+ * // Tags: [ // TagList
71
+ * // { // Tag
72
+ * // Key: "STRING_VALUE",
73
+ * // Value: "STRING_VALUE",
74
+ * // },
75
+ * // ],
76
+ * // },
77
+ * // ],
78
+ * // NextToken: "STRING_VALUE",
79
+ * // };
80
+ *
43
81
  * ```
44
82
  *
45
83
  * @param ListLicenseManagerReportGeneratorsCommandInput - {@link ListLicenseManagerReportGeneratorsCommandInput}
@@ -73,6 +111,8 @@ export interface ListLicenseManagerReportGeneratorsCommandOutput extends ListLic
73
111
  * @throws {@link ValidationException} (client fault)
74
112
  * <p>The provided input is not valid. Try your request again.</p>
75
113
  *
114
+ * @throws {@link LicenseManagerServiceException}
115
+ * <p>Base exception class for all service exceptions from LicenseManager service.</p>
76
116
  *
77
117
  */
78
118
  export declare class ListLicenseManagerReportGeneratorsCommand extends $Command<ListLicenseManagerReportGeneratorsCommandInput, ListLicenseManagerReportGeneratorsCommandOutput, LicenseManagerClientResolvedConfig> {
@@ -33,6 +33,16 @@ export interface ListLicenseSpecificationsForResourceCommandOutput extends ListL
33
33
  * };
34
34
  * const command = new ListLicenseSpecificationsForResourceCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // ListLicenseSpecificationsForResourceResponse
37
+ * // LicenseSpecifications: [ // LicenseSpecifications
38
+ * // { // LicenseSpecification
39
+ * // LicenseConfigurationArn: "STRING_VALUE", // required
40
+ * // AmiAssociationScope: "STRING_VALUE",
41
+ * // },
42
+ * // ],
43
+ * // NextToken: "STRING_VALUE",
44
+ * // };
45
+ *
36
46
  * ```
37
47
  *
38
48
  * @param ListLicenseSpecificationsForResourceCommandInput - {@link ListLicenseSpecificationsForResourceCommandInput}
@@ -57,6 +67,8 @@ export interface ListLicenseSpecificationsForResourceCommandOutput extends ListL
57
67
  * @throws {@link ServerInternalException} (server fault)
58
68
  * <p>The server experienced an internal error. Try again.</p>
59
69
  *
70
+ * @throws {@link LicenseManagerServiceException}
71
+ * <p>Base exception class for all service exceptions from LicenseManager service.</p>
60
72
  *
61
73
  */
62
74
  export declare class ListLicenseSpecificationsForResourceCommand extends $Command<ListLicenseSpecificationsForResourceCommandInput, ListLicenseSpecificationsForResourceCommandOutput, LicenseManagerClientResolvedConfig> {
@@ -33,6 +33,58 @@ export interface ListLicenseVersionsCommandOutput extends ListLicenseVersionsRes
33
33
  * };
34
34
  * const command = new ListLicenseVersionsCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // ListLicenseVersionsResponse
37
+ * // Licenses: [ // LicenseList
38
+ * // { // License
39
+ * // LicenseArn: "STRING_VALUE",
40
+ * // LicenseName: "STRING_VALUE",
41
+ * // ProductName: "STRING_VALUE",
42
+ * // ProductSKU: "STRING_VALUE",
43
+ * // Issuer: { // IssuerDetails
44
+ * // Name: "STRING_VALUE",
45
+ * // SignKey: "STRING_VALUE",
46
+ * // KeyFingerprint: "STRING_VALUE",
47
+ * // },
48
+ * // HomeRegion: "STRING_VALUE",
49
+ * // Status: "AVAILABLE" || "PENDING_AVAILABLE" || "DEACTIVATED" || "SUSPENDED" || "EXPIRED" || "PENDING_DELETE" || "DELETED",
50
+ * // Validity: { // DatetimeRange
51
+ * // Begin: "STRING_VALUE", // required
52
+ * // End: "STRING_VALUE",
53
+ * // },
54
+ * // Beneficiary: "STRING_VALUE",
55
+ * // Entitlements: [ // EntitlementList
56
+ * // { // Entitlement
57
+ * // Name: "STRING_VALUE", // required
58
+ * // Value: "STRING_VALUE",
59
+ * // MaxCount: Number("long"),
60
+ * // Overage: true || false,
61
+ * // 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
62
+ * // AllowCheckIn: true || false,
63
+ * // },
64
+ * // ],
65
+ * // ConsumptionConfiguration: { // ConsumptionConfiguration
66
+ * // RenewType: "None" || "Weekly" || "Monthly",
67
+ * // ProvisionalConfiguration: { // ProvisionalConfiguration
68
+ * // MaxTimeToLiveInMinutes: Number("int"), // required
69
+ * // },
70
+ * // BorrowConfiguration: { // BorrowConfiguration
71
+ * // AllowEarlyCheckIn: true || false, // required
72
+ * // MaxTimeToLiveInMinutes: Number("int"), // required
73
+ * // },
74
+ * // },
75
+ * // LicenseMetadata: [ // MetadataList
76
+ * // { // Metadata
77
+ * // Name: "STRING_VALUE",
78
+ * // Value: "STRING_VALUE",
79
+ * // },
80
+ * // ],
81
+ * // CreateTime: "STRING_VALUE",
82
+ * // Version: "STRING_VALUE",
83
+ * // },
84
+ * // ],
85
+ * // NextToken: "STRING_VALUE",
86
+ * // };
87
+ *
36
88
  * ```
37
89
  *
38
90
  * @param ListLicenseVersionsCommandInput - {@link ListLicenseVersionsCommandInput}
@@ -57,6 +109,8 @@ export interface ListLicenseVersionsCommandOutput extends ListLicenseVersionsRes
57
109
  * @throws {@link ServerInternalException} (server fault)
58
110
  * <p>The server experienced an internal error. Try again.</p>
59
111
  *
112
+ * @throws {@link LicenseManagerServiceException}
113
+ * <p>Base exception class for all service exceptions from LicenseManager service.</p>
60
114
  *
61
115
  */
62
116
  export declare class ListLicenseVersionsCommand extends $Command<ListLicenseVersionsCommandInput, ListLicenseVersionsCommandOutput, LicenseManagerClientResolvedConfig> {
@@ -43,6 +43,58 @@ export interface ListLicensesCommandOutput extends ListLicensesResponse, __Metad
43
43
  * };
44
44
  * const command = new ListLicensesCommand(input);
45
45
  * const response = await client.send(command);
46
+ * // { // ListLicensesResponse
47
+ * // Licenses: [ // LicenseList
48
+ * // { // License
49
+ * // LicenseArn: "STRING_VALUE",
50
+ * // LicenseName: "STRING_VALUE",
51
+ * // ProductName: "STRING_VALUE",
52
+ * // ProductSKU: "STRING_VALUE",
53
+ * // Issuer: { // IssuerDetails
54
+ * // Name: "STRING_VALUE",
55
+ * // SignKey: "STRING_VALUE",
56
+ * // KeyFingerprint: "STRING_VALUE",
57
+ * // },
58
+ * // HomeRegion: "STRING_VALUE",
59
+ * // Status: "AVAILABLE" || "PENDING_AVAILABLE" || "DEACTIVATED" || "SUSPENDED" || "EXPIRED" || "PENDING_DELETE" || "DELETED",
60
+ * // Validity: { // DatetimeRange
61
+ * // Begin: "STRING_VALUE", // required
62
+ * // End: "STRING_VALUE",
63
+ * // },
64
+ * // Beneficiary: "STRING_VALUE",
65
+ * // Entitlements: [ // EntitlementList
66
+ * // { // Entitlement
67
+ * // Name: "STRING_VALUE", // required
68
+ * // Value: "STRING_VALUE",
69
+ * // MaxCount: Number("long"),
70
+ * // Overage: true || false,
71
+ * // Unit: "Count" || "None" || "Seconds" || "Microseconds" || "Milliseconds" || "Bytes" || "Kilobytes" || "Megabytes" || "Gigabytes" || "Terabytes" || "Bits" || "Kilobits" || "Megabits" || "Gigabits" || "Terabits" || "Percent" || "Bytes/Second" || "Kilobytes/Second" || "Megabytes/Second" || "Gigabytes/Second" || "Terabytes/Second" || "Bits/Second" || "Kilobits/Second" || "Megabits/Second" || "Gigabits/Second" || "Terabits/Second" || "Count/Second", // required
72
+ * // AllowCheckIn: true || false,
73
+ * // },
74
+ * // ],
75
+ * // ConsumptionConfiguration: { // ConsumptionConfiguration
76
+ * // RenewType: "None" || "Weekly" || "Monthly",
77
+ * // ProvisionalConfiguration: { // ProvisionalConfiguration
78
+ * // MaxTimeToLiveInMinutes: Number("int"), // required
79
+ * // },
80
+ * // BorrowConfiguration: { // BorrowConfiguration
81
+ * // AllowEarlyCheckIn: true || false, // required
82
+ * // MaxTimeToLiveInMinutes: Number("int"), // required
83
+ * // },
84
+ * // },
85
+ * // LicenseMetadata: [ // MetadataList
86
+ * // { // Metadata
87
+ * // Name: "STRING_VALUE",
88
+ * // Value: "STRING_VALUE",
89
+ * // },
90
+ * // ],
91
+ * // CreateTime: "STRING_VALUE",
92
+ * // Version: "STRING_VALUE",
93
+ * // },
94
+ * // ],
95
+ * // NextToken: "STRING_VALUE",
96
+ * // };
97
+ *
46
98
  * ```
47
99
  *
48
100
  * @param ListLicensesCommandInput - {@link ListLicensesCommandInput}
@@ -70,6 +122,8 @@ export interface ListLicensesCommandOutput extends ListLicensesResponse, __Metad
70
122
  * @throws {@link ValidationException} (client fault)
71
123
  * <p>The provided input is not valid. Try your request again.</p>
72
124
  *
125
+ * @throws {@link LicenseManagerServiceException}
126
+ * <p>Base exception class for all service exceptions from LicenseManager service.</p>
73
127
  *
74
128
  */
75
129
  export declare class ListLicensesCommand extends $Command<ListLicensesCommandInput, ListLicensesCommandOutput, LicenseManagerClientResolvedConfig> {
@@ -45,6 +45,29 @@ export interface ListReceivedGrantsCommandOutput extends ListReceivedGrantsRespo
45
45
  * };
46
46
  * const command = new ListReceivedGrantsCommand(input);
47
47
  * const response = await client.send(command);
48
+ * // { // ListReceivedGrantsResponse
49
+ * // Grants: [ // GrantList
50
+ * // { // Grant
51
+ * // GrantArn: "STRING_VALUE", // required
52
+ * // GrantName: "STRING_VALUE", // required
53
+ * // ParentArn: "STRING_VALUE", // required
54
+ * // LicenseArn: "STRING_VALUE", // required
55
+ * // GranteePrincipalArn: "STRING_VALUE", // required
56
+ * // HomeRegion: "STRING_VALUE", // required
57
+ * // GrantStatus: "PENDING_WORKFLOW" || "PENDING_ACCEPT" || "REJECTED" || "ACTIVE" || "FAILED_WORKFLOW" || "DELETED" || "PENDING_DELETE" || "DISABLED" || "WORKFLOW_COMPLETED", // required
58
+ * // StatusReason: "STRING_VALUE",
59
+ * // Version: "STRING_VALUE", // required
60
+ * // GrantedOperations: [ // AllowedOperationList // required
61
+ * // "CreateGrant" || "CheckoutLicense" || "CheckoutBorrowLicense" || "CheckInLicense" || "ExtendConsumptionLicense" || "ListPurchasedLicenses" || "CreateToken",
62
+ * // ],
63
+ * // Options: { // Options
64
+ * // ActivationOverrideBehavior: "DISTRIBUTED_GRANTS_ONLY" || "ALL_GRANTS_PERMITTED_BY_ISSUER",
65
+ * // },
66
+ * // },
67
+ * // ],
68
+ * // NextToken: "STRING_VALUE",
69
+ * // };
70
+ *
48
71
  * ```
49
72
  *
50
73
  * @param ListReceivedGrantsCommandInput - {@link ListReceivedGrantsCommandInput}
@@ -75,6 +98,8 @@ export interface ListReceivedGrantsCommandOutput extends ListReceivedGrantsRespo
75
98
  * @throws {@link ValidationException} (client fault)
76
99
  * <p>The provided input is not valid. Try your request again.</p>
77
100
  *
101
+ * @throws {@link LicenseManagerServiceException}
102
+ * <p>Base exception class for all service exceptions from LicenseManager service.</p>
78
103
  *
79
104
  */
80
105
  export declare class ListReceivedGrantsCommand extends $Command<ListReceivedGrantsCommandInput, ListReceivedGrantsCommandOutput, LicenseManagerClientResolvedConfig> {
@@ -41,6 +41,29 @@ export interface ListReceivedGrantsForOrganizationCommandOutput extends ListRece
41
41
  * };
42
42
  * const command = new ListReceivedGrantsForOrganizationCommand(input);
43
43
  * const response = await client.send(command);
44
+ * // { // ListReceivedGrantsForOrganizationResponse
45
+ * // Grants: [ // GrantList
46
+ * // { // Grant
47
+ * // GrantArn: "STRING_VALUE", // required
48
+ * // GrantName: "STRING_VALUE", // required
49
+ * // ParentArn: "STRING_VALUE", // required
50
+ * // LicenseArn: "STRING_VALUE", // required
51
+ * // GranteePrincipalArn: "STRING_VALUE", // required
52
+ * // HomeRegion: "STRING_VALUE", // required
53
+ * // GrantStatus: "PENDING_WORKFLOW" || "PENDING_ACCEPT" || "REJECTED" || "ACTIVE" || "FAILED_WORKFLOW" || "DELETED" || "PENDING_DELETE" || "DISABLED" || "WORKFLOW_COMPLETED", // required
54
+ * // StatusReason: "STRING_VALUE",
55
+ * // Version: "STRING_VALUE", // required
56
+ * // GrantedOperations: [ // AllowedOperationList // required
57
+ * // "CreateGrant" || "CheckoutLicense" || "CheckoutBorrowLicense" || "CheckInLicense" || "ExtendConsumptionLicense" || "ListPurchasedLicenses" || "CreateToken",
58
+ * // ],
59
+ * // Options: { // Options
60
+ * // ActivationOverrideBehavior: "DISTRIBUTED_GRANTS_ONLY" || "ALL_GRANTS_PERMITTED_BY_ISSUER",
61
+ * // },
62
+ * // },
63
+ * // ],
64
+ * // NextToken: "STRING_VALUE",
65
+ * // };
66
+ *
44
67
  * ```
45
68
  *
46
69
  * @param ListReceivedGrantsForOrganizationCommandInput - {@link ListReceivedGrantsForOrganizationCommandInput}
@@ -71,6 +94,8 @@ export interface ListReceivedGrantsForOrganizationCommandOutput extends ListRece
71
94
  * @throws {@link ValidationException} (client fault)
72
95
  * <p>The provided input is not valid. Try your request again.</p>
73
96
  *
97
+ * @throws {@link LicenseManagerServiceException}
98
+ * <p>Base exception class for all service exceptions from LicenseManager service.</p>
74
99
  *
75
100
  */
76
101
  export declare class ListReceivedGrantsForOrganizationCommand extends $Command<ListReceivedGrantsForOrganizationCommandInput, ListReceivedGrantsForOrganizationCommandOutput, LicenseManagerClientResolvedConfig> {