@aws-sdk/client-ivschat 3.211.0 → 3.213.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/README.md +37 -5
  2. package/dist-cjs/Ivschat.js +75 -0
  3. package/dist-cjs/commands/CreateLoggingConfigurationCommand.js +46 -0
  4. package/dist-cjs/commands/DeleteLoggingConfigurationCommand.js +46 -0
  5. package/dist-cjs/commands/GetLoggingConfigurationCommand.js +46 -0
  6. package/dist-cjs/commands/ListLoggingConfigurationsCommand.js +46 -0
  7. package/dist-cjs/commands/UpdateLoggingConfigurationCommand.js +46 -0
  8. package/dist-cjs/commands/index.js +5 -0
  9. package/dist-cjs/models/models_0.js +121 -6
  10. package/dist-cjs/pagination/ListLoggingConfigurationsPaginator.js +36 -0
  11. package/dist-cjs/pagination/index.js +1 -0
  12. package/dist-cjs/protocols/Aws_restJson1.js +522 -16
  13. package/dist-es/Ivschat.js +75 -0
  14. package/dist-es/commands/CreateLoggingConfigurationCommand.js +42 -0
  15. package/dist-es/commands/DeleteLoggingConfigurationCommand.js +42 -0
  16. package/dist-es/commands/GetLoggingConfigurationCommand.js +42 -0
  17. package/dist-es/commands/ListLoggingConfigurationsCommand.js +42 -0
  18. package/dist-es/commands/UpdateLoggingConfigurationCommand.js +42 -0
  19. package/dist-es/commands/index.js +5 -0
  20. package/dist-es/models/models_0.js +105 -5
  21. package/dist-es/pagination/ListLoggingConfigurationsPaginator.js +32 -0
  22. package/dist-es/pagination/index.js +1 -0
  23. package/dist-es/protocols/Aws_restJson1.js +513 -17
  24. package/dist-types/Ivschat.d.ts +84 -8
  25. package/dist-types/IvschatClient.d.ts +44 -7
  26. package/dist-types/commands/CreateChatTokenCommand.d.ts +10 -3
  27. package/dist-types/commands/CreateLoggingConfigurationCommand.d.ts +38 -0
  28. package/dist-types/commands/DeleteLoggingConfigurationCommand.d.ts +37 -0
  29. package/dist-types/commands/GetLoggingConfigurationCommand.d.ts +37 -0
  30. package/dist-types/commands/ListLoggingConfigurationsCommand.d.ts +38 -0
  31. package/dist-types/commands/UpdateLoggingConfigurationCommand.d.ts +37 -0
  32. package/dist-types/commands/index.d.ts +5 -0
  33. package/dist-types/models/models_0.d.ts +473 -37
  34. package/dist-types/pagination/ListLoggingConfigurationsPaginator.d.ts +4 -0
  35. package/dist-types/pagination/index.d.ts +1 -0
  36. package/dist-types/protocols/Aws_restJson1.d.ts +15 -0
  37. package/dist-types/ts3.4/Ivschat.d.ts +85 -0
  38. package/dist-types/ts3.4/IvschatClient.d.ts +30 -0
  39. package/dist-types/ts3.4/commands/CreateLoggingConfigurationCommand.d.ts +41 -0
  40. package/dist-types/ts3.4/commands/DeleteLoggingConfigurationCommand.d.ts +37 -0
  41. package/dist-types/ts3.4/commands/GetLoggingConfigurationCommand.d.ts +41 -0
  42. package/dist-types/ts3.4/commands/ListLoggingConfigurationsCommand.d.ts +41 -0
  43. package/dist-types/ts3.4/commands/UpdateLoggingConfigurationCommand.d.ts +41 -0
  44. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  45. package/dist-types/ts3.4/models/models_0.d.ts +184 -9
  46. package/dist-types/ts3.4/pagination/ListLoggingConfigurationsPaginator.d.ts +11 -0
  47. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  48. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
  49. package/package.json +28 -28
@@ -68,6 +68,81 @@ export declare class ConflictException extends __BaseException {
68
68
  resourceType: ResourceType | string | undefined;
69
69
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
70
70
  }
71
+ export interface CloudWatchLogsDestinationConfiguration {
72
+ logGroupName: string | undefined;
73
+ }
74
+ export interface FirehoseDestinationConfiguration {
75
+ deliveryStreamName: string | undefined;
76
+ }
77
+ export interface S3DestinationConfiguration {
78
+ bucketName: string | undefined;
79
+ }
80
+ export declare type DestinationConfiguration =
81
+ | DestinationConfiguration.CloudWatchLogsMember
82
+ | DestinationConfiguration.FirehoseMember
83
+ | DestinationConfiguration.S3Member
84
+ | DestinationConfiguration.$UnknownMember;
85
+ export declare namespace DestinationConfiguration {
86
+ interface S3Member {
87
+ s3: S3DestinationConfiguration;
88
+ cloudWatchLogs?: never;
89
+ firehose?: never;
90
+ $unknown?: never;
91
+ }
92
+ interface CloudWatchLogsMember {
93
+ s3?: never;
94
+ cloudWatchLogs: CloudWatchLogsDestinationConfiguration;
95
+ firehose?: never;
96
+ $unknown?: never;
97
+ }
98
+ interface FirehoseMember {
99
+ s3?: never;
100
+ cloudWatchLogs?: never;
101
+ firehose: FirehoseDestinationConfiguration;
102
+ $unknown?: never;
103
+ }
104
+ interface $UnknownMember {
105
+ s3?: never;
106
+ cloudWatchLogs?: never;
107
+ firehose?: never;
108
+ $unknown: [string, any];
109
+ }
110
+ interface Visitor<T> {
111
+ s3: (value: S3DestinationConfiguration) => T;
112
+ cloudWatchLogs: (value: CloudWatchLogsDestinationConfiguration) => T;
113
+ firehose: (value: FirehoseDestinationConfiguration) => T;
114
+ _: (name: string, value: any) => T;
115
+ }
116
+ const visit: <T>(value: DestinationConfiguration, visitor: Visitor<T>) => T;
117
+ }
118
+ export interface CreateLoggingConfigurationRequest {
119
+ name?: string;
120
+ destinationConfiguration: DestinationConfiguration | undefined;
121
+ tags?: Record<string, string>;
122
+ }
123
+ export declare enum CreateLoggingConfigurationState {
124
+ ACTIVE = "ACTIVE",
125
+ }
126
+ export interface CreateLoggingConfigurationResponse {
127
+ arn?: string;
128
+ id?: string;
129
+ createTime?: Date;
130
+ updateTime?: Date;
131
+ name?: string;
132
+ destinationConfiguration?: DestinationConfiguration;
133
+ state?: CreateLoggingConfigurationState | string;
134
+ tags?: Record<string, string>;
135
+ }
136
+ export declare class ServiceQuotaExceededException extends __BaseException {
137
+ readonly name: "ServiceQuotaExceededException";
138
+ readonly $fault: "client";
139
+ resourceId: string | undefined;
140
+ resourceType: ResourceType | string | undefined;
141
+ limit: number | undefined;
142
+ constructor(
143
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
144
+ );
145
+ }
71
146
  export declare enum FallbackResult {
72
147
  ALLOW = "ALLOW",
73
148
  DENY = "DENY",
@@ -82,6 +157,7 @@ export interface CreateRoomRequest {
82
157
  maximumMessageLength?: number;
83
158
  messageReviewHandler?: MessageReviewHandler;
84
159
  tags?: Record<string, string>;
160
+ loggingConfigurationIdentifiers?: string[];
85
161
  }
86
162
  export interface CreateRoomResponse {
87
163
  arn?: string;
@@ -93,16 +169,10 @@ export interface CreateRoomResponse {
93
169
  maximumMessageLength?: number;
94
170
  messageReviewHandler?: MessageReviewHandler;
95
171
  tags?: Record<string, string>;
172
+ loggingConfigurationIdentifiers?: string[];
96
173
  }
97
- export declare class ServiceQuotaExceededException extends __BaseException {
98
- readonly name: "ServiceQuotaExceededException";
99
- readonly $fault: "client";
100
- resourceId: string | undefined;
101
- resourceType: ResourceType | string | undefined;
102
- limit: number | undefined;
103
- constructor(
104
- opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
105
- );
174
+ export interface DeleteLoggingConfigurationRequest {
175
+ identifier: string | undefined;
106
176
  }
107
177
  export interface DeleteMessageRequest {
108
178
  roomIdentifier: string | undefined;
@@ -131,6 +201,28 @@ export interface DisconnectUserRequest {
131
201
  reason?: string;
132
202
  }
133
203
  export interface DisconnectUserResponse {}
204
+ export interface GetLoggingConfigurationRequest {
205
+ identifier: string | undefined;
206
+ }
207
+ export declare enum LoggingConfigurationState {
208
+ ACTIVE = "ACTIVE",
209
+ CREATE_FAILED = "CREATE_FAILED",
210
+ CREATING = "CREATING",
211
+ DELETE_FAILED = "DELETE_FAILED",
212
+ DELETING = "DELETING",
213
+ UPDATE_FAILED = "UPDATE_FAILED",
214
+ UPDATING = "UPDATING",
215
+ }
216
+ export interface GetLoggingConfigurationResponse {
217
+ arn?: string;
218
+ id?: string;
219
+ createTime?: Date;
220
+ updateTime?: Date;
221
+ name?: string;
222
+ destinationConfiguration?: DestinationConfiguration;
223
+ state?: LoggingConfigurationState | string;
224
+ tags?: Record<string, string>;
225
+ }
134
226
  export interface GetRoomRequest {
135
227
  identifier: string | undefined;
136
228
  }
@@ -144,12 +236,32 @@ export interface GetRoomResponse {
144
236
  maximumMessageLength?: number;
145
237
  messageReviewHandler?: MessageReviewHandler;
146
238
  tags?: Record<string, string>;
239
+ loggingConfigurationIdentifiers?: string[];
240
+ }
241
+ export interface ListLoggingConfigurationsRequest {
242
+ nextToken?: string;
243
+ maxResults?: number;
244
+ }
245
+ export interface LoggingConfigurationSummary {
246
+ arn?: string;
247
+ id?: string;
248
+ createTime?: Date;
249
+ updateTime?: Date;
250
+ name?: string;
251
+ destinationConfiguration?: DestinationConfiguration;
252
+ state?: LoggingConfigurationState | string;
253
+ tags?: Record<string, string>;
254
+ }
255
+ export interface ListLoggingConfigurationsResponse {
256
+ loggingConfigurations: LoggingConfigurationSummary[] | undefined;
257
+ nextToken?: string;
147
258
  }
148
259
  export interface ListRoomsRequest {
149
260
  name?: string;
150
261
  nextToken?: string;
151
262
  maxResults?: number;
152
263
  messageReviewHandlerUri?: string;
264
+ loggingConfigurationIdentifier?: string;
153
265
  }
154
266
  export interface RoomSummary {
155
267
  arn?: string;
@@ -159,6 +271,7 @@ export interface RoomSummary {
159
271
  createTime?: Date;
160
272
  updateTime?: Date;
161
273
  tags?: Record<string, string>;
274
+ loggingConfigurationIdentifiers?: string[];
162
275
  }
163
276
  export interface ListRoomsResponse {
164
277
  rooms: RoomSummary[] | undefined;
@@ -195,12 +308,31 @@ export interface UntagResourceRequest {
195
308
  tagKeys: string[] | undefined;
196
309
  }
197
310
  export interface UntagResourceResponse {}
311
+ export interface UpdateLoggingConfigurationRequest {
312
+ identifier: string | undefined;
313
+ name?: string;
314
+ destinationConfiguration?: DestinationConfiguration;
315
+ }
316
+ export declare enum UpdateLoggingConfigurationState {
317
+ ACTIVE = "ACTIVE",
318
+ }
319
+ export interface UpdateLoggingConfigurationResponse {
320
+ arn?: string;
321
+ id?: string;
322
+ createTime?: Date;
323
+ updateTime?: Date;
324
+ name?: string;
325
+ destinationConfiguration?: DestinationConfiguration;
326
+ state?: UpdateLoggingConfigurationState | string;
327
+ tags?: Record<string, string>;
328
+ }
198
329
  export interface UpdateRoomRequest {
199
330
  identifier: string | undefined;
200
331
  name?: string;
201
332
  maximumMessageRatePerSecond?: number;
202
333
  maximumMessageLength?: number;
203
334
  messageReviewHandler?: MessageReviewHandler;
335
+ loggingConfigurationIdentifiers?: string[];
204
336
  }
205
337
  export interface UpdateRoomResponse {
206
338
  arn?: string;
@@ -212,6 +344,7 @@ export interface UpdateRoomResponse {
212
344
  maximumMessageLength?: number;
213
345
  messageReviewHandler?: MessageReviewHandler;
214
346
  tags?: Record<string, string>;
347
+ loggingConfigurationIdentifiers?: string[];
215
348
  }
216
349
  export declare const CreateChatTokenRequestFilterSensitiveLog: (
217
350
  obj: CreateChatTokenRequest
@@ -222,6 +355,24 @@ export declare const CreateChatTokenResponseFilterSensitiveLog: (
222
355
  export declare const ValidationExceptionFieldFilterSensitiveLog: (
223
356
  obj: ValidationExceptionField
224
357
  ) => any;
358
+ export declare const CloudWatchLogsDestinationConfigurationFilterSensitiveLog: (
359
+ obj: CloudWatchLogsDestinationConfiguration
360
+ ) => any;
361
+ export declare const FirehoseDestinationConfigurationFilterSensitiveLog: (
362
+ obj: FirehoseDestinationConfiguration
363
+ ) => any;
364
+ export declare const S3DestinationConfigurationFilterSensitiveLog: (
365
+ obj: S3DestinationConfiguration
366
+ ) => any;
367
+ export declare const DestinationConfigurationFilterSensitiveLog: (
368
+ obj: DestinationConfiguration
369
+ ) => any;
370
+ export declare const CreateLoggingConfigurationRequestFilterSensitiveLog: (
371
+ obj: CreateLoggingConfigurationRequest
372
+ ) => any;
373
+ export declare const CreateLoggingConfigurationResponseFilterSensitiveLog: (
374
+ obj: CreateLoggingConfigurationResponse
375
+ ) => any;
225
376
  export declare const MessageReviewHandlerFilterSensitiveLog: (
226
377
  obj: MessageReviewHandler
227
378
  ) => any;
@@ -231,6 +382,9 @@ export declare const CreateRoomRequestFilterSensitiveLog: (
231
382
  export declare const CreateRoomResponseFilterSensitiveLog: (
232
383
  obj: CreateRoomResponse
233
384
  ) => any;
385
+ export declare const DeleteLoggingConfigurationRequestFilterSensitiveLog: (
386
+ obj: DeleteLoggingConfigurationRequest
387
+ ) => any;
234
388
  export declare const DeleteMessageRequestFilterSensitiveLog: (
235
389
  obj: DeleteMessageRequest
236
390
  ) => any;
@@ -246,12 +400,27 @@ export declare const DisconnectUserRequestFilterSensitiveLog: (
246
400
  export declare const DisconnectUserResponseFilterSensitiveLog: (
247
401
  obj: DisconnectUserResponse
248
402
  ) => any;
403
+ export declare const GetLoggingConfigurationRequestFilterSensitiveLog: (
404
+ obj: GetLoggingConfigurationRequest
405
+ ) => any;
406
+ export declare const GetLoggingConfigurationResponseFilterSensitiveLog: (
407
+ obj: GetLoggingConfigurationResponse
408
+ ) => any;
249
409
  export declare const GetRoomRequestFilterSensitiveLog: (
250
410
  obj: GetRoomRequest
251
411
  ) => any;
252
412
  export declare const GetRoomResponseFilterSensitiveLog: (
253
413
  obj: GetRoomResponse
254
414
  ) => any;
415
+ export declare const ListLoggingConfigurationsRequestFilterSensitiveLog: (
416
+ obj: ListLoggingConfigurationsRequest
417
+ ) => any;
418
+ export declare const LoggingConfigurationSummaryFilterSensitiveLog: (
419
+ obj: LoggingConfigurationSummary
420
+ ) => any;
421
+ export declare const ListLoggingConfigurationsResponseFilterSensitiveLog: (
422
+ obj: ListLoggingConfigurationsResponse
423
+ ) => any;
255
424
  export declare const ListRoomsRequestFilterSensitiveLog: (
256
425
  obj: ListRoomsRequest
257
426
  ) => any;
@@ -283,6 +452,12 @@ export declare const UntagResourceRequestFilterSensitiveLog: (
283
452
  export declare const UntagResourceResponseFilterSensitiveLog: (
284
453
  obj: UntagResourceResponse
285
454
  ) => any;
455
+ export declare const UpdateLoggingConfigurationRequestFilterSensitiveLog: (
456
+ obj: UpdateLoggingConfigurationRequest
457
+ ) => any;
458
+ export declare const UpdateLoggingConfigurationResponseFilterSensitiveLog: (
459
+ obj: UpdateLoggingConfigurationResponse
460
+ ) => any;
286
461
  export declare const UpdateRoomRequestFilterSensitiveLog: (
287
462
  obj: UpdateRoomRequest
288
463
  ) => any;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListLoggingConfigurationsCommandInput,
4
+ ListLoggingConfigurationsCommandOutput,
5
+ } from "../commands/ListLoggingConfigurationsCommand";
6
+ import { IvschatPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListLoggingConfigurations(
8
+ config: IvschatPaginationConfiguration,
9
+ input: ListLoggingConfigurationsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListLoggingConfigurationsCommandOutput>;
@@ -1,2 +1,3 @@
1
1
  export * from "./Interfaces";
2
+ export * from "./ListLoggingConfigurationsPaginator";
2
3
  export * from "./ListRoomsPaginator";
@@ -7,10 +7,18 @@ import {
7
7
  CreateChatTokenCommandInput,
8
8
  CreateChatTokenCommandOutput,
9
9
  } from "../commands/CreateChatTokenCommand";
10
+ import {
11
+ CreateLoggingConfigurationCommandInput,
12
+ CreateLoggingConfigurationCommandOutput,
13
+ } from "../commands/CreateLoggingConfigurationCommand";
10
14
  import {
11
15
  CreateRoomCommandInput,
12
16
  CreateRoomCommandOutput,
13
17
  } from "../commands/CreateRoomCommand";
18
+ import {
19
+ DeleteLoggingConfigurationCommandInput,
20
+ DeleteLoggingConfigurationCommandOutput,
21
+ } from "../commands/DeleteLoggingConfigurationCommand";
14
22
  import {
15
23
  DeleteMessageCommandInput,
16
24
  DeleteMessageCommandOutput,
@@ -23,10 +31,18 @@ import {
23
31
  DisconnectUserCommandInput,
24
32
  DisconnectUserCommandOutput,
25
33
  } from "../commands/DisconnectUserCommand";
34
+ import {
35
+ GetLoggingConfigurationCommandInput,
36
+ GetLoggingConfigurationCommandOutput,
37
+ } from "../commands/GetLoggingConfigurationCommand";
26
38
  import {
27
39
  GetRoomCommandInput,
28
40
  GetRoomCommandOutput,
29
41
  } from "../commands/GetRoomCommand";
42
+ import {
43
+ ListLoggingConfigurationsCommandInput,
44
+ ListLoggingConfigurationsCommandOutput,
45
+ } from "../commands/ListLoggingConfigurationsCommand";
30
46
  import {
31
47
  ListRoomsCommandInput,
32
48
  ListRoomsCommandOutput,
@@ -47,6 +63,10 @@ import {
47
63
  UntagResourceCommandInput,
48
64
  UntagResourceCommandOutput,
49
65
  } from "../commands/UntagResourceCommand";
66
+ import {
67
+ UpdateLoggingConfigurationCommandInput,
68
+ UpdateLoggingConfigurationCommandOutput,
69
+ } from "../commands/UpdateLoggingConfigurationCommand";
50
70
  import {
51
71
  UpdateRoomCommandInput,
52
72
  UpdateRoomCommandOutput,
@@ -55,10 +75,18 @@ export declare const serializeAws_restJson1CreateChatTokenCommand: (
55
75
  input: CreateChatTokenCommandInput,
56
76
  context: __SerdeContext
57
77
  ) => Promise<__HttpRequest>;
78
+ export declare const serializeAws_restJson1CreateLoggingConfigurationCommand: (
79
+ input: CreateLoggingConfigurationCommandInput,
80
+ context: __SerdeContext
81
+ ) => Promise<__HttpRequest>;
58
82
  export declare const serializeAws_restJson1CreateRoomCommand: (
59
83
  input: CreateRoomCommandInput,
60
84
  context: __SerdeContext
61
85
  ) => Promise<__HttpRequest>;
86
+ export declare const serializeAws_restJson1DeleteLoggingConfigurationCommand: (
87
+ input: DeleteLoggingConfigurationCommandInput,
88
+ context: __SerdeContext
89
+ ) => Promise<__HttpRequest>;
62
90
  export declare const serializeAws_restJson1DeleteMessageCommand: (
63
91
  input: DeleteMessageCommandInput,
64
92
  context: __SerdeContext
@@ -71,10 +99,18 @@ export declare const serializeAws_restJson1DisconnectUserCommand: (
71
99
  input: DisconnectUserCommandInput,
72
100
  context: __SerdeContext
73
101
  ) => Promise<__HttpRequest>;
102
+ export declare const serializeAws_restJson1GetLoggingConfigurationCommand: (
103
+ input: GetLoggingConfigurationCommandInput,
104
+ context: __SerdeContext
105
+ ) => Promise<__HttpRequest>;
74
106
  export declare const serializeAws_restJson1GetRoomCommand: (
75
107
  input: GetRoomCommandInput,
76
108
  context: __SerdeContext
77
109
  ) => Promise<__HttpRequest>;
110
+ export declare const serializeAws_restJson1ListLoggingConfigurationsCommand: (
111
+ input: ListLoggingConfigurationsCommandInput,
112
+ context: __SerdeContext
113
+ ) => Promise<__HttpRequest>;
78
114
  export declare const serializeAws_restJson1ListRoomsCommand: (
79
115
  input: ListRoomsCommandInput,
80
116
  context: __SerdeContext
@@ -95,6 +131,10 @@ export declare const serializeAws_restJson1UntagResourceCommand: (
95
131
  input: UntagResourceCommandInput,
96
132
  context: __SerdeContext
97
133
  ) => Promise<__HttpRequest>;
134
+ export declare const serializeAws_restJson1UpdateLoggingConfigurationCommand: (
135
+ input: UpdateLoggingConfigurationCommandInput,
136
+ context: __SerdeContext
137
+ ) => Promise<__HttpRequest>;
98
138
  export declare const serializeAws_restJson1UpdateRoomCommand: (
99
139
  input: UpdateRoomCommandInput,
100
140
  context: __SerdeContext
@@ -103,10 +143,18 @@ export declare const deserializeAws_restJson1CreateChatTokenCommand: (
103
143
  output: __HttpResponse,
104
144
  context: __SerdeContext
105
145
  ) => Promise<CreateChatTokenCommandOutput>;
146
+ export declare const deserializeAws_restJson1CreateLoggingConfigurationCommand: (
147
+ output: __HttpResponse,
148
+ context: __SerdeContext
149
+ ) => Promise<CreateLoggingConfigurationCommandOutput>;
106
150
  export declare const deserializeAws_restJson1CreateRoomCommand: (
107
151
  output: __HttpResponse,
108
152
  context: __SerdeContext
109
153
  ) => Promise<CreateRoomCommandOutput>;
154
+ export declare const deserializeAws_restJson1DeleteLoggingConfigurationCommand: (
155
+ output: __HttpResponse,
156
+ context: __SerdeContext
157
+ ) => Promise<DeleteLoggingConfigurationCommandOutput>;
110
158
  export declare const deserializeAws_restJson1DeleteMessageCommand: (
111
159
  output: __HttpResponse,
112
160
  context: __SerdeContext
@@ -119,10 +167,18 @@ export declare const deserializeAws_restJson1DisconnectUserCommand: (
119
167
  output: __HttpResponse,
120
168
  context: __SerdeContext
121
169
  ) => Promise<DisconnectUserCommandOutput>;
170
+ export declare const deserializeAws_restJson1GetLoggingConfigurationCommand: (
171
+ output: __HttpResponse,
172
+ context: __SerdeContext
173
+ ) => Promise<GetLoggingConfigurationCommandOutput>;
122
174
  export declare const deserializeAws_restJson1GetRoomCommand: (
123
175
  output: __HttpResponse,
124
176
  context: __SerdeContext
125
177
  ) => Promise<GetRoomCommandOutput>;
178
+ export declare const deserializeAws_restJson1ListLoggingConfigurationsCommand: (
179
+ output: __HttpResponse,
180
+ context: __SerdeContext
181
+ ) => Promise<ListLoggingConfigurationsCommandOutput>;
126
182
  export declare const deserializeAws_restJson1ListRoomsCommand: (
127
183
  output: __HttpResponse,
128
184
  context: __SerdeContext
@@ -143,6 +199,10 @@ export declare const deserializeAws_restJson1UntagResourceCommand: (
143
199
  output: __HttpResponse,
144
200
  context: __SerdeContext
145
201
  ) => Promise<UntagResourceCommandOutput>;
202
+ export declare const deserializeAws_restJson1UpdateLoggingConfigurationCommand: (
203
+ output: __HttpResponse,
204
+ context: __SerdeContext
205
+ ) => Promise<UpdateLoggingConfigurationCommandOutput>;
146
206
  export declare const deserializeAws_restJson1UpdateRoomCommand: (
147
207
  output: __HttpResponse,
148
208
  context: __SerdeContext
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-ivschat",
3
3
  "description": "AWS SDK for JavaScript Ivschat Client for Node.js, Browser and React Native",
4
- "version": "3.211.0",
4
+ "version": "3.213.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -19,36 +19,36 @@
19
19
  "dependencies": {
20
20
  "@aws-crypto/sha256-browser": "2.0.0",
21
21
  "@aws-crypto/sha256-js": "2.0.0",
22
- "@aws-sdk/client-sts": "3.211.0",
23
- "@aws-sdk/config-resolver": "3.209.0",
24
- "@aws-sdk/credential-provider-node": "3.211.0",
25
- "@aws-sdk/fetch-http-handler": "3.208.0",
26
- "@aws-sdk/hash-node": "3.208.0",
27
- "@aws-sdk/invalid-dependency": "3.208.0",
28
- "@aws-sdk/middleware-content-length": "3.208.0",
29
- "@aws-sdk/middleware-endpoint": "3.208.0",
30
- "@aws-sdk/middleware-host-header": "3.208.0",
31
- "@aws-sdk/middleware-logger": "3.208.0",
32
- "@aws-sdk/middleware-recursion-detection": "3.208.0",
33
- "@aws-sdk/middleware-retry": "3.209.0",
34
- "@aws-sdk/middleware-serde": "3.208.0",
35
- "@aws-sdk/middleware-signing": "3.208.0",
36
- "@aws-sdk/middleware-stack": "3.208.0",
37
- "@aws-sdk/middleware-user-agent": "3.208.0",
38
- "@aws-sdk/node-config-provider": "3.209.0",
39
- "@aws-sdk/node-http-handler": "3.208.0",
40
- "@aws-sdk/protocol-http": "3.208.0",
41
- "@aws-sdk/smithy-client": "3.209.0",
42
- "@aws-sdk/types": "3.208.0",
43
- "@aws-sdk/url-parser": "3.208.0",
22
+ "@aws-sdk/client-sts": "3.213.0",
23
+ "@aws-sdk/config-resolver": "3.212.0",
24
+ "@aws-sdk/credential-provider-node": "3.212.0",
25
+ "@aws-sdk/fetch-http-handler": "3.212.0",
26
+ "@aws-sdk/hash-node": "3.212.0",
27
+ "@aws-sdk/invalid-dependency": "3.212.0",
28
+ "@aws-sdk/middleware-content-length": "3.212.0",
29
+ "@aws-sdk/middleware-endpoint": "3.212.0",
30
+ "@aws-sdk/middleware-host-header": "3.212.0",
31
+ "@aws-sdk/middleware-logger": "3.212.0",
32
+ "@aws-sdk/middleware-recursion-detection": "3.212.0",
33
+ "@aws-sdk/middleware-retry": "3.212.0",
34
+ "@aws-sdk/middleware-serde": "3.212.0",
35
+ "@aws-sdk/middleware-signing": "3.212.0",
36
+ "@aws-sdk/middleware-stack": "3.212.0",
37
+ "@aws-sdk/middleware-user-agent": "3.212.0",
38
+ "@aws-sdk/node-config-provider": "3.212.0",
39
+ "@aws-sdk/node-http-handler": "3.212.0",
40
+ "@aws-sdk/protocol-http": "3.212.0",
41
+ "@aws-sdk/smithy-client": "3.212.0",
42
+ "@aws-sdk/types": "3.212.0",
43
+ "@aws-sdk/url-parser": "3.212.0",
44
44
  "@aws-sdk/util-base64": "3.208.0",
45
45
  "@aws-sdk/util-body-length-browser": "3.188.0",
46
46
  "@aws-sdk/util-body-length-node": "3.208.0",
47
- "@aws-sdk/util-defaults-mode-browser": "3.209.0",
48
- "@aws-sdk/util-defaults-mode-node": "3.209.0",
49
- "@aws-sdk/util-endpoints": "3.211.0",
50
- "@aws-sdk/util-user-agent-browser": "3.208.0",
51
- "@aws-sdk/util-user-agent-node": "3.209.0",
47
+ "@aws-sdk/util-defaults-mode-browser": "3.212.0",
48
+ "@aws-sdk/util-defaults-mode-node": "3.212.0",
49
+ "@aws-sdk/util-endpoints": "3.212.0",
50
+ "@aws-sdk/util-user-agent-browser": "3.212.0",
51
+ "@aws-sdk/util-user-agent-node": "3.212.0",
52
52
  "@aws-sdk/util-utf8-browser": "3.188.0",
53
53
  "@aws-sdk/util-utf8-node": "3.208.0",
54
54
  "tslib": "^2.3.1"