@aws-sdk/client-license-manager 3.289.0 → 3.292.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 +23 -0
  2. package/dist-types/commands/CheckInLicenseCommand.d.ts +26 -0
  3. package/dist-types/commands/CheckoutBorrowLicenseCommand.d.ts +35 -0
  4. package/dist-types/commands/CheckoutLicenseCommand.d.ts +32 -0
  5. package/dist-types/commands/CreateGrantCommand.d.ts +23 -0
  6. package/dist-types/commands/CreateGrantVersionCommand.d.ts +23 -0
  7. package/dist-types/commands/CreateLicenseCommand.d.ts +23 -0
  8. package/dist-types/commands/CreateLicenseConfigurationCommand.d.ts +20 -0
  9. package/dist-types/commands/CreateLicenseConversionTaskForResourceCommand.d.ts +20 -0
  10. package/dist-types/commands/CreateLicenseManagerReportGeneratorCommand.d.ts +26 -0
  11. package/dist-types/commands/CreateLicenseVersionCommand.d.ts +26 -0
  12. package/dist-types/commands/CreateTokenCommand.d.ts +26 -0
  13. package/dist-types/commands/DeleteGrantCommand.d.ts +23 -0
  14. package/dist-types/commands/DeleteLicenseCommand.d.ts +26 -0
  15. package/dist-types/commands/DeleteLicenseConfigurationCommand.d.ts +17 -0
  16. package/dist-types/commands/DeleteLicenseManagerReportGeneratorCommand.d.ts +26 -0
  17. package/dist-types/commands/DeleteTokenCommand.d.ts +23 -0
  18. package/dist-types/commands/ExtendLicenseConsumptionCommand.d.ts +23 -0
  19. package/dist-types/commands/GetAccessTokenCommand.d.ts +17 -0
  20. package/dist-types/commands/GetGrantCommand.d.ts +23 -0
  21. package/dist-types/commands/GetLicenseCommand.d.ts +20 -0
  22. package/dist-types/commands/GetLicenseConfigurationCommand.d.ts +17 -0
  23. package/dist-types/commands/GetLicenseConversionTaskCommand.d.ts +17 -0
  24. package/dist-types/commands/GetLicenseManagerReportGeneratorCommand.d.ts +26 -0
  25. package/dist-types/commands/GetLicenseUsageCommand.d.ts +20 -0
  26. package/dist-types/commands/GetServiceSettingsCommand.d.ts +14 -0
  27. package/dist-types/commands/ListAssociationsForLicenseConfigurationCommand.d.ts +20 -0
  28. package/dist-types/commands/ListDistributedGrantsCommand.d.ts +23 -0
  29. package/dist-types/commands/ListFailuresForLicenseConfigurationOperationsCommand.d.ts +17 -0
  30. package/dist-types/commands/ListLicenseConfigurationsCommand.d.ts +20 -0
  31. package/dist-types/commands/ListLicenseConversionTasksCommand.d.ts +17 -0
  32. package/dist-types/commands/ListLicenseManagerReportGeneratorsCommand.d.ts +26 -0
  33. package/dist-types/commands/ListLicenseSpecificationsForResourceCommand.d.ts +17 -0
  34. package/dist-types/commands/ListLicenseVersionsCommand.d.ts +17 -0
  35. package/dist-types/commands/ListLicensesCommand.d.ts +20 -0
  36. package/dist-types/commands/ListReceivedGrantsCommand.d.ts +23 -0
  37. package/dist-types/commands/ListReceivedGrantsForOrganizationCommand.d.ts +23 -0
  38. package/dist-types/commands/ListReceivedLicensesCommand.d.ts +23 -0
  39. package/dist-types/commands/ListReceivedLicensesForOrganizationCommand.d.ts +23 -0
  40. package/dist-types/commands/ListResourceInventoryCommand.d.ts +23 -0
  41. package/dist-types/commands/ListTagsForResourceCommand.d.ts +17 -0
  42. package/dist-types/commands/ListTokensCommand.d.ts +17 -0
  43. package/dist-types/commands/ListUsageForLicenseConfigurationCommand.d.ts +20 -0
  44. package/dist-types/commands/RejectGrantCommand.d.ts +23 -0
  45. package/dist-types/commands/TagResourceCommand.d.ts +17 -0
  46. package/dist-types/commands/UntagResourceCommand.d.ts +17 -0
  47. package/dist-types/commands/UpdateLicenseConfigurationCommand.d.ts +20 -0
  48. package/dist-types/commands/UpdateLicenseManagerReportGeneratorCommand.d.ts +26 -0
  49. package/dist-types/commands/UpdateLicenseSpecificationsForResourceCommand.d.ts +25 -0
  50. package/dist-types/commands/UpdateServiceSettingsCommand.d.ts +17 -0
  51. package/package.json +35 -40
