@aws-sdk/client-ram 3.289.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.
- package/dist-types/commands/AcceptResourceShareInvitationCommand.d.ts +33 -0
- package/dist-types/commands/AssociateResourceShareCommand.d.ts +37 -0
- package/dist-types/commands/AssociateResourceSharePermissionCommand.d.ts +22 -0
- package/dist-types/commands/CreateResourceShareCommand.d.ts +36 -0
- package/dist-types/commands/DeleteResourceShareCommand.d.ts +30 -0
- package/dist-types/commands/DisassociateResourceShareCommand.d.ts +33 -0
- package/dist-types/commands/DisassociateResourceSharePermissionCommand.d.ts +25 -0
- package/dist-types/commands/EnableSharingWithAwsOrganizationCommand.d.ts +10 -0
- package/dist-types/commands/GetPermissionCommand.d.ts +19 -0
- package/dist-types/commands/GetResourcePoliciesCommand.d.ts +19 -0
- package/dist-types/commands/GetResourceShareAssociationsCommand.d.ts +22 -0
- package/dist-types/commands/GetResourceShareInvitationsCommand.d.ts +25 -0
- package/dist-types/commands/GetResourceSharesCommand.d.ts +19 -0
- package/dist-types/commands/ListPendingInvitationResourcesCommand.d.ts +28 -0
- package/dist-types/commands/ListPermissionVersionsCommand.d.ts +22 -0
- package/dist-types/commands/ListPermissionsCommand.d.ts +16 -0
- package/dist-types/commands/ListPrincipalsCommand.d.ts +19 -0
- package/dist-types/commands/ListResourceSharePermissionsCommand.d.ts +22 -0
- package/dist-types/commands/ListResourceTypesCommand.d.ts +13 -0
- package/dist-types/commands/ListResourcesCommand.d.ts +22 -0
- package/dist-types/commands/PromoteResourceShareCreatedFromPolicyCommand.d.ts +25 -0
- package/dist-types/commands/RejectResourceShareInvitationCommand.d.ts +33 -0
- package/dist-types/commands/TagResourceCommand.d.ts +25 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +10 -0
- package/dist-types/commands/UpdateResourceShareCommand.d.ts +30 -0
- package/package.json +29 -29
|
@@ -31,6 +31,39 @@ export interface AcceptResourceShareInvitationCommandOutput extends AcceptResour
|
|
|
31
31
|
* @see {@link AcceptResourceShareInvitationCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link RAMClientResolvedConfig | config} for RAMClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link IdempotentParameterMismatchException} (client fault)
|
|
35
|
+
* <p>The client token input parameter was matched one used with a previous call to the
|
|
36
|
+
* operation, but at least one of the other input parameters is different from the previous
|
|
37
|
+
* call.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InvalidClientTokenException} (client fault)
|
|
40
|
+
* <p>The client token is not valid.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link MalformedArnException} (client fault)
|
|
43
|
+
* <p>The format of an Amazon Resource Name (ARN) is not valid.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link OperationNotPermittedException} (client fault)
|
|
46
|
+
* <p>The requested operation is not permitted.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ResourceShareInvitationAlreadyAcceptedException} (client fault)
|
|
49
|
+
* <p>The specified invitation was already accepted.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link ResourceShareInvitationAlreadyRejectedException} (client fault)
|
|
52
|
+
* <p>The specified invitation was already rejected.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link ResourceShareInvitationArnNotFoundException} (client fault)
|
|
55
|
+
* <p>The specified Amazon Resource Name (ARN) for an invitation was not found.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link ResourceShareInvitationExpiredException} (client fault)
|
|
58
|
+
* <p>The specified invitation is expired.</p>
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link ServerInternalException} (server fault)
|
|
61
|
+
* <p>The service could not respond to the request due to an internal problem.</p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
64
|
+
* <p>The service is not available.</p>
|
|
65
|
+
*
|
|
66
|
+
*
|
|
34
67
|
*/
|
|
35
68
|
export declare class AcceptResourceShareInvitationCommand extends $Command<AcceptResourceShareInvitationCommandInput, AcceptResourceShareInvitationCommandOutput, RAMClientResolvedConfig> {
|
|
36
69
|
readonly input: AcceptResourceShareInvitationCommandInput;
|
|
@@ -31,6 +31,43 @@ export interface AssociateResourceShareCommandOutput extends AssociateResourceSh
|
|
|
31
31
|
* @see {@link AssociateResourceShareCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link RAMClientResolvedConfig | config} for RAMClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link IdempotentParameterMismatchException} (client fault)
|
|
35
|
+
* <p>The client token input parameter was matched one used with a previous call to the
|
|
36
|
+
* operation, but at least one of the other input parameters is different from the previous
|
|
37
|
+
* call.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InvalidClientTokenException} (client fault)
|
|
40
|
+
* <p>The client token is not valid.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
43
|
+
* <p>A parameter is not valid.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link InvalidStateTransitionException} (client fault)
|
|
46
|
+
* <p>The requested state transition is not valid.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link MalformedArnException} (client fault)
|
|
49
|
+
* <p>The format of an Amazon Resource Name (ARN) is not valid.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link OperationNotPermittedException} (client fault)
|
|
52
|
+
* <p>The requested operation is not permitted.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link ResourceShareLimitExceededException} (client fault)
|
|
55
|
+
* <p>This request would exceed the limit for resource shares for your account.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link ServerInternalException} (server fault)
|
|
58
|
+
* <p>The service could not respond to the request due to an internal problem.</p>
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
61
|
+
* <p>The service is not available.</p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
64
|
+
* <p>You exceeded the rate at which you are allowed to perform this operation. Please try
|
|
65
|
+
* again later.</p>
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link UnknownResourceException} (client fault)
|
|
68
|
+
* <p>A specified resource was not found.</p>
|
|
69
|
+
*
|
|
70
|
+
*
|
|
34
71
|
*/
|
|
35
72
|
export declare class AssociateResourceShareCommand extends $Command<AssociateResourceShareCommandInput, AssociateResourceShareCommandOutput, RAMClientResolvedConfig> {
|
|
36
73
|
readonly input: AssociateResourceShareCommandInput;
|
|
@@ -32,6 +32,28 @@ export interface AssociateResourceSharePermissionCommandOutput extends Associate
|
|
|
32
32
|
* @see {@link AssociateResourceSharePermissionCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link RAMClientResolvedConfig | config} for RAMClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link InvalidClientTokenException} (client fault)
|
|
36
|
+
* <p>The client token is not valid.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
39
|
+
* <p>A parameter is not valid.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link MalformedArnException} (client fault)
|
|
42
|
+
* <p>The format of an Amazon Resource Name (ARN) is not valid.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link OperationNotPermittedException} (client fault)
|
|
45
|
+
* <p>The requested operation is not permitted.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ServerInternalException} (server fault)
|
|
48
|
+
* <p>The service could not respond to the request due to an internal problem.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
51
|
+
* <p>The service is not available.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link UnknownResourceException} (client fault)
|
|
54
|
+
* <p>A specified resource was not found.</p>
|
|
55
|
+
*
|
|
56
|
+
*
|
|
35
57
|
*/
|
|
36
58
|
export declare class AssociateResourceSharePermissionCommand extends $Command<AssociateResourceSharePermissionCommandInput, AssociateResourceSharePermissionCommandOutput, RAMClientResolvedConfig> {
|
|
37
59
|
readonly input: AssociateResourceSharePermissionCommandInput;
|
|
@@ -36,6 +36,42 @@ export interface CreateResourceShareCommandOutput extends CreateResourceShareRes
|
|
|
36
36
|
* @see {@link CreateResourceShareCommandOutput} for command's `response` shape.
|
|
37
37
|
* @see {@link RAMClientResolvedConfig | config} for RAMClient's `config` shape.
|
|
38
38
|
*
|
|
39
|
+
* @throws {@link IdempotentParameterMismatchException} (client fault)
|
|
40
|
+
* <p>The client token input parameter was matched one used with a previous call to the
|
|
41
|
+
* operation, but at least one of the other input parameters is different from the previous
|
|
42
|
+
* call.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link InvalidClientTokenException} (client fault)
|
|
45
|
+
* <p>The client token is not valid.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
48
|
+
* <p>A parameter is not valid.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link InvalidStateTransitionException} (client fault)
|
|
51
|
+
* <p>The requested state transition is not valid.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link MalformedArnException} (client fault)
|
|
54
|
+
* <p>The format of an Amazon Resource Name (ARN) is not valid.</p>
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link OperationNotPermittedException} (client fault)
|
|
57
|
+
* <p>The requested operation is not permitted.</p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link ResourceShareLimitExceededException} (client fault)
|
|
60
|
+
* <p>This request would exceed the limit for resource shares for your account.</p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link ServerInternalException} (server fault)
|
|
63
|
+
* <p>The service could not respond to the request due to an internal problem.</p>
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
66
|
+
* <p>The service is not available.</p>
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link TagPolicyViolationException} (client fault)
|
|
69
|
+
* <p>The specified tag key is a reserved word and can't be used.</p>
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link UnknownResourceException} (client fault)
|
|
72
|
+
* <p>A specified resource was not found.</p>
|
|
73
|
+
*
|
|
74
|
+
*
|
|
39
75
|
*/
|
|
40
76
|
export declare class CreateResourceShareCommand extends $Command<CreateResourceShareCommandInput, CreateResourceShareCommandOutput, RAMClientResolvedConfig> {
|
|
41
77
|
readonly input: CreateResourceShareCommandInput;
|
|
@@ -31,6 +31,36 @@ export interface DeleteResourceShareCommandOutput extends DeleteResourceShareRes
|
|
|
31
31
|
* @see {@link DeleteResourceShareCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link RAMClientResolvedConfig | config} for RAMClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link IdempotentParameterMismatchException} (client fault)
|
|
35
|
+
* <p>The client token input parameter was matched one used with a previous call to the
|
|
36
|
+
* operation, but at least one of the other input parameters is different from the previous
|
|
37
|
+
* call.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InvalidClientTokenException} (client fault)
|
|
40
|
+
* <p>The client token is not valid.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
43
|
+
* <p>A parameter is not valid.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link InvalidStateTransitionException} (client fault)
|
|
46
|
+
* <p>The requested state transition is not valid.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link MalformedArnException} (client fault)
|
|
49
|
+
* <p>The format of an Amazon Resource Name (ARN) is not valid.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link OperationNotPermittedException} (client fault)
|
|
52
|
+
* <p>The requested operation is not permitted.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link ServerInternalException} (server fault)
|
|
55
|
+
* <p>The service could not respond to the request due to an internal problem.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
58
|
+
* <p>The service is not available.</p>
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link UnknownResourceException} (client fault)
|
|
61
|
+
* <p>A specified resource was not found.</p>
|
|
62
|
+
*
|
|
63
|
+
*
|
|
34
64
|
*/
|
|
35
65
|
export declare class DeleteResourceShareCommand extends $Command<DeleteResourceShareCommandInput, DeleteResourceShareCommandOutput, RAMClientResolvedConfig> {
|
|
36
66
|
readonly input: DeleteResourceShareCommandInput;
|
|
@@ -29,6 +29,39 @@ export interface DisassociateResourceShareCommandOutput extends DisassociateReso
|
|
|
29
29
|
* @see {@link DisassociateResourceShareCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link RAMClientResolvedConfig | config} for RAMClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link IdempotentParameterMismatchException} (client fault)
|
|
33
|
+
* <p>The client token input parameter was matched one used with a previous call to the
|
|
34
|
+
* operation, but at least one of the other input parameters is different from the previous
|
|
35
|
+
* call.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InvalidClientTokenException} (client fault)
|
|
38
|
+
* <p>The client token is not valid.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
41
|
+
* <p>A parameter is not valid.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InvalidStateTransitionException} (client fault)
|
|
44
|
+
* <p>The requested state transition is not valid.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link MalformedArnException} (client fault)
|
|
47
|
+
* <p>The format of an Amazon Resource Name (ARN) is not valid.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link OperationNotPermittedException} (client fault)
|
|
50
|
+
* <p>The requested operation is not permitted.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link ResourceShareLimitExceededException} (client fault)
|
|
53
|
+
* <p>This request would exceed the limit for resource shares for your account.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link ServerInternalException} (server fault)
|
|
56
|
+
* <p>The service could not respond to the request due to an internal problem.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
59
|
+
* <p>The service is not available.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link UnknownResourceException} (client fault)
|
|
62
|
+
* <p>A specified resource was not found.</p>
|
|
63
|
+
*
|
|
64
|
+
*
|
|
32
65
|
*/
|
|
33
66
|
export declare class DisassociateResourceShareCommand extends $Command<DisassociateResourceShareCommandInput, DisassociateResourceShareCommandOutput, RAMClientResolvedConfig> {
|
|
34
67
|
readonly input: DisassociateResourceShareCommandInput;
|
|
@@ -31,6 +31,31 @@ export interface DisassociateResourceSharePermissionCommandOutput extends Disass
|
|
|
31
31
|
* @see {@link DisassociateResourceSharePermissionCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link RAMClientResolvedConfig | config} for RAMClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link InvalidClientTokenException} (client fault)
|
|
35
|
+
* <p>The client token is not valid.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
38
|
+
* <p>A parameter is not valid.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InvalidStateTransitionException} (client fault)
|
|
41
|
+
* <p>The requested state transition is not valid.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link MalformedArnException} (client fault)
|
|
44
|
+
* <p>The format of an Amazon Resource Name (ARN) is not valid.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link OperationNotPermittedException} (client fault)
|
|
47
|
+
* <p>The requested operation is not permitted.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ServerInternalException} (server fault)
|
|
50
|
+
* <p>The service could not respond to the request due to an internal problem.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
53
|
+
* <p>The service is not available.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link UnknownResourceException} (client fault)
|
|
56
|
+
* <p>A specified resource was not found.</p>
|
|
57
|
+
*
|
|
58
|
+
*
|
|
34
59
|
*/
|
|
35
60
|
export declare class DisassociateResourceSharePermissionCommand extends $Command<DisassociateResourceSharePermissionCommandInput, DisassociateResourceSharePermissionCommandOutput, RAMClientResolvedConfig> {
|
|
36
61
|
readonly input: DisassociateResourceSharePermissionCommandInput;
|
|
@@ -37,6 +37,16 @@ export interface EnableSharingWithAwsOrganizationCommandOutput extends EnableSha
|
|
|
37
37
|
* @see {@link EnableSharingWithAwsOrganizationCommandOutput} for command's `response` shape.
|
|
38
38
|
* @see {@link RAMClientResolvedConfig | config} for RAMClient's `config` shape.
|
|
39
39
|
*
|
|
40
|
+
* @throws {@link OperationNotPermittedException} (client fault)
|
|
41
|
+
* <p>The requested operation is not permitted.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link ServerInternalException} (server fault)
|
|
44
|
+
* <p>The service could not respond to the request due to an internal problem.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
47
|
+
* <p>The service is not available.</p>
|
|
48
|
+
*
|
|
49
|
+
*
|
|
40
50
|
*/
|
|
41
51
|
export declare class EnableSharingWithAwsOrganizationCommand extends $Command<EnableSharingWithAwsOrganizationCommandInput, EnableSharingWithAwsOrganizationCommandOutput, RAMClientResolvedConfig> {
|
|
42
52
|
readonly input: EnableSharingWithAwsOrganizationCommandInput;
|
|
@@ -29,6 +29,25 @@ export interface GetPermissionCommandOutput extends GetPermissionResponse, __Met
|
|
|
29
29
|
* @see {@link GetPermissionCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link RAMClientResolvedConfig | config} for RAMClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
33
|
+
* <p>A parameter is not valid.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link MalformedArnException} (client fault)
|
|
36
|
+
* <p>The format of an Amazon Resource Name (ARN) is not valid.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link OperationNotPermittedException} (client fault)
|
|
39
|
+
* <p>The requested operation is not permitted.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ServerInternalException} (server fault)
|
|
42
|
+
* <p>The service could not respond to the request due to an internal problem.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
45
|
+
* <p>The service is not available.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link UnknownResourceException} (client fault)
|
|
48
|
+
* <p>A specified resource was not found.</p>
|
|
49
|
+
*
|
|
50
|
+
*
|
|
32
51
|
*/
|
|
33
52
|
export declare class GetPermissionCommand extends $Command<GetPermissionCommandInput, GetPermissionCommandOutput, RAMClientResolvedConfig> {
|
|
34
53
|
readonly input: GetPermissionCommandInput;
|
|
@@ -30,6 +30,25 @@ export interface GetResourcePoliciesCommandOutput extends GetResourcePoliciesRes
|
|
|
30
30
|
* @see {@link GetResourcePoliciesCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link RAMClientResolvedConfig | config} for RAMClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link InvalidNextTokenException} (client fault)
|
|
34
|
+
* <p>The specified value for <code>NextToken</code> is not valid.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
37
|
+
* <p>A parameter is not valid.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link MalformedArnException} (client fault)
|
|
40
|
+
* <p>The format of an Amazon Resource Name (ARN) is not valid.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ResourceArnNotFoundException} (client fault)
|
|
43
|
+
* <p>The specified Amazon Resource Name (ARN) was not found.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ServerInternalException} (server fault)
|
|
46
|
+
* <p>The service could not respond to the request due to an internal problem.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
49
|
+
* <p>The service is not available.</p>
|
|
50
|
+
*
|
|
51
|
+
*
|
|
33
52
|
*/
|
|
34
53
|
export declare class GetResourcePoliciesCommand extends $Command<GetResourcePoliciesCommandInput, GetResourcePoliciesCommandOutput, RAMClientResolvedConfig> {
|
|
35
54
|
readonly input: GetResourcePoliciesCommandInput;
|
|
@@ -29,6 +29,28 @@ export interface GetResourceShareAssociationsCommandOutput extends GetResourceSh
|
|
|
29
29
|
* @see {@link GetResourceShareAssociationsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link RAMClientResolvedConfig | config} for RAMClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InvalidNextTokenException} (client fault)
|
|
33
|
+
* <p>The specified value for <code>NextToken</code> is not valid.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
36
|
+
* <p>A parameter is not valid.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link MalformedArnException} (client fault)
|
|
39
|
+
* <p>The format of an Amazon Resource Name (ARN) is not valid.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link OperationNotPermittedException} (client fault)
|
|
42
|
+
* <p>The requested operation is not permitted.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ServerInternalException} (server fault)
|
|
45
|
+
* <p>The service could not respond to the request due to an internal problem.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
48
|
+
* <p>The service is not available.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link UnknownResourceException} (client fault)
|
|
51
|
+
* <p>A specified resource was not found.</p>
|
|
52
|
+
*
|
|
53
|
+
*
|
|
32
54
|
*/
|
|
33
55
|
export declare class GetResourceShareAssociationsCommand extends $Command<GetResourceShareAssociationsCommandInput, GetResourceShareAssociationsCommandOutput, RAMClientResolvedConfig> {
|
|
34
56
|
readonly input: GetResourceShareAssociationsCommandInput;
|
|
@@ -29,6 +29,31 @@ export interface GetResourceShareInvitationsCommandOutput extends GetResourceSha
|
|
|
29
29
|
* @see {@link GetResourceShareInvitationsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link RAMClientResolvedConfig | config} for RAMClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InvalidMaxResultsException} (client fault)
|
|
33
|
+
* <p>The specified value for <code>MaxResults</code> is not valid.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InvalidNextTokenException} (client fault)
|
|
36
|
+
* <p>The specified value for <code>NextToken</code> is not valid.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
39
|
+
* <p>A parameter is not valid.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link MalformedArnException} (client fault)
|
|
42
|
+
* <p>The format of an Amazon Resource Name (ARN) is not valid.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ResourceShareInvitationArnNotFoundException} (client fault)
|
|
45
|
+
* <p>The specified Amazon Resource Name (ARN) for an invitation was not found.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ServerInternalException} (server fault)
|
|
48
|
+
* <p>The service could not respond to the request due to an internal problem.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
51
|
+
* <p>The service is not available.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link UnknownResourceException} (client fault)
|
|
54
|
+
* <p>A specified resource was not found.</p>
|
|
55
|
+
*
|
|
56
|
+
*
|
|
32
57
|
*/
|
|
33
58
|
export declare class GetResourceShareInvitationsCommand extends $Command<GetResourceShareInvitationsCommandInput, GetResourceShareInvitationsCommandOutput, RAMClientResolvedConfig> {
|
|
34
59
|
readonly input: GetResourceShareInvitationsCommandInput;
|
|
@@ -29,6 +29,25 @@ export interface GetResourceSharesCommandOutput extends GetResourceSharesRespons
|
|
|
29
29
|
* @see {@link GetResourceSharesCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link RAMClientResolvedConfig | config} for RAMClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InvalidNextTokenException} (client fault)
|
|
33
|
+
* <p>The specified value for <code>NextToken</code> is not valid.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
36
|
+
* <p>A parameter is not valid.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link MalformedArnException} (client fault)
|
|
39
|
+
* <p>The format of an Amazon Resource Name (ARN) is not valid.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ServerInternalException} (server fault)
|
|
42
|
+
* <p>The service could not respond to the request due to an internal problem.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
45
|
+
* <p>The service is not available.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link UnknownResourceException} (client fault)
|
|
48
|
+
* <p>A specified resource was not found.</p>
|
|
49
|
+
*
|
|
50
|
+
*
|
|
32
51
|
*/
|
|
33
52
|
export declare class GetResourceSharesCommand extends $Command<GetResourceSharesCommandInput, GetResourceSharesCommandOutput, RAMClientResolvedConfig> {
|
|
34
53
|
readonly input: GetResourceSharesCommandInput;
|
|
@@ -31,6 +31,34 @@ export interface ListPendingInvitationResourcesCommandOutput extends ListPending
|
|
|
31
31
|
* @see {@link ListPendingInvitationResourcesCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link RAMClientResolvedConfig | config} for RAMClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link InvalidNextTokenException} (client fault)
|
|
35
|
+
* <p>The specified value for <code>NextToken</code> is not valid.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
38
|
+
* <p>A parameter is not valid.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link MalformedArnException} (client fault)
|
|
41
|
+
* <p>The format of an Amazon Resource Name (ARN) is not valid.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link MissingRequiredParameterException} (client fault)
|
|
44
|
+
* <p>A required input parameter is missing.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ResourceShareInvitationAlreadyRejectedException} (client fault)
|
|
47
|
+
* <p>The specified invitation was already rejected.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ResourceShareInvitationArnNotFoundException} (client fault)
|
|
50
|
+
* <p>The specified Amazon Resource Name (ARN) for an invitation was not found.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link ResourceShareInvitationExpiredException} (client fault)
|
|
53
|
+
* <p>The specified invitation is expired.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link ServerInternalException} (server fault)
|
|
56
|
+
* <p>The service could not respond to the request due to an internal problem.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
59
|
+
* <p>The service is not available.</p>
|
|
60
|
+
*
|
|
61
|
+
*
|
|
34
62
|
*/
|
|
35
63
|
export declare class ListPendingInvitationResourcesCommand extends $Command<ListPendingInvitationResourcesCommandInput, ListPendingInvitationResourcesCommandOutput, RAMClientResolvedConfig> {
|
|
36
64
|
readonly input: ListPendingInvitationResourcesCommandInput;
|
|
@@ -29,6 +29,28 @@ export interface ListPermissionVersionsCommandOutput extends ListPermissionVersi
|
|
|
29
29
|
* @see {@link ListPermissionVersionsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link RAMClientResolvedConfig | config} for RAMClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InvalidNextTokenException} (client fault)
|
|
33
|
+
* <p>The specified value for <code>NextToken</code> is not valid.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
36
|
+
* <p>A parameter is not valid.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link MalformedArnException} (client fault)
|
|
39
|
+
* <p>The format of an Amazon Resource Name (ARN) is not valid.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link OperationNotPermittedException} (client fault)
|
|
42
|
+
* <p>The requested operation is not permitted.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ServerInternalException} (server fault)
|
|
45
|
+
* <p>The service could not respond to the request due to an internal problem.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
48
|
+
* <p>The service is not available.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link UnknownResourceException} (client fault)
|
|
51
|
+
* <p>A specified resource was not found.</p>
|
|
52
|
+
*
|
|
53
|
+
*
|
|
32
54
|
*/
|
|
33
55
|
export declare class ListPermissionVersionsCommand extends $Command<ListPermissionVersionsCommandInput, ListPermissionVersionsCommandOutput, RAMClientResolvedConfig> {
|
|
34
56
|
readonly input: ListPermissionVersionsCommandInput;
|
|
@@ -30,6 +30,22 @@ export interface ListPermissionsCommandOutput extends ListPermissionsResponse, _
|
|
|
30
30
|
* @see {@link ListPermissionsCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link RAMClientResolvedConfig | config} for RAMClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link InvalidNextTokenException} (client fault)
|
|
34
|
+
* <p>The specified value for <code>NextToken</code> is not valid.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
37
|
+
* <p>A parameter is not valid.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link OperationNotPermittedException} (client fault)
|
|
40
|
+
* <p>The requested operation is not permitted.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ServerInternalException} (server fault)
|
|
43
|
+
* <p>The service could not respond to the request due to an internal problem.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
46
|
+
* <p>The service is not available.</p>
|
|
47
|
+
*
|
|
48
|
+
*
|
|
33
49
|
*/
|
|
34
50
|
export declare class ListPermissionsCommand extends $Command<ListPermissionsCommandInput, ListPermissionsCommandOutput, RAMClientResolvedConfig> {
|
|
35
51
|
readonly input: ListPermissionsCommandInput;
|
|
@@ -30,6 +30,25 @@ export interface ListPrincipalsCommandOutput extends ListPrincipalsResponse, __M
|
|
|
30
30
|
* @see {@link ListPrincipalsCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link RAMClientResolvedConfig | config} for RAMClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link InvalidNextTokenException} (client fault)
|
|
34
|
+
* <p>The specified value for <code>NextToken</code> is not valid.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
37
|
+
* <p>A parameter is not valid.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link MalformedArnException} (client fault)
|
|
40
|
+
* <p>The format of an Amazon Resource Name (ARN) is not valid.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ServerInternalException} (server fault)
|
|
43
|
+
* <p>The service could not respond to the request due to an internal problem.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
46
|
+
* <p>The service is not available.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link UnknownResourceException} (client fault)
|
|
49
|
+
* <p>A specified resource was not found.</p>
|
|
50
|
+
*
|
|
51
|
+
*
|
|
33
52
|
*/
|
|
34
53
|
export declare class ListPrincipalsCommand extends $Command<ListPrincipalsCommandInput, ListPrincipalsCommandOutput, RAMClientResolvedConfig> {
|
|
35
54
|
readonly input: ListPrincipalsCommandInput;
|
|
@@ -29,6 +29,28 @@ export interface ListResourceSharePermissionsCommandOutput extends ListResourceS
|
|
|
29
29
|
* @see {@link ListResourceSharePermissionsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link RAMClientResolvedConfig | config} for RAMClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InvalidNextTokenException} (client fault)
|
|
33
|
+
* <p>The specified value for <code>NextToken</code> is not valid.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
36
|
+
* <p>A parameter is not valid.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link MalformedArnException} (client fault)
|
|
39
|
+
* <p>The format of an Amazon Resource Name (ARN) is not valid.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link OperationNotPermittedException} (client fault)
|
|
42
|
+
* <p>The requested operation is not permitted.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ServerInternalException} (server fault)
|
|
45
|
+
* <p>The service could not respond to the request due to an internal problem.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
48
|
+
* <p>The service is not available.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link UnknownResourceException} (client fault)
|
|
51
|
+
* <p>A specified resource was not found.</p>
|
|
52
|
+
*
|
|
53
|
+
*
|
|
32
54
|
*/
|
|
33
55
|
export declare class ListResourceSharePermissionsCommand extends $Command<ListResourceSharePermissionsCommandInput, ListResourceSharePermissionsCommandOutput, RAMClientResolvedConfig> {
|
|
34
56
|
readonly input: ListResourceSharePermissionsCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface ListResourceTypesCommandOutput extends ListResourceTypesRespons
|
|
|
29
29
|
* @see {@link ListResourceTypesCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link RAMClientResolvedConfig | config} for RAMClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InvalidNextTokenException} (client fault)
|
|
33
|
+
* <p>The specified value for <code>NextToken</code> is not valid.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
36
|
+
* <p>A parameter is not valid.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ServerInternalException} (server fault)
|
|
39
|
+
* <p>The service could not respond to the request due to an internal problem.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
42
|
+
* <p>The service is not available.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class ListResourceTypesCommand extends $Command<ListResourceTypesCommandInput, ListResourceTypesCommandOutput, RAMClientResolvedConfig> {
|
|
34
47
|
readonly input: ListResourceTypesCommandInput;
|
|
@@ -30,6 +30,28 @@ export interface ListResourcesCommandOutput extends ListResourcesResponse, __Met
|
|
|
30
30
|
* @see {@link ListResourcesCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link RAMClientResolvedConfig | config} for RAMClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link InvalidNextTokenException} (client fault)
|
|
34
|
+
* <p>The specified value for <code>NextToken</code> is not valid.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
37
|
+
* <p>A parameter is not valid.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InvalidResourceTypeException} (client fault)
|
|
40
|
+
* <p>The specified resource type is not valid.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link MalformedArnException} (client fault)
|
|
43
|
+
* <p>The format of an Amazon Resource Name (ARN) is not valid.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ServerInternalException} (server fault)
|
|
46
|
+
* <p>The service could not respond to the request due to an internal problem.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
49
|
+
* <p>The service is not available.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link UnknownResourceException} (client fault)
|
|
52
|
+
* <p>A specified resource was not found.</p>
|
|
53
|
+
*
|
|
54
|
+
*
|
|
33
55
|
*/
|
|
34
56
|
export declare class ListResourcesCommand extends $Command<ListResourcesCommandInput, ListResourcesCommandOutput, RAMClientResolvedConfig> {
|
|
35
57
|
readonly input: ListResourcesCommandInput;
|
|
@@ -34,6 +34,31 @@ export interface PromoteResourceShareCreatedFromPolicyCommandOutput extends Prom
|
|
|
34
34
|
* @see {@link PromoteResourceShareCreatedFromPolicyCommandOutput} for command's `response` shape.
|
|
35
35
|
* @see {@link RAMClientResolvedConfig | config} for RAMClient's `config` shape.
|
|
36
36
|
*
|
|
37
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
38
|
+
* <p>A parameter is not valid.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link MalformedArnException} (client fault)
|
|
41
|
+
* <p>The format of an Amazon Resource Name (ARN) is not valid.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link MissingRequiredParameterException} (client fault)
|
|
44
|
+
* <p>A required input parameter is missing.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link OperationNotPermittedException} (client fault)
|
|
47
|
+
* <p>The requested operation is not permitted.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ResourceShareLimitExceededException} (client fault)
|
|
50
|
+
* <p>This request would exceed the limit for resource shares for your account.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link ServerInternalException} (server fault)
|
|
53
|
+
* <p>The service could not respond to the request due to an internal problem.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
56
|
+
* <p>The service is not available.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link UnknownResourceException} (client fault)
|
|
59
|
+
* <p>A specified resource was not found.</p>
|
|
60
|
+
*
|
|
61
|
+
*
|
|
37
62
|
*/
|
|
38
63
|
export declare class PromoteResourceShareCreatedFromPolicyCommand extends $Command<PromoteResourceShareCreatedFromPolicyCommandInput, PromoteResourceShareCreatedFromPolicyCommandOutput, RAMClientResolvedConfig> {
|
|
39
64
|
readonly input: PromoteResourceShareCreatedFromPolicyCommandInput;
|
|
@@ -29,6 +29,39 @@ export interface RejectResourceShareInvitationCommandOutput extends RejectResour
|
|
|
29
29
|
* @see {@link RejectResourceShareInvitationCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link RAMClientResolvedConfig | config} for RAMClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link IdempotentParameterMismatchException} (client fault)
|
|
33
|
+
* <p>The client token input parameter was matched one used with a previous call to the
|
|
34
|
+
* operation, but at least one of the other input parameters is different from the previous
|
|
35
|
+
* call.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InvalidClientTokenException} (client fault)
|
|
38
|
+
* <p>The client token is not valid.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link MalformedArnException} (client fault)
|
|
41
|
+
* <p>The format of an Amazon Resource Name (ARN) is not valid.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link OperationNotPermittedException} (client fault)
|
|
44
|
+
* <p>The requested operation is not permitted.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ResourceShareInvitationAlreadyAcceptedException} (client fault)
|
|
47
|
+
* <p>The specified invitation was already accepted.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ResourceShareInvitationAlreadyRejectedException} (client fault)
|
|
50
|
+
* <p>The specified invitation was already rejected.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link ResourceShareInvitationArnNotFoundException} (client fault)
|
|
53
|
+
* <p>The specified Amazon Resource Name (ARN) for an invitation was not found.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link ResourceShareInvitationExpiredException} (client fault)
|
|
56
|
+
* <p>The specified invitation is expired.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link ServerInternalException} (server fault)
|
|
59
|
+
* <p>The service could not respond to the request due to an internal problem.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
62
|
+
* <p>The service is not available.</p>
|
|
63
|
+
*
|
|
64
|
+
*
|
|
32
65
|
*/
|
|
33
66
|
export declare class RejectResourceShareInvitationCommand extends $Command<RejectResourceShareInvitationCommandInput, RejectResourceShareInvitationCommandOutput, RAMClientResolvedConfig> {
|
|
34
67
|
readonly input: RejectResourceShareInvitationCommandInput;
|
|
@@ -30,6 +30,31 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
30
30
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link RAMClientResolvedConfig | config} for RAMClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
34
|
+
* <p>A parameter is not valid.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link MalformedArnException} (client fault)
|
|
37
|
+
* <p>The format of an Amazon Resource Name (ARN) is not valid.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link ResourceArnNotFoundException} (client fault)
|
|
40
|
+
* <p>The specified Amazon Resource Name (ARN) was not found.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ServerInternalException} (server fault)
|
|
43
|
+
* <p>The service could not respond to the request due to an internal problem.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
46
|
+
* <p>The service is not available.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link TagLimitExceededException} (client fault)
|
|
49
|
+
* <p>This request would exceed the limit for tags for your account.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link TagPolicyViolationException} (client fault)
|
|
52
|
+
* <p>The specified tag key is a reserved word and can't be used.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link UnknownResourceException} (client fault)
|
|
55
|
+
* <p>A specified resource was not found.</p>
|
|
56
|
+
*
|
|
57
|
+
*
|
|
33
58
|
*/
|
|
34
59
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, RAMClientResolvedConfig> {
|
|
35
60
|
readonly input: TagResourceCommandInput;
|
|
@@ -29,6 +29,16 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
29
29
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link RAMClientResolvedConfig | config} for RAMClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
33
|
+
* <p>A parameter is not valid.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ServerInternalException} (server fault)
|
|
36
|
+
* <p>The service could not respond to the request due to an internal problem.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
39
|
+
* <p>The service is not available.</p>
|
|
40
|
+
*
|
|
41
|
+
*
|
|
32
42
|
*/
|
|
33
43
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, RAMClientResolvedConfig> {
|
|
34
44
|
readonly input: UntagResourceCommandInput;
|
|
@@ -29,6 +29,36 @@ export interface UpdateResourceShareCommandOutput extends UpdateResourceShareRes
|
|
|
29
29
|
* @see {@link UpdateResourceShareCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link RAMClientResolvedConfig | config} for RAMClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link IdempotentParameterMismatchException} (client fault)
|
|
33
|
+
* <p>The client token input parameter was matched one used with a previous call to the
|
|
34
|
+
* operation, but at least one of the other input parameters is different from the previous
|
|
35
|
+
* call.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InvalidClientTokenException} (client fault)
|
|
38
|
+
* <p>The client token is not valid.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
41
|
+
* <p>A parameter is not valid.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link MalformedArnException} (client fault)
|
|
44
|
+
* <p>The format of an Amazon Resource Name (ARN) is not valid.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link MissingRequiredParameterException} (client fault)
|
|
47
|
+
* <p>A required input parameter is missing.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link OperationNotPermittedException} (client fault)
|
|
50
|
+
* <p>The requested operation is not permitted.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link ServerInternalException} (server fault)
|
|
53
|
+
* <p>The service could not respond to the request due to an internal problem.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
56
|
+
* <p>The service is not available.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link UnknownResourceException} (client fault)
|
|
59
|
+
* <p>A specified resource was not found.</p>
|
|
60
|
+
*
|
|
61
|
+
*
|
|
32
62
|
*/
|
|
33
63
|
export declare class UpdateResourceShareCommand extends $Command<UpdateResourceShareCommandInput, UpdateResourceShareCommandOutput, RAMClientResolvedConfig> {
|
|
34
64
|
readonly input: UpdateResourceShareCommandInput;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ram",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ram Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.290.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,37 +20,37 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
27
|
-
"@aws-sdk/hash-node": "3.
|
|
28
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
29
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
30
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
-
"@aws-sdk/middleware-serde": "3.
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
-
"@aws-sdk/middleware-stack": "3.
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.290.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.290.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.290.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.290.0",
|
|
27
|
+
"@aws-sdk/hash-node": "3.290.0",
|
|
28
|
+
"@aws-sdk/invalid-dependency": "3.290.0",
|
|
29
|
+
"@aws-sdk/middleware-content-length": "3.290.0",
|
|
30
|
+
"@aws-sdk/middleware-endpoint": "3.290.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.290.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.290.0",
|
|
33
|
+
"@aws-sdk/middleware-recursion-detection": "3.290.0",
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.290.0",
|
|
35
|
+
"@aws-sdk/middleware-serde": "3.290.0",
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.290.0",
|
|
37
|
+
"@aws-sdk/middleware-stack": "3.290.0",
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.290.0",
|
|
39
|
+
"@aws-sdk/node-config-provider": "3.290.0",
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.290.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.290.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.290.0",
|
|
43
|
+
"@aws-sdk/types": "3.290.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.290.0",
|
|
45
45
|
"@aws-sdk/util-base64": "3.208.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-retry": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.290.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.290.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.290.0",
|
|
51
|
+
"@aws-sdk/util-retry": "3.290.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.290.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.290.0",
|
|
54
54
|
"@aws-sdk/util-utf8": "3.254.0",
|
|
55
55
|
"tslib": "^2.3.1"
|
|
56
56
|
},
|