/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the mediapackage-2017-10-12.normal.json service model. */ using System; using System.Collections.Generic; using Amazon.Runtime; using Amazon.MediaPackage.Model; namespace Amazon.MediaPackage { /// /// Interface for accessing MediaPackage /// /// AWS Elemental MediaPackage /// public partial interface IAmazonMediaPackage : IAmazonService, IDisposable { #if BCL45 || AWS_ASYNC_ENUMERABLES_API /// /// Paginators for the service /// IMediaPackagePaginatorFactory Paginators { get; } #endif #region ConfigureLogs /// /// Changes the Channel's properities to configure log subscription /// /// Container for the necessary parameters to execute the ConfigureLogs service method. /// /// The response from the ConfigureLogs service method, as returned by MediaPackage. /// /// The client is not authorized to access the requested resource. /// /// /// An unexpected error occurred. /// /// /// The requested resource does not exist. /// /// /// An unexpected error occurred. /// /// /// The client has exceeded their resource or throttling limits. /// /// /// The parameters sent in the request are not valid. /// /// REST API Reference for ConfigureLogs Operation ConfigureLogsResponse ConfigureLogs(ConfigureLogsRequest request); /// /// Initiates the asynchronous execution of the ConfigureLogs operation. /// /// /// Container for the necessary parameters to execute the ConfigureLogs operation on AmazonMediaPackageClient. /// An AsyncCallback delegate that is invoked when the operation completes. /// A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property. /// /// An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndConfigureLogs /// operation. /// REST API Reference for ConfigureLogs Operation IAsyncResult BeginConfigureLogs(ConfigureLogsRequest request, AsyncCallback callback, object state); /// /// Finishes the asynchronous execution of the ConfigureLogs operation. /// /// /// The IAsyncResult returned by the call to BeginConfigureLogs. /// /// Returns a ConfigureLogsResult from MediaPackage. /// REST API Reference for ConfigureLogs Operation ConfigureLogsResponse EndConfigureLogs(IAsyncResult asyncResult); #endregion #region CreateChannel /// /// Creates a new Channel. /// /// Container for the necessary parameters to execute the CreateChannel service method. /// /// The response from the CreateChannel service method, as returned by MediaPackage. /// /// The client is not authorized to access the requested resource. /// /// /// An unexpected error occurred. /// /// /// The requested resource does not exist. /// /// /// An unexpected error occurred. /// /// /// The client has exceeded their resource or throttling limits. /// /// /// The parameters sent in the request are not valid. /// /// REST API Reference for CreateChannel Operation CreateChannelResponse CreateChannel(CreateChannelRequest request); /// /// Initiates the asynchronous execution of the CreateChannel operation. /// /// /// Container for the necessary parameters to execute the CreateChannel operation on AmazonMediaPackageClient. /// An AsyncCallback delegate that is invoked when the operation completes. /// A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property. /// /// An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndCreateChannel /// operation. /// REST API Reference for CreateChannel Operation IAsyncResult BeginCreateChannel(CreateChannelRequest request, AsyncCallback callback, object state); /// /// Finishes the asynchronous execution of the CreateChannel operation. /// /// /// The IAsyncResult returned by the call to BeginCreateChannel. /// /// Returns a CreateChannelResult from MediaPackage. /// REST API Reference for CreateChannel Operation CreateChannelResponse EndCreateChannel(IAsyncResult asyncResult); #endregion #region CreateHarvestJob /// /// Creates a new HarvestJob record. /// /// Container for the necessary parameters to execute the CreateHarvestJob service method. /// /// The response from the CreateHarvestJob service method, as returned by MediaPackage. /// /// The client is not authorized to access the requested resource. /// /// /// An unexpected error occurred. /// /// /// The requested resource does not exist. /// /// /// An unexpected error occurred. /// /// /// The client has exceeded their resource or throttling limits. /// /// /// The parameters sent in the request are not valid. /// /// REST API Reference for CreateHarvestJob Operation CreateHarvestJobResponse CreateHarvestJob(CreateHarvestJobRequest request); /// /// Initiates the asynchronous execution of the CreateHarvestJob operation. /// /// /// Container for the necessary parameters to execute the CreateHarvestJob operation on AmazonMediaPackageClient. /// An AsyncCallback delegate that is invoked when the operation completes. /// A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property. /// /// An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndCreateHarvestJob /// operation. /// REST API Reference for CreateHarvestJob Operation IAsyncResult BeginCreateHarvestJob(CreateHarvestJobRequest request, AsyncCallback callback, object state); /// /// Finishes the asynchronous execution of the CreateHarvestJob operation. /// /// /// The IAsyncResult returned by the call to BeginCreateHarvestJob. /// /// Returns a CreateHarvestJobResult from MediaPackage. /// REST API Reference for CreateHarvestJob Operation CreateHarvestJobResponse EndCreateHarvestJob(IAsyncResult asyncResult); #endregion #region CreateOriginEndpoint /// /// Creates a new OriginEndpoint record. /// /// Container for the necessary parameters to execute the CreateOriginEndpoint service method. /// /// The response from the CreateOriginEndpoint service method, as returned by MediaPackage. /// /// The client is not authorized to access the requested resource. /// /// /// An unexpected error occurred. /// /// /// The requested resource does not exist. /// /// /// An unexpected error occurred. /// /// /// The client has exceeded their resource or throttling limits. /// /// /// The parameters sent in the request are not valid. /// /// REST API Reference for CreateOriginEndpoint Operation CreateOriginEndpointResponse CreateOriginEndpoint(CreateOriginEndpointRequest request); /// /// Initiates the asynchronous execution of the CreateOriginEndpoint operation. /// /// /// Container for the necessary parameters to execute the CreateOriginEndpoint operation on AmazonMediaPackageClient. /// An AsyncCallback delegate that is invoked when the operation completes. /// A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property. /// /// An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndCreateOriginEndpoint /// operation. /// REST API Reference for CreateOriginEndpoint Operation IAsyncResult BeginCreateOriginEndpoint(CreateOriginEndpointRequest request, AsyncCallback callback, object state); /// /// Finishes the asynchronous execution of the CreateOriginEndpoint operation. /// /// /// The IAsyncResult returned by the call to BeginCreateOriginEndpoint. /// /// Returns a CreateOriginEndpointResult from MediaPackage. /// REST API Reference for CreateOriginEndpoint Operation CreateOriginEndpointResponse EndCreateOriginEndpoint(IAsyncResult asyncResult); #endregion #region DeleteChannel /// /// Deletes an existing Channel. /// /// Container for the necessary parameters to execute the DeleteChannel service method. /// /// The response from the DeleteChannel service method, as returned by MediaPackage. /// /// The client is not authorized to access the requested resource. /// /// /// An unexpected error occurred. /// /// /// The requested resource does not exist. /// /// /// An unexpected error occurred. /// /// /// The client has exceeded their resource or throttling limits. /// /// /// The parameters sent in the request are not valid. /// /// REST API Reference for DeleteChannel Operation DeleteChannelResponse DeleteChannel(DeleteChannelRequest request); /// /// Initiates the asynchronous execution of the DeleteChannel operation. /// /// /// Container for the necessary parameters to execute the DeleteChannel operation on AmazonMediaPackageClient. /// An AsyncCallback delegate that is invoked when the operation completes. /// A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property. /// /// An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndDeleteChannel /// operation. /// REST API Reference for DeleteChannel Operation IAsyncResult BeginDeleteChannel(DeleteChannelRequest request, AsyncCallback callback, object state); /// /// Finishes the asynchronous execution of the DeleteChannel operation. /// /// /// The IAsyncResult returned by the call to BeginDeleteChannel. /// /// Returns a DeleteChannelResult from MediaPackage. /// REST API Reference for DeleteChannel Operation DeleteChannelResponse EndDeleteChannel(IAsyncResult asyncResult); #endregion #region DeleteOriginEndpoint /// /// Deletes an existing OriginEndpoint. /// /// Container for the necessary parameters to execute the DeleteOriginEndpoint service method. /// /// The response from the DeleteOriginEndpoint service method, as returned by MediaPackage. /// /// The client is not authorized to access the requested resource. /// /// /// An unexpected error occurred. /// /// /// The requested resource does not exist. /// /// /// An unexpected error occurred. /// /// /// The client has exceeded their resource or throttling limits. /// /// /// The parameters sent in the request are not valid. /// /// REST API Reference for DeleteOriginEndpoint Operation DeleteOriginEndpointResponse DeleteOriginEndpoint(DeleteOriginEndpointRequest request); /// /// Initiates the asynchronous execution of the DeleteOriginEndpoint operation. /// /// /// Container for the necessary parameters to execute the DeleteOriginEndpoint operation on AmazonMediaPackageClient. /// An AsyncCallback delegate that is invoked when the operation completes. /// A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property. /// /// An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndDeleteOriginEndpoint /// operation. /// REST API Reference for DeleteOriginEndpoint Operation IAsyncResult BeginDeleteOriginEndpoint(DeleteOriginEndpointRequest request, AsyncCallback callback, object state); /// /// Finishes the asynchronous execution of the DeleteOriginEndpoint operation. /// /// /// The IAsyncResult returned by the call to BeginDeleteOriginEndpoint. /// /// Returns a DeleteOriginEndpointResult from MediaPackage. /// REST API Reference for DeleteOriginEndpoint Operation DeleteOriginEndpointResponse EndDeleteOriginEndpoint(IAsyncResult asyncResult); #endregion #region DescribeChannel /// /// Gets details about a Channel. /// /// Container for the necessary parameters to execute the DescribeChannel service method. /// /// The response from the DescribeChannel service method, as returned by MediaPackage. /// /// The client is not authorized to access the requested resource. /// /// /// An unexpected error occurred. /// /// /// The requested resource does not exist. /// /// /// An unexpected error occurred. /// /// /// The client has exceeded their resource or throttling limits. /// /// /// The parameters sent in the request are not valid. /// /// REST API Reference for DescribeChannel Operation DescribeChannelResponse DescribeChannel(DescribeChannelRequest request); /// /// Initiates the asynchronous execution of the DescribeChannel operation. /// /// /// Container for the necessary parameters to execute the DescribeChannel operation on AmazonMediaPackageClient. /// An AsyncCallback delegate that is invoked when the operation completes. /// A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property. /// /// An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndDescribeChannel /// operation. /// REST API Reference for DescribeChannel Operation IAsyncResult BeginDescribeChannel(DescribeChannelRequest request, AsyncCallback callback, object state); /// /// Finishes the asynchronous execution of the DescribeChannel operation. /// /// /// The IAsyncResult returned by the call to BeginDescribeChannel. /// /// Returns a DescribeChannelResult from MediaPackage. /// REST API Reference for DescribeChannel Operation DescribeChannelResponse EndDescribeChannel(IAsyncResult asyncResult); #endregion #region DescribeHarvestJob /// /// Gets details about an existing HarvestJob. /// /// Container for the necessary parameters to execute the DescribeHarvestJob service method. /// /// The response from the DescribeHarvestJob service method, as returned by MediaPackage. /// /// The client is not authorized to access the requested resource. /// /// /// An unexpected error occurred. /// /// /// The requested resource does not exist. /// /// /// An unexpected error occurred. /// /// /// The client has exceeded their resource or throttling limits. /// /// /// The parameters sent in the request are not valid. /// /// REST API Reference for DescribeHarvestJob Operation DescribeHarvestJobResponse DescribeHarvestJob(DescribeHarvestJobRequest request); /// /// Initiates the asynchronous execution of the DescribeHarvestJob operation. /// /// /// Container for the necessary parameters to execute the DescribeHarvestJob operation on AmazonMediaPackageClient. /// An AsyncCallback delegate that is invoked when the operation completes. /// A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property. /// /// An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndDescribeHarvestJob /// operation. /// REST API Reference for DescribeHarvestJob Operation IAsyncResult BeginDescribeHarvestJob(DescribeHarvestJobRequest request, AsyncCallback callback, object state); /// /// Finishes the asynchronous execution of the DescribeHarvestJob operation. /// /// /// The IAsyncResult returned by the call to BeginDescribeHarvestJob. /// /// Returns a DescribeHarvestJobResult from MediaPackage. /// REST API Reference for DescribeHarvestJob Operation DescribeHarvestJobResponse EndDescribeHarvestJob(IAsyncResult asyncResult); #endregion #region DescribeOriginEndpoint /// /// Gets details about an existing OriginEndpoint. /// /// Container for the necessary parameters to execute the DescribeOriginEndpoint service method. /// /// The response from the DescribeOriginEndpoint service method, as returned by MediaPackage. /// /// The client is not authorized to access the requested resource. /// /// /// An unexpected error occurred. /// /// /// The requested resource does not exist. /// /// /// An unexpected error occurred. /// /// /// The client has exceeded their resource or throttling limits. /// /// /// The parameters sent in the request are not valid. /// /// REST API Reference for DescribeOriginEndpoint Operation DescribeOriginEndpointResponse DescribeOriginEndpoint(DescribeOriginEndpointRequest request); /// /// Initiates the asynchronous execution of the DescribeOriginEndpoint operation. /// /// /// Container for the necessary parameters to execute the DescribeOriginEndpoint operation on AmazonMediaPackageClient. /// An AsyncCallback delegate that is invoked when the operation completes. /// A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property. /// /// An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndDescribeOriginEndpoint /// operation. /// REST API Reference for DescribeOriginEndpoint Operation IAsyncResult BeginDescribeOriginEndpoint(DescribeOriginEndpointRequest request, AsyncCallback callback, object state); /// /// Finishes the asynchronous execution of the DescribeOriginEndpoint operation. /// /// /// The IAsyncResult returned by the call to BeginDescribeOriginEndpoint. /// /// Returns a DescribeOriginEndpointResult from MediaPackage. /// REST API Reference for DescribeOriginEndpoint Operation DescribeOriginEndpointResponse EndDescribeOriginEndpoint(IAsyncResult asyncResult); #endregion #region ListChannels /// /// Returns a collection of Channels. /// /// Container for the necessary parameters to execute the ListChannels service method. /// /// The response from the ListChannels service method, as returned by MediaPackage. /// /// The client is not authorized to access the requested resource. /// /// /// An unexpected error occurred. /// /// /// The requested resource does not exist. /// /// /// An unexpected error occurred. /// /// /// The client has exceeded their resource or throttling limits. /// /// /// The parameters sent in the request are not valid. /// /// REST API Reference for ListChannels Operation ListChannelsResponse ListChannels(ListChannelsRequest request); /// /// Initiates the asynchronous execution of the ListChannels operation. /// /// /// Container for the necessary parameters to execute the ListChannels operation on AmazonMediaPackageClient. /// An AsyncCallback delegate that is invoked when the operation completes. /// A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property. /// /// An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndListChannels /// operation. /// REST API Reference for ListChannels Operation IAsyncResult BeginListChannels(ListChannelsRequest request, AsyncCallback callback, object state); /// /// Finishes the asynchronous execution of the ListChannels operation. /// /// /// The IAsyncResult returned by the call to BeginListChannels. /// /// Returns a ListChannelsResult from MediaPackage. /// REST API Reference for ListChannels Operation ListChannelsResponse EndListChannels(IAsyncResult asyncResult); #endregion #region ListHarvestJobs /// /// Returns a collection of HarvestJob records. /// /// Container for the necessary parameters to execute the ListHarvestJobs service method. /// /// The response from the ListHarvestJobs service method, as returned by MediaPackage. /// /// The client is not authorized to access the requested resource. /// /// /// An unexpected error occurred. /// /// /// The requested resource does not exist. /// /// /// An unexpected error occurred. /// /// /// The client has exceeded their resource or throttling limits. /// /// /// The parameters sent in the request are not valid. /// /// REST API Reference for ListHarvestJobs Operation ListHarvestJobsResponse ListHarvestJobs(ListHarvestJobsRequest request); /// /// Initiates the asynchronous execution of the ListHarvestJobs operation. /// /// /// Container for the necessary parameters to execute the ListHarvestJobs operation on AmazonMediaPackageClient. /// An AsyncCallback delegate that is invoked when the operation completes. /// A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property. /// /// An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndListHarvestJobs /// operation. /// REST API Reference for ListHarvestJobs Operation IAsyncResult BeginListHarvestJobs(ListHarvestJobsRequest request, AsyncCallback callback, object state); /// /// Finishes the asynchronous execution of the ListHarvestJobs operation. /// /// /// The IAsyncResult returned by the call to BeginListHarvestJobs. /// /// Returns a ListHarvestJobsResult from MediaPackage. /// REST API Reference for ListHarvestJobs Operation ListHarvestJobsResponse EndListHarvestJobs(IAsyncResult asyncResult); #endregion #region ListOriginEndpoints /// /// Returns a collection of OriginEndpoint records. /// /// Container for the necessary parameters to execute the ListOriginEndpoints service method. /// /// The response from the ListOriginEndpoints service method, as returned by MediaPackage. /// /// The client is not authorized to access the requested resource. /// /// /// An unexpected error occurred. /// /// /// The requested resource does not exist. /// /// /// An unexpected error occurred. /// /// /// The client has exceeded their resource or throttling limits. /// /// /// The parameters sent in the request are not valid. /// /// REST API Reference for ListOriginEndpoints Operation ListOriginEndpointsResponse ListOriginEndpoints(ListOriginEndpointsRequest request); /// /// Initiates the asynchronous execution of the ListOriginEndpoints operation. /// /// /// Container for the necessary parameters to execute the ListOriginEndpoints operation on AmazonMediaPackageClient. /// An AsyncCallback delegate that is invoked when the operation completes. /// A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property. /// /// An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndListOriginEndpoints /// operation. /// REST API Reference for ListOriginEndpoints Operation IAsyncResult BeginListOriginEndpoints(ListOriginEndpointsRequest request, AsyncCallback callback, object state); /// /// Finishes the asynchronous execution of the ListOriginEndpoints operation. /// /// /// The IAsyncResult returned by the call to BeginListOriginEndpoints. /// /// Returns a ListOriginEndpointsResult from MediaPackage. /// REST API Reference for ListOriginEndpoints Operation ListOriginEndpointsResponse EndListOriginEndpoints(IAsyncResult asyncResult); #endregion #region ListTagsForResource /// /// /// /// Container for the necessary parameters to execute the ListTagsForResource service method. /// /// The response from the ListTagsForResource service method, as returned by MediaPackage. /// REST API Reference for ListTagsForResource Operation ListTagsForResourceResponse ListTagsForResource(ListTagsForResourceRequest request); /// /// Initiates the asynchronous execution of the ListTagsForResource operation. /// /// /// Container for the necessary parameters to execute the ListTagsForResource operation on AmazonMediaPackageClient. /// An AsyncCallback delegate that is invoked when the operation completes. /// A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property. /// /// An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndListTagsForResource /// operation. /// REST API Reference for ListTagsForResource Operation IAsyncResult BeginListTagsForResource(ListTagsForResourceRequest request, AsyncCallback callback, object state); /// /// Finishes the asynchronous execution of the ListTagsForResource operation. /// /// /// The IAsyncResult returned by the call to BeginListTagsForResource. /// /// Returns a ListTagsForResourceResult from MediaPackage. /// REST API Reference for ListTagsForResource Operation ListTagsForResourceResponse EndListTagsForResource(IAsyncResult asyncResult); #endregion #region RotateChannelCredentials /// /// Changes the Channel's first IngestEndpoint's username and password. WARNING - This /// API is deprecated. Please use RotateIngestEndpointCredentials instead /// /// Container for the necessary parameters to execute the RotateChannelCredentials service method. /// /// The response from the RotateChannelCredentials service method, as returned by MediaPackage. /// /// The client is not authorized to access the requested resource. /// /// /// An unexpected error occurred. /// /// /// The requested resource does not exist. /// /// /// An unexpected error occurred. /// /// /// The client has exceeded their resource or throttling limits. /// /// /// The parameters sent in the request are not valid. /// /// REST API Reference for RotateChannelCredentials Operation [Obsolete("This API is deprecated. Please use RotateIngestEndpointCredentials instead")] RotateChannelCredentialsResponse RotateChannelCredentials(RotateChannelCredentialsRequest request); /// /// Initiates the asynchronous execution of the RotateChannelCredentials operation. /// /// /// Container for the necessary parameters to execute the RotateChannelCredentials operation on AmazonMediaPackageClient. /// An AsyncCallback delegate that is invoked when the operation completes. /// A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property. /// /// An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndRotateChannelCredentials /// operation. /// REST API Reference for RotateChannelCredentials Operation [Obsolete("This API is deprecated. Please use RotateIngestEndpointCredentials instead")] IAsyncResult BeginRotateChannelCredentials(RotateChannelCredentialsRequest request, AsyncCallback callback, object state); /// /// Finishes the asynchronous execution of the RotateChannelCredentials operation. /// /// /// The IAsyncResult returned by the call to BeginRotateChannelCredentials. /// /// Returns a RotateChannelCredentialsResult from MediaPackage. /// REST API Reference for RotateChannelCredentials Operation [Obsolete("This API is deprecated. Please use RotateIngestEndpointCredentials instead")] RotateChannelCredentialsResponse EndRotateChannelCredentials(IAsyncResult asyncResult); #endregion #region RotateIngestEndpointCredentials /// /// Rotate the IngestEndpoint's username and password, as specified by the IngestEndpoint's /// id. /// /// Container for the necessary parameters to execute the RotateIngestEndpointCredentials service method. /// /// The response from the RotateIngestEndpointCredentials service method, as returned by MediaPackage. /// /// The client is not authorized to access the requested resource. /// /// /// An unexpected error occurred. /// /// /// The requested resource does not exist. /// /// /// An unexpected error occurred. /// /// /// The client has exceeded their resource or throttling limits. /// /// /// The parameters sent in the request are not valid. /// /// REST API Reference for RotateIngestEndpointCredentials Operation RotateIngestEndpointCredentialsResponse RotateIngestEndpointCredentials(RotateIngestEndpointCredentialsRequest request); /// /// Initiates the asynchronous execution of the RotateIngestEndpointCredentials operation. /// /// /// Container for the necessary parameters to execute the RotateIngestEndpointCredentials operation on AmazonMediaPackageClient. /// An AsyncCallback delegate that is invoked when the operation completes. /// A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property. /// /// An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndRotateIngestEndpointCredentials /// operation. /// REST API Reference for RotateIngestEndpointCredentials Operation IAsyncResult BeginRotateIngestEndpointCredentials(RotateIngestEndpointCredentialsRequest request, AsyncCallback callback, object state); /// /// Finishes the asynchronous execution of the RotateIngestEndpointCredentials operation. /// /// /// The IAsyncResult returned by the call to BeginRotateIngestEndpointCredentials. /// /// Returns a RotateIngestEndpointCredentialsResult from MediaPackage. /// REST API Reference for RotateIngestEndpointCredentials Operation RotateIngestEndpointCredentialsResponse EndRotateIngestEndpointCredentials(IAsyncResult asyncResult); #endregion #region TagResource /// /// /// /// Container for the necessary parameters to execute the TagResource service method. /// /// The response from the TagResource service method, as returned by MediaPackage. /// REST API Reference for TagResource Operation TagResourceResponse TagResource(TagResourceRequest request); /// /// Initiates the asynchronous execution of the TagResource operation. /// /// /// Container for the necessary parameters to execute the TagResource operation on AmazonMediaPackageClient. /// An AsyncCallback delegate that is invoked when the operation completes. /// A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property. /// /// An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndTagResource /// operation. /// REST API Reference for TagResource Operation IAsyncResult BeginTagResource(TagResourceRequest request, AsyncCallback callback, object state); /// /// Finishes the asynchronous execution of the TagResource operation. /// /// /// The IAsyncResult returned by the call to BeginTagResource. /// /// Returns a TagResourceResult from MediaPackage. /// REST API Reference for TagResource Operation TagResourceResponse EndTagResource(IAsyncResult asyncResult); #endregion #region UntagResource /// /// /// /// Container for the necessary parameters to execute the UntagResource service method. /// /// The response from the UntagResource service method, as returned by MediaPackage. /// REST API Reference for UntagResource Operation UntagResourceResponse UntagResource(UntagResourceRequest request); /// /// Initiates the asynchronous execution of the UntagResource operation. /// /// /// Container for the necessary parameters to execute the UntagResource operation on AmazonMediaPackageClient. /// An AsyncCallback delegate that is invoked when the operation completes. /// A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property. /// /// An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndUntagResource /// operation. /// REST API Reference for UntagResource Operation IAsyncResult BeginUntagResource(UntagResourceRequest request, AsyncCallback callback, object state); /// /// Finishes the asynchronous execution of the UntagResource operation. /// /// /// The IAsyncResult returned by the call to BeginUntagResource. /// /// Returns a UntagResourceResult from MediaPackage. /// REST API Reference for UntagResource Operation UntagResourceResponse EndUntagResource(IAsyncResult asyncResult); #endregion #region UpdateChannel /// /// Updates an existing Channel. /// /// Container for the necessary parameters to execute the UpdateChannel service method. /// /// The response from the UpdateChannel service method, as returned by MediaPackage. /// /// The client is not authorized to access the requested resource. /// /// /// An unexpected error occurred. /// /// /// The requested resource does not exist. /// /// /// An unexpected error occurred. /// /// /// The client has exceeded their resource or throttling limits. /// /// /// The parameters sent in the request are not valid. /// /// REST API Reference for UpdateChannel Operation UpdateChannelResponse UpdateChannel(UpdateChannelRequest request); /// /// Initiates the asynchronous execution of the UpdateChannel operation. /// /// /// Container for the necessary parameters to execute the UpdateChannel operation on AmazonMediaPackageClient. /// An AsyncCallback delegate that is invoked when the operation completes. /// A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property. /// /// An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndUpdateChannel /// operation. /// REST API Reference for UpdateChannel Operation IAsyncResult BeginUpdateChannel(UpdateChannelRequest request, AsyncCallback callback, object state); /// /// Finishes the asynchronous execution of the UpdateChannel operation. /// /// /// The IAsyncResult returned by the call to BeginUpdateChannel. /// /// Returns a UpdateChannelResult from MediaPackage. /// REST API Reference for UpdateChannel Operation UpdateChannelResponse EndUpdateChannel(IAsyncResult asyncResult); #endregion #region UpdateOriginEndpoint /// /// Updates an existing OriginEndpoint. /// /// Container for the necessary parameters to execute the UpdateOriginEndpoint service method. /// /// The response from the UpdateOriginEndpoint service method, as returned by MediaPackage. /// /// The client is not authorized to access the requested resource. /// /// /// An unexpected error occurred. /// /// /// The requested resource does not exist. /// /// /// An unexpected error occurred. /// /// /// The client has exceeded their resource or throttling limits. /// /// /// The parameters sent in the request are not valid. /// /// REST API Reference for UpdateOriginEndpoint Operation UpdateOriginEndpointResponse UpdateOriginEndpoint(UpdateOriginEndpointRequest request); /// /// Initiates the asynchronous execution of the UpdateOriginEndpoint operation. /// /// /// Container for the necessary parameters to execute the UpdateOriginEndpoint operation on AmazonMediaPackageClient. /// An AsyncCallback delegate that is invoked when the operation completes. /// A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property. /// /// An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndUpdateOriginEndpoint /// operation. /// REST API Reference for UpdateOriginEndpoint Operation IAsyncResult BeginUpdateOriginEndpoint(UpdateOriginEndpointRequest request, AsyncCallback callback, object state); /// /// Finishes the asynchronous execution of the UpdateOriginEndpoint operation. /// /// /// The IAsyncResult returned by the call to BeginUpdateOriginEndpoint. /// /// Returns a UpdateOriginEndpointResult from MediaPackage. /// REST API Reference for UpdateOriginEndpoint Operation UpdateOriginEndpointResponse EndUpdateOriginEndpoint(IAsyncResult asyncResult); #endregion } }