@aws-sdk/client-mediapackage 3.533.0 → 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.
- package/dist-types/MediaPackage.d.ts +4 -1
- package/dist-types/MediaPackageClient.d.ts +1 -1
- package/dist-types/commands/ConfigureLogsCommand.d.ts +2 -1
- package/dist-types/commands/CreateChannelCommand.d.ts +2 -1
- package/dist-types/commands/CreateHarvestJobCommand.d.ts +2 -1
- package/dist-types/commands/CreateOriginEndpointCommand.d.ts +2 -1
- package/dist-types/commands/DeleteChannelCommand.d.ts +2 -1
- package/dist-types/commands/DeleteOriginEndpointCommand.d.ts +2 -1
- package/dist-types/commands/DescribeChannelCommand.d.ts +2 -1
- package/dist-types/commands/DescribeHarvestJobCommand.d.ts +2 -1
- package/dist-types/commands/DescribeOriginEndpointCommand.d.ts +2 -1
- package/dist-types/commands/ListChannelsCommand.d.ts +2 -1
- package/dist-types/commands/ListHarvestJobsCommand.d.ts +2 -1
- package/dist-types/commands/ListOriginEndpointsCommand.d.ts +2 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -0
- package/dist-types/commands/RotateChannelCredentialsCommand.d.ts +3 -3
- package/dist-types/commands/RotateIngestEndpointCredentialsCommand.d.ts +2 -1
- package/dist-types/commands/TagResourceCommand.d.ts +1 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -0
- package/dist-types/commands/UpdateChannelCommand.d.ts +2 -1
- package/dist-types/commands/UpdateOriginEndpointCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +345 -345
- package/dist-types/ts3.4/MediaPackage.d.ts +3 -0
- package/dist-types/ts3.4/commands/ConfigureLogsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateChannelCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateHarvestJobCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateOriginEndpointCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteChannelCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteOriginEndpointCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeChannelCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeHarvestJobCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeOriginEndpointCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListChannelsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListHarvestJobsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListOriginEndpointsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/RotateChannelCredentialsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/RotateIngestEndpointCredentialsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateChannelCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateOriginEndpointCommand.d.ts +9 -0
- package/package.json +40 -40
|
@@ -77,18 +77,21 @@ export interface MediaPackage {
|
|
|
77
77
|
/**
|
|
78
78
|
* @see {@link ListChannelsCommand}
|
|
79
79
|
*/
|
|
80
|
+
listChannels(): Promise<ListChannelsCommandOutput>;
|
|
80
81
|
listChannels(args: ListChannelsCommandInput, options?: __HttpHandlerOptions): Promise<ListChannelsCommandOutput>;
|
|
81
82
|
listChannels(args: ListChannelsCommandInput, cb: (err: any, data?: ListChannelsCommandOutput) => void): void;
|
|
82
83
|
listChannels(args: ListChannelsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListChannelsCommandOutput) => void): void;
|
|
83
84
|
/**
|
|
84
85
|
* @see {@link ListHarvestJobsCommand}
|
|
85
86
|
*/
|
|
87
|
+
listHarvestJobs(): Promise<ListHarvestJobsCommandOutput>;
|
|
86
88
|
listHarvestJobs(args: ListHarvestJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListHarvestJobsCommandOutput>;
|
|
87
89
|
listHarvestJobs(args: ListHarvestJobsCommandInput, cb: (err: any, data?: ListHarvestJobsCommandOutput) => void): void;
|
|
88
90
|
listHarvestJobs(args: ListHarvestJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListHarvestJobsCommandOutput) => void): void;
|
|
89
91
|
/**
|
|
90
92
|
* @see {@link ListOriginEndpointsCommand}
|
|
91
93
|
*/
|
|
94
|
+
listOriginEndpoints(): Promise<ListOriginEndpointsCommandOutput>;
|
|
92
95
|
listOriginEndpoints(args: ListOriginEndpointsCommandInput, options?: __HttpHandlerOptions): Promise<ListOriginEndpointsCommandOutput>;
|
|
93
96
|
listOriginEndpoints(args: ListOriginEndpointsCommandInput, cb: (err: any, data?: ListOriginEndpointsCommandOutput) => void): void;
|
|
94
97
|
listOriginEndpoints(args: ListOriginEndpointsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListOriginEndpointsCommandOutput) => void): void;
|
|
@@ -136,8 +139,8 @@ export interface MediaPackage {
|
|
|
136
139
|
updateOriginEndpoint(args: UpdateOriginEndpointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateOriginEndpointCommandOutput) => void): void;
|
|
137
140
|
}
|
|
138
141
|
/**
|
|
139
|
-
* @public
|
|
140
142
|
* AWS Elemental MediaPackage
|
|
143
|
+
* @public
|
|
141
144
|
*/
|
|
142
145
|
export declare class MediaPackage extends MediaPackageClient implements MediaPackage {
|
|
143
146
|
}
|
|
@@ -170,8 +170,8 @@ export type MediaPackageClientResolvedConfigType = __SmithyResolvedConfiguration
|
|
|
170
170
|
export interface MediaPackageClientResolvedConfig extends MediaPackageClientResolvedConfigType {
|
|
171
171
|
}
|
|
172
172
|
/**
|
|
173
|
-
* @public
|
|
174
173
|
* AWS Elemental MediaPackage
|
|
174
|
+
* @public
|
|
175
175
|
*/
|
|
176
176
|
export declare class MediaPackageClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, MediaPackageClientResolvedConfig> {
|
|
177
177
|
/**
|
|
@@ -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, MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ConfigureLogsCommandInput): import("@smithy/smithy-client").CommandImpl<ConfigureLogsCommandInput, ConfigureLogsCommandOutput, MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* Changes the Channel'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.
|
|
@@ -99,6 +99,7 @@ declare const ConfigureLogsCommand_base: {
|
|
|
99
99
|
* @throws {@link MediaPackageServiceException}
|
|
100
100
|
* <p>Base exception class for all service exceptions from MediaPackage service.</p>
|
|
101
101
|
*
|
|
102
|
+
* @public
|
|
102
103
|
*/
|
|
103
104
|
export declare class ConfigureLogsCommand extends ConfigureLogsCommand_base {
|
|
104
105
|
}
|
|
@@ -22,10 +22,10 @@ export interface CreateChannelCommandOutput extends CreateChannelResponse, __Met
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateChannelCommand_base: {
|
|
24
24
|
new (input: CreateChannelCommandInput): import("@smithy/smithy-client").CommandImpl<CreateChannelCommandInput, CreateChannelCommandOutput, MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateChannelCommandInput): import("@smithy/smithy-client").CommandImpl<CreateChannelCommandInput, CreateChannelCommandOutput, MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* Creates a new Channel.
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -97,6 +97,7 @@ declare const CreateChannelCommand_base: {
|
|
|
97
97
|
* @throws {@link MediaPackageServiceException}
|
|
98
98
|
* <p>Base exception class for all service exceptions from MediaPackage service.</p>
|
|
99
99
|
*
|
|
100
|
+
* @public
|
|
100
101
|
*/
|
|
101
102
|
export declare class CreateChannelCommand extends CreateChannelCommand_base {
|
|
102
103
|
}
|
|
@@ -22,10 +22,10 @@ export interface CreateHarvestJobCommandOutput extends CreateHarvestJobResponse,
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateHarvestJobCommand_base: {
|
|
24
24
|
new (input: CreateHarvestJobCommandInput): import("@smithy/smithy-client").CommandImpl<CreateHarvestJobCommandInput, CreateHarvestJobCommandOutput, MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateHarvestJobCommandInput): import("@smithy/smithy-client").CommandImpl<CreateHarvestJobCommandInput, CreateHarvestJobCommandOutput, MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* Creates a new HarvestJob record.
|
|
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 CreateHarvestJobCommand_base: {
|
|
|
91
91
|
* @throws {@link MediaPackageServiceException}
|
|
92
92
|
* <p>Base exception class for all service exceptions from MediaPackage service.</p>
|
|
93
93
|
*
|
|
94
|
+
* @public
|
|
94
95
|
*/
|
|
95
96
|
export declare class CreateHarvestJobCommand extends CreateHarvestJobCommand_base {
|
|
96
97
|
}
|
|
@@ -22,10 +22,10 @@ export interface CreateOriginEndpointCommandOutput extends CreateOriginEndpointR
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateOriginEndpointCommand_base: {
|
|
24
24
|
new (input: CreateOriginEndpointCommandInput): import("@smithy/smithy-client").CommandImpl<CreateOriginEndpointCommandInput, CreateOriginEndpointCommandOutput, MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateOriginEndpointCommandInput): import("@smithy/smithy-client").CommandImpl<CreateOriginEndpointCommandInput, CreateOriginEndpointCommandOutput, MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* Creates a new OriginEndpoint record.
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -397,6 +397,7 @@ declare const CreateOriginEndpointCommand_base: {
|
|
|
397
397
|
* @throws {@link MediaPackageServiceException}
|
|
398
398
|
* <p>Base exception class for all service exceptions from MediaPackage service.</p>
|
|
399
399
|
*
|
|
400
|
+
* @public
|
|
400
401
|
*/
|
|
401
402
|
export declare class CreateOriginEndpointCommand extends CreateOriginEndpointCommand_base {
|
|
402
403
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteChannelCommandOutput extends DeleteChannelResponse, __Met
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteChannelCommand_base: {
|
|
24
24
|
new (input: DeleteChannelCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteChannelCommandInput, DeleteChannelCommandOutput, MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteChannelCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteChannelCommandInput, DeleteChannelCommandOutput, MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* Deletes an existing Channel.
|
|
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 DeleteChannelCommand_base: {
|
|
|
69
69
|
* @throws {@link MediaPackageServiceException}
|
|
70
70
|
* <p>Base exception class for all service exceptions from MediaPackage service.</p>
|
|
71
71
|
*
|
|
72
|
+
* @public
|
|
72
73
|
*/
|
|
73
74
|
export declare class DeleteChannelCommand extends DeleteChannelCommand_base {
|
|
74
75
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteOriginEndpointCommandOutput extends DeleteOriginEndpointR
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteOriginEndpointCommand_base: {
|
|
24
24
|
new (input: DeleteOriginEndpointCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteOriginEndpointCommandInput, DeleteOriginEndpointCommandOutput, MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteOriginEndpointCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteOriginEndpointCommandInput, DeleteOriginEndpointCommandOutput, MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* Deletes an existing OriginEndpoint.
|
|
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 DeleteOriginEndpointCommand_base: {
|
|
|
69
69
|
* @throws {@link MediaPackageServiceException}
|
|
70
70
|
* <p>Base exception class for all service exceptions from MediaPackage service.</p>
|
|
71
71
|
*
|
|
72
|
+
* @public
|
|
72
73
|
*/
|
|
73
74
|
export declare class DeleteOriginEndpointCommand extends DeleteOriginEndpointCommand_base {
|
|
74
75
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeChannelCommandOutput extends DescribeChannelResponse, _
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeChannelCommand_base: {
|
|
24
24
|
new (input: DescribeChannelCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeChannelCommandInput, DescribeChannelCommandOutput, MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeChannelCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeChannelCommandInput, DescribeChannelCommandOutput, MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* Gets details about a Channel.
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -93,6 +93,7 @@ declare const DescribeChannelCommand_base: {
|
|
|
93
93
|
* @throws {@link MediaPackageServiceException}
|
|
94
94
|
* <p>Base exception class for all service exceptions from MediaPackage service.</p>
|
|
95
95
|
*
|
|
96
|
+
* @public
|
|
96
97
|
*/
|
|
97
98
|
export declare class DescribeChannelCommand extends DescribeChannelCommand_base {
|
|
98
99
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeHarvestJobCommandOutput extends DescribeHarvestJobRespo
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeHarvestJobCommand_base: {
|
|
24
24
|
new (input: DescribeHarvestJobCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeHarvestJobCommandInput, DescribeHarvestJobCommandOutput, MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeHarvestJobCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeHarvestJobCommandInput, DescribeHarvestJobCommandOutput, MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* Gets details about an existing HarvestJob.
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -83,6 +83,7 @@ declare const DescribeHarvestJobCommand_base: {
|
|
|
83
83
|
* @throws {@link MediaPackageServiceException}
|
|
84
84
|
* <p>Base exception class for all service exceptions from MediaPackage service.</p>
|
|
85
85
|
*
|
|
86
|
+
* @public
|
|
86
87
|
*/
|
|
87
88
|
export declare class DescribeHarvestJobCommand extends DescribeHarvestJobCommand_base {
|
|
88
89
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeOriginEndpointCommandOutput extends DescribeOriginEndpo
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeOriginEndpointCommand_base: {
|
|
24
24
|
new (input: DescribeOriginEndpointCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeOriginEndpointCommandInput, DescribeOriginEndpointCommandOutput, MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeOriginEndpointCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeOriginEndpointCommandInput, DescribeOriginEndpointCommandOutput, MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* Gets details about an existing OriginEndpoint.
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -236,6 +236,7 @@ declare const DescribeOriginEndpointCommand_base: {
|
|
|
236
236
|
* @throws {@link MediaPackageServiceException}
|
|
237
237
|
* <p>Base exception class for all service exceptions from MediaPackage service.</p>
|
|
238
238
|
*
|
|
239
|
+
* @public
|
|
239
240
|
*/
|
|
240
241
|
export declare class DescribeOriginEndpointCommand extends DescribeOriginEndpointCommand_base {
|
|
241
242
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListChannelsCommandOutput extends ListChannelsResponse, __Metad
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListChannelsCommand_base: {
|
|
24
24
|
new (input: ListChannelsCommandInput): import("@smithy/smithy-client").CommandImpl<ListChannelsCommandInput, ListChannelsCommandOutput, MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListChannelsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListChannelsCommandInput, ListChannelsCommandOutput, MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* Returns a collection of Channels.
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -99,6 +99,7 @@ declare const ListChannelsCommand_base: {
|
|
|
99
99
|
* @throws {@link MediaPackageServiceException}
|
|
100
100
|
* <p>Base exception class for all service exceptions from MediaPackage service.</p>
|
|
101
101
|
*
|
|
102
|
+
* @public
|
|
102
103
|
*/
|
|
103
104
|
export declare class ListChannelsCommand extends ListChannelsCommand_base {
|
|
104
105
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListHarvestJobsCommandOutput extends ListHarvestJobsResponse, _
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListHarvestJobsCommand_base: {
|
|
24
24
|
new (input: ListHarvestJobsCommandInput): import("@smithy/smithy-client").CommandImpl<ListHarvestJobsCommandInput, ListHarvestJobsCommandOutput, MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListHarvestJobsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListHarvestJobsCommandInput, ListHarvestJobsCommandOutput, MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* Returns a collection of HarvestJob records.
|
|
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 ListHarvestJobsCommand_base: {
|
|
|
91
91
|
* @throws {@link MediaPackageServiceException}
|
|
92
92
|
* <p>Base exception class for all service exceptions from MediaPackage service.</p>
|
|
93
93
|
*
|
|
94
|
+
* @public
|
|
94
95
|
*/
|
|
95
96
|
export declare class ListHarvestJobsCommand extends ListHarvestJobsCommand_base {
|
|
96
97
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListOriginEndpointsCommandOutput extends ListOriginEndpointsRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListOriginEndpointsCommand_base: {
|
|
24
24
|
new (input: ListOriginEndpointsCommandInput): import("@smithy/smithy-client").CommandImpl<ListOriginEndpointsCommandInput, ListOriginEndpointsCommandOutput, MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListOriginEndpointsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListOriginEndpointsCommandInput, ListOriginEndpointsCommandOutput, MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* Returns a collection of OriginEndpoint records.
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -243,6 +243,7 @@ declare const ListOriginEndpointsCommand_base: {
|
|
|
243
243
|
* @throws {@link MediaPackageServiceException}
|
|
244
244
|
* <p>Base exception class for all service exceptions from MediaPackage service.</p>
|
|
245
245
|
*
|
|
246
|
+
* @public
|
|
246
247
|
*/
|
|
247
248
|
export declare class ListOriginEndpointsCommand extends ListOriginEndpointsCommand_base {
|
|
248
249
|
}
|
|
@@ -22,6 +22,7 @@ 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, MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
@@ -22,12 +22,10 @@ export interface RotateChannelCredentialsCommandOutput extends RotateChannelCred
|
|
|
22
22
|
}
|
|
23
23
|
declare const RotateChannelCredentialsCommand_base: {
|
|
24
24
|
new (input: RotateChannelCredentialsCommandInput): import("@smithy/smithy-client").CommandImpl<RotateChannelCredentialsCommandInput, RotateChannelCredentialsCommandOutput, MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: RotateChannelCredentialsCommandInput): import("@smithy/smithy-client").CommandImpl<RotateChannelCredentialsCommandInput, RotateChannelCredentialsCommandOutput, MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
|
-
* @deprecated
|
|
30
|
-
*
|
|
31
29
|
* Changes the Channel's first IngestEndpoint's username and password. WARNING - This API is deprecated. Please use RotateIngestEndpointCredentials instead
|
|
32
30
|
* @example
|
|
33
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -95,6 +93,8 @@ declare const RotateChannelCredentialsCommand_base: {
|
|
|
95
93
|
* @throws {@link MediaPackageServiceException}
|
|
96
94
|
* <p>Base exception class for all service exceptions from MediaPackage service.</p>
|
|
97
95
|
*
|
|
96
|
+
* @public
|
|
97
|
+
* @deprecated This API is deprecated. Please use RotateIngestEndpointCredentials instead
|
|
98
98
|
*/
|
|
99
99
|
export declare class RotateChannelCredentialsCommand extends RotateChannelCredentialsCommand_base {
|
|
100
100
|
}
|
|
@@ -22,10 +22,10 @@ export interface RotateIngestEndpointCredentialsCommandOutput extends RotateInge
|
|
|
22
22
|
}
|
|
23
23
|
declare const RotateIngestEndpointCredentialsCommand_base: {
|
|
24
24
|
new (input: RotateIngestEndpointCredentialsCommandInput): import("@smithy/smithy-client").CommandImpl<RotateIngestEndpointCredentialsCommandInput, RotateIngestEndpointCredentialsCommandOutput, MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: RotateIngestEndpointCredentialsCommandInput): import("@smithy/smithy-client").CommandImpl<RotateIngestEndpointCredentialsCommandInput, RotateIngestEndpointCredentialsCommandOutput, MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* Rotate the IngestEndpoint's username and password, as specified by the IngestEndpoint's id.
|
|
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 RotateIngestEndpointCredentialsCommand_base: {
|
|
|
94
94
|
* @throws {@link MediaPackageServiceException}
|
|
95
95
|
* <p>Base exception class for all service exceptions from MediaPackage service.</p>
|
|
96
96
|
*
|
|
97
|
+
* @public
|
|
97
98
|
*/
|
|
98
99
|
export declare class RotateIngestEndpointCredentialsCommand extends RotateIngestEndpointCredentialsCommand_base {
|
|
99
100
|
}
|
|
@@ -22,6 +22,7 @@ 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, MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
@@ -22,6 +22,7 @@ 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, MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
@@ -22,10 +22,10 @@ export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __Met
|
|
|
22
22
|
}
|
|
23
23
|
declare const UpdateChannelCommand_base: {
|
|
24
24
|
new (input: UpdateChannelCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateChannelCommandInput, UpdateChannelCommandOutput, MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UpdateChannelCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateChannelCommandInput, UpdateChannelCommandOutput, MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* Updates an existing Channel.
|
|
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 UpdateChannelCommand_base: {
|
|
|
94
94
|
* @throws {@link MediaPackageServiceException}
|
|
95
95
|
* <p>Base exception class for all service exceptions from MediaPackage service.</p>
|
|
96
96
|
*
|
|
97
|
+
* @public
|
|
97
98
|
*/
|
|
98
99
|
export declare class UpdateChannelCommand extends UpdateChannelCommand_base {
|
|
99
100
|
}
|
|
@@ -22,10 +22,10 @@ export interface UpdateOriginEndpointCommandOutput extends UpdateOriginEndpointR
|
|
|
22
22
|
}
|
|
23
23
|
declare const UpdateOriginEndpointCommand_base: {
|
|
24
24
|
new (input: UpdateOriginEndpointCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateOriginEndpointCommandInput, UpdateOriginEndpointCommandOutput, MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UpdateOriginEndpointCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateOriginEndpointCommandInput, UpdateOriginEndpointCommandOutput, MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* Updates an existing OriginEndpoint.
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -393,6 +393,7 @@ declare const UpdateOriginEndpointCommand_base: {
|
|
|
393
393
|
* @throws {@link MediaPackageServiceException}
|
|
394
394
|
* <p>Base exception class for all service exceptions from MediaPackage service.</p>
|
|
395
395
|
*
|
|
396
|
+
* @public
|
|
396
397
|
*/
|
|
397
398
|
export declare class UpdateOriginEndpointCommand extends UpdateOriginEndpointCommand_base {
|
|
398
399
|
}
|