@aws-sdk/client-mediapackage 3.169.0 → 3.171.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 (39) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/MediaPackage.d.ts +327 -97
  3. package/dist-types/ts3.4/MediaPackageClient.d.ts +219 -92
  4. package/dist-types/ts3.4/commands/ConfigureLogsCommand.d.ts +35 -17
  5. package/dist-types/ts3.4/commands/CreateChannelCommand.d.ts +35 -17
  6. package/dist-types/ts3.4/commands/CreateHarvestJobCommand.d.ts +35 -17
  7. package/dist-types/ts3.4/commands/CreateOriginEndpointCommand.d.ts +39 -17
  8. package/dist-types/ts3.4/commands/DeleteChannelCommand.d.ts +35 -17
  9. package/dist-types/ts3.4/commands/DeleteOriginEndpointCommand.d.ts +39 -17
  10. package/dist-types/ts3.4/commands/DescribeChannelCommand.d.ts +35 -17
  11. package/dist-types/ts3.4/commands/DescribeHarvestJobCommand.d.ts +36 -17
  12. package/dist-types/ts3.4/commands/DescribeOriginEndpointCommand.d.ts +39 -17
  13. package/dist-types/ts3.4/commands/ListChannelsCommand.d.ts +32 -17
  14. package/dist-types/ts3.4/commands/ListHarvestJobsCommand.d.ts +35 -17
  15. package/dist-types/ts3.4/commands/ListOriginEndpointsCommand.d.ts +36 -17
  16. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -16
  17. package/dist-types/ts3.4/commands/RotateChannelCredentialsCommand.d.ts +39 -17
  18. package/dist-types/ts3.4/commands/RotateIngestEndpointCredentialsCommand.d.ts +39 -17
  19. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +30 -16
  20. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +30 -16
  21. package/dist-types/ts3.4/commands/UpdateChannelCommand.d.ts +35 -17
  22. package/dist-types/ts3.4/commands/UpdateOriginEndpointCommand.d.ts +39 -17
  23. package/dist-types/ts3.4/commands/index.d.ts +19 -19
  24. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  25. package/dist-types/ts3.4/index.d.ts +6 -6
  26. package/dist-types/ts3.4/models/MediaPackageServiceException.d.ts +7 -6
  27. package/dist-types/ts3.4/models/index.d.ts +1 -1
  28. package/dist-types/ts3.4/models/models_0.d.ts +719 -1010
  29. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  30. package/dist-types/ts3.4/pagination/ListChannelsPaginator.d.ts +11 -4
  31. package/dist-types/ts3.4/pagination/ListHarvestJobsPaginator.d.ts +11 -4
  32. package/dist-types/ts3.4/pagination/ListOriginEndpointsPaginator.d.ts +11 -4
  33. package/dist-types/ts3.4/pagination/index.d.ts +4 -4
  34. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +233 -59
  35. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
  36. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  37. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  38. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  39. package/package.json +34 -34
