@aws-sdk/client-mediapackage-vod 3.529.1 → 3.535.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 (47) hide show
  1. package/dist-types/MediaPackageVod.d.ts +4 -1
  2. package/dist-types/MediaPackageVodClient.d.ts +1 -1
  3. package/dist-types/commands/ConfigureLogsCommand.d.ts +2 -1
  4. package/dist-types/commands/CreateAssetCommand.d.ts +2 -1
  5. package/dist-types/commands/CreatePackagingConfigurationCommand.d.ts +2 -1
  6. package/dist-types/commands/CreatePackagingGroupCommand.d.ts +2 -1
  7. package/dist-types/commands/DeleteAssetCommand.d.ts +2 -1
  8. package/dist-types/commands/DeletePackagingConfigurationCommand.d.ts +2 -1
  9. package/dist-types/commands/DeletePackagingGroupCommand.d.ts +2 -1
  10. package/dist-types/commands/DescribeAssetCommand.d.ts +2 -1
  11. package/dist-types/commands/DescribePackagingConfigurationCommand.d.ts +2 -1
  12. package/dist-types/commands/DescribePackagingGroupCommand.d.ts +2 -1
  13. package/dist-types/commands/ListAssetsCommand.d.ts +2 -1
  14. package/dist-types/commands/ListPackagingConfigurationsCommand.d.ts +2 -1
  15. package/dist-types/commands/ListPackagingGroupsCommand.d.ts +2 -1
  16. package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
  17. package/dist-types/commands/TagResourceCommand.d.ts +2 -1
  18. package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
  19. package/dist-types/commands/UpdatePackagingGroupCommand.d.ts +2 -1
  20. package/dist-types/models/models_0.d.ts +224 -224
  21. package/dist-types/runtimeConfig.browser.d.ts +2 -2
  22. package/dist-types/runtimeConfig.d.ts +2 -2
  23. package/dist-types/runtimeConfig.native.d.ts +2 -2
  24. package/dist-types/runtimeConfig.shared.d.ts +2 -2
  25. package/dist-types/ts3.4/MediaPackageVod.d.ts +3 -0
  26. package/dist-types/ts3.4/commands/ConfigureLogsCommand.d.ts +9 -0
  27. package/dist-types/ts3.4/commands/CreateAssetCommand.d.ts +9 -0
  28. package/dist-types/ts3.4/commands/CreatePackagingConfigurationCommand.d.ts +9 -0
  29. package/dist-types/ts3.4/commands/CreatePackagingGroupCommand.d.ts +9 -0
  30. package/dist-types/ts3.4/commands/DeleteAssetCommand.d.ts +9 -0
  31. package/dist-types/ts3.4/commands/DeletePackagingConfigurationCommand.d.ts +9 -0
  32. package/dist-types/ts3.4/commands/DeletePackagingGroupCommand.d.ts +9 -0
  33. package/dist-types/ts3.4/commands/DescribeAssetCommand.d.ts +9 -0
  34. package/dist-types/ts3.4/commands/DescribePackagingConfigurationCommand.d.ts +9 -0
  35. package/dist-types/ts3.4/commands/DescribePackagingGroupCommand.d.ts +9 -0
  36. package/dist-types/ts3.4/commands/ListAssetsCommand.d.ts +9 -0
  37. package/dist-types/ts3.4/commands/ListPackagingConfigurationsCommand.d.ts +9 -0
  38. package/dist-types/ts3.4/commands/ListPackagingGroupsCommand.d.ts +9 -0
  39. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
  40. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
  41. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
  42. package/dist-types/ts3.4/commands/UpdatePackagingGroupCommand.d.ts +9 -0
  43. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -2
  44. package/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
  45. package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -2
  46. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -2
  47. package/package.json +40 -40
@@ -81,18 +81,21 @@ export interface MediaPackageVod {
81
81
  /**
82
82
  * @see {@link ListAssetsCommand}
83
83
  */
84
+ listAssets(): Promise<ListAssetsCommandOutput>;
84
85
  listAssets(args: ListAssetsCommandInput, options?: __HttpHandlerOptions): Promise<ListAssetsCommandOutput>;
85
86
  listAssets(args: ListAssetsCommandInput, cb: (err: any, data?: ListAssetsCommandOutput) => void): void;
86
87
  listAssets(args: ListAssetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAssetsCommandOutput) => void): void;
87
88
  /**
88
89
  * @see {@link ListPackagingConfigurationsCommand}
89
90
  */
