@aws-sdk/client-repostspace 3.1077.0 → 3.1079.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 (65) hide show
  1. package/dist-cjs/index.js +27 -193
  2. package/dist-es/commandBuilder.js +6 -0
  3. package/dist-es/commands/BatchAddChannelRoleToAccessorsCommand.js +2 -14
  4. package/dist-es/commands/BatchAddRoleCommand.js +2 -14
  5. package/dist-es/commands/BatchRemoveChannelRoleFromAccessorsCommand.js +2 -14
  6. package/dist-es/commands/BatchRemoveRoleCommand.js +2 -14
  7. package/dist-es/commands/CreateChannelCommand.js +2 -14
  8. package/dist-es/commands/CreateSpaceCommand.js +2 -14
  9. package/dist-es/commands/DeleteSpaceCommand.js +2 -14
  10. package/dist-es/commands/DeregisterAdminCommand.js +2 -14
  11. package/dist-es/commands/GetChannelCommand.js +2 -14
  12. package/dist-es/commands/GetSpaceCommand.js +2 -14
  13. package/dist-es/commands/ListChannelsCommand.js +2 -14
  14. package/dist-es/commands/ListSpacesCommand.js +2 -14
  15. package/dist-es/commands/ListTagsForResourceCommand.js +2 -14
  16. package/dist-es/commands/RegisterAdminCommand.js +2 -14
  17. package/dist-es/commands/SendInvitesCommand.js +2 -14
  18. package/dist-es/commands/TagResourceCommand.js +2 -14
  19. package/dist-es/commands/UntagResourceCommand.js +2 -14
  20. package/dist-es/commands/UpdateChannelCommand.js +2 -14
  21. package/dist-es/commands/UpdateSpaceCommand.js +2 -14
  22. package/dist-es/index.js +1 -0
  23. package/dist-types/commandBuilder.d.ts +18 -0
  24. package/dist-types/commands/BatchAddChannelRoleToAccessorsCommand.d.ts +3 -8
  25. package/dist-types/commands/BatchAddRoleCommand.d.ts +3 -8
  26. package/dist-types/commands/BatchRemoveChannelRoleFromAccessorsCommand.d.ts +3 -8
  27. package/dist-types/commands/BatchRemoveRoleCommand.d.ts +3 -8
  28. package/dist-types/commands/CreateChannelCommand.d.ts +3 -8
  29. package/dist-types/commands/CreateSpaceCommand.d.ts +3 -8
  30. package/dist-types/commands/DeleteSpaceCommand.d.ts +3 -8
  31. package/dist-types/commands/DeregisterAdminCommand.d.ts +3 -8
  32. package/dist-types/commands/GetChannelCommand.d.ts +3 -8
  33. package/dist-types/commands/GetSpaceCommand.d.ts +3 -8
  34. package/dist-types/commands/ListChannelsCommand.d.ts +3 -8
  35. package/dist-types/commands/ListSpacesCommand.d.ts +3 -8
  36. package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -8
  37. package/dist-types/commands/RegisterAdminCommand.d.ts +3 -8
  38. package/dist-types/commands/SendInvitesCommand.d.ts +3 -8
  39. package/dist-types/commands/TagResourceCommand.d.ts +3 -8
  40. package/dist-types/commands/UntagResourceCommand.d.ts +3 -8
  41. package/dist-types/commands/UpdateChannelCommand.d.ts +3 -8
  42. package/dist-types/commands/UpdateSpaceCommand.d.ts +3 -8
  43. package/dist-types/index.d.ts +1 -0
  44. package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
  45. package/dist-types/ts3.4/commands/BatchAddChannelRoleToAccessorsCommand.d.ts +7 -16
  46. package/dist-types/ts3.4/commands/BatchAddRoleCommand.d.ts +7 -16
  47. package/dist-types/ts3.4/commands/BatchRemoveChannelRoleFromAccessorsCommand.d.ts +7 -16
  48. package/dist-types/ts3.4/commands/BatchRemoveRoleCommand.d.ts +7 -16
  49. package/dist-types/ts3.4/commands/CreateChannelCommand.d.ts +7 -16
  50. package/dist-types/ts3.4/commands/CreateSpaceCommand.d.ts +7 -16
  51. package/dist-types/ts3.4/commands/DeleteSpaceCommand.d.ts +7 -16
  52. package/dist-types/ts3.4/commands/DeregisterAdminCommand.d.ts +7 -16
  53. package/dist-types/ts3.4/commands/GetChannelCommand.d.ts +7 -16
  54. package/dist-types/ts3.4/commands/GetSpaceCommand.d.ts +7 -16
  55. package/dist-types/ts3.4/commands/ListChannelsCommand.d.ts +7 -16
  56. package/dist-types/ts3.4/commands/ListSpacesCommand.d.ts +7 -16
  57. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +7 -16
  58. package/dist-types/ts3.4/commands/RegisterAdminCommand.d.ts +7 -16
  59. package/dist-types/ts3.4/commands/SendInvitesCommand.d.ts +7 -16
  60. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +7 -16
  61. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +7 -16
  62. package/dist-types/ts3.4/commands/UpdateChannelCommand.d.ts +7 -16
  63. package/dist-types/ts3.4/commands/UpdateSpaceCommand.d.ts +7 -16
  64. package/dist-types/ts3.4/index.d.ts +1 -0
  65. package/package.json +8 -8
