@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,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
GetResourcePoliciesCommandInput,
|
|
4
|
+
GetResourcePoliciesCommandOutput,
|
|
5
|
+
} from "../commands/GetResourcePoliciesCommand";
|
|
6
|
+
import { RAMPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateGetResourcePolicies(
|
|
8
|
+
config: RAMPaginationConfiguration,
|
|
9
|
+
input: GetResourcePoliciesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<GetResourcePoliciesCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
GetResourceShareAssociationsCommandInput,
|
|
4
|
+
GetResourceShareAssociationsCommandOutput,
|
|
5
|
+
} from "../commands/GetResourceShareAssociationsCommand";
|
|
6
|
+
import { RAMPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateGetResourceShareAssociations(
|
|
8
|
+
config: RAMPaginationConfiguration,
|
|
9
|
+
input: GetResourceShareAssociationsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<GetResourceShareAssociationsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
GetResourceShareInvitationsCommandInput,
|
|
4
|
+
GetResourceShareInvitationsCommandOutput,
|
|
5
|
+
} from "../commands/GetResourceShareInvitationsCommand";
|
|
6
|
+
import { RAMPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateGetResourceShareInvitations(
|
|
8
|
+
config: RAMPaginationConfiguration,
|
|
9
|
+
input: GetResourceShareInvitationsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<GetResourceShareInvitationsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
GetResourceSharesCommandInput,
|
|
4
|
+
GetResourceSharesCommandOutput,
|
|
5
|
+
} from "../commands/GetResourceSharesCommand";
|
|
6
|
+
import { RAMPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateGetResourceShares(
|
|
8
|
+
config: RAMPaginationConfiguration,
|
|
9
|
+
input: GetResourceSharesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<GetResourceSharesCommandOutput>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
-
import { RAM } from "../RAM";
|
|
3
|
-
import { RAMClient } from "../RAMClient";
|
|
4
|
-
export interface RAMPaginationConfiguration extends PaginationConfiguration {
|
|
5
|
-
|
|
6
|
-
}
|
|
1
|
+
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { RAM } from "../RAM";
|
|
3
|
+
import { RAMClient } from "../RAMClient";
|
|
4
|
+
export interface RAMPaginationConfiguration extends PaginationConfiguration {
|
|
5
|
+
client: RAM | RAMClient;
|
|
6
|
+
}
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListPendingInvitationResourcesCommandInput,
|
|
4
|
+
ListPendingInvitationResourcesCommandOutput,
|
|
5
|
+
} from "../commands/ListPendingInvitationResourcesCommand";
|
|
6
|
+
import { RAMPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListPendingInvitationResources(
|
|
8
|
+
config: RAMPaginationConfiguration,
|
|
9
|
+
input: ListPendingInvitationResourcesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListPendingInvitationResourcesCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListPermissionVersionsCommandInput,
|
|
4
|
+
ListPermissionVersionsCommandOutput,
|
|
5
|
+
} from "../commands/ListPermissionVersionsCommand";
|
|
6
|
+
import { RAMPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListPermissionVersions(
|
|
8
|
+
config: RAMPaginationConfiguration,
|
|
9
|
+
input: ListPermissionVersionsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListPermissionVersionsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListPermissionsCommandInput,
|
|
4
|
+
ListPermissionsCommandOutput,
|
|
5
|
+
} from "../commands/ListPermissionsCommand";
|
|
6
|
+
import { RAMPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListPermissions(
|
|
8
|
+
config: RAMPaginationConfiguration,
|
|
9
|
+
input: ListPermissionsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListPermissionsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListPrincipalsCommandInput,
|
|
4
|
+
ListPrincipalsCommandOutput,
|
|
5
|
+
} from "../commands/ListPrincipalsCommand";
|
|
6
|
+
import { RAMPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListPrincipals(
|
|
8
|
+
config: RAMPaginationConfiguration,
|
|
9
|
+
input: ListPrincipalsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListPrincipalsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListResourceSharePermissionsCommandInput,
|
|
4
|
+
ListResourceSharePermissionsCommandOutput,
|
|
5
|
+
} from "../commands/ListResourceSharePermissionsCommand";
|
|
6
|
+
import { RAMPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListResourceSharePermissions(
|
|
8
|
+
config: RAMPaginationConfiguration,
|
|
9
|
+
input: ListResourceSharePermissionsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListResourceSharePermissionsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListResourceTypesCommandInput,
|
|
4
|
+
ListResourceTypesCommandOutput,
|
|
5
|
+
} from "../commands/ListResourceTypesCommand";
|
|
6
|
+
import { RAMPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListResourceTypes(
|
|
8
|
+
config: RAMPaginationConfiguration,
|
|
9
|
+
input: ListResourceTypesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListResourceTypesCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListResourcesCommandInput,
|
|
4
|
+
ListResourcesCommandOutput,
|
|
5
|
+
} from "../commands/ListResourcesCommand";
|
|
6
|
+
import { RAMPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListResources(
|
|
8
|
+
config: RAMPaginationConfiguration,
|
|
9
|
+
input: ListResourcesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListResourcesCommandOutput>;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
export * from "./GetResourcePoliciesPaginator";
|
|
2
|
-
export * from "./GetResourceShareAssociationsPaginator";
|
|
3
|
-
export * from "./GetResourceShareInvitationsPaginator";
|
|
4
|
-
export * from "./GetResourceSharesPaginator";
|
|
5
|
-
export * from "./Interfaces";
|
|
6
|
-
export * from "./ListPendingInvitationResourcesPaginator";
|
|
7
|
-
export * from "./ListPermissionVersionsPaginator";
|
|
8
|
-
export * from "./ListPermissionsPaginator";
|
|
9
|
-
export * from "./ListPrincipalsPaginator";
|
|
10
|
-
export * from "./ListResourceSharePermissionsPaginator";
|
|
11
|
-
export * from "./ListResourceTypesPaginator";
|
|
12
|
-
export * from "./ListResourcesPaginator";
|
|
1
|
+
export * from "./GetResourcePoliciesPaginator";
|
|
2
|
+
export * from "./GetResourceShareAssociationsPaginator";
|
|
3
|
+
export * from "./GetResourceShareInvitationsPaginator";
|
|
4
|
+
export * from "./GetResourceSharesPaginator";
|
|
5
|
+
export * from "./Interfaces";
|
|
6
|
+
export * from "./ListPendingInvitationResourcesPaginator";
|
|
7
|
+
export * from "./ListPermissionVersionsPaginator";
|
|
8
|
+
export * from "./ListPermissionsPaginator";
|
|
9
|
+
export * from "./ListPrincipalsPaginator";
|
|
10
|
+
export * from "./ListResourceSharePermissionsPaginator";
|
|
11
|
+
export * from "./ListResourceTypesPaginator";
|
|
12
|
+
export * from "./ListResourcesPaginator";
|
|
@@ -1,77 +1,305 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
import {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
import {
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
import {
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
1
|
+
import {
|
|
2
|
+
HttpRequest as __HttpRequest,
|
|
3
|
+
HttpResponse as __HttpResponse,
|
|
4
|
+
} from "@aws-sdk/protocol-http";
|
|
5
|
+
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
6
|
+
import {
|
|
7
|
+
AcceptResourceShareInvitationCommandInput,
|
|
8
|
+
AcceptResourceShareInvitationCommandOutput,
|
|
9
|
+
} from "../commands/AcceptResourceShareInvitationCommand";
|
|
10
|
+
import {
|
|
11
|
+
AssociateResourceShareCommandInput,
|
|
12
|
+
AssociateResourceShareCommandOutput,
|
|
13
|
+
} from "../commands/AssociateResourceShareCommand";
|
|
14
|
+
import {
|
|
15
|
+
AssociateResourceSharePermissionCommandInput,
|
|
16
|
+
AssociateResourceSharePermissionCommandOutput,
|
|
17
|
+
} from "../commands/AssociateResourceSharePermissionCommand";
|
|
18
|
+
import {
|
|
19
|
+
CreateResourceShareCommandInput,
|
|
20
|
+
CreateResourceShareCommandOutput,
|
|
21
|
+
} from "../commands/CreateResourceShareCommand";
|
|
22
|
+
import {
|
|
23
|
+
DeleteResourceShareCommandInput,
|
|
24
|
+
DeleteResourceShareCommandOutput,
|
|
25
|
+
} from "../commands/DeleteResourceShareCommand";
|
|
26
|
+
import {
|
|
27
|
+
DisassociateResourceShareCommandInput,
|
|
28
|
+
DisassociateResourceShareCommandOutput,
|
|
29
|
+
} from "../commands/DisassociateResourceShareCommand";
|
|
30
|
+
import {
|
|
31
|
+
DisassociateResourceSharePermissionCommandInput,
|
|
32
|
+
DisassociateResourceSharePermissionCommandOutput,
|
|
33
|
+
} from "../commands/DisassociateResourceSharePermissionCommand";
|
|
34
|
+
import {
|
|
35
|
+
EnableSharingWithAwsOrganizationCommandInput,
|
|
36
|
+
EnableSharingWithAwsOrganizationCommandOutput,
|
|
37
|
+
} from "../commands/EnableSharingWithAwsOrganizationCommand";
|
|
38
|
+
import {
|
|
39
|
+
GetPermissionCommandInput,
|
|
40
|
+
GetPermissionCommandOutput,
|
|
41
|
+
} from "../commands/GetPermissionCommand";
|
|
42
|
+
import {
|
|
43
|
+
GetResourcePoliciesCommandInput,
|
|
44
|
+
GetResourcePoliciesCommandOutput,
|
|
45
|
+
} from "../commands/GetResourcePoliciesCommand";
|
|
46
|
+
import {
|
|
47
|
+
GetResourceShareAssociationsCommandInput,
|
|
48
|
+
GetResourceShareAssociationsCommandOutput,
|
|
49
|
+
} from "../commands/GetResourceShareAssociationsCommand";
|
|
50
|
+
import {
|
|
51
|
+
GetResourceShareInvitationsCommandInput,
|
|
52
|
+
GetResourceShareInvitationsCommandOutput,
|
|
53
|
+
} from "../commands/GetResourceShareInvitationsCommand";
|
|
54
|
+
import {
|
|
55
|
+
GetResourceSharesCommandInput,
|
|
56
|
+
GetResourceSharesCommandOutput,
|
|
57
|
+
} from "../commands/GetResourceSharesCommand";
|
|
58
|
+
import {
|
|
59
|
+
ListPendingInvitationResourcesCommandInput,
|
|
60
|
+
ListPendingInvitationResourcesCommandOutput,
|
|
61
|
+
} from "../commands/ListPendingInvitationResourcesCommand";
|
|
62
|
+
import {
|
|
63
|
+
ListPermissionsCommandInput,
|
|
64
|
+
ListPermissionsCommandOutput,
|
|
65
|
+
} from "../commands/ListPermissionsCommand";
|
|
66
|
+
import {
|
|
67
|
+
ListPermissionVersionsCommandInput,
|
|
68
|
+
ListPermissionVersionsCommandOutput,
|
|
69
|
+
} from "../commands/ListPermissionVersionsCommand";
|
|
70
|
+
import {
|
|
71
|
+
ListPrincipalsCommandInput,
|
|
72
|
+
ListPrincipalsCommandOutput,
|
|
73
|
+
} from "../commands/ListPrincipalsCommand";
|
|
74
|
+
import {
|
|
75
|
+
ListResourcesCommandInput,
|
|
76
|
+
ListResourcesCommandOutput,
|
|
77
|
+
} from "../commands/ListResourcesCommand";
|
|
78
|
+
import {
|
|
79
|
+
ListResourceSharePermissionsCommandInput,
|
|
80
|
+
ListResourceSharePermissionsCommandOutput,
|
|
81
|
+
} from "../commands/ListResourceSharePermissionsCommand";
|
|
82
|
+
import {
|
|
83
|
+
ListResourceTypesCommandInput,
|
|
84
|
+
ListResourceTypesCommandOutput,
|
|
85
|
+
} from "../commands/ListResourceTypesCommand";
|
|
86
|
+
import {
|
|
87
|
+
PromoteResourceShareCreatedFromPolicyCommandInput,
|
|
88
|
+
PromoteResourceShareCreatedFromPolicyCommandOutput,
|
|
89
|
+
} from "../commands/PromoteResourceShareCreatedFromPolicyCommand";
|
|
90
|
+
import {
|
|
91
|
+
RejectResourceShareInvitationCommandInput,
|
|
92
|
+
RejectResourceShareInvitationCommandOutput,
|
|
93
|
+
} from "../commands/RejectResourceShareInvitationCommand";
|
|
94
|
+
import {
|
|
95
|
+
TagResourceCommandInput,
|
|
96
|
+
TagResourceCommandOutput,
|
|
97
|
+
} from "../commands/TagResourceCommand";
|
|
98
|
+
import {
|
|
99
|
+
UntagResourceCommandInput,
|
|
100
|
+
UntagResourceCommandOutput,
|
|
101
|
+
} from "../commands/UntagResourceCommand";
|
|
102
|
+
import {
|
|
103
|
+
UpdateResourceShareCommandInput,
|
|
104
|
+
UpdateResourceShareCommandOutput,
|
|
105
|
+
} from "../commands/UpdateResourceShareCommand";
|
|
106
|
+
export declare const serializeAws_restJson1AcceptResourceShareInvitationCommand: (
|
|
107
|
+
input: AcceptResourceShareInvitationCommandInput,
|
|
108
|
+
context: __SerdeContext
|
|
109
|
+
) => Promise<__HttpRequest>;
|
|
110
|
+
export declare const serializeAws_restJson1AssociateResourceShareCommand: (
|
|
111
|
+
input: AssociateResourceShareCommandInput,
|
|
112
|
+
context: __SerdeContext
|
|
113
|
+
) => Promise<__HttpRequest>;
|
|
114
|
+
export declare const serializeAws_restJson1AssociateResourceSharePermissionCommand: (
|
|
115
|
+
input: AssociateResourceSharePermissionCommandInput,
|
|
116
|
+
context: __SerdeContext
|
|
117
|
+
) => Promise<__HttpRequest>;
|
|
118
|
+
export declare const serializeAws_restJson1CreateResourceShareCommand: (
|
|
119
|
+
input: CreateResourceShareCommandInput,
|
|
120
|
+
context: __SerdeContext
|
|
121
|
+
) => Promise<__HttpRequest>;
|
|
122
|
+
export declare const serializeAws_restJson1DeleteResourceShareCommand: (
|
|
123
|
+
input: DeleteResourceShareCommandInput,
|
|
124
|
+
context: __SerdeContext
|
|
125
|
+
) => Promise<__HttpRequest>;
|
|
126
|
+
export declare const serializeAws_restJson1DisassociateResourceShareCommand: (
|
|
127
|
+
input: DisassociateResourceShareCommandInput,
|
|
128
|
+
context: __SerdeContext
|
|
129
|
+
) => Promise<__HttpRequest>;
|
|
130
|
+
export declare const serializeAws_restJson1DisassociateResourceSharePermissionCommand: (
|
|
131
|
+
input: DisassociateResourceSharePermissionCommandInput,
|
|
132
|
+
context: __SerdeContext
|
|
133
|
+
) => Promise<__HttpRequest>;
|
|
134
|
+
export declare const serializeAws_restJson1EnableSharingWithAwsOrganizationCommand: (
|
|
135
|
+
input: EnableSharingWithAwsOrganizationCommandInput,
|
|
136
|
+
context: __SerdeContext
|
|
137
|
+
) => Promise<__HttpRequest>;
|
|
138
|
+
export declare const serializeAws_restJson1GetPermissionCommand: (
|
|
139
|
+
input: GetPermissionCommandInput,
|
|
140
|
+
context: __SerdeContext
|
|
141
|
+
) => Promise<__HttpRequest>;
|
|
142
|
+
export declare const serializeAws_restJson1GetResourcePoliciesCommand: (
|
|
143
|
+
input: GetResourcePoliciesCommandInput,
|
|
144
|
+
context: __SerdeContext
|
|
145
|
+
) => Promise<__HttpRequest>;
|
|
146
|
+
export declare const serializeAws_restJson1GetResourceShareAssociationsCommand: (
|
|
147
|
+
input: GetResourceShareAssociationsCommandInput,
|
|
148
|
+
context: __SerdeContext
|
|
149
|
+
) => Promise<__HttpRequest>;
|
|
150
|
+
export declare const serializeAws_restJson1GetResourceShareInvitationsCommand: (
|
|
151
|
+
input: GetResourceShareInvitationsCommandInput,
|
|
152
|
+
context: __SerdeContext
|
|
153
|
+
) => Promise<__HttpRequest>;
|
|
154
|
+
export declare const serializeAws_restJson1GetResourceSharesCommand: (
|
|
155
|
+
input: GetResourceSharesCommandInput,
|
|
156
|
+
context: __SerdeContext
|
|
157
|
+
) => Promise<__HttpRequest>;
|
|
158
|
+
export declare const serializeAws_restJson1ListPendingInvitationResourcesCommand: (
|
|
159
|
+
input: ListPendingInvitationResourcesCommandInput,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<__HttpRequest>;
|
|
162
|
+
export declare const serializeAws_restJson1ListPermissionsCommand: (
|
|
163
|
+
input: ListPermissionsCommandInput,
|
|
164
|
+
context: __SerdeContext
|
|
165
|
+
) => Promise<__HttpRequest>;
|
|
166
|
+
export declare const serializeAws_restJson1ListPermissionVersionsCommand: (
|
|
167
|
+
input: ListPermissionVersionsCommandInput,
|
|
168
|
+
context: __SerdeContext
|
|
169
|
+
) => Promise<__HttpRequest>;
|
|
170
|
+
export declare const serializeAws_restJson1ListPrincipalsCommand: (
|
|
171
|
+
input: ListPrincipalsCommandInput,
|
|
172
|
+
context: __SerdeContext
|
|
173
|
+
) => Promise<__HttpRequest>;
|
|
174
|
+
export declare const serializeAws_restJson1ListResourcesCommand: (
|
|
175
|
+
input: ListResourcesCommandInput,
|
|
176
|
+
context: __SerdeContext
|
|
177
|
+
) => Promise<__HttpRequest>;
|
|
178
|
+
export declare const serializeAws_restJson1ListResourceSharePermissionsCommand: (
|
|
179
|
+
input: ListResourceSharePermissionsCommandInput,
|
|
180
|
+
context: __SerdeContext
|
|
181
|
+
) => Promise<__HttpRequest>;
|
|
182
|
+
export declare const serializeAws_restJson1ListResourceTypesCommand: (
|
|
183
|
+
input: ListResourceTypesCommandInput,
|
|
184
|
+
context: __SerdeContext
|
|
185
|
+
) => Promise<__HttpRequest>;
|
|
186
|
+
export declare const serializeAws_restJson1PromoteResourceShareCreatedFromPolicyCommand: (
|
|
187
|
+
input: PromoteResourceShareCreatedFromPolicyCommandInput,
|
|
188
|
+
context: __SerdeContext
|
|
189
|
+
) => Promise<__HttpRequest>;
|
|
190
|
+
export declare const serializeAws_restJson1RejectResourceShareInvitationCommand: (
|
|
191
|
+
input: RejectResourceShareInvitationCommandInput,
|
|
192
|
+
context: __SerdeContext
|
|
193
|
+
) => Promise<__HttpRequest>;
|
|
194
|
+
export declare const serializeAws_restJson1TagResourceCommand: (
|
|
195
|
+
input: TagResourceCommandInput,
|
|
196
|
+
context: __SerdeContext
|
|
197
|
+
) => Promise<__HttpRequest>;
|
|
198
|
+
export declare const serializeAws_restJson1UntagResourceCommand: (
|
|
199
|
+
input: UntagResourceCommandInput,
|
|
200
|
+
context: __SerdeContext
|
|
201
|
+
) => Promise<__HttpRequest>;
|
|
202
|
+
export declare const serializeAws_restJson1UpdateResourceShareCommand: (
|
|
203
|
+
input: UpdateResourceShareCommandInput,
|
|
204
|
+
context: __SerdeContext
|
|
205
|
+
) => Promise<__HttpRequest>;
|
|
206
|
+
export declare const deserializeAws_restJson1AcceptResourceShareInvitationCommand: (
|
|
207
|
+
output: __HttpResponse,
|
|
208
|
+
context: __SerdeContext
|
|
209
|
+
) => Promise<AcceptResourceShareInvitationCommandOutput>;
|
|
210
|
+
export declare const deserializeAws_restJson1AssociateResourceShareCommand: (
|
|
211
|
+
output: __HttpResponse,
|
|
212
|
+
context: __SerdeContext
|
|
213
|
+
) => Promise<AssociateResourceShareCommandOutput>;
|
|
214
|
+
export declare const deserializeAws_restJson1AssociateResourceSharePermissionCommand: (
|
|
215
|
+
output: __HttpResponse,
|
|
216
|
+
context: __SerdeContext
|
|
217
|
+
) => Promise<AssociateResourceSharePermissionCommandOutput>;
|
|
218
|
+
export declare const deserializeAws_restJson1CreateResourceShareCommand: (
|
|
219
|
+
output: __HttpResponse,
|
|
220
|
+
context: __SerdeContext
|
|
221
|
+
) => Promise<CreateResourceShareCommandOutput>;
|
|
222
|
+
export declare const deserializeAws_restJson1DeleteResourceShareCommand: (
|
|
223
|
+
output: __HttpResponse,
|
|
224
|
+
context: __SerdeContext
|
|
225
|
+
) => Promise<DeleteResourceShareCommandOutput>;
|
|
226
|
+
export declare const deserializeAws_restJson1DisassociateResourceShareCommand: (
|
|
227
|
+
output: __HttpResponse,
|
|
228
|
+
context: __SerdeContext
|
|
229
|
+
) => Promise<DisassociateResourceShareCommandOutput>;
|
|
230
|
+
export declare const deserializeAws_restJson1DisassociateResourceSharePermissionCommand: (
|
|
231
|
+
output: __HttpResponse,
|
|
232
|
+
context: __SerdeContext
|
|
233
|
+
) => Promise<DisassociateResourceSharePermissionCommandOutput>;
|
|
234
|
+
export declare const deserializeAws_restJson1EnableSharingWithAwsOrganizationCommand: (
|
|
235
|
+
output: __HttpResponse,
|
|
236
|
+
context: __SerdeContext
|
|
237
|
+
) => Promise<EnableSharingWithAwsOrganizationCommandOutput>;
|
|
238
|
+
export declare const deserializeAws_restJson1GetPermissionCommand: (
|
|
239
|
+
output: __HttpResponse,
|
|
240
|
+
context: __SerdeContext
|
|
241
|
+
) => Promise<GetPermissionCommandOutput>;
|
|
242
|
+
export declare const deserializeAws_restJson1GetResourcePoliciesCommand: (
|
|
243
|
+
output: __HttpResponse,
|
|
244
|
+
context: __SerdeContext
|
|
245
|
+
) => Promise<GetResourcePoliciesCommandOutput>;
|
|
246
|
+
export declare const deserializeAws_restJson1GetResourceShareAssociationsCommand: (
|
|
247
|
+
output: __HttpResponse,
|
|
248
|
+
context: __SerdeContext
|
|
249
|
+
) => Promise<GetResourceShareAssociationsCommandOutput>;
|
|
250
|
+
export declare const deserializeAws_restJson1GetResourceShareInvitationsCommand: (
|
|
251
|
+
output: __HttpResponse,
|
|
252
|
+
context: __SerdeContext
|
|
253
|
+
) => Promise<GetResourceShareInvitationsCommandOutput>;
|
|
254
|
+
export declare const deserializeAws_restJson1GetResourceSharesCommand: (
|
|
255
|
+
output: __HttpResponse,
|
|
256
|
+
context: __SerdeContext
|
|
257
|
+
) => Promise<GetResourceSharesCommandOutput>;
|
|
258
|
+
export declare const deserializeAws_restJson1ListPendingInvitationResourcesCommand: (
|
|
259
|
+
output: __HttpResponse,
|
|
260
|
+
context: __SerdeContext
|
|
261
|
+
) => Promise<ListPendingInvitationResourcesCommandOutput>;
|
|
262
|
+
export declare const deserializeAws_restJson1ListPermissionsCommand: (
|
|
263
|
+
output: __HttpResponse,
|
|
264
|
+
context: __SerdeContext
|
|
265
|
+
) => Promise<ListPermissionsCommandOutput>;
|
|
266
|
+
export declare const deserializeAws_restJson1ListPermissionVersionsCommand: (
|
|
267
|
+
output: __HttpResponse,
|
|
268
|
+
context: __SerdeContext
|
|
269
|
+
) => Promise<ListPermissionVersionsCommandOutput>;
|
|
270
|
+
export declare const deserializeAws_restJson1ListPrincipalsCommand: (
|
|
271
|
+
output: __HttpResponse,
|
|
272
|
+
context: __SerdeContext
|
|
273
|
+
) => Promise<ListPrincipalsCommandOutput>;
|
|
274
|
+
export declare const deserializeAws_restJson1ListResourcesCommand: (
|
|
275
|
+
output: __HttpResponse,
|
|
276
|
+
context: __SerdeContext
|
|
277
|
+
) => Promise<ListResourcesCommandOutput>;
|
|
278
|
+
export declare const deserializeAws_restJson1ListResourceSharePermissionsCommand: (
|
|
279
|
+
output: __HttpResponse,
|
|
280
|
+
context: __SerdeContext
|
|
281
|
+
) => Promise<ListResourceSharePermissionsCommandOutput>;
|
|
282
|
+
export declare const deserializeAws_restJson1ListResourceTypesCommand: (
|
|
283
|
+
output: __HttpResponse,
|
|
284
|
+
context: __SerdeContext
|
|
285
|
+
) => Promise<ListResourceTypesCommandOutput>;
|
|
286
|
+
export declare const deserializeAws_restJson1PromoteResourceShareCreatedFromPolicyCommand: (
|
|
287
|
+
output: __HttpResponse,
|
|
288
|
+
context: __SerdeContext
|
|
289
|
+
) => Promise<PromoteResourceShareCreatedFromPolicyCommandOutput>;
|
|
290
|
+
export declare const deserializeAws_restJson1RejectResourceShareInvitationCommand: (
|
|
291
|
+
output: __HttpResponse,
|
|
292
|
+
context: __SerdeContext
|
|
293
|
+
) => Promise<RejectResourceShareInvitationCommandOutput>;
|
|
294
|
+
export declare const deserializeAws_restJson1TagResourceCommand: (
|
|
295
|
+
output: __HttpResponse,
|
|
296
|
+
context: __SerdeContext
|
|
297
|
+
) => Promise<TagResourceCommandOutput>;
|
|
298
|
+
export declare const deserializeAws_restJson1UntagResourceCommand: (
|
|
299
|
+
output: __HttpResponse,
|
|
300
|
+
context: __SerdeContext
|
|
301
|
+
) => Promise<UntagResourceCommandOutput>;
|
|
302
|
+
export declare const deserializeAws_restJson1UpdateResourceShareCommand: (
|
|
303
|
+
output: __HttpResponse,
|
|
304
|
+
context: __SerdeContext
|
|
305
|
+
) => Promise<UpdateResourceShareCommandOutput>;
|