@aws-sdk/client-ivschat 3.296.0 → 3.298.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 (62) hide show
  1. package/dist-cjs/commands/CreateChatTokenCommand.js +2 -3
  2. package/dist-cjs/commands/CreateLoggingConfigurationCommand.js +2 -3
  3. package/dist-cjs/commands/CreateRoomCommand.js +2 -3
  4. package/dist-cjs/commands/DeleteLoggingConfigurationCommand.js +2 -3
  5. package/dist-cjs/commands/DeleteMessageCommand.js +2 -3
  6. package/dist-cjs/commands/DeleteRoomCommand.js +2 -3
  7. package/dist-cjs/commands/DisconnectUserCommand.js +2 -3
  8. package/dist-cjs/commands/GetLoggingConfigurationCommand.js +2 -3
  9. package/dist-cjs/commands/GetRoomCommand.js +2 -3
  10. package/dist-cjs/commands/ListLoggingConfigurationsCommand.js +2 -3
  11. package/dist-cjs/commands/ListRoomsCommand.js +2 -3
  12. package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -3
  13. package/dist-cjs/commands/SendEventCommand.js +2 -3
  14. package/dist-cjs/commands/TagResourceCommand.js +2 -3
  15. package/dist-cjs/commands/UntagResourceCommand.js +2 -3
  16. package/dist-cjs/commands/UpdateLoggingConfigurationCommand.js +2 -3
  17. package/dist-cjs/commands/UpdateRoomCommand.js +2 -3
  18. package/dist-cjs/models/models_0.js +1 -190
  19. package/dist-es/commands/CreateChatTokenCommand.js +2 -3
  20. package/dist-es/commands/CreateLoggingConfigurationCommand.js +2 -3
  21. package/dist-es/commands/CreateRoomCommand.js +2 -3
  22. package/dist-es/commands/DeleteLoggingConfigurationCommand.js +2 -3
  23. package/dist-es/commands/DeleteMessageCommand.js +2 -3
  24. package/dist-es/commands/DeleteRoomCommand.js +2 -3
  25. package/dist-es/commands/DisconnectUserCommand.js +2 -3
  26. package/dist-es/commands/GetLoggingConfigurationCommand.js +2 -3
  27. package/dist-es/commands/GetRoomCommand.js +2 -3
  28. package/dist-es/commands/ListLoggingConfigurationsCommand.js +2 -3
  29. package/dist-es/commands/ListRoomsCommand.js +2 -3
  30. package/dist-es/commands/ListTagsForResourceCommand.js +2 -3
  31. package/dist-es/commands/SendEventCommand.js +2 -3
  32. package/dist-es/commands/TagResourceCommand.js +2 -3
  33. package/dist-es/commands/UntagResourceCommand.js +2 -3
  34. package/dist-es/commands/UpdateLoggingConfigurationCommand.js +2 -3
  35. package/dist-es/commands/UpdateRoomCommand.js +2 -3
  36. package/dist-es/models/models_0.js +0 -148
  37. package/dist-types/Ivschat.d.ts +18 -0
  38. package/dist-types/IvschatClient.d.ts +24 -4
  39. package/dist-types/commands/CreateChatTokenCommand.d.ts +16 -0
  40. package/dist-types/commands/CreateLoggingConfigurationCommand.d.ts +16 -0
  41. package/dist-types/commands/CreateRoomCommand.d.ts +16 -0
  42. package/dist-types/commands/DeleteLoggingConfigurationCommand.d.ts +16 -0
  43. package/dist-types/commands/DeleteMessageCommand.d.ts +16 -0
  44. package/dist-types/commands/DeleteRoomCommand.d.ts +16 -0
  45. package/dist-types/commands/DisconnectUserCommand.d.ts +16 -0
  46. package/dist-types/commands/GetLoggingConfigurationCommand.d.ts +16 -0
  47. package/dist-types/commands/GetRoomCommand.d.ts +16 -0
  48. package/dist-types/commands/ListLoggingConfigurationsCommand.d.ts +16 -0
  49. package/dist-types/commands/ListRoomsCommand.d.ts +16 -0
  50. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  51. package/dist-types/commands/SendEventCommand.d.ts +16 -0
  52. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  53. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  54. package/dist-types/commands/UpdateLoggingConfigurationCommand.d.ts +16 -0
  55. package/dist-types/commands/UpdateRoomCommand.d.ts +16 -0
  56. package/dist-types/models/IvschatServiceException.d.ts +2 -0
  57. package/dist-types/models/models_0.d.ts +136 -160
  58. package/dist-types/pagination/Interfaces.d.ts +3 -0
  59. package/dist-types/pagination/ListLoggingConfigurationsPaginator.d.ts +3 -0
  60. package/dist-types/pagination/ListRoomsPaginator.d.ts +3 -0
  61. package/dist-types/ts3.4/models/models_0.d.ts +0 -118
  62. package/package.json +4 -3
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvschatClient";
5
5
  import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UntagResourceCommand}.
