@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
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient";
5
5
  import { DescribeOriginEndpointRequest, DescribeOriginEndpointResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeOriginEndpointCommand}.
8
10
  */
9
11
  export interface DescribeOriginEndpointCommandInput extends DescribeOriginEndpointRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeOriginEndpointCommand}.
13
17
  */
14
18
  export interface DescribeOriginEndpointCommandOutput extends DescribeOriginEndpointResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * Gets details about 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 DescribeOriginEndpointCommandOutput extends DescribeOriginEndpo
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DescribeOriginEndpointCommandInput - {@link DescribeOriginEndpointCommandInput}
34
+ * @returns {@link DescribeOriginEndpointCommandOutput}
28
35
  * @see {@link DescribeOriginEndpointCommandInput} for command's `input` shape.
29
36
  * @see {@link DescribeOriginEndpointCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaPackageClientResolvedConfig | config} for MediaPackageClient's `config` shape.
@@ -52,11 +59,20 @@ export interface DescribeOriginEndpointCommandOutput extends DescribeOriginEndpo
52
59
  export declare class DescribeOriginEndpointCommand extends $Command<DescribeOriginEndpointCommandInput, DescribeOriginEndpointCommandOutput, MediaPackageClientResolvedConfig> {
53
60
  readonly input: DescribeOriginEndpointCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: DescribeOriginEndpointCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaPackageClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeOriginEndpointCommandInput, DescribeOriginEndpointCommandOutput>;
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 { ListChannelsRequest, ListChannelsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListChannelsCommand}.
8
10
  */
9
11
  export interface ListChannelsCommandInput extends ListChannelsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListChannelsCommand}.
13
17
  */
14
18
  export interface ListChannelsCommandOutput extends ListChannelsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * Returns a collection of Channels.
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 ListChannelsCommandOutput extends ListChannelsResponse, __Metad
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListChannelsCommandInput - {@link ListChannelsCommandInput}
34
+ * @returns {@link ListChannelsCommandOutput}
28
35
  * @see {@link ListChannelsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListChannelsCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaPackageClientResolvedConfig | config} for MediaPackageClient's `config` shape.
@@ -52,11 +59,20 @@ export interface ListChannelsCommandOutput extends ListChannelsResponse, __Metad
52
59
  export declare class ListChannelsCommand extends $Command<ListChannelsCommandInput, ListChannelsCommandOutput, MediaPackageClientResolvedConfig> {
53
60
  readonly input: ListChannelsCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: ListChannelsCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaPackageClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListChannelsCommandInput, ListChannelsCommandOutput>;
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 { ListHarvestJobsRequest, ListHarvestJobsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListHarvestJobsCommand}.
8
10
  */
9
11
  export interface ListHarvestJobsCommandInput extends ListHarvestJobsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListHarvestJobsCommand}.
13
17
  */
14
18
  export interface ListHarvestJobsCommandOutput extends ListHarvestJobsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * Returns a collection of HarvestJob records.
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 ListHarvestJobsCommandOutput extends ListHarvestJobsResponse, _
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListHarvestJobsCommandInput - {@link ListHarvestJobsCommandInput}
34
+ * @returns {@link ListHarvestJobsCommandOutput}
28
35
  * @see {@link ListHarvestJobsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListHarvestJobsCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaPackageClientResolvedConfig | config} for MediaPackageClient's `config` shape.
@@ -52,11 +59,20 @@ export interface ListHarvestJobsCommandOutput extends ListHarvestJobsResponse, _
52
59
  export declare class ListHarvestJobsCommand extends $Command<ListHarvestJobsCommandInput, ListHarvestJobsCommandOutput, MediaPackageClientResolvedConfig> {
53
60
  readonly input: ListHarvestJobsCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: ListHarvestJobsCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaPackageClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListHarvestJobsCommandInput, ListHarvestJobsCommandOutput>;
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 { ListOriginEndpointsRequest, ListOriginEndpointsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListOriginEndpointsCommand}.
8
10
  */
9
11
  export interface ListOriginEndpointsCommandInput extends ListOriginEndpointsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListOriginEndpointsCommand}.
13
17
  */
14
18
  export interface ListOriginEndpointsCommandOutput extends ListOriginEndpointsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * Returns a collection of OriginEndpoint records.
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 ListOriginEndpointsCommandOutput extends ListOriginEndpointsRes
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListOriginEndpointsCommandInput - {@link ListOriginEndpointsCommandInput}
34
+ * @returns {@link ListOriginEndpointsCommandOutput}
28
35
  * @see {@link ListOriginEndpointsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListOriginEndpointsCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaPackageClientResolvedConfig | config} for MediaPackageClient's `config` shape.