@@ -29,6 +29,26 @@ export interface GetLicenseCommandOutput extends GetLicenseResponse, __MetadataB
29
29
  * @see {@link GetLicenseCommandOutput} for command's `response` shape.
30
30
  * @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Access to resource denied.</p>
34
+ *
35
+ * @throws {@link AuthorizationException} (client fault)
36
+ * <p>The Amazon Web Services user account does not have permission to perform the action. Check the IAM
37
+ * policy associated with this account.</p>
38
+ *
39
+ * @throws {@link InvalidParameterValueException} (client fault)
40
+ * <p>One or more parameter values are not valid.</p>
41
+ *
42
+ * @throws {@link RateLimitExceededException} (client fault)
43
+ * <p>Too many requests have been submitted. Try again after a brief wait.</p>
44
+ *
45
+ * @throws {@link ServerInternalException} (server fault)
46
+ * <p>The server experienced an internal error. Try again.</p>
47
+ *
48
+ * @throws {@link ValidationException} (client fault)
49
+ * <p>The provided input is not valid. Try your request again.</p>
50
+ *
51
+ *
32
52
  */
33
53
  export declare class GetLicenseCommand extends $Command<GetLicenseCommandInput, GetLicenseCommandOutput, LicenseManagerClientResolvedConfig> {
34
54
  readonly input: GetLicenseCommandInput;
@@ -29,6 +29,23 @@ export interface GetLicenseConfigurationCommandOutput extends GetLicenseConfigur
29
29
  * @see {@link GetLicenseConfigurationCommandOutput} for command's `response` shape.
30
30
  * @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Access to resource denied.</p>
34
+ *
35
+ * @throws {@link AuthorizationException} (client fault)
36
+ * <p>The Amazon Web Services user account does not have permission to perform the action. Check the IAM
37
+ * policy associated with this account.</p>
38
+ *
39
+ * @throws {@link InvalidParameterValueException} (client fault)
40
+ * <p>One or more parameter values are not valid.</p>
41
+ *
42
+ * @throws {@link RateLimitExceededException} (client fault)
43
+ * <p>Too many requests have been submitted. Try again after a brief wait.</p>
44
+ *
45
+ * @throws {@link ServerInternalException} (server fault)
46
+ * <p>The server experienced an internal error. Try again.</p>
47
+ *
48
+ *
32
49
  */
33
50
  export declare class GetLicenseConfigurationCommand extends $Command<GetLicenseConfigurationCommandInput, GetLicenseConfigurationCommandOutput, LicenseManagerClientResolvedConfig> {
34
51
  readonly input: GetLicenseConfigurationCommandInput;
@@ -29,6 +29,23 @@ export interface GetLicenseConversionTaskCommandOutput extends GetLicenseConvers
29
29
  * @see {@link GetLicenseConversionTaskCommandOutput} for command's `response` shape.
30
30
  * @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Access to resource denied.</p>
34
+ *
35
+ * @throws {@link AuthorizationException} (client fault)
36
+ * <p>The Amazon Web Services user account does not have permission to perform the action. Check the IAM
37
+ * policy associated with this account.</p>
38
+ *
39
+ * @throws {@link InvalidParameterValueException} (client fault)
40
+ * <p>One or more parameter values are not valid.</p>
41
+ *
42
+ * @throws {@link RateLimitExceededException} (client fault)
43
+ * <p>Too many requests have been submitted. Try again after a brief wait.</p>
44
+ *
45
+ * @throws {@link ServerInternalException} (server fault)
46
+ * <p>The server experienced an internal error. Try again.</p>
47
+ *
48
+ *
32
49
  */
33
50
  export declare class GetLicenseConversionTaskCommand extends $Command<GetLicenseConversionTaskCommandInput, GetLicenseConversionTaskCommandOutput, LicenseManagerClientResolvedConfig> {
34
51
  readonly input: GetLicenseConversionTaskCommandInput;
@@ -29,6 +29,32 @@ export interface GetLicenseManagerReportGeneratorCommandOutput extends GetLicens
29
29
  * @see {@link GetLicenseManagerReportGeneratorCommandOutput} for command's `response` shape.
30
30
  * @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Access to resource denied.</p>
34
+ *
35
+ * @throws {@link AuthorizationException} (client fault)
36
+ * <p>The Amazon Web Services user account does not have permission to perform the action. Check the IAM
37
+ * policy associated with this account.</p>
38
+ *
39
+ * @throws {@link InvalidParameterValueException} (client fault)
40
+ * <p>One or more parameter values are not valid.</p>
41
+ *
42
+ * @throws {@link RateLimitExceededException} (client fault)
43
+ * <p>Too many requests have been submitted. Try again after a brief wait.</p>
44
+ *
45
+ * @throws {@link ResourceLimitExceededException} (client fault)
46
+ * <p>Your resource limits have been exceeded.</p>
47
+ *
48
+ * @throws {@link ResourceNotFoundException} (client fault)
49
+ * <p>The resource cannot be found.</p>
50
+ *
51
+ * @throws {@link ServerInternalException} (server fault)
52
+ * <p>The server experienced an internal error. Try again.</p>
53
+ *
54
+ * @throws {@link ValidationException} (client fault)
55
+ * <p>The provided input is not valid. Try your request again.</p>
56
+ *
57
+ *
32
58
  */
33
59
  export declare class GetLicenseManagerReportGeneratorCommand extends $Command<GetLicenseManagerReportGeneratorCommandInput, GetLicenseManagerReportGeneratorCommandOutput, LicenseManagerClientResolvedConfig> {
34
60
  readonly input: GetLicenseManagerReportGeneratorCommandInput;
@@ -29,6 +29,26 @@ export interface GetLicenseUsageCommandOutput extends GetLicenseUsageResponse, _
29
29
  * @see {@link GetLicenseUsageCommandOutput} for command's `response` shape.
30
30
  * @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Access to resource denied.</p>
34
+ *
35
+ * @throws {@link AuthorizationException} (client fault)
36
+ * <p>The Amazon Web Services user account does not have permission to perform the action. Check the IAM
37
+ * policy associated with this account.</p>
38
+ *
39
+ * @throws {@link InvalidParameterValueException} (client fault)
40
+ * <p>One or more parameter values are not valid.</p>
41
+ *
42
+ * @throws {@link RateLimitExceededException} (client fault)
43
+ * <p>Too many requests have been submitted. Try again after a brief wait.</p>
44
+ *
45
+ * @throws {@link ServerInternalException} (server fault)
46
+ * <p>The server experienced an internal error. Try again.</p>
47
+ *
48
+ * @throws {@link ValidationException} (client fault)
49
+ * <p>The provided input is not valid. Try your request again.</p>
50
+ *
51
+ *
32
52
  */
33
53
  export declare class GetLicenseUsageCommand extends $Command<GetLicenseUsageCommandInput, GetLicenseUsageCommandOutput, LicenseManagerClientResolvedConfig> {
34
54
  readonly input: GetLicenseUsageCommandInput;
@@ -29,6 +29,20 @@ export interface GetServiceSettingsCommandOutput extends GetServiceSettingsRespo
29
29
  * @see {@link GetServiceSettingsCommandOutput} for command's `response` shape.
30
30
  * @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Access to resource denied.</p>
34
+ *
35
+ * @throws {@link AuthorizationException} (client fault)
36
+ * <p>The Amazon Web Services user account does not have permission to perform the action. Check the IAM
37
+ * policy associated with this account.</p>
38
+ *
39
+ * @throws {@link RateLimitExceededException} (client fault)
40
+ * <p>Too many requests have been submitted. Try again after a brief wait.</p>
41
+ *
42
+ * @throws {@link ServerInternalException} (server fault)
43
+ * <p>The server experienced an internal error. Try again.</p>
44
+ *
45
+ *
32
46
  */
33
47
  export declare class GetServiceSettingsCommand extends $Command<GetServiceSettingsCommandInput, GetServiceSettingsCommandOutput, LicenseManagerClientResolvedConfig> {
34
48
  readonly input: GetServiceSettingsCommandInput;
@@ -32,6 +32,26 @@ export interface ListAssociationsForLicenseConfigurationCommandOutput extends Li
32
32
  * @see {@link ListAssociationsForLicenseConfigurationCommandOutput} for command's `response` shape.
33
33
  * @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
34
34
  *
35
+ * @throws {@link AccessDeniedException} (client fault)
36
+ * <p>Access to resource denied.</p>
37
+ *
38
+ * @throws {@link AuthorizationException} (client fault)
39
+ * <p>The Amazon Web Services user account does not have permission to perform the action. Check the IAM
40
+ * policy associated with this account.</p>
41
+ *
42
+ * @throws {@link FilterLimitExceededException} (client fault)
43
+ * <p>The request uses too many filters or too many filter values.</p>
44
+ *
45
+ * @throws {@link InvalidParameterValueException} (client fault)
46
+ * <p>One or more parameter values are not valid.</p>
47
+ *
48
+ * @throws {@link RateLimitExceededException} (client fault)
49
+ * <p>Too many requests have been submitted. Try again after a brief wait.</p>
50
+ *
51
+ * @throws {@link ServerInternalException} (server fault)
52
+ * <p>The server experienced an internal error. Try again.</p>
53
+ *
54
+ *
35
55
  */
36
56
  export declare class ListAssociationsForLicenseConfigurationCommand extends $Command<ListAssociationsForLicenseConfigurationCommandInput, ListAssociationsForLicenseConfigurationCommandOutput, LicenseManagerClientResolvedConfig> {
37
57
  readonly input: ListAssociationsForLicenseConfigurationCommandInput;
@@ -29,6 +29,29 @@ export interface ListDistributedGrantsCommandOutput extends ListDistributedGrant
29
29
  * @see {@link ListDistributedGrantsCommandOutput} for command's `response` shape.
30
30
  * @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Access to resource denied.</p>
34
+ *
35
+ * @throws {@link AuthorizationException} (client fault)
36
+ * <p>The Amazon Web Services user account does not have permission to perform the action. Check the IAM
37
+ * policy associated with this account.</p>
38
+ *
39
+ * @throws {@link InvalidParameterValueException} (client fault)
40
+ * <p>One or more parameter values are not valid.</p>
41
+ *
42
+ * @throws {@link RateLimitExceededException} (client fault)
43
+ * <p>Too many requests have been submitted. Try again after a brief wait.</p>
44
+ *
45
+ * @throws {@link ResourceLimitExceededException} (client fault)
46
+ * <p>Your resource limits have been exceeded.</p>
47
+ *
48
+ * @throws {@link ServerInternalException} (server fault)
49
+ * <p>The server experienced an internal error. Try again.</p>
50
+ *
51
+ * @throws {@link ValidationException} (client fault)
52
+ * <p>The provided input is not valid. Try your request again.</p>
53
+ *
54
+ *
32
55
  */
33
56
  export declare class ListDistributedGrantsCommand extends $Command<ListDistributedGrantsCommandInput, ListDistributedGrantsCommandOutput, LicenseManagerClientResolvedConfig> {
34
57
  readonly input: ListDistributedGrantsCommandInput;
@@ -29,6 +29,23 @@ export interface ListFailuresForLicenseConfigurationOperationsCommandOutput exte
29
29
  * @see {@link ListFailuresForLicenseConfigurationOperationsCommandOutput} for command's `response` shape.
30
30
  * @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Access to resource denied.</p>
34
+ *
35
+ * @throws {@link AuthorizationException} (client fault)
36
+ * <p>The Amazon Web Services user account does not have permission to perform the action. Check the IAM
37
+ * policy associated with this account.</p>
38
+ *
39
+ * @throws {@link InvalidParameterValueException} (client fault)
40
+ * <p>One or more parameter values are not valid.</p>
41
+ *
42
+ * @throws {@link RateLimitExceededException} (client fault)
43
+ * <p>Too many requests have been submitted. Try again after a brief wait.</p>
44
+ *
45
+ * @throws {@link ServerInternalException} (server fault)
46
+ * <p>The server experienced an internal error. Try again.</p>
47
+ *
48
+ *
32
49
  */
33
50
  export declare class ListFailuresForLicenseConfigurationOperationsCommand extends $Command<ListFailuresForLicenseConfigurationOperationsCommandInput, ListFailuresForLicenseConfigurationOperationsCommandOutput, LicenseManagerClientResolvedConfig> {
34
51
  readonly input: ListFailuresForLicenseConfigurationOperationsCommandInput;
@@ -29,6 +29,26 @@ export interface ListLicenseConfigurationsCommandOutput extends ListLicenseConfi
29
29
  * @see {@link ListLicenseConfigurationsCommandOutput} for command's `response` shape.
30
30
  * @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Access to resource denied.</p>
34
+ *
35
+ * @throws {@link AuthorizationException} (client fault)
36
+ * <p>The Amazon Web Services user account does not have permission to perform the action. Check the IAM
37
+ * policy associated with this account.</p>
38
+ *
39
+ * @throws {@link FilterLimitExceededException} (client fault)
40
+ * <p>The request uses too many filters or too many filter values.</p>
41
+ *
42
+ * @throws {@link InvalidParameterValueException} (client fault)
43
+ * <p>One or more parameter values are not valid.</p>
44
+ *
45
+ * @throws {@link RateLimitExceededException} (client fault)
46
+ * <p>Too many requests have been submitted. Try again after a brief wait.</p>
47
+ *
48
+ * @throws {@link ServerInternalException} (server fault)
49
+ * <p>The server experienced an internal error. Try again.</p>
50
+ *
51
+ *
32
52
  */
33
53
  export declare class ListLicenseConfigurationsCommand extends $Command<ListLicenseConfigurationsCommandInput, ListLicenseConfigurationsCommandOutput, LicenseManagerClientResolvedConfig> {
34
54
  readonly input: ListLicenseConfigurationsCommandInput;
@@ -29,6 +29,23 @@ export interface ListLicenseConversionTasksCommandOutput extends ListLicenseConv
29
29
  * @see {@link ListLicenseConversionTasksCommandOutput} for command's `response` shape.
30
30
  * @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Access to resource denied.</p>
34
+ *
35
+ * @throws {@link AuthorizationException} (client fault)
36
+ * <p>The Amazon Web Services user account does not have permission to perform the action. Check the IAM
37
+ * policy associated with this account.</p>
38
+ *
39
+ * @throws {@link InvalidParameterValueException} (client fault)
40
+ * <p>One or more parameter values are not valid.</p>
41
+ *
42
+ * @throws {@link RateLimitExceededException} (client fault)
43
+ * <p>Too many requests have been submitted. Try again after a brief wait.</p>
44
+ *
45
+ * @throws {@link ServerInternalException} (server fault)
46
+ * <p>The server experienced an internal error. Try again.</p>
47
+ *
48
+ *
32
49
  */
33
50
  export declare class ListLicenseConversionTasksCommand extends $Command<ListLicenseConversionTasksCommandInput, ListLicenseConversionTasksCommandOutput, LicenseManagerClientResolvedConfig> {
34
51
  readonly input: ListLicenseConversionTasksCommandInput;
@@ -29,6 +29,32 @@ export interface ListLicenseManagerReportGeneratorsCommandOutput extends ListLic
29
29
  * @see {@link ListLicenseManagerReportGeneratorsCommandOutput} for command's `response` shape.
30
30
  * @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Access to resource denied.</p>
34
+ *
35
+ * @throws {@link AuthorizationException} (client fault)
36
+ * <p>The Amazon Web Services user account does not have permission to perform the action. Check the IAM
37
+ * policy associated with this account.</p>
38
+ *
39
+ * @throws {@link InvalidParameterValueException} (client fault)
40
+ * <p>One or more parameter values are not valid.</p>
41
+ *
42
+ * @throws {@link RateLimitExceededException} (client fault)
43
+ * <p>Too many requests have been submitted. Try again after a brief wait.</p>
44
+ *
45
+ * @throws {@link ResourceLimitExceededException} (client fault)
46
+ * <p>Your resource limits have been exceeded.</p>
47
+ *
48
+ * @throws {@link ResourceNotFoundException} (client fault)
49
+ * <p>The resource cannot be found.</p>
50
+ *
51
+ * @throws {@link ServerInternalException} (server fault)
52
+ * <p>The server experienced an internal error. Try again.</p>
53
+ *
54
+ * @throws {@link ValidationException} (client fault)
55
+ * <p>The provided input is not valid. Try your request again.</p>
56
+ *
57
+ *
32
58
  */
33
59
  export declare class ListLicenseManagerReportGeneratorsCommand extends $Command<ListLicenseManagerReportGeneratorsCommandInput, ListLicenseManagerReportGeneratorsCommandOutput, LicenseManagerClientResolvedConfig> {
34
60
  readonly input: ListLicenseManagerReportGeneratorsCommandInput;
@@ -29,6 +29,23 @@ export interface ListLicenseSpecificationsForResourceCommandOutput extends ListL
29
29
  * @see {@link ListLicenseSpecificationsForResourceCommandOutput} for command's `response` shape.
30
30
  * @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Access to resource denied.</p>
34
+ *
35
+ * @throws {@link AuthorizationException} (client fault)
36
+ * <p>The Amazon Web Services user account does not have permission to perform the action. Check the IAM
37
+ * policy associated with this account.</p>
38
+ *
39
+ * @throws {@link InvalidParameterValueException} (client fault)
40
+ * <p>One or more parameter values are not valid.</p>
41
+ *
42
+ * @throws {@link RateLimitExceededException} (client fault)
43
+ * <p>Too many requests have been submitted. Try again after a brief wait.</p>
44
+ *
45
+ * @throws {@link ServerInternalException} (server fault)
46
+ * <p>The server experienced an internal error. Try again.</p>
47
+ *
48
+ *
32
49
  */
33
50
  export declare class ListLicenseSpecificationsForResourceCommand extends $Command<ListLicenseSpecificationsForResourceCommandInput, ListLicenseSpecificationsForResourceCommandOutput, LicenseManagerClientResolvedConfig> {
34
51
  readonly input: ListLicenseSpecificationsForResourceCommandInput;
@@ -29,6 +29,23 @@ export interface ListLicenseVersionsCommandOutput extends ListLicenseVersionsRes
29
29
  * @see {@link ListLicenseVersionsCommandOutput} for command's `response` shape.
30
30
  * @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Access to resource denied.</p>
34
+ *
35
+ * @throws {@link AuthorizationException} (client fault)
36
+ * <p>The Amazon Web Services user account does not have permission to perform the action. Check the IAM
37
+ * policy associated with this account.</p>
38
+ *
39
+ * @throws {@link InvalidParameterValueException} (client fault)
40
+ * <p>One or more parameter values are not valid.</p>
41
+ *
42
+ * @throws {@link RateLimitExceededException} (client fault)
43
+ * <p>Too many requests have been submitted. Try again after a brief wait.</p>
44
+ *
45
+ * @throws {@link ServerInternalException} (server fault)
46
+ * <p>The server experienced an internal error. Try again.</p>
47
+ *
48
+ *
32
49
  */
33
50
  export declare class ListLicenseVersionsCommand extends $Command<ListLicenseVersionsCommandInput, ListLicenseVersionsCommandOutput, LicenseManagerClientResolvedConfig> {
34
51
  readonly input: ListLicenseVersionsCommandInput;
@@ -29,6 +29,26 @@ export interface ListLicensesCommandOutput extends ListLicensesResponse, __Metad
29
29
  * @see {@link ListLicensesCommandOutput} for command's `response` shape.
30
30
  * @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Access to resource denied.</p>
34
+ *
35
+ * @throws {@link AuthorizationException} (client fault)
36
+ * <p>The Amazon Web Services user account does not have permission to perform the action. Check the IAM
37
+ * policy associated with this account.</p>
38
+ *
39
+ * @throws {@link InvalidParameterValueException} (client fault)
40
+ * <p>One or more parameter values are not valid.</p>
41
+ *
42
+ * @throws {@link RateLimitExceededException} (client fault)
43
+ * <p>Too many requests have been submitted. Try again after a brief wait.</p>
44
+ *
45
+ * @throws {@link ServerInternalException} (server fault)
46
+ * <p>The server experienced an internal error. Try again.</p>
47
+ *
48
+ * @throws {@link ValidationException} (client fault)
49
+ * <p>The provided input is not valid. Try your request again.</p>
50
+ *
51
+ *
32
52
  */
33
53
  export declare class ListLicensesCommand extends $Command<ListLicensesCommandInput, ListLicensesCommandOutput, LicenseManagerClientResolvedConfig> {
34
54
  readonly input: ListLicensesCommandInput;
@@ -29,6 +29,29 @@ export interface ListReceivedGrantsCommandOutput extends ListReceivedGrantsRespo
29
29
  * @see {@link ListReceivedGrantsCommandOutput} for command's `response` shape.
30
30
  * @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Access to resource denied.</p>
34
+ *
35
+ * @throws {@link AuthorizationException} (client fault)
36
+ * <p>The Amazon Web Services user account does not have permission to perform the action. Check the IAM
37
+ * policy associated with this account.</p>
38
+ *
39
+ * @throws {@link InvalidParameterValueException} (client fault)
40
+ * <p>One or more parameter values are not valid.</p>
41
+ *
42
+ * @throws {@link RateLimitExceededException} (client fault)
43
+ * <p>Too many requests have been submitted. Try again after a brief wait.</p>
44
+ *
45
+ * @throws {@link ResourceLimitExceededException} (client fault)
46
+ * <p>Your resource limits have been exceeded.</p>
47
+ *
48
+ * @throws {@link ServerInternalException} (server fault)
49
+ * <p>The server experienced an internal error. Try again.</p>
50
+ *
51
+ * @throws {@link ValidationException} (client fault)
52
+ * <p>The provided input is not valid. Try your request again.</p>
53
+ *
54
+ *
32
55
  */
33
56
  export declare class ListReceivedGrantsCommand extends $Command<ListReceivedGrantsCommandInput, ListReceivedGrantsCommandOutput, LicenseManagerClientResolvedConfig> {
34
57
  readonly input: ListReceivedGrantsCommandInput;
@@ -29,6 +29,29 @@ export interface ListReceivedGrantsForOrganizationCommandOutput extends ListRece
29
29
  * @see {@link ListReceivedGrantsForOrganizationCommandOutput} for command's `response` shape.
30
30
  * @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Access to resource denied.</p>
34
+ *
35
+ * @throws {@link AuthorizationException} (client fault)
36
+ * <p>The Amazon Web Services user account does not have permission to perform the action. Check the IAM
37
+ * policy associated with this account.</p>
38
+ *
39
+ * @throws {@link InvalidParameterValueException} (client fault)
40
+ * <p>One or more parameter values are not valid.</p>
41
+ *
42
+ * @throws {@link RateLimitExceededException} (client fault)
43
+ * <p>Too many requests have been submitted. Try again after a brief wait.</p>
44
+ *
45
+ * @throws {@link ResourceLimitExceededException} (client fault)
46
+ * <p>Your resource limits have been exceeded.</p>
47
+ *
48
+ * @throws {@link ServerInternalException} (server fault)
49
+ * <p>The server experienced an internal error. Try again.</p>
50
+ *
51
+ * @throws {@link ValidationException} (client fault)
52
+ * <p>The provided input is not valid. Try your request again.</p>
53
+ *
54
+ *
32
55
  */
33
56
  export declare class ListReceivedGrantsForOrganizationCommand extends $Command<ListReceivedGrantsForOrganizationCommandInput, ListReceivedGrantsForOrganizationCommandOutput, LicenseManagerClientResolvedConfig> {
34
57
  readonly input: ListReceivedGrantsForOrganizationCommandInput;
@@ -29,6 +29,29 @@ export interface ListReceivedLicensesCommandOutput extends ListReceivedLicensesR
29
29
  * @see {@link ListReceivedLicensesCommandOutput} for command's `response` shape.
30
30
  * @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Access to resource denied.</p>
34
+ *
35
+ * @throws {@link AuthorizationException} (client fault)
36
+ * <p>The Amazon Web Services user account does not have permission to perform the action. Check the IAM
37
+ * policy associated with this account.</p>
38
+ *
39
+ * @throws {@link InvalidParameterValueException} (client fault)
40
+ * <p>One or more parameter values are not valid.</p>
41
+ *
42
+ * @throws {@link RateLimitExceededException} (client fault)
43
+ * <p>Too many requests have been submitted. Try again after a brief wait.</p>
44
+ *
45
+ * @throws {@link ResourceLimitExceededException} (client fault)
46
+ * <p>Your resource limits have been exceeded.</p>
47
+ *
48
+ * @throws {@link ServerInternalException} (server fault)
49
+ * <p>The server experienced an internal error. Try again.</p>
50
+ *
51
+ * @throws {@link ValidationException} (client fault)
52
+ * <p>The provided input is not valid. Try your request again.</p>
53
+ *
54
+ *
32
55
  */
33
56
  export declare class ListReceivedLicensesCommand extends $Command<ListReceivedLicensesCommandInput, ListReceivedLicensesCommandOutput, LicenseManagerClientResolvedConfig> {
34
57
  readonly input: ListReceivedLicensesCommandInput;
@@ -29,6 +29,29 @@ export interface ListReceivedLicensesForOrganizationCommandOutput extends ListRe
29
29
  * @see {@link ListReceivedLicensesForOrganizationCommandOutput} for command's `response` shape.
30
30
  * @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Access to resource denied.</p>
34
+ *
35
+ * @throws {@link AuthorizationException} (client fault)
36
+ * <p>The Amazon Web Services user account does not have permission to perform the action. Check the IAM
37
+ * policy associated with this account.</p>
38
+ *
39
+ * @throws {@link InvalidParameterValueException} (client fault)
40
+ * <p>One or more parameter values are not valid.</p>
41
+ *
42
+ * @throws {@link RateLimitExceededException} (client fault)
43
+ * <p>Too many requests have been submitted. Try again after a brief wait.</p>
44
+ *
45
+ * @throws {@link ResourceLimitExceededException} (client fault)
46
+ * <p>Your resource limits have been exceeded.</p>
47
+ *
48
+ * @throws {@link ServerInternalException} (server fault)
49
+ * <p>The server experienced an internal error. Try again.</p>
50
+ *
51
+ * @throws {@link ValidationException} (client fault)
52
+ * <p>The provided input is not valid. Try your request again.</p>
53
+ *
54
+ *
32
55
  */
33
56
  export declare class ListReceivedLicensesForOrganizationCommand extends $Command<ListReceivedLicensesForOrganizationCommandInput, ListReceivedLicensesForOrganizationCommandOutput, LicenseManagerClientResolvedConfig> {
34
57
  readonly input: ListReceivedLicensesForOrganizationCommandInput;
@@ -29,6 +29,29 @@ export interface ListResourceInventoryCommandOutput extends ListResourceInventor
29
29
  * @see {@link ListResourceInventoryCommandOutput} for command's `response` shape.
30
30
  * @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Access to resource denied.</p>
34
+ *
35
+ * @throws {@link AuthorizationException} (client fault)
36
+ * <p>The Amazon Web Services user account does not have permission to perform the action. Check the IAM
37
+ * policy associated with this account.</p>
38
+ *
39
+ * @throws {@link FailedDependencyException} (client fault)
40
+ * <p>A dependency required to run the API is missing.</p>
41
+ *
42
+ * @throws {@link FilterLimitExceededException} (client fault)
43
+ * <p>The request uses too many filters or too many filter values.</p>
44
+ *
45
+ * @throws {@link InvalidParameterValueException} (client fault)
46
+ * <p>One or more parameter values are not valid.</p>
47
+ *
48
+ * @throws {@link RateLimitExceededException} (client fault)
49
+ * <p>Too many requests have been submitted. Try again after a brief wait.</p>
50
+ *
51
+ * @throws {@link ServerInternalException} (server fault)
52
+ * <p>The server experienced an internal error. Try again.</p>
53
+ *
54
+ *
32
55
  */
33
56
  export declare class ListResourceInventoryCommand extends $Command<ListResourceInventoryCommandInput, ListResourceInventoryCommandOutput, LicenseManagerClientResolvedConfig> {
34
57
  readonly input: ListResourceInventoryCommandInput;
@@ -29,6 +29,23 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
29
29
  * @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
30
30
  * @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Access to resource denied.</p>
34
+ *
35
+ * @throws {@link AuthorizationException} (client fault)
36
+ * <p>The Amazon Web Services user account does not have permission to perform the action. Check the IAM
37
+ * policy associated with this account.</p>
38
+ *
39
+ * @throws {@link InvalidParameterValueException} (client fault)
40
+ * <p>One or more parameter values are not valid.</p>
41
+ *
42
+ * @throws {@link RateLimitExceededException} (client fault)
43
+ * <p>Too many requests have been submitted. Try again after a brief wait.</p>
44
+ *
45
+ * @throws {@link ServerInternalException} (server fault)
46
+ * <p>The server experienced an internal error. Try again.</p>
47
+ *
48
+ *
32
49
  */
33
50
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, LicenseManagerClientResolvedConfig> {
34
51
  readonly input: ListTagsForResourceCommandInput;
@@ -29,6 +29,23 @@ export interface ListTokensCommandOutput extends ListTokensResponse, __MetadataB
29
29
  * @see {@link ListTokensCommandOutput} for command's `response` shape.
30
30
  * @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Access to resource denied.</p>
34
+ *
35
+ * @throws {@link AuthorizationException} (client fault)
36
+ * <p>The Amazon Web Services user account does not have permission to perform the action. Check the IAM
37
+ * policy associated with this account.</p>
38
+ *
39
+ * @throws {@link RateLimitExceededException} (client fault)
40
+ * <p>Too many requests have been submitted. Try again after a brief wait.</p>
41
+ *
42
+ * @throws {@link ServerInternalException} (server fault)
43
+ * <p>The server experienced an internal error. Try again.</p>
44
+ *
45
+ * @throws {@link ValidationException} (client fault)
46
+ * <p>The provided input is not valid. Try your request again.</p>
47
+ *
48
+ *
32
49
  */
33
50
  export declare class ListTokensCommand extends $Command<ListTokensCommandInput, ListTokensCommandOutput, LicenseManagerClientResolvedConfig> {
34
51
  readonly input: ListTokensCommandInput;
@@ -31,6 +31,26 @@ export interface ListUsageForLicenseConfigurationCommandOutput extends ListUsage
31
31
  * @see {@link ListUsageForLicenseConfigurationCommandOutput} for command's `response` shape.
32
32
  * @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
33
33
  *
34
+ * @throws {@link AccessDeniedException} (client fault)
35
+ * <p>Access to resource denied.</p>
36
+ *
37
+ * @throws {@link AuthorizationException} (client fault)
38
+ * <p>The Amazon Web Services user account does not have permission to perform the action. Check the IAM
39
+ * policy associated with this account.</p>
40
+ *
41
+ * @throws {@link FilterLimitExceededException} (client fault)
42
+ * <p>The request uses too many filters or too many filter values.</p>
43
+ *
44
+ * @throws {@link InvalidParameterValueException} (client fault)
45
+ * <p>One or more parameter values are not valid.</p>
46
+ *
47
+ * @throws {@link RateLimitExceededException} (client fault)
48
+ * <p>Too many requests have been submitted. Try again after a brief wait.</p>
49
+ *
50
+ * @throws {@link ServerInternalException} (server fault)
51
+ * <p>The server experienced an internal error. Try again.</p>
52
+ *
53
+ *
34
54
  */
35
55
  export declare class ListUsageForLicenseConfigurationCommand extends $Command<ListUsageForLicenseConfigurationCommandInput, ListUsageForLicenseConfigurationCommandOutput, LicenseManagerClientResolvedConfig> {
36
56
  readonly input: ListUsageForLicenseConfigurationCommandInput;