@aws-sdk/client-repostspace 3.840.0 → 3.845.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +48 -0
- package/dist-cjs/index.js +644 -14
- package/dist-es/Repostspace.js +12 -0
- package/dist-es/commands/BatchAddChannelRoleToAccessorsCommand.js +22 -0
- package/dist-es/commands/BatchRemoveChannelRoleFromAccessorsCommand.js +22 -0
- package/dist-es/commands/CreateChannelCommand.js +23 -0
- package/dist-es/commands/GetChannelCommand.js +23 -0
- package/dist-es/commands/ListChannelsCommand.js +23 -0
- package/dist-es/commands/UpdateChannelCommand.js +23 -0
- package/dist-es/commands/index.js +6 -0
- package/dist-es/index.js +1 -0
- package/dist-es/models/models_0.js +73 -6
- package/dist-es/pagination/ListChannelsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +203 -0
- package/dist-es/waiters/index.js +4 -0
- package/dist-es/waiters/waitForChannelCreated.js +49 -0
- package/dist-es/waiters/waitForChannelDeleted.js +52 -0
- package/dist-es/waiters/waitForSpaceCreated.js +49 -0
- package/dist-es/waiters/waitForSpaceDeleted.js +52 -0
- package/dist-types/Repostspace.d.ts +42 -0
- package/dist-types/RepostspaceClient.d.ts +8 -2
- package/dist-types/commands/BatchAddChannelRoleToAccessorsCommand.d.ts +124 -0
- package/dist-types/commands/BatchAddRoleCommand.d.ts +23 -1
- package/dist-types/commands/BatchRemoveChannelRoleFromAccessorsCommand.d.ts +124 -0
- package/dist-types/commands/BatchRemoveRoleCommand.d.ts +23 -1
- package/dist-types/commands/CreateChannelCommand.d.ts +112 -0
- package/dist-types/commands/CreateSpaceCommand.d.ts +6 -0
- package/dist-types/commands/GetChannelCommand.d.ts +125 -0
- package/dist-types/commands/GetSpaceCommand.d.ts +8 -0
- package/dist-types/commands/ListChannelsCommand.d.ts +135 -0
- package/dist-types/commands/ListSpacesCommand.d.ts +6 -0
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateChannelCommand.d.ts +107 -0
- package/dist-types/commands/UpdateSpaceCommand.d.ts +6 -0
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +464 -33
- package/dist-types/pagination/ListChannelsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +54 -0
- package/dist-types/ts3.4/Repostspace.d.ts +108 -0
- package/dist-types/ts3.4/RepostspaceClient.d.ts +36 -0
- package/dist-types/ts3.4/commands/BatchAddChannelRoleToAccessorsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/BatchRemoveChannelRoleFromAccessorsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateChannelCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetChannelCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListChannelsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdateChannelCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +148 -17
- package/dist-types/ts3.4/pagination/ListChannelsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +72 -0
- package/dist-types/ts3.4/waiters/index.d.ts +4 -0
- package/dist-types/ts3.4/waiters/waitForChannelCreated.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForChannelDeleted.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForSpaceCreated.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForSpaceDeleted.d.ts +11 -0
- package/dist-types/waiters/index.d.ts +4 -0
- package/dist-types/waiters/waitForChannelCreated.d.ts +14 -0
- package/dist-types/waiters/waitForChannelDeleted.d.ts +14 -0
- package/dist-types/waiters/waitForSpaceCreated.d.ts +14 -0
- package/dist-types/waiters/waitForSpaceDeleted.d.ts +14 -0
- package/package.json +15 -14
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { UpdateChannelInput, UpdateChannelOutput } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
RepostspaceClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../RepostspaceClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface UpdateChannelCommandInput extends UpdateChannelInput {}
|
|
12
|
+
export interface UpdateChannelCommandOutput
|
|
13
|
+
extends UpdateChannelOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const UpdateChannelCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: UpdateChannelCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
UpdateChannelCommandInput,
|
|
20
|
+
UpdateChannelCommandOutput,
|
|
21
|
+
RepostspaceClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: UpdateChannelCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
UpdateChannelCommandInput,
|
|
29
|
+
UpdateChannelCommandOutput,
|
|
30
|
+
RepostspaceClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class UpdateChannelCommand extends UpdateChannelCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: UpdateChannelInput;
|
|
40
|
+
output: {};
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: UpdateChannelCommandInput;
|
|
44
|
+
output: UpdateChannelCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -1,13 +1,19 @@
|
|
|
1
|
+
export * from "./BatchAddChannelRoleToAccessorsCommand";
|
|
1
2
|
export * from "./BatchAddRoleCommand";
|
|
3
|
+
export * from "./BatchRemoveChannelRoleFromAccessorsCommand";
|
|
2
4
|
export * from "./BatchRemoveRoleCommand";
|
|
5
|
+
export * from "./CreateChannelCommand";
|
|
3
6
|
export * from "./CreateSpaceCommand";
|
|
4
7
|
export * from "./DeleteSpaceCommand";
|
|
5
8
|
export * from "./DeregisterAdminCommand";
|
|
9
|
+
export * from "./GetChannelCommand";
|
|
6
10
|
export * from "./GetSpaceCommand";
|
|
11
|
+
export * from "./ListChannelsCommand";
|
|
7
12
|
export * from "./ListSpacesCommand";
|
|
8
13
|
export * from "./ListTagsForResourceCommand";
|
|
9
14
|
export * from "./RegisterAdminCommand";
|
|
10
15
|
export * from "./SendInvitesCommand";
|
|
11
16
|
export * from "./TagResourceCommand";
|
|
12
17
|
export * from "./UntagResourceCommand";
|
|
18
|
+
export * from "./UpdateChannelCommand";
|
|
13
19
|
export * from "./UpdateSpaceCommand";
|
|
@@ -5,5 +5,6 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { RepostspaceExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
+
export * from "./waiters";
|
|
8
9
|
export * from "./models";
|
|
9
10
|
export { RepostspaceServiceException } from "./models/RepostspaceServiceException";
|
|
@@ -7,24 +7,25 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
7
7
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
8
8
|
);
|
|
9
9
|
}
|
|
10
|
-
export declare const
|
|
11
|
-
readonly
|
|
10
|
+
export declare const ChannelRole: {
|
|
11
|
+
readonly ASKER: "ASKER";
|
|
12
12
|
readonly EXPERT: "EXPERT";
|
|
13
13
|
readonly MODERATOR: "MODERATOR";
|
|
14
14
|
readonly SUPPORTREQUESTOR: "SUPPORTREQUESTOR";
|
|
15
15
|
};
|
|
16
|
-
export type
|
|
17
|
-
export interface
|
|
16
|
+
export type ChannelRole = (typeof ChannelRole)[keyof typeof ChannelRole];
|
|
17
|
+
export interface BatchAddChannelRoleToAccessorsInput {
|
|
18
18
|
spaceId: string | undefined;
|
|
19
|
+
channelId: string | undefined;
|
|
19
20
|
accessorIds: string[] | undefined;
|
|
20
|
-
|
|
21
|
+
channelRole: ChannelRole | undefined;
|
|
21
22
|
}
|
|
22
23
|
export interface BatchError {
|
|
23
24
|
accessorId: string | undefined;
|
|
24
25
|
error: number | undefined;
|
|
25
26
|
message: string | undefined;
|
|
26
27
|
}
|
|
27
|
-
export interface
|
|
28
|
+
export interface BatchAddChannelRoleToAccessorsOutput {
|
|
28
29
|
addedAccessorIds: string[] | undefined;
|
|
29
30
|
errors: BatchError[] | undefined;
|
|
30
31
|
}
|
|
@@ -80,6 +81,32 @@ export declare class ValidationException extends __BaseException {
|
|
|
80
81
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
81
82
|
);
|
|
82
83
|
}
|
|
84
|
+
export declare const Role: {
|
|
85
|
+
readonly ADMINISTRATOR: "ADMINISTRATOR";
|
|
86
|
+
readonly EXPERT: "EXPERT";
|
|
87
|
+
readonly MODERATOR: "MODERATOR";
|
|
88
|
+
readonly SUPPORTREQUESTOR: "SUPPORTREQUESTOR";
|
|
89
|
+
};
|
|
90
|
+
export type Role = (typeof Role)[keyof typeof Role];
|
|
91
|
+
export interface BatchAddRoleInput {
|
|
92
|
+
spaceId: string | undefined;
|
|
93
|
+
accessorIds: string[] | undefined;
|
|
94
|
+
role: Role | undefined;
|
|
95
|
+
}
|
|
96
|
+
export interface BatchAddRoleOutput {
|
|
97
|
+
addedAccessorIds: string[] | undefined;
|
|
98
|
+
errors: BatchError[] | undefined;
|
|
99
|
+
}
|
|
100
|
+
export interface BatchRemoveChannelRoleFromAccessorsInput {
|
|
101
|
+
spaceId: string | undefined;
|
|
102
|
+
channelId: string | undefined;
|
|
103
|
+
accessorIds: string[] | undefined;
|
|
104
|
+
channelRole: ChannelRole | undefined;
|
|
105
|
+
}
|
|
106
|
+
export interface BatchRemoveChannelRoleFromAccessorsOutput {
|
|
107
|
+
removedAccessorIds: string[] | undefined;
|
|
108
|
+
errors: BatchError[] | undefined;
|
|
109
|
+
}
|
|
83
110
|
export interface BatchRemoveRoleInput {
|
|
84
111
|
spaceId: string | undefined;
|
|
85
112
|
accessorIds: string[] | undefined;
|
|
@@ -89,6 +116,26 @@ export interface BatchRemoveRoleOutput {
|
|
|
89
116
|
removedAccessorIds: string[] | undefined;
|
|
90
117
|
errors: BatchError[] | undefined;
|
|
91
118
|
}
|
|
119
|
+
export declare const ChannelStatus: {
|
|
120
|
+
readonly CREATED: "CREATED";
|
|
121
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
122
|
+
readonly CREATING: "CREATING";
|
|
123
|
+
readonly DELETED: "DELETED";
|
|
124
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
125
|
+
readonly DELETING: "DELETING";
|
|
126
|
+
};
|
|
127
|
+
export type ChannelStatus = (typeof ChannelStatus)[keyof typeof ChannelStatus];
|
|
128
|
+
export interface ChannelData {
|
|
129
|
+
spaceId: string | undefined;
|
|
130
|
+
channelId: string | undefined;
|
|
131
|
+
channelName: string | undefined;
|
|
132
|
+
channelDescription?: string | undefined;
|
|
133
|
+
createDateTime: Date | undefined;
|
|
134
|
+
deleteDateTime?: Date | undefined;
|
|
135
|
+
channelStatus: ChannelStatus | undefined;
|
|
136
|
+
userCount: number | undefined;
|
|
137
|
+
groupCount: number | undefined;
|
|
138
|
+
}
|
|
92
139
|
export declare const ConfigurationStatus: {
|
|
93
140
|
readonly CONFIGURED: "CONFIGURED";
|
|
94
141
|
readonly UNCONFIGURED: "UNCONFIGURED";
|
|
@@ -102,6 +149,35 @@ export declare class ConflictException extends __BaseException {
|
|
|
102
149
|
resourceType: string | undefined;
|
|
103
150
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
104
151
|
}
|
|
152
|
+
export interface CreateChannelInput {
|
|
153
|
+
spaceId: string | undefined;
|
|
154
|
+
channelName: string | undefined;
|
|
155
|
+
channelDescription?: string | undefined;
|
|
156
|
+
}
|
|
157
|
+
export interface CreateChannelOutput {
|
|
158
|
+
channelId: string | undefined;
|
|
159
|
+
}
|
|
160
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
161
|
+
readonly name: "ServiceQuotaExceededException";
|
|
162
|
+
readonly $fault: "client";
|
|
163
|
+
resourceId: string | undefined;
|
|
164
|
+
resourceType: string | undefined;
|
|
165
|
+
serviceCode: string | undefined;
|
|
166
|
+
quotaCode: string | undefined;
|
|
167
|
+
constructor(
|
|
168
|
+
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
169
|
+
);
|
|
170
|
+
}
|
|
171
|
+
export declare const FeatureEnableParameter: {
|
|
172
|
+
readonly DISABLED: "DISABLED";
|
|
173
|
+
readonly ENABLED: "ENABLED";
|
|
174
|
+
};
|
|
175
|
+
export type FeatureEnableParameter =
|
|
176
|
+
(typeof FeatureEnableParameter)[keyof typeof FeatureEnableParameter];
|
|
177
|
+
export interface SupportedEmailDomainsParameters {
|
|
178
|
+
enabled?: FeatureEnableParameter | undefined;
|
|
179
|
+
allowedDomains?: string[] | undefined;
|
|
180
|
+
}
|
|
105
181
|
export declare const TierLevel: {
|
|
106
182
|
readonly BASIC: "BASIC";
|
|
107
183
|
readonly STANDARD: "STANDARD";
|
|
@@ -115,21 +191,11 @@ export interface CreateSpaceInput {
|
|
|
115
191
|
userKMSKey?: string | undefined;
|
|
116
192
|
tags?: Record<string, string> | undefined;
|
|
117
193
|
roleArn?: string | undefined;
|
|
194
|
+
supportedEmailDomains?: SupportedEmailDomainsParameters | undefined;
|
|
118
195
|
}
|
|
119
196
|
export interface CreateSpaceOutput {
|
|
120
197
|
spaceId: string | undefined;
|
|
121
198
|
}
|
|
122
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
123
|
-
readonly name: "ServiceQuotaExceededException";
|
|
124
|
-
readonly $fault: "client";
|
|
125
|
-
resourceId: string | undefined;
|
|
126
|
-
resourceType: string | undefined;
|
|
127
|
-
serviceCode: string | undefined;
|
|
128
|
-
quotaCode: string | undefined;
|
|
129
|
-
constructor(
|
|
130
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
131
|
-
);
|
|
132
|
-
}
|
|
133
199
|
export interface DeleteSpaceInput {
|
|
134
200
|
spaceId: string | undefined;
|
|
135
201
|
}
|
|
@@ -137,9 +203,34 @@ export interface DeregisterAdminInput {
|
|
|
137
203
|
spaceId: string | undefined;
|
|
138
204
|
adminId: string | undefined;
|
|
139
205
|
}
|
|
206
|
+
export declare const FeatureEnableStatus: {
|
|
207
|
+
readonly DISABLED: "DISABLED";
|
|
208
|
+
readonly ENABLED: "ENABLED";
|
|
209
|
+
readonly NOT_ALLOWED: "NOT_ALLOWED";
|
|
210
|
+
};
|
|
211
|
+
export type FeatureEnableStatus =
|
|
212
|
+
(typeof FeatureEnableStatus)[keyof typeof FeatureEnableStatus];
|
|
213
|
+
export interface GetChannelInput {
|
|
214
|
+
spaceId: string | undefined;
|
|
215
|
+
channelId: string | undefined;
|
|
216
|
+
}
|
|
217
|
+
export interface GetChannelOutput {
|
|
218
|
+
spaceId: string | undefined;
|
|
219
|
+
channelId: string | undefined;
|
|
220
|
+
channelName: string | undefined;
|
|
221
|
+
channelDescription?: string | undefined;
|
|
222
|
+
createDateTime: Date | undefined;
|
|
223
|
+
deleteDateTime?: Date | undefined;
|
|
224
|
+
channelRoles?: Record<string, ChannelRole[]> | undefined;
|
|
225
|
+
channelStatus: ChannelStatus | undefined;
|
|
226
|
+
}
|
|
140
227
|
export interface GetSpaceInput {
|
|
141
228
|
spaceId: string | undefined;
|
|
142
229
|
}
|
|
230
|
+
export interface SupportedEmailDomainsStatus {
|
|
231
|
+
enabled?: FeatureEnableStatus | undefined;
|
|
232
|
+
allowedDomains?: string[] | undefined;
|
|
233
|
+
}
|
|
143
234
|
export declare const VanityDomainStatus: {
|
|
144
235
|
readonly APPROVED: "APPROVED";
|
|
145
236
|
readonly PENDING: "PENDING";
|
|
@@ -154,6 +245,8 @@ export interface GetSpaceOutput {
|
|
|
154
245
|
status: string | undefined;
|
|
155
246
|
configurationStatus: ConfigurationStatus | undefined;
|
|
156
247
|
clientId: string | undefined;
|
|
248
|
+
identityStoreId?: string | undefined;
|
|
249
|
+
applicationArn?: string | undefined;
|
|
157
250
|
description?: string | undefined;
|
|
158
251
|
vanityDomainStatus: VanityDomainStatus | undefined;
|
|
159
252
|
vanityDomain: string | undefined;
|
|
@@ -169,6 +262,16 @@ export interface GetSpaceOutput {
|
|
|
169
262
|
userKMSKey?: string | undefined;
|
|
170
263
|
userCount?: number | undefined;
|
|
171
264
|
contentSize?: number | undefined;
|
|
265
|
+
supportedEmailDomains?: SupportedEmailDomainsStatus | undefined;
|
|
266
|
+
}
|
|
267
|
+
export interface ListChannelsInput {
|
|
268
|
+
spaceId: string | undefined;
|
|
269
|
+
nextToken?: string | undefined;
|
|
270
|
+
maxResults?: number | undefined;
|
|
271
|
+
}
|
|
272
|
+
export interface ListChannelsOutput {
|
|
273
|
+
channels: ChannelData[] | undefined;
|
|
274
|
+
nextToken?: string | undefined;
|
|
172
275
|
}
|
|
173
276
|
export interface ListSpacesInput {
|
|
174
277
|
nextToken?: string | undefined;
|
|
@@ -191,6 +294,7 @@ export interface SpaceData {
|
|
|
191
294
|
userKMSKey?: string | undefined;
|
|
192
295
|
userCount?: number | undefined;
|
|
193
296
|
contentSize?: number | undefined;
|
|
297
|
+
supportedEmailDomains?: SupportedEmailDomainsStatus | undefined;
|
|
194
298
|
}
|
|
195
299
|
export interface ListSpacesOutput {
|
|
196
300
|
spaces: SpaceData[] | undefined;
|
|
@@ -222,18 +326,42 @@ export interface UntagResourceRequest {
|
|
|
222
326
|
tagKeys: string[] | undefined;
|
|
223
327
|
}
|
|
224
328
|
export interface UntagResourceResponse {}
|
|
329
|
+
export interface UpdateChannelInput {
|
|
330
|
+
spaceId: string | undefined;
|
|
331
|
+
channelId: string | undefined;
|
|
332
|
+
channelName: string | undefined;
|
|
333
|
+
channelDescription?: string | undefined;
|
|
334
|
+
}
|
|
335
|
+
export interface UpdateChannelOutput {}
|
|
225
336
|
export interface UpdateSpaceInput {
|
|
226
337
|
spaceId: string | undefined;
|
|
227
338
|
description?: string | undefined;
|
|
228
339
|
tier?: TierLevel | undefined;
|
|
229
340
|
roleArn?: string | undefined;
|
|
341
|
+
supportedEmailDomains?: SupportedEmailDomainsParameters | undefined;
|
|
230
342
|
}
|
|
343
|
+
export declare const ChannelDataFilterSensitiveLog: (obj: ChannelData) => any;
|
|
344
|
+
export declare const CreateChannelInputFilterSensitiveLog: (
|
|
345
|
+
obj: CreateChannelInput
|
|
346
|
+
) => any;
|
|
347
|
+
export declare const SupportedEmailDomainsParametersFilterSensitiveLog: (
|
|
348
|
+
obj: SupportedEmailDomainsParameters
|
|
349
|
+
) => any;
|
|
231
350
|
export declare const CreateSpaceInputFilterSensitiveLog: (
|
|
232
351
|
obj: CreateSpaceInput
|
|
233
352
|
) => any;
|
|
353
|
+
export declare const GetChannelOutputFilterSensitiveLog: (
|
|
354
|
+
obj: GetChannelOutput
|
|
355
|
+
) => any;
|
|
356
|
+
export declare const SupportedEmailDomainsStatusFilterSensitiveLog: (
|
|
357
|
+
obj: SupportedEmailDomainsStatus
|
|
358
|
+
) => any;
|
|
234
359
|
export declare const GetSpaceOutputFilterSensitiveLog: (
|
|
235
360
|
obj: GetSpaceOutput
|
|
236
361
|
) => any;
|
|
362
|
+
export declare const ListChannelsOutputFilterSensitiveLog: (
|
|
363
|
+
obj: ListChannelsOutput
|
|
364
|
+
) => any;
|
|
237
365
|
export declare const SpaceDataFilterSensitiveLog: (obj: SpaceData) => any;
|
|
238
366
|
export declare const ListSpacesOutputFilterSensitiveLog: (
|
|
239
367
|
obj: ListSpacesOutput
|
|
@@ -247,6 +375,9 @@ export declare const SendInvitesInputFilterSensitiveLog: (
|
|
|
247
375
|
export declare const TagResourceRequestFilterSensitiveLog: (
|
|
248
376
|
obj: TagResourceRequest
|
|
249
377
|
) => any;
|
|
378
|
+
export declare const UpdateChannelInputFilterSensitiveLog: (
|
|
379
|
+
obj: UpdateChannelInput
|
|
380
|
+
) => any;
|
|
250
381
|
export declare const UpdateSpaceInputFilterSensitiveLog: (
|
|
251
382
|
obj: UpdateSpaceInput
|
|
252
383
|
) => any;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListChannelsCommandInput,
|
|
4
|
+
ListChannelsCommandOutput,
|
|
5
|
+
} from "../commands/ListChannelsCommand";
|
|
6
|
+
import { RepostspacePaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListChannels: (
|
|
8
|
+
config: RepostspacePaginationConfiguration,
|
|
9
|
+
input: ListChannelsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListChannelsCommandOutput>;
|
|
@@ -3,14 +3,26 @@ import {
|
|
|
3
3
|
HttpResponse as __HttpResponse,
|
|
4
4
|
} from "@smithy/protocol-http";
|
|
5
5
|
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
6
|
+
import {
|
|
7
|
+
BatchAddChannelRoleToAccessorsCommandInput,
|
|
8
|
+
BatchAddChannelRoleToAccessorsCommandOutput,
|
|
9
|
+
} from "../commands/BatchAddChannelRoleToAccessorsCommand";
|
|
6
10
|
import {
|
|
7
11
|
BatchAddRoleCommandInput,
|
|
8
12
|
BatchAddRoleCommandOutput,
|
|
9
13
|
} from "../commands/BatchAddRoleCommand";
|
|
14
|
+
import {
|
|
15
|
+
BatchRemoveChannelRoleFromAccessorsCommandInput,
|
|
16
|
+
BatchRemoveChannelRoleFromAccessorsCommandOutput,
|
|
17
|
+
} from "../commands/BatchRemoveChannelRoleFromAccessorsCommand";
|
|
10
18
|
import {
|
|
11
19
|
BatchRemoveRoleCommandInput,
|
|
12
20
|
BatchRemoveRoleCommandOutput,
|
|
13
21
|
} from "../commands/BatchRemoveRoleCommand";
|
|
22
|
+
import {
|
|
23
|
+
CreateChannelCommandInput,
|
|
24
|
+
CreateChannelCommandOutput,
|
|
25
|
+
} from "../commands/CreateChannelCommand";
|
|
14
26
|
import {
|
|
15
27
|
CreateSpaceCommandInput,
|
|
16
28
|
CreateSpaceCommandOutput,
|
|
@@ -23,10 +35,18 @@ import {
|
|
|
23
35
|
DeregisterAdminCommandInput,
|
|
24
36
|
DeregisterAdminCommandOutput,
|
|
25
37
|
} from "../commands/DeregisterAdminCommand";
|
|
38
|
+
import {
|
|
39
|
+
GetChannelCommandInput,
|
|
40
|
+
GetChannelCommandOutput,
|
|
41
|
+
} from "../commands/GetChannelCommand";
|
|
26
42
|
import {
|
|
27
43
|
GetSpaceCommandInput,
|
|
28
44
|
GetSpaceCommandOutput,
|
|
29
45
|
} from "../commands/GetSpaceCommand";
|
|
46
|
+
import {
|
|
47
|
+
ListChannelsCommandInput,
|
|
48
|
+
ListChannelsCommandOutput,
|
|
49
|
+
} from "../commands/ListChannelsCommand";
|
|
30
50
|
import {
|
|
31
51
|
ListSpacesCommandInput,
|
|
32
52
|
ListSpacesCommandOutput,
|
|
@@ -51,18 +71,34 @@ import {
|
|
|
51
71
|
UntagResourceCommandInput,
|
|
52
72
|
UntagResourceCommandOutput,
|
|
53
73
|
} from "../commands/UntagResourceCommand";
|
|
74
|
+
import {
|
|
75
|
+
UpdateChannelCommandInput,
|
|
76
|
+
UpdateChannelCommandOutput,
|
|
77
|
+
} from "../commands/UpdateChannelCommand";
|
|
54
78
|
import {
|
|
55
79
|
UpdateSpaceCommandInput,
|
|
56
80
|
UpdateSpaceCommandOutput,
|
|
57
81
|
} from "../commands/UpdateSpaceCommand";
|
|
82
|
+
export declare const se_BatchAddChannelRoleToAccessorsCommand: (
|
|
83
|
+
input: BatchAddChannelRoleToAccessorsCommandInput,
|
|
84
|
+
context: __SerdeContext
|
|
85
|
+
) => Promise<__HttpRequest>;
|
|
58
86
|
export declare const se_BatchAddRoleCommand: (
|
|
59
87
|
input: BatchAddRoleCommandInput,
|
|
60
88
|
context: __SerdeContext
|
|
61
89
|
) => Promise<__HttpRequest>;
|
|
90
|
+
export declare const se_BatchRemoveChannelRoleFromAccessorsCommand: (
|
|
91
|
+
input: BatchRemoveChannelRoleFromAccessorsCommandInput,
|
|
92
|
+
context: __SerdeContext
|
|
93
|
+
) => Promise<__HttpRequest>;
|
|
62
94
|
export declare const se_BatchRemoveRoleCommand: (
|
|
63
95
|
input: BatchRemoveRoleCommandInput,
|
|
64
96
|
context: __SerdeContext
|
|
65
97
|
) => Promise<__HttpRequest>;
|
|
98
|
+
export declare const se_CreateChannelCommand: (
|
|
99
|
+
input: CreateChannelCommandInput,
|
|
100
|
+
context: __SerdeContext
|
|
101
|
+
) => Promise<__HttpRequest>;
|
|
66
102
|
export declare const se_CreateSpaceCommand: (
|
|
67
103
|
input: CreateSpaceCommandInput,
|
|
68
104
|
context: __SerdeContext
|
|
@@ -75,10 +111,18 @@ export declare const se_DeregisterAdminCommand: (
|
|
|
75
111
|
input: DeregisterAdminCommandInput,
|
|
76
112
|
context: __SerdeContext
|
|
77
113
|
) => Promise<__HttpRequest>;
|
|
114
|
+
export declare const se_GetChannelCommand: (
|
|
115
|
+
input: GetChannelCommandInput,
|
|
116
|
+
context: __SerdeContext
|
|
117
|
+
) => Promise<__HttpRequest>;
|
|
78
118
|
export declare const se_GetSpaceCommand: (
|
|
79
119
|
input: GetSpaceCommandInput,
|
|
80
120
|
context: __SerdeContext
|
|
81
121
|
) => Promise<__HttpRequest>;
|
|
122
|
+
export declare const se_ListChannelsCommand: (
|
|
123
|
+
input: ListChannelsCommandInput,
|
|
124
|
+
context: __SerdeContext
|
|
125
|
+
) => Promise<__HttpRequest>;
|
|
82
126
|
export declare const se_ListSpacesCommand: (
|
|
83
127
|
input: ListSpacesCommandInput,
|
|
84
128
|
context: __SerdeContext
|
|
@@ -103,18 +147,34 @@ export declare const se_UntagResourceCommand: (
|
|
|
103
147
|
input: UntagResourceCommandInput,
|
|
104
148
|
context: __SerdeContext
|
|
105
149
|
) => Promise<__HttpRequest>;
|
|
150
|
+
export declare const se_UpdateChannelCommand: (
|
|
151
|
+
input: UpdateChannelCommandInput,
|
|
152
|
+
context: __SerdeContext
|
|
153
|
+
) => Promise<__HttpRequest>;
|
|
106
154
|
export declare const se_UpdateSpaceCommand: (
|
|
107
155
|
input: UpdateSpaceCommandInput,
|
|
108
156
|
context: __SerdeContext
|
|
109
157
|
) => Promise<__HttpRequest>;
|
|
158
|
+
export declare const de_BatchAddChannelRoleToAccessorsCommand: (
|
|
159
|
+
output: __HttpResponse,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<BatchAddChannelRoleToAccessorsCommandOutput>;
|
|
110
162
|
export declare const de_BatchAddRoleCommand: (
|
|
111
163
|
output: __HttpResponse,
|
|
112
164
|
context: __SerdeContext
|
|
113
165
|
) => Promise<BatchAddRoleCommandOutput>;
|
|
166
|
+
export declare const de_BatchRemoveChannelRoleFromAccessorsCommand: (
|
|
167
|
+
output: __HttpResponse,
|
|
168
|
+
context: __SerdeContext
|
|
169
|
+
) => Promise<BatchRemoveChannelRoleFromAccessorsCommandOutput>;
|
|
114
170
|
export declare const de_BatchRemoveRoleCommand: (
|
|
115
171
|
output: __HttpResponse,
|
|
116
172
|
context: __SerdeContext
|
|
117
173
|
) => Promise<BatchRemoveRoleCommandOutput>;
|
|
174
|
+
export declare const de_CreateChannelCommand: (
|
|
175
|
+
output: __HttpResponse,
|
|
176
|
+
context: __SerdeContext
|
|
177
|
+
) => Promise<CreateChannelCommandOutput>;
|
|
118
178
|
export declare const de_CreateSpaceCommand: (
|
|
119
179
|
output: __HttpResponse,
|
|
120
180
|
context: __SerdeContext
|
|
@@ -127,10 +187,18 @@ export declare const de_DeregisterAdminCommand: (
|
|
|
127
187
|
output: __HttpResponse,
|
|
128
188
|
context: __SerdeContext
|
|
129
189
|
) => Promise<DeregisterAdminCommandOutput>;
|
|
190
|
+
export declare const de_GetChannelCommand: (
|
|
191
|
+
output: __HttpResponse,
|
|
192
|
+
context: __SerdeContext
|
|
193
|
+
) => Promise<GetChannelCommandOutput>;
|
|
130
194
|
export declare const de_GetSpaceCommand: (
|
|
131
195
|
output: __HttpResponse,
|
|
132
196
|
context: __SerdeContext
|
|
133
197
|
) => Promise<GetSpaceCommandOutput>;
|
|
198
|
+
export declare const de_ListChannelsCommand: (
|
|
199
|
+
output: __HttpResponse,
|
|
200
|
+
context: __SerdeContext
|
|
201
|
+
) => Promise<ListChannelsCommandOutput>;
|
|
134
202
|
export declare const de_ListSpacesCommand: (
|
|
135
203
|
output: __HttpResponse,
|
|
136
204
|
context: __SerdeContext
|
|
@@ -155,6 +223,10 @@ export declare const de_UntagResourceCommand: (
|
|
|
155
223
|
output: __HttpResponse,
|
|
156
224
|
context: __SerdeContext
|
|
157
225
|
) => Promise<UntagResourceCommandOutput>;
|
|
226
|
+
export declare const de_UpdateChannelCommand: (
|
|
227
|
+
output: __HttpResponse,
|
|
228
|
+
context: __SerdeContext
|
|
229
|
+
) => Promise<UpdateChannelCommandOutput>;
|
|
158
230
|
export declare const de_UpdateSpaceCommand: (
|
|
159
231
|
output: __HttpResponse,
|
|
160
232
|
context: __SerdeContext
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { GetChannelCommandInput } from "../commands/GetChannelCommand";
|
|
3
|
+
import { RepostspaceClient } from "../RepostspaceClient";
|
|
4
|
+
export declare const waitForChannelCreated: (
|
|
5
|
+
params: WaiterConfiguration<RepostspaceClient>,
|
|
6
|
+
input: GetChannelCommandInput
|
|
7
|
+
) => Promise<WaiterResult>;
|
|
8
|
+
export declare const waitUntilChannelCreated: (
|
|
9
|
+
params: WaiterConfiguration<RepostspaceClient>,
|
|
10
|
+
input: GetChannelCommandInput
|
|
11
|
+
) => Promise<WaiterResult>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { GetChannelCommandInput } from "../commands/GetChannelCommand";
|
|
3
|
+
import { RepostspaceClient } from "../RepostspaceClient";
|
|
4
|
+
export declare const waitForChannelDeleted: (
|
|
5
|
+
params: WaiterConfiguration<RepostspaceClient>,
|
|
6
|
+
input: GetChannelCommandInput
|
|
7
|
+
) => Promise<WaiterResult>;
|
|
8
|
+
export declare const waitUntilChannelDeleted: (
|
|
9
|
+
params: WaiterConfiguration<RepostspaceClient>,
|
|
10
|
+
input: GetChannelCommandInput
|
|
11
|
+
) => Promise<WaiterResult>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { GetSpaceCommandInput } from "../commands/GetSpaceCommand";
|
|
3
|
+
import { RepostspaceClient } from "../RepostspaceClient";
|
|
4
|
+
export declare const waitForSpaceCreated: (
|
|
5
|
+
params: WaiterConfiguration<RepostspaceClient>,
|
|
6
|
+
input: GetSpaceCommandInput
|
|
7
|
+
) => Promise<WaiterResult>;
|
|
8
|
+
export declare const waitUntilSpaceCreated: (
|
|
9
|
+
params: WaiterConfiguration<RepostspaceClient>,
|
|
10
|
+
input: GetSpaceCommandInput
|
|
11
|
+
) => Promise<WaiterResult>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { GetSpaceCommandInput } from "../commands/GetSpaceCommand";
|
|
3
|
+
import { RepostspaceClient } from "../RepostspaceClient";
|
|
4
|
+
export declare const waitForSpaceDeleted: (
|
|
5
|
+
params: WaiterConfiguration<RepostspaceClient>,
|
|
6
|
+
input: GetSpaceCommandInput
|
|
7
|
+
) => Promise<WaiterResult>;
|
|
8
|
+
export declare const waitUntilSpaceDeleted: (
|
|
9
|
+
params: WaiterConfiguration<RepostspaceClient>,
|
|
10
|
+
input: GetSpaceCommandInput
|
|
11
|
+
) => Promise<WaiterResult>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { GetChannelCommandInput } from "../commands/GetChannelCommand";
|
|
3
|
+
import { RepostspaceClient } from "../RepostspaceClient";
|
|
4
|
+
/**
|
|
5
|
+
*
|
|
6
|
+
* @deprecated Use waitUntilChannelCreated instead. waitForChannelCreated does not throw error in non-success cases.
|
|
7
|
+
*/
|
|
8
|
+
export declare const waitForChannelCreated: (params: WaiterConfiguration<RepostspaceClient>, input: GetChannelCommandInput) => Promise<WaiterResult>;
|
|
9
|
+
/**
|
|
10
|
+
*
|
|
11
|
+
* @param params - Waiter configuration options.
|
|
12
|
+
* @param input - The input to GetChannelCommand for polling.
|
|
13
|
+
*/
|
|
14
|
+
export declare const waitUntilChannelCreated: (params: WaiterConfiguration<RepostspaceClient>, input: GetChannelCommandInput) => Promise<WaiterResult>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { GetChannelCommandInput } from "../commands/GetChannelCommand";
|
|
3
|
+
import { RepostspaceClient } from "../RepostspaceClient";
|
|
4
|
+
/**
|
|
5
|
+
*
|
|
6
|
+
* @deprecated Use waitUntilChannelDeleted instead. waitForChannelDeleted does not throw error in non-success cases.
|
|
7
|
+
*/
|
|
8
|
+
export declare const waitForChannelDeleted: (params: WaiterConfiguration<RepostspaceClient>, input: GetChannelCommandInput) => Promise<WaiterResult>;
|
|
9
|
+
/**
|
|
10
|
+
*
|
|
11
|
+
* @param params - Waiter configuration options.
|
|
12
|
+
* @param input - The input to GetChannelCommand for polling.
|
|
13
|
+
*/
|
|
14
|
+
export declare const waitUntilChannelDeleted: (params: WaiterConfiguration<RepostspaceClient>, input: GetChannelCommandInput) => Promise<WaiterResult>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { GetSpaceCommandInput } from "../commands/GetSpaceCommand";
|
|
3
|
+
import { RepostspaceClient } from "../RepostspaceClient";
|
|
4
|
+
/**
|
|
5
|
+
*
|
|
6
|
+
* @deprecated Use waitUntilSpaceCreated instead. waitForSpaceCreated does not throw error in non-success cases.
|
|
7
|
+
*/
|
|
8
|
+
export declare const waitForSpaceCreated: (params: WaiterConfiguration<RepostspaceClient>, input: GetSpaceCommandInput) => Promise<WaiterResult>;
|
|
9
|
+
/**
|
|
10
|
+
*
|
|
11
|
+
* @param params - Waiter configuration options.
|
|
12
|
+
* @param input - The input to GetSpaceCommand for polling.
|
|
13
|
+
*/
|
|
14
|
+
export declare const waitUntilSpaceCreated: (params: WaiterConfiguration<RepostspaceClient>, input: GetSpaceCommandInput) => Promise<WaiterResult>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { GetSpaceCommandInput } from "../commands/GetSpaceCommand";
|
|
3
|
+
import { RepostspaceClient } from "../RepostspaceClient";
|
|
4
|
+
/**
|
|
5
|
+
*
|
|
6
|
+
* @deprecated Use waitUntilSpaceDeleted instead. waitForSpaceDeleted does not throw error in non-success cases.
|
|
7
|
+
*/
|
|
8
|
+
export declare const waitForSpaceDeleted: (params: WaiterConfiguration<RepostspaceClient>, input: GetSpaceCommandInput) => Promise<WaiterResult>;
|
|
9
|
+
/**
|
|
10
|
+
*
|
|
11
|
+
* @param params - Waiter configuration options.
|
|
12
|
+
* @param input - The input to GetSpaceCommand for polling.
|
|
13
|
+
*/
|
|
14
|
+
export declare const waitUntilSpaceDeleted: (params: WaiterConfiguration<RepostspaceClient>, input: GetSpaceCommandInput) => Promise<WaiterResult>;
|