@aws-sdk/client-license-manager 3.288.0 → 3.290.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 +29 -29
@@ -29,6 +29,29 @@ export interface AcceptGrantCommandOutput extends AcceptGrantResponse, __Metadat
29
29
  * @see {@link AcceptGrantCommandOutput} 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 AcceptGrantCommand extends $Command<AcceptGrantCommandInput, AcceptGrantCommandOutput, LicenseManagerClientResolvedConfig> {
34
57
  readonly input: AcceptGrantCommandInput;
@@ -29,6 +29,32 @@ export interface CheckInLicenseCommandOutput extends CheckInLicenseResponse, __M
29
29
  * @see {@link CheckInLicenseCommandOutput} 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 ConflictException} (client fault)
40
+ * <p>There was a conflict processing the request. Try your request again.</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 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 CheckInLicenseCommand extends $Command<CheckInLicenseCommandInput, CheckInLicenseCommandOutput, LicenseManagerClientResolvedConfig> {
34
60
  readonly input: CheckInLicenseCommandInput;
@@ -29,6 +29,41 @@ export interface CheckoutBorrowLicenseCommandOutput extends CheckoutBorrowLicens
29
29
  * @see {@link CheckoutBorrowLicenseCommandOutput} 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 EntitlementNotAllowedException} (client fault)
40
+ * <p>The entitlement is not allowed.</p>
41
+ *
42
+ * @throws {@link InvalidParameterValueException} (client fault)
43
+ * <p>One or more parameter values are not valid.</p>
44
+ *
45
+ * @throws {@link NoEntitlementsAllowedException} (client fault)
46
+ * <p>There are no entitlements found for this license, or the entitlement maximum count is reached.</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 RedirectException} (client fault)
52
+ * <p>This is not the correct Region for the resource. Try again.</p>
53
+ *
54
+ * @throws {@link ResourceNotFoundException} (client fault)
55
+ * <p>The resource cannot be found.</p>
56
+ *
57
+ * @throws {@link ServerInternalException} (server fault)
58
+ * <p>The server experienced an internal error. Try again.</p>
59
+ *
60
+ * @throws {@link UnsupportedDigitalSignatureMethodException} (client fault)
61
+ * <p>The digital signature method is unsupported. Try your request again.</p>
62
+ *
63
+ * @throws {@link ValidationException} (client fault)
64
+ * <p>The provided input is not valid. Try your request again.</p>
65
+ *
66
+ *
32
67
  */
