@aws-sdk/client-ivs-realtime 3.329.0 → 3.335.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 (69) hide show
  1. package/README.md +82 -1
  2. package/dist-cjs/IVSRealTime.js +10 -0
  3. package/dist-cjs/commands/GetParticipantCommand.js +45 -0
  4. package/dist-cjs/commands/GetStageSessionCommand.js +45 -0
  5. package/dist-cjs/commands/ListParticipantEventsCommand.js +45 -0
  6. package/dist-cjs/commands/ListParticipantsCommand.js +45 -0
  7. package/dist-cjs/commands/ListStageSessionsCommand.js +45 -0
  8. package/dist-cjs/commands/index.js +5 -0
  9. package/dist-cjs/models/models_0.js +19 -1
  10. package/dist-cjs/pagination/ListParticipantEventsPaginator.js +29 -0
  11. package/dist-cjs/pagination/ListParticipantsPaginator.js +29 -0
  12. package/dist-cjs/pagination/ListStageSessionsPaginator.js +29 -0
  13. package/dist-cjs/pagination/index.js +3 -0
  14. package/dist-cjs/protocols/Aws_restJson1.js +382 -2
  15. package/dist-es/IVSRealTime.js +10 -0
  16. package/dist-es/commands/GetParticipantCommand.js +41 -0
  17. package/dist-es/commands/GetStageSessionCommand.js +41 -0
  18. package/dist-es/commands/ListParticipantEventsCommand.js +41 -0
  19. package/dist-es/commands/ListParticipantsCommand.js +41 -0
  20. package/dist-es/commands/ListStageSessionsCommand.js +41 -0
  21. package/dist-es/commands/index.js +5 -0
  22. package/dist-es/models/models_0.js +18 -0
  23. package/dist-es/pagination/ListParticipantEventsPaginator.js +25 -0
  24. package/dist-es/pagination/ListParticipantsPaginator.js +25 -0
  25. package/dist-es/pagination/ListStageSessionsPaginator.js +25 -0
  26. package/dist-es/pagination/index.js +3 -0
  27. package/dist-es/protocols/Aws_restJson1.js +372 -2
  28. package/dist-types/IVSRealTime.d.ts +77 -1
  29. package/dist-types/IVSRealTimeClient.d.ts +52 -5
  30. package/dist-types/commands/CreateParticipantTokenCommand.d.ts +5 -3
  31. package/dist-types/commands/DisconnectParticipantCommand.d.ts +2 -1
  32. package/dist-types/commands/GetParticipantCommand.d.ts +89 -0
  33. package/dist-types/commands/GetStageSessionCommand.d.ts +83 -0
  34. package/dist-types/commands/ListParticipantEventsCommand.d.ts +89 -0
  35. package/dist-types/commands/ListParticipantsCommand.d.ts +90 -0
  36. package/dist-types/commands/ListStageSessionsCommand.d.ts +84 -0
  37. package/dist-types/commands/ListStagesCommand.d.ts +2 -1
  38. package/dist-types/commands/index.d.ts +5 -0
  39. package/dist-types/endpoint/EndpointParameters.d.ts +2 -1
  40. package/dist-types/models/models_0.d.ts +405 -33
  41. package/dist-types/pagination/ListParticipantEventsPaginator.d.ts +7 -0
  42. package/dist-types/pagination/ListParticipantsPaginator.d.ts +7 -0
  43. package/dist-types/pagination/ListStageSessionsPaginator.d.ts +7 -0
  44. package/dist-types/pagination/index.d.ts +3 -0
  45. package/dist-types/protocols/Aws_restJson1.d.ts +47 -2
  46. package/dist-types/runtimeConfig.browser.d.ts +12 -12
  47. package/dist-types/runtimeConfig.d.ts +9 -9
  48. package/dist-types/runtimeConfig.native.d.ts +13 -13
  49. package/dist-types/runtimeConfig.shared.d.ts +4 -4
  50. package/dist-types/ts3.4/IVSRealTime.d.ts +85 -0
  51. package/dist-types/ts3.4/IVSRealTimeClient.d.ts +37 -5
  52. package/dist-types/ts3.4/commands/GetParticipantCommand.d.ts +37 -0
  53. package/dist-types/ts3.4/commands/GetStageSessionCommand.d.ts +37 -0
  54. package/dist-types/ts3.4/commands/ListParticipantEventsCommand.d.ts +41 -0
  55. package/dist-types/ts3.4/commands/ListParticipantsCommand.d.ts +37 -0
  56. package/dist-types/ts3.4/commands/ListStageSessionsCommand.d.ts +38 -0
  57. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  58. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -2
  59. package/dist-types/ts3.4/models/models_0.d.ts +103 -0
  60. package/dist-types/ts3.4/pagination/ListParticipantEventsPaginator.d.ts +11 -0
  61. package/dist-types/ts3.4/pagination/ListParticipantsPaginator.d.ts +11 -0
  62. package/dist-types/ts3.4/pagination/ListStageSessionsPaginator.d.ts +11 -0
  63. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  64. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +62 -2
  65. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +18 -15
  66. package/dist-types/ts3.4/runtimeConfig.d.ts +12 -12
  67. package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -15
  68. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -4
  69. package/package.json +7 -6
