@aws-sdk/client-mediapackage-vod 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 (26) hide show
  1. package/dist-types/MediaPackageVod.d.ts +18 -0
  2. package/dist-types/MediaPackageVodClient.d.ts +24 -4
  3. package/dist-types/commands/ConfigureLogsCommand.d.ts +16 -0
  4. package/dist-types/commands/CreateAssetCommand.d.ts +16 -0
  5. package/dist-types/commands/CreatePackagingConfigurationCommand.d.ts +16 -0
  6. package/dist-types/commands/CreatePackagingGroupCommand.d.ts +16 -0
  7. package/dist-types/commands/DeleteAssetCommand.d.ts +16 -0
  8. package/dist-types/commands/DeletePackagingConfigurationCommand.d.ts +16 -0
  9. package/dist-types/commands/DeletePackagingGroupCommand.d.ts +16 -0
  10. package/dist-types/commands/DescribeAssetCommand.d.ts +16 -0
  11. package/dist-types/commands/DescribePackagingConfigurationCommand.d.ts +16 -0
  12. package/dist-types/commands/DescribePackagingGroupCommand.d.ts +16 -0
  13. package/dist-types/commands/ListAssetsCommand.d.ts +16 -0
  14. package/dist-types/commands/ListPackagingConfigurationsCommand.d.ts +16 -0
  15. package/dist-types/commands/ListPackagingGroupsCommand.d.ts +16 -0
  16. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  17. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  18. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  19. package/dist-types/commands/UpdatePackagingGroupCommand.d.ts +16 -0
  20. package/dist-types/models/MediaPackageVodServiceException.d.ts +2 -0
  21. package/dist-types/models/models_0.d.ts +142 -0
  22. package/dist-types/pagination/Interfaces.d.ts +3 -0
  23. package/dist-types/pagination/ListAssetsPaginator.d.ts +3 -0
  24. package/dist-types/pagination/ListPackagingConfigurationsPaginator.d.ts +3 -0
  25. package/dist-types/pagination/ListPackagingGroupsPaginator.d.ts +3 -0
  26. package/package.json +3 -3
@@ -18,106 +18,124 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./command
18
18
  import { UpdatePackagingGroupCommandInput, UpdatePackagingGroupCommandOutput } from "./commands/UpdatePackagingGroupCommand";
19
19
  import { MediaPackageVodClient } from "./MediaPackageVodClient";
20
20
  /**
21
+ * @public
21
22
  * AWS Elemental MediaPackage VOD
22
23
  */
23
24
  export declare class MediaPackageVod extends MediaPackageVodClient {
24
25
  /**
26
+ * @public
25
27
  * Changes the packaging group's properities to configure log subscription
26
28
  */
27
29
  configureLogs(args: ConfigureLogsCommandInput, options?: __HttpHandlerOptions): Promise<ConfigureLogsCommandOutput>;
28
30
  configureLogs(args: ConfigureLogsCommandInput, cb: (err: any, data?: ConfigureLogsCommandOutput) => void): void;
29
31
  configureLogs(args: ConfigureLogsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ConfigureLogsCommandOutput) => void): void;
30
32
  /**
33
+ * @public
31
34
  * Creates a new MediaPackage VOD Asset resource.
32
35
  */
33
36
  createAsset(args: CreateAssetCommandInput, options?: __HttpHandlerOptions): Promise<CreateAssetCommandOutput>;
34
37
  createAsset(args: CreateAssetCommandInput, cb: (err: any, data?: CreateAssetCommandOutput) => void): void;
35
38
  createAsset(args: CreateAssetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAssetCommandOutput) => void): void;
36
39
  /**
40
+ * @public
37
41
  * Creates a new MediaPackage VOD PackagingConfiguration resource.
38
42
  */
39
43
  createPackagingConfiguration(args: CreatePackagingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<CreatePackagingConfigurationCommandOutput>;
40
44
  createPackagingConfiguration(args: CreatePackagingConfigurationCommandInput, cb: (err: any, data?: CreatePackagingConfigurationCommandOutput) => void): void;
41
45
  createPackagingConfiguration(args: CreatePackagingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreatePackagingConfigurationCommandOutput) => void): void;
42
46
  /**
47
+ * @public
43
48
  * Creates a new MediaPackage VOD PackagingGroup resource.
44
49
  */