@@ -52,11 +59,20 @@ export interface ListOriginEndpointsCommandOutput extends ListOriginEndpointsRes
52
59
  export declare class ListOriginEndpointsCommand extends $Command<ListOriginEndpointsCommandInput, ListOriginEndpointsCommandOutput, MediaPackageClientResolvedConfig> {
53
60
  readonly input: ListOriginEndpointsCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: ListOriginEndpointsCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaPackageClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListOriginEndpointsCommandInput, ListOriginEndpointsCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -4,11 +4,15 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient";
5
5
  import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListTagsForResourceCommand}.
8
10
  */
9
11
  export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListTagsForResourceCommand}.
13
17
  */
14
18
  export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
@@ -16,11 +20,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
16
20
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, MediaPackageClientResolvedConfig> {
17
21
  readonly input: ListTagsForResourceCommandInput;
18
22
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
23
+ /**
24
+ * @public
25
+ */
19
26
  constructor(input: ListTagsForResourceCommandInput);
20
27
  /**
21
28
  * @internal
22
29
  */
23
30
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaPackageClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
31
+ /**
32
+ * @internal
33
+ */
24
34
  private serialize;
35
+ /**
36
+ * @internal
37
+ */
25
38
  private deserialize;
26
39
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient";
5
5
  import { RotateChannelCredentialsRequest, RotateChannelCredentialsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link RotateChannelCredentialsCommand}.
8
10
  */
9
11
  export interface RotateChannelCredentialsCommandInput extends RotateChannelCredentialsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link RotateChannelCredentialsCommand}.
13
17
  */
14
18
  export interface RotateChannelCredentialsCommandOutput extends RotateChannelCredentialsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * @deprecated
18
23
  *
19
24
  * Changes the Channel's first IngestEndpoint's username and password. WARNING - This API is deprecated. Please use RotateIngestEndpointCredentials instead
@@ -27,6 +32,8 @@ export interface RotateChannelCredentialsCommandOutput extends RotateChannelCred
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param RotateChannelCredentialsCommandInput - {@link RotateChannelCredentialsCommandInput}
36
+ * @returns {@link RotateChannelCredentialsCommandOutput}
30
37
  * @see {@link RotateChannelCredentialsCommandInput} for command's `input` shape.
31
38
  * @see {@link RotateChannelCredentialsCommandOutput} for command's `response` shape.
32
39
  * @see {@link MediaPackageClientResolvedConfig | config} for MediaPackageClient's `config` shape.
@@ -54,11 +61,20 @@ export interface RotateChannelCredentialsCommandOutput extends RotateChannelCred
54
61
  export declare class RotateChannelCredentialsCommand extends $Command<RotateChannelCredentialsCommandInput, RotateChannelCredentialsCommandOutput, MediaPackageClientResolvedConfig> {
55
62
  readonly input: RotateChannelCredentialsCommandInput;
56
63
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
64
+ /**
65
+ * @public
66
+ */
57
67
  constructor(input: RotateChannelCredentialsCommandInput);
58
68
  /**
59
69
  * @internal
60
70
  */
61
71
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaPackageClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RotateChannelCredentialsCommandInput, RotateChannelCredentialsCommandOutput>;
72
+ /**
73
+ * @internal
74
+ */
62
75
  private serialize;
76
+ /**
77
+ * @internal
78
+ */
63
79
  private deserialize;
64
80
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient";
5
5
  import { RotateIngestEndpointCredentialsRequest, RotateIngestEndpointCredentialsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link RotateIngestEndpointCredentialsCommand}.
8
10
  */
9
11
  export interface RotateIngestEndpointCredentialsCommandInput extends RotateIngestEndpointCredentialsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link RotateIngestEndpointCredentialsCommand}.
13
17
  */
14
18
  export interface RotateIngestEndpointCredentialsCommandOutput extends RotateIngestEndpointCredentialsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * Rotate the IngestEndpoint's username and password, as specified by the IngestEndpoint's id.
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 RotateIngestEndpointCredentialsCommandOutput extends RotateInge
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param RotateIngestEndpointCredentialsCommandInput - {@link RotateIngestEndpointCredentialsCommandInput}
34
+ * @returns {@link RotateIngestEndpointCredentialsCommandOutput}
28
35
  * @see {@link RotateIngestEndpointCredentialsCommandInput} for command's `input` shape.
29
36
  * @see {@link RotateIngestEndpointCredentialsCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaPackageClientResolvedConfig | config} for MediaPackageClient's `config` shape.
@@ -52,11 +59,20 @@ export interface RotateIngestEndpointCredentialsCommandOutput extends RotateInge
52
59
  export declare class RotateIngestEndpointCredentialsCommand extends $Command<RotateIngestEndpointCredentialsCommandInput, RotateIngestEndpointCredentialsCommandOutput, MediaPackageClientResolvedConfig> {
53
60
  readonly input: RotateIngestEndpointCredentialsCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: RotateIngestEndpointCredentialsCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaPackageClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RotateIngestEndpointCredentialsCommandInput, RotateIngestEndpointCredentialsCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -4,11 +4,15 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient";
5
5
  import { TagResourceRequest } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link TagResourceCommand}.
8
10
  */
9
11
  export interface TagResourceCommandInput extends TagResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link TagResourceCommand}.
13
17
  */
14
18
  export interface TagResourceCommandOutput extends __MetadataBearer {
@@ -16,11 +20,20 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
16
20
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, MediaPackageClientResolvedConfig> {
17
21
  readonly input: TagResourceCommandInput;
18
22
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
23
+ /**
24
+ * @public
25
+ */
19
26
  constructor(input: TagResourceCommandInput);
20
27
  /**
21
28
  * @internal
22
29
  */
23
30
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaPackageClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
31
+ /**
32
+ * @internal
33
+ */
24
34
  private serialize;
35
+ /**
36
+ * @internal
37
+ */
25
38
  private deserialize;
26
39
  }
@@ -4,11 +4,15 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient";
5
5
  import { UntagResourceRequest } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UntagResourceCommand}.
8
10
  */
9
11
  export interface UntagResourceCommandInput extends UntagResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UntagResourceCommand}.
13
17
  */
14
18
  export interface UntagResourceCommandOutput extends __MetadataBearer {
@@ -16,11 +20,20 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
16
20
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, MediaPackageClientResolvedConfig> {
17
21
  readonly input: UntagResourceCommandInput;
18
22
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
23
+ /**
24
+ * @public
25
+ */
19
26
  constructor(input: UntagResourceCommandInput);
20
27
  /**
21
28
  * @internal
22
29
  */
23
30
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaPackageClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
31
+ /**
32
+ * @internal
33
+ */
24
34
  private serialize;
35
+ /**
36
+ * @internal
37
+ */
25
38
  private deserialize;
26
39
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient";
5
5
  import { UpdateChannelRequest, UpdateChannelResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateChannelCommand}.
8
10
  */
9
11
  export interface UpdateChannelCommandInput extends UpdateChannelRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateChannelCommand}.
13
17
  */
14
18
  export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * Updates 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 UpdateChannelCommandOutput extends UpdateChannelResponse, __Met
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateChannelCommandInput - {@link UpdateChannelCommandInput}
34
+ * @returns {@link UpdateChannelCommandOutput}
28
35
  * @see {@link UpdateChannelCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateChannelCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaPackageClientResolvedConfig | config} for MediaPackageClient's `config` shape.
@@ -52,11 +59,20 @@ export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __Met
52
59
  export declare class UpdateChannelCommand extends $Command<UpdateChannelCommandInput, UpdateChannelCommandOutput, MediaPackageClientResolvedConfig> {
53
60
  readonly input: UpdateChannelCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: UpdateChannelCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaPackageClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateChannelCommandInput, UpdateChannelCommandOutput>;
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 { UpdateOriginEndpointRequest, UpdateOriginEndpointResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateOriginEndpointCommand}.
8
10
  */
9
11
  export interface UpdateOriginEndpointCommandInput extends UpdateOriginEndpointRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateOriginEndpointCommand}.
13
17
  */
14
18
  export interface UpdateOriginEndpointCommandOutput extends UpdateOriginEndpointResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * Updates 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 UpdateOriginEndpointCommandOutput extends UpdateOriginEndpointR
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateOriginEndpointCommandInput - {@link UpdateOriginEndpointCommandInput}
34
+ * @returns {@link UpdateOriginEndpointCommandOutput}
28
35
  * @see {@link UpdateOriginEndpointCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateOriginEndpointCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaPackageClientResolvedConfig | config} for MediaPackageClient's `config` shape.
@@ -52,11 +59,20 @@ export interface UpdateOriginEndpointCommandOutput extends UpdateOriginEndpointR
52
59
  export declare class UpdateOriginEndpointCommand extends $Command<UpdateOriginEndpointCommandInput, UpdateOriginEndpointCommandOutput, MediaPackageClientResolvedConfig> {
53
60
  readonly input: UpdateOriginEndpointCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: UpdateOriginEndpointCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaPackageClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateOriginEndpointCommandInput, UpdateOriginEndpointCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -1,5 +1,7 @@
1
1
  import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
2
  /**
3
+ * @public
4
+ *
3
5
  * Base exception class for all service exceptions from MediaPackage service.
4
6
  */
5
7
  export declare class MediaPackageServiceException extends __ServiceException {