@aws-sdk/client-ivs 3.169.0 → 3.170.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 (51) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/Ivs.d.ts +508 -145
  3. package/dist-types/ts3.4/IvsClient.d.ts +296 -101
  4. package/dist-types/ts3.4/commands/BatchGetChannelCommand.d.ts +37 -17
  5. package/dist-types/ts3.4/commands/BatchGetStreamKeyCommand.d.ts +38 -17
  6. package/dist-types/ts3.4/commands/CreateChannelCommand.d.ts +37 -17
  7. package/dist-types/ts3.4/commands/CreateRecordingConfigurationCommand.d.ts +41 -17
  8. package/dist-types/ts3.4/commands/CreateStreamKeyCommand.d.ts +37 -17
  9. package/dist-types/ts3.4/commands/DeleteChannelCommand.d.ts +32 -17
  10. package/dist-types/ts3.4/commands/DeletePlaybackKeyPairCommand.d.ts +41 -17
  11. package/dist-types/ts3.4/commands/DeleteRecordingConfigurationCommand.d.ts +37 -17
  12. package/dist-types/ts3.4/commands/DeleteStreamKeyCommand.d.ts +32 -17
  13. package/dist-types/ts3.4/commands/GetChannelCommand.d.ts +34 -17
  14. package/dist-types/ts3.4/commands/GetPlaybackKeyPairCommand.d.ts +38 -17
  15. package/dist-types/ts3.4/commands/GetRecordingConfigurationCommand.d.ts +41 -17
  16. package/dist-types/ts3.4/commands/GetStreamCommand.d.ts +34 -17
  17. package/dist-types/ts3.4/commands/GetStreamKeyCommand.d.ts +34 -17
  18. package/dist-types/ts3.4/commands/GetStreamSessionCommand.d.ts +37 -17
  19. package/dist-types/ts3.4/commands/ImportPlaybackKeyPairCommand.d.ts +41 -17
  20. package/dist-types/ts3.4/commands/ListChannelsCommand.d.ts +34 -17
  21. package/dist-types/ts3.4/commands/ListPlaybackKeyPairsCommand.d.ts +41 -17
  22. package/dist-types/ts3.4/commands/ListRecordingConfigurationsCommand.d.ts +41 -17
  23. package/dist-types/ts3.4/commands/ListStreamKeysCommand.d.ts +37 -17
  24. package/dist-types/ts3.4/commands/ListStreamSessionsCommand.d.ts +38 -17
  25. package/dist-types/ts3.4/commands/ListStreamsCommand.d.ts +34 -17
  26. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  27. package/dist-types/ts3.4/commands/PutMetadataCommand.d.ts +32 -17
  28. package/dist-types/ts3.4/commands/StopStreamCommand.d.ts +34 -17
  29. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  30. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  31. package/dist-types/ts3.4/commands/UpdateChannelCommand.d.ts +37 -17
  32. package/dist-types/ts3.4/commands/index.d.ts +28 -28
  33. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  34. package/dist-types/ts3.4/index.d.ts +6 -6
  35. package/dist-types/ts3.4/models/IvsServiceException.d.ts +8 -6
  36. package/dist-types/ts3.4/models/index.d.ts +1 -1
  37. package/dist-types/ts3.4/models/models_0.d.ts +868 -789
  38. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
  39. package/dist-types/ts3.4/pagination/ListChannelsPaginator.d.ts +11 -4
  40. package/dist-types/ts3.4/pagination/ListPlaybackKeyPairsPaginator.d.ts +11 -4
  41. package/dist-types/ts3.4/pagination/ListRecordingConfigurationsPaginator.d.ts +11 -4
  42. package/dist-types/ts3.4/pagination/ListStreamKeysPaginator.d.ts +11 -4
  43. package/dist-types/ts3.4/pagination/ListStreamSessionsPaginator.d.ts +11 -4
  44. package/dist-types/ts3.4/pagination/ListStreamsPaginator.d.ts +11 -4
  45. package/dist-types/ts3.4/pagination/index.d.ts +7 -7
  46. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +341 -86
  47. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  48. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  49. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  50. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  51. package/package.json +34 -34
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient";
4
- import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
5
- export interface UntagResourceCommandInput extends UntagResourceRequest {
6
- }
7
- export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, IvsClientResolvedConfig> {
11
- readonly input: UntagResourceCommandInput;
12
- constructor(input: UntagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IvsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ IvsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../IvsClient";
13
+ import {
14
+ UntagResourceRequest,
15
+ UntagResourceResponse,
16
+ } from "../models/models_0";
17
+ export interface UntagResourceCommandInput extends UntagResourceRequest {}
18
+ export interface UntagResourceCommandOutput
19
+ extends UntagResourceResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class UntagResourceCommand extends $Command<
23
+ UntagResourceCommandInput,
24
+ UntagResourceCommandOutput,
25
+ IvsClientResolvedConfig
26
+ > {
27
+ readonly input: UntagResourceCommandInput;
28
+ constructor(input: UntagResourceCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: IvsClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient";
4
- import { UpdateChannelRequest, UpdateChannelResponse } from "../models/models_0";
5
- export interface UpdateChannelCommandInput extends UpdateChannelRequest {
6
- }
7
- export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateChannelCommand extends $Command<UpdateChannelCommandInput, UpdateChannelCommandOutput, IvsClientResolvedConfig> {
11
- readonly input: UpdateChannelCommandInput;
12
- constructor(input: UpdateChannelCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IvsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateChannelCommandInput, UpdateChannelCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ IvsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../IvsClient";
13
+ import {
14
+ UpdateChannelRequest,
15
+ UpdateChannelResponse,
16
+ } from "../models/models_0";
17
+ export interface UpdateChannelCommandInput extends UpdateChannelRequest {}
18
+ export interface UpdateChannelCommandOutput
19
+ extends UpdateChannelResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class UpdateChannelCommand extends $Command<
23
+ UpdateChannelCommandInput,
24
+ UpdateChannelCommandOutput,
25
+ IvsClientResolvedConfig
26
+ > {
27
+ readonly input: UpdateChannelCommandInput;
28
+ constructor(input: UpdateChannelCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: IvsClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<UpdateChannelCommandInput, UpdateChannelCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,28 +1,28 @@
1
- export * from "./BatchGetChannelCommand";
2
- export * from "./BatchGetStreamKeyCommand";
3
- export * from "./CreateChannelCommand";
4
- export * from "./CreateRecordingConfigurationCommand";
5
- export * from "./CreateStreamKeyCommand";
6
- export * from "./DeleteChannelCommand";
7
- export * from "./DeletePlaybackKeyPairCommand";
8
- export * from "./DeleteRecordingConfigurationCommand";
9
- export * from "./DeleteStreamKeyCommand";
10
- export * from "./GetChannelCommand";
11
- export * from "./GetPlaybackKeyPairCommand";
12
- export * from "./GetRecordingConfigurationCommand";
13
- export * from "./GetStreamCommand";
14
- export * from "./GetStreamKeyCommand";
15
- export * from "./GetStreamSessionCommand";
16
- export * from "./ImportPlaybackKeyPairCommand";
17
- export * from "./ListChannelsCommand";
18
- export * from "./ListPlaybackKeyPairsCommand";
19
- export * from "./ListRecordingConfigurationsCommand";
20
- export * from "./ListStreamKeysCommand";
21
- export * from "./ListStreamSessionsCommand";
22
- export * from "./ListStreamsCommand";
23
- export * from "./ListTagsForResourceCommand";
24
- export * from "./PutMetadataCommand";
25
- export * from "./StopStreamCommand";
26
- export * from "./TagResourceCommand";
27
- export * from "./UntagResourceCommand";
28
- export * from "./UpdateChannelCommand";
1
+ export * from "./BatchGetChannelCommand";
2
+ export * from "./BatchGetStreamKeyCommand";
3
+ export * from "./CreateChannelCommand";
4
+ export * from "./CreateRecordingConfigurationCommand";
5
+ export * from "./CreateStreamKeyCommand";
6
+ export * from "./DeleteChannelCommand";
7
+ export * from "./DeletePlaybackKeyPairCommand";
8
+ export * from "./DeleteRecordingConfigurationCommand";
9
+ export * from "./DeleteStreamKeyCommand";
10
+ export * from "./GetChannelCommand";
11
+ export * from "./GetPlaybackKeyPairCommand";
12
+ export * from "./GetRecordingConfigurationCommand";
13
+ export * from "./GetStreamCommand";
14
+ export * from "./GetStreamKeyCommand";
15
+ export * from "./GetStreamSessionCommand";
16
+ export * from "./ImportPlaybackKeyPairCommand";
17
+ export * from "./ListChannelsCommand";
18
+ export * from "./ListPlaybackKeyPairsCommand";
19
+ export * from "./ListRecordingConfigurationsCommand";
20
+ export * from "./ListStreamKeysCommand";
21
+ export * from "./ListStreamSessionsCommand";
22
+ export * from "./ListStreamsCommand";
23
+ export * from "./ListTagsForResourceCommand";
24
+ export * from "./PutMetadataCommand";
25
+ export * from "./StopStreamCommand";
26
+ export * from "./TagResourceCommand";
27
+ export * from "./UntagResourceCommand";
28
+ export * from "./UpdateChannelCommand";
@@ -1,2 +1,2 @@
1
- import { RegionInfoProvider } from "@aws-sdk/types";
2
- export declare const defaultRegionInfoProvider: RegionInfoProvider;
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -1,6 +1,6 @@
1
- export * from "./Ivs";
2
- export * from "./IvsClient";
3
- export * from "./commands";
4
- export * from "./models";
5
- export * from "./pagination";
6
- export { IvsServiceException } from "./models/IvsServiceException";
1
+ export * from "./Ivs";
2
+ export * from "./IvsClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export { IvsServiceException } from "./models/IvsServiceException";
@@ -1,6 +1,8 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class IvsServiceException extends __ServiceException {
4
-
5
- constructor(options: __ServiceExceptionOptions);
6
- }
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@aws-sdk/smithy-client";
5
+
6
+ export declare class IvsServiceException extends __ServiceException {
7
+ constructor(options: __ServiceExceptionOptions);
8
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";