45
50
  createPackagingGroup(args: CreatePackagingGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreatePackagingGroupCommandOutput>;
46
51
  createPackagingGroup(args: CreatePackagingGroupCommandInput, cb: (err: any, data?: CreatePackagingGroupCommandOutput) => void): void;
47
52
  createPackagingGroup(args: CreatePackagingGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreatePackagingGroupCommandOutput) => void): void;
48
53
  /**
54
+ * @public
49
55
  * Deletes an existing MediaPackage VOD Asset resource.
50
56
  */
51
57
  deleteAsset(args: DeleteAssetCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAssetCommandOutput>;
52
58
  deleteAsset(args: DeleteAssetCommandInput, cb: (err: any, data?: DeleteAssetCommandOutput) => void): void;
53
59
  deleteAsset(args: DeleteAssetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAssetCommandOutput) => void): void;
54
60
  /**
61
+ * @public
55
62
  * Deletes a MediaPackage VOD PackagingConfiguration resource.
56
63
  */
57
64
  deletePackagingConfiguration(args: DeletePackagingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DeletePackagingConfigurationCommandOutput>;
58
65
  deletePackagingConfiguration(args: DeletePackagingConfigurationCommandInput, cb: (err: any, data?: DeletePackagingConfigurationCommandOutput) => void): void;
59
66
  deletePackagingConfiguration(args: DeletePackagingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeletePackagingConfigurationCommandOutput) => void): void;
60
67
  /**
68
+ * @public
61
69
  * Deletes a MediaPackage VOD PackagingGroup resource.
62
70
  */
63
71
  deletePackagingGroup(args: DeletePackagingGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeletePackagingGroupCommandOutput>;
64
72
  deletePackagingGroup(args: DeletePackagingGroupCommandInput, cb: (err: any, data?: DeletePackagingGroupCommandOutput) => void): void;
65
73
  deletePackagingGroup(args: DeletePackagingGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeletePackagingGroupCommandOutput) => void): void;
66
74
  /**
75
+ * @public
67
76
  * Returns a description of a MediaPackage VOD Asset resource.
68
77
  */
69
78
  describeAsset(args: DescribeAssetCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAssetCommandOutput>;
70
79
  describeAsset(args: DescribeAssetCommandInput, cb: (err: any, data?: DescribeAssetCommandOutput) => void): void;
71
80
  describeAsset(args: DescribeAssetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAssetCommandOutput) => void): void;
72
81
  /**
82
+ * @public
73
83
  * Returns a description of a MediaPackage VOD PackagingConfiguration resource.
74
84
  */
75
85
  describePackagingConfiguration(args: DescribePackagingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DescribePackagingConfigurationCommandOutput>;
76
86
  describePackagingConfiguration(args: DescribePackagingConfigurationCommandInput, cb: (err: any, data?: DescribePackagingConfigurationCommandOutput) => void): void;
77
87
  describePackagingConfiguration(args: DescribePackagingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribePackagingConfigurationCommandOutput) => void): void;
78
88
  /**
89
+ * @public
79
90
  * Returns a description of a MediaPackage VOD PackagingGroup resource.
80
91
  */
81
92
  describePackagingGroup(args: DescribePackagingGroupCommandInput, options?: __HttpHandlerOptions): Promise<DescribePackagingGroupCommandOutput>;
82
93
  describePackagingGroup(args: DescribePackagingGroupCommandInput, cb: (err: any, data?: DescribePackagingGroupCommandOutput) => void): void;
83
94
  describePackagingGroup(args: DescribePackagingGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribePackagingGroupCommandOutput) => void): void;
84
95
  /**
96
+ * @public
85
97
  * Returns a collection of MediaPackage VOD Asset resources.
86
98
  */
87
99
  listAssets(args: ListAssetsCommandInput, options?: __HttpHandlerOptions): Promise<ListAssetsCommandOutput>;
88
100
  listAssets(args: ListAssetsCommandInput, cb: (err: any, data?: ListAssetsCommandOutput) => void): void;
89
101
  listAssets(args: ListAssetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAssetsCommandOutput) => void): void;
90
102
  /**
103
+ * @public
91
104
  * Returns a collection of MediaPackage VOD PackagingConfiguration resources.
92
105
  */
93
106
  listPackagingConfigurations(args: ListPackagingConfigurationsCommandInput, options?: __HttpHandlerOptions): Promise<ListPackagingConfigurationsCommandOutput>;