@@ -1,11 +1,16 @@
1
- import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
- import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
1
+ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
2
+ import { SerdeContext as __SerdeContext } from "@smithy/types";
3
3
  import { CreateParticipantTokenCommandInput, CreateParticipantTokenCommandOutput } from "../commands/CreateParticipantTokenCommand";
4
4
  import { CreateStageCommandInput, CreateStageCommandOutput } from "../commands/CreateStageCommand";
5
5
  import { DeleteStageCommandInput, DeleteStageCommandOutput } from "../commands/DeleteStageCommand";
6
6
  import { DisconnectParticipantCommandInput, DisconnectParticipantCommandOutput } from "../commands/DisconnectParticipantCommand";
7
+ import { GetParticipantCommandInput, GetParticipantCommandOutput } from "../commands/GetParticipantCommand";
7
8
  import { GetStageCommandInput, GetStageCommandOutput } from "../commands/GetStageCommand";
9
+ import { GetStageSessionCommandInput, GetStageSessionCommandOutput } from "../commands/GetStageSessionCommand";
10
+ import { ListParticipantEventsCommandInput, ListParticipantEventsCommandOutput } from "../commands/ListParticipantEventsCommand";
11
+ import { ListParticipantsCommandInput, ListParticipantsCommandOutput } from "../commands/ListParticipantsCommand";
8
12
  import { ListStagesCommandInput, ListStagesCommandOutput } from "../commands/ListStagesCommand";
13
+ import { ListStageSessionsCommandInput, ListStageSessionsCommandOutput } from "../commands/ListStageSessionsCommand";
9
14
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
10
15
  import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
