@aws-sdk/client-repostspace 3.478.0 → 3.484.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.
Files changed (49) hide show
  1. package/dist-cjs/commands/CreateSpaceCommand.js +18 -41
  2. package/dist-cjs/commands/DeleteSpaceCommand.js +18 -41
  3. package/dist-cjs/commands/DeregisterAdminCommand.js +18 -41
  4. package/dist-cjs/commands/GetSpaceCommand.js +18 -41
  5. package/dist-cjs/commands/ListSpacesCommand.js +18 -41
  6. package/dist-cjs/commands/ListTagsForResourceCommand.js +18 -41
  7. package/dist-cjs/commands/RegisterAdminCommand.js +18 -41
  8. package/dist-cjs/commands/SendInvitesCommand.js +18 -41
  9. package/dist-cjs/commands/TagResourceCommand.js +18 -41
  10. package/dist-cjs/commands/UntagResourceCommand.js +18 -41
  11. package/dist-cjs/commands/UpdateSpaceCommand.js +18 -41
  12. package/dist-cjs/endpoint/EndpointParameters.js +7 -1
  13. package/dist-es/commands/CreateSpaceCommand.js +18 -41
  14. package/dist-es/commands/DeleteSpaceCommand.js +18 -41
  15. package/dist-es/commands/DeregisterAdminCommand.js +18 -41
  16. package/dist-es/commands/GetSpaceCommand.js +18 -41
  17. package/dist-es/commands/ListSpacesCommand.js +18 -41
  18. package/dist-es/commands/ListTagsForResourceCommand.js +18 -41
  19. package/dist-es/commands/RegisterAdminCommand.js +18 -41
  20. package/dist-es/commands/SendInvitesCommand.js +18 -41
  21. package/dist-es/commands/TagResourceCommand.js +18 -41
  22. package/dist-es/commands/UntagResourceCommand.js +18 -41
  23. package/dist-es/commands/UpdateSpaceCommand.js +18 -41
  24. package/dist-es/endpoint/EndpointParameters.js +6 -0
  25. package/dist-types/commands/CreateSpaceCommand.d.ts +6 -21
  26. package/dist-types/commands/DeleteSpaceCommand.d.ts +6 -21
  27. package/dist-types/commands/DeregisterAdminCommand.d.ts +6 -21
  28. package/dist-types/commands/GetSpaceCommand.d.ts +6 -21
  29. package/dist-types/commands/ListSpacesCommand.d.ts +6 -21
  30. package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -21
  31. package/dist-types/commands/RegisterAdminCommand.d.ts +6 -21
  32. package/dist-types/commands/SendInvitesCommand.d.ts +6 -21
  33. package/dist-types/commands/TagResourceCommand.d.ts +6 -21
  34. package/dist-types/commands/UntagResourceCommand.d.ts +6 -21
  35. package/dist-types/commands/UpdateSpaceCommand.d.ts +6 -21
  36. package/dist-types/endpoint/EndpointParameters.d.ts +18 -0
  37. package/dist-types/ts3.4/commands/CreateSpaceCommand.d.ts +14 -23
  38. package/dist-types/ts3.4/commands/DeleteSpaceCommand.d.ts +14 -23
  39. package/dist-types/ts3.4/commands/DeregisterAdminCommand.d.ts +14 -23
  40. package/dist-types/ts3.4/commands/GetSpaceCommand.d.ts +14 -23
  41. package/dist-types/ts3.4/commands/ListSpacesCommand.d.ts +14 -23
  42. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +14 -23
  43. package/dist-types/ts3.4/commands/RegisterAdminCommand.d.ts +14 -23
  44. package/dist-types/ts3.4/commands/SendInvitesCommand.d.ts +14 -23
  45. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +14 -23
  46. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +14 -23
  47. package/dist-types/ts3.4/commands/UpdateSpaceCommand.d.ts +14 -23
  48. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +18 -0
  49. package/package.json +11 -11
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
5
4
  import { RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RepostspaceClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface TagResourceCommandInput extends TagResourceRequest {
21
20
  */
22
21
  export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
23
22
  }
23
+ declare const TagResourceCommand_base: {
24
+ new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Associates tags with an AWS re:Post Private resource. Currently, the only resource that can be tagged is the private re:Post. If you specify a new tag key for the resource, the tag is appended to the list of tags that are associated with the resource. If you specify a tag key that’s already associated with the resource, the new tag value that you specify replaces the previous value for that tag.</p>
@@ -67,23 +70,5 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
67
70
  * <p>Base exception class for all service exceptions from Repostspace service.</p>
68
71
  *
69
72
  */
70
- export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, RepostspaceClientResolvedConfig> {
71
- readonly input: TagResourceCommandInput;
72
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
73
- /**
74
- * @public
75
- */
76
- constructor(input: TagResourceCommandInput);
77
- /**
78
- * @internal
79
- */
80
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RepostspaceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
81
- /**
82
- * @internal
83
- */
84
- private serialize;
85
- /**
86
- * @internal
87
- */
88
- private deserialize;
73
+ export declare class TagResourceCommand extends TagResourceCommand_base {
89
74
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
5
4
  import { RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RepostspaceClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface UntagResourceCommandInput extends UntagResourceRequest {
21
20
  */
22
21
  export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
23
22
  }
23
+ declare const UntagResourceCommand_base: {
24
+ new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Removes the association of the tag with the AWS re:Post Private resource.</p>
@@ -67,23 +70,5 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
67
70
  * <p>Base exception class for all service exceptions from Repostspace service.</p>
68
71
  *
69
72
  */
70
- export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, RepostspaceClientResolvedConfig> {
71
- readonly input: UntagResourceCommandInput;
72
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
73
- /**
74
- * @public
75
- */
76
- constructor(input: UntagResourceCommandInput);
77
- /**
78
- * @internal
79
- */
80
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RepostspaceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
81
- /**
82
- * @internal
83
- */
84
- private serialize;
85
- /**
86
- * @internal
87
- */
88
- private deserialize;
73
+ export declare class UntagResourceCommand extends UntagResourceCommand_base {
89
74
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { UpdateSpaceInput } from "../models/models_0";
5
4
  import { RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RepostspaceClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface UpdateSpaceCommandInput extends UpdateSpaceInput {
21
20
  */
22
21
  export interface UpdateSpaceCommandOutput extends __MetadataBearer {
23
22
  }
23
+ declare const UpdateSpaceCommand_base: {
24
+ new (input: UpdateSpaceCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateSpaceCommandInput, UpdateSpaceCommandOutput, RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Modifies an existing AWS re:Post Private private re:Post.</p>
@@ -70,23 +73,5 @@ export interface UpdateSpaceCommandOutput extends __MetadataBearer {
70
73
  * <p>Base exception class for all service exceptions from Repostspace service.</p>
71
74
  *
72
75
  */
73
- export declare class UpdateSpaceCommand extends $Command<UpdateSpaceCommandInput, UpdateSpaceCommandOutput, RepostspaceClientResolvedConfig> {
74
- readonly input: UpdateSpaceCommandInput;
75
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
76
- /**
77
- * @public
78
- */
79
- constructor(input: UpdateSpaceCommandInput);
80
- /**
81
- * @internal
82
- */
83
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RepostspaceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateSpaceCommandInput, UpdateSpaceCommandOutput>;
84
- /**
85
- * @internal
86
- */
87
- private serialize;
88
- /**
89
- * @internal
90
- */
91
- private deserialize;
76
+ export declare class UpdateSpaceCommand extends UpdateSpaceCommand_base {
92
77
  }
@@ -14,6 +14,24 @@ export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
14
14
  export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
15
15
  defaultSigningName: string;
16
16
  };
17
+ export declare const commonParams: {
18
+ readonly UseFIPS: {
19
+ readonly type: "builtInParams";
20
+ readonly name: "useFipsEndpoint";
21
+ };
22
+ readonly Endpoint: {
23
+ readonly type: "builtInParams";
24
+ readonly name: "endpoint";
25
+ };
26
+ readonly Region: {
27
+ readonly type: "builtInParams";
28
+ readonly name: "region";
29
+ };
30
+ readonly UseDualStack: {
31
+ readonly type: "builtInParams";
32
+ readonly name: "useDualstackEndpoint";
33
+ };
34
+ };
17
35
  export interface EndpointParameters extends __EndpointParameters {
18
36
  Region?: string;
19
37
  UseDualStack?: boolean;
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import { CreateSpaceInput, CreateSpaceOutput } from "../models/models_0";
10
4
  import {
11
5
  RepostspaceClientResolvedConfig,
@@ -17,19 +11,16 @@ export interface CreateSpaceCommandInput extends CreateSpaceInput {}
17
11
  export interface CreateSpaceCommandOutput
18
12
  extends CreateSpaceOutput,
19
13
  __MetadataBearer {}
20
- export declare class CreateSpaceCommand extends $Command<
21
- CreateSpaceCommandInput,
22
- CreateSpaceCommandOutput,
23
- RepostspaceClientResolvedConfig
24
- > {
25
- readonly input: CreateSpaceCommandInput;
26
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
- constructor(input: CreateSpaceCommandInput);
28
- resolveMiddleware(
29
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
- configuration: RepostspaceClientResolvedConfig,
31
- options?: __HttpHandlerOptions
32
- ): Handler<CreateSpaceCommandInput, CreateSpaceCommandOutput>;
33
- private serialize;
34
- private deserialize;
35
- }
14
+ declare const CreateSpaceCommand_base: {
15
+ new (
16
+ input: CreateSpaceCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ CreateSpaceCommandInput,
19
+ CreateSpaceCommandOutput,
20
+ RepostspaceClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ };
26
+ export declare class CreateSpaceCommand extends CreateSpaceCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import { DeleteSpaceInput } from "../models/models_0";
10
4
  import {
11
5
  RepostspaceClientResolvedConfig,
@@ -15,19 +9,16 @@ import {
15
9
  export { __MetadataBearer, $Command };
16
10
  export interface DeleteSpaceCommandInput extends DeleteSpaceInput {}
17
11
  export interface DeleteSpaceCommandOutput extends __MetadataBearer {}
18
- export declare class DeleteSpaceCommand extends $Command<
19
- DeleteSpaceCommandInput,
20
- DeleteSpaceCommandOutput,
21
- RepostspaceClientResolvedConfig
22
- > {
23
- readonly input: DeleteSpaceCommandInput;
24
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
25
- constructor(input: DeleteSpaceCommandInput);
26
- resolveMiddleware(
27
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
28
- configuration: RepostspaceClientResolvedConfig,
29
- options?: __HttpHandlerOptions
30
- ): Handler<DeleteSpaceCommandInput, DeleteSpaceCommandOutput>;
31
- private serialize;
32
- private deserialize;
33
- }
12
+ declare const DeleteSpaceCommand_base: {
13
+ new (
14
+ input: DeleteSpaceCommandInput
15
+ ): import("@smithy/smithy-client").CommandImpl<
16
+ DeleteSpaceCommandInput,
17
+ DeleteSpaceCommandOutput,
18
+ RepostspaceClientResolvedConfig,
19
+ ServiceInputTypes,
20
+ ServiceOutputTypes
21
+ >;
22
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
23
+ };
24
+ export declare class DeleteSpaceCommand extends DeleteSpaceCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import { DeregisterAdminInput } from "../models/models_0";
10
4
  import {
11
5
  RepostspaceClientResolvedConfig,
@@ -15,19 +9,16 @@ import {
15
9
  export { __MetadataBearer, $Command };
16
10
  export interface DeregisterAdminCommandInput extends DeregisterAdminInput {}
17
11
  export interface DeregisterAdminCommandOutput extends __MetadataBearer {}
18
- export declare class DeregisterAdminCommand extends $Command<
19
- DeregisterAdminCommandInput,
20
- DeregisterAdminCommandOutput,
21
- RepostspaceClientResolvedConfig
22
- > {
23
- readonly input: DeregisterAdminCommandInput;
24
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
25
- constructor(input: DeregisterAdminCommandInput);
26
- resolveMiddleware(
27
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
28
- configuration: RepostspaceClientResolvedConfig,
29
- options?: __HttpHandlerOptions
30
- ): Handler<DeregisterAdminCommandInput, DeregisterAdminCommandOutput>;
31
- private serialize;
32
- private deserialize;
33
- }
12
+ declare const DeregisterAdminCommand_base: {
13
+ new (
14
+ input: DeregisterAdminCommandInput
15
+ ): import("@smithy/smithy-client").CommandImpl<
16
+ DeregisterAdminCommandInput,
17
+ DeregisterAdminCommandOutput,
18
+ RepostspaceClientResolvedConfig,
19
+ ServiceInputTypes,
20
+ ServiceOutputTypes
21
+ >;
22
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
23
+ };
24
+ export declare class DeregisterAdminCommand extends DeregisterAdminCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import { GetSpaceInput, GetSpaceOutput } from "../models/models_0";
10
4
  import {
11
5
  RepostspaceClientResolvedConfig,
@@ -17,19 +11,16 @@ export interface GetSpaceCommandInput extends GetSpaceInput {}
17
11
  export interface GetSpaceCommandOutput
18
12
  extends GetSpaceOutput,
19
13
  __MetadataBearer {}
20
- export declare class GetSpaceCommand extends $Command<
21
- GetSpaceCommandInput,
22
- GetSpaceCommandOutput,
23
- RepostspaceClientResolvedConfig
24
- > {
25
- readonly input: GetSpaceCommandInput;
26
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
- constructor(input: GetSpaceCommandInput);
28
- resolveMiddleware(
29
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
- configuration: RepostspaceClientResolvedConfig,
31
- options?: __HttpHandlerOptions
32
- ): Handler<GetSpaceCommandInput, GetSpaceCommandOutput>;
33
- private serialize;
34
- private deserialize;
35
- }
14
+ declare const GetSpaceCommand_base: {
15
+ new (
16
+ input: GetSpaceCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ GetSpaceCommandInput,
19
+ GetSpaceCommandOutput,
20
+ RepostspaceClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ };
26
+ export declare class GetSpaceCommand extends GetSpaceCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import { ListSpacesInput, ListSpacesOutput } from "../models/models_0";
10
4
  import {
11
5
  RepostspaceClientResolvedConfig,
@@ -17,19 +11,16 @@ export interface ListSpacesCommandInput extends ListSpacesInput {}
17
11
  export interface ListSpacesCommandOutput
18
12
  extends ListSpacesOutput,
19
13
  __MetadataBearer {}
20
- export declare class ListSpacesCommand extends $Command<
21
- ListSpacesCommandInput,
22
- ListSpacesCommandOutput,
23
- RepostspaceClientResolvedConfig
24
- > {
25
- readonly input: ListSpacesCommandInput;
26
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
- constructor(input: ListSpacesCommandInput);
28
- resolveMiddleware(
29
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
- configuration: RepostspaceClientResolvedConfig,
31
- options?: __HttpHandlerOptions
32
- ): Handler<ListSpacesCommandInput, ListSpacesCommandOutput>;
33
- private serialize;
34
- private deserialize;
35
- }
14
+ declare const ListSpacesCommand_base: {
15
+ new (
16
+ input: ListSpacesCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ ListSpacesCommandInput,
19
+ ListSpacesCommandOutput,
20
+ RepostspaceClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ };
26
+ export declare class ListSpacesCommand extends ListSpacesCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  ListTagsForResourceRequest,
11
5
  ListTagsForResourceResponse,
@@ -21,19 +15,16 @@ export interface ListTagsForResourceCommandInput
21
15
  export interface ListTagsForResourceCommandOutput
22
16
  extends ListTagsForResourceResponse,
23
17
  __MetadataBearer {}
24
- export declare class ListTagsForResourceCommand extends $Command<
25
- ListTagsForResourceCommandInput,
26
- ListTagsForResourceCommandOutput,
27
- RepostspaceClientResolvedConfig
28
- > {
29
- readonly input: ListTagsForResourceCommandInput;
30
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
- constructor(input: ListTagsForResourceCommandInput);
32
- resolveMiddleware(
33
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
- configuration: RepostspaceClientResolvedConfig,
35
- options?: __HttpHandlerOptions
36
- ): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
37
- private serialize;
38
- private deserialize;
39
- }
18
+ declare const ListTagsForResourceCommand_base: {
19
+ new (
20
+ input: ListTagsForResourceCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ ListTagsForResourceCommandInput,
23
+ ListTagsForResourceCommandOutput,
24
+ RepostspaceClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
+ };
30
+ export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import { RegisterAdminInput } from "../models/models_0";
10
4
  import {
11
5
  RepostspaceClientResolvedConfig,
@@ -15,19 +9,16 @@ import {
15
9
  export { __MetadataBearer, $Command };
16
10
  export interface RegisterAdminCommandInput extends RegisterAdminInput {}
17
11
  export interface RegisterAdminCommandOutput extends __MetadataBearer {}
18
- export declare class RegisterAdminCommand extends $Command<
19
- RegisterAdminCommandInput,
20
- RegisterAdminCommandOutput,
21
- RepostspaceClientResolvedConfig
22
- > {
23
- readonly input: RegisterAdminCommandInput;
24
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
25
- constructor(input: RegisterAdminCommandInput);
26
- resolveMiddleware(
27
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
28
- configuration: RepostspaceClientResolvedConfig,
29
- options?: __HttpHandlerOptions
30
- ): Handler<RegisterAdminCommandInput, RegisterAdminCommandOutput>;
31
- private serialize;
32
- private deserialize;
33
- }
12
+ declare const RegisterAdminCommand_base: {
13
+ new (
14
+ input: RegisterAdminCommandInput
15
+ ): import("@smithy/smithy-client").CommandImpl<
16
+ RegisterAdminCommandInput,
17
+ RegisterAdminCommandOutput,
18
+ RepostspaceClientResolvedConfig,
19
+ ServiceInputTypes,
20
+ ServiceOutputTypes
21
+ >;
22
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
23
+ };
24
+ export declare class RegisterAdminCommand extends RegisterAdminCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import { SendInvitesInput } from "../models/models_0";
10
4
  import {
11
5
  RepostspaceClientResolvedConfig,
@@ -15,19 +9,16 @@ import {
15
9
  export { __MetadataBearer, $Command };
16
10
  export interface SendInvitesCommandInput extends SendInvitesInput {}
17
11
  export interface SendInvitesCommandOutput extends __MetadataBearer {}
18
- export declare class SendInvitesCommand extends $Command<
19
- SendInvitesCommandInput,
20
- SendInvitesCommandOutput,
21
- RepostspaceClientResolvedConfig
22
- > {
23
- readonly input: SendInvitesCommandInput;
24
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
25
- constructor(input: SendInvitesCommandInput);
26
- resolveMiddleware(
27
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
28
- configuration: RepostspaceClientResolvedConfig,
29
- options?: __HttpHandlerOptions
30
- ): Handler<SendInvitesCommandInput, SendInvitesCommandOutput>;
31
- private serialize;
32
- private deserialize;
33
- }
12
+ declare const SendInvitesCommand_base: {
13
+ new (
14
+ input: SendInvitesCommandInput
15
+ ): import("@smithy/smithy-client").CommandImpl<
16
+ SendInvitesCommandInput,
17
+ SendInvitesCommandOutput,
18
+ RepostspaceClientResolvedConfig,
19
+ ServiceInputTypes,
20
+ ServiceOutputTypes
21
+ >;
22
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
23
+ };
24
+ export declare class SendInvitesCommand extends SendInvitesCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
10
4
  import {
11
5
  RepostspaceClientResolvedConfig,
@@ -17,19 +11,16 @@ export interface TagResourceCommandInput extends TagResourceRequest {}
17
11
  export interface TagResourceCommandOutput
18
12
  extends TagResourceResponse,
19
13
  __MetadataBearer {}
20
- export declare class TagResourceCommand extends $Command<
21
- TagResourceCommandInput,
22
- TagResourceCommandOutput,
23
- RepostspaceClientResolvedConfig
24
- > {
25
- readonly input: TagResourceCommandInput;
26
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
- constructor(input: TagResourceCommandInput);
28
- resolveMiddleware(
29
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
- configuration: RepostspaceClientResolvedConfig,
31
- options?: __HttpHandlerOptions
32
- ): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
33
- private serialize;
34
- private deserialize;
35
- }
14
+ declare const TagResourceCommand_base: {
15
+ new (
16
+ input: TagResourceCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ TagResourceCommandInput,
19
+ TagResourceCommandOutput,
20
+ RepostspaceClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ };
26
+ export declare class TagResourceCommand extends TagResourceCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  UntagResourceRequest,
11
5
  UntagResourceResponse,
@@ -20,19 +14,16 @@ export interface UntagResourceCommandInput extends UntagResourceRequest {}
20
14
  export interface UntagResourceCommandOutput
21
15
  extends UntagResourceResponse,
22
16
  __MetadataBearer {}
23
- export declare class UntagResourceCommand extends $Command<
24
- UntagResourceCommandInput,
25
- UntagResourceCommandOutput,
26
- RepostspaceClientResolvedConfig
27
- > {
28
- readonly input: UntagResourceCommandInput;
29
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
- constructor(input: UntagResourceCommandInput);
31
- resolveMiddleware(
32
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
- configuration: RepostspaceClientResolvedConfig,
34
- options?: __HttpHandlerOptions
35
- ): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
36
- private serialize;
37
- private deserialize;
38
- }
17
+ declare const UntagResourceCommand_base: {
18
+ new (
19
+ input: UntagResourceCommandInput
20
+ ): import("@smithy/smithy-client").CommandImpl<
21
+ UntagResourceCommandInput,
22
+ UntagResourceCommandOutput,
23
+ RepostspaceClientResolvedConfig,
24
+ ServiceInputTypes,
25
+ ServiceOutputTypes
26
+ >;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ export declare class UntagResourceCommand extends UntagResourceCommand_base {}