91
+ listPackagingConfigurations(): Promise<ListPackagingConfigurationsCommandOutput>;
90
92
  listPackagingConfigurations(args: ListPackagingConfigurationsCommandInput, options?: __HttpHandlerOptions): Promise<ListPackagingConfigurationsCommandOutput>;
91
93
  listPackagingConfigurations(args: ListPackagingConfigurationsCommandInput, cb: (err: any, data?: ListPackagingConfigurationsCommandOutput) => void): void;
92
94
  listPackagingConfigurations(args: ListPackagingConfigurationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPackagingConfigurationsCommandOutput) => void): void;
93
95
  /**
94
96
  * @see {@link ListPackagingGroupsCommand}
95
97
  */
98
+ listPackagingGroups(): Promise<ListPackagingGroupsCommandOutput>;
96
99
  listPackagingGroups(args: ListPackagingGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListPackagingGroupsCommandOutput>;
97
100
  listPackagingGroups(args: ListPackagingGroupsCommandInput, cb: (err: any, data?: ListPackagingGroupsCommandOutput) => void): void;
98
101
  listPackagingGroups(args: ListPackagingGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPackagingGroupsCommandOutput) => void): void;
@@ -122,8 +125,8 @@ export interface MediaPackageVod {
122
125
  updatePackagingGroup(args: UpdatePackagingGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdatePackagingGroupCommandOutput) => void): void;
123
126
  }
124
127
  /**
125
- * @public
126
128
  * AWS Elemental MediaPackage VOD
129
+ * @public
127
130
  */
128
131
  export declare class MediaPackageVod extends MediaPackageVodClient implements MediaPackageVod {
129
132
  }
@@ -168,8 +168,8 @@ export type MediaPackageVodClientResolvedConfigType = __SmithyResolvedConfigurat
168
168
  export interface MediaPackageVodClientResolvedConfig extends MediaPackageVodClientResolvedConfigType {
169
169
  }
170
170
  /**
171
- * @public
172
171
  * AWS Elemental MediaPackage VOD
172
+ * @public
173
173
  */
174
174
  export declare class MediaPackageVodClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, MediaPackageVodClientResolvedConfig> {
175
175
  /**
@@ -22,10 +22,10 @@ export interface ConfigureLogsCommandOutput extends ConfigureLogsResponse, __Met
22
22
  }
23
23
  declare const ConfigureLogsCommand_base: {
24
24
  new (input: ConfigureLogsCommandInput): import("@smithy/smithy-client").CommandImpl<ConfigureLogsCommandInput, ConfigureLogsCommandOutput, MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: ConfigureLogsCommandInput): import("@smithy/smithy-client").CommandImpl<ConfigureLogsCommandInput, ConfigureLogsCommandOutput, MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * Changes the packaging group's properities to configure log subscription
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -87,6 +87,7 @@ declare const ConfigureLogsCommand_base: {
87
87
  * @throws {@link MediaPackageVodServiceException}
88
88
  * <p>Base exception class for all service exceptions from MediaPackageVod service.</p>
89
89
  *
90
+ * @public
90
91
  */
91
92
  export declare class ConfigureLogsCommand extends ConfigureLogsCommand_base {
92
93
  }
@@ -22,10 +22,10 @@ export interface CreateAssetCommandOutput extends CreateAssetResponse, __Metadat
22
22
  }
23
23
  declare const CreateAssetCommand_base: {
24
24
  new (input: CreateAssetCommandInput): import("@smithy/smithy-client").CommandImpl<CreateAssetCommandInput, CreateAssetCommandOutput, MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: CreateAssetCommandInput): import("@smithy/smithy-client").CommandImpl<CreateAssetCommandInput, CreateAssetCommandOutput, MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * Creates a new MediaPackage VOD Asset resource.
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -94,6 +94,7 @@ declare const CreateAssetCommand_base: {
94
94
  * @throws {@link MediaPackageVodServiceException}
95
95
  * <p>Base exception class for all service exceptions from MediaPackageVod service.</p>
96
96
  *
97
+ * @public
97
98
  */
98
99
  export declare class CreateAssetCommand extends CreateAssetCommand_base {
99
100
  }
@@ -22,10 +22,10 @@ export interface CreatePackagingConfigurationCommandOutput extends CreatePackagi
22
22
  }