@@ -0,0 +1,46 @@
1
+ import { EndpointParameterInstructions } from "@smithy/types";
2
+ import {
3
+ RepostspaceClientResolvedConfig,
4
+ ServiceInputTypes,
5
+ ServiceOutputTypes,
6
+ } from "./RepostspaceClient";
7
+ export declare const command: <
8
+ I extends ServiceInputTypes,
9
+ O extends ServiceOutputTypes
10
+ >(
11
+ added: EndpointParameterInstructions,
12
+ plugins: (
13
+ CommandCtor: any,
14
+ clientStack: any,
15
+ config: any,
16
+ options: any
17
+ ) => import("@smithy/types").Pluggable<any, any>[],
18
+ op: string,
19
+ $: import("@smithy/types").StaticOperationSchema,
20
+ smithyContext?: Record<string, unknown>
21
+ ) => {
22
+ new (input: I): import("@smithy/core/client").CommandImpl<
23
+ I,
24
+ O,
25
+ RepostspaceClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: import("@smithy/types").OptionalParameter<I>
31
+ ): import("@smithy/core/client").CommandImpl<
32
+ I,
33
+ O,
34
+ RepostspaceClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): EndpointParameterInstructions;
39
+ };
40
+ export declare const _ep0: EndpointParameterInstructions;
41
+ export declare const _mw0: (
42
+ Command: any,
43
+ cs: any,
44
+ config: any,
45
+ o: any
46
+ ) => never[];
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import {
4
3
  BatchAddChannelRoleToAccessorsInput,
5
4
  BatchAddChannelRoleToAccessorsOutput,
6
5
  } from "../models/models_0";
7
- import {
8
- RepostspaceClientResolvedConfig,
9
- ServiceInputTypes,
10
- ServiceOutputTypes,
11
- } from "../RepostspaceClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface BatchAddChannelRoleToAccessorsCommandInput
15
8
  extends BatchAddChannelRoleToAccessorsInput {}
16
9
  export interface BatchAddChannelRoleToAccessorsCommandOutput
@@ -22,22 +15,20 @@ declare const BatchAddChannelRoleToAccessorsCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  BatchAddChannelRoleToAccessorsCommandInput,
24
17
  BatchAddChannelRoleToAccessorsCommandOutput,
25
- RepostspaceClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").RepostspaceClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: BatchAddChannelRoleToAccessorsCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  BatchAddChannelRoleToAccessorsCommandInput,
33
26
  BatchAddChannelRoleToAccessorsCommandOutput,
34
- RepostspaceClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").RepostspaceClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class BatchAddChannelRoleToAccessorsCommand extends BatchAddChannelRoleToAccessorsCommand_base {
43
34
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import { BatchAddRoleInput, BatchAddRoleOutput } from "../models/models_0";
4
- import {
5
- RepostspaceClientResolvedConfig,
6
- ServiceInputTypes,
7
- ServiceOutputTypes,
8
- } from "../RepostspaceClient";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface BatchAddRoleCommandInput extends BatchAddRoleInput {}
12
5
  export interface BatchAddRoleCommandOutput
13
6
  extends BatchAddRoleOutput,
@@ -18,22 +11,20 @@ declare const BatchAddRoleCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  BatchAddRoleCommandInput,
20
13
  BatchAddRoleCommandOutput,
21
- RepostspaceClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").RepostspaceClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  input: BatchAddRoleCommandInput
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  BatchAddRoleCommandInput,
29
22
  BatchAddRoleCommandOutput,
30
- RepostspaceClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").RepostspaceClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
33
26
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
28
  };