94
107
  listPackagingConfigurations(args: ListPackagingConfigurationsCommandInput, cb: (err: any, data?: ListPackagingConfigurationsCommandOutput) => void): void;
95
108
  listPackagingConfigurations(args: ListPackagingConfigurationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPackagingConfigurationsCommandOutput) => void): void;
96
109
  /**
110
+ * @public
97
111
  * Returns a collection of MediaPackage VOD PackagingGroup resources.
98
112
  */
99
113
  listPackagingGroups(args: ListPackagingGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListPackagingGroupsCommandOutput>;
100
114
  listPackagingGroups(args: ListPackagingGroupsCommandInput, cb: (err: any, data?: ListPackagingGroupsCommandOutput) => void): void;
101
115
  listPackagingGroups(args: ListPackagingGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPackagingGroupsCommandOutput) => void): void;
102
116
  /**
117
+ * @public
103
118
  * Returns a list of the tags assigned to the specified resource.
104
119
  */
105
120
  listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
106
121
  listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
107
122
  listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
108
123
  /**
124
+ * @public
109
125
  * Adds tags to the specified resource. You can specify one or more tags to add.
110
126
  */
111
127
  tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
112
128
  tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
113
129
  tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
114
130
  /**
131
+ * @public
115
132
  * Removes tags from the specified resource. You can specify one or more tags to remove.
116
133
  */
117
134
  untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
118
135
  untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
119
136
  untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
120
137
  /**
138
+ * @public
121
139
  * Updates a specific packaging group. You can't change the id attribute or any other system-generated attributes.
122
140
  */
123
141
  updatePackagingGroup(args: UpdatePackagingGroupCommandInput, options?: __HttpHandlerOptions): Promise<UpdatePackagingGroupCommandOutput>;
@@ -25,15 +25,24 @@ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/Ta
25
25
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
26
26
  import { UpdatePackagingGroupCommandInput, UpdatePackagingGroupCommandOutput } from "./commands/UpdatePackagingGroupCommand";
27
27
  import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
28
+ /**
29
+ * @public
30
+ */
28
31
  export type ServiceInputTypes = ConfigureLogsCommandInput | CreateAssetCommandInput | CreatePackagingConfigurationCommandInput | CreatePackagingGroupCommandInput | DeleteAssetCommandInput | DeletePackagingConfigurationCommandInput | DeletePackagingGroupCommandInput | DescribeAssetCommandInput | DescribePackagingConfigurationCommandInput | DescribePackagingGroupCommandInput | ListAssetsCommandInput | ListPackagingConfigurationsCommandInput | ListPackagingGroupsCommandInput | ListTagsForResourceCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdatePackagingGroupCommandInput;
32
+ /**
33
+ * @public
34
+ */
29
35
  export type ServiceOutputTypes = ConfigureLogsCommandOutput | CreateAssetCommandOutput | CreatePackagingConfigurationCommandOutput | CreatePackagingGroupCommandOutput | DeleteAssetCommandOutput | DeletePackagingConfigurationCommandOutput | DeletePackagingGroupCommandOutput | DescribeAssetCommandOutput | DescribePackagingConfigurationCommandOutput | DescribePackagingGroupCommandOutput | ListAssetsCommandOutput | ListPackagingConfigurationsCommandOutput | ListPackagingGroupsCommandOutput | ListTagsForResourceCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdatePackagingGroupCommandOutput;
36
+ /**
37
+ * @public
38
+ */
30
39
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
31
40
  /**
32
41
  * The HTTP handler to use. Fetch in browser and Https in Nodejs.
33
42
  */
34
43
  requestHandler?: __HttpHandler;
35
44
  /**
36
- * A constructor for a class implementing the {@link __Checksum} interface
45
+ * A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
37
46
  * that computes the SHA-256 HMAC or checksum of a string or binary buffer.
38
47
  * @internal
39
48
  */
@@ -123,23 +132,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
123
132
  */
124
133
  logger?: __Logger;
125
134
  /**
126
- * The {@link __DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
135
+ * The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
127
136
  */
128
137
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
129
138
  }
139
+ /**
140
+ * @public
141
+ */
130
142
  type MediaPackageVodClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
131
143
  /**
132
- * The configuration interface of MediaPackageVodClient class constructor that set the region, credentials and other options.
144
+ * @public
145
+ *
146
+ * The configuration interface of MediaPackageVodClient class constructor that set the region, credentials and other options.
133
147
  */
