@aws-sdk/client-mediapackage 3.50.0 → 3.53.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 (50) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist-cjs/index.js +3 -0
  3. package/dist-cjs/models/MediaPackageServiceException.js +11 -0
  4. package/dist-cjs/models/models_0.js +87 -2
  5. package/dist-cjs/protocols/Aws_restJson1.js +226 -816
  6. package/dist-es/index.js +1 -0
  7. package/dist-es/models/MediaPackageServiceException.js +12 -0
  8. package/dist-es/models/models_0.js +80 -1
  9. package/dist-es/protocols/Aws_restJson1.js +451 -878
  10. package/dist-types/index.d.ts +1 -0
  11. package/dist-types/models/MediaPackageServiceException.d.ts +10 -0
  12. package/dist-types/models/models_0.d.ts +44 -19
  13. package/dist-types/ts3.4/MediaPackage.d.ts +97 -0
  14. package/dist-types/ts3.4/MediaPackageClient.d.ts +92 -0
  15. package/dist-types/ts3.4/commands/ConfigureLogsCommand.d.ts +17 -0
  16. package/dist-types/ts3.4/commands/CreateChannelCommand.d.ts +17 -0
  17. package/dist-types/ts3.4/commands/CreateHarvestJobCommand.d.ts +17 -0
  18. package/dist-types/ts3.4/commands/CreateOriginEndpointCommand.d.ts +17 -0
  19. package/dist-types/ts3.4/commands/DeleteChannelCommand.d.ts +17 -0
  20. package/dist-types/ts3.4/commands/DeleteOriginEndpointCommand.d.ts +17 -0
  21. package/dist-types/ts3.4/commands/DescribeChannelCommand.d.ts +17 -0
  22. package/dist-types/ts3.4/commands/DescribeHarvestJobCommand.d.ts +17 -0
  23. package/dist-types/ts3.4/commands/DescribeOriginEndpointCommand.d.ts +17 -0
  24. package/dist-types/ts3.4/commands/ListChannelsCommand.d.ts +17 -0
  25. package/dist-types/ts3.4/commands/ListHarvestJobsCommand.d.ts +17 -0
  26. package/dist-types/ts3.4/commands/ListOriginEndpointsCommand.d.ts +17 -0
  27. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +16 -0
  28. package/dist-types/ts3.4/commands/RotateChannelCredentialsCommand.d.ts +17 -0
  29. package/dist-types/ts3.4/commands/RotateIngestEndpointCredentialsCommand.d.ts +17 -0
  30. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +16 -0
  31. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +16 -0
  32. package/dist-types/ts3.4/commands/UpdateChannelCommand.d.ts +17 -0
  33. package/dist-types/ts3.4/commands/UpdateOriginEndpointCommand.d.ts +17 -0
  34. package/dist-types/ts3.4/commands/index.d.ts +19 -0
  35. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  36. package/dist-types/ts3.4/index.d.ts +6 -0
  37. package/dist-types/ts3.4/models/MediaPackageServiceException.d.ts +6 -0
  38. package/dist-types/ts3.4/models/index.d.ts +1 -0
  39. package/dist-types/ts3.4/models/models_0.d.ts +1130 -0
  40. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  41. package/dist-types/ts3.4/pagination/ListChannelsPaginator.d.ts +4 -0
  42. package/dist-types/ts3.4/pagination/ListHarvestJobsPaginator.d.ts +4 -0
  43. package/dist-types/ts3.4/pagination/ListOriginEndpointsPaginator.d.ts +4 -0
  44. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  45. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +59 -0
  46. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
  47. package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
  48. package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
  49. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  50. package/package.json +33 -33