38
29
  export declare class BatchAddRoleCommand extends BatchAddRoleCommand_base {
39
30
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import {
4
3
  BatchRemoveChannelRoleFromAccessorsInput,
5
4
  BatchRemoveChannelRoleFromAccessorsOutput,
6
5
  } from "../models/models_0";
7
- import {
8
- RepostspaceClientResolvedConfig,
9
- ServiceInputTypes,
10
- ServiceOutputTypes,
11
- } from "../RepostspaceClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface BatchRemoveChannelRoleFromAccessorsCommandInput
15
8
  extends BatchRemoveChannelRoleFromAccessorsInput {}
16
9
  export interface BatchRemoveChannelRoleFromAccessorsCommandOutput
@@ -22,22 +15,20 @@ declare const BatchRemoveChannelRoleFromAccessorsCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  BatchRemoveChannelRoleFromAccessorsCommandInput,
24
17
  BatchRemoveChannelRoleFromAccessorsCommandOutput,
25
- RepostspaceClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").RepostspaceClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: BatchRemoveChannelRoleFromAccessorsCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  BatchRemoveChannelRoleFromAccessorsCommandInput,
33
26
  BatchRemoveChannelRoleFromAccessorsCommandOutput,
34
- RepostspaceClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").RepostspaceClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class BatchRemoveChannelRoleFromAccessorsCommand extends BatchRemoveChannelRoleFromAccessorsCommand_base {
43
34
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import {
4
3
  BatchRemoveRoleInput,
5
4
  BatchRemoveRoleOutput,
6
5
  } from "../models/models_0";
7
- import {
8
- RepostspaceClientResolvedConfig,
9
- ServiceInputTypes,
10
- ServiceOutputTypes,
11
- } from "../RepostspaceClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface BatchRemoveRoleCommandInput extends BatchRemoveRoleInput {}
15
8
  export interface BatchRemoveRoleCommandOutput
16
9
  extends BatchRemoveRoleOutput,
@@ -21,22 +14,20 @@ declare const BatchRemoveRoleCommand_base: {
21
14
  ): import("@smithy/core/client").CommandImpl<
22
15
  BatchRemoveRoleCommandInput,
23
16
  BatchRemoveRoleCommandOutput,
24
- RepostspaceClientResolvedConfig,
25
- ServiceInputTypes,
26
- ServiceOutputTypes
17
+ import("..").RepostspaceClientResolvedConfig,
18
+ import("..").ServiceInputTypes,
19
+ import("..").ServiceOutputTypes
27
20
  >;
28
21
  new (
29
22
  input: BatchRemoveRoleCommandInput
30
23
  ): import("@smithy/core/client").CommandImpl<
31
24
  BatchRemoveRoleCommandInput,
32
25
  BatchRemoveRoleCommandOutput,
33
- RepostspaceClientResolvedConfig,
34
- ServiceInputTypes,
35
- ServiceOutputTypes
26
+ import("..").RepostspaceClientResolvedConfig,
27
+ import("..").ServiceInputTypes,
28
+ import("..").ServiceOutputTypes
36
29
  >;
37
- getEndpointParameterInstructions(): {
38
- [x: string]: unknown;
39
- };
30
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
40
31
  };
41
32
  export declare class BatchRemoveRoleCommand extends BatchRemoveRoleCommand_base {
42
33
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import { CreateChannelInput, CreateChannelOutput } from "../models/models_0";
4
- import {
5
- RepostspaceClientResolvedConfig,
6
- ServiceInputTypes,
7
- ServiceOutputTypes,
8
- } from "../RepostspaceClient";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface CreateChannelCommandInput extends CreateChannelInput {}
12
5
  export interface CreateChannelCommandOutput
13
6
  extends CreateChannelOutput,
@@ -18,22 +11,20 @@ declare const CreateChannelCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  CreateChannelCommandInput,
20
13
  CreateChannelCommandOutput,
21
- RepostspaceClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").RepostspaceClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  input: CreateChannelCommandInput
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  CreateChannelCommandInput,
29
22
  CreateChannelCommandOutput,
30
- RepostspaceClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").RepostspaceClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
33
26
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
28
  };
38
29
  export declare class CreateChannelCommand extends CreateChannelCommand_base {
39
30
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import { CreateSpaceInput, CreateSpaceOutput } from "../models/models_0";
4
- import {
5
- RepostspaceClientResolvedConfig,
6
- ServiceInputTypes,
7
- ServiceOutputTypes,
8
- } from "../RepostspaceClient";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface CreateSpaceCommandInput extends CreateSpaceInput {}
12
5
  export interface CreateSpaceCommandOutput
13
6
  extends CreateSpaceOutput,
@@ -18,22 +11,20 @@ declare const CreateSpaceCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  CreateSpaceCommandInput,
20
13
  CreateSpaceCommandOutput,
21
- RepostspaceClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").RepostspaceClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  input: CreateSpaceCommandInput
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  CreateSpaceCommandInput,
29
22
  CreateSpaceCommandOutput,
30
- RepostspaceClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").RepostspaceClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
33
26
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
28
  };