11
16
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
@@ -26,14 +31,34 @@ export declare const se_DeleteStageCommand: (input: DeleteStageCommandInput, con
26
31
  * serializeAws_restJson1DisconnectParticipantCommand
27
32
  */
28
33
  export declare const se_DisconnectParticipantCommand: (input: DisconnectParticipantCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
34
+ /**
35
+ * serializeAws_restJson1GetParticipantCommand
36
+ */
37
+ export declare const se_GetParticipantCommand: (input: GetParticipantCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
29
38
  /**
30
39
  * serializeAws_restJson1GetStageCommand
31
40
  */
32
41
  export declare const se_GetStageCommand: (input: GetStageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
42
+ /**
43
+ * serializeAws_restJson1GetStageSessionCommand
44
+ */
45
+ export declare const se_GetStageSessionCommand: (input: GetStageSessionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
46
+ /**
47
+ * serializeAws_restJson1ListParticipantEventsCommand
48
+ */
49
+ export declare const se_ListParticipantEventsCommand: (input: ListParticipantEventsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
50
+ /**
51
+ * serializeAws_restJson1ListParticipantsCommand
52
+ */
53
+ export declare const se_ListParticipantsCommand: (input: ListParticipantsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
33
54
  /**
34
55
  * serializeAws_restJson1ListStagesCommand
35
56
  */
36
57
  export declare const se_ListStagesCommand: (input: ListStagesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
58
+ /**
59
+ * serializeAws_restJson1ListStageSessionsCommand
60
+ */
61
+ export declare const se_ListStageSessionsCommand: (input: ListStageSessionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
37
62
  /**
38
63
  * serializeAws_restJson1ListTagsForResourceCommand
39
64
  */
@@ -66,14 +91,34 @@ export declare const de_DeleteStageCommand: (output: __HttpResponse, context: __
66
91
  * deserializeAws_restJson1DisconnectParticipantCommand
67
92
  */
68
93
  export declare const de_DisconnectParticipantCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisconnectParticipantCommandOutput>;
94
+ /**
95
+ * deserializeAws_restJson1GetParticipantCommand
96
+ */
97
+ export declare const de_GetParticipantCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetParticipantCommandOutput>;
69
98
  /**
70
99
  * deserializeAws_restJson1GetStageCommand
71
100
  */
72
101
  export declare const de_GetStageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetStageCommandOutput>;
102
+ /**
103
+ * deserializeAws_restJson1GetStageSessionCommand
104
+ */
105
+ export declare const de_GetStageSessionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetStageSessionCommandOutput>;
106
+ /**
107
+ * deserializeAws_restJson1ListParticipantEventsCommand
108
+ */
109
+ export declare const de_ListParticipantEventsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListParticipantEventsCommandOutput>;
110
+ /**
111
+ * deserializeAws_restJson1ListParticipantsCommand
112
+ */
113
+ export declare const de_ListParticipantsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListParticipantsCommandOutput>;
73
114
  /**
74
115
  * deserializeAws_restJson1ListStagesCommand
75
116
  */
76
117
  export declare const de_ListStagesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListStagesCommandOutput>;
118
+ /**
119
+ * deserializeAws_restJson1ListStageSessionsCommand
120
+ */
121
+ export declare const de_ListStageSessionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListStageSessionsCommandOutput>;
77
122
  /**
78
123
  * deserializeAws_restJson1ListTagsForResourceCommand
79
124
  */
@@ -7,26 +7,26 @@ export declare const getRuntimeConfig: (config: IVSRealTimeClientConfig) => {
7
7
  runtime: string;
8
8
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
9
9
  bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
10
+ credentialDefaultProvider: (input: any) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
11
11
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
12
+ maxAttempts: (number | import("@smithy/types").Provider<number>) & (number | import("@aws-sdk/types").Provider<number>);
13
13
  region: string | import("@aws-sdk/types").Provider<any>;
14
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
- retryMode: string | import("@aws-sdk/types").Provider<string>;
14
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@smithy/protocol-http").HttpHandler) | RequestHandler;
15
+ retryMode: string | import("@smithy/types").Provider<string>;
16
16
  sha256: import("@aws-sdk/types").HashConstructor;
17
- streamCollector: import("@aws-sdk/types").StreamCollector;
18
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
17
+ streamCollector: import("@smithy/types").StreamCollector;
18
+ useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@aws-sdk/types").Provider<boolean>);
19
+ useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@aws-sdk/types").Provider<boolean>);
20
20
  apiVersion: string;
21
21
  urlParser: import("@aws-sdk/types").UrlParser;
22
- base64Decoder: import("@aws-sdk/types").Decoder;
23
- base64Encoder: import("@aws-sdk/types").Encoder;
24
- utf8Decoder: import("@aws-sdk/types").Decoder;
25
- utf8Encoder: import("@aws-sdk/types").Encoder;
22
+ base64Decoder: import("@smithy/types").Decoder;
23
+ base64Encoder: import("@smithy/types").Encoder;
24
+ utf8Decoder: import("@smithy/types").Decoder;
25
+ utf8Encoder: import("@smithy/types").Encoder;
26
26
  disableHostPrefix: boolean;
27
27
  serviceId: string;
28
28
  logger: import("@aws-sdk/types").Logger;
29
- endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>)) | undefined;
29
+ endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@smithy/types").Provider<import("@aws-sdk/types").EndpointV2>)) | undefined;
30
30
  endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
31
31
  logger?: import("@aws-sdk/types").Logger | undefined;
32
32
  }) => import("@aws-sdk/types").EndpointV2;
@@ -7,26 +7,26 @@ export declare const getRuntimeConfig: (config: IVSRealTimeClientConfig) => {
7
7
  runtime: string;
8
8
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
9
9
  bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
10
+ credentialDefaultProvider: (input: any) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
11
11
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
12
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
13
  region: string | import("@aws-sdk/types").Provider<string>;
14
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
- retryMode: string | import("@aws-sdk/types").Provider<string>;
14
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@smithy/protocol-http").HttpHandler) | RequestHandler;
15
+ retryMode: string | import("@smithy/types").Provider<string>;
16
16
  sha256: import("@aws-sdk/types").HashConstructor;
17
- streamCollector: import("@aws-sdk/types").StreamCollector;
17
+ streamCollector: import("@smithy/types").StreamCollector;
18
18
  useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
19
  useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
20
  apiVersion: string;
21
21
  urlParser: import("@aws-sdk/types").UrlParser;
22
- base64Decoder: import("@aws-sdk/types").Decoder;
23
- base64Encoder: import("@aws-sdk/types").Encoder;
24
- utf8Decoder: import("@aws-sdk/types").Decoder;
25
- utf8Encoder: import("@aws-sdk/types").Encoder;
22
+ base64Decoder: import("@smithy/types").Decoder;
23
+ base64Encoder: import("@smithy/types").Encoder;
24
+ utf8Decoder: import("@smithy/types").Decoder;
25
+ utf8Encoder: import("@smithy/types").Encoder;
26
26
  disableHostPrefix: boolean;
27
27
  serviceId: string;
28
28
  logger: import("@aws-sdk/types").Logger;
29
- endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>)) | undefined;
29
+ endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@smithy/types").Provider<import("@aws-sdk/types").EndpointV2>)) | undefined;
30
30
  endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
31
31
  logger?: import("@aws-sdk/types").Logger | undefined;
32
32
  }) => import("@aws-sdk/types").EndpointV2;
@@ -5,27 +5,27 @@ import { IVSRealTimeClientConfig } from "./IVSRealTimeClient";
5
5
  export declare const getRuntimeConfig: (config: IVSRealTimeClientConfig) => {
6
6
  runtime: string;
7
7
  sha256: import("@aws-sdk/types").HashConstructor;
8
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
8
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@smithy/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
9
9
  apiVersion: string;
10
10
  urlParser: import("@aws-sdk/types").UrlParser;
11
11
  bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
- streamCollector: import("@aws-sdk/types").StreamCollector;
13
- base64Decoder: import("@aws-sdk/types").Decoder;
14
- base64Encoder: import("@aws-sdk/types").Encoder;
15
- utf8Decoder: import("@aws-sdk/types").Decoder;
16
- utf8Encoder: import("@aws-sdk/types").Encoder;
12
+ streamCollector: import("@smithy/types").StreamCollector;
13
+ base64Decoder: import("@smithy/types").Decoder;
14
+ base64Encoder: import("@smithy/types").Encoder;
15
+ utf8Decoder: import("@smithy/types").Decoder;
16
+ utf8Encoder: import("@smithy/types").Encoder;
17
17
  disableHostPrefix: boolean;
18
18
  serviceId: string;
19
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
+ useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@aws-sdk/types").Provider<boolean>);
20
+ useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@aws-sdk/types").Provider<boolean>);
21
21
  region: string | import("@aws-sdk/types").Provider<any>;
22
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
22
+ credentialDefaultProvider: (input: any) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
23
23
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
24
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
25
- retryMode: string | import("@aws-sdk/types").Provider<string>;
24
+ maxAttempts: (number | import("@smithy/types").Provider<number>) & (number | import("@aws-sdk/types").Provider<number>);
25
+ retryMode: string | import("@smithy/types").Provider<string>;
26
26
  logger: import("@aws-sdk/types").Logger;
27
- defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
28
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2> | undefined;
27
+ defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
28
+ endpoint?: string | import("@aws-sdk/types").EndpointV2 | (import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> & import("@smithy/types").Provider<import("@smithy/types").Endpoint>) | (import("@aws-sdk/types").Endpoint & import("@smithy/types").Endpoint) | (import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2> & import("@smithy/types").Provider<import("@aws-sdk/types").EndpointV2>) | undefined;
29
29
  endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
30
30
  logger?: import("@aws-sdk/types").Logger | undefined;
31
31
  }) => import("@aws-sdk/types").EndpointV2;
@@ -4,8 +4,8 @@ import { IVSRealTimeClientConfig } from "./IVSRealTimeClient";
4
4
  */
5
5
  export declare const getRuntimeConfig: (config: IVSRealTimeClientConfig) => {
6
6
  apiVersion: string;
7
- base64Decoder: import("@aws-sdk/types").Decoder;
8
- base64Encoder: import("@aws-sdk/types").Encoder;
7
+ base64Decoder: import("@smithy/types").Decoder;
8
+ base64Encoder: import("@smithy/types").Encoder;
9
9
  disableHostPrefix: boolean;
10
10
  endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
11
11
  logger?: import("@aws-sdk/types").Logger | undefined;
@@ -13,6 +13,6 @@ export declare const getRuntimeConfig: (config: IVSRealTimeClientConfig) => {
13
13
  logger: import("@aws-sdk/types").Logger;
14
14
  serviceId: string;
15
15
  urlParser: import("@aws-sdk/types").UrlParser;
16
- utf8Decoder: import("@aws-sdk/types").Decoder;
17
- utf8Encoder: import("@aws-sdk/types").Encoder;
16
+ utf8Decoder: import("@smithy/types").Decoder;
17
+ utf8Encoder: import("@smithy/types").Encoder;
18
18
  };
@@ -15,14 +15,34 @@ import {
15
15
  DisconnectParticipantCommandInput,
16
16
  DisconnectParticipantCommandOutput,
17
17
  } from "./commands/DisconnectParticipantCommand";
18
+ import {
19
+ GetParticipantCommandInput,
20
+ GetParticipantCommandOutput,
21
+ } from "./commands/GetParticipantCommand";
18
22
  import {
19
23
  GetStageCommandInput,
20
24
  GetStageCommandOutput,
21
25
  } from "./commands/GetStageCommand";
26
+ import {
27
+ GetStageSessionCommandInput,
28
+ GetStageSessionCommandOutput,
29
+ } from "./commands/GetStageSessionCommand";
30
+ import {
31
+ ListParticipantEventsCommandInput,
32
+ ListParticipantEventsCommandOutput,
33
+ } from "./commands/ListParticipantEventsCommand";
34
+ import {
35
+ ListParticipantsCommandInput,
36
+ ListParticipantsCommandOutput,
37
+ } from "./commands/ListParticipantsCommand";
22
38
  import {
23
39
  ListStagesCommandInput,
24
40
  ListStagesCommandOutput,
25
41
  } from "./commands/ListStagesCommand";
42
+ import {
43
+ ListStageSessionsCommandInput,
44
+ ListStageSessionsCommandOutput,
45
+ } from "./commands/ListStageSessionsCommand";
26
46
  import {
27
47
  ListTagsForResourceCommandInput,
28
48
  ListTagsForResourceCommandOutput,
@@ -93,6 +113,19 @@ export interface IVSRealTime {
93
113
  options: __HttpHandlerOptions,
94
114
  cb: (err: any, data?: DisconnectParticipantCommandOutput) => void
95
115
  ): void;
116
+ getParticipant(
117
+ args: GetParticipantCommandInput,
118
+ options?: __HttpHandlerOptions
119
+ ): Promise<GetParticipantCommandOutput>;
120
+ getParticipant(
121
+ args: GetParticipantCommandInput,
122
+ cb: (err: any, data?: GetParticipantCommandOutput) => void
123
+ ): void;
124
+ getParticipant(
125
+ args: GetParticipantCommandInput,
126
+ options: __HttpHandlerOptions,
127
+ cb: (err: any, data?: GetParticipantCommandOutput) => void
128
+ ): void;
96
129
  getStage(
97
130
  args: GetStageCommandInput,
98
131
  options?: __HttpHandlerOptions
@@ -106,6 +139,45 @@ export interface IVSRealTime {
106
139
  options: __HttpHandlerOptions,
107
140
  cb: (err: any, data?: GetStageCommandOutput) => void
108
141
  ): void;
142
+ getStageSession(
143
+ args: GetStageSessionCommandInput,
144
+ options?: __HttpHandlerOptions
145
+ ): Promise<GetStageSessionCommandOutput>;
146
+ getStageSession(
147
+ args: GetStageSessionCommandInput,
148
+ cb: (err: any, data?: GetStageSessionCommandOutput) => void
149
+ ): void;
150
+ getStageSession(
151
+ args: GetStageSessionCommandInput,
152
+ options: __HttpHandlerOptions,
153
+ cb: (err: any, data?: GetStageSessionCommandOutput) => void
154
+ ): void;
155
+ listParticipantEvents(
156
+ args: ListParticipantEventsCommandInput,
157
+ options?: __HttpHandlerOptions
158
+ ): Promise<ListParticipantEventsCommandOutput>;
159
+ listParticipantEvents(
160
+ args: ListParticipantEventsCommandInput,
161
+ cb: (err: any, data?: ListParticipantEventsCommandOutput) => void
162
+ ): void;
163
+ listParticipantEvents(
164
+ args: ListParticipantEventsCommandInput,
165
+ options: __HttpHandlerOptions,
166
+ cb: (err: any, data?: ListParticipantEventsCommandOutput) => void
167
+ ): void;
168
+ listParticipants(
169
+ args: ListParticipantsCommandInput,
170
+ options?: __HttpHandlerOptions
171
+ ): Promise<ListParticipantsCommandOutput>;
172
+ listParticipants(
173
+ args: ListParticipantsCommandInput,
174
+ cb: (err: any, data?: ListParticipantsCommandOutput) => void
175
+ ): void;
176
+ listParticipants(
177
+ args: ListParticipantsCommandInput,
178
+ options: __HttpHandlerOptions,
179
+ cb: (err: any, data?: ListParticipantsCommandOutput) => void
180
+ ): void;
109
181
  listStages(
110
182
  args: ListStagesCommandInput,
111
183
  options?: __HttpHandlerOptions
@@ -119,6 +191,19 @@ export interface IVSRealTime {
119
191
  options: __HttpHandlerOptions,
120
192
  cb: (err: any, data?: ListStagesCommandOutput) => void
121
193
  ): void;
194
+ listStageSessions(
195
+ args: ListStageSessionsCommandInput,
196
+ options?: __HttpHandlerOptions
197
+ ): Promise<ListStageSessionsCommandOutput>;
198
+ listStageSessions(
199
+ args: ListStageSessionsCommandInput,
200
+ cb: (err: any, data?: ListStageSessionsCommandOutput) => void
201
+ ): void;
202
+ listStageSessions(
203
+ args: ListStageSessionsCommandInput,
204
+ options: __HttpHandlerOptions,
205
+ cb: (err: any, data?: ListStageSessionsCommandOutput) => void
206
+ ): void;
122
207
  listTagsForResource(
123
208
  args: ListTagsForResourceCommandInput,
124
209
  options?: __HttpHandlerOptions
@@ -22,7 +22,6 @@ import {
22
22
  UserAgentInputConfig,
23
23
  UserAgentResolvedConfig,
24
24
  } from "@aws-sdk/middleware-user-agent";
25
- import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
26
25
  import {
27
26
  Client as __Client,
28
27
  DefaultsMode as __DefaultsMode,
@@ -33,17 +32,20 @@ import {
33
32
  BodyLengthCalculator as __BodyLengthCalculator,
34
33
  ChecksumConstructor as __ChecksumConstructor,
35
34
  Credentials as __Credentials,
36
- Decoder as __Decoder,
37
- Encoder as __Encoder,
38
35
  HashConstructor as __HashConstructor,
39
36
  HttpHandlerOptions as __HttpHandlerOptions,
40
37
  Logger as __Logger,
41
- Provider as __Provider,
42
38
  Provider,
43
- StreamCollector as __StreamCollector,
44
39
  UrlParser as __UrlParser,
45
40
  UserAgent as __UserAgent,
46
41
  } from "@aws-sdk/types";
42
+ import { HttpHandler as __HttpHandler } from "@smithy/protocol-http";
43
+ import {
44
+ Decoder as __Decoder,
45
+ Encoder as __Encoder,
46
+ Provider as __Provider,
47
+ StreamCollector as __StreamCollector,
48
+ } from "@smithy/types";
47
49
  import {
48
50
  CreateParticipantTokenCommandInput,
49
51
  CreateParticipantTokenCommandOutput,
@@ -60,14 +62,34 @@ import {
60
62
  DisconnectParticipantCommandInput,
61
63
  DisconnectParticipantCommandOutput,
62
64
  } from "./commands/DisconnectParticipantCommand";
65
+ import {
66
+ GetParticipantCommandInput,
67
+ GetParticipantCommandOutput,
68
+ } from "./commands/GetParticipantCommand";
63
69
  import {
64
70
  GetStageCommandInput,
65
71
  GetStageCommandOutput,
66
72
  } from "./commands/GetStageCommand";
73
+ import {
74
+ GetStageSessionCommandInput,
75
+ GetStageSessionCommandOutput,
76
+ } from "./commands/GetStageSessionCommand";
77
+ import {
78
+ ListParticipantEventsCommandInput,
79
+ ListParticipantEventsCommandOutput,
80
+ } from "./commands/ListParticipantEventsCommand";
81
+ import {
82
+ ListParticipantsCommandInput,
83
+ ListParticipantsCommandOutput,
84
+ } from "./commands/ListParticipantsCommand";
67
85
  import {
68
86
  ListStagesCommandInput,
69
87
  ListStagesCommandOutput,
70
88
  } from "./commands/ListStagesCommand";
89
+ import {
90
+ ListStageSessionsCommandInput,
91
+ ListStageSessionsCommandOutput,
92
+ } from "./commands/ListStageSessionsCommand";
71
93
  import {
72
94
  ListTagsForResourceCommandInput,
73
95
  ListTagsForResourceCommandOutput,
@@ -94,7 +116,12 @@ export declare type ServiceInputTypes =
94
116
  | CreateStageCommandInput
95
117
  | DeleteStageCommandInput
96
118
  | DisconnectParticipantCommandInput
119
+ | GetParticipantCommandInput
97
120
  | GetStageCommandInput
121
+ | GetStageSessionCommandInput
122
+ | ListParticipantEventsCommandInput
123
+ | ListParticipantsCommandInput
124
+ | ListStageSessionsCommandInput
98
125
  | ListStagesCommandInput
99
126
  | ListTagsForResourceCommandInput
100
127
  | TagResourceCommandInput
@@ -105,7 +132,12 @@ export declare type ServiceOutputTypes =
105
132
  | CreateStageCommandOutput
106
133
  | DeleteStageCommandOutput
107
134
  | DisconnectParticipantCommandOutput
135
+ | GetParticipantCommandOutput
108
136
  | GetStageCommandOutput
137
+ | GetStageSessionCommandOutput
138
+ | ListParticipantEventsCommandOutput
139
+ | ListParticipantsCommandOutput
140
+ | ListStageSessionsCommandOutput
109
141
  | ListStagesCommandOutput
110
142
  | ListTagsForResourceCommandOutput
111
143
  | TagResourceCommandOutput
@@ -0,0 +1,37 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ IVSRealTimeClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../IVSRealTimeClient";
14
+ import {
15
+ GetParticipantRequest,
16
+ GetParticipantResponse,
17
+ } from "../models/models_0";
18
+ export interface GetParticipantCommandInput extends GetParticipantRequest {}
19
+ export interface GetParticipantCommandOutput
20
+ extends GetParticipantResponse,
21
+ __MetadataBearer {}
22
+ export declare class GetParticipantCommand extends $Command<
23
+ GetParticipantCommandInput,
24
+ GetParticipantCommandOutput,
25
+ IVSRealTimeClientResolvedConfig
26
+ > {
27
+ readonly input: GetParticipantCommandInput;
28
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
29
+ constructor(input: GetParticipantCommandInput);
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: IVSRealTimeClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<GetParticipantCommandInput, GetParticipantCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -0,0 +1,37 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ IVSRealTimeClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../IVSRealTimeClient";
14
+ import {
15
+ GetStageSessionRequest,
16
+ GetStageSessionResponse,
17
+ } from "../models/models_0";
18
+ export interface GetStageSessionCommandInput extends GetStageSessionRequest {}
19
+ export interface GetStageSessionCommandOutput
20
+ extends GetStageSessionResponse,
21
+ __MetadataBearer {}
22
+ export declare class GetStageSessionCommand extends $Command<
23
+ GetStageSessionCommandInput,
24
+ GetStageSessionCommandOutput,
25
+ IVSRealTimeClientResolvedConfig
26
+ > {
27
+ readonly input: GetStageSessionCommandInput;
28
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
29
+ constructor(input: GetStageSessionCommandInput);
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: IVSRealTimeClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<GetStageSessionCommandInput, GetStageSessionCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -0,0 +1,41 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ IVSRealTimeClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../IVSRealTimeClient";
14
+ import {
15
+ ListParticipantEventsRequest,
16
+ ListParticipantEventsResponse,
17
+ } from "../models/models_0";
18
+ export interface ListParticipantEventsCommandInput
19
+ extends ListParticipantEventsRequest {}
20
+ export interface ListParticipantEventsCommandOutput
21
+ extends ListParticipantEventsResponse,
22
+ __MetadataBearer {}
23
+ export declare class ListParticipantEventsCommand extends $Command<
24
+ ListParticipantEventsCommandInput,
25
+ ListParticipantEventsCommandOutput,
26
+ IVSRealTimeClientResolvedConfig
27
+ > {
28
+ readonly input: ListParticipantEventsCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: ListParticipantEventsCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: IVSRealTimeClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ ListParticipantEventsCommandInput,
37
+ ListParticipantEventsCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -0,0 +1,37 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ IVSRealTimeClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../IVSRealTimeClient";
14
+ import {
15
+ ListParticipantsRequest,
16
+ ListParticipantsResponse,
17
+ } from "../models/models_0";
18
+ export interface ListParticipantsCommandInput extends ListParticipantsRequest {}
19
+ export interface ListParticipantsCommandOutput
20
+ extends ListParticipantsResponse,
21
+ __MetadataBearer {}
22
+ export declare class ListParticipantsCommand extends $Command<
23
+ ListParticipantsCommandInput,
24
+ ListParticipantsCommandOutput,
25
+ IVSRealTimeClientResolvedConfig
26
+ > {
27
+ readonly input: ListParticipantsCommandInput;
28
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
29
+ constructor(input: ListParticipantsCommandInput);
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: IVSRealTimeClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<ListParticipantsCommandInput, ListParticipantsCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -0,0 +1,38 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ IVSRealTimeClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../IVSRealTimeClient";
14
+ import {
15
+ ListStageSessionsRequest,
16
+ ListStageSessionsResponse,
17
+ } from "../models/models_0";
18
+ export interface ListStageSessionsCommandInput
19
+ extends ListStageSessionsRequest {}
20
+ export interface ListStageSessionsCommandOutput
21
+ extends ListStageSessionsResponse,
22
+ __MetadataBearer {}
23
+ export declare class ListStageSessionsCommand extends $Command<
24
+ ListStageSessionsCommandInput,
25
+ ListStageSessionsCommandOutput,
26
+ IVSRealTimeClientResolvedConfig
27
+ > {
28
+ readonly input: ListStageSessionsCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: ListStageSessionsCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: IVSRealTimeClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<ListStageSessionsCommandInput, ListStageSessionsCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }