@aws-sdk/client-ram 3.169.0 → 3.171.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/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/RAM.d.ts +441 -130
- package/dist-types/ts3.4/RAMClient.d.ts +253 -98
- package/dist-types/ts3.4/commands/AcceptResourceShareInvitationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/AssociateResourceShareCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/AssociateResourceSharePermissionCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/CreateResourceShareCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DeleteResourceShareCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DisassociateResourceShareCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DisassociateResourceSharePermissionCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/EnableSharingWithAwsOrganizationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/GetPermissionCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/GetResourcePoliciesCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/GetResourceShareAssociationsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/GetResourceShareInvitationsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/GetResourceSharesCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListPendingInvitationResourcesCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListPermissionVersionsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListPermissionsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListPrincipalsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListResourceSharePermissionsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListResourceTypesCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListResourcesCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/PromoteResourceShareCreatedFromPolicyCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/RejectResourceShareInvitationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdateResourceShareCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/index.d.ts +25 -25
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/RAMServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +714 -833
- package/dist-types/ts3.4/pagination/GetResourcePoliciesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/GetResourceShareAssociationsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/GetResourceShareInvitationsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/GetResourceSharesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
- package/dist-types/ts3.4/pagination/ListPendingInvitationResourcesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListPermissionVersionsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListPermissionsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListPrincipalsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListResourceSharePermissionsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListResourceTypesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListResourcesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +12 -12
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +305 -77
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/package.json +34 -34
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DisassociateResourceShareRequest,
|
|
10
|
+
DisassociateResourceShareResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
RAMClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../RAMClient";
|
|
17
|
+
export interface DisassociateResourceShareCommandInput
|
|
18
|
+
extends DisassociateResourceShareRequest {}
|
|
19
|
+
export interface DisassociateResourceShareCommandOutput
|
|
20
|
+
extends DisassociateResourceShareResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DisassociateResourceShareCommand extends $Command<
|
|
23
|
+
DisassociateResourceShareCommandInput,
|
|
24
|
+
DisassociateResourceShareCommandOutput,
|
|
25
|
+
RAMClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DisassociateResourceShareCommandInput;
|
|
28
|
+
constructor(input: DisassociateResourceShareCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: RAMClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DisassociateResourceShareCommandInput,
|
|
35
|
+
DisassociateResourceShareCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DisassociateResourceSharePermissionRequest,
|
|
10
|
+
DisassociateResourceSharePermissionResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
RAMClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../RAMClient";
|
|
17
|
+
export interface DisassociateResourceSharePermissionCommandInput
|
|
18
|
+
extends DisassociateResourceSharePermissionRequest {}
|
|
19
|
+
export interface DisassociateResourceSharePermissionCommandOutput
|
|
20
|
+
extends DisassociateResourceSharePermissionResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DisassociateResourceSharePermissionCommand extends $Command<
|
|
23
|
+
DisassociateResourceSharePermissionCommandInput,
|
|
24
|
+
DisassociateResourceSharePermissionCommandOutput,
|
|
25
|
+
RAMClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DisassociateResourceSharePermissionCommandInput;
|
|
28
|
+
constructor(input: DisassociateResourceSharePermissionCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: RAMClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DisassociateResourceSharePermissionCommandInput,
|
|
35
|
+
DisassociateResourceSharePermissionCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
EnableSharingWithAwsOrganizationRequest,
|
|
10
|
+
EnableSharingWithAwsOrganizationResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
RAMClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../RAMClient";
|
|
17
|
+
export interface EnableSharingWithAwsOrganizationCommandInput
|
|
18
|
+
extends EnableSharingWithAwsOrganizationRequest {}
|
|
19
|
+
export interface EnableSharingWithAwsOrganizationCommandOutput
|
|
20
|
+
extends EnableSharingWithAwsOrganizationResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class EnableSharingWithAwsOrganizationCommand extends $Command<
|
|
23
|
+
EnableSharingWithAwsOrganizationCommandInput,
|
|
24
|
+
EnableSharingWithAwsOrganizationCommandOutput,
|
|
25
|
+
RAMClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: EnableSharingWithAwsOrganizationCommandInput;
|
|
28
|
+
constructor(input: EnableSharingWithAwsOrganizationCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: RAMClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
EnableSharingWithAwsOrganizationCommandInput,
|
|
35
|
+
EnableSharingWithAwsOrganizationCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
GetPermissionRequest,
|
|
10
|
+
GetPermissionResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
RAMClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../RAMClient";
|
|
17
|
+
export interface GetPermissionCommandInput extends GetPermissionRequest {}
|
|
18
|
+
export interface GetPermissionCommandOutput
|
|
19
|
+
extends GetPermissionResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class GetPermissionCommand extends $Command<
|
|
22
|
+
GetPermissionCommandInput,
|
|
23
|
+
GetPermissionCommandOutput,
|
|
24
|
+
RAMClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: GetPermissionCommandInput;
|
|
27
|
+
constructor(input: GetPermissionCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: RAMClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<GetPermissionCommandInput, GetPermissionCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
GetResourcePoliciesRequest,
|
|
10
|
+
GetResourcePoliciesResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
RAMClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../RAMClient";
|
|
17
|
+
export interface GetResourcePoliciesCommandInput
|
|
18
|
+
extends GetResourcePoliciesRequest {}
|
|
19
|
+
export interface GetResourcePoliciesCommandOutput
|
|
20
|
+
extends GetResourcePoliciesResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class GetResourcePoliciesCommand extends $Command<
|
|
23
|
+
GetResourcePoliciesCommandInput,
|
|
24
|
+
GetResourcePoliciesCommandOutput,
|
|
25
|
+
RAMClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetResourcePoliciesCommandInput;
|
|
28
|
+
constructor(input: GetResourcePoliciesCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: RAMClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<GetResourcePoliciesCommandInput, GetResourcePoliciesCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
GetResourceShareAssociationsRequest,
|
|
10
|
+
GetResourceShareAssociationsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
RAMClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../RAMClient";
|
|
17
|
+
export interface GetResourceShareAssociationsCommandInput
|
|
18
|
+
extends GetResourceShareAssociationsRequest {}
|
|
19
|
+
export interface GetResourceShareAssociationsCommandOutput
|
|
20
|
+
extends GetResourceShareAssociationsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class GetResourceShareAssociationsCommand extends $Command<
|
|
23
|
+
GetResourceShareAssociationsCommandInput,
|
|
24
|
+
GetResourceShareAssociationsCommandOutput,
|
|
25
|
+
RAMClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetResourceShareAssociationsCommandInput;
|
|
28
|
+
constructor(input: GetResourceShareAssociationsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: RAMClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
GetResourceShareAssociationsCommandInput,
|
|
35
|
+
GetResourceShareAssociationsCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
GetResourceShareInvitationsRequest,
|
|
10
|
+
GetResourceShareInvitationsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
RAMClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../RAMClient";
|
|
17
|
+
export interface GetResourceShareInvitationsCommandInput
|
|
18
|
+
extends GetResourceShareInvitationsRequest {}
|
|
19
|
+
export interface GetResourceShareInvitationsCommandOutput
|
|
20
|
+
extends GetResourceShareInvitationsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class GetResourceShareInvitationsCommand extends $Command<
|
|
23
|
+
GetResourceShareInvitationsCommandInput,
|
|
24
|
+
GetResourceShareInvitationsCommandOutput,
|
|
25
|
+
RAMClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetResourceShareInvitationsCommandInput;
|
|
28
|
+
constructor(input: GetResourceShareInvitationsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: RAMClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
GetResourceShareInvitationsCommandInput,
|
|
35
|
+
GetResourceShareInvitationsCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
GetResourceSharesRequest,
|
|
10
|
+
GetResourceSharesResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
RAMClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../RAMClient";
|
|
17
|
+
export interface GetResourceSharesCommandInput
|
|
18
|
+
extends GetResourceSharesRequest {}
|
|
19
|
+
export interface GetResourceSharesCommandOutput
|
|
20
|
+
extends GetResourceSharesResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class GetResourceSharesCommand extends $Command<
|
|
23
|
+
GetResourceSharesCommandInput,
|
|
24
|
+
GetResourceSharesCommandOutput,
|
|
25
|
+
RAMClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetResourceSharesCommandInput;
|
|
28
|
+
constructor(input: GetResourceSharesCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: RAMClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<GetResourceSharesCommandInput, GetResourceSharesCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ListPendingInvitationResourcesRequest,
|
|
10
|
+
ListPendingInvitationResourcesResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
RAMClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../RAMClient";
|
|
17
|
+
export interface ListPendingInvitationResourcesCommandInput
|
|
18
|
+
extends ListPendingInvitationResourcesRequest {}
|
|
19
|
+
export interface ListPendingInvitationResourcesCommandOutput
|
|
20
|
+
extends ListPendingInvitationResourcesResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListPendingInvitationResourcesCommand extends $Command<
|
|
23
|
+
ListPendingInvitationResourcesCommandInput,
|
|
24
|
+
ListPendingInvitationResourcesCommandOutput,
|
|
25
|
+
RAMClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListPendingInvitationResourcesCommandInput;
|
|
28
|
+
constructor(input: ListPendingInvitationResourcesCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: RAMClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
ListPendingInvitationResourcesCommandInput,
|
|
35
|
+
ListPendingInvitationResourcesCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ListPermissionVersionsRequest,
|
|
10
|
+
ListPermissionVersionsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
RAMClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../RAMClient";
|
|
17
|
+
export interface ListPermissionVersionsCommandInput
|
|
18
|
+
extends ListPermissionVersionsRequest {}
|
|
19
|
+
export interface ListPermissionVersionsCommandOutput
|
|
20
|
+
extends ListPermissionVersionsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListPermissionVersionsCommand extends $Command<
|
|
23
|
+
ListPermissionVersionsCommandInput,
|
|
24
|
+
ListPermissionVersionsCommandOutput,
|
|
25
|
+
RAMClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListPermissionVersionsCommandInput;
|
|
28
|
+
constructor(input: ListPermissionVersionsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: RAMClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
ListPermissionVersionsCommandInput,
|
|
35
|
+
ListPermissionVersionsCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ListPermissionsRequest,
|
|
10
|
+
ListPermissionsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
RAMClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../RAMClient";
|
|
17
|
+
export interface ListPermissionsCommandInput extends ListPermissionsRequest {}
|
|
18
|
+
export interface ListPermissionsCommandOutput
|
|
19
|
+
extends ListPermissionsResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class ListPermissionsCommand extends $Command<
|
|
22
|
+
ListPermissionsCommandInput,
|
|
23
|
+
ListPermissionsCommandOutput,
|
|
24
|
+
RAMClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: ListPermissionsCommandInput;
|
|
27
|
+
constructor(input: ListPermissionsCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: RAMClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<ListPermissionsCommandInput, ListPermissionsCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|