@aws-sdk/client-ram 3.50.0 → 3.51.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 +8 -0
- package/dist-types/ts3.4/RAM.d.ts +130 -0
- package/dist-types/ts3.4/RAMClient.d.ts +98 -0
- package/dist-types/ts3.4/commands/AcceptResourceShareInvitationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/AssociateResourceShareCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/AssociateResourceSharePermissionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateResourceShareCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteResourceShareCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DisassociateResourceShareCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DisassociateResourceSharePermissionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/EnableSharingWithAwsOrganizationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetPermissionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetResourcePoliciesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetResourceShareAssociationsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetResourceShareInvitationsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetResourceSharesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListPendingInvitationResourcesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListPermissionVersionsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListPermissionsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListPrincipalsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListResourceSharePermissionsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListResourceTypesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListResourcesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PromoteResourceShareCreatedFromPolicyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/RejectResourceShareInvitationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateResourceShareCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +25 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +5 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +930 -0
- package/dist-types/ts3.4/pagination/GetResourcePoliciesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/GetResourceShareAssociationsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/GetResourceShareInvitationsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/GetResourceSharesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListPendingInvitationResourcesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListPermissionVersionsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListPermissionsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListPrincipalsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListResourceSharePermissionsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListResourceTypesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListResourcesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +12 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +77 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/package.json +8 -8
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { ListResourcesRequest, ListResourcesResponse } from "../models/models_0";
|
|
4
|
+
import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient";
|
|
5
|
+
export interface ListResourcesCommandInput extends ListResourcesRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListResourcesCommandOutput extends ListResourcesResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListResourcesCommand extends $Command<ListResourcesCommandInput, ListResourcesCommandOutput, RAMClientResolvedConfig> {
|
|
11
|
+
readonly input: ListResourcesCommandInput;
|
|
12
|
+
constructor(input: ListResourcesCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RAMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListResourcesCommandInput, ListResourcesCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { PromoteResourceShareCreatedFromPolicyRequest, PromoteResourceShareCreatedFromPolicyResponse } from "../models/models_0";
|
|
4
|
+
import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient";
|
|
5
|
+
export interface PromoteResourceShareCreatedFromPolicyCommandInput extends PromoteResourceShareCreatedFromPolicyRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface PromoteResourceShareCreatedFromPolicyCommandOutput extends PromoteResourceShareCreatedFromPolicyResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class PromoteResourceShareCreatedFromPolicyCommand extends $Command<PromoteResourceShareCreatedFromPolicyCommandInput, PromoteResourceShareCreatedFromPolicyCommandOutput, RAMClientResolvedConfig> {
|
|
11
|
+
readonly input: PromoteResourceShareCreatedFromPolicyCommandInput;
|
|
12
|
+
constructor(input: PromoteResourceShareCreatedFromPolicyCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RAMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PromoteResourceShareCreatedFromPolicyCommandInput, PromoteResourceShareCreatedFromPolicyCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { RejectResourceShareInvitationRequest, RejectResourceShareInvitationResponse } from "../models/models_0";
|
|
4
|
+
import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient";
|
|
5
|
+
export interface RejectResourceShareInvitationCommandInput extends RejectResourceShareInvitationRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface RejectResourceShareInvitationCommandOutput extends RejectResourceShareInvitationResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class RejectResourceShareInvitationCommand extends $Command<RejectResourceShareInvitationCommandInput, RejectResourceShareInvitationCommandOutput, RAMClientResolvedConfig> {
|
|
11
|
+
readonly input: RejectResourceShareInvitationCommandInput;
|
|
12
|
+
constructor(input: RejectResourceShareInvitationCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RAMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RejectResourceShareInvitationCommandInput, RejectResourceShareInvitationCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
4
|
+
import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient";
|
|
5
|
+
export interface TagResourceCommandInput extends TagResourceRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, RAMClientResolvedConfig> {
|
|
11
|
+
readonly input: TagResourceCommandInput;
|
|
12
|
+
constructor(input: TagResourceCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RAMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
4
|
+
import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient";
|
|
5
|
+
export interface UntagResourceCommandInput extends UntagResourceRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, RAMClientResolvedConfig> {
|
|
11
|
+
readonly input: UntagResourceCommandInput;
|
|
12
|
+
constructor(input: UntagResourceCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RAMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { UpdateResourceShareRequest, UpdateResourceShareResponse } from "../models/models_0";
|
|
4
|
+
import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient";
|
|
5
|
+
export interface UpdateResourceShareCommandInput extends UpdateResourceShareRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface UpdateResourceShareCommandOutput extends UpdateResourceShareResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class UpdateResourceShareCommand extends $Command<UpdateResourceShareCommandInput, UpdateResourceShareCommandOutput, RAMClientResolvedConfig> {
|
|
11
|
+
readonly input: UpdateResourceShareCommandInput;
|
|
12
|
+
constructor(input: UpdateResourceShareCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RAMClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateResourceShareCommandInput, UpdateResourceShareCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export * from "./AcceptResourceShareInvitationCommand";
|
|
2
|
+
export * from "./AssociateResourceShareCommand";
|
|
3
|
+
export * from "./AssociateResourceSharePermissionCommand";
|
|
4
|
+
export * from "./CreateResourceShareCommand";
|
|
5
|
+
export * from "./DeleteResourceShareCommand";
|
|
6
|
+
export * from "./DisassociateResourceShareCommand";
|
|
7
|
+
export * from "./DisassociateResourceSharePermissionCommand";
|
|
8
|
+
export * from "./EnableSharingWithAwsOrganizationCommand";
|
|
9
|
+
export * from "./GetPermissionCommand";
|
|
10
|
+
export * from "./GetResourcePoliciesCommand";
|
|
11
|
+
export * from "./GetResourceShareAssociationsCommand";
|
|
12
|
+
export * from "./GetResourceShareInvitationsCommand";
|
|
13
|
+
export * from "./GetResourceSharesCommand";
|
|
14
|
+
export * from "./ListPendingInvitationResourcesCommand";
|
|
15
|
+
export * from "./ListPermissionVersionsCommand";
|
|
16
|
+
export * from "./ListPermissionsCommand";
|
|
17
|
+
export * from "./ListPrincipalsCommand";
|
|
18
|
+
export * from "./ListResourceSharePermissionsCommand";
|
|
19
|
+
export * from "./ListResourceTypesCommand";
|
|
20
|
+
export * from "./ListResourcesCommand";
|
|
21
|
+
export * from "./PromoteResourceShareCreatedFromPolicyCommand";
|
|
22
|
+
export * from "./RejectResourceShareInvitationCommand";
|
|
23
|
+
export * from "./TagResourceCommand";
|
|
24
|
+
export * from "./UntagResourceCommand";
|
|
25
|
+
export * from "./UpdateResourceShareCommand";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./models_0";
|