23
23
  declare const CreatePackagingConfigurationCommand_base: {
24
24
  new (input: CreatePackagingConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<CreatePackagingConfigurationCommandInput, CreatePackagingConfigurationCommandOutput, MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: CreatePackagingConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<CreatePackagingConfigurationCommandInput, CreatePackagingConfigurationCommandOutput, MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * Creates a new MediaPackage VOD PackagingConfiguration resource.
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -337,6 +337,7 @@ declare const CreatePackagingConfigurationCommand_base: {
337
337
  * @throws {@link MediaPackageVodServiceException}
338
338
  * <p>Base exception class for all service exceptions from MediaPackageVod service.</p>
339
339
  *
340
+ * @public
340
341
  */
341
342
  export declare class CreatePackagingConfigurationCommand extends CreatePackagingConfigurationCommand_base {
342
343
  }
@@ -22,10 +22,10 @@ export interface CreatePackagingGroupCommandOutput extends CreatePackagingGroupR
22
22
  }
23
23
  declare const CreatePackagingGroupCommand_base: {
24
24
  new (input: CreatePackagingGroupCommandInput): import("@smithy/smithy-client").CommandImpl<CreatePackagingGroupCommandInput, CreatePackagingGroupCommandOutput, MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: CreatePackagingGroupCommandInput): import("@smithy/smithy-client").CommandImpl<CreatePackagingGroupCommandInput, CreatePackagingGroupCommandOutput, MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * Creates a new MediaPackage VOD PackagingGroup resource.
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -94,6 +94,7 @@ declare const CreatePackagingGroupCommand_base: {
94
94
  * @throws {@link MediaPackageVodServiceException}
95
95
  * <p>Base exception class for all service exceptions from MediaPackageVod service.</p>
96
96
  *
97
+ * @public
97
98
  */
98
99
  export declare class CreatePackagingGroupCommand extends CreatePackagingGroupCommand_base {
99
100
  }
@@ -22,10 +22,10 @@ export interface DeleteAssetCommandOutput extends DeleteAssetResponse, __Metadat
22
22
  }
23
23
  declare const DeleteAssetCommand_base: {
24
24
  new (input: DeleteAssetCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteAssetCommandInput, DeleteAssetCommandOutput, MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DeleteAssetCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteAssetCommandInput, DeleteAssetCommandOutput, MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * Deletes an existing MediaPackage VOD Asset resource.
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -69,6 +69,7 @@ declare const DeleteAssetCommand_base: {
69
69
  * @throws {@link MediaPackageVodServiceException}
70
70
  * <p>Base exception class for all service exceptions from MediaPackageVod service.</p>
71
71
  *
72
+ * @public
72
73
  */
73
74
  export declare class DeleteAssetCommand extends DeleteAssetCommand_base {
74
75
  }
@@ -22,10 +22,10 @@ export interface DeletePackagingConfigurationCommandOutput extends DeletePackagi
22
22
  }
23
23
  declare const DeletePackagingConfigurationCommand_base: {
24
24
  new (input: DeletePackagingConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<DeletePackagingConfigurationCommandInput, DeletePackagingConfigurationCommandOutput, MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DeletePackagingConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<DeletePackagingConfigurationCommandInput, DeletePackagingConfigurationCommandOutput, MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * Deletes a MediaPackage VOD PackagingConfiguration resource.
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -69,6 +69,7 @@ declare const DeletePackagingConfigurationCommand_base: {
69
69
  * @throws {@link MediaPackageVodServiceException}
70
70
  * <p>Base exception class for all service exceptions from MediaPackageVod service.</p>
71
71
  *
72
+ * @public
72
73
  */
73
74
  export declare class DeletePackagingConfigurationCommand extends DeletePackagingConfigurationCommand_base {
74
75
  }
@@ -22,10 +22,10 @@ export interface DeletePackagingGroupCommandOutput extends DeletePackagingGroupR
22
22
  }
23
23
  declare const DeletePackagingGroupCommand_base: {
24
24
  new (input: DeletePackagingGroupCommandInput): import("@smithy/smithy-client").CommandImpl<DeletePackagingGroupCommandInput, DeletePackagingGroupCommandOutput, MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DeletePackagingGroupCommandInput): import("@smithy/smithy-client").CommandImpl<DeletePackagingGroupCommandInput, DeletePackagingGroupCommandOutput, MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * Deletes a MediaPackage VOD PackagingGroup resource.
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -69,6 +69,7 @@ declare const DeletePackagingGroupCommand_base: {
69
69
  * @throws {@link MediaPackageVodServiceException}
70
70
  * <p>Base exception class for all service exceptions from MediaPackageVod service.</p>
71
71
  *
72
+ * @public
72
73
  */
73
74
  export declare class DeletePackagingGroupCommand extends DeletePackagingGroupCommand_base {
74
75
  }
@@ -22,10 +22,10 @@ export interface DescribeAssetCommandOutput extends DescribeAssetResponse, __Met
22
22
  }
23
23
  declare const DescribeAssetCommand_base: {
24
24
  new (input: DescribeAssetCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeAssetCommandInput, DescribeAssetCommandOutput, MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DescribeAssetCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeAssetCommandInput, DescribeAssetCommandOutput, MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * Returns a description of a MediaPackage VOD Asset resource.
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -87,6 +87,7 @@ declare const DescribeAssetCommand_base: {
87
87
  * @throws {@link MediaPackageVodServiceException}
88
88
  * <p>Base exception class for all service exceptions from MediaPackageVod service.</p>
89
89
  *
90
+ * @public
90
91
  */
91
92
  export declare class DescribeAssetCommand extends DescribeAssetCommand_base {
92
93
  }
@@ -22,10 +22,10 @@ export interface DescribePackagingConfigurationCommandOutput extends DescribePac
22
22
  }
23
23
  declare const DescribePackagingConfigurationCommand_base: {
24
24
  new (input: DescribePackagingConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<DescribePackagingConfigurationCommandInput, DescribePackagingConfigurationCommandOutput, MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DescribePackagingConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<DescribePackagingConfigurationCommandInput, DescribePackagingConfigurationCommandOutput, MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * Returns a description of a MediaPackage VOD PackagingConfiguration resource.
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -205,6 +205,7 @@ declare const DescribePackagingConfigurationCommand_base: {
205
205
  * @throws {@link MediaPackageVodServiceException}
206
206
  * <p>Base exception class for all service exceptions from MediaPackageVod service.</p>
207
207
  *
208
+ * @public
208
209
  */
209
210
  export declare class DescribePackagingConfigurationCommand extends DescribePackagingConfigurationCommand_base {
210
211
  }
@@ -22,10 +22,10 @@ export interface DescribePackagingGroupCommandOutput extends DescribePackagingGr
22
22
  }
23
23
  declare const DescribePackagingGroupCommand_base: {
24
24
  new (input: DescribePackagingGroupCommandInput): import("@smithy/smithy-client").CommandImpl<DescribePackagingGroupCommandInput, DescribePackagingGroupCommandOutput, MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DescribePackagingGroupCommandInput): import("@smithy/smithy-client").CommandImpl<DescribePackagingGroupCommandInput, DescribePackagingGroupCommandOutput, MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * Returns a description of a MediaPackage VOD PackagingGroup resource.
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -85,6 +85,7 @@ declare const DescribePackagingGroupCommand_base: {
85
85
  * @throws {@link MediaPackageVodServiceException}
86
86
  * <p>Base exception class for all service exceptions from MediaPackageVod service.</p>
87
87
  *
88
+ * @public
88
89
  */
89
90
  export declare class DescribePackagingGroupCommand extends DescribePackagingGroupCommand_base {
90
91
  }
@@ -22,10 +22,10 @@ export interface ListAssetsCommandOutput extends ListAssetsResponse, __MetadataB
22
22
  }
23
23
  declare const ListAssetsCommand_base: {
24
24
  new (input: ListAssetsCommandInput): import("@smithy/smithy-client").CommandImpl<ListAssetsCommandInput, ListAssetsCommandOutput, MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (...[input]: [] | [ListAssetsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListAssetsCommandInput, ListAssetsCommandOutput, MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * Returns a collection of MediaPackage VOD Asset resources.
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -87,6 +87,7 @@ declare const ListAssetsCommand_base: {
87
87
  * @throws {@link MediaPackageVodServiceException}
88
88
  * <p>Base exception class for all service exceptions from MediaPackageVod service.</p>
89
89
  *
90
+ * @public
90
91
  */
91
92
  export declare class ListAssetsCommand extends ListAssetsCommand_base {
92
93
  }
@@ -22,10 +22,10 @@ export interface ListPackagingConfigurationsCommandOutput extends ListPackagingC
22
22
  }
23
23
  declare const ListPackagingConfigurationsCommand_base: {
24
24
  new (input: ListPackagingConfigurationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListPackagingConfigurationsCommandInput, ListPackagingConfigurationsCommandOutput, MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (...[input]: [] | [ListPackagingConfigurationsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListPackagingConfigurationsCommandInput, ListPackagingConfigurationsCommandOutput, MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * Returns a collection of MediaPackage VOD PackagingConfiguration resources.
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -212,6 +212,7 @@ declare const ListPackagingConfigurationsCommand_base: {
212
212
  * @throws {@link MediaPackageVodServiceException}
213
213
  * <p>Base exception class for all service exceptions from MediaPackageVod service.</p>
214
214
  *
215
+ * @public
215
216
  */
216
217
  export declare class ListPackagingConfigurationsCommand extends ListPackagingConfigurationsCommand_base {
217
218
  }
@@ -22,10 +22,10 @@ export interface ListPackagingGroupsCommandOutput extends ListPackagingGroupsRes
22
22
  }
23
23
  declare const ListPackagingGroupsCommand_base: {
24
24
  new (input: ListPackagingGroupsCommandInput): import("@smithy/smithy-client").CommandImpl<ListPackagingGroupsCommandInput, ListPackagingGroupsCommandOutput, MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (...[input]: [] | [ListPackagingGroupsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListPackagingGroupsCommandInput, ListPackagingGroupsCommandOutput, MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * Returns a collection of MediaPackage VOD PackagingGroup resources.
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -91,6 +91,7 @@ declare const ListPackagingGroupsCommand_base: {
91
91
  * @throws {@link MediaPackageVodServiceException}
92
92
  * <p>Base exception class for all service exceptions from MediaPackageVod service.</p>
93
93
  *
94
+ * @public
94
95
  */
95
96
  export declare class ListPackagingGroupsCommand extends ListPackagingGroupsCommand_base {
96
97
  }
@@ -22,10 +22,10 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
22
22
  }
23
23
  declare const ListTagsForResourceCommand_base: {
24
24
  new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * Returns a list of the tags assigned to the specified resource.
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -55,6 +55,7 @@ declare const ListTagsForResourceCommand_base: {
55
55
  * @throws {@link MediaPackageVodServiceException}
56
56
  * <p>Base exception class for all service exceptions from MediaPackageVod service.</p>
57
57
  *
58
+ * @public
58
59
  */
59
60
  export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
60
61
  }
@@ -22,10 +22,10 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
22
22
  }
23
23
  declare const TagResourceCommand_base: {
24
24
  new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * Adds tags to the specified resource. You can specify one or more tags to add.
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -54,6 +54,7 @@ declare const TagResourceCommand_base: {
54
54
  * @throws {@link MediaPackageVodServiceException}
55
55
  * <p>Base exception class for all service exceptions from MediaPackageVod service.</p>
56
56
  *
57
+ * @public
57
58
  */
58
59
  export declare class TagResourceCommand extends TagResourceCommand_base {
59
60
  }
@@ -22,10 +22,10 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
22
22
  }
23
23
  declare const UntagResourceCommand_base: {
24
24
  new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * Removes tags from the specified resource. You can specify one or more tags to remove.
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -54,6 +54,7 @@ declare const UntagResourceCommand_base: {
54
54
  * @throws {@link MediaPackageVodServiceException}
55
55
  * <p>Base exception class for all service exceptions from MediaPackageVod service.</p>
56
56
  *
57
+ * @public
57
58
  */
58
59
  export declare class UntagResourceCommand extends UntagResourceCommand_base {
59
60
  }
@@ -22,10 +22,10 @@ export interface UpdatePackagingGroupCommandOutput extends UpdatePackagingGroupR
22
22
  }
23
23
  declare const UpdatePackagingGroupCommand_base: {
24
24
  new (input: UpdatePackagingGroupCommandInput): import("@smithy/smithy-client").CommandImpl<UpdatePackagingGroupCommandInput, UpdatePackagingGroupCommandOutput, MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: UpdatePackagingGroupCommandInput): import("@smithy/smithy-client").CommandImpl<UpdatePackagingGroupCommandInput, UpdatePackagingGroupCommandOutput, MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * Updates a specific packaging group. You can't change the id attribute or any other system-generated attributes.
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -89,6 +89,7 @@ declare const UpdatePackagingGroupCommand_base: {
89
89
  * @throws {@link MediaPackageVodServiceException}
90
90
  * <p>Base exception class for all service exceptions from MediaPackageVod service.</p>
91
91
  *
92
+ * @public
92
93
  */
93
94
  export declare class UpdatePackagingGroupCommand extends UpdatePackagingGroupCommand_base {
94
95
  }