@aws-sdk/client-ram 3.296.0 → 3.297.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/RAM.d.ts +26 -0
- package/dist-types/RAMClient.d.ts +24 -4
- package/dist-types/commands/AcceptResourceShareInvitationCommand.d.ts +16 -0
- package/dist-types/commands/AssociateResourceShareCommand.d.ts +16 -0
- package/dist-types/commands/AssociateResourceSharePermissionCommand.d.ts +16 -0
- package/dist-types/commands/CreateResourceShareCommand.d.ts +16 -0
- package/dist-types/commands/DeleteResourceShareCommand.d.ts +16 -0
- package/dist-types/commands/DisassociateResourceShareCommand.d.ts +16 -0
- package/dist-types/commands/DisassociateResourceSharePermissionCommand.d.ts +16 -0
- package/dist-types/commands/EnableSharingWithAwsOrganizationCommand.d.ts +16 -0
- package/dist-types/commands/GetPermissionCommand.d.ts +16 -0
- package/dist-types/commands/GetResourcePoliciesCommand.d.ts +16 -0
- package/dist-types/commands/GetResourceShareAssociationsCommand.d.ts +16 -0
- package/dist-types/commands/GetResourceShareInvitationsCommand.d.ts +16 -0
- package/dist-types/commands/GetResourceSharesCommand.d.ts +16 -0
- package/dist-types/commands/ListPendingInvitationResourcesCommand.d.ts +16 -0
- package/dist-types/commands/ListPermissionVersionsCommand.d.ts +16 -0
- package/dist-types/commands/ListPermissionsCommand.d.ts +16 -0
- package/dist-types/commands/ListPrincipalsCommand.d.ts +16 -0
- package/dist-types/commands/ListResourceSharePermissionsCommand.d.ts +16 -0
- package/dist-types/commands/ListResourceTypesCommand.d.ts +16 -0
- package/dist-types/commands/ListResourcesCommand.d.ts +16 -0
- package/dist-types/commands/PromoteResourceShareCreatedFromPolicyCommand.d.ts +16 -0
- package/dist-types/commands/RejectResourceShareInvitationCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateResourceShareCommand.d.ts +16 -0
- package/dist-types/models/RAMServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +209 -0
- package/dist-types/pagination/GetResourcePoliciesPaginator.d.ts +3 -0
- package/dist-types/pagination/GetResourceShareAssociationsPaginator.d.ts +3 -0
- package/dist-types/pagination/GetResourceShareInvitationsPaginator.d.ts +3 -0
- package/dist-types/pagination/GetResourceSharesPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListPendingInvitationResourcesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListPermissionVersionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListPermissionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListPrincipalsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListResourceSharePermissionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListResourceTypesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListResourcesPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { EnableSharingWithAwsOrganizationRequest, EnableSharingWithAwsOrganizationResponse } from "../models/models_0";
|
|
5
5
|
import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link EnableSharingWithAwsOrganizationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface EnableSharingWithAwsOrganizationCommandInput extends EnableSharingWithAwsOrganizationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link EnableSharingWithAwsOrganizationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface EnableSharingWithAwsOrganizationCommandOutput extends EnableSharingWithAwsOrganizationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Enables resource sharing within your organization in Organizations. Calling this operation
|
|
18
23
|
* enables RAM to retrieve information about the organization and its structure. This
|
|
19
24
|
* lets you share resources with all of the accounts in an organization by specifying the
|
|
@@ -33,6 +38,8 @@ export interface EnableSharingWithAwsOrganizationCommandOutput extends EnableSha
|
|
|
33
38
|
* const response = await client.send(command);
|
|
34
39
|
* ```
|
|
35
40
|
*
|
|
41
|
+
* @param EnableSharingWithAwsOrganizationCommandInput - {@link EnableSharingWithAwsOrganizationCommandInput}
|
|
42
|
+
* @returns {@link EnableSharingWithAwsOrganizationCommandOutput}
|
|
36
43
|
* @see {@link EnableSharingWithAwsOrganizationCommandInput} for command's `input` shape.
|
|
37
44
|
* @see {@link EnableSharingWithAwsOrganizationCommandOutput} for command's `response` shape.
|
|
38
45
|
* @see {@link RAMClientResolvedConfig | config} for RAMClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface EnableSharingWithAwsOrganizationCommandOutput extends EnableSha
|
|
|
51
58
|
export declare class EnableSharingWithAwsOrganizationCommand extends $Command<EnableSharingWithAwsOrganizationCommandInput, EnableSharingWithAwsOrganizationCommandOutput, RAMClientResolvedConfig> {
|
|
52
59
|
readonly input: EnableSharingWithAwsOrganizationCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: EnableSharingWithAwsOrganizationCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RAMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<EnableSharingWithAwsOrganizationCommandInput, EnableSharingWithAwsOrganizationCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetPermissionRequest, GetPermissionResponse } from "../models/models_0";
|
|
5
5
|
import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetPermissionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetPermissionCommandInput extends GetPermissionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetPermissionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetPermissionCommandOutput extends GetPermissionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets the contents of an RAM permission in JSON format.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetPermissionCommandOutput extends GetPermissionResponse, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetPermissionCommandInput - {@link GetPermissionCommandInput}
|
|
34
|
+
* @returns {@link GetPermissionCommandOutput}
|
|
28
35
|
* @see {@link GetPermissionCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetPermissionCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link RAMClientResolvedConfig | config} for RAMClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface GetPermissionCommandOutput extends GetPermissionResponse, __Met
|
|
|
52
59
|
export declare class GetPermissionCommand extends $Command<GetPermissionCommandInput, GetPermissionCommandOutput, RAMClientResolvedConfig> {
|
|
53
60
|
readonly input: GetPermissionCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: GetPermissionCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RAMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetPermissionCommandInput, GetPermissionCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetResourcePoliciesRequest, GetResourcePoliciesResponse } from "../models/models_0";
|
|
5
5
|
import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetResourcePoliciesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetResourcePoliciesCommandInput extends GetResourcePoliciesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetResourcePoliciesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetResourcePoliciesCommandOutput extends GetResourcePoliciesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the resource policies for the specified resources that you own and have
|
|
18
23
|
* shared.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface GetResourcePoliciesCommandOutput extends GetResourcePoliciesRes
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param GetResourcePoliciesCommandInput - {@link GetResourcePoliciesCommandInput}
|
|
35
|
+
* @returns {@link GetResourcePoliciesCommandOutput}
|
|
29
36
|
* @see {@link GetResourcePoliciesCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link GetResourcePoliciesCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link RAMClientResolvedConfig | config} for RAMClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface GetResourcePoliciesCommandOutput extends GetResourcePoliciesRes
|
|
|
53
60
|
export declare class GetResourcePoliciesCommand extends $Command<GetResourcePoliciesCommandInput, GetResourcePoliciesCommandOutput, RAMClientResolvedConfig> {
|
|
54
61
|
readonly input: GetResourcePoliciesCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: GetResourcePoliciesCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RAMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetResourcePoliciesCommandInput, GetResourcePoliciesCommandOutput>;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
61
74
|
private serialize;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
62
78
|
private deserialize;
|
|
63
79
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetResourceShareAssociationsRequest, GetResourceShareAssociationsResponse } from "../models/models_0";
|
|
5
5
|
import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetResourceShareAssociationsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetResourceShareAssociationsCommandInput extends GetResourceShareAssociationsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetResourceShareAssociationsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetResourceShareAssociationsCommandOutput extends GetResourceShareAssociationsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the resource and principal associations for resource shares that you own.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetResourceShareAssociationsCommandOutput extends GetResourceSh
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetResourceShareAssociationsCommandInput - {@link GetResourceShareAssociationsCommandInput}
|
|
34
|
+
* @returns {@link GetResourceShareAssociationsCommandOutput}
|
|
28
35
|
* @see {@link GetResourceShareAssociationsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetResourceShareAssociationsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link RAMClientResolvedConfig | config} for RAMClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface GetResourceShareAssociationsCommandOutput extends GetResourceSh
|
|
|
55
62
|
export declare class GetResourceShareAssociationsCommand extends $Command<GetResourceShareAssociationsCommandInput, GetResourceShareAssociationsCommandOutput, RAMClientResolvedConfig> {
|
|
56
63
|
readonly input: GetResourceShareAssociationsCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: GetResourceShareAssociationsCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RAMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetResourceShareAssociationsCommandInput, GetResourceShareAssociationsCommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetResourceShareInvitationsRequest, GetResourceShareInvitationsResponse } from "../models/models_0";
|
|
5
5
|
import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetResourceShareInvitationsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetResourceShareInvitationsCommandInput extends GetResourceShareInvitationsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetResourceShareInvitationsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetResourceShareInvitationsCommandOutput extends GetResourceShareInvitationsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves details about invitations that you have received for resource shares.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetResourceShareInvitationsCommandOutput extends GetResourceSha
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetResourceShareInvitationsCommandInput - {@link GetResourceShareInvitationsCommandInput}
|
|
34
|
+
* @returns {@link GetResourceShareInvitationsCommandOutput}
|
|
28
35
|
* @see {@link GetResourceShareInvitationsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetResourceShareInvitationsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link RAMClientResolvedConfig | config} for RAMClient's `config` shape.
|
|
@@ -58,11 +65,20 @@ export interface GetResourceShareInvitationsCommandOutput extends GetResourceSha
|
|
|
58
65
|
export declare class GetResourceShareInvitationsCommand extends $Command<GetResourceShareInvitationsCommandInput, GetResourceShareInvitationsCommandOutput, RAMClientResolvedConfig> {
|
|
59
66
|
readonly input: GetResourceShareInvitationsCommandInput;
|
|
60
67
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
68
|
+
/**
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
61
71
|
constructor(input: GetResourceShareInvitationsCommandInput);
|
|
62
72
|
/**
|
|
63
73
|
* @internal
|
|
64
74
|
*/
|
|
65
75
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RAMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetResourceShareInvitationsCommandInput, GetResourceShareInvitationsCommandOutput>;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
66
79
|
private serialize;
|
|
80
|
+
/**
|
|
81
|
+
* @internal
|
|
82
|
+
*/
|
|
67
83
|
private deserialize;
|
|
68
84
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetResourceSharesRequest, GetResourceSharesResponse } from "../models/models_0";
|
|
5
5
|
import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetResourceSharesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetResourceSharesCommandInput extends GetResourceSharesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetResourceSharesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetResourceSharesCommandOutput extends GetResourceSharesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves details about the resource shares that you own or that are shared with you.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetResourceSharesCommandOutput extends GetResourceSharesRespons
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetResourceSharesCommandInput - {@link GetResourceSharesCommandInput}
|
|
34
|
+
* @returns {@link GetResourceSharesCommandOutput}
|
|
28
35
|
* @see {@link GetResourceSharesCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetResourceSharesCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link RAMClientResolvedConfig | config} for RAMClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface GetResourceSharesCommandOutput extends GetResourceSharesRespons
|
|
|
52
59
|
export declare class GetResourceSharesCommand extends $Command<GetResourceSharesCommandInput, GetResourceSharesCommandOutput, RAMClientResolvedConfig> {
|
|
53
60
|
readonly input: GetResourceSharesCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: GetResourceSharesCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RAMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetResourceSharesCommandInput, GetResourceSharesCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListPendingInvitationResourcesRequest, ListPendingInvitationResourcesResponse } from "../models/models_0";
|
|
5
5
|
import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListPendingInvitationResourcesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListPendingInvitationResourcesCommandInput extends ListPendingInvitationResourcesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListPendingInvitationResourcesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListPendingInvitationResourcesCommandOutput extends ListPendingInvitationResourcesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the resources in a resource share that is shared with you but for which the invitation is
|
|
18
23
|
* still <code>PENDING</code>. That means that you haven't accepted or rejected the
|
|
19
24
|
* invitation and the invitation hasn't expired.</p>
|
|
@@ -27,6 +32,8 @@ export interface ListPendingInvitationResourcesCommandOutput extends ListPending
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param ListPendingInvitationResourcesCommandInput - {@link ListPendingInvitationResourcesCommandInput}
|
|
36
|
+
* @returns {@link ListPendingInvitationResourcesCommandOutput}
|
|
30
37
|
* @see {@link ListPendingInvitationResourcesCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link ListPendingInvitationResourcesCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link RAMClientResolvedConfig | config} for RAMClient's `config` shape.
|
|
@@ -63,11 +70,20 @@ export interface ListPendingInvitationResourcesCommandOutput extends ListPending
|
|
|
63
70
|
export declare class ListPendingInvitationResourcesCommand extends $Command<ListPendingInvitationResourcesCommandInput, ListPendingInvitationResourcesCommandOutput, RAMClientResolvedConfig> {
|
|
64
71
|
readonly input: ListPendingInvitationResourcesCommandInput;
|
|
65
72
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
73
|
+
/**
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
66
76
|
constructor(input: ListPendingInvitationResourcesCommandInput);
|
|
67
77
|
/**
|
|
68
78
|
* @internal
|
|
69
79
|
*/
|
|
70
80
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RAMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListPendingInvitationResourcesCommandInput, ListPendingInvitationResourcesCommandOutput>;
|
|
81
|
+
/**
|
|
82
|
+
* @internal
|
|
83
|
+
*/
|
|
71
84
|
private serialize;
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
72
88
|
private deserialize;
|
|
73
89
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListPermissionVersionsRequest, ListPermissionVersionsResponse } from "../models/models_0";
|
|
5
5
|
import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListPermissionVersionsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListPermissionVersionsCommandInput extends ListPermissionVersionsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListPermissionVersionsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListPermissionVersionsCommandOutput extends ListPermissionVersionsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the available versions of the specified RAM permission.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListPermissionVersionsCommandOutput extends ListPermissionVersi
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListPermissionVersionsCommandInput - {@link ListPermissionVersionsCommandInput}
|
|
34
|
+
* @returns {@link ListPermissionVersionsCommandOutput}
|
|
28
35
|
* @see {@link ListPermissionVersionsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListPermissionVersionsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link RAMClientResolvedConfig | config} for RAMClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface ListPermissionVersionsCommandOutput extends ListPermissionVersi
|
|
|
55
62
|
export declare class ListPermissionVersionsCommand extends $Command<ListPermissionVersionsCommandInput, ListPermissionVersionsCommandOutput, RAMClientResolvedConfig> {
|
|
56
63
|
readonly input: ListPermissionVersionsCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: ListPermissionVersionsCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RAMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListPermissionVersionsCommandInput, ListPermissionVersionsCommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListPermissionsRequest, ListPermissionsResponse } from "../models/models_0";
|
|
5
5
|
import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListPermissionsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListPermissionsCommandInput extends ListPermissionsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListPermissionsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListPermissionsCommandOutput extends ListPermissionsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves a list of available RAM permissions that you can use for the supported
|
|
18
23
|
* resource types. </p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ListPermissionsCommandOutput extends ListPermissionsResponse, _
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ListPermissionsCommandInput - {@link ListPermissionsCommandInput}
|
|
35
|
+
* @returns {@link ListPermissionsCommandOutput}
|
|
29
36
|
* @see {@link ListPermissionsCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ListPermissionsCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link RAMClientResolvedConfig | config} for RAMClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface ListPermissionsCommandOutput extends ListPermissionsResponse, _
|
|
|
50
57
|
export declare class ListPermissionsCommand extends $Command<ListPermissionsCommandInput, ListPermissionsCommandOutput, RAMClientResolvedConfig> {
|
|
51
58
|
readonly input: ListPermissionsCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: ListPermissionsCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RAMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListPermissionsCommandInput, ListPermissionsCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListPrincipalsRequest, ListPrincipalsResponse } from "../models/models_0";
|
|
5
5
|
import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListPrincipalsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListPrincipalsCommandInput extends ListPrincipalsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListPrincipalsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListPrincipalsCommandOutput extends ListPrincipalsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the principals that you are sharing resources with or that are sharing resources
|
|
18
23
|
* with you.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ListPrincipalsCommandOutput extends ListPrincipalsResponse, __M
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ListPrincipalsCommandInput - {@link ListPrincipalsCommandInput}
|
|
35
|
+
* @returns {@link ListPrincipalsCommandOutput}
|
|
29
36
|
* @see {@link ListPrincipalsCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ListPrincipalsCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link RAMClientResolvedConfig | config} for RAMClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface ListPrincipalsCommandOutput extends ListPrincipalsResponse, __M
|
|
|
53
60
|
export declare class ListPrincipalsCommand extends $Command<ListPrincipalsCommandInput, ListPrincipalsCommandOutput, RAMClientResolvedConfig> {
|
|
54
61
|
readonly input: ListPrincipalsCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: ListPrincipalsCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RAMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListPrincipalsCommandInput, ListPrincipalsCommandOutput>;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
61
74
|
private serialize;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
62
78
|
private deserialize;
|
|
63
79
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListResourceSharePermissionsRequest, ListResourceSharePermissionsResponse } from "../models/models_0";
|
|
5
5
|
import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListResourceSharePermissionsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListResourceSharePermissionsCommandInput extends ListResourceSharePermissionsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListResourceSharePermissionsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListResourceSharePermissionsCommandOutput extends ListResourceSharePermissionsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the RAM permissions that are associated with a resource share.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListResourceSharePermissionsCommandOutput extends ListResourceS
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListResourceSharePermissionsCommandInput - {@link ListResourceSharePermissionsCommandInput}
|
|
34
|
+
* @returns {@link ListResourceSharePermissionsCommandOutput}
|
|
28
35
|
* @see {@link ListResourceSharePermissionsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListResourceSharePermissionsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link RAMClientResolvedConfig | config} for RAMClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface ListResourceSharePermissionsCommandOutput extends ListResourceS
|
|
|
55
62
|
export declare class ListResourceSharePermissionsCommand extends $Command<ListResourceSharePermissionsCommandInput, ListResourceSharePermissionsCommandOutput, RAMClientResolvedConfig> {
|
|
56
63
|
readonly input: ListResourceSharePermissionsCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: ListResourceSharePermissionsCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RAMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListResourceSharePermissionsCommandInput, ListResourceSharePermissionsCommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListResourceTypesRequest, ListResourceTypesResponse } from "../models/models_0";
|
|
5
5
|
import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListResourceTypesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListResourceTypesCommandInput extends ListResourceTypesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListResourceTypesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListResourceTypesCommandOutput extends ListResourceTypesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the resource types that can be shared by RAM.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListResourceTypesCommandOutput extends ListResourceTypesRespons
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListResourceTypesCommandInput - {@link ListResourceTypesCommandInput}
|
|
34
|
+
* @returns {@link ListResourceTypesCommandOutput}
|
|
28
35
|
* @see {@link ListResourceTypesCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListResourceTypesCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link RAMClientResolvedConfig | config} for RAMClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface ListResourceTypesCommandOutput extends ListResourceTypesRespons
|
|
|
46
53
|
export declare class ListResourceTypesCommand extends $Command<ListResourceTypesCommandInput, ListResourceTypesCommandOutput, RAMClientResolvedConfig> {
|
|
47
54
|
readonly input: ListResourceTypesCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: ListResourceTypesCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RAMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListResourceTypesCommandInput, ListResourceTypesCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListResourcesRequest, ListResourcesResponse } from "../models/models_0";
|
|
5
5
|
import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListResourcesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListResourcesCommandInput extends ListResourcesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListResourcesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListResourcesCommandOutput extends ListResourcesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the resources that you added to a resource share or the resources that are shared with
|
|
18
23
|
* you.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ListResourcesCommandOutput extends ListResourcesResponse, __Met
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ListResourcesCommandInput - {@link ListResourcesCommandInput}
|
|
35
|
+
* @returns {@link ListResourcesCommandOutput}
|
|
29
36
|
* @see {@link ListResourcesCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ListResourcesCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link RAMClientResolvedConfig | config} for RAMClient's `config` shape.
|
|
@@ -56,11 +63,20 @@ export interface ListResourcesCommandOutput extends ListResourcesResponse, __Met
|
|
|
56
63
|
export declare class ListResourcesCommand extends $Command<ListResourcesCommandInput, ListResourcesCommandOutput, RAMClientResolvedConfig> {
|
|
57
64
|
readonly input: ListResourcesCommandInput;
|
|
58
65
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
59
69
|
constructor(input: ListResourcesCommandInput);
|
|
60
70
|
/**
|
|
61
71
|
* @internal
|
|
62
72
|
*/
|
|
63
73
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RAMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListResourcesCommandInput, ListResourcesCommandOutput>;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
64
77
|
private serialize;
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
65
81
|
private deserialize;
|
|
66
82
|
}
|