@@ -0,0 +1,6 @@
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { MediaPackage } from "../MediaPackage";
3
+ import { MediaPackageClient } from "../MediaPackageClient";
4
+ export interface MediaPackagePaginationConfiguration extends PaginationConfiguration {
5
+ client: MediaPackage | MediaPackageClient;
6
+ }
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListChannelsCommandInput, ListChannelsCommandOutput } from "../commands/ListChannelsCommand";
3
+ import { MediaPackagePaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListChannels(config: MediaPackagePaginationConfiguration, input: ListChannelsCommandInput, ...additionalArguments: any): Paginator<ListChannelsCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListHarvestJobsCommandInput, ListHarvestJobsCommandOutput } from "../commands/ListHarvestJobsCommand";
3
+ import { MediaPackagePaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListHarvestJobs(config: MediaPackagePaginationConfiguration, input: ListHarvestJobsCommandInput, ...additionalArguments: any): Paginator<ListHarvestJobsCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListOriginEndpointsCommandInput, ListOriginEndpointsCommandOutput } from "../commands/ListOriginEndpointsCommand";
3
+ import { MediaPackagePaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListOriginEndpoints(config: MediaPackagePaginationConfiguration, input: ListOriginEndpointsCommandInput, ...additionalArguments: any): Paginator<ListOriginEndpointsCommandOutput>;
@@ -0,0 +1,4 @@
1
+ export * from "./Interfaces";
2
+ export * from "./ListChannelsPaginator";
3
+ export * from "./ListHarvestJobsPaginator";
4
+ export * from "./ListOriginEndpointsPaginator";
@@ -0,0 +1,59 @@
1
+ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
+ import { ConfigureLogsCommandInput, ConfigureLogsCommandOutput } from "../commands/ConfigureLogsCommand";
4
+ import { CreateChannelCommandInput, CreateChannelCommandOutput } from "../commands/CreateChannelCommand";
5
+ import { CreateHarvestJobCommandInput, CreateHarvestJobCommandOutput } from "../commands/CreateHarvestJobCommand";
6
+ import { CreateOriginEndpointCommandInput, CreateOriginEndpointCommandOutput } from "../commands/CreateOriginEndpointCommand";
7
+ import { DeleteChannelCommandInput, DeleteChannelCommandOutput } from "../commands/DeleteChannelCommand";
8
+ import { DeleteOriginEndpointCommandInput, DeleteOriginEndpointCommandOutput } from "../commands/DeleteOriginEndpointCommand";
9
+ import { DescribeChannelCommandInput, DescribeChannelCommandOutput } from "../commands/DescribeChannelCommand";
10
+ import { DescribeHarvestJobCommandInput, DescribeHarvestJobCommandOutput } from "../commands/DescribeHarvestJobCommand";
11
+ import { DescribeOriginEndpointCommandInput, DescribeOriginEndpointCommandOutput } from "../commands/DescribeOriginEndpointCommand";
12
+ import { ListChannelsCommandInput, ListChannelsCommandOutput } from "../commands/ListChannelsCommand";
13
+ import { ListHarvestJobsCommandInput, ListHarvestJobsCommandOutput } from "../commands/ListHarvestJobsCommand";
14
+ import { ListOriginEndpointsCommandInput, ListOriginEndpointsCommandOutput } from "../commands/ListOriginEndpointsCommand";
15
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
16
+ import { RotateChannelCredentialsCommandInput, RotateChannelCredentialsCommandOutput } from "../commands/RotateChannelCredentialsCommand";
17
+ import { RotateIngestEndpointCredentialsCommandInput, RotateIngestEndpointCredentialsCommandOutput } from "../commands/RotateIngestEndpointCredentialsCommand";
18
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
19
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
20
+ import { UpdateChannelCommandInput, UpdateChannelCommandOutput } from "../commands/UpdateChannelCommand";
21
+ import { UpdateOriginEndpointCommandInput, UpdateOriginEndpointCommandOutput } from "../commands/UpdateOriginEndpointCommand";
22
+ export declare const serializeAws_restJson1ConfigureLogsCommand: (input: ConfigureLogsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
23
+ export declare const serializeAws_restJson1CreateChannelCommand: (input: CreateChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
24
+ export declare const serializeAws_restJson1CreateHarvestJobCommand: (input: CreateHarvestJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
25
+ export declare const serializeAws_restJson1CreateOriginEndpointCommand: (input: CreateOriginEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
26
+ export declare const serializeAws_restJson1DeleteChannelCommand: (input: DeleteChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
27
+ export declare const serializeAws_restJson1DeleteOriginEndpointCommand: (input: DeleteOriginEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
28
+ export declare const serializeAws_restJson1DescribeChannelCommand: (input: DescribeChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
29
+ export declare const serializeAws_restJson1DescribeHarvestJobCommand: (input: DescribeHarvestJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
30
+ export declare const serializeAws_restJson1DescribeOriginEndpointCommand: (input: DescribeOriginEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
31
+ export declare const serializeAws_restJson1ListChannelsCommand: (input: ListChannelsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
32
+ export declare const serializeAws_restJson1ListHarvestJobsCommand: (input: ListHarvestJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
33
+ export declare const serializeAws_restJson1ListOriginEndpointsCommand: (input: ListOriginEndpointsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
34
+ export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
35
+ export declare const serializeAws_restJson1RotateChannelCredentialsCommand: (input: RotateChannelCredentialsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
36
+ export declare const serializeAws_restJson1RotateIngestEndpointCredentialsCommand: (input: RotateIngestEndpointCredentialsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
37
+ export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
38
+ export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
39
+ export declare const serializeAws_restJson1UpdateChannelCommand: (input: UpdateChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
40
+ export declare const serializeAws_restJson1UpdateOriginEndpointCommand: (input: UpdateOriginEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
41
+ export declare const deserializeAws_restJson1ConfigureLogsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ConfigureLogsCommandOutput>;
42
+ export declare const deserializeAws_restJson1CreateChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateChannelCommandOutput>;
43
+ export declare const deserializeAws_restJson1CreateHarvestJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateHarvestJobCommandOutput>;
44
+ export declare const deserializeAws_restJson1CreateOriginEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateOriginEndpointCommandOutput>;
45
+ export declare const deserializeAws_restJson1DeleteChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteChannelCommandOutput>;
46
+ export declare const deserializeAws_restJson1DeleteOriginEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteOriginEndpointCommandOutput>;
47
+ export declare const deserializeAws_restJson1DescribeChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeChannelCommandOutput>;
48
+ export declare const deserializeAws_restJson1DescribeHarvestJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeHarvestJobCommandOutput>;
49
+ export declare const deserializeAws_restJson1DescribeOriginEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeOriginEndpointCommandOutput>;
50
+ export declare const deserializeAws_restJson1ListChannelsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListChannelsCommandOutput>;
51
+ export declare const deserializeAws_restJson1ListHarvestJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListHarvestJobsCommandOutput>;
52
+ export declare const deserializeAws_restJson1ListOriginEndpointsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListOriginEndpointsCommandOutput>;
53
+ export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
54
+ export declare const deserializeAws_restJson1RotateChannelCredentialsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RotateChannelCredentialsCommandOutput>;
55
+ export declare const deserializeAws_restJson1RotateIngestEndpointCredentialsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RotateIngestEndpointCredentialsCommandOutput>;
56
+ export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
57
+ export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
58
+ export declare const deserializeAws_restJson1UpdateChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateChannelCommandOutput>;
59
+ export declare const deserializeAws_restJson1UpdateOriginEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateOriginEndpointCommandOutput>;
@@ -0,0 +1,38 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
+ import { MediaPackageClientConfig } from "./MediaPackageClient";
3
+
4
+ export declare const getRuntimeConfig: (config: MediaPackageClientConfig) => {
5
+ runtime: string;
6
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
+ base64Decoder: import("@aws-sdk/types").Decoder;
8
+ base64Encoder: import("@aws-sdk/types").Encoder;
9
+ bodyLengthChecker: (body: any) => number | undefined;
10
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
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>;
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>;
20
+ utf8Decoder: import("@aws-sdk/types").Decoder;
21
+ utf8Encoder: import("@aws-sdk/types").Encoder;
22
+ apiVersion: string;
23
+ urlParser: import("@aws-sdk/types").UrlParser;
24
+ disableHostPrefix: boolean;
25
+ logger: import("@aws-sdk/types").Logger;
26
+ serviceId: string;
27
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
+ endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
+ tls?: boolean | undefined;
30
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
+ credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
+ signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
+ signingEscapePath?: boolean | undefined;
34
+ systemClockOffset?: number | undefined;
35
+ signingRegion?: string | undefined;
36
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
+ };
@@ -0,0 +1,38 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
+ import { MediaPackageClientConfig } from "./MediaPackageClient";
3
+
4
+ export declare const getRuntimeConfig: (config: MediaPackageClientConfig) => {
5
+ runtime: string;
6
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
+ base64Decoder: import("@aws-sdk/types").Decoder;
8
+ base64Encoder: import("@aws-sdk/types").Encoder;
9
+ bodyLengthChecker: (body: any) => number | undefined;
10
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
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>;
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>;
20
+ utf8Decoder: import("@aws-sdk/types").Decoder;
21
+ utf8Encoder: import("@aws-sdk/types").Encoder;
22
+ apiVersion: string;
23
+ urlParser: import("@aws-sdk/types").UrlParser;
24
+ disableHostPrefix: boolean;
25
+ logger: import("@aws-sdk/types").Logger;
26
+ serviceId: string;
27
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
+ endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
+ tls?: boolean | undefined;
30
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
+ credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
+ signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
+ signingEscapePath?: boolean | undefined;
34
+ systemClockOffset?: number | undefined;
35
+ signingRegion?: string | undefined;
36
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
+ };
@@ -0,0 +1,37 @@
1
+ import { MediaPackageClientConfig } from "./MediaPackageClient";
2
+
3
+ export declare const getRuntimeConfig: (config: MediaPackageClientConfig) => {
4
+ runtime: string;
5
+ sha256: import("@aws-sdk/types").HashConstructor;
6
+ 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;
7
+ apiVersion: string;
8
+ urlParser: import("@aws-sdk/types").UrlParser;
9
+ bodyLengthChecker: (body: any) => number | undefined;
10
+ streamCollector: import("@aws-sdk/types").StreamCollector;
11
+ base64Decoder: import("@aws-sdk/types").Decoder;
12
+ base64Encoder: import("@aws-sdk/types").Encoder;
13
+ utf8Decoder: import("@aws-sdk/types").Decoder;
14
+ utf8Encoder: import("@aws-sdk/types").Encoder;
15
+ disableHostPrefix: boolean;
16
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
17
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
18
+ logger: import("@aws-sdk/types").Logger;
19
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
21
+ serviceId: string;
22
+ region: string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Provider<any>;
23
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
24
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
25
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
26
+ defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
27
+ endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
28
+ tls?: boolean | undefined;
29
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
30
+ credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
31
+ signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
32
+ signingEscapePath?: boolean | undefined;
33
+ systemClockOffset?: number | undefined;
34
+ signingRegion?: string | undefined;
35
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
36
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
37
+ };
@@ -0,0 +1,11 @@
1
+ import { Logger as __Logger } from "@aws-sdk/types";
2
+ import { MediaPackageClientConfig } from "./MediaPackageClient";
3
+
4
+ export declare const getRuntimeConfig: (config: MediaPackageClientConfig) => {
5
+ apiVersion: string;
6
+ disableHostPrefix: boolean;
7
+ logger: __Logger;
8
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
9
+ serviceId: string;
10
+ urlParser: import("@aws-sdk/types").UrlParser;
11
+ };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-mediapackage",
3
3
  "description": "AWS SDK for JavaScript Mediapackage Client for Node.js, Browser and React Native",
4
- "version": "3.50.0",
4
+ "version": "3.53.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",
@@ -9,7 +9,7 @@
9
9
  "build:es": "tsc -p tsconfig.es.json",
10
10
  "build:types": "tsc -p tsconfig.types.json",
11
11
  "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
12
- "clean": "rimraf ./dist-*"
12
+ "clean": "rimraf ./dist-* && rimraf *.tsbuildinfo"
13
13
  },
14
14
  "main": "./dist-cjs/index.js",
15
15
  "types": "./dist-types/index.d.ts",
@@ -18,40 +18,40 @@
18
18
  "dependencies": {
19
19
  "@aws-crypto/sha256-browser": "2.0.0",
20
20
  "@aws-crypto/sha256-js": "2.0.0",
21
- "@aws-sdk/client-sts": "3.50.0",
22
- "@aws-sdk/config-resolver": "3.50.0",
23
- "@aws-sdk/credential-provider-node": "3.50.0",
24
- "@aws-sdk/fetch-http-handler": "3.50.0",
25
- "@aws-sdk/hash-node": "3.50.0",
26
- "@aws-sdk/invalid-dependency": "3.50.0",
27
- "@aws-sdk/middleware-content-length": "3.50.0",
28
- "@aws-sdk/middleware-host-header": "3.50.0",
29
- "@aws-sdk/middleware-logger": "3.50.0",
30
- "@aws-sdk/middleware-retry": "3.50.0",
31
- "@aws-sdk/middleware-serde": "3.50.0",
32
- "@aws-sdk/middleware-signing": "3.50.0",
33
- "@aws-sdk/middleware-stack": "3.50.0",
34
- "@aws-sdk/middleware-user-agent": "3.50.0",
35
- "@aws-sdk/node-config-provider": "3.50.0",
36
- "@aws-sdk/node-http-handler": "3.50.0",
37
- "@aws-sdk/protocol-http": "3.50.0",
38
- "@aws-sdk/smithy-client": "3.50.0",
39
- "@aws-sdk/types": "3.50.0",
40
- "@aws-sdk/url-parser": "3.50.0",
41
- "@aws-sdk/util-base64-browser": "3.49.0",
42
- "@aws-sdk/util-base64-node": "3.49.0",
43
- "@aws-sdk/util-body-length-browser": "3.49.0",
44
- "@aws-sdk/util-body-length-node": "3.49.0",
45
- "@aws-sdk/util-defaults-mode-browser": "3.50.0",
46
- "@aws-sdk/util-defaults-mode-node": "3.50.0",
47
- "@aws-sdk/util-user-agent-browser": "3.50.0",
48
- "@aws-sdk/util-user-agent-node": "3.50.0",
49
- "@aws-sdk/util-utf8-browser": "3.49.0",
50
- "@aws-sdk/util-utf8-node": "3.49.0",
21
+ "@aws-sdk/client-sts": "3.53.0",
22
+ "@aws-sdk/config-resolver": "3.53.0",
23
+ "@aws-sdk/credential-provider-node": "3.53.0",
24
+ "@aws-sdk/fetch-http-handler": "3.53.0",
25
+ "@aws-sdk/hash-node": "3.53.0",
26
+ "@aws-sdk/invalid-dependency": "3.53.0",
27
+ "@aws-sdk/middleware-content-length": "3.53.0",
28
+ "@aws-sdk/middleware-host-header": "3.53.0",
29
+ "@aws-sdk/middleware-logger": "3.53.0",
30
+ "@aws-sdk/middleware-retry": "3.53.0",
31
+ "@aws-sdk/middleware-serde": "3.53.0",
32
+ "@aws-sdk/middleware-signing": "3.53.0",
33
+ "@aws-sdk/middleware-stack": "3.53.0",
34
+ "@aws-sdk/middleware-user-agent": "3.53.0",
35
+ "@aws-sdk/node-config-provider": "3.53.0",
36
+ "@aws-sdk/node-http-handler": "3.53.0",
37
+ "@aws-sdk/protocol-http": "3.53.0",
38
+ "@aws-sdk/smithy-client": "3.53.0",
39
+ "@aws-sdk/types": "3.53.0",
40
+ "@aws-sdk/url-parser": "3.53.0",
41
+ "@aws-sdk/util-base64-browser": "3.52.0",
42
+ "@aws-sdk/util-base64-node": "3.52.0",
43
+ "@aws-sdk/util-body-length-browser": "3.52.0",
44
+ "@aws-sdk/util-body-length-node": "3.52.0",
45
+ "@aws-sdk/util-defaults-mode-browser": "3.53.0",
46
+ "@aws-sdk/util-defaults-mode-node": "3.53.0",
47
+ "@aws-sdk/util-user-agent-browser": "3.53.0",
48
+ "@aws-sdk/util-user-agent-node": "3.53.0",
49
+ "@aws-sdk/util-utf8-browser": "3.52.0",
50
+ "@aws-sdk/util-utf8-node": "3.52.0",
51
51
  "tslib": "^2.3.0"
52
52
  },
53
53
  "devDependencies": {
54
- "@aws-sdk/service-client-documentation-generator": "3.49.0",
54
+ "@aws-sdk/service-client-documentation-generator": "3.52.0",
55
55
  "@tsconfig/recommended": "1.0.1",
56
56
  "@types/node": "^12.7.5",
57
57
  "concurrently": "7.0.0",