/* * 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 apprunner-2020-05-15.normal.json service model. */ using System; using System.Collections.Generic; using Amazon.Runtime; using Amazon.AppRunner.Model; namespace Amazon.AppRunner { /// /// Interface for accessing AppRunner /// /// App Runner /// /// App Runner is an application service that provides a fast, simple, and cost-effective /// way to go directly from an existing container image or source code to a running service /// in the Amazon Web Services Cloud in seconds. You don't need to learn new technologies, /// decide which compute service to use, or understand how to provision and configure /// Amazon Web Services resources. /// /// /// /// App Runner connects directly to your container registry or source code repository. /// It provides an automatic delivery pipeline with fully managed operations, high performance, /// scalability, and security. /// /// /// /// For more information about App Runner, see the App /// Runner Developer Guide. For release information, see the App /// Runner Release Notes. /// /// /// /// To install the Software Development Kits (SDKs), Integrated Development Environment /// (IDE) Toolkits, and command line tools that you can use to access the API, see Tools for Amazon Web Services. /// /// /// /// Endpoints /// /// /// /// For a list of Region-specific endpoints that App Runner supports, see App /// Runner endpoints and quotas in the Amazon Web Services General Reference. /// /// public partial interface IAmazonAppRunner : IAmazonService, IDisposable { #if BCL45 || AWS_ASYNC_ENUMERABLES_API /// /// Paginators for the service /// IAppRunnerPaginatorFactory Paginators { get; } #endif #region AssociateCustomDomain /// /// Associate your own domain name with the App Runner subdomain URL of your App Runner /// service. /// /// /// /// After you call AssociateCustomDomain and receive a successful response, /// use the information in the CustomDomain record that's returned to add CNAME /// records to your Domain Name System (DNS). For each mapped domain name, add a mapping /// to the target App Runner subdomain and one or more certificate validation records. /// App Runner then performs DNS validation to verify that you own or control the domain /// name that you associated. App Runner tracks domain validity in a certificate stored /// in AWS Certificate Manager /// (ACM). /// /// /// Container for the necessary parameters to execute the AssociateCustomDomain service method. /// /// The response from the AssociateCustomDomain service method, as returned by AppRunner. /// /// An unexpected service exception occurred. /// /// /// One or more input parameters aren't valid. Refer to the API action's document page, /// correct the input parameters, and try the action again. /// /// /// You can't perform this action when the resource is in its current state. /// /// REST API Reference for AssociateCustomDomain Operation AssociateCustomDomainResponse AssociateCustomDomain(AssociateCustomDomainRequest request); /// /// Initiates the asynchronous execution of the AssociateCustomDomain operation. /// /// /// Container for the necessary parameters to execute the AssociateCustomDomain operation on AmazonAppRunnerClient. /// 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 EndAssociateCustomDomain /// operation. /// REST API Reference for AssociateCustomDomain Operation IAsyncResult BeginAssociateCustomDomain(AssociateCustomDomainRequest request, AsyncCallback callback, object state); /// /// Finishes the asynchronous execution of the AssociateCustomDomain operation. /// /// /// The IAsyncResult returned by the call to BeginAssociateCustomDomain. /// /// Returns a AssociateCustomDomainResult from AppRunner. /// REST API Reference for AssociateCustomDomain Operation AssociateCustomDomainResponse EndAssociateCustomDomain(IAsyncResult asyncResult); #endregion #region CreateAutoScalingConfiguration /// /// Create an App Runner automatic scaling configuration resource. App Runner requires /// this resource when you create or update App Runner services and you require non-default /// auto scaling settings. You can share an auto scaling configuration across multiple /// services. /// /// /// /// Create multiple revisions of a configuration by calling this action multiple times /// using the same AutoScalingConfigurationName. The call returns incremental /// AutoScalingConfigurationRevision values. When you create a service and /// configure an auto scaling configuration resource, the service uses the latest active /// revision of the auto scaling configuration by default. You can optionally configure /// the service to use a specific revision. /// /// /// /// Configure a higher MinSize to increase the spread of your App Runner /// service over more Availability Zones in the Amazon Web Services Region. The tradeoff /// is a higher minimal cost. /// /// /// /// Configure a lower MaxSize to control your cost. The tradeoff is lower /// responsiveness during peak demand. /// /// /// Container for the necessary parameters to execute the CreateAutoScalingConfiguration service method. /// /// The response from the CreateAutoScalingConfiguration service method, as returned by AppRunner. /// /// An unexpected service exception occurred. /// /// /// One or more input parameters aren't valid. Refer to the API action's document page, /// correct the input parameters, and try the action again. /// /// /// App Runner can't create this resource. You've reached your account quota for this /// resource type. /// /// /// /// For App Runner per-resource quotas, see App /// Runner endpoints and quotas in the Amazon Web Services General Reference. /// /// /// REST API Reference for CreateAutoScalingConfiguration Operation CreateAutoScalingConfigurationResponse CreateAutoScalingConfiguration(CreateAutoScalingConfigurationRequest request); /// /// Initiates the asynchronous execution of the CreateAutoScalingConfiguration operation. /// /// /// Container for the necessary parameters to execute the CreateAutoScalingConfiguration operation on AmazonAppRunnerClient. /// 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 EndCreateAutoScalingConfiguration /// operation. /// REST API Reference for CreateAutoScalingConfiguration Operation IAsyncResult BeginCreateAutoScalingConfiguration(CreateAutoScalingConfigurationRequest request, AsyncCallback callback, object state); /// /// Finishes the asynchronous execution of the CreateAutoScalingConfiguration operation. /// /// /// The IAsyncResult returned by the call to BeginCreateAutoScalingConfiguration. /// /// Returns a CreateAutoScalingConfigurationResult from AppRunner. /// REST API Reference for CreateAutoScalingConfiguration Operation CreateAutoScalingConfigurationResponse EndCreateAutoScalingConfiguration(IAsyncResult asyncResult); #endregion #region CreateConnection /// /// Create an App Runner connection resource. App Runner requires a connection resource /// when you create App Runner services that access private repositories from certain /// third-party providers. You can share a connection across multiple services. /// /// /// /// A connection resource is needed to access GitHub repositories. GitHub requires a user /// interface approval process through the App Runner console before you can use the connection. /// /// /// Container for the necessary parameters to execute the CreateConnection service method. /// /// The response from the CreateConnection service method, as returned by AppRunner. /// /// An unexpected service exception occurred. /// /// /// One or more input parameters aren't valid. Refer to the API action's document page, /// correct the input parameters, and try the action again. /// /// /// App Runner can't create this resource. You've reached your account quota for this /// resource type. /// /// /// /// For App Runner per-resource quotas, see App /// Runner endpoints and quotas in the Amazon Web Services General Reference. /// /// /// REST API Reference for CreateConnection Operation CreateConnectionResponse CreateConnection(CreateConnectionRequest request); /// /// Initiates the asynchronous execution of the CreateConnection operation. /// /// /// Container for the necessary parameters to execute the CreateConnection operation on AmazonAppRunnerClient. /// 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 EndCreateConnection /// operation. /// REST API Reference for CreateConnection Operation IAsyncResult BeginCreateConnection(CreateConnectionRequest request, AsyncCallback callback, object state); /// /// Finishes the asynchronous execution of the CreateConnection operation. /// /// /// The IAsyncResult returned by the call to BeginCreateConnection. /// /// Returns a CreateConnectionResult from AppRunner. /// REST API Reference for CreateConnection Operation CreateConnectionResponse EndCreateConnection(IAsyncResult asyncResult); #endregion #region CreateObservabilityConfiguration /// /// Create an App Runner observability configuration resource. App Runner requires this /// resource when you create or update App Runner services and you want to enable non-default /// observability features. You can share an observability configuration across multiple /// services. /// /// /// /// Create multiple revisions of a configuration by calling this action multiple times /// using the same ObservabilityConfigurationName. The call returns incremental /// ObservabilityConfigurationRevision values. When you create a service /// and configure an observability configuration resource, the service uses the latest /// active revision of the observability configuration by default. You can optionally /// configure the service to use a specific revision. /// /// /// /// The observability configuration resource is designed to configure multiple features /// (currently one feature, tracing). This action takes optional parameters that describe /// the configuration of these features (currently one parameter, TraceConfiguration). /// If you don't specify a feature parameter, App Runner doesn't enable the feature. /// /// /// Container for the necessary parameters to execute the CreateObservabilityConfiguration service method. /// /// The response from the CreateObservabilityConfiguration service method, as returned by AppRunner. /// /// An unexpected service exception occurred. /// /// /// One or more input parameters aren't valid. Refer to the API action's document page, /// correct the input parameters, and try the action again. /// /// /// App Runner can't create this resource. You've reached your account quota for this /// resource type. /// /// /// /// For App Runner per-resource quotas, see App /// Runner endpoints and quotas in the Amazon Web Services General Reference. /// /// /// REST API Reference for CreateObservabilityConfiguration Operation CreateObservabilityConfigurationResponse CreateObservabilityConfiguration(CreateObservabilityConfigurationRequest request); /// /// Initiates the asynchronous execution of the CreateObservabilityConfiguration operation. /// /// /// Container for the necessary parameters to execute the CreateObservabilityConfiguration operation on AmazonAppRunnerClient. /// 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 EndCreateObservabilityConfiguration /// operation. /// REST API Reference for CreateObservabilityConfiguration Operation IAsyncResult BeginCreateObservabilityConfiguration(CreateObservabilityConfigurationRequest request, AsyncCallback callback, object state); /// /// Finishes the asynchronous execution of the CreateObservabilityConfiguration operation. /// /// /// The IAsyncResult returned by the call to BeginCreateObservabilityConfiguration. /// /// Returns a CreateObservabilityConfigurationResult from AppRunner. /// REST API Reference for CreateObservabilityConfiguration Operation CreateObservabilityConfigurationResponse EndCreateObservabilityConfiguration(IAsyncResult asyncResult); #endregion #region CreateService /// /// Create an App Runner service. After the service is created, the action also automatically /// starts a deployment. /// /// /// /// This is an asynchronous operation. On a successful call, you can use the returned /// OperationId and the ListOperations /// call to track the operation's progress. /// /// /// Container for the necessary parameters to execute the CreateService service method. /// /// The response from the CreateService service method, as returned by AppRunner. /// /// An unexpected service exception occurred. /// /// /// One or more input parameters aren't valid. Refer to the API action's document page, /// correct the input parameters, and try the action again. /// /// /// App Runner can't create this resource. You've reached your account quota for this /// resource type. /// /// /// /// For App Runner per-resource quotas, see App /// Runner endpoints and quotas in the Amazon Web Services General Reference. /// /// /// REST API Reference for CreateService Operation CreateServiceResponse CreateService(CreateServiceRequest request); /// /// Initiates the asynchronous execution of the CreateService operation. /// /// /// Container for the necessary parameters to execute the CreateService operation on AmazonAppRunnerClient. /// 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 EndCreateService /// operation. /// REST API Reference for CreateService Operation IAsyncResult BeginCreateService(CreateServiceRequest request, AsyncCallback callback, object state); /// /// Finishes the asynchronous execution of the CreateService operation. /// /// /// The IAsyncResult returned by the call to BeginCreateService. /// /// Returns a CreateServiceResult from AppRunner. /// REST API Reference for CreateService Operation CreateServiceResponse EndCreateService(IAsyncResult asyncResult); #endregion #region CreateVpcConnector /// /// Create an App Runner VPC connector resource. App Runner requires this resource when /// you want to associate your App Runner service to a custom Amazon Virtual Private Cloud /// (Amazon VPC). /// /// Container for the necessary parameters to execute the CreateVpcConnector service method. /// /// The response from the CreateVpcConnector service method, as returned by AppRunner. /// /// An unexpected service exception occurred. /// /// /// One or more input parameters aren't valid. Refer to the API action's document page, /// correct the input parameters, and try the action again. /// /// /// App Runner can't create this resource. You've reached your account quota for this /// resource type. /// /// /// /// For App Runner per-resource quotas, see App /// Runner endpoints and quotas in the Amazon Web Services General Reference. /// /// /// REST API Reference for CreateVpcConnector Operation CreateVpcConnectorResponse CreateVpcConnector(CreateVpcConnectorRequest request); /// /// Initiates the asynchronous execution of the CreateVpcConnector operation. /// /// /// Container for the necessary parameters to execute the CreateVpcConnector operation on AmazonAppRunnerClient. /// 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 EndCreateVpcConnector /// operation. /// REST API Reference for CreateVpcConnector Operation IAsyncResult BeginCreateVpcConnector(CreateVpcConnectorRequest request, AsyncCallback callback, object state); /// /// Finishes the asynchronous execution of the CreateVpcConnector operation. /// /// /// The IAsyncResult returned by the call to BeginCreateVpcConnector. /// /// Returns a CreateVpcConnectorResult from AppRunner. /// REST API Reference for CreateVpcConnector Operation CreateVpcConnectorResponse EndCreateVpcConnector(IAsyncResult asyncResult); #endregion #region CreateVpcIngressConnection /// /// Create an App Runner VPC Ingress Connection resource. App Runner requires this resource /// when you want to associate your App Runner service with an Amazon VPC endpoint. /// /// Container for the necessary parameters to execute the CreateVpcIngressConnection service method. /// /// The response from the CreateVpcIngressConnection service method, as returned by AppRunner. /// /// An unexpected service exception occurred. /// /// /// One or more input parameters aren't valid. Refer to the API action's document page, /// correct the input parameters, and try the action again. /// /// /// You can't perform this action when the resource is in its current state. /// /// /// App Runner can't create this resource. You've reached your account quota for this /// resource type. /// /// /// /// For App Runner per-resource quotas, see App /// Runner endpoints and quotas in the Amazon Web Services General Reference. /// /// /// REST API Reference for CreateVpcIngressConnection Operation CreateVpcIngressConnectionResponse CreateVpcIngressConnection(CreateVpcIngressConnectionRequest request); /// /// Initiates the asynchronous execution of the CreateVpcIngressConnection operation. /// /// /// Container for the necessary parameters to execute the CreateVpcIngressConnection operation on AmazonAppRunnerClient. /// 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 EndCreateVpcIngressConnection /// operation. /// REST API Reference for CreateVpcIngressConnection Operation IAsyncResult BeginCreateVpcIngressConnection(CreateVpcIngressConnectionRequest request, AsyncCallback callback, object state); /// /// Finishes the asynchronous execution of the CreateVpcIngressConnection operation. /// /// /// The IAsyncResult returned by the call to BeginCreateVpcIngressConnection. /// /// Returns a CreateVpcIngressConnectionResult from AppRunner. /// REST API Reference for CreateVpcIngressConnection Operation CreateVpcIngressConnectionResponse EndCreateVpcIngressConnection(IAsyncResult asyncResult); #endregion #region DeleteAutoScalingConfiguration /// /// Delete an App Runner automatic scaling configuration resource. You can delete a specific /// revision or the latest active revision. You can't delete a configuration that's used /// by one or more App Runner services. /// /// Container for the necessary parameters to execute the DeleteAutoScalingConfiguration service method. /// /// The response from the DeleteAutoScalingConfiguration service method, as returned by AppRunner. /// /// An unexpected service exception occurred. /// /// /// One or more input parameters aren't valid. Refer to the API action's document page, /// correct the input parameters, and try the action again. /// /// /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// /// REST API Reference for DeleteAutoScalingConfiguration Operation DeleteAutoScalingConfigurationResponse DeleteAutoScalingConfiguration(DeleteAutoScalingConfigurationRequest request); /// /// Initiates the asynchronous execution of the DeleteAutoScalingConfiguration operation. /// /// /// Container for the necessary parameters to execute the DeleteAutoScalingConfiguration operation on AmazonAppRunnerClient. /// 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 EndDeleteAutoScalingConfiguration /// operation. /// REST API Reference for DeleteAutoScalingConfiguration Operation IAsyncResult BeginDeleteAutoScalingConfiguration(DeleteAutoScalingConfigurationRequest request, AsyncCallback callback, object state); /// /// Finishes the asynchronous execution of the DeleteAutoScalingConfiguration operation. /// /// /// The IAsyncResult returned by the call to BeginDeleteAutoScalingConfiguration. /// /// Returns a DeleteAutoScalingConfigurationResult from AppRunner. /// REST API Reference for DeleteAutoScalingConfiguration Operation DeleteAutoScalingConfigurationResponse EndDeleteAutoScalingConfiguration(IAsyncResult asyncResult); #endregion #region DeleteConnection /// /// Delete an App Runner connection. You must first ensure that there are no running App /// Runner services that use this connection. If there are any, the DeleteConnection /// action fails. /// /// Container for the necessary parameters to execute the DeleteConnection service method. /// /// The response from the DeleteConnection service method, as returned by AppRunner. /// /// An unexpected service exception occurred. /// /// /// One or more input parameters aren't valid. Refer to the API action's document page, /// correct the input parameters, and try the action again. /// /// /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// /// REST API Reference for DeleteConnection Operation DeleteConnectionResponse DeleteConnection(DeleteConnectionRequest request); /// /// Initiates the asynchronous execution of the DeleteConnection operation. /// /// /// Container for the necessary parameters to execute the DeleteConnection operation on AmazonAppRunnerClient. /// 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 EndDeleteConnection /// operation. /// REST API Reference for DeleteConnection Operation IAsyncResult BeginDeleteConnection(DeleteConnectionRequest request, AsyncCallback callback, object state); /// /// Finishes the asynchronous execution of the DeleteConnection operation. /// /// /// The IAsyncResult returned by the call to BeginDeleteConnection. /// /// Returns a DeleteConnectionResult from AppRunner. /// REST API Reference for DeleteConnection Operation DeleteConnectionResponse EndDeleteConnection(IAsyncResult asyncResult); #endregion #region DeleteObservabilityConfiguration /// /// Delete an App Runner observability configuration resource. You can delete a specific /// revision or the latest active revision. You can't delete a configuration that's used /// by one or more App Runner services. /// /// Container for the necessary parameters to execute the DeleteObservabilityConfiguration service method. /// /// The response from the DeleteObservabilityConfiguration service method, as returned by AppRunner. /// /// An unexpected service exception occurred. /// /// /// One or more input parameters aren't valid. Refer to the API action's document page, /// correct the input parameters, and try the action again. /// /// /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// /// REST API Reference for DeleteObservabilityConfiguration Operation DeleteObservabilityConfigurationResponse DeleteObservabilityConfiguration(DeleteObservabilityConfigurationRequest request); /// /// Initiates the asynchronous execution of the DeleteObservabilityConfiguration operation. /// /// /// Container for the necessary parameters to execute the DeleteObservabilityConfiguration operation on AmazonAppRunnerClient. /// 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 EndDeleteObservabilityConfiguration /// operation. /// REST API Reference for DeleteObservabilityConfiguration Operation IAsyncResult BeginDeleteObservabilityConfiguration(DeleteObservabilityConfigurationRequest request, AsyncCallback callback, object state); /// /// Finishes the asynchronous execution of the DeleteObservabilityConfiguration operation. /// /// /// The IAsyncResult returned by the call to BeginDeleteObservabilityConfiguration. /// /// Returns a DeleteObservabilityConfigurationResult from AppRunner. /// REST API Reference for DeleteObservabilityConfiguration Operation DeleteObservabilityConfigurationResponse EndDeleteObservabilityConfiguration(IAsyncResult asyncResult); #endregion #region DeleteService /// /// Delete an App Runner service. /// /// /// /// This is an asynchronous operation. On a successful call, you can use the returned /// OperationId and the ListOperations call to track the operation's /// progress. /// /// /// /// Make sure that you don't have any active VPCIngressConnections associated with the /// service you want to delete. /// /// /// /// Container for the necessary parameters to execute the DeleteService service method. /// /// The response from the DeleteService service method, as returned by AppRunner. /// /// An unexpected service exception occurred. /// /// /// One or more input parameters aren't valid. Refer to the API action's document page, /// correct the input parameters, and try the action again. /// /// /// You can't perform this action when the resource is in its current state. /// /// /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// /// REST API Reference for DeleteService Operation DeleteServiceResponse DeleteService(DeleteServiceRequest request); /// /// Initiates the asynchronous execution of the DeleteService operation. /// /// /// Container for the necessary parameters to execute the DeleteService operation on AmazonAppRunnerClient. /// 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 EndDeleteService /// operation. /// REST API Reference for DeleteService Operation IAsyncResult BeginDeleteService(DeleteServiceRequest request, AsyncCallback callback, object state); /// /// Finishes the asynchronous execution of the DeleteService operation. /// /// /// The IAsyncResult returned by the call to BeginDeleteService. /// /// Returns a DeleteServiceResult from AppRunner. /// REST API Reference for DeleteService Operation DeleteServiceResponse EndDeleteService(IAsyncResult asyncResult); #endregion #region DeleteVpcConnector /// /// Delete an App Runner VPC connector resource. You can't delete a connector that's used /// by one or more App Runner services. /// /// Container for the necessary parameters to execute the DeleteVpcConnector service method. /// /// The response from the DeleteVpcConnector service method, as returned by AppRunner. /// /// An unexpected service exception occurred. /// /// /// One or more input parameters aren't valid. Refer to the API action's document page, /// correct the input parameters, and try the action again. /// /// /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// /// REST API Reference for DeleteVpcConnector Operation DeleteVpcConnectorResponse DeleteVpcConnector(DeleteVpcConnectorRequest request); /// /// Initiates the asynchronous execution of the DeleteVpcConnector operation. /// /// /// Container for the necessary parameters to execute the DeleteVpcConnector operation on AmazonAppRunnerClient. /// 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 EndDeleteVpcConnector /// operation. /// REST API Reference for DeleteVpcConnector Operation IAsyncResult BeginDeleteVpcConnector(DeleteVpcConnectorRequest request, AsyncCallback callback, object state); /// /// Finishes the asynchronous execution of the DeleteVpcConnector operation. /// /// /// The IAsyncResult returned by the call to BeginDeleteVpcConnector. /// /// Returns a DeleteVpcConnectorResult from AppRunner. /// REST API Reference for DeleteVpcConnector Operation DeleteVpcConnectorResponse EndDeleteVpcConnector(IAsyncResult asyncResult); #endregion #region DeleteVpcIngressConnection /// /// Delete an App Runner VPC Ingress Connection resource that's associated with an App /// Runner service. The VPC Ingress Connection must be in one of the following states /// to be deleted: /// /// /// /// Container for the necessary parameters to execute the DeleteVpcIngressConnection service method. /// /// The response from the DeleteVpcIngressConnection service method, as returned by AppRunner. /// /// An unexpected service exception occurred. /// /// /// One or more input parameters aren't valid. Refer to the API action's document page, /// correct the input parameters, and try the action again. /// /// /// You can't perform this action when the resource is in its current state. /// /// /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// /// REST API Reference for DeleteVpcIngressConnection Operation DeleteVpcIngressConnectionResponse DeleteVpcIngressConnection(DeleteVpcIngressConnectionRequest request); /// /// Initiates the asynchronous execution of the DeleteVpcIngressConnection operation. /// /// /// Container for the necessary parameters to execute the DeleteVpcIngressConnection operation on AmazonAppRunnerClient. /// 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 EndDeleteVpcIngressConnection /// operation. /// REST API Reference for DeleteVpcIngressConnection Operation IAsyncResult BeginDeleteVpcIngressConnection(DeleteVpcIngressConnectionRequest request, AsyncCallback callback, object state); /// /// Finishes the asynchronous execution of the DeleteVpcIngressConnection operation. /// /// /// The IAsyncResult returned by the call to BeginDeleteVpcIngressConnection. /// /// Returns a DeleteVpcIngressConnectionResult from AppRunner. /// REST API Reference for DeleteVpcIngressConnection Operation DeleteVpcIngressConnectionResponse EndDeleteVpcIngressConnection(IAsyncResult asyncResult); #endregion #region DescribeAutoScalingConfiguration /// /// Return a full description of an App Runner automatic scaling configuration resource. /// /// Container for the necessary parameters to execute the DescribeAutoScalingConfiguration service method. /// /// The response from the DescribeAutoScalingConfiguration service method, as returned by AppRunner. /// /// An unexpected service exception occurred. /// /// /// One or more input parameters aren't valid. Refer to the API action's document page, /// correct the input parameters, and try the action again. /// /// /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// /// REST API Reference for DescribeAutoScalingConfiguration Operation DescribeAutoScalingConfigurationResponse DescribeAutoScalingConfiguration(DescribeAutoScalingConfigurationRequest request); /// /// Initiates the asynchronous execution of the DescribeAutoScalingConfiguration operation. /// /// /// Container for the necessary parameters to execute the DescribeAutoScalingConfiguration operation on AmazonAppRunnerClient. /// 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 EndDescribeAutoScalingConfiguration /// operation. /// REST API Reference for DescribeAutoScalingConfiguration Operation IAsyncResult BeginDescribeAutoScalingConfiguration(DescribeAutoScalingConfigurationRequest request, AsyncCallback callback, object state); /// /// Finishes the asynchronous execution of the DescribeAutoScalingConfiguration operation. /// /// /// The IAsyncResult returned by the call to BeginDescribeAutoScalingConfiguration. /// /// Returns a DescribeAutoScalingConfigurationResult from AppRunner. /// REST API Reference for DescribeAutoScalingConfiguration Operation DescribeAutoScalingConfigurationResponse EndDescribeAutoScalingConfiguration(IAsyncResult asyncResult); #endregion #region DescribeCustomDomains /// /// Return a description of custom domain names that are associated with an App Runner /// service. /// /// Container for the necessary parameters to execute the DescribeCustomDomains service method. /// /// The response from the DescribeCustomDomains service method, as returned by AppRunner. /// /// An unexpected service exception occurred. /// /// /// One or more input parameters aren't valid. Refer to the API action's document page, /// correct the input parameters, and try the action again. /// /// /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// /// REST API Reference for DescribeCustomDomains Operation DescribeCustomDomainsResponse DescribeCustomDomains(DescribeCustomDomainsRequest request); /// /// Initiates the asynchronous execution of the DescribeCustomDomains operation. /// /// /// Container for the necessary parameters to execute the DescribeCustomDomains operation on AmazonAppRunnerClient. /// 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 EndDescribeCustomDomains /// operation. /// REST API Reference for DescribeCustomDomains Operation IAsyncResult BeginDescribeCustomDomains(DescribeCustomDomainsRequest request, AsyncCallback callback, object state); /// /// Finishes the asynchronous execution of the DescribeCustomDomains operation. /// /// /// The IAsyncResult returned by the call to BeginDescribeCustomDomains. /// /// Returns a DescribeCustomDomainsResult from AppRunner. /// REST API Reference for DescribeCustomDomains Operation DescribeCustomDomainsResponse EndDescribeCustomDomains(IAsyncResult asyncResult); #endregion #region DescribeObservabilityConfiguration /// /// Return a full description of an App Runner observability configuration resource. /// /// Container for the necessary parameters to execute the DescribeObservabilityConfiguration service method. /// /// The response from the DescribeObservabilityConfiguration service method, as returned by AppRunner. /// /// An unexpected service exception occurred. /// /// /// One or more input parameters aren't valid. Refer to the API action's document page, /// correct the input parameters, and try the action again. /// /// /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// /// REST API Reference for DescribeObservabilityConfiguration Operation DescribeObservabilityConfigurationResponse DescribeObservabilityConfiguration(DescribeObservabilityConfigurationRequest request); /// /// Initiates the asynchronous execution of the DescribeObservabilityConfiguration operation. /// /// /// Container for the necessary parameters to execute the DescribeObservabilityConfiguration operation on AmazonAppRunnerClient. /// 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 EndDescribeObservabilityConfiguration /// operation. /// REST API Reference for DescribeObservabilityConfiguration Operation IAsyncResult BeginDescribeObservabilityConfiguration(DescribeObservabilityConfigurationRequest request, AsyncCallback callback, object state); /// /// Finishes the asynchronous execution of the DescribeObservabilityConfiguration operation. /// /// /// The IAsyncResult returned by the call to BeginDescribeObservabilityConfiguration. /// /// Returns a DescribeObservabilityConfigurationResult from AppRunner. /// REST API Reference for DescribeObservabilityConfiguration Operation DescribeObservabilityConfigurationResponse EndDescribeObservabilityConfiguration(IAsyncResult asyncResult); #endregion #region DescribeService /// /// Return a full description of an App Runner service. /// /// Container for the necessary parameters to execute the DescribeService service method. /// /// The response from the DescribeService service method, as returned by AppRunner. /// /// An unexpected service exception occurred. /// /// /// One or more input parameters aren't valid. Refer to the API action's document page, /// correct the input parameters, and try the action again. /// /// /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// /// REST API Reference for DescribeService Operation DescribeServiceResponse DescribeService(DescribeServiceRequest request); /// /// Initiates the asynchronous execution of the DescribeService operation. /// /// /// Container for the necessary parameters to execute the DescribeService operation on AmazonAppRunnerClient. /// 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 EndDescribeService /// operation. /// REST API Reference for DescribeService Operation IAsyncResult BeginDescribeService(DescribeServiceRequest request, AsyncCallback callback, object state); /// /// Finishes the asynchronous execution of the DescribeService operation. /// /// /// The IAsyncResult returned by the call to BeginDescribeService. /// /// Returns a DescribeServiceResult from AppRunner. /// REST API Reference for DescribeService Operation DescribeServiceResponse EndDescribeService(IAsyncResult asyncResult); #endregion #region DescribeVpcConnector /// /// Return a description of an App Runner VPC connector resource. /// /// Container for the necessary parameters to execute the DescribeVpcConnector service method. /// /// The response from the DescribeVpcConnector service method, as returned by AppRunner. /// /// An unexpected service exception occurred. /// /// /// One or more input parameters aren't valid. Refer to the API action's document page, /// correct the input parameters, and try the action again. /// /// /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// /// REST API Reference for DescribeVpcConnector Operation DescribeVpcConnectorResponse DescribeVpcConnector(DescribeVpcConnectorRequest request); /// /// Initiates the asynchronous execution of the DescribeVpcConnector operation. /// /// /// Container for the necessary parameters to execute the DescribeVpcConnector operation on AmazonAppRunnerClient. /// 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 EndDescribeVpcConnector /// operation. /// REST API Reference for DescribeVpcConnector Operation IAsyncResult BeginDescribeVpcConnector(DescribeVpcConnectorRequest request, AsyncCallback callback, object state); /// /// Finishes the asynchronous execution of the DescribeVpcConnector operation. /// /// /// The IAsyncResult returned by the call to BeginDescribeVpcConnector. /// /// Returns a DescribeVpcConnectorResult from AppRunner. /// REST API Reference for DescribeVpcConnector Operation DescribeVpcConnectorResponse EndDescribeVpcConnector(IAsyncResult asyncResult); #endregion #region DescribeVpcIngressConnection /// /// Return a full description of an App Runner VPC Ingress Connection resource. /// /// Container for the necessary parameters to execute the DescribeVpcIngressConnection service method. /// /// The response from the DescribeVpcIngressConnection service method, as returned by AppRunner. /// /// An unexpected service exception occurred. /// /// /// One or more input parameters aren't valid. Refer to the API action's document page, /// correct the input parameters, and try the action again. /// /// /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// /// REST API Reference for DescribeVpcIngressConnection Operation DescribeVpcIngressConnectionResponse DescribeVpcIngressConnection(DescribeVpcIngressConnectionRequest request); /// /// Initiates the asynchronous execution of the DescribeVpcIngressConnection operation. /// /// /// Container for the necessary parameters to execute the DescribeVpcIngressConnection operation on AmazonAppRunnerClient. /// 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 EndDescribeVpcIngressConnection /// operation. /// REST API Reference for DescribeVpcIngressConnection Operation IAsyncResult BeginDescribeVpcIngressConnection(DescribeVpcIngressConnectionRequest request, AsyncCallback callback, object state); /// /// Finishes the asynchronous execution of the DescribeVpcIngressConnection operation. /// /// /// The IAsyncResult returned by the call to BeginDescribeVpcIngressConnection. /// /// Returns a DescribeVpcIngressConnectionResult from AppRunner. /// REST API Reference for DescribeVpcIngressConnection Operation DescribeVpcIngressConnectionResponse EndDescribeVpcIngressConnection(IAsyncResult asyncResult); #endregion #region DisassociateCustomDomain /// /// Disassociate a custom domain name from an App Runner service. /// /// /// /// Certificates tracking domain validity are associated with a custom domain and are /// stored in AWS Certificate /// Manager (ACM). These certificates aren't deleted as part of this action. App Runner /// delays certificate deletion for 30 days after a domain is disassociated from your /// service. /// /// /// Container for the necessary parameters to execute the DisassociateCustomDomain service method. /// /// The response from the DisassociateCustomDomain service method, as returned by AppRunner. /// /// An unexpected service exception occurred. /// /// /// One or more input parameters aren't valid. Refer to the API action's document page, /// correct the input parameters, and try the action again. /// /// /// You can't perform this action when the resource is in its current state. /// /// /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// /// REST API Reference for DisassociateCustomDomain Operation DisassociateCustomDomainResponse DisassociateCustomDomain(DisassociateCustomDomainRequest request); /// /// Initiates the asynchronous execution of the DisassociateCustomDomain operation. /// /// /// Container for the necessary parameters to execute the DisassociateCustomDomain operation on AmazonAppRunnerClient. /// 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 EndDisassociateCustomDomain /// operation. /// REST API Reference for DisassociateCustomDomain Operation IAsyncResult BeginDisassociateCustomDomain(DisassociateCustomDomainRequest request, AsyncCallback callback, object state); /// /// Finishes the asynchronous execution of the DisassociateCustomDomain operation. /// /// /// The IAsyncResult returned by the call to BeginDisassociateCustomDomain. /// /// Returns a DisassociateCustomDomainResult from AppRunner. /// REST API Reference for DisassociateCustomDomain Operation DisassociateCustomDomainResponse EndDisassociateCustomDomain(IAsyncResult asyncResult); #endregion #region ListAutoScalingConfigurations /// /// Returns a list of active App Runner automatic scaling configurations in your Amazon /// Web Services account. You can query the revisions for a specific configuration name /// or the revisions for all active configurations in your account. You can optionally /// query only the latest revision of each requested name. /// /// /// /// To retrieve a full description of a particular configuration revision, call and provide /// one of the ARNs returned by ListAutoScalingConfigurations. /// /// /// Container for the necessary parameters to execute the ListAutoScalingConfigurations service method. /// /// The response from the ListAutoScalingConfigurations service method, as returned by AppRunner. /// /// An unexpected service exception occurred. /// /// /// One or more input parameters aren't valid. Refer to the API action's document page, /// correct the input parameters, and try the action again. /// /// REST API Reference for ListAutoScalingConfigurations Operation ListAutoScalingConfigurationsResponse ListAutoScalingConfigurations(ListAutoScalingConfigurationsRequest request); /// /// Initiates the asynchronous execution of the ListAutoScalingConfigurations operation. /// /// /// Container for the necessary parameters to execute the ListAutoScalingConfigurations operation on AmazonAppRunnerClient. /// 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 EndListAutoScalingConfigurations /// operation. /// REST API Reference for ListAutoScalingConfigurations Operation IAsyncResult BeginListAutoScalingConfigurations(ListAutoScalingConfigurationsRequest request, AsyncCallback callback, object state); /// /// Finishes the asynchronous execution of the ListAutoScalingConfigurations operation. /// /// /// The IAsyncResult returned by the call to BeginListAutoScalingConfigurations. /// /// Returns a ListAutoScalingConfigurationsResult from AppRunner. /// REST API Reference for ListAutoScalingConfigurations Operation ListAutoScalingConfigurationsResponse EndListAutoScalingConfigurations(IAsyncResult asyncResult); #endregion #region ListConnections /// /// Returns a list of App Runner connections that are associated with your Amazon Web /// Services account. /// /// Container for the necessary parameters to execute the ListConnections service method. /// /// The response from the ListConnections service method, as returned by AppRunner. /// /// An unexpected service exception occurred. /// /// /// One or more input parameters aren't valid. Refer to the API action's document page, /// correct the input parameters, and try the action again. /// /// REST API Reference for ListConnections Operation ListConnectionsResponse ListConnections(ListConnectionsRequest request); /// /// Initiates the asynchronous execution of the ListConnections operation. /// /// /// Container for the necessary parameters to execute the ListConnections operation on AmazonAppRunnerClient. /// 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 EndListConnections /// operation. /// REST API Reference for ListConnections Operation IAsyncResult BeginListConnections(ListConnectionsRequest request, AsyncCallback callback, object state); /// /// Finishes the asynchronous execution of the ListConnections operation. /// /// /// The IAsyncResult returned by the call to BeginListConnections. /// /// Returns a ListConnectionsResult from AppRunner. /// REST API Reference for ListConnections Operation ListConnectionsResponse EndListConnections(IAsyncResult asyncResult); #endregion #region ListObservabilityConfigurations /// /// Returns a list of active App Runner observability configurations in your Amazon Web /// Services account. You can query the revisions for a specific configuration name or /// the revisions for all active configurations in your account. You can optionally query /// only the latest revision of each requested name. /// /// /// /// To retrieve a full description of a particular configuration revision, call and provide /// one of the ARNs returned by ListObservabilityConfigurations. /// /// /// Container for the necessary parameters to execute the ListObservabilityConfigurations service method. /// /// The response from the ListObservabilityConfigurations service method, as returned by AppRunner. /// /// An unexpected service exception occurred. /// /// /// One or more input parameters aren't valid. Refer to the API action's document page, /// correct the input parameters, and try the action again. /// /// REST API Reference for ListObservabilityConfigurations Operation ListObservabilityConfigurationsResponse ListObservabilityConfigurations(ListObservabilityConfigurationsRequest request); /// /// Initiates the asynchronous execution of the ListObservabilityConfigurations operation. /// /// /// Container for the necessary parameters to execute the ListObservabilityConfigurations operation on AmazonAppRunnerClient. /// 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 EndListObservabilityConfigurations /// operation. /// REST API Reference for ListObservabilityConfigurations Operation IAsyncResult BeginListObservabilityConfigurations(ListObservabilityConfigurationsRequest request, AsyncCallback callback, object state); /// /// Finishes the asynchronous execution of the ListObservabilityConfigurations operation. /// /// /// The IAsyncResult returned by the call to BeginListObservabilityConfigurations. /// /// Returns a ListObservabilityConfigurationsResult from AppRunner. /// REST API Reference for ListObservabilityConfigurations Operation ListObservabilityConfigurationsResponse EndListObservabilityConfigurations(IAsyncResult asyncResult); #endregion #region ListOperations /// /// Return a list of operations that occurred on an App Runner service. /// /// /// /// The resulting list of OperationSummary objects is sorted in reverse chronological /// order. The first object on the list represents the last started operation. /// /// /// Container for the necessary parameters to execute the ListOperations service method. /// /// The response from the ListOperations service method, as returned by AppRunner. /// /// An unexpected service exception occurred. /// /// /// One or more input parameters aren't valid. Refer to the API action's document page, /// correct the input parameters, and try the action again. /// /// /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// /// REST API Reference for ListOperations Operation ListOperationsResponse ListOperations(ListOperationsRequest request); /// /// Initiates the asynchronous execution of the ListOperations operation. /// /// /// Container for the necessary parameters to execute the ListOperations operation on AmazonAppRunnerClient. /// 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 EndListOperations /// operation. /// REST API Reference for ListOperations Operation IAsyncResult BeginListOperations(ListOperationsRequest request, AsyncCallback callback, object state); /// /// Finishes the asynchronous execution of the ListOperations operation. /// /// /// The IAsyncResult returned by the call to BeginListOperations. /// /// Returns a ListOperationsResult from AppRunner. /// REST API Reference for ListOperations Operation ListOperationsResponse EndListOperations(IAsyncResult asyncResult); #endregion #region ListServices /// /// Returns a list of running App Runner services in your Amazon Web Services account. /// /// Container for the necessary parameters to execute the ListServices service method. /// /// The response from the ListServices service method, as returned by AppRunner. /// /// An unexpected service exception occurred. /// /// /// One or more input parameters aren't valid. Refer to the API action's document page, /// correct the input parameters, and try the action again. /// /// REST API Reference for ListServices Operation ListServicesResponse ListServices(ListServicesRequest request); /// /// Initiates the asynchronous execution of the ListServices operation. /// /// /// Container for the necessary parameters to execute the ListServices operation on AmazonAppRunnerClient. /// 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 EndListServices /// operation. /// REST API Reference for ListServices Operation IAsyncResult BeginListServices(ListServicesRequest request, AsyncCallback callback, object state); /// /// Finishes the asynchronous execution of the ListServices operation. /// /// /// The IAsyncResult returned by the call to BeginListServices. /// /// Returns a ListServicesResult from AppRunner. /// REST API Reference for ListServices Operation ListServicesResponse EndListServices(IAsyncResult asyncResult); #endregion #region ListTagsForResource /// /// List tags that are associated with for an App Runner resource. The response contains /// a list of tag key-value pairs. /// /// Container for the necessary parameters to execute the ListTagsForResource service method. /// /// The response from the ListTagsForResource service method, as returned by AppRunner. /// /// An unexpected service exception occurred. /// /// /// One or more input parameters aren't valid. Refer to the API action's document page, /// correct the input parameters, and try the action again. /// /// /// You can't perform this action when the resource is in its current state. /// /// /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// /// 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 AmazonAppRunnerClient. /// 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 AppRunner. /// REST API Reference for ListTagsForResource Operation ListTagsForResourceResponse EndListTagsForResource(IAsyncResult asyncResult); #endregion #region ListVpcConnectors /// /// Returns a list of App Runner VPC connectors in your Amazon Web Services account. /// /// Container for the necessary parameters to execute the ListVpcConnectors service method. /// /// The response from the ListVpcConnectors service method, as returned by AppRunner. /// /// An unexpected service exception occurred. /// /// /// One or more input parameters aren't valid. Refer to the API action's document page, /// correct the input parameters, and try the action again. /// /// REST API Reference for ListVpcConnectors Operation ListVpcConnectorsResponse ListVpcConnectors(ListVpcConnectorsRequest request); /// /// Initiates the asynchronous execution of the ListVpcConnectors operation. /// /// /// Container for the necessary parameters to execute the ListVpcConnectors operation on AmazonAppRunnerClient. /// 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 EndListVpcConnectors /// operation. /// REST API Reference for ListVpcConnectors Operation IAsyncResult BeginListVpcConnectors(ListVpcConnectorsRequest request, AsyncCallback callback, object state); /// /// Finishes the asynchronous execution of the ListVpcConnectors operation. /// /// /// The IAsyncResult returned by the call to BeginListVpcConnectors. /// /// Returns a ListVpcConnectorsResult from AppRunner. /// REST API Reference for ListVpcConnectors Operation ListVpcConnectorsResponse EndListVpcConnectors(IAsyncResult asyncResult); #endregion #region ListVpcIngressConnections /// /// Return a list of App Runner VPC Ingress Connections in your Amazon Web Services account. /// /// Container for the necessary parameters to execute the ListVpcIngressConnections service method. /// /// The response from the ListVpcIngressConnections service method, as returned by AppRunner. /// /// An unexpected service exception occurred. /// /// /// One or more input parameters aren't valid. Refer to the API action's document page, /// correct the input parameters, and try the action again. /// /// REST API Reference for ListVpcIngressConnections Operation ListVpcIngressConnectionsResponse ListVpcIngressConnections(ListVpcIngressConnectionsRequest request); /// /// Initiates the asynchronous execution of the ListVpcIngressConnections operation. /// /// /// Container for the necessary parameters to execute the ListVpcIngressConnections operation on AmazonAppRunnerClient. /// 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 EndListVpcIngressConnections /// operation. /// REST API Reference for ListVpcIngressConnections Operation IAsyncResult BeginListVpcIngressConnections(ListVpcIngressConnectionsRequest request, AsyncCallback callback, object state); /// /// Finishes the asynchronous execution of the ListVpcIngressConnections operation. /// /// /// The IAsyncResult returned by the call to BeginListVpcIngressConnections. /// /// Returns a ListVpcIngressConnectionsResult from AppRunner. /// REST API Reference for ListVpcIngressConnections Operation ListVpcIngressConnectionsResponse EndListVpcIngressConnections(IAsyncResult asyncResult); #endregion #region PauseService /// /// Pause an active App Runner service. App Runner reduces compute capacity for the service /// to zero and loses state (for example, ephemeral storage is removed). /// /// /// /// This is an asynchronous operation. On a successful call, you can use the returned /// OperationId and the ListOperations call to track the operation's /// progress. /// /// /// Container for the necessary parameters to execute the PauseService service method. /// /// The response from the PauseService service method, as returned by AppRunner. /// /// An unexpected service exception occurred. /// /// /// One or more input parameters aren't valid. Refer to the API action's document page, /// correct the input parameters, and try the action again. /// /// /// You can't perform this action when the resource is in its current state. /// /// /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// /// REST API Reference for PauseService Operation PauseServiceResponse PauseService(PauseServiceRequest request); /// /// Initiates the asynchronous execution of the PauseService operation. /// /// /// Container for the necessary parameters to execute the PauseService operation on AmazonAppRunnerClient. /// 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 EndPauseService /// operation. /// REST API Reference for PauseService Operation IAsyncResult BeginPauseService(PauseServiceRequest request, AsyncCallback callback, object state); /// /// Finishes the asynchronous execution of the PauseService operation. /// /// /// The IAsyncResult returned by the call to BeginPauseService. /// /// Returns a PauseServiceResult from AppRunner. /// REST API Reference for PauseService Operation PauseServiceResponse EndPauseService(IAsyncResult asyncResult); #endregion #region ResumeService /// /// Resume an active App Runner service. App Runner provisions compute capacity for the /// service. /// /// /// /// This is an asynchronous operation. On a successful call, you can use the returned /// OperationId and the ListOperations call to track the operation's /// progress. /// /// /// Container for the necessary parameters to execute the ResumeService service method. /// /// The response from the ResumeService service method, as returned by AppRunner. /// /// An unexpected service exception occurred. /// /// /// One or more input parameters aren't valid. Refer to the API action's document page, /// correct the input parameters, and try the action again. /// /// /// You can't perform this action when the resource is in its current state. /// /// /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// /// REST API Reference for ResumeService Operation ResumeServiceResponse ResumeService(ResumeServiceRequest request); /// /// Initiates the asynchronous execution of the ResumeService operation. /// /// /// Container for the necessary parameters to execute the ResumeService operation on AmazonAppRunnerClient. /// 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 EndResumeService /// operation. /// REST API Reference for ResumeService Operation IAsyncResult BeginResumeService(ResumeServiceRequest request, AsyncCallback callback, object state); /// /// Finishes the asynchronous execution of the ResumeService operation. /// /// /// The IAsyncResult returned by the call to BeginResumeService. /// /// Returns a ResumeServiceResult from AppRunner. /// REST API Reference for ResumeService Operation ResumeServiceResponse EndResumeService(IAsyncResult asyncResult); #endregion #region StartDeployment /// /// Initiate a manual deployment of the latest commit in a source code repository or the /// latest image in a source image repository to an App Runner service. /// /// /// /// For a source code repository, App Runner retrieves the commit and builds a Docker /// image. For a source image repository, App Runner retrieves the latest Docker image. /// In both cases, App Runner then deploys the new image to your service and starts a /// new container instance. /// /// /// /// This is an asynchronous operation. On a successful call, you can use the returned /// OperationId and the ListOperations call to track the operation's /// progress. /// /// /// Container for the necessary parameters to execute the StartDeployment service method. /// /// The response from the StartDeployment service method, as returned by AppRunner. /// /// An unexpected service exception occurred. /// /// /// One or more input parameters aren't valid. Refer to the API action's document page, /// correct the input parameters, and try the action again. /// /// /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// /// REST API Reference for StartDeployment Operation StartDeploymentResponse StartDeployment(StartDeploymentRequest request); /// /// Initiates the asynchronous execution of the StartDeployment operation. /// /// /// Container for the necessary parameters to execute the StartDeployment operation on AmazonAppRunnerClient. /// 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 EndStartDeployment /// operation. /// REST API Reference for StartDeployment Operation IAsyncResult BeginStartDeployment(StartDeploymentRequest request, AsyncCallback callback, object state); /// /// Finishes the asynchronous execution of the StartDeployment operation. /// /// /// The IAsyncResult returned by the call to BeginStartDeployment. /// /// Returns a StartDeploymentResult from AppRunner. /// REST API Reference for StartDeployment Operation StartDeploymentResponse EndStartDeployment(IAsyncResult asyncResult); #endregion #region TagResource /// /// Add tags to, or update the tag values of, an App Runner resource. A tag is a key-value /// pair. /// /// Container for the necessary parameters to execute the TagResource service method. /// /// The response from the TagResource service method, as returned by AppRunner. /// /// An unexpected service exception occurred. /// /// /// One or more input parameters aren't valid. Refer to the API action's document page, /// correct the input parameters, and try the action again. /// /// /// You can't perform this action when the resource is in its current state. /// /// /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// /// 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 AmazonAppRunnerClient. /// 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 AppRunner. /// REST API Reference for TagResource Operation TagResourceResponse EndTagResource(IAsyncResult asyncResult); #endregion #region UntagResource /// /// Remove tags from an App Runner resource. /// /// Container for the necessary parameters to execute the UntagResource service method. /// /// The response from the UntagResource service method, as returned by AppRunner. /// /// An unexpected service exception occurred. /// /// /// One or more input parameters aren't valid. Refer to the API action's document page, /// correct the input parameters, and try the action again. /// /// /// You can't perform this action when the resource is in its current state. /// /// /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// /// 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 AmazonAppRunnerClient. /// 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 AppRunner. /// REST API Reference for UntagResource Operation UntagResourceResponse EndUntagResource(IAsyncResult asyncResult); #endregion #region UpdateService /// /// Update an App Runner service. You can update the source configuration and instance /// configuration of the service. You can also update the ARN of the auto scaling configuration /// resource that's associated with the service. However, you can't change the name or /// the encryption configuration of the service. These can be set only when you create /// the service. /// /// /// /// To update the tags applied to your service, use the separate actions TagResource /// and UntagResource. /// /// /// /// This is an asynchronous operation. On a successful call, you can use the returned /// OperationId and the ListOperations call to track the operation's /// progress. /// /// /// Container for the necessary parameters to execute the UpdateService service method. /// /// The response from the UpdateService service method, as returned by AppRunner. /// /// An unexpected service exception occurred. /// /// /// One or more input parameters aren't valid. Refer to the API action's document page, /// correct the input parameters, and try the action again. /// /// /// You can't perform this action when the resource is in its current state. /// /// /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// /// REST API Reference for UpdateService Operation UpdateServiceResponse UpdateService(UpdateServiceRequest request); /// /// Initiates the asynchronous execution of the UpdateService operation. /// /// /// Container for the necessary parameters to execute the UpdateService operation on AmazonAppRunnerClient. /// 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 EndUpdateService /// operation. /// REST API Reference for UpdateService Operation IAsyncResult BeginUpdateService(UpdateServiceRequest request, AsyncCallback callback, object state); /// /// Finishes the asynchronous execution of the UpdateService operation. /// /// /// The IAsyncResult returned by the call to BeginUpdateService. /// /// Returns a UpdateServiceResult from AppRunner. /// REST API Reference for UpdateService Operation UpdateServiceResponse EndUpdateService(IAsyncResult asyncResult); #endregion #region UpdateVpcIngressConnection /// /// Update an existing App Runner VPC Ingress Connection resource. The VPC Ingress Connection /// must be in one of the following states to be updated: /// /// /// /// Container for the necessary parameters to execute the UpdateVpcIngressConnection service method. /// /// The response from the UpdateVpcIngressConnection service method, as returned by AppRunner. /// /// An unexpected service exception occurred. /// /// /// One or more input parameters aren't valid. Refer to the API action's document page, /// correct the input parameters, and try the action again. /// /// /// You can't perform this action when the resource is in its current state. /// /// /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// /// REST API Reference for UpdateVpcIngressConnection Operation UpdateVpcIngressConnectionResponse UpdateVpcIngressConnection(UpdateVpcIngressConnectionRequest request); /// /// Initiates the asynchronous execution of the UpdateVpcIngressConnection operation. /// /// /// Container for the necessary parameters to execute the UpdateVpcIngressConnection operation on AmazonAppRunnerClient. /// 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 EndUpdateVpcIngressConnection /// operation. /// REST API Reference for UpdateVpcIngressConnection Operation IAsyncResult BeginUpdateVpcIngressConnection(UpdateVpcIngressConnectionRequest request, AsyncCallback callback, object state); /// /// Finishes the asynchronous execution of the UpdateVpcIngressConnection operation. /// /// /// The IAsyncResult returned by the call to BeginUpdateVpcIngressConnection. /// /// Returns a UpdateVpcIngressConnectionResult from AppRunner. /// REST API Reference for UpdateVpcIngressConnection Operation UpdateVpcIngressConnectionResponse EndUpdateVpcIngressConnection(IAsyncResult asyncResult); #endregion } }