@aws-sdk/client-mediapackage-vod 3.295.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.
- package/dist-types/MediaPackageVod.d.ts +18 -0
- package/dist-types/MediaPackageVodClient.d.ts +24 -4
- package/dist-types/commands/ConfigureLogsCommand.d.ts +16 -0
- package/dist-types/commands/CreateAssetCommand.d.ts +16 -0
- package/dist-types/commands/CreatePackagingConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/CreatePackagingGroupCommand.d.ts +16 -0
- package/dist-types/commands/DeleteAssetCommand.d.ts +16 -0
- package/dist-types/commands/DeletePackagingConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DeletePackagingGroupCommand.d.ts +16 -0
- package/dist-types/commands/DescribeAssetCommand.d.ts +16 -0
- package/dist-types/commands/DescribePackagingConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DescribePackagingGroupCommand.d.ts +16 -0
- package/dist-types/commands/ListAssetsCommand.d.ts +16 -0
- package/dist-types/commands/ListPackagingConfigurationsCommand.d.ts +16 -0
- package/dist-types/commands/ListPackagingGroupsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdatePackagingGroupCommand.d.ts +16 -0
- package/dist-types/models/MediaPackageVodServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +142 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListAssetsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListPackagingConfigurationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListPackagingGroupsPaginator.d.ts +3 -0
- package/package.json +29 -29
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageVodClient";
|
|
5
5
|
import { DescribePackagingGroupRequest, DescribePackagingGroupResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribePackagingGroupCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribePackagingGroupCommandInput extends DescribePackagingGroupRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribePackagingGroupCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribePackagingGroupCommandOutput extends DescribePackagingGroupResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* Returns a description of 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 DescribePackagingGroupCommandOutput extends DescribePackagingGr
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribePackagingGroupCommandInput - {@link DescribePackagingGroupCommandInput}
|
|
34
|
+
* @returns {@link DescribePackagingGroupCommandOutput}
|
|
28
35
|
* @see {@link DescribePackagingGroupCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribePackagingGroupCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MediaPackageVodClientResolvedConfig | config} for MediaPackageVodClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface DescribePackagingGroupCommandOutput extends DescribePackagingGr
|
|
|
52
59
|
export declare class DescribePackagingGroupCommand extends $Command<DescribePackagingGroupCommandInput, DescribePackagingGroupCommandOutput, MediaPackageVodClientResolvedConfig> {
|
|
53
60
|
readonly input: DescribePackagingGroupCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: DescribePackagingGroupCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaPackageVodClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribePackagingGroupCommandInput, DescribePackagingGroupCommandOutput>;
|
|
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 { ListAssetsRequest, ListAssetsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListAssetsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListAssetsCommandInput extends ListAssetsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListAssetsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListAssetsCommandOutput extends ListAssetsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* Returns a collection of MediaPackage VOD Asset resources.
|
|
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 ListAssetsCommandOutput extends ListAssetsResponse, __MetadataB
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListAssetsCommandInput - {@link ListAssetsCommandInput}
|
|
34
|
+
* @returns {@link ListAssetsCommandOutput}
|
|
28
35
|
* @see {@link ListAssetsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListAssetsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MediaPackageVodClientResolvedConfig | config} for MediaPackageVodClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface ListAssetsCommandOutput extends ListAssetsResponse, __MetadataB
|
|
|
52
59
|
export declare class ListAssetsCommand extends $Command<ListAssetsCommandInput, ListAssetsCommandOutput, MediaPackageVodClientResolvedConfig> {
|
|
53
60
|
readonly input: ListAssetsCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: ListAssetsCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaPackageVodClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAssetsCommandInput, ListAssetsCommandOutput>;
|
|
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 { ListPackagingConfigurationsRequest, ListPackagingConfigurationsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListPackagingConfigurationsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListPackagingConfigurationsCommandInput extends ListPackagingConfigurationsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListPackagingConfigurationsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListPackagingConfigurationsCommandOutput extends ListPackagingConfigurationsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* Returns a collection of MediaPackage VOD PackagingConfiguration resources.
|
|
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 ListPackagingConfigurationsCommandOutput extends ListPackagingC
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListPackagingConfigurationsCommandInput - {@link ListPackagingConfigurationsCommandInput}
|
|
34
|
+
* @returns {@link ListPackagingConfigurationsCommandOutput}
|
|
28
35
|
* @see {@link ListPackagingConfigurationsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListPackagingConfigurationsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MediaPackageVodClientResolvedConfig | config} for MediaPackageVodClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface ListPackagingConfigurationsCommandOutput extends ListPackagingC
|
|
|
52
59
|
export declare class ListPackagingConfigurationsCommand extends $Command<ListPackagingConfigurationsCommandInput, ListPackagingConfigurationsCommandOutput, MediaPackageVodClientResolvedConfig> {
|
|
53
60
|
readonly input: ListPackagingConfigurationsCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: ListPackagingConfigurationsCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaPackageVodClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListPackagingConfigurationsCommandInput, ListPackagingConfigurationsCommandOutput>;
|
|
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 { ListPackagingGroupsRequest, ListPackagingGroupsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListPackagingGroupsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListPackagingGroupsCommandInput extends ListPackagingGroupsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListPackagingGroupsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListPackagingGroupsCommandOutput extends ListPackagingGroupsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* Returns a collection of MediaPackage VOD PackagingGroup resources.
|
|
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 ListPackagingGroupsCommandOutput extends ListPackagingGroupsRes
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListPackagingGroupsCommandInput - {@link ListPackagingGroupsCommandInput}
|
|
34
|
+
* @returns {@link ListPackagingGroupsCommandOutput}
|
|
28
35
|
* @see {@link ListPackagingGroupsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListPackagingGroupsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MediaPackageVodClientResolvedConfig | config} for MediaPackageVodClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface ListPackagingGroupsCommandOutput extends ListPackagingGroupsRes
|
|
|
52
59
|
export declare class ListPackagingGroupsCommand extends $Command<ListPackagingGroupsCommandInput, ListPackagingGroupsCommandOutput, MediaPackageVodClientResolvedConfig> {
|
|
53
60
|
readonly input: ListPackagingGroupsCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: ListPackagingGroupsCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaPackageVodClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListPackagingGroupsCommandInput, ListPackagingGroupsCommandOutput>;
|
|
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 { 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 {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* Returns a list of the tags assigned to the specified 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 ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
34
|
+
* @returns {@link ListTagsForResourceCommandOutput}
|
|
28
35
|
* @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MediaPackageVodClientResolvedConfig | config} for MediaPackageVodClient's `config` shape.
|
|
@@ -34,11 +41,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
34
41
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, MediaPackageVodClientResolvedConfig> {
|
|
35
42
|
readonly input: ListTagsForResourceCommandInput;
|
|
36
43
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
44
|
+
/**
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
37
47
|
constructor(input: ListTagsForResourceCommandInput);
|
|
38
48
|
/**
|
|
39
49
|
* @internal
|
|
40
50
|
*/
|
|
41
51
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaPackageVodClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
52
|
+
/**
|
|
53
|
+
* @internal
|
|
54
|
+
*/
|
|
42
55
|
private serialize;
|
|
56
|
+
/**
|
|
57
|
+
* @internal
|
|
58
|
+
*/
|
|
43
59
|
private deserialize;
|
|
44
60
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageVodClient";
|
|
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 {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* Adds tags to the specified resource. You can specify one or more tags to add.
|
|
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 TagResourceCommandOutput extends __MetadataBearer {
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
34
|
+
* @returns {@link TagResourceCommandOutput}
|
|
28
35
|
* @see {@link TagResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MediaPackageVodClientResolvedConfig | config} for MediaPackageVodClient's `config` shape.
|
|
@@ -34,11 +41,20 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
|
|
|
34
41
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, MediaPackageVodClientResolvedConfig> {
|
|
35
42
|
readonly input: TagResourceCommandInput;
|
|
36
43
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
44
|
+
/**
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
37
47
|
constructor(input: TagResourceCommandInput);
|
|
38
48
|
/**
|
|
39
49
|
* @internal
|
|
40
50
|
*/
|
|
41
51
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaPackageVodClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
52
|
+
/**
|
|
53
|
+
* @internal
|
|
54
|
+
*/
|
|
42
55
|
private serialize;
|
|
56
|
+
/**
|
|
57
|
+
* @internal
|
|
58
|
+
*/
|
|
43
59
|
private deserialize;
|
|
44
60
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageVodClient";
|
|
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 {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* Removes tags from the specified resource. You can specify one or more tags to remove.
|
|
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 UntagResourceCommandOutput extends __MetadataBearer {
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
34
|
+
* @returns {@link UntagResourceCommandOutput}
|
|
28
35
|
* @see {@link UntagResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MediaPackageVodClientResolvedConfig | config} for MediaPackageVodClient's `config` shape.
|
|
@@ -34,11 +41,20 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
|
|
|
34
41
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, MediaPackageVodClientResolvedConfig> {
|
|
35
42
|
readonly input: UntagResourceCommandInput;
|
|
36
43
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
44
|
+
/**
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
37
47
|
constructor(input: UntagResourceCommandInput);
|
|
38
48
|
/**
|
|
39
49
|
* @internal
|
|
40
50
|
*/
|
|
41
51
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaPackageVodClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
52
|
+
/**
|
|
53
|
+
* @internal
|
|
54
|
+
*/
|
|
42
55
|
private serialize;
|
|
56
|
+
/**
|
|
57
|
+
* @internal
|
|
58
|
+
*/
|
|
43
59
|
private deserialize;
|
|
44
60
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageVodClient";
|
|
5
5
|
import { UpdatePackagingGroupRequest, UpdatePackagingGroupResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdatePackagingGroupCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdatePackagingGroupCommandInput extends UpdatePackagingGroupRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdatePackagingGroupCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdatePackagingGroupCommandOutput extends UpdatePackagingGroupResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* Updates a specific packaging group. You can't change the id attribute or any other system-generated attributes.
|
|
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 UpdatePackagingGroupCommandOutput extends UpdatePackagingGroupR
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UpdatePackagingGroupCommandInput - {@link UpdatePackagingGroupCommandInput}
|
|
34
|
+
* @returns {@link UpdatePackagingGroupCommandOutput}
|
|
28
35
|
* @see {@link UpdatePackagingGroupCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UpdatePackagingGroupCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MediaPackageVodClientResolvedConfig | config} for MediaPackageVodClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface UpdatePackagingGroupCommandOutput extends UpdatePackagingGroupR
|
|
|
52
59
|
export declare class UpdatePackagingGroupCommand extends $Command<UpdatePackagingGroupCommandInput, UpdatePackagingGroupCommandOutput, MediaPackageVodClientResolvedConfig> {
|
|
53
60
|
readonly input: UpdatePackagingGroupCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: UpdatePackagingGroupCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaPackageVodClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdatePackagingGroupCommandInput, UpdatePackagingGroupCommandOutput>;
|
|
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 MediaPackageVod service.
|
|
4
6
|
*/
|
|
5
7
|
export declare class MediaPackageVodServiceException extends __ServiceException {
|