@aws-sdk/client-ram 3.315.0 → 3.319.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/README.md +76 -5
- package/dist-cjs/RAM.js +47 -350
- package/dist-cjs/commands/CreatePermissionCommand.js +45 -0
- package/dist-cjs/commands/CreatePermissionVersionCommand.js +45 -0
- package/dist-cjs/commands/DeletePermissionCommand.js +45 -0
- package/dist-cjs/commands/DeletePermissionVersionCommand.js +45 -0
- package/dist-cjs/commands/ListPermissionAssociationsCommand.js +45 -0
- package/dist-cjs/commands/ListReplacePermissionAssociationsWorkCommand.js +45 -0
- package/dist-cjs/commands/PromotePermissionCreatedFromPolicyCommand.js +45 -0
- package/dist-cjs/commands/ReplacePermissionAssociationsCommand.js +45 -0
- package/dist-cjs/commands/SetDefaultPermissionVersionCommand.js +45 -0
- package/dist-cjs/commands/index.js +9 -0
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/models/models_0.js +104 -1
- package/dist-cjs/pagination/ListPermissionAssociationsPaginator.js +29 -0
- package/dist-cjs/pagination/ListReplacePermissionAssociationsWorkPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_restJson1.js +976 -129
- package/dist-es/RAM.js +47 -350
- package/dist-es/commands/CreatePermissionCommand.js +41 -0
- package/dist-es/commands/CreatePermissionVersionCommand.js +41 -0
- package/dist-es/commands/DeletePermissionCommand.js +41 -0
- package/dist-es/commands/DeletePermissionVersionCommand.js +41 -0
- package/dist-es/commands/ListPermissionAssociationsCommand.js +41 -0
- package/dist-es/commands/ListReplacePermissionAssociationsWorkCommand.js +41 -0
- package/dist-es/commands/PromotePermissionCreatedFromPolicyCommand.js +41 -0
- package/dist-es/commands/ReplacePermissionAssociationsCommand.js +41 -0
- package/dist-es/commands/SetDefaultPermissionVersionCommand.js +41 -0
- package/dist-es/commands/index.js +9 -0
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_0.js +97 -0
- package/dist-es/pagination/ListPermissionAssociationsPaginator.js +25 -0
- package/dist-es/pagination/ListReplacePermissionAssociationsWorkPaginator.js +25 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +949 -121
- package/dist-types/RAM.d.ts +114 -113
- package/dist-types/RAMClient.d.ts +15 -7
- package/dist-types/commands/AcceptResourceShareInvitationCommand.d.ts +16 -12
- package/dist-types/commands/AssociateResourceShareCommand.d.ts +19 -14
- package/dist-types/commands/AssociateResourceSharePermissionCommand.d.ts +9 -7
- package/dist-types/commands/CreatePermissionCommand.d.ts +109 -0
- package/dist-types/commands/CreatePermissionVersionCommand.d.ts +106 -0
- package/dist-types/commands/CreateResourceShareCommand.d.ts +19 -13
- package/dist-types/commands/DeletePermissionCommand.d.ts +91 -0
- package/dist-types/commands/DeletePermissionVersionCommand.d.ts +96 -0
- package/dist-types/commands/DeleteResourceShareCommand.d.ts +19 -14
- package/dist-types/commands/DisassociateResourceShareCommand.d.ts +19 -13
- package/dist-types/commands/DisassociateResourceSharePermissionCommand.d.ts +14 -11
- package/dist-types/commands/EnableSharingWithAwsOrganizationCommand.d.ts +14 -11
- package/dist-types/commands/GetPermissionCommand.d.ts +9 -7
- package/dist-types/commands/GetResourcePoliciesCommand.d.ts +10 -6
- package/dist-types/commands/GetResourceShareAssociationsCommand.d.ts +13 -8
- package/dist-types/commands/GetResourceShareInvitationsCommand.d.ts +14 -8
- package/dist-types/commands/GetResourceSharesCommand.d.ts +11 -6
- package/dist-types/commands/ListPendingInvitationResourcesCommand.d.ts +15 -9
- package/dist-types/commands/ListPermissionAssociationsCommand.d.ts +91 -0
- package/dist-types/commands/ListPermissionVersionsCommand.d.ts +11 -7
- package/dist-types/commands/ListPermissionsCommand.d.ts +9 -5
- package/dist-types/commands/ListPrincipalsCommand.d.ts +10 -6
- package/dist-types/commands/ListReplacePermissionAssociationsWorkCommand.d.ts +84 -0
- package/dist-types/commands/ListResourceSharePermissionsCommand.d.ts +11 -7
- package/dist-types/commands/ListResourceTypesCommand.d.ts +7 -4
- package/dist-types/commands/ListResourcesCommand.d.ts +11 -7
- package/dist-types/commands/PromotePermissionCreatedFromPolicyCommand.d.ts +119 -0
- package/dist-types/commands/PromoteResourceShareCreatedFromPolicyCommand.d.ts +34 -14
- package/dist-types/commands/RejectResourceShareInvitationCommand.d.ts +16 -12
- package/dist-types/commands/ReplacePermissionAssociationsCommand.d.ts +108 -0
- package/dist-types/commands/SetDefaultPermissionVersionCommand.d.ts +92 -0
- package/dist-types/commands/TagResourceCommand.d.ts +17 -11
- package/dist-types/commands/UntagResourceCommand.d.ts +14 -5
- package/dist-types/commands/UpdateResourceShareCommand.d.ts +13 -11
- package/dist-types/commands/index.d.ts +9 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +1286 -195
- package/dist-types/pagination/ListPermissionAssociationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListReplacePermissionAssociationsWorkPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +81 -0
- package/dist-types/ts3.4/RAM.d.ts +167 -1
- package/dist-types/ts3.4/RAMClient.d.ts +54 -0
- package/dist-types/ts3.4/commands/CreatePermissionCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/CreatePermissionVersionCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/DeletePermissionCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/DeletePermissionVersionCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListPermissionAssociationsCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListReplacePermissionAssociationsWorkCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/PromotePermissionCreatedFromPolicyCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ReplacePermissionAssociationsCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/SetDefaultPermissionVersionCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/index.d.ts +9 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +234 -19
- package/dist-types/ts3.4/pagination/ListPermissionAssociationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListReplacePermissionAssociationsWorkPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +108 -0
- package/package.json +8 -8
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
CreatePermissionVersionRequest,
|
|
11
|
+
CreatePermissionVersionResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
RAMClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../RAMClient";
|
|
18
|
+
export interface CreatePermissionVersionCommandInput
|
|
19
|
+
extends CreatePermissionVersionRequest {}
|
|
20
|
+
export interface CreatePermissionVersionCommandOutput
|
|
21
|
+
extends CreatePermissionVersionResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class CreatePermissionVersionCommand extends $Command<
|
|
24
|
+
CreatePermissionVersionCommandInput,
|
|
25
|
+
CreatePermissionVersionCommandOutput,
|
|
26
|
+
RAMClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreatePermissionVersionCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: CreatePermissionVersionCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: RAMClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
CreatePermissionVersionCommandInput,
|
|
37
|
+
CreatePermissionVersionCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
DeletePermissionRequest,
|
|
11
|
+
DeletePermissionResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
RAMClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../RAMClient";
|
|
18
|
+
export interface DeletePermissionCommandInput extends DeletePermissionRequest {}
|
|
19
|
+
export interface DeletePermissionCommandOutput
|
|
20
|
+
extends DeletePermissionResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DeletePermissionCommand extends $Command<
|
|
23
|
+
DeletePermissionCommandInput,
|
|
24
|
+
DeletePermissionCommandOutput,
|
|
25
|
+
RAMClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DeletePermissionCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
29
|
+
constructor(input: DeletePermissionCommandInput);
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: RAMClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<DeletePermissionCommandInput, DeletePermissionCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
DeletePermissionVersionRequest,
|
|
11
|
+
DeletePermissionVersionResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
RAMClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../RAMClient";
|
|
18
|
+
export interface DeletePermissionVersionCommandInput
|
|
19
|
+
extends DeletePermissionVersionRequest {}
|
|
20
|
+
export interface DeletePermissionVersionCommandOutput
|
|
21
|
+
extends DeletePermissionVersionResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class DeletePermissionVersionCommand extends $Command<
|
|
24
|
+
DeletePermissionVersionCommandInput,
|
|
25
|
+
DeletePermissionVersionCommandOutput,
|
|
26
|
+
RAMClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DeletePermissionVersionCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: DeletePermissionVersionCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: RAMClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DeletePermissionVersionCommandInput,
|
|
37
|
+
DeletePermissionVersionCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
ListPermissionAssociationsRequest,
|
|
11
|
+
ListPermissionAssociationsResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
RAMClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../RAMClient";
|
|
18
|
+
export interface ListPermissionAssociationsCommandInput
|
|
19
|
+
extends ListPermissionAssociationsRequest {}
|
|
20
|
+
export interface ListPermissionAssociationsCommandOutput
|
|
21
|
+
extends ListPermissionAssociationsResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class ListPermissionAssociationsCommand extends $Command<
|
|
24
|
+
ListPermissionAssociationsCommandInput,
|
|
25
|
+
ListPermissionAssociationsCommandOutput,
|
|
26
|
+
RAMClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListPermissionAssociationsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: ListPermissionAssociationsCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: RAMClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ListPermissionAssociationsCommandInput,
|
|
37
|
+
ListPermissionAssociationsCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
ListReplacePermissionAssociationsWorkRequest,
|
|
11
|
+
ListReplacePermissionAssociationsWorkResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
RAMClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../RAMClient";
|
|
18
|
+
export interface ListReplacePermissionAssociationsWorkCommandInput
|
|
19
|
+
extends ListReplacePermissionAssociationsWorkRequest {}
|
|
20
|
+
export interface ListReplacePermissionAssociationsWorkCommandOutput
|
|
21
|
+
extends ListReplacePermissionAssociationsWorkResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class ListReplacePermissionAssociationsWorkCommand extends $Command<
|
|
24
|
+
ListReplacePermissionAssociationsWorkCommandInput,
|
|
25
|
+
ListReplacePermissionAssociationsWorkCommandOutput,
|
|
26
|
+
RAMClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListReplacePermissionAssociationsWorkCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: ListReplacePermissionAssociationsWorkCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: RAMClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ListReplacePermissionAssociationsWorkCommandInput,
|
|
37
|
+
ListReplacePermissionAssociationsWorkCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
PromotePermissionCreatedFromPolicyRequest,
|
|
11
|
+
PromotePermissionCreatedFromPolicyResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
RAMClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../RAMClient";
|
|
18
|
+
export interface PromotePermissionCreatedFromPolicyCommandInput
|
|
19
|
+
extends PromotePermissionCreatedFromPolicyRequest {}
|
|
20
|
+
export interface PromotePermissionCreatedFromPolicyCommandOutput
|
|
21
|
+
extends PromotePermissionCreatedFromPolicyResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class PromotePermissionCreatedFromPolicyCommand extends $Command<
|
|
24
|
+
PromotePermissionCreatedFromPolicyCommandInput,
|
|
25
|
+
PromotePermissionCreatedFromPolicyCommandOutput,
|
|
26
|
+
RAMClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: PromotePermissionCreatedFromPolicyCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: PromotePermissionCreatedFromPolicyCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: RAMClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
PromotePermissionCreatedFromPolicyCommandInput,
|
|
37
|
+
PromotePermissionCreatedFromPolicyCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
ReplacePermissionAssociationsRequest,
|
|
11
|
+
ReplacePermissionAssociationsResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
RAMClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../RAMClient";
|
|
18
|
+
export interface ReplacePermissionAssociationsCommandInput
|
|
19
|
+
extends ReplacePermissionAssociationsRequest {}
|
|
20
|
+
export interface ReplacePermissionAssociationsCommandOutput
|
|
21
|
+
extends ReplacePermissionAssociationsResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class ReplacePermissionAssociationsCommand extends $Command<
|
|
24
|
+
ReplacePermissionAssociationsCommandInput,
|
|
25
|
+
ReplacePermissionAssociationsCommandOutput,
|
|
26
|
+
RAMClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ReplacePermissionAssociationsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: ReplacePermissionAssociationsCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: RAMClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ReplacePermissionAssociationsCommandInput,
|
|
37
|
+
ReplacePermissionAssociationsCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
SetDefaultPermissionVersionRequest,
|
|
11
|
+
SetDefaultPermissionVersionResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
RAMClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../RAMClient";
|
|
18
|
+
export interface SetDefaultPermissionVersionCommandInput
|
|
19
|
+
extends SetDefaultPermissionVersionRequest {}
|
|
20
|
+
export interface SetDefaultPermissionVersionCommandOutput
|
|
21
|
+
extends SetDefaultPermissionVersionResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class SetDefaultPermissionVersionCommand extends $Command<
|
|
24
|
+
SetDefaultPermissionVersionCommandInput,
|
|
25
|
+
SetDefaultPermissionVersionCommandOutput,
|
|
26
|
+
RAMClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: SetDefaultPermissionVersionCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: SetDefaultPermissionVersionCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: RAMClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
SetDefaultPermissionVersionCommandInput,
|
|
37
|
+
SetDefaultPermissionVersionCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
export * from "./AcceptResourceShareInvitationCommand";
|
|
2
2
|
export * from "./AssociateResourceShareCommand";
|
|
3
3
|
export * from "./AssociateResourceSharePermissionCommand";
|
|
4
|
+
export * from "./CreatePermissionCommand";
|
|
5
|
+
export * from "./CreatePermissionVersionCommand";
|
|
4
6
|
export * from "./CreateResourceShareCommand";
|
|
7
|
+
export * from "./DeletePermissionCommand";
|
|
8
|
+
export * from "./DeletePermissionVersionCommand";
|
|
5
9
|
export * from "./DeleteResourceShareCommand";
|
|
6
10
|
export * from "./DisassociateResourceShareCommand";
|
|
7
11
|
export * from "./DisassociateResourceSharePermissionCommand";
|
|
@@ -12,14 +16,19 @@ export * from "./GetResourceShareAssociationsCommand";
|
|
|
12
16
|
export * from "./GetResourceShareInvitationsCommand";
|
|
13
17
|
export * from "./GetResourceSharesCommand";
|
|
14
18
|
export * from "./ListPendingInvitationResourcesCommand";
|
|
19
|
+
export * from "./ListPermissionAssociationsCommand";
|
|
15
20
|
export * from "./ListPermissionVersionsCommand";
|
|
16
21
|
export * from "./ListPermissionsCommand";
|
|
17
22
|
export * from "./ListPrincipalsCommand";
|
|
23
|
+
export * from "./ListReplacePermissionAssociationsWorkCommand";
|
|
18
24
|
export * from "./ListResourceSharePermissionsCommand";
|
|
19
25
|
export * from "./ListResourceTypesCommand";
|
|
20
26
|
export * from "./ListResourcesCommand";
|
|
27
|
+
export * from "./PromotePermissionCreatedFromPolicyCommand";
|
|
21
28
|
export * from "./PromoteResourceShareCreatedFromPolicyCommand";
|
|
22
29
|
export * from "./RejectResourceShareInvitationCommand";
|
|
30
|
+
export * from "./ReplacePermissionAssociationsCommand";
|
|
31
|
+
export * from "./SetDefaultPermissionVersionCommand";
|
|
23
32
|
export * from "./TagResourceCommand";
|
|
24
33
|
export * from "./UntagResourceCommand";
|
|
25
34
|
export * from "./UpdateResourceShareCommand";
|
|
@@ -26,7 +26,7 @@ export declare const resolveClientEndpointParameters: <T>(
|
|
|
26
26
|
defaultSigningName: string;
|
|
27
27
|
};
|
|
28
28
|
export interface EndpointParameters extends __EndpointParameters {
|
|
29
|
-
Region
|
|
29
|
+
Region?: string;
|
|
30
30
|
UseDualStack?: boolean;
|
|
31
31
|
UseFIPS?: boolean;
|
|
32
32
|
Endpoint?: string;
|