@aws-sdk/client-mediapackage 3.296.0 → 3.297.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 (28) hide show
  1. package/dist-types/MediaPackage.d.ts +26 -0
  2. package/dist-types/MediaPackageClient.d.ts +24 -4
  3. package/dist-types/commands/ConfigureLogsCommand.d.ts +16 -0
  4. package/dist-types/commands/CreateChannelCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateHarvestJobCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateOriginEndpointCommand.d.ts +16 -0
  7. package/dist-types/commands/DeleteChannelCommand.d.ts +16 -0
  8. package/dist-types/commands/DeleteOriginEndpointCommand.d.ts +16 -0
  9. package/dist-types/commands/DescribeChannelCommand.d.ts +16 -0
  10. package/dist-types/commands/DescribeHarvestJobCommand.d.ts +16 -0
  11. package/dist-types/commands/DescribeOriginEndpointCommand.d.ts +16 -0
  12. package/dist-types/commands/ListChannelsCommand.d.ts +16 -0
  13. package/dist-types/commands/ListHarvestJobsCommand.d.ts +16 -0
  14. package/dist-types/commands/ListOriginEndpointsCommand.d.ts +16 -0
  15. package/dist-types/commands/ListTagsForResourceCommand.d.ts +13 -0
  16. package/dist-types/commands/RotateChannelCredentialsCommand.d.ts +16 -0
  17. package/dist-types/commands/RotateIngestEndpointCredentialsCommand.d.ts +16 -0
  18. package/dist-types/commands/TagResourceCommand.d.ts +13 -0
  19. package/dist-types/commands/UntagResourceCommand.d.ts +13 -0
  20. package/dist-types/commands/UpdateChannelCommand.d.ts +16 -0
  21. package/dist-types/commands/UpdateOriginEndpointCommand.d.ts +16 -0
  22. package/dist-types/models/MediaPackageServiceException.d.ts +2 -0
  23. package/dist-types/models/models_0.d.ts +173 -0
  24. package/dist-types/pagination/Interfaces.d.ts +3 -0
  25. package/dist-types/pagination/ListChannelsPaginator.d.ts +3 -0
  26. package/dist-types/pagination/ListHarvestJobsPaginator.d.ts +3 -0
  27. package/dist-types/pagination/ListOriginEndpointsPaginator.d.ts +3 -0
  28. package/package.json +3 -3
@@ -20,85 +20,102 @@ import { UpdateChannelCommandInput, UpdateChannelCommandOutput } from "./command
20
20
  import { UpdateOriginEndpointCommandInput, UpdateOriginEndpointCommandOutput } from "./commands/UpdateOriginEndpointCommand";
21
21
  import { MediaPackageClient } from "./MediaPackageClient";
22
22
  /**
23
+ * @public
23
24
  * AWS Elemental MediaPackage
24
25
  */
25
26
  export declare class MediaPackage extends MediaPackageClient {
26
27
  /**
28
+ * @public
27
29
  * Changes the Channel's properities to configure log subscription
28
30
  */
29
31
  configureLogs(args: ConfigureLogsCommandInput, options?: __HttpHandlerOptions): Promise<ConfigureLogsCommandOutput>;
30
32
  configureLogs(args: ConfigureLogsCommandInput, cb: (err: any, data?: ConfigureLogsCommandOutput) => void): void;
31
33
  configureLogs(args: ConfigureLogsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ConfigureLogsCommandOutput) => void): void;
32
34
  /**
35
+ * @public
33
36
  * Creates a new Channel.
34
37
  */
35
38
  createChannel(args: CreateChannelCommandInput, options?: __HttpHandlerOptions): Promise<CreateChannelCommandOutput>;
36
39
  createChannel(args: CreateChannelCommandInput, cb: (err: any, data?: CreateChannelCommandOutput) => void): void;
37
40
  createChannel(args: CreateChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateChannelCommandOutput) => void): void;
38
41
  /**
42
+ * @public
39
43
  * Creates a new HarvestJob record.
40
44
  */
41
45
  createHarvestJob(args: CreateHarvestJobCommandInput, options?: __HttpHandlerOptions): Promise<CreateHarvestJobCommandOutput>;
42
46
  createHarvestJob(args: CreateHarvestJobCommandInput, cb: (err: any, data?: CreateHarvestJobCommandOutput) => void): void;
43
47
  createHarvestJob(args: CreateHarvestJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateHarvestJobCommandOutput) => void): void;
44
48
  /**
49
+ * @public
45
50
  * Creates a new OriginEndpoint record.
46
51
  */
47
52
  createOriginEndpoint(args: CreateOriginEndpointCommandInput, options?: __HttpHandlerOptions): Promise<CreateOriginEndpointCommandOutput>;
48
53
  createOriginEndpoint(args: CreateOriginEndpointCommandInput, cb: (err: any, data?: CreateOriginEndpointCommandOutput) => void): void;
49
54
  createOriginEndpoint(args: CreateOriginEndpointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateOriginEndpointCommandOutput) => void): void;
50
55
  /**
56
+ * @public
51
57
  * Deletes an existing Channel.
52
58
  */
53
59
  deleteChannel(args: DeleteChannelCommandInput, options?: __HttpHandlerOptions): Promise<DeleteChannelCommandOutput>;
54
60
  deleteChannel(args: DeleteChannelCommandInput, cb: (err: any, data?: DeleteChannelCommandOutput) => void): void;
55
61
  deleteChannel(args: DeleteChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteChannelCommandOutput) => void): void;
56
62
  /**
63
+ * @public
57
64
  * Deletes an existing OriginEndpoint.
58
65
  */
59
66
  deleteOriginEndpoint(args: DeleteOriginEndpointCommandInput, options?: __HttpHandlerOptions): Promise<DeleteOriginEndpointCommandOutput>;
60
67
  deleteOriginEndpoint(args: DeleteOriginEndpointCommandInput, cb: (err: any, data?: DeleteOriginEndpointCommandOutput) => void): void;
61
68
  deleteOriginEndpoint(args: DeleteOriginEndpointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteOriginEndpointCommandOutput) => void): void;
62
69
  /**
70
+ * @public
63
71
  * Gets details about a Channel.
64
72
  */
65
73
  describeChannel(args: DescribeChannelCommandInput, options?: __HttpHandlerOptions): Promise<DescribeChannelCommandOutput>;
66
74
  describeChannel(args: DescribeChannelCommandInput, cb: (err: any, data?: DescribeChannelCommandOutput) => void): void;
67
75
  describeChannel(args: DescribeChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeChannelCommandOutput) => void): void;
68
76
  /**
77
+ * @public
69
78
  * Gets details about an existing HarvestJob.
70
79
  */
71
80
  describeHarvestJob(args: DescribeHarvestJobCommandInput, options?: __HttpHandlerOptions): Promise<DescribeHarvestJobCommandOutput>;
72
81
  describeHarvestJob(args: DescribeHarvestJobCommandInput, cb: (err: any, data?: DescribeHarvestJobCommandOutput) => void): void;
73
82
  describeHarvestJob(args: DescribeHarvestJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeHarvestJobCommandOutput) => void): void;
74
83
  /**
84
+ * @public
75
85
  * Gets details about an existing OriginEndpoint.
76
86
  */
77
87
  describeOriginEndpoint(args: DescribeOriginEndpointCommandInput, options?: __HttpHandlerOptions): Promise<DescribeOriginEndpointCommandOutput>;
78
88
  describeOriginEndpoint(args: DescribeOriginEndpointCommandInput, cb: (err: any, data?: DescribeOriginEndpointCommandOutput) => void): void;
79
89
  describeOriginEndpoint(args: DescribeOriginEndpointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeOriginEndpointCommandOutput) => void): void;
80
90
  /**
91
+ * @public
81
92
  * Returns a collection of Channels.
82
93
  */
83
94
  listChannels(args: ListChannelsCommandInput, options?: __HttpHandlerOptions): Promise<ListChannelsCommandOutput>;
84
95
  listChannels(args: ListChannelsCommandInput, cb: (err: any, data?: ListChannelsCommandOutput) => void): void;
85
96
  listChannels(args: ListChannelsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListChannelsCommandOutput) => void): void;
86
97
  /**
98
+ * @public
87
99
  * Returns a collection of HarvestJob records.
88
100
  */
89
101
  listHarvestJobs(args: ListHarvestJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListHarvestJobsCommandOutput>;
90
102
  listHarvestJobs(args: ListHarvestJobsCommandInput, cb: (err: any, data?: ListHarvestJobsCommandOutput) => void): void;
91
103
  listHarvestJobs(args: ListHarvestJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListHarvestJobsCommandOutput) => void): void;
92
104
  /**
105
+ * @public
93
106
  * Returns a collection of OriginEndpoint records.
94
107
  */
95
108
  listOriginEndpoints(args: ListOriginEndpointsCommandInput, options?: __HttpHandlerOptions): Promise<ListOriginEndpointsCommandOutput>;
96
109
  listOriginEndpoints(args: ListOriginEndpointsCommandInput, cb: (err: any, data?: ListOriginEndpointsCommandOutput) => void): void;
97
110
  listOriginEndpoints(args: ListOriginEndpointsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListOriginEndpointsCommandOutput) => void): void;
111
+ /**
112
+ * @public
113
+ */
98
114
  listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
99
115
  listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
100
116
  listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
101
117
  /**
118
+ * @public
102
119
  * @deprecated
103
120
  *
104
121
  * Changes the Channel's first IngestEndpoint's username and password. WARNING - This API is deprecated. Please use RotateIngestEndpointCredentials instead
@@ -107,24 +124,33 @@ export declare class MediaPackage extends MediaPackageClient {
107
124
  rotateChannelCredentials(args: RotateChannelCredentialsCommandInput, cb: (err: any, data?: RotateChannelCredentialsCommandOutput) => void): void;
108
125
  rotateChannelCredentials(args: RotateChannelCredentialsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RotateChannelCredentialsCommandOutput) => void): void;
109
126
  /**
127
+ * @public
110
128
  * Rotate the IngestEndpoint's username and password, as specified by the IngestEndpoint's id.
111
129
  */
112
130
  rotateIngestEndpointCredentials(args: RotateIngestEndpointCredentialsCommandInput, options?: __HttpHandlerOptions): Promise<RotateIngestEndpointCredentialsCommandOutput>;
113
131
  rotateIngestEndpointCredentials(args: RotateIngestEndpointCredentialsCommandInput, cb: (err: any, data?: RotateIngestEndpointCredentialsCommandOutput) => void): void;
114
132
  rotateIngestEndpointCredentials(args: RotateIngestEndpointCredentialsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RotateIngestEndpointCredentialsCommandOutput) => void): void;
133
+ /**
134
+ * @public
135
+ */
115
136
  tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
116
137
  tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
117
138
  tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
139
+ /**
140
+ * @public
141
+ */
118
142
  untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
119
143
  untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
120
144
  untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
121
145
  /**
146
+ * @public
122
147
  * Updates an existing Channel.
123
148
  */
124
149
  updateChannel(args: UpdateChannelCommandInput, options?: __HttpHandlerOptions): Promise<UpdateChannelCommandOutput>;
125
150
  updateChannel(args: UpdateChannelCommandInput, cb: (err: any, data?: UpdateChannelCommandOutput) => void): void;
126
151
  updateChannel(args: UpdateChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateChannelCommandOutput) => void): void;
127
152
  /**
153
+ * @public
128
154
  * Updates an existing OriginEndpoint.
129
155
  */
130
156
  updateOriginEndpoint(args: UpdateOriginEndpointCommandInput, options?: __HttpHandlerOptions): Promise<UpdateOriginEndpointCommandOutput>;
@@ -27,15 +27,24 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./command
27
27
  import { UpdateChannelCommandInput, UpdateChannelCommandOutput } from "./commands/UpdateChannelCommand";
28
28
  import { UpdateOriginEndpointCommandInput, UpdateOriginEndpointCommandOutput } from "./commands/UpdateOriginEndpointCommand";
29
29
  import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
30
+ /**
31
+ * @public
32
+ */
30
33
  export type ServiceInputTypes = ConfigureLogsCommandInput | CreateChannelCommandInput | CreateHarvestJobCommandInput | CreateOriginEndpointCommandInput | DeleteChannelCommandInput | DeleteOriginEndpointCommandInput | DescribeChannelCommandInput | DescribeHarvestJobCommandInput | DescribeOriginEndpointCommandInput | ListChannelsCommandInput | ListHarvestJobsCommandInput | ListOriginEndpointsCommandInput | ListTagsForResourceCommandInput | RotateChannelCredentialsCommandInput | RotateIngestEndpointCredentialsCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateChannelCommandInput | UpdateOriginEndpointCommandInput;
34
+ /**
35
+ * @public
36
+ */
31
37
  export type ServiceOutputTypes = ConfigureLogsCommandOutput | CreateChannelCommandOutput | CreateHarvestJobCommandOutput | CreateOriginEndpointCommandOutput | DeleteChannelCommandOutput | DeleteOriginEndpointCommandOutput | DescribeChannelCommandOutput | DescribeHarvestJobCommandOutput | DescribeOriginEndpointCommandOutput | ListChannelsCommandOutput | ListHarvestJobsCommandOutput | ListOriginEndpointsCommandOutput | ListTagsForResourceCommandOutput | RotateChannelCredentialsCommandOutput | RotateIngestEndpointCredentialsCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateChannelCommandOutput | UpdateOriginEndpointCommandOutput;
38
+ /**
39
+ * @public
40
+ */
32
41
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
33
42
  /**
34
43
  * The HTTP handler to use. Fetch in browser and Https in Nodejs.
35
44
  */
36
45
  requestHandler?: __HttpHandler;
37
46
  /**
38
- * A constructor for a class implementing the {@link __Checksum} interface
47
+ * A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
39
48
  * that computes the SHA-256 HMAC or checksum of a string or binary buffer.
40
49
  * @internal
41
50
  */
@@ -125,23 +134,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
125
134
  */
126
135
  logger?: __Logger;
127
136
  /**
128
- * The {@link __DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
137
+ * The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
129
138
  */
130
139
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
131
140
  }
141
+ /**
142
+ * @public
143
+ */
132
144
  type MediaPackageClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
133
145
  /**
134
- * The configuration interface of MediaPackageClient class constructor that set the region, credentials and other options.
146
+ * @public
147
+ *
148
+ * The configuration interface of MediaPackageClient class constructor that set the region, credentials and other options.
135
149
  */
136
150
  export interface MediaPackageClientConfig extends MediaPackageClientConfigType {
137
151
  }
152
+ /**
153
+ * @public
154
+ */
138
155
  type MediaPackageClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
139
156
  /**
140
- * The resolved configuration interface of MediaPackageClient class. This is resolved and normalized from the {@link MediaPackageClientConfig | constructor configuration interface}.
157
+ * @public
158
+ *
159
+ * The resolved configuration interface of MediaPackageClient class. This is resolved and normalized from the {@link MediaPackageClientConfig | constructor configuration interface}.
141
160
  */
142
161
  export interface MediaPackageClientResolvedConfig extends MediaPackageClientResolvedConfigType {
143
162
  }
144
163
  /**
164
+ * @public
145
165
  * AWS Elemental MediaPackage
146
166
  */
147
167
  export declare class MediaPackageClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, MediaPackageClientResolvedConfig> {
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient";
5
5
  import { ConfigureLogsRequest, ConfigureLogsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ConfigureLogsCommand}.
8
10
  */
9
11
  export interface ConfigureLogsCommandInput extends ConfigureLogsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ConfigureLogsCommand}.
13
17
  */
14
18
  export interface ConfigureLogsCommandOutput extends ConfigureLogsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * Changes the Channel's properities to configure log subscription
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 ConfigureLogsCommandOutput extends ConfigureLogsResponse, __Met
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ConfigureLogsCommandInput - {@link ConfigureLogsCommandInput}
34
+ * @returns {@link ConfigureLogsCommandOutput}
28
35
  * @see {@link ConfigureLogsCommandInput} for command's `input` shape.
29
36
  * @see {@link ConfigureLogsCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaPackageClientResolvedConfig | config} for MediaPackageClient's `config` shape.
@@ -52,11 +59,20 @@ export interface ConfigureLogsCommandOutput extends ConfigureLogsResponse, __Met
52
59
  export declare class ConfigureLogsCommand extends $Command<ConfigureLogsCommandInput, ConfigureLogsCommandOutput, MediaPackageClientResolvedConfig> {
53
60
  readonly input: ConfigureLogsCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: ConfigureLogsCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaPackageClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ConfigureLogsCommandInput, ConfigureLogsCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient";
5
5
  import { CreateChannelRequest, CreateChannelResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateChannelCommand}.
8
10
  */
9
11
  export interface CreateChannelCommandInput extends CreateChannelRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateChannelCommand}.
13
17
  */
14
18
  export interface CreateChannelCommandOutput extends CreateChannelResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * Creates a new Channel.
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 CreateChannelCommandOutput extends CreateChannelResponse, __Met
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param CreateChannelCommandInput - {@link CreateChannelCommandInput}
34
+ * @returns {@link CreateChannelCommandOutput}
28
35
  * @see {@link CreateChannelCommandInput} for command's `input` shape.
