@aws-sdk/client-mediapackage-vod 3.169.0 → 3.170.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/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/MediaPackageVod.d.ts +310 -90
- package/dist-types/ts3.4/MediaPackageVodClient.d.ts +232 -90
- package/dist-types/ts3.4/commands/ConfigureLogsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateAssetCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreatePackagingConfigurationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreatePackagingGroupCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteAssetCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeletePackagingConfigurationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeletePackagingGroupCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeAssetCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribePackagingConfigurationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribePackagingGroupCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListAssetsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListPackagingConfigurationsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListPackagingGroupsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UpdatePackagingGroupCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/index.d.ts +17 -17
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/MediaPackageVodServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +711 -668
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListAssetsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListPackagingConfigurationsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListPackagingGroupsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +4 -4
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +209 -53
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
- package/package.json +34 -34
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
MediaPackageVodClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../MediaPackageVodClient";
|
|
13
|
+
import {
|
|
14
|
+
DeletePackagingConfigurationRequest,
|
|
15
|
+
DeletePackagingConfigurationResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DeletePackagingConfigurationCommandInput
|
|
18
|
+
extends DeletePackagingConfigurationRequest {}
|
|
19
|
+
export interface DeletePackagingConfigurationCommandOutput
|
|
20
|
+
extends DeletePackagingConfigurationResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DeletePackagingConfigurationCommand extends $Command<
|
|
24
|
+
DeletePackagingConfigurationCommandInput,
|
|
25
|
+
DeletePackagingConfigurationCommandOutput,
|
|
26
|
+
MediaPackageVodClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DeletePackagingConfigurationCommandInput;
|
|
29
|
+
constructor(input: DeletePackagingConfigurationCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: MediaPackageVodClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DeletePackagingConfigurationCommandInput,
|
|
37
|
+
DeletePackagingConfigurationCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
MediaPackageVodClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../MediaPackageVodClient";
|
|
13
|
+
import {
|
|
14
|
+
DeletePackagingGroupRequest,
|
|
15
|
+
DeletePackagingGroupResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DeletePackagingGroupCommandInput
|
|
18
|
+
extends DeletePackagingGroupRequest {}
|
|
19
|
+
export interface DeletePackagingGroupCommandOutput
|
|
20
|
+
extends DeletePackagingGroupResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DeletePackagingGroupCommand extends $Command<
|
|
24
|
+
DeletePackagingGroupCommandInput,
|
|
25
|
+
DeletePackagingGroupCommandOutput,
|
|
26
|
+
MediaPackageVodClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DeletePackagingGroupCommandInput;
|
|
29
|
+
constructor(input: DeletePackagingGroupCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: MediaPackageVodClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DeletePackagingGroupCommandInput,
|
|
37
|
+
DeletePackagingGroupCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
MediaPackageVodClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../MediaPackageVodClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeAssetRequest,
|
|
15
|
+
DescribeAssetResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeAssetCommandInput extends DescribeAssetRequest {}
|
|
18
|
+
export interface DescribeAssetCommandOutput
|
|
19
|
+
extends DescribeAssetResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class DescribeAssetCommand extends $Command<
|
|
23
|
+
DescribeAssetCommandInput,
|
|
24
|
+
DescribeAssetCommandOutput,
|
|
25
|
+
MediaPackageVodClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeAssetCommandInput;
|
|
28
|
+
constructor(input: DescribeAssetCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: MediaPackageVodClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<DescribeAssetCommandInput, DescribeAssetCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
MediaPackageVodClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../MediaPackageVodClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribePackagingConfigurationRequest,
|
|
15
|
+
DescribePackagingConfigurationResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribePackagingConfigurationCommandInput
|
|
18
|
+
extends DescribePackagingConfigurationRequest {}
|
|
19
|
+
export interface DescribePackagingConfigurationCommandOutput
|
|
20
|
+
extends DescribePackagingConfigurationResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribePackagingConfigurationCommand extends $Command<
|
|
24
|
+
DescribePackagingConfigurationCommandInput,
|
|
25
|
+
DescribePackagingConfigurationCommandOutput,
|
|
26
|
+
MediaPackageVodClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribePackagingConfigurationCommandInput;
|
|
29
|
+
constructor(input: DescribePackagingConfigurationCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: MediaPackageVodClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribePackagingConfigurationCommandInput,
|
|
37
|
+
DescribePackagingConfigurationCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
MediaPackageVodClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../MediaPackageVodClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribePackagingGroupRequest,
|
|
15
|
+
DescribePackagingGroupResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribePackagingGroupCommandInput
|
|
18
|
+
extends DescribePackagingGroupRequest {}
|
|
19
|
+
export interface DescribePackagingGroupCommandOutput
|
|
20
|
+
extends DescribePackagingGroupResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribePackagingGroupCommand extends $Command<
|
|
24
|
+
DescribePackagingGroupCommandInput,
|
|
25
|
+
DescribePackagingGroupCommandOutput,
|
|
26
|
+
MediaPackageVodClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribePackagingGroupCommandInput;
|
|
29
|
+
constructor(input: DescribePackagingGroupCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: MediaPackageVodClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribePackagingGroupCommandInput,
|
|
37
|
+
DescribePackagingGroupCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
MediaPackageVodClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../MediaPackageVodClient";
|
|
13
|
+
import { ListAssetsRequest, ListAssetsResponse } from "../models/models_0";
|
|
14
|
+
export interface ListAssetsCommandInput extends ListAssetsRequest {}
|
|
15
|
+
export interface ListAssetsCommandOutput
|
|
16
|
+
extends ListAssetsResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class ListAssetsCommand extends $Command<
|
|
20
|
+
ListAssetsCommandInput,
|
|
21
|
+
ListAssetsCommandOutput,
|
|
22
|
+
MediaPackageVodClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: ListAssetsCommandInput;
|
|
25
|
+
constructor(input: ListAssetsCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: MediaPackageVodClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<ListAssetsCommandInput, ListAssetsCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
MediaPackageVodClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../MediaPackageVodClient";
|
|
13
|
+
import {
|
|
14
|
+
ListPackagingConfigurationsRequest,
|
|
15
|
+
ListPackagingConfigurationsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListPackagingConfigurationsCommandInput
|
|
18
|
+
extends ListPackagingConfigurationsRequest {}
|
|
19
|
+
export interface ListPackagingConfigurationsCommandOutput
|
|
20
|
+
extends ListPackagingConfigurationsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class ListPackagingConfigurationsCommand extends $Command<
|
|
24
|
+
ListPackagingConfigurationsCommandInput,
|
|
25
|
+
ListPackagingConfigurationsCommandOutput,
|
|
26
|
+
MediaPackageVodClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListPackagingConfigurationsCommandInput;
|
|
29
|
+
constructor(input: ListPackagingConfigurationsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: MediaPackageVodClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ListPackagingConfigurationsCommandInput,
|
|
37
|
+
ListPackagingConfigurationsCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
MediaPackageVodClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../MediaPackageVodClient";
|
|
13
|
+
import {
|
|
14
|
+
ListPackagingGroupsRequest,
|
|
15
|
+
ListPackagingGroupsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListPackagingGroupsCommandInput
|
|
18
|
+
extends ListPackagingGroupsRequest {}
|
|
19
|
+
export interface ListPackagingGroupsCommandOutput
|
|
20
|
+
extends ListPackagingGroupsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class ListPackagingGroupsCommand extends $Command<
|
|
24
|
+
ListPackagingGroupsCommandInput,
|
|
25
|
+
ListPackagingGroupsCommandOutput,
|
|
26
|
+
MediaPackageVodClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListPackagingGroupsCommandInput;
|
|
29
|
+
constructor(input: ListPackagingGroupsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: MediaPackageVodClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<ListPackagingGroupsCommandInput, ListPackagingGroupsCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
MediaPackageVodClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../MediaPackageVodClient";
|
|
13
|
+
import {
|
|
14
|
+
ListTagsForResourceRequest,
|
|
15
|
+
ListTagsForResourceResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListTagsForResourceCommandInput
|
|
18
|
+
extends ListTagsForResourceRequest {}
|
|
19
|
+
export interface ListTagsForResourceCommandOutput
|
|
20
|
+
extends ListTagsForResourceResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class ListTagsForResourceCommand extends $Command<
|
|
24
|
+
ListTagsForResourceCommandInput,
|
|
25
|
+
ListTagsForResourceCommandOutput,
|
|
26
|
+
MediaPackageVodClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListTagsForResourceCommandInput;
|
|
29
|
+
constructor(input: ListTagsForResourceCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: MediaPackageVodClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
MediaPackageVodClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../MediaPackageVodClient";
|
|
13
|
+
import { TagResourceRequest } from "../models/models_0";
|
|
14
|
+
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
15
|
+
export interface TagResourceCommandOutput extends __MetadataBearer {}
|
|
16
|
+
|
|
17
|
+
export declare class TagResourceCommand extends $Command<
|
|
18
|
+
TagResourceCommandInput,
|
|
19
|
+
TagResourceCommandOutput,
|
|
20
|
+
MediaPackageVodClientResolvedConfig
|
|
21
|
+
> {
|
|
22
|
+
readonly input: TagResourceCommandInput;
|
|
23
|
+
constructor(input: TagResourceCommandInput);
|
|
24
|
+
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: MediaPackageVodClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
MediaPackageVodClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../MediaPackageVodClient";
|
|
13
|
+
import { UntagResourceRequest } from "../models/models_0";
|
|
14
|
+
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
15
|
+
export interface UntagResourceCommandOutput extends __MetadataBearer {}
|
|
16
|
+
|
|
17
|
+
export declare class UntagResourceCommand extends $Command<
|
|
18
|
+
UntagResourceCommandInput,
|
|
19
|
+
UntagResourceCommandOutput,
|
|
20
|
+
MediaPackageVodClientResolvedConfig
|
|
21
|
+
> {
|
|
22
|
+
readonly input: UntagResourceCommandInput;
|
|
23
|
+
constructor(input: UntagResourceCommandInput);
|
|
24
|
+
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: MediaPackageVodClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|