33
68
  export declare class CheckoutBorrowLicenseCommand extends $Command<CheckoutBorrowLicenseCommandInput, CheckoutBorrowLicenseCommandOutput, LicenseManagerClientResolvedConfig> {
34
69
  readonly input: CheckoutBorrowLicenseCommandInput;
@@ -33,6 +33,38 @@ export interface CheckoutLicenseCommandOutput extends CheckoutLicenseResponse, _
33
33
  * @see {@link CheckoutLicenseCommandOutput} for command's `response` shape.
34
34
  * @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
35
35
  *
36
+ * @throws {@link AccessDeniedException} (client fault)
37
+ * <p>Access to resource denied.</p>
38
+ *
39
+ * @throws {@link AuthorizationException} (client fault)
40
+ * <p>The Amazon Web Services user account does not have permission to perform the action. Check the IAM
41
+ * policy associated with this account.</p>
42
+ *
43
+ * @throws {@link InvalidParameterValueException} (client fault)
44
+ * <p>One or more parameter values are not valid.</p>
45
+ *
46
+ * @throws {@link NoEntitlementsAllowedException} (client fault)
47
+ * <p>There are no entitlements found for this license, or the entitlement maximum count is reached.</p>
48
+ *
49
+ * @throws {@link RateLimitExceededException} (client fault)
50
+ * <p>Too many requests have been submitted. Try again after a brief wait.</p>
51
+ *
52
+ * @throws {@link RedirectException} (client fault)
53
+ * <p>This is not the correct Region for the resource. Try again.</p>
54
+ *
55
+ * @throws {@link ResourceNotFoundException} (client fault)
56
+ * <p>The resource cannot be found.</p>
57
+ *
58
+ * @throws {@link ServerInternalException} (server fault)
59
+ * <p>The server experienced an internal error. Try again.</p>
60
+ *
61
+ * @throws {@link UnsupportedDigitalSignatureMethodException} (client fault)
62
+ * <p>The digital signature method is unsupported. Try your request again.</p>
63
+ *
64
+ * @throws {@link ValidationException} (client fault)
65
+ * <p>The provided input is not valid. Try your request again.</p>
66
+ *
67
+ *
36
68
  */
37
69
  export declare class CheckoutLicenseCommand extends $Command<CheckoutLicenseCommandInput, CheckoutLicenseCommandOutput, LicenseManagerClientResolvedConfig> {
38
70
  readonly input: CheckoutLicenseCommandInput;
@@ -29,6 +29,29 @@ export interface CreateGrantCommandOutput extends CreateGrantResponse, __Metadat
29
29
  * @see {@link CreateGrantCommandOutput} 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 CreateGrantCommand extends $Command<CreateGrantCommandInput, CreateGrantCommandOutput, LicenseManagerClientResolvedConfig> {
34
57
  readonly input: CreateGrantCommandInput;
@@ -29,6 +29,29 @@ export interface CreateGrantVersionCommandOutput extends CreateGrantVersionRespo
29
29
  * @see {@link CreateGrantVersionCommandOutput} 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 CreateGrantVersionCommand extends $Command<CreateGrantVersionCommandInput, CreateGrantVersionCommandOutput, LicenseManagerClientResolvedConfig> {
34
57
  readonly input: CreateGrantVersionCommandInput;
@@ -29,6 +29,29 @@ export interface CreateLicenseCommandOutput extends CreateLicenseResponse, __Met
29
29
  * @see {@link CreateLicenseCommandOutput} 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 RedirectException} (client fault)
46
+ * <p>This is not the correct Region for the resource. Try again.</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 CreateLicenseCommand extends $Command<CreateLicenseCommandInput, CreateLicenseCommandOutput, LicenseManagerClientResolvedConfig> {
34
57
  readonly input: CreateLicenseCommandInput;
@@ -34,6 +34,26 @@ export interface CreateLicenseConfigurationCommandOutput extends CreateLicenseCo
34
34
  * @see {@link CreateLicenseConfigurationCommandOutput} for command's `response` shape.
35
35
  * @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
36
36
  *
37
+ * @throws {@link AccessDeniedException} (client fault)
38
+ * <p>Access to resource denied.</p>
39
+ *
40
+ * @throws {@link AuthorizationException} (client fault)
41
+ * <p>The Amazon Web Services user account does not have permission to perform the action. Check the IAM
42
+ * policy associated with this account.</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 ResourceLimitExceededException} (client fault)
51
+ * <p>Your resource limits have been exceeded.</p>
52
+ *
53
+ * @throws {@link ServerInternalException} (server fault)
54
+ * <p>The server experienced an internal error. Try again.</p>
55
+ *
56
+ *
37
57
  */
38
58
  export declare class CreateLicenseConfigurationCommand extends $Command<CreateLicenseConfigurationCommandInput, CreateLicenseConfigurationCommandOutput, LicenseManagerClientResolvedConfig> {
39
59
  readonly input: CreateLicenseConfigurationCommandInput;
@@ -29,6 +29,26 @@ export interface CreateLicenseConversionTaskForResourceCommandOutput extends Cre
29
29
  * @see {@link CreateLicenseConversionTaskForResourceCommandOutput} 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 CreateLicenseConversionTaskForResourceCommand extends $Command<CreateLicenseConversionTaskForResourceCommandInput, CreateLicenseConversionTaskForResourceCommandOutput, LicenseManagerClientResolvedConfig> {
34
54
  readonly input: CreateLicenseConversionTaskForResourceCommandInput;
@@ -29,6 +29,32 @@ export interface CreateLicenseManagerReportGeneratorCommandOutput extends Create
29
29
  * @see {@link CreateLicenseManagerReportGeneratorCommandOutput} 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 CreateLicenseManagerReportGeneratorCommand extends $Command<CreateLicenseManagerReportGeneratorCommandInput, CreateLicenseManagerReportGeneratorCommandOutput, LicenseManagerClientResolvedConfig> {
34
60
  readonly input: CreateLicenseManagerReportGeneratorCommandInput;
@@ -29,6 +29,32 @@ export interface CreateLicenseVersionCommandOutput extends CreateLicenseVersionR
29
29
  * @see {@link CreateLicenseVersionCommandOutput} 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 ConflictException} (client fault)
40
+ * <p>There was a conflict processing the request. Try your request again.</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 RedirectException} (client fault)
46
+ * <p>This is not the correct Region for the resource. Try again.</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 CreateLicenseVersionCommand extends $Command<CreateLicenseVersionCommandInput, CreateLicenseVersionCommandOutput, LicenseManagerClientResolvedConfig> {
34
60
  readonly input: CreateLicenseVersionCommandInput;
@@ -32,6 +32,32 @@ export interface CreateTokenCommandOutput extends CreateTokenResponse, __Metadat
32
32
  * @see {@link CreateTokenCommandOutput} 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 RateLimitExceededException} (client fault)
43
+ * <p>Too many requests have been submitted. Try again after a brief wait.</p>
44
+ *
45
+ * @throws {@link RedirectException} (client fault)
46
+ * <p>This is not the correct Region for the resource. Try again.</p>
47
+ *
48
+ * @throws {@link ResourceLimitExceededException} (client fault)
49
+ * <p>Your resource limits have been exceeded.</p>
50
+ *
51
+ * @throws {@link ResourceNotFoundException} (client fault)
52
+ * <p>The resource cannot be found.</p>
53
+ *
54
+ * @throws {@link ServerInternalException} (server fault)
55
+ * <p>The server experienced an internal error. Try again.</p>
56
+ *
57
+ * @throws {@link ValidationException} (client fault)
58
+ * <p>The provided input is not valid. Try your request again.</p>
59
+ *
60
+ *
35
61
  */
36
62
  export declare class CreateTokenCommand extends $Command<CreateTokenCommandInput, CreateTokenCommandOutput, LicenseManagerClientResolvedConfig> {
37
63
  readonly input: CreateTokenCommandInput;
@@ -29,6 +29,29 @@ export interface DeleteGrantCommandOutput extends DeleteGrantResponse, __Metadat
29
29
  * @see {@link DeleteGrantCommandOutput} 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 DeleteGrantCommand extends $Command<DeleteGrantCommandInput, DeleteGrantCommandOutput, LicenseManagerClientResolvedConfig> {
34
57
  readonly input: DeleteGrantCommandInput;
@@ -29,6 +29,32 @@ export interface DeleteLicenseCommandOutput extends DeleteLicenseResponse, __Met
29
29
  * @see {@link DeleteLicenseCommandOutput} 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 ConflictException} (client fault)
40
+ * <p>There was a conflict processing the request. Try your request again.</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 RedirectException} (client fault)
49
+ * <p>This is not the correct Region for the resource. Try again.</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 DeleteLicenseCommand extends $Command<DeleteLicenseCommandInput, DeleteLicenseCommandOutput, LicenseManagerClientResolvedConfig> {
34
60
  readonly input: DeleteLicenseCommandInput;
@@ -30,6 +30,23 @@ export interface DeleteLicenseConfigurationCommandOutput extends DeleteLicenseCo
30
30
  * @see {@link DeleteLicenseConfigurationCommandOutput} for command's `response` shape.
31
31
  * @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>Access to resource denied.</p>
35
+ *
36
+ * @throws {@link AuthorizationException} (client fault)
37
+ * <p>The Amazon Web Services user account does not have permission to perform the action. Check the IAM
38
+ * policy associated with this account.</p>
39
+ *
40
+ * @throws {@link InvalidParameterValueException} (client fault)
41
+ * <p>One or more parameter values are not valid.</p>
42
+ *
43
+ * @throws {@link RateLimitExceededException} (client fault)
44
+ * <p>Too many requests have been submitted. Try again after a brief wait.</p>
45
+ *
46
+ * @throws {@link ServerInternalException} (server fault)
47
+ * <p>The server experienced an internal error. Try again.</p>
48
+ *
49
+ *
33
50
  */
34
51
  export declare class DeleteLicenseConfigurationCommand extends $Command<DeleteLicenseConfigurationCommandInput, DeleteLicenseConfigurationCommandOutput, LicenseManagerClientResolvedConfig> {
35
52
  readonly input: DeleteLicenseConfigurationCommandInput;
@@ -31,6 +31,32 @@ export interface DeleteLicenseManagerReportGeneratorCommandOutput extends Delete
31
31
  * @see {@link DeleteLicenseManagerReportGeneratorCommandOutput} 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 InvalidParameterValueException} (client fault)
42
+ * <p>One or more parameter values are not valid.</p>
43
+ *
44
+ * @throws {@link RateLimitExceededException} (client fault)
45
+ * <p>Too many requests have been submitted. Try again after a brief wait.</p>
46
+ *
47
+ * @throws {@link ResourceLimitExceededException} (client fault)
48
+ * <p>Your resource limits have been exceeded.</p>
49
+ *
50
+ * @throws {@link ResourceNotFoundException} (client fault)
51
+ * <p>The resource cannot be found.</p>
52
+ *
53
+ * @throws {@link ServerInternalException} (server fault)
54
+ * <p>The server experienced an internal error. Try again.</p>
55
+ *
56
+ * @throws {@link ValidationException} (client fault)
57
+ * <p>The provided input is not valid. Try your request again.</p>
58
+ *
59
+ *
34
60
  */
35
61
  export declare class DeleteLicenseManagerReportGeneratorCommand extends $Command<DeleteLicenseManagerReportGeneratorCommandInput, DeleteLicenseManagerReportGeneratorCommandOutput, LicenseManagerClientResolvedConfig> {
36
62
  readonly input: DeleteLicenseManagerReportGeneratorCommandInput;
@@ -29,6 +29,29 @@ export interface DeleteTokenCommandOutput extends DeleteTokenResponse, __Metadat
29
29
  * @see {@link DeleteTokenCommandOutput} 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 RedirectException} (client fault)
43
+ * <p>This is not the correct Region for the resource. Try again.</p>
44
+ *
45
+ * @throws {@link ResourceNotFoundException} (client fault)
46
+ * <p>The resource cannot be found.</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 DeleteTokenCommand extends $Command<DeleteTokenCommandInput, DeleteTokenCommandOutput, LicenseManagerClientResolvedConfig> {
34
57
  readonly input: DeleteTokenCommandInput;
@@ -29,6 +29,29 @@ export interface ExtendLicenseConsumptionCommandOutput extends ExtendLicenseCons
29
29
  * @see {@link ExtendLicenseConsumptionCommandOutput} 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 ResourceNotFoundException} (client fault)
46
+ * <p>The resource cannot be found.</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 ExtendLicenseConsumptionCommand extends $Command<ExtendLicenseConsumptionCommandInput, ExtendLicenseConsumptionCommandOutput, LicenseManagerClientResolvedConfig> {
34
57
  readonly input: ExtendLicenseConsumptionCommandInput;
@@ -30,6 +30,23 @@ export interface GetAccessTokenCommandOutput extends GetAccessTokenResponse, __M
30
30
  * @see {@link GetAccessTokenCommandOutput} for command's `response` shape.
31
31
  * @see {@link LicenseManagerClientResolvedConfig | config} for LicenseManagerClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>Access to resource denied.</p>
35
+ *
36
+ * @throws {@link AuthorizationException} (client fault)
37
+ * <p>The Amazon Web Services user account does not have permission to perform the action. Check the IAM
38
+ * policy associated with this account.</p>
39
+ *
40
+ * @throws {@link RateLimitExceededException} (client fault)
41
+ * <p>Too many requests have been submitted. Try again after a brief wait.</p>
42
+ *
43
+ * @throws {@link ServerInternalException} (server fault)
44
+ * <p>The server experienced an internal error. Try again.</p>
45
+ *
46
+ * @throws {@link ValidationException} (client fault)
47
+ * <p>The provided input is not valid. Try your request again.</p>
48
+ *
49
+ *
33
50
  */
34
51
  export declare class GetAccessTokenCommand extends $Command<GetAccessTokenCommandInput, GetAccessTokenCommandOutput, LicenseManagerClientResolvedConfig> {
35
52
  readonly input: GetAccessTokenCommandInput;
@@ -29,6 +29,29 @@ export interface GetGrantCommandOutput extends GetGrantResponse, __MetadataBeare
29
29
  * @see {@link GetGrantCommandOutput} 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 GetGrantCommand extends $Command<GetGrantCommandInput, GetGrantCommandOutput, LicenseManagerClientResolvedConfig> {
34
57
  readonly input: GetGrantCommandInput;