8
10
  */
9
11
  export interface UntagResourceCommandInput extends UntagResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UntagResourceCommand}.
13
17
  */
14
18
  export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Removes tags from the resource with the specified ARN.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
34
+ * @returns {@link UntagResourceCommandOutput}
28
35
  * @see {@link UntagResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link UntagResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link IvschatClientResolvedConfig | config} for IvschatClient's `config` shape.
@@ -43,11 +50,20 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
43
50
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, IvschatClientResolvedConfig> {
44
51
  readonly input: UntagResourceCommandInput;
45
52
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
+ /**
54
+ * @public
55
+ */
46
56
  constructor(input: UntagResourceCommandInput);
47
57
  /**
48
58
  * @internal
49
59
  */
50
60
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IvschatClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
61
+ /**
62
+ * @internal
63
+ */
51
64
  private serialize;
65
+ /**
66
+ * @internal
67
+ */
52
68
  private deserialize;
53
69
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvschatClient";
5
5
  import { UpdateLoggingConfigurationRequest, UpdateLoggingConfigurationResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateLoggingConfigurationCommand}.
8
10
  */
9
11
  export interface UpdateLoggingConfigurationCommandInput extends UpdateLoggingConfigurationRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateLoggingConfigurationCommand}.
13
17
  */
14
18
  export interface UpdateLoggingConfigurationCommandOutput extends UpdateLoggingConfigurationResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates a specified logging configuration.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface UpdateLoggingConfigurationCommandOutput extends UpdateLoggingCo
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateLoggingConfigurationCommandInput - {@link UpdateLoggingConfigurationCommandInput}
34
+ * @returns {@link UpdateLoggingConfigurationCommandOutput}
28
35
  * @see {@link UpdateLoggingConfigurationCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateLoggingConfigurationCommandOutput} for command's `response` shape.
30
37
  * @see {@link IvschatClientResolvedConfig | config} for IvschatClient's `config` shape.
@@ -49,11 +56,20 @@ export interface UpdateLoggingConfigurationCommandOutput extends UpdateLoggingCo
49
56
  export declare class UpdateLoggingConfigurationCommand extends $Command<UpdateLoggingConfigurationCommandInput, UpdateLoggingConfigurationCommandOutput, IvschatClientResolvedConfig> {
50
57
  readonly input: UpdateLoggingConfigurationCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: UpdateLoggingConfigurationCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IvschatClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateLoggingConfigurationCommandInput, UpdateLoggingConfigurationCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvschatClient";
5
5
  import { UpdateRoomRequest, UpdateRoomResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateRoomCommand}.
8
10
  */
9
11
  export interface UpdateRoomCommandInput extends UpdateRoomRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateRoomCommand}.
13
17
  */
14
18
  export interface UpdateRoomCommandOutput extends UpdateRoomResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates a room’s configuration.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface UpdateRoomCommandOutput extends UpdateRoomResponse, __MetadataB
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateRoomCommandInput - {@link UpdateRoomCommandInput}
34
+ * @returns {@link UpdateRoomCommandOutput}
28
35
  * @see {@link UpdateRoomCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateRoomCommandOutput} for command's `response` shape.
30
37
  * @see {@link IvschatClientResolvedConfig | config} for IvschatClient's `config` shape.
@@ -46,11 +53,20 @@ export interface UpdateRoomCommandOutput extends UpdateRoomResponse, __MetadataB
46
53
  export declare class UpdateRoomCommand extends $Command<UpdateRoomCommandInput, UpdateRoomCommandOutput, IvschatClientResolvedConfig> {
47
54
  readonly input: UpdateRoomCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: UpdateRoomCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IvschatClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateRoomCommandInput, UpdateRoomCommandOutput>;
64
+ /**
65
+ * @internal
66
+ */
54
67
  private serialize;
68
+ /**
69
+ * @internal
70
+ */
55
71
  private deserialize;
56
72
  }
@@ -1,5 +1,7 @@
1
1
  import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
2
  /**
3
+ * @public
4
+ *
3
5
  * Base exception class for all service exceptions from Ivschat service.
4
6
  */
5
7
  export declare class IvschatServiceException extends __ServiceException {