38
29
  export declare class CreateSpaceCommand extends CreateSpaceCommand_base {
39
30
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import { DeleteSpaceInput } from "../models/models_0";
4
- import {
5
- RepostspaceClientResolvedConfig,
6
- ServiceInputTypes,
7
- ServiceOutputTypes,
8
- } from "../RepostspaceClient";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface DeleteSpaceCommandInput extends DeleteSpaceInput {}
12
5
  export interface DeleteSpaceCommandOutput extends __MetadataBearer {}
13
6
  declare const DeleteSpaceCommand_base: {
@@ -16,22 +9,20 @@ declare const DeleteSpaceCommand_base: {
16
9
  ): import("@smithy/core/client").CommandImpl<
17
10
  DeleteSpaceCommandInput,
18
11
  DeleteSpaceCommandOutput,
19
- RepostspaceClientResolvedConfig,
20
- ServiceInputTypes,
21
- ServiceOutputTypes
12
+ import("..").RepostspaceClientResolvedConfig,
13
+ import("..").ServiceInputTypes,
14
+ import("..").ServiceOutputTypes
22
15
  >;
23
16
  new (
24
17
  input: DeleteSpaceCommandInput
25
18
  ): import("@smithy/core/client").CommandImpl<
26
19
  DeleteSpaceCommandInput,
27
20
  DeleteSpaceCommandOutput,
28
- RepostspaceClientResolvedConfig,
29
- ServiceInputTypes,
30
- ServiceOutputTypes
21
+ import("..").RepostspaceClientResolvedConfig,
22
+ import("..").ServiceInputTypes,
23
+ import("..").ServiceOutputTypes
31
24
  >;
32
- getEndpointParameterInstructions(): {
33
- [x: string]: unknown;
34
- };
25
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
35
26
  };
36
27
  export declare class DeleteSpaceCommand extends DeleteSpaceCommand_base {
37
28
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import { DeregisterAdminInput } from "../models/models_0";
4
- import {
5
- RepostspaceClientResolvedConfig,
6
- ServiceInputTypes,
7
- ServiceOutputTypes,
8
- } from "../RepostspaceClient";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface DeregisterAdminCommandInput extends DeregisterAdminInput {}
12
5
  export interface DeregisterAdminCommandOutput extends __MetadataBearer {}
13
6
  declare const DeregisterAdminCommand_base: {
@@ -16,22 +9,20 @@ declare const DeregisterAdminCommand_base: {
16
9
  ): import("@smithy/core/client").CommandImpl<
17
10
  DeregisterAdminCommandInput,
18
11
  DeregisterAdminCommandOutput,
19
- RepostspaceClientResolvedConfig,
20
- ServiceInputTypes,
21
- ServiceOutputTypes
12
+ import("..").RepostspaceClientResolvedConfig,
13
+ import("..").ServiceInputTypes,
14
+ import("..").ServiceOutputTypes
22
15
  >;
23
16
  new (
24
17
  input: DeregisterAdminCommandInput
25
18
  ): import("@smithy/core/client").CommandImpl<
26
19
  DeregisterAdminCommandInput,
27
20
  DeregisterAdminCommandOutput,
28
- RepostspaceClientResolvedConfig,
29
- ServiceInputTypes,
30
- ServiceOutputTypes
21
+ import("..").RepostspaceClientResolvedConfig,
22
+ import("..").ServiceInputTypes,
23
+ import("..").ServiceOutputTypes
31
24
  >;
32
- getEndpointParameterInstructions(): {
33
- [x: string]: unknown;
34
- };
25
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
35
26
  };
36
27
  export declare class DeregisterAdminCommand extends DeregisterAdminCommand_base {
37
28
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import { GetChannelInput, GetChannelOutput } from "../models/models_0";
4
- import {
5
- RepostspaceClientResolvedConfig,
6
- ServiceInputTypes,
7
- ServiceOutputTypes,
8
- } from "../RepostspaceClient";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface GetChannelCommandInput extends GetChannelInput {}
12
5
  export interface GetChannelCommandOutput
13
6
  extends GetChannelOutput,
@@ -18,22 +11,20 @@ declare const GetChannelCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  GetChannelCommandInput,
20
13
  GetChannelCommandOutput,
21
- RepostspaceClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").RepostspaceClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  input: GetChannelCommandInput
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  GetChannelCommandInput,
29
22
  GetChannelCommandOutput,
30
- RepostspaceClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").RepostspaceClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
33
26
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
28
  };
38
29
  export declare class GetChannelCommand extends GetChannelCommand_base {
39
30
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import { GetSpaceInput, GetSpaceOutput } from "../models/models_0";
4
- import {
5
- RepostspaceClientResolvedConfig,
6
- ServiceInputTypes,
7
- ServiceOutputTypes,
8
- } from "../RepostspaceClient";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface GetSpaceCommandInput extends GetSpaceInput {}
12
5
  export interface GetSpaceCommandOutput
13
6
  extends GetSpaceOutput,
@@ -16,20 +9,18 @@ declare const GetSpaceCommand_base: {
16
9
  new (input: GetSpaceCommandInput): import("@smithy/core/client").CommandImpl<
17
10
  GetSpaceCommandInput,
18
11
  GetSpaceCommandOutput,
19
- RepostspaceClientResolvedConfig,
20
- ServiceInputTypes,
21
- ServiceOutputTypes
12
+ import("..").RepostspaceClientResolvedConfig,
13
+ import("..").ServiceInputTypes,
14
+ import("..").ServiceOutputTypes
22
15
  >;
23
16
  new (input: GetSpaceCommandInput): import("@smithy/core/client").CommandImpl<
24
17
  GetSpaceCommandInput,
25
18
  GetSpaceCommandOutput,
26
- RepostspaceClientResolvedConfig,
27
- ServiceInputTypes,
28
- ServiceOutputTypes
19
+ import("..").RepostspaceClientResolvedConfig,
20
+ import("..").ServiceInputTypes,
21
+ import("..").ServiceOutputTypes
29
22
  >;
30
- getEndpointParameterInstructions(): {
31
- [x: string]: unknown;
32
- };
23
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
33
24
  };
34
25
  export declare class GetSpaceCommand extends GetSpaceCommand_base {
35
26
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import { ListChannelsInput, ListChannelsOutput } from "../models/models_0";
4
- import {
5
- RepostspaceClientResolvedConfig,
6
- ServiceInputTypes,
7
- ServiceOutputTypes,
8
- } from "../RepostspaceClient";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface ListChannelsCommandInput extends ListChannelsInput {}
12
5
  export interface ListChannelsCommandOutput
13
6
  extends ListChannelsOutput,
@@ -18,22 +11,20 @@ declare const ListChannelsCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  ListChannelsCommandInput,
20
13
  ListChannelsCommandOutput,
21
- RepostspaceClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").RepostspaceClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  input: ListChannelsCommandInput
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  ListChannelsCommandInput,
29
22
  ListChannelsCommandOutput,
30
- RepostspaceClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").RepostspaceClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
33
26
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
28
  };
38
29
  export declare class ListChannelsCommand extends ListChannelsCommand_base {
39
30
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import { ListSpacesInput, ListSpacesOutput } from "../models/models_0";
4
- import {
5
- RepostspaceClientResolvedConfig,
6
- ServiceInputTypes,
7
- ServiceOutputTypes,
8
- } from "../RepostspaceClient";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface ListSpacesCommandInput extends ListSpacesInput {}
12
5
  export interface ListSpacesCommandOutput
13
6
  extends ListSpacesOutput,
@@ -18,22 +11,20 @@ declare const ListSpacesCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  ListSpacesCommandInput,
20
13
  ListSpacesCommandOutput,
21
- RepostspaceClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").RepostspaceClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  ...[input]: [] | [ListSpacesCommandInput]
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  ListSpacesCommandInput,
29
22
  ListSpacesCommandOutput,
30
- RepostspaceClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").RepostspaceClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
33
26
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
28
  };
38
29
  export declare class ListSpacesCommand extends ListSpacesCommand_base {
39
30
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import {
4
3
  ListTagsForResourceRequest,
5
4
  ListTagsForResourceResponse,
6
5
  } from "../models/models_0";
7
- import {
8
- RepostspaceClientResolvedConfig,
9
- ServiceInputTypes,
10
- ServiceOutputTypes,
11
- } from "../RepostspaceClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface ListTagsForResourceCommandInput
15
8
  extends ListTagsForResourceRequest {}
16
9
  export interface ListTagsForResourceCommandOutput
@@ -22,22 +15,20 @@ declare const ListTagsForResourceCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  ListTagsForResourceCommandInput,
24
17
  ListTagsForResourceCommandOutput,
25
- RepostspaceClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").RepostspaceClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: ListTagsForResourceCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  ListTagsForResourceCommandInput,
33
26
  ListTagsForResourceCommandOutput,
34
- RepostspaceClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").RepostspaceClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
43
34
  protected static __types: {