@@ -1,17 +1,35 @@
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 { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient";
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, MediaPackageClientResolvedConfig> {
11
- readonly input: UpdateChannelCommandInput;
12
- constructor(input: UpdateChannelCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaPackageClientResolvedConfig, 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
+ MediaPackageClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../MediaPackageClient";
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
+ export declare class UpdateChannelCommand extends $Command<
22
+ UpdateChannelCommandInput,
23
+ UpdateChannelCommandOutput,
24
+ MediaPackageClientResolvedConfig
25
+ > {
26
+ readonly input: UpdateChannelCommandInput;
27
+ constructor(input: UpdateChannelCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: MediaPackageClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<UpdateChannelCommandInput, UpdateChannelCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,39 @@
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 { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient";
4
- import { UpdateOriginEndpointRequest, UpdateOriginEndpointResponse } from "../models/models_0";
5
- export interface UpdateOriginEndpointCommandInput extends UpdateOriginEndpointRequest {
6
- }
7
- export interface UpdateOriginEndpointCommandOutput extends UpdateOriginEndpointResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateOriginEndpointCommand extends $Command<UpdateOriginEndpointCommandInput, UpdateOriginEndpointCommandOutput, MediaPackageClientResolvedConfig> {
11
- readonly input: UpdateOriginEndpointCommandInput;
12
- constructor(input: UpdateOriginEndpointCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaPackageClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateOriginEndpointCommandInput, UpdateOriginEndpointCommandOutput>;
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
+ MediaPackageClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../MediaPackageClient";
13
+ import {
14
+ UpdateOriginEndpointRequest,
15
+ UpdateOriginEndpointResponse,
16
+ } from "../models/models_0";
17
+ export interface UpdateOriginEndpointCommandInput
18
+ extends UpdateOriginEndpointRequest {}
19
+ export interface UpdateOriginEndpointCommandOutput
20
+ extends UpdateOriginEndpointResponse,
21
+ __MetadataBearer {}
22
+ export declare class UpdateOriginEndpointCommand extends $Command<
23
+ UpdateOriginEndpointCommandInput,
24
+ UpdateOriginEndpointCommandOutput,
25
+ MediaPackageClientResolvedConfig
26
+ > {
27
+ readonly input: UpdateOriginEndpointCommandInput;
28
+ constructor(input: UpdateOriginEndpointCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: MediaPackageClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ UpdateOriginEndpointCommandInput,
35
+ UpdateOriginEndpointCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,19 +1,19 @@
1
- export * from "./ConfigureLogsCommand";
2
- export * from "./CreateChannelCommand";
3
- export * from "./CreateHarvestJobCommand";
4
- export * from "./CreateOriginEndpointCommand";
5
- export * from "./DeleteChannelCommand";
6
- export * from "./DeleteOriginEndpointCommand";
7
- export * from "./DescribeChannelCommand";
8
- export * from "./DescribeHarvestJobCommand";
9
- export * from "./DescribeOriginEndpointCommand";
10
- export * from "./ListChannelsCommand";
11
- export * from "./ListHarvestJobsCommand";
12
- export * from "./ListOriginEndpointsCommand";
13
- export * from "./ListTagsForResourceCommand";
14
- export * from "./RotateChannelCredentialsCommand";
15
- export * from "./RotateIngestEndpointCredentialsCommand";
16
- export * from "./TagResourceCommand";
17
- export * from "./UntagResourceCommand";
18
- export * from "./UpdateChannelCommand";
19
- export * from "./UpdateOriginEndpointCommand";
1
+ export * from "./ConfigureLogsCommand";
2
+ export * from "./CreateChannelCommand";
3
+ export * from "./CreateHarvestJobCommand";
4
+ export * from "./CreateOriginEndpointCommand";
5
+ export * from "./DeleteChannelCommand";
6
+ export * from "./DeleteOriginEndpointCommand";
7
+ export * from "./DescribeChannelCommand";
8
+ export * from "./DescribeHarvestJobCommand";
9
+ export * from "./DescribeOriginEndpointCommand";
10
+ export * from "./ListChannelsCommand";
11
+ export * from "./ListHarvestJobsCommand";
12
+ export * from "./ListOriginEndpointsCommand";
13
+ export * from "./ListTagsForResourceCommand";
14
+ export * from "./RotateChannelCredentialsCommand";
15
+ export * from "./RotateIngestEndpointCredentialsCommand";
16
+ export * from "./TagResourceCommand";
17
+ export * from "./UntagResourceCommand";
18
+ export * from "./UpdateChannelCommand";
19
+ export * from "./UpdateOriginEndpointCommand";
@@ -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 "./MediaPackage";
2
- export * from "./MediaPackageClient";
3
- export * from "./commands";
4
- export * from "./models";
5
- export * from "./pagination";
6
- export { MediaPackageServiceException } from "./models/MediaPackageServiceException";
1
+ export * from "./MediaPackage";
2
+ export * from "./MediaPackageClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export { MediaPackageServiceException } from "./models/MediaPackageServiceException";
@@ -1,6 +1,7 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class MediaPackageServiceException 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
+ export declare class MediaPackageServiceException extends __ServiceException {
6
+ constructor(options: __ServiceExceptionOptions);
7
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";