134
148
  export interface MediaPackageVodClientConfig extends MediaPackageVodClientConfigType {
135
149
  }
150
+ /**
151
+ * @public
152
+ */
136
153
  type MediaPackageVodClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
137
154
  /**
138
- * The resolved configuration interface of MediaPackageVodClient class. This is resolved and normalized from the {@link MediaPackageVodClientConfig | constructor configuration interface}.
155
+ * @public
156
+ *
157
+ * The resolved configuration interface of MediaPackageVodClient class. This is resolved and normalized from the {@link MediaPackageVodClientConfig | constructor configuration interface}.
139
158
  */
140
159
  export interface MediaPackageVodClientResolvedConfig extends MediaPackageVodClientResolvedConfigType {
141
160
  }
142
161
  /**
162
+ * @public
143
163
  * AWS Elemental MediaPackage VOD
144
164
  */
145
165
  export declare class MediaPackageVodClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, MediaPackageVodClientResolvedConfig> {
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageVodClient";
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 packaging group'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 MediaPackageVodClientResolvedConfig | config} for MediaPackageVodClient's `config` shape.
@@ -52,11 +59,20 @@ export interface ConfigureLogsCommandOutput extends ConfigureLogsResponse, __Met
52
59
  export declare class ConfigureLogsCommand extends $Command<ConfigureLogsCommandInput, ConfigureLogsCommandOutput, MediaPackageVodClientResolvedConfig> {
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: MediaPackageVodClientResolvedConfig, 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 { MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageVodClient";
5
5
  import { CreateAssetRequest, CreateAssetResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateAssetCommand}.
8
10
  */
9
11
  export interface CreateAssetCommandInput extends CreateAssetRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateAssetCommand}.
13
17
  */
14
18
  export interface CreateAssetCommandOutput extends CreateAssetResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * Creates a new MediaPackage VOD Asset resource.
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 CreateAssetCommandOutput extends CreateAssetResponse, __Metadat
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param CreateAssetCommandInput - {@link CreateAssetCommandInput}
34
+ * @returns {@link CreateAssetCommandOutput}
28
35
  * @see {@link CreateAssetCommandInput} for command's `input` shape.
29
36
  * @see {@link CreateAssetCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaPackageVodClientResolvedConfig | config} for MediaPackageVodClient's `config` shape.
@@ -52,11 +59,20 @@ export interface CreateAssetCommandOutput extends CreateAssetResponse, __Metadat
52
59
  export declare class CreateAssetCommand extends $Command<CreateAssetCommandInput, CreateAssetCommandOutput, MediaPackageVodClientResolvedConfig> {
53
60
  readonly input: CreateAssetCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: CreateAssetCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaPackageVodClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateAssetCommandInput, CreateAssetCommandOutput>;
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 { MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageVodClient";
5
5
  import { CreatePackagingConfigurationRequest, CreatePackagingConfigurationResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreatePackagingConfigurationCommand}.
8
10
  */
9
11
  export interface CreatePackagingConfigurationCommandInput extends CreatePackagingConfigurationRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreatePackagingConfigurationCommand}.
13
17
  */
14
18
  export interface CreatePackagingConfigurationCommandOutput extends CreatePackagingConfigurationResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * Creates a new MediaPackage VOD PackagingConfiguration resource.
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 CreatePackagingConfigurationCommandOutput extends CreatePackagi
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param CreatePackagingConfigurationCommandInput - {@link CreatePackagingConfigurationCommandInput}
34
+ * @returns {@link CreatePackagingConfigurationCommandOutput}
28
35
  * @see {@link CreatePackagingConfigurationCommandInput} for command's `input` shape.
29
36
  * @see {@link CreatePackagingConfigurationCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaPackageVodClientResolvedConfig | config} for MediaPackageVodClient's `config` shape.
@@ -52,11 +59,20 @@ export interface CreatePackagingConfigurationCommandOutput extends CreatePackagi
52
59
  export declare class CreatePackagingConfigurationCommand extends $Command<CreatePackagingConfigurationCommandInput, CreatePackagingConfigurationCommandOutput, MediaPackageVodClientResolvedConfig> {
53
60
  readonly input: CreatePackagingConfigurationCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: CreatePackagingConfigurationCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaPackageVodClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreatePackagingConfigurationCommandInput, CreatePackagingConfigurationCommandOutput>;
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 { MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageVodClient";
5
5
  import { CreatePackagingGroupRequest, CreatePackagingGroupResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreatePackagingGroupCommand}.
8
10
  */
9
11
  export interface CreatePackagingGroupCommandInput extends CreatePackagingGroupRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreatePackagingGroupCommand}.
13
17
  */
14
18
  export interface CreatePackagingGroupCommandOutput extends CreatePackagingGroupResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * Creates a new MediaPackage VOD PackagingGroup resource.
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 CreatePackagingGroupCommandOutput extends CreatePackagingGroupR
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param CreatePackagingGroupCommandInput - {@link CreatePackagingGroupCommandInput}
34
+ * @returns {@link CreatePackagingGroupCommandOutput}
28
35
  * @see {@link CreatePackagingGroupCommandInput} for command's `input` shape.
29
36
  * @see {@link CreatePackagingGroupCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaPackageVodClientResolvedConfig | config} for MediaPackageVodClient's `config` shape.
@@ -52,11 +59,20 @@ export interface CreatePackagingGroupCommandOutput extends CreatePackagingGroupR
52
59
  export declare class CreatePackagingGroupCommand extends $Command<CreatePackagingGroupCommandInput, CreatePackagingGroupCommandOutput, MediaPackageVodClientResolvedConfig> {
53
60
  readonly input: CreatePackagingGroupCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: CreatePackagingGroupCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaPackageVodClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreatePackagingGroupCommandInput, CreatePackagingGroupCommandOutput>;
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 { MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageVodClient";
5
5
  import { DeleteAssetRequest, DeleteAssetResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteAssetCommand}.
8
10
  */
9
11
  export interface DeleteAssetCommandInput extends DeleteAssetRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteAssetCommand}.
13
17
  */
14
18
  export interface DeleteAssetCommandOutput extends DeleteAssetResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * Deletes an existing MediaPackage VOD Asset resource.
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 DeleteAssetCommandOutput extends DeleteAssetResponse, __Metadat
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DeleteAssetCommandInput - {@link DeleteAssetCommandInput}
34
+ * @returns {@link DeleteAssetCommandOutput}
28
35
  * @see {@link DeleteAssetCommandInput} for command's `input` shape.
29
36
  * @see {@link DeleteAssetCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaPackageVodClientResolvedConfig | config} for MediaPackageVodClient's `config` shape.
@@ -52,11 +59,20 @@ export interface DeleteAssetCommandOutput extends DeleteAssetResponse, __Metadat
52
59
  export declare class DeleteAssetCommand extends $Command<DeleteAssetCommandInput, DeleteAssetCommandOutput, MediaPackageVodClientResolvedConfig> {
53
60
  readonly input: DeleteAssetCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: DeleteAssetCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaPackageVodClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteAssetCommandInput, DeleteAssetCommandOutput>;
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 { MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageVodClient";
5
5
  import { DeletePackagingConfigurationRequest, DeletePackagingConfigurationResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeletePackagingConfigurationCommand}.
8
10
  */
9
11
  export interface DeletePackagingConfigurationCommandInput extends DeletePackagingConfigurationRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeletePackagingConfigurationCommand}.
13
17
  */
14
18
  export interface DeletePackagingConfigurationCommandOutput extends DeletePackagingConfigurationResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * Deletes a MediaPackage VOD PackagingConfiguration resource.
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 DeletePackagingConfigurationCommandOutput extends DeletePackagi
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DeletePackagingConfigurationCommandInput - {@link DeletePackagingConfigurationCommandInput}
34
+ * @returns {@link DeletePackagingConfigurationCommandOutput}
28
35
  * @see {@link DeletePackagingConfigurationCommandInput} for command's `input` shape.
29
36
  * @see {@link DeletePackagingConfigurationCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaPackageVodClientResolvedConfig | config} for MediaPackageVodClient's `config` shape.
@@ -52,11 +59,20 @@ export interface DeletePackagingConfigurationCommandOutput extends DeletePackagi
52
59
  export declare class DeletePackagingConfigurationCommand extends $Command<DeletePackagingConfigurationCommandInput, DeletePackagingConfigurationCommandOutput, MediaPackageVodClientResolvedConfig> {
53
60
  readonly input: DeletePackagingConfigurationCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: DeletePackagingConfigurationCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaPackageVodClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeletePackagingConfigurationCommandInput, DeletePackagingConfigurationCommandOutput>;
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 { MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageVodClient";
5
5
  import { DeletePackagingGroupRequest, DeletePackagingGroupResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeletePackagingGroupCommand}.
8
10
  */
9
11
  export interface DeletePackagingGroupCommandInput extends DeletePackagingGroupRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeletePackagingGroupCommand}.
13
17
  */
14
18
  export interface DeletePackagingGroupCommandOutput extends DeletePackagingGroupResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * Deletes a MediaPackage VOD PackagingGroup resource.
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 DeletePackagingGroupCommandOutput extends DeletePackagingGroupR
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DeletePackagingGroupCommandInput - {@link DeletePackagingGroupCommandInput}
34
+ * @returns {@link DeletePackagingGroupCommandOutput}
28
35
  * @see {@link DeletePackagingGroupCommandInput} for command's `input` shape.
29
36
  * @see {@link DeletePackagingGroupCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaPackageVodClientResolvedConfig | config} for MediaPackageVodClient's `config` shape.
@@ -52,11 +59,20 @@ export interface DeletePackagingGroupCommandOutput extends DeletePackagingGroupR
52
59
  export declare class DeletePackagingGroupCommand extends $Command<DeletePackagingGroupCommandInput, DeletePackagingGroupCommandOutput, MediaPackageVodClientResolvedConfig> {
53
60
  readonly input: DeletePackagingGroupCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: DeletePackagingGroupCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaPackageVodClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeletePackagingGroupCommandInput, DeletePackagingGroupCommandOutput>;
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 { MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageVodClient";
5
5
  import { DescribeAssetRequest, DescribeAssetResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeAssetCommand}.
8
10
  */
9
11
  export interface DescribeAssetCommandInput extends DescribeAssetRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeAssetCommand}.
13
17
  */
14
18
  export interface DescribeAssetCommandOutput extends DescribeAssetResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * Returns a description of a MediaPackage VOD Asset resource.
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 DescribeAssetCommandOutput extends DescribeAssetResponse, __Met
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DescribeAssetCommandInput - {@link DescribeAssetCommandInput}
34
+ * @returns {@link DescribeAssetCommandOutput}
28
35
  * @see {@link DescribeAssetCommandInput} for command's `input` shape.
29
36
  * @see {@link DescribeAssetCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaPackageVodClientResolvedConfig | config} for MediaPackageVodClient's `config` shape.
@@ -52,11 +59,20 @@ export interface DescribeAssetCommandOutput extends DescribeAssetResponse, __Met
52
59
  export declare class DescribeAssetCommand extends $Command<DescribeAssetCommandInput, DescribeAssetCommandOutput, MediaPackageVodClientResolvedConfig> {
53
60
  readonly input: DescribeAssetCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: DescribeAssetCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaPackageVodClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeAssetCommandInput, DescribeAssetCommandOutput>;
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 { MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageVodClient";
5
5
  import { DescribePackagingConfigurationRequest, DescribePackagingConfigurationResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribePackagingConfigurationCommand}.
8
10
  */
9
11
  export interface DescribePackagingConfigurationCommandInput extends DescribePackagingConfigurationRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribePackagingConfigurationCommand}.
13
17
  */
14
18
  export interface DescribePackagingConfigurationCommandOutput extends DescribePackagingConfigurationResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * Returns a description of a MediaPackage VOD PackagingConfiguration resource.
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 DescribePackagingConfigurationCommandOutput extends DescribePac
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DescribePackagingConfigurationCommandInput - {@link DescribePackagingConfigurationCommandInput}
34
+ * @returns {@link DescribePackagingConfigurationCommandOutput}
28
35
  * @see {@link DescribePackagingConfigurationCommandInput} for command's `input` shape.
29
36
  * @see {@link DescribePackagingConfigurationCommandOutput} for command's `response` shape.
30
37
  * @see {@link MediaPackageVodClientResolvedConfig | config} for MediaPackageVodClient's `config` shape.
@@ -52,11 +59,20 @@ export interface DescribePackagingConfigurationCommandOutput extends DescribePac
52
59
  export declare class DescribePackagingConfigurationCommand extends $Command<DescribePackagingConfigurationCommandInput, DescribePackagingConfigurationCommandOutput, MediaPackageVodClientResolvedConfig> {
53
60
  readonly input: DescribePackagingConfigurationCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: DescribePackagingConfigurationCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaPackageVodClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribePackagingConfigurationCommandInput, DescribePackagingConfigurationCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }