@aws-sdk/client-repostspace 3.478.0 → 3.481.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 +9 -9
@@ -1,48 +1,25 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
- import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
5
  import { SendInvitesInputFilterSensitiveLog } from "../models/models_0";
6
6
  import { de_SendInvitesCommand, se_SendInvitesCommand } from "../protocols/Aws_restJson1";
7
7
  export { $Command };
8
- export class SendInvitesCommand extends $Command {
9
- static getEndpointParameterInstructions() {
10
- return {
11
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
12
- Endpoint: { type: "builtInParams", name: "endpoint" },
13
- Region: { type: "builtInParams", name: "region" },
14
- UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
15
- };
16
- }
17
- constructor(input) {
18
- super();
19
- this.input = input;
20
- }
21
- resolveMiddleware(clientStack, configuration, options) {
22
- this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
23
- this.middlewareStack.use(getEndpointPlugin(configuration, SendInvitesCommand.getEndpointParameterInstructions()));
24
- const stack = clientStack.concat(this.middlewareStack);
25
- const { logger } = configuration;
26
- const clientName = "RepostspaceClient";
27
- const commandName = "SendInvitesCommand";
28
- const handlerExecutionContext = {
29
- logger,
30
- clientName,
31
- commandName,
32
- inputFilterSensitiveLog: SendInvitesInputFilterSensitiveLog,
33
- outputFilterSensitiveLog: (_) => _,
34
- [SMITHY_CONTEXT_KEY]: {
35
- service: "RepostSpace",
36
- operation: "SendInvites",
37
- },
38
- };
39
- const { requestHandler } = configuration;
40
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
41
- }
42
- serialize(input, context) {
43
- return se_SendInvitesCommand(input, context);
44
- }
45
- deserialize(output, context) {
46
- return de_SendInvitesCommand(output, context);
47
- }
8
+ export class SendInvitesCommand extends $Command
9
+ .classBuilder()
10
+ .ep({
11
+ ...commonParams,
12
+ })
13
+ .m(function (Command, cs, config, o) {
14
+ return [
15
+ getSerdePlugin(config, this.serialize, this.deserialize),
16
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
17
+ ];
18
+ })
19
+ .s("RepostSpace", "SendInvites", {})
20
+ .n("RepostspaceClient", "SendInvitesCommand")
21
+ .f(SendInvitesInputFilterSensitiveLog, void 0)
22
+ .ser(se_SendInvitesCommand)
23
+ .de(de_SendInvitesCommand)
24
+ .build() {
48
25
  }
@@ -1,48 +1,25 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
- import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
5
  import { TagResourceRequestFilterSensitiveLog } from "../models/models_0";
6
6
  import { de_TagResourceCommand, se_TagResourceCommand } from "../protocols/Aws_restJson1";
7
7
  export { $Command };
8
- export class TagResourceCommand extends $Command {
9
- static getEndpointParameterInstructions() {
10
- return {
11
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
12
- Endpoint: { type: "builtInParams", name: "endpoint" },
13
- Region: { type: "builtInParams", name: "region" },
14
- UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
15
- };
16
- }
17
- constructor(input) {
18
- super();
19
- this.input = input;
20
- }
21
- resolveMiddleware(clientStack, configuration, options) {
22
- this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
23
- this.middlewareStack.use(getEndpointPlugin(configuration, TagResourceCommand.getEndpointParameterInstructions()));
24
- const stack = clientStack.concat(this.middlewareStack);
25
- const { logger } = configuration;
26
- const clientName = "RepostspaceClient";
27
- const commandName = "TagResourceCommand";
28
- const handlerExecutionContext = {
29
- logger,
30
- clientName,
31
- commandName,
32
- inputFilterSensitiveLog: TagResourceRequestFilterSensitiveLog,
33
- outputFilterSensitiveLog: (_) => _,
34
- [SMITHY_CONTEXT_KEY]: {
35
- service: "RepostSpace",
36
- operation: "TagResource",
37
- },
38
- };
39
- const { requestHandler } = configuration;
40
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
41
- }
42
- serialize(input, context) {
43
- return se_TagResourceCommand(input, context);
44
- }
45
- deserialize(output, context) {
46
- return de_TagResourceCommand(output, context);
47
- }
8
+ export class TagResourceCommand extends $Command
9
+ .classBuilder()
10
+ .ep({
11
+ ...commonParams,
12
+ })
13
+ .m(function (Command, cs, config, o) {
14
+ return [
15
+ getSerdePlugin(config, this.serialize, this.deserialize),
16
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
17
+ ];
18
+ })
19
+ .s("RepostSpace", "TagResource", {})
20
+ .n("RepostspaceClient", "TagResourceCommand")
21
+ .f(TagResourceRequestFilterSensitiveLog, void 0)
22
+ .ser(se_TagResourceCommand)
23
+ .de(de_TagResourceCommand)
24
+ .build() {
48
25
  }
@@ -1,47 +1,24 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
- import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
5
  import { de_UntagResourceCommand, se_UntagResourceCommand } from "../protocols/Aws_restJson1";
6
6
  export { $Command };
7
- export class UntagResourceCommand extends $Command {
8
- static getEndpointParameterInstructions() {
9
- return {
10
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
- Endpoint: { type: "builtInParams", name: "endpoint" },
12
- Region: { type: "builtInParams", name: "region" },
13
- UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
14
- };
15
- }
16
- constructor(input) {
17
- super();
18
- this.input = input;
19
- }
20
- resolveMiddleware(clientStack, configuration, options) {
21
- this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
22
- this.middlewareStack.use(getEndpointPlugin(configuration, UntagResourceCommand.getEndpointParameterInstructions()));
23
- const stack = clientStack.concat(this.middlewareStack);
24
- const { logger } = configuration;
25
- const clientName = "RepostspaceClient";
26
- const commandName = "UntagResourceCommand";
27
- const handlerExecutionContext = {
28
- logger,
29
- clientName,
30
- commandName,
31
- inputFilterSensitiveLog: (_) => _,
32
- outputFilterSensitiveLog: (_) => _,
33
- [SMITHY_CONTEXT_KEY]: {
34
- service: "RepostSpace",
35
- operation: "UntagResource",
36
- },
37
- };
38
- const { requestHandler } = configuration;
39
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
40
- }
41
- serialize(input, context) {
42
- return se_UntagResourceCommand(input, context);
43
- }
44
- deserialize(output, context) {
45
- return de_UntagResourceCommand(output, context);
46
- }
7
+ export class UntagResourceCommand extends $Command
8
+ .classBuilder()
9
+ .ep({
10
+ ...commonParams,
11
+ })
12
+ .m(function (Command, cs, config, o) {
13
+ return [
14
+ getSerdePlugin(config, this.serialize, this.deserialize),
15
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
16
+ ];
17
+ })
18
+ .s("RepostSpace", "UntagResource", {})
19
+ .n("RepostspaceClient", "UntagResourceCommand")
20
+ .f(void 0, void 0)
21
+ .ser(se_UntagResourceCommand)
22
+ .de(de_UntagResourceCommand)
23
+ .build() {
47
24
  }
@@ -1,48 +1,25 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
- import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
5
  import { UpdateSpaceInputFilterSensitiveLog } from "../models/models_0";
6
6
  import { de_UpdateSpaceCommand, se_UpdateSpaceCommand } from "../protocols/Aws_restJson1";
7
7
  export { $Command };
8
- export class UpdateSpaceCommand extends $Command {
9
- static getEndpointParameterInstructions() {
10
- return {
11
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
12
- Endpoint: { type: "builtInParams", name: "endpoint" },
13
- Region: { type: "builtInParams", name: "region" },
14
- UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
15
- };
16
- }
17
- constructor(input) {
18
- super();
19
- this.input = input;
20
- }
21
- resolveMiddleware(clientStack, configuration, options) {
22
- this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
23
- this.middlewareStack.use(getEndpointPlugin(configuration, UpdateSpaceCommand.getEndpointParameterInstructions()));
24
- const stack = clientStack.concat(this.middlewareStack);
25
- const { logger } = configuration;
26
- const clientName = "RepostspaceClient";
27
- const commandName = "UpdateSpaceCommand";
28
- const handlerExecutionContext = {
29
- logger,
30
- clientName,
31
- commandName,
32
- inputFilterSensitiveLog: UpdateSpaceInputFilterSensitiveLog,
33
- outputFilterSensitiveLog: (_) => _,
34
- [SMITHY_CONTEXT_KEY]: {
35
- service: "RepostSpace",
36
- operation: "UpdateSpace",
37
- },
38
- };
39
- const { requestHandler } = configuration;
40
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
41
- }
42
- serialize(input, context) {
43
- return se_UpdateSpaceCommand(input, context);
44
- }
45
- deserialize(output, context) {
46
- return de_UpdateSpaceCommand(output, context);
47
- }
8
+ export class UpdateSpaceCommand extends $Command
9
+ .classBuilder()
10
+ .ep({
11
+ ...commonParams,
12
+ })
13
+ .m(function (Command, cs, config, o) {
14
+ return [
15
+ getSerdePlugin(config, this.serialize, this.deserialize),
16
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
17
+ ];
18
+ })
19
+ .s("RepostSpace", "UpdateSpace", {})
20
+ .n("RepostspaceClient", "UpdateSpaceCommand")
21
+ .f(UpdateSpaceInputFilterSensitiveLog, void 0)
22
+ .ser(se_UpdateSpaceCommand)
23
+ .de(de_UpdateSpaceCommand)
24
+ .build() {
48
25
  }
@@ -6,3 +6,9 @@ export const resolveClientEndpointParameters = (options) => {
6
6
  defaultSigningName: "repostspace",
7
7
  };
8
8
  };
9
+ export const commonParams = {
10
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
+ Endpoint: { type: "builtInParams", name: "endpoint" },
12
+ Region: { type: "builtInParams", name: "region" },
13
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
14
+ };
@@ -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 { CreateSpaceInput, CreateSpaceOutput } from "../models/models_0";
5
4
  import { RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RepostspaceClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface CreateSpaceCommandInput extends CreateSpaceInput {
21
20
  */
22
21
  export interface CreateSpaceCommandOutput extends CreateSpaceOutput, __MetadataBearer {
23
22
  }
23
+ declare const CreateSpaceCommand_base: {
24
+ new (input: CreateSpaceCommandInput): import("@smithy/smithy-client").CommandImpl<CreateSpaceCommandInput, CreateSpaceCommandOutput, RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Creates an AWS re:Post Private private re:Post.</p>
@@ -80,23 +83,5 @@ export interface CreateSpaceCommandOutput extends CreateSpaceOutput, __MetadataB
80
83
  * <p>Base exception class for all service exceptions from Repostspace service.</p>
81
84
  *
82
85
  */
83
- export declare class CreateSpaceCommand extends $Command<CreateSpaceCommandInput, CreateSpaceCommandOutput, RepostspaceClientResolvedConfig> {
84
- readonly input: CreateSpaceCommandInput;
85
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
86
- /**
87
- * @public
88
- */
89
- constructor(input: CreateSpaceCommandInput);
90
- /**
91
- * @internal
92
- */
93
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RepostspaceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateSpaceCommandInput, CreateSpaceCommandOutput>;
94
- /**
95
- * @internal
96
- */
97
- private serialize;
98
- /**
99
- * @internal
100
- */
101
- private deserialize;
86
+ export declare class CreateSpaceCommand extends CreateSpaceCommand_base {
102
87
  }
@@ -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 { DeleteSpaceInput } from "../models/models_0";
5
4
  import { RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RepostspaceClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface DeleteSpaceCommandInput extends DeleteSpaceInput {
21
20
  */
22
21
  export interface DeleteSpaceCommandOutput extends __MetadataBearer {
23
22
  }
23
+ declare const DeleteSpaceCommand_base: {
24
+ new (input: DeleteSpaceCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteSpaceCommandInput, DeleteSpaceCommandOutput, RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Deletes an AWS re:Post Private private re:Post.</p>
@@ -64,23 +67,5 @@ export interface DeleteSpaceCommandOutput extends __MetadataBearer {
64
67
  * <p>Base exception class for all service exceptions from Repostspace service.</p>
65
68
  *
66
69
  */
67
- export declare class DeleteSpaceCommand extends $Command<DeleteSpaceCommandInput, DeleteSpaceCommandOutput, RepostspaceClientResolvedConfig> {
68
- readonly input: DeleteSpaceCommandInput;
69
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
70
- /**
71
- * @public
72
- */
73
- constructor(input: DeleteSpaceCommandInput);
74
- /**
75
- * @internal
76
- */
77
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RepostspaceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteSpaceCommandInput, DeleteSpaceCommandOutput>;
78
- /**
79
- * @internal
80
- */
81
- private serialize;
82
- /**
83
- * @internal
84
- */
85
- private deserialize;
70
+ export declare class DeleteSpaceCommand extends DeleteSpaceCommand_base {
86
71
  }
@@ -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 { DeregisterAdminInput } from "../models/models_0";
5
4
  import { RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RepostspaceClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface DeregisterAdminCommandInput extends DeregisterAdminInput {
21
20
  */
22
21
  export interface DeregisterAdminCommandOutput extends __MetadataBearer {
23
22
  }
23
+ declare const DeregisterAdminCommand_base: {
24
+ new (input: DeregisterAdminCommandInput): import("@smithy/smithy-client").CommandImpl<DeregisterAdminCommandInput, DeregisterAdminCommandOutput, RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Removes the user or group from the list of administrators of the private re:Post.</p>
@@ -65,23 +68,5 @@ export interface DeregisterAdminCommandOutput extends __MetadataBearer {
65
68
  * <p>Base exception class for all service exceptions from Repostspace service.</p>
66
69
  *
67
70
  */
68
- export declare class DeregisterAdminCommand extends $Command<DeregisterAdminCommandInput, DeregisterAdminCommandOutput, RepostspaceClientResolvedConfig> {
69
- readonly input: DeregisterAdminCommandInput;
70
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
71
- /**
72
- * @public
73
- */
74
- constructor(input: DeregisterAdminCommandInput);
75
- /**
76
- * @internal
77
- */
78
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RepostspaceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeregisterAdminCommandInput, DeregisterAdminCommandOutput>;
79
- /**
80
- * @internal
81
- */
82
- private serialize;
83
- /**
84
- * @internal
85
- */
86
- private deserialize;
71
+ export declare class DeregisterAdminCommand extends DeregisterAdminCommand_base {
87
72
  }
@@ -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 { GetSpaceInput, GetSpaceOutput } from "../models/models_0";
5
4
  import { RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RepostspaceClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface GetSpaceCommandInput extends GetSpaceInput {
21
20
  */
22
21
  export interface GetSpaceCommandOutput extends GetSpaceOutput, __MetadataBearer {
23
22
  }
23
+ declare const GetSpaceCommand_base: {
24
+ new (input: GetSpaceCommandInput): import("@smithy/smithy-client").CommandImpl<GetSpaceCommandInput, GetSpaceCommandOutput, RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Displays information about the AWS re:Post Private private re:Post.</p>
@@ -89,23 +92,5 @@ export interface GetSpaceCommandOutput extends GetSpaceOutput, __MetadataBearer
89
92
  * <p>Base exception class for all service exceptions from Repostspace service.</p>
90
93
  *
91
94
  */
92
- export declare class GetSpaceCommand extends $Command<GetSpaceCommandInput, GetSpaceCommandOutput, RepostspaceClientResolvedConfig> {
93
- readonly input: GetSpaceCommandInput;
94
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
95
- /**
96
- * @public
97
- */
98
- constructor(input: GetSpaceCommandInput);
99
- /**
100
- * @internal
101
- */
102
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RepostspaceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSpaceCommandInput, GetSpaceCommandOutput>;
103
- /**
104
- * @internal
105
- */
106
- private serialize;
107
- /**
108
- * @internal
109
- */
110
- private deserialize;
95
+ export declare class GetSpaceCommand extends GetSpaceCommand_base {
111
96
  }
@@ -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 { ListSpacesInput, ListSpacesOutput } from "../models/models_0";
5
4
  import { RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RepostspaceClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface ListSpacesCommandInput extends ListSpacesInput {
21
20
  */
22
21
  export interface ListSpacesCommandOutput extends ListSpacesOutput, __MetadataBearer {
23
22
  }
23
+ declare const ListSpacesCommand_base: {
24
+ new (input: ListSpacesCommandInput): import("@smithy/smithy-client").CommandImpl<ListSpacesCommandInput, ListSpacesCommandOutput, RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Returns a list of AWS re:Post Private private re:Posts in the account with some information about each private re:Post.</p>
@@ -84,23 +87,5 @@ export interface ListSpacesCommandOutput extends ListSpacesOutput, __MetadataBea
84
87
  * <p>Base exception class for all service exceptions from Repostspace service.</p>
85
88
  *
86
89
  */
87
- export declare class ListSpacesCommand extends $Command<ListSpacesCommandInput, ListSpacesCommandOutput, RepostspaceClientResolvedConfig> {
88
- readonly input: ListSpacesCommandInput;
89
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
90
- /**
91
- * @public
92
- */
93
- constructor(input: ListSpacesCommandInput);
94
- /**
95
- * @internal
96
- */
97
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RepostspaceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListSpacesCommandInput, ListSpacesCommandOutput>;
98
- /**
99
- * @internal
100
- */
101
- private serialize;
102
- /**
103
- * @internal
104
- */
105
- private deserialize;
90
+ export declare class ListSpacesCommand extends ListSpacesCommand_base {
106
91
  }
@@ -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 { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
5
4
  import { RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RepostspaceClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequ
21
20
  */
22
21
  export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
23
22
  }
23
+ declare const ListTagsForResourceCommand_base: {
24
+ new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Returns the tags that are associated with the AWS re:Post Private resource specified by the resourceArn. The only resource that can be tagged is a private re:Post.</p>
@@ -68,23 +71,5 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
68
71
  * <p>Base exception class for all service exceptions from Repostspace service.</p>
69
72
  *
70
73
  */
71
- export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, RepostspaceClientResolvedConfig> {
72
- readonly input: ListTagsForResourceCommandInput;
73
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
74
- /**
75
- * @public
76
- */
77
- constructor(input: ListTagsForResourceCommandInput);
78
- /**
79
- * @internal
80
- */
81
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RepostspaceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
82
- /**
83
- * @internal
84
- */
85
- private serialize;
86
- /**
87
- * @internal
88
- */
89
- private deserialize;
74
+ export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
90
75
  }
@@ -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 { RegisterAdminInput } from "../models/models_0";
5
4
  import { RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RepostspaceClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface RegisterAdminCommandInput extends RegisterAdminInput {
21
20
  */
22
21
  export interface RegisterAdminCommandOutput extends __MetadataBearer {
23
22
  }
23
+ declare const RegisterAdminCommand_base: {
24
+ new (input: RegisterAdminCommandInput): import("@smithy/smithy-client").CommandImpl<RegisterAdminCommandInput, RegisterAdminCommandOutput, RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Adds a user or group to the list of administrators of the private re:Post.</p>
@@ -65,23 +68,5 @@ export interface RegisterAdminCommandOutput extends __MetadataBearer {
65
68
  * <p>Base exception class for all service exceptions from Repostspace service.</p>
66
69
  *
67
70
  */
68
- export declare class RegisterAdminCommand extends $Command<RegisterAdminCommandInput, RegisterAdminCommandOutput, RepostspaceClientResolvedConfig> {
69
- readonly input: RegisterAdminCommandInput;
70
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
71
- /**
72
- * @public
73
- */
74
- constructor(input: RegisterAdminCommandInput);
75
- /**
76
- * @internal
77
- */
78
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RepostspaceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RegisterAdminCommandInput, RegisterAdminCommandOutput>;
79
- /**
80
- * @internal
81
- */
82
- private serialize;
83
- /**
84
- * @internal
85
- */
86
- private deserialize;
71
+ export declare class RegisterAdminCommand extends RegisterAdminCommand_base {
87
72
  }
@@ -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 { SendInvitesInput } from "../models/models_0";
5
4
  import { RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RepostspaceClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface SendInvitesCommandInput extends SendInvitesInput {
21
20
  */
22
21
  export interface SendInvitesCommandOutput extends __MetadataBearer {
23
22
  }
23
+ declare const SendInvitesCommand_base: {
24
+ new (input: SendInvitesCommandInput): import("@smithy/smithy-client").CommandImpl<SendInvitesCommandInput, SendInvitesCommandOutput, RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Sends an invitation email to selected users and groups.</p>
@@ -69,23 +72,5 @@ export interface SendInvitesCommandOutput extends __MetadataBearer {
69
72
  * <p>Base exception class for all service exceptions from Repostspace service.</p>
70
73
  *
71
74
  */
72
- export declare class SendInvitesCommand extends $Command<SendInvitesCommandInput, SendInvitesCommandOutput, RepostspaceClientResolvedConfig> {
73
- readonly input: SendInvitesCommandInput;
74
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
75
- /**
76
- * @public
77
- */
78
- constructor(input: SendInvitesCommandInput);
79
- /**
80
- * @internal
81
- */
82
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RepostspaceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SendInvitesCommandInput, SendInvitesCommandOutput>;
83
- /**
84
- * @internal
85
- */
86
- private serialize;
87
- /**
88
- * @internal
89
- */
90
- private deserialize;
75
+ export declare class SendInvitesCommand extends SendInvitesCommand_base {
91
76
  }