29
36
  * @see {@link CreateChannelCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaPackageClientResolvedConfig | config} for MediaPackageClient's `config` shape.
@@ -52,11 +59,20 @@ export interface CreateChannelCommandOutput extends CreateChannelResponse, __Met
52
59
  export declare class CreateChannelCommand extends $Command<CreateChannelCommandInput, CreateChannelCommandOutput, MediaPackageClientResolvedConfig> {
53
60
  readonly input: CreateChannelCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: CreateChannelCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaPackageClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateChannelCommandInput, CreateChannelCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient";
5
5
  import { CreateHarvestJobRequest, CreateHarvestJobResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateHarvestJobCommand}.
8
10
  */
9
11
  export interface CreateHarvestJobCommandInput extends CreateHarvestJobRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateHarvestJobCommand}.
13
17
  */
14
18
  export interface CreateHarvestJobCommandOutput extends CreateHarvestJobResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * Creates a new HarvestJob record.
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 CreateHarvestJobCommandOutput extends CreateHarvestJobResponse,
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param CreateHarvestJobCommandInput - {@link CreateHarvestJobCommandInput}
34
+ * @returns {@link CreateHarvestJobCommandOutput}
28
35
  * @see {@link CreateHarvestJobCommandInput} for command's `input` shape.
29
36
  * @see {@link CreateHarvestJobCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaPackageClientResolvedConfig | config} for MediaPackageClient's `config` shape.
@@ -52,11 +59,20 @@ export interface CreateHarvestJobCommandOutput extends CreateHarvestJobResponse,
52
59
  export declare class CreateHarvestJobCommand extends $Command<CreateHarvestJobCommandInput, CreateHarvestJobCommandOutput, MediaPackageClientResolvedConfig> {
53
60
  readonly input: CreateHarvestJobCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: CreateHarvestJobCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaPackageClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateHarvestJobCommandInput, CreateHarvestJobCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient";
5
5
  import { CreateOriginEndpointRequest, CreateOriginEndpointResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateOriginEndpointCommand}.
8
10
  */
9
11
  export interface CreateOriginEndpointCommandInput extends CreateOriginEndpointRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateOriginEndpointCommand}.
13
17
  */
14
18
  export interface CreateOriginEndpointCommandOutput extends CreateOriginEndpointResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * Creates a new OriginEndpoint record.
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 CreateOriginEndpointCommandOutput extends CreateOriginEndpointR
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param CreateOriginEndpointCommandInput - {@link CreateOriginEndpointCommandInput}
34
+ * @returns {@link CreateOriginEndpointCommandOutput}
28
35
  * @see {@link CreateOriginEndpointCommandInput} for command's `input` shape.
29
36
  * @see {@link CreateOriginEndpointCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaPackageClientResolvedConfig | config} for MediaPackageClient's `config` shape.
@@ -52,11 +59,20 @@ export interface CreateOriginEndpointCommandOutput extends CreateOriginEndpointR
52
59
  export declare class CreateOriginEndpointCommand extends $Command<CreateOriginEndpointCommandInput, CreateOriginEndpointCommandOutput, MediaPackageClientResolvedConfig> {
53
60
  readonly input: CreateOriginEndpointCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: CreateOriginEndpointCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaPackageClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateOriginEndpointCommandInput, CreateOriginEndpointCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient";
5
5
  import { DeleteChannelRequest, DeleteChannelResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteChannelCommand}.
8
10
  */
9
11
  export interface DeleteChannelCommandInput extends DeleteChannelRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteChannelCommand}.
13
17
  */
14
18
  export interface DeleteChannelCommandOutput extends DeleteChannelResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * Deletes an existing Channel.
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 DeleteChannelCommandOutput extends DeleteChannelResponse, __Met
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DeleteChannelCommandInput - {@link DeleteChannelCommandInput}
34
+ * @returns {@link DeleteChannelCommandOutput}
28
35
  * @see {@link DeleteChannelCommandInput} for command's `input` shape.
29
36
  * @see {@link DeleteChannelCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaPackageClientResolvedConfig | config} for MediaPackageClient's `config` shape.
@@ -52,11 +59,20 @@ export interface DeleteChannelCommandOutput extends DeleteChannelResponse, __Met
52
59
  export declare class DeleteChannelCommand extends $Command<DeleteChannelCommandInput, DeleteChannelCommandOutput, MediaPackageClientResolvedConfig> {
53
60
  readonly input: DeleteChannelCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: DeleteChannelCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaPackageClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteChannelCommandInput, DeleteChannelCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient";
5
5
  import { DeleteOriginEndpointRequest, DeleteOriginEndpointResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteOriginEndpointCommand}.
8
10
  */
9
11
  export interface DeleteOriginEndpointCommandInput extends DeleteOriginEndpointRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteOriginEndpointCommand}.
13
17
  */
14
18
  export interface DeleteOriginEndpointCommandOutput extends DeleteOriginEndpointResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * Deletes an existing OriginEndpoint.
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 DeleteOriginEndpointCommandOutput extends DeleteOriginEndpointR
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DeleteOriginEndpointCommandInput - {@link DeleteOriginEndpointCommandInput}
34
+ * @returns {@link DeleteOriginEndpointCommandOutput}
28
35
  * @see {@link DeleteOriginEndpointCommandInput} for command's `input` shape.
29
36
  * @see {@link DeleteOriginEndpointCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaPackageClientResolvedConfig | config} for MediaPackageClient's `config` shape.
@@ -52,11 +59,20 @@ export interface DeleteOriginEndpointCommandOutput extends DeleteOriginEndpointR
52
59
  export declare class DeleteOriginEndpointCommand extends $Command<DeleteOriginEndpointCommandInput, DeleteOriginEndpointCommandOutput, MediaPackageClientResolvedConfig> {
53
60
  readonly input: DeleteOriginEndpointCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: DeleteOriginEndpointCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaPackageClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteOriginEndpointCommandInput, DeleteOriginEndpointCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient";
5
5
  import { DescribeChannelRequest, DescribeChannelResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeChannelCommand}.
8
10
  */
9
11
  export interface DescribeChannelCommandInput extends DescribeChannelRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeChannelCommand}.
13
17
  */
14
18
  export interface DescribeChannelCommandOutput extends DescribeChannelResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * Gets details about a Channel.
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 DescribeChannelCommandOutput extends DescribeChannelResponse, _
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DescribeChannelCommandInput - {@link DescribeChannelCommandInput}
34
+ * @returns {@link DescribeChannelCommandOutput}
28
35
  * @see {@link DescribeChannelCommandInput} for command's `input` shape.
29
36
  * @see {@link DescribeChannelCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaPackageClientResolvedConfig | config} for MediaPackageClient's `config` shape.
@@ -52,11 +59,20 @@ export interface DescribeChannelCommandOutput extends DescribeChannelResponse, _
52
59
  export declare class DescribeChannelCommand extends $Command<DescribeChannelCommandInput, DescribeChannelCommandOutput, MediaPackageClientResolvedConfig> {
53
60
  readonly input: DescribeChannelCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: DescribeChannelCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaPackageClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeChannelCommandInput, DescribeChannelCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient";
5
5
  import { DescribeHarvestJobRequest, DescribeHarvestJobResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeHarvestJobCommand}.
8
10
  */
9
11
  export interface DescribeHarvestJobCommandInput extends DescribeHarvestJobRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeHarvestJobCommand}.
13
17
  */
14
18
  export interface DescribeHarvestJobCommandOutput extends DescribeHarvestJobResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * Gets details about an existing HarvestJob.
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 DescribeHarvestJobCommandOutput extends DescribeHarvestJobRespo
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DescribeHarvestJobCommandInput - {@link DescribeHarvestJobCommandInput}
34
+ * @returns {@link DescribeHarvestJobCommandOutput}
28
35
  * @see {@link DescribeHarvestJobCommandInput} for command's `input` shape.
29
36
  * @see {@link DescribeHarvestJobCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaPackageClientResolvedConfig | config} for MediaPackageClient's `config` shape.
@@ -52,11 +59,20 @@ export interface DescribeHarvestJobCommandOutput extends DescribeHarvestJobRespo
52
59
  export declare class DescribeHarvestJobCommand extends $Command<DescribeHarvestJobCommandInput, DescribeHarvestJobCommandOutput, MediaPackageClientResolvedConfig> {
53
60
  readonly input: DescribeHarvestJobCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: DescribeHarvestJobCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaPackageClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeHarvestJobCommandInput, DescribeHarvestJobCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }