repo_name
stringlengths
1
52
repo_creator
stringclasses
6 values
programming_language
stringclasses
4 values
code
stringlengths
0
9.68M
num_lines
int64
1
234k
aws-sdk-net
aws
C#
/* * 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.Threading; using System.Threading.Tasks; using System.Collections.Generic; using Amazon.Runtime; using Amazon.AppRunner.Model; namespace Amazon.AppRunner { /// <summary> /// Interface for accessing AppRunner /// /// App Runner /// <para> /// 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. /// </para> /// /// <para> /// 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. /// </para> /// /// <para> /// For more information about App Runner, see the <a href="https://docs.aws.amazon.com/apprunner/latest/dg/">App /// Runner Developer Guide</a>. For release information, see the <a href="https://docs.aws.amazon.com/apprunner/latest/relnotes/">App /// Runner Release Notes</a>. /// </para> /// /// <para> /// 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 <a /// href="http://aws.amazon.com/tools/">Tools for Amazon Web Services</a>. /// </para> /// /// <para> /// <b>Endpoints</b> /// </para> /// /// <para> /// For a list of Region-specific endpoints that App Runner supports, see <a href="https://docs.aws.amazon.com/general/latest/gr/apprunner.html">App /// Runner endpoints and quotas</a> in the <i>Amazon Web Services General Reference</i>. /// </para> /// </summary> public partial interface IAmazonAppRunner : IAmazonService, IDisposable { /// <summary> /// Paginators for the service /// </summary> IAppRunnerPaginatorFactory Paginators { get; } #region AssociateCustomDomain /// <summary> /// Associate your own domain name with the App Runner subdomain URL of your App Runner /// service. /// /// /// <para> /// After you call <code>AssociateCustomDomain</code> and receive a successful response, /// use the information in the <a>CustomDomain</a> 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 <a href="https://docs.aws.amazon.com/acm/latest/userguide">AWS Certificate Manager /// (ACM)</a>. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the AssociateCustomDomain service method.</param> /// /// <returns>The response from the AssociateCustomDomain service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidStateException"> /// You can't perform this action when the resource is in its current state. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/AssociateCustomDomain">REST API Reference for AssociateCustomDomain Operation</seealso> AssociateCustomDomainResponse AssociateCustomDomain(AssociateCustomDomainRequest request); /// <summary> /// Associate your own domain name with the App Runner subdomain URL of your App Runner /// service. /// /// /// <para> /// After you call <code>AssociateCustomDomain</code> and receive a successful response, /// use the information in the <a>CustomDomain</a> 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 <a href="https://docs.aws.amazon.com/acm/latest/userguide">AWS Certificate Manager /// (ACM)</a>. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the AssociateCustomDomain service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the AssociateCustomDomain service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidStateException"> /// You can't perform this action when the resource is in its current state. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/AssociateCustomDomain">REST API Reference for AssociateCustomDomain Operation</seealso> Task<AssociateCustomDomainResponse> AssociateCustomDomainAsync(AssociateCustomDomainRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region CreateAutoScalingConfiguration /// <summary> /// 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. /// /// /// <para> /// Create multiple revisions of a configuration by calling this action multiple times /// using the same <code>AutoScalingConfigurationName</code>. The call returns incremental /// <code>AutoScalingConfigurationRevision</code> 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. /// </para> /// /// <para> /// Configure a higher <code>MinSize</code> 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. /// </para> /// /// <para> /// Configure a lower <code>MaxSize</code> to control your cost. The tradeoff is lower /// responsiveness during peak demand. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the CreateAutoScalingConfiguration service method.</param> /// /// <returns>The response from the CreateAutoScalingConfiguration service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ServiceQuotaExceededException"> /// App Runner can't create this resource. You've reached your account quota for this /// resource type. /// /// /// <para> /// For App Runner per-resource quotas, see <a href="https://docs.aws.amazon.com/general/latest/gr/apprunner.html">App /// Runner endpoints and quotas</a> in the <i>Amazon Web Services General Reference</i>. /// </para> /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/CreateAutoScalingConfiguration">REST API Reference for CreateAutoScalingConfiguration Operation</seealso> CreateAutoScalingConfigurationResponse CreateAutoScalingConfiguration(CreateAutoScalingConfigurationRequest request); /// <summary> /// 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. /// /// /// <para> /// Create multiple revisions of a configuration by calling this action multiple times /// using the same <code>AutoScalingConfigurationName</code>. The call returns incremental /// <code>AutoScalingConfigurationRevision</code> 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. /// </para> /// /// <para> /// Configure a higher <code>MinSize</code> 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. /// </para> /// /// <para> /// Configure a lower <code>MaxSize</code> to control your cost. The tradeoff is lower /// responsiveness during peak demand. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the CreateAutoScalingConfiguration service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the CreateAutoScalingConfiguration service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ServiceQuotaExceededException"> /// App Runner can't create this resource. You've reached your account quota for this /// resource type. /// /// /// <para> /// For App Runner per-resource quotas, see <a href="https://docs.aws.amazon.com/general/latest/gr/apprunner.html">App /// Runner endpoints and quotas</a> in the <i>Amazon Web Services General Reference</i>. /// </para> /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/CreateAutoScalingConfiguration">REST API Reference for CreateAutoScalingConfiguration Operation</seealso> Task<CreateAutoScalingConfigurationResponse> CreateAutoScalingConfigurationAsync(CreateAutoScalingConfigurationRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region CreateConnection /// <summary> /// 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. /// /// /// <para> /// 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. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the CreateConnection service method.</param> /// /// <returns>The response from the CreateConnection service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ServiceQuotaExceededException"> /// App Runner can't create this resource. You've reached your account quota for this /// resource type. /// /// /// <para> /// For App Runner per-resource quotas, see <a href="https://docs.aws.amazon.com/general/latest/gr/apprunner.html">App /// Runner endpoints and quotas</a> in the <i>Amazon Web Services General Reference</i>. /// </para> /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/CreateConnection">REST API Reference for CreateConnection Operation</seealso> CreateConnectionResponse CreateConnection(CreateConnectionRequest request); /// <summary> /// 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. /// /// /// <para> /// 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. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the CreateConnection service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the CreateConnection service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ServiceQuotaExceededException"> /// App Runner can't create this resource. You've reached your account quota for this /// resource type. /// /// /// <para> /// For App Runner per-resource quotas, see <a href="https://docs.aws.amazon.com/general/latest/gr/apprunner.html">App /// Runner endpoints and quotas</a> in the <i>Amazon Web Services General Reference</i>. /// </para> /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/CreateConnection">REST API Reference for CreateConnection Operation</seealso> Task<CreateConnectionResponse> CreateConnectionAsync(CreateConnectionRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region CreateObservabilityConfiguration /// <summary> /// 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. /// /// /// <para> /// Create multiple revisions of a configuration by calling this action multiple times /// using the same <code>ObservabilityConfigurationName</code>. The call returns incremental /// <code>ObservabilityConfigurationRevision</code> 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. /// </para> /// /// <para> /// 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, <code>TraceConfiguration</code>). /// If you don't specify a feature parameter, App Runner doesn't enable the feature. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the CreateObservabilityConfiguration service method.</param> /// /// <returns>The response from the CreateObservabilityConfiguration service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ServiceQuotaExceededException"> /// App Runner can't create this resource. You've reached your account quota for this /// resource type. /// /// /// <para> /// For App Runner per-resource quotas, see <a href="https://docs.aws.amazon.com/general/latest/gr/apprunner.html">App /// Runner endpoints and quotas</a> in the <i>Amazon Web Services General Reference</i>. /// </para> /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/CreateObservabilityConfiguration">REST API Reference for CreateObservabilityConfiguration Operation</seealso> CreateObservabilityConfigurationResponse CreateObservabilityConfiguration(CreateObservabilityConfigurationRequest request); /// <summary> /// 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. /// /// /// <para> /// Create multiple revisions of a configuration by calling this action multiple times /// using the same <code>ObservabilityConfigurationName</code>. The call returns incremental /// <code>ObservabilityConfigurationRevision</code> 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. /// </para> /// /// <para> /// 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, <code>TraceConfiguration</code>). /// If you don't specify a feature parameter, App Runner doesn't enable the feature. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the CreateObservabilityConfiguration service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the CreateObservabilityConfiguration service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ServiceQuotaExceededException"> /// App Runner can't create this resource. You've reached your account quota for this /// resource type. /// /// /// <para> /// For App Runner per-resource quotas, see <a href="https://docs.aws.amazon.com/general/latest/gr/apprunner.html">App /// Runner endpoints and quotas</a> in the <i>Amazon Web Services General Reference</i>. /// </para> /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/CreateObservabilityConfiguration">REST API Reference for CreateObservabilityConfiguration Operation</seealso> Task<CreateObservabilityConfigurationResponse> CreateObservabilityConfigurationAsync(CreateObservabilityConfigurationRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region CreateService /// <summary> /// Create an App Runner service. After the service is created, the action also automatically /// starts a deployment. /// /// /// <para> /// This is an asynchronous operation. On a successful call, you can use the returned /// <code>OperationId</code> and the <a href="https://docs.aws.amazon.com/apprunner/latest/api/API_ListOperations.html">ListOperations</a> /// call to track the operation's progress. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the CreateService service method.</param> /// /// <returns>The response from the CreateService service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ServiceQuotaExceededException"> /// App Runner can't create this resource. You've reached your account quota for this /// resource type. /// /// /// <para> /// For App Runner per-resource quotas, see <a href="https://docs.aws.amazon.com/general/latest/gr/apprunner.html">App /// Runner endpoints and quotas</a> in the <i>Amazon Web Services General Reference</i>. /// </para> /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/CreateService">REST API Reference for CreateService Operation</seealso> CreateServiceResponse CreateService(CreateServiceRequest request); /// <summary> /// Create an App Runner service. After the service is created, the action also automatically /// starts a deployment. /// /// /// <para> /// This is an asynchronous operation. On a successful call, you can use the returned /// <code>OperationId</code> and the <a href="https://docs.aws.amazon.com/apprunner/latest/api/API_ListOperations.html">ListOperations</a> /// call to track the operation's progress. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the CreateService service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the CreateService service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ServiceQuotaExceededException"> /// App Runner can't create this resource. You've reached your account quota for this /// resource type. /// /// /// <para> /// For App Runner per-resource quotas, see <a href="https://docs.aws.amazon.com/general/latest/gr/apprunner.html">App /// Runner endpoints and quotas</a> in the <i>Amazon Web Services General Reference</i>. /// </para> /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/CreateService">REST API Reference for CreateService Operation</seealso> Task<CreateServiceResponse> CreateServiceAsync(CreateServiceRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region CreateVpcConnector /// <summary> /// 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). /// </summary> /// <param name="request">Container for the necessary parameters to execute the CreateVpcConnector service method.</param> /// /// <returns>The response from the CreateVpcConnector service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ServiceQuotaExceededException"> /// App Runner can't create this resource. You've reached your account quota for this /// resource type. /// /// /// <para> /// For App Runner per-resource quotas, see <a href="https://docs.aws.amazon.com/general/latest/gr/apprunner.html">App /// Runner endpoints and quotas</a> in the <i>Amazon Web Services General Reference</i>. /// </para> /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/CreateVpcConnector">REST API Reference for CreateVpcConnector Operation</seealso> CreateVpcConnectorResponse CreateVpcConnector(CreateVpcConnectorRequest request); /// <summary> /// 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). /// </summary> /// <param name="request">Container for the necessary parameters to execute the CreateVpcConnector service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the CreateVpcConnector service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ServiceQuotaExceededException"> /// App Runner can't create this resource. You've reached your account quota for this /// resource type. /// /// /// <para> /// For App Runner per-resource quotas, see <a href="https://docs.aws.amazon.com/general/latest/gr/apprunner.html">App /// Runner endpoints and quotas</a> in the <i>Amazon Web Services General Reference</i>. /// </para> /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/CreateVpcConnector">REST API Reference for CreateVpcConnector Operation</seealso> Task<CreateVpcConnectorResponse> CreateVpcConnectorAsync(CreateVpcConnectorRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region CreateVpcIngressConnection /// <summary> /// 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. /// </summary> /// <param name="request">Container for the necessary parameters to execute the CreateVpcIngressConnection service method.</param> /// /// <returns>The response from the CreateVpcIngressConnection service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidStateException"> /// You can't perform this action when the resource is in its current state. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ServiceQuotaExceededException"> /// App Runner can't create this resource. You've reached your account quota for this /// resource type. /// /// /// <para> /// For App Runner per-resource quotas, see <a href="https://docs.aws.amazon.com/general/latest/gr/apprunner.html">App /// Runner endpoints and quotas</a> in the <i>Amazon Web Services General Reference</i>. /// </para> /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/CreateVpcIngressConnection">REST API Reference for CreateVpcIngressConnection Operation</seealso> CreateVpcIngressConnectionResponse CreateVpcIngressConnection(CreateVpcIngressConnectionRequest request); /// <summary> /// 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. /// </summary> /// <param name="request">Container for the necessary parameters to execute the CreateVpcIngressConnection service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the CreateVpcIngressConnection service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidStateException"> /// You can't perform this action when the resource is in its current state. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ServiceQuotaExceededException"> /// App Runner can't create this resource. You've reached your account quota for this /// resource type. /// /// /// <para> /// For App Runner per-resource quotas, see <a href="https://docs.aws.amazon.com/general/latest/gr/apprunner.html">App /// Runner endpoints and quotas</a> in the <i>Amazon Web Services General Reference</i>. /// </para> /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/CreateVpcIngressConnection">REST API Reference for CreateVpcIngressConnection Operation</seealso> Task<CreateVpcIngressConnectionResponse> CreateVpcIngressConnectionAsync(CreateVpcIngressConnectionRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region DeleteAutoScalingConfiguration /// <summary> /// 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. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DeleteAutoScalingConfiguration service method.</param> /// /// <returns>The response from the DeleteAutoScalingConfiguration service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DeleteAutoScalingConfiguration">REST API Reference for DeleteAutoScalingConfiguration Operation</seealso> DeleteAutoScalingConfigurationResponse DeleteAutoScalingConfiguration(DeleteAutoScalingConfigurationRequest request); /// <summary> /// 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. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DeleteAutoScalingConfiguration service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DeleteAutoScalingConfiguration service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DeleteAutoScalingConfiguration">REST API Reference for DeleteAutoScalingConfiguration Operation</seealso> Task<DeleteAutoScalingConfigurationResponse> DeleteAutoScalingConfigurationAsync(DeleteAutoScalingConfigurationRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region DeleteConnection /// <summary> /// 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 <code>DeleteConnection</code> /// action fails. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DeleteConnection service method.</param> /// /// <returns>The response from the DeleteConnection service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DeleteConnection">REST API Reference for DeleteConnection Operation</seealso> DeleteConnectionResponse DeleteConnection(DeleteConnectionRequest request); /// <summary> /// 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 <code>DeleteConnection</code> /// action fails. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DeleteConnection service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DeleteConnection service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DeleteConnection">REST API Reference for DeleteConnection Operation</seealso> Task<DeleteConnectionResponse> DeleteConnectionAsync(DeleteConnectionRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region DeleteObservabilityConfiguration /// <summary> /// 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. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DeleteObservabilityConfiguration service method.</param> /// /// <returns>The response from the DeleteObservabilityConfiguration service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DeleteObservabilityConfiguration">REST API Reference for DeleteObservabilityConfiguration Operation</seealso> DeleteObservabilityConfigurationResponse DeleteObservabilityConfiguration(DeleteObservabilityConfigurationRequest request); /// <summary> /// 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. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DeleteObservabilityConfiguration service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DeleteObservabilityConfiguration service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DeleteObservabilityConfiguration">REST API Reference for DeleteObservabilityConfiguration Operation</seealso> Task<DeleteObservabilityConfigurationResponse> DeleteObservabilityConfigurationAsync(DeleteObservabilityConfigurationRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region DeleteService /// <summary> /// Delete an App Runner service. /// /// /// <para> /// This is an asynchronous operation. On a successful call, you can use the returned /// <code>OperationId</code> and the <a>ListOperations</a> call to track the operation's /// progress. /// </para> /// <note> /// <para> /// Make sure that you don't have any active VPCIngressConnections associated with the /// service you want to delete. /// </para> /// </note> /// </summary> /// <param name="request">Container for the necessary parameters to execute the DeleteService service method.</param> /// /// <returns>The response from the DeleteService service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidStateException"> /// You can't perform this action when the resource is in its current state. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DeleteService">REST API Reference for DeleteService Operation</seealso> DeleteServiceResponse DeleteService(DeleteServiceRequest request); /// <summary> /// Delete an App Runner service. /// /// /// <para> /// This is an asynchronous operation. On a successful call, you can use the returned /// <code>OperationId</code> and the <a>ListOperations</a> call to track the operation's /// progress. /// </para> /// <note> /// <para> /// Make sure that you don't have any active VPCIngressConnections associated with the /// service you want to delete. /// </para> /// </note> /// </summary> /// <param name="request">Container for the necessary parameters to execute the DeleteService service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DeleteService service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidStateException"> /// You can't perform this action when the resource is in its current state. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DeleteService">REST API Reference for DeleteService Operation</seealso> Task<DeleteServiceResponse> DeleteServiceAsync(DeleteServiceRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region DeleteVpcConnector /// <summary> /// Delete an App Runner VPC connector resource. You can't delete a connector that's used /// by one or more App Runner services. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DeleteVpcConnector service method.</param> /// /// <returns>The response from the DeleteVpcConnector service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DeleteVpcConnector">REST API Reference for DeleteVpcConnector Operation</seealso> DeleteVpcConnectorResponse DeleteVpcConnector(DeleteVpcConnectorRequest request); /// <summary> /// Delete an App Runner VPC connector resource. You can't delete a connector that's used /// by one or more App Runner services. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DeleteVpcConnector service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DeleteVpcConnector service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DeleteVpcConnector">REST API Reference for DeleteVpcConnector Operation</seealso> Task<DeleteVpcConnectorResponse> DeleteVpcConnectorAsync(DeleteVpcConnectorRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region DeleteVpcIngressConnection /// <summary> /// 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: /// /// <ul> <li> /// <para> /// <code>AVAILABLE</code> /// </para> /// </li> <li> /// <para> /// <code>FAILED_CREATION</code> /// </para> /// </li> <li> /// <para> /// <code>FAILED_UPDATE</code> /// </para> /// </li> <li> /// <para> /// <code>FAILED_DELETION</code> /// </para> /// </li> </ul> /// </summary> /// <param name="request">Container for the necessary parameters to execute the DeleteVpcIngressConnection service method.</param> /// /// <returns>The response from the DeleteVpcIngressConnection service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidStateException"> /// You can't perform this action when the resource is in its current state. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DeleteVpcIngressConnection">REST API Reference for DeleteVpcIngressConnection Operation</seealso> DeleteVpcIngressConnectionResponse DeleteVpcIngressConnection(DeleteVpcIngressConnectionRequest request); /// <summary> /// 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: /// /// <ul> <li> /// <para> /// <code>AVAILABLE</code> /// </para> /// </li> <li> /// <para> /// <code>FAILED_CREATION</code> /// </para> /// </li> <li> /// <para> /// <code>FAILED_UPDATE</code> /// </para> /// </li> <li> /// <para> /// <code>FAILED_DELETION</code> /// </para> /// </li> </ul> /// </summary> /// <param name="request">Container for the necessary parameters to execute the DeleteVpcIngressConnection service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DeleteVpcIngressConnection service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidStateException"> /// You can't perform this action when the resource is in its current state. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DeleteVpcIngressConnection">REST API Reference for DeleteVpcIngressConnection Operation</seealso> Task<DeleteVpcIngressConnectionResponse> DeleteVpcIngressConnectionAsync(DeleteVpcIngressConnectionRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region DescribeAutoScalingConfiguration /// <summary> /// Return a full description of an App Runner automatic scaling configuration resource. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DescribeAutoScalingConfiguration service method.</param> /// /// <returns>The response from the DescribeAutoScalingConfiguration service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DescribeAutoScalingConfiguration">REST API Reference for DescribeAutoScalingConfiguration Operation</seealso> DescribeAutoScalingConfigurationResponse DescribeAutoScalingConfiguration(DescribeAutoScalingConfigurationRequest request); /// <summary> /// Return a full description of an App Runner automatic scaling configuration resource. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DescribeAutoScalingConfiguration service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DescribeAutoScalingConfiguration service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DescribeAutoScalingConfiguration">REST API Reference for DescribeAutoScalingConfiguration Operation</seealso> Task<DescribeAutoScalingConfigurationResponse> DescribeAutoScalingConfigurationAsync(DescribeAutoScalingConfigurationRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region DescribeCustomDomains /// <summary> /// Return a description of custom domain names that are associated with an App Runner /// service. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DescribeCustomDomains service method.</param> /// /// <returns>The response from the DescribeCustomDomains service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DescribeCustomDomains">REST API Reference for DescribeCustomDomains Operation</seealso> DescribeCustomDomainsResponse DescribeCustomDomains(DescribeCustomDomainsRequest request); /// <summary> /// Return a description of custom domain names that are associated with an App Runner /// service. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DescribeCustomDomains service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DescribeCustomDomains service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DescribeCustomDomains">REST API Reference for DescribeCustomDomains Operation</seealso> Task<DescribeCustomDomainsResponse> DescribeCustomDomainsAsync(DescribeCustomDomainsRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region DescribeObservabilityConfiguration /// <summary> /// Return a full description of an App Runner observability configuration resource. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DescribeObservabilityConfiguration service method.</param> /// /// <returns>The response from the DescribeObservabilityConfiguration service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DescribeObservabilityConfiguration">REST API Reference for DescribeObservabilityConfiguration Operation</seealso> DescribeObservabilityConfigurationResponse DescribeObservabilityConfiguration(DescribeObservabilityConfigurationRequest request); /// <summary> /// Return a full description of an App Runner observability configuration resource. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DescribeObservabilityConfiguration service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DescribeObservabilityConfiguration service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DescribeObservabilityConfiguration">REST API Reference for DescribeObservabilityConfiguration Operation</seealso> Task<DescribeObservabilityConfigurationResponse> DescribeObservabilityConfigurationAsync(DescribeObservabilityConfigurationRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region DescribeService /// <summary> /// Return a full description of an App Runner service. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DescribeService service method.</param> /// /// <returns>The response from the DescribeService service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DescribeService">REST API Reference for DescribeService Operation</seealso> DescribeServiceResponse DescribeService(DescribeServiceRequest request); /// <summary> /// Return a full description of an App Runner service. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DescribeService service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DescribeService service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DescribeService">REST API Reference for DescribeService Operation</seealso> Task<DescribeServiceResponse> DescribeServiceAsync(DescribeServiceRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region DescribeVpcConnector /// <summary> /// Return a description of an App Runner VPC connector resource. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DescribeVpcConnector service method.</param> /// /// <returns>The response from the DescribeVpcConnector service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DescribeVpcConnector">REST API Reference for DescribeVpcConnector Operation</seealso> DescribeVpcConnectorResponse DescribeVpcConnector(DescribeVpcConnectorRequest request); /// <summary> /// Return a description of an App Runner VPC connector resource. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DescribeVpcConnector service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DescribeVpcConnector service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DescribeVpcConnector">REST API Reference for DescribeVpcConnector Operation</seealso> Task<DescribeVpcConnectorResponse> DescribeVpcConnectorAsync(DescribeVpcConnectorRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region DescribeVpcIngressConnection /// <summary> /// Return a full description of an App Runner VPC Ingress Connection resource. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DescribeVpcIngressConnection service method.</param> /// /// <returns>The response from the DescribeVpcIngressConnection service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DescribeVpcIngressConnection">REST API Reference for DescribeVpcIngressConnection Operation</seealso> DescribeVpcIngressConnectionResponse DescribeVpcIngressConnection(DescribeVpcIngressConnectionRequest request); /// <summary> /// Return a full description of an App Runner VPC Ingress Connection resource. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DescribeVpcIngressConnection service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DescribeVpcIngressConnection service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DescribeVpcIngressConnection">REST API Reference for DescribeVpcIngressConnection Operation</seealso> Task<DescribeVpcIngressConnectionResponse> DescribeVpcIngressConnectionAsync(DescribeVpcIngressConnectionRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region DisassociateCustomDomain /// <summary> /// Disassociate a custom domain name from an App Runner service. /// /// /// <para> /// Certificates tracking domain validity are associated with a custom domain and are /// stored in <a href="https://docs.aws.amazon.com/acm/latest/userguide">AWS Certificate /// Manager (ACM)</a>. 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. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the DisassociateCustomDomain service method.</param> /// /// <returns>The response from the DisassociateCustomDomain service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidStateException"> /// You can't perform this action when the resource is in its current state. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DisassociateCustomDomain">REST API Reference for DisassociateCustomDomain Operation</seealso> DisassociateCustomDomainResponse DisassociateCustomDomain(DisassociateCustomDomainRequest request); /// <summary> /// Disassociate a custom domain name from an App Runner service. /// /// /// <para> /// Certificates tracking domain validity are associated with a custom domain and are /// stored in <a href="https://docs.aws.amazon.com/acm/latest/userguide">AWS Certificate /// Manager (ACM)</a>. 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. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the DisassociateCustomDomain service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DisassociateCustomDomain service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidStateException"> /// You can't perform this action when the resource is in its current state. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DisassociateCustomDomain">REST API Reference for DisassociateCustomDomain Operation</seealso> Task<DisassociateCustomDomainResponse> DisassociateCustomDomainAsync(DisassociateCustomDomainRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region ListAutoScalingConfigurations /// <summary> /// 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. /// /// /// <para> /// To retrieve a full description of a particular configuration revision, call and provide /// one of the ARNs returned by <code>ListAutoScalingConfigurations</code>. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListAutoScalingConfigurations service method.</param> /// /// <returns>The response from the ListAutoScalingConfigurations service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/ListAutoScalingConfigurations">REST API Reference for ListAutoScalingConfigurations Operation</seealso> ListAutoScalingConfigurationsResponse ListAutoScalingConfigurations(ListAutoScalingConfigurationsRequest request); /// <summary> /// 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. /// /// /// <para> /// To retrieve a full description of a particular configuration revision, call and provide /// one of the ARNs returned by <code>ListAutoScalingConfigurations</code>. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListAutoScalingConfigurations service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the ListAutoScalingConfigurations service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/ListAutoScalingConfigurations">REST API Reference for ListAutoScalingConfigurations Operation</seealso> Task<ListAutoScalingConfigurationsResponse> ListAutoScalingConfigurationsAsync(ListAutoScalingConfigurationsRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region ListConnections /// <summary> /// Returns a list of App Runner connections that are associated with your Amazon Web /// Services account. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListConnections service method.</param> /// /// <returns>The response from the ListConnections service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/ListConnections">REST API Reference for ListConnections Operation</seealso> ListConnectionsResponse ListConnections(ListConnectionsRequest request); /// <summary> /// Returns a list of App Runner connections that are associated with your Amazon Web /// Services account. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListConnections service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the ListConnections service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/ListConnections">REST API Reference for ListConnections Operation</seealso> Task<ListConnectionsResponse> ListConnectionsAsync(ListConnectionsRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region ListObservabilityConfigurations /// <summary> /// 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. /// /// /// <para> /// To retrieve a full description of a particular configuration revision, call and provide /// one of the ARNs returned by <code>ListObservabilityConfigurations</code>. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListObservabilityConfigurations service method.</param> /// /// <returns>The response from the ListObservabilityConfigurations service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/ListObservabilityConfigurations">REST API Reference for ListObservabilityConfigurations Operation</seealso> ListObservabilityConfigurationsResponse ListObservabilityConfigurations(ListObservabilityConfigurationsRequest request); /// <summary> /// 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. /// /// /// <para> /// To retrieve a full description of a particular configuration revision, call and provide /// one of the ARNs returned by <code>ListObservabilityConfigurations</code>. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListObservabilityConfigurations service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the ListObservabilityConfigurations service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/ListObservabilityConfigurations">REST API Reference for ListObservabilityConfigurations Operation</seealso> Task<ListObservabilityConfigurationsResponse> ListObservabilityConfigurationsAsync(ListObservabilityConfigurationsRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region ListOperations /// <summary> /// Return a list of operations that occurred on an App Runner service. /// /// /// <para> /// The resulting list of <a>OperationSummary</a> objects is sorted in reverse chronological /// order. The first object on the list represents the last started operation. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListOperations service method.</param> /// /// <returns>The response from the ListOperations service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/ListOperations">REST API Reference for ListOperations Operation</seealso> ListOperationsResponse ListOperations(ListOperationsRequest request); /// <summary> /// Return a list of operations that occurred on an App Runner service. /// /// /// <para> /// The resulting list of <a>OperationSummary</a> objects is sorted in reverse chronological /// order. The first object on the list represents the last started operation. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListOperations service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the ListOperations service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/ListOperations">REST API Reference for ListOperations Operation</seealso> Task<ListOperationsResponse> ListOperationsAsync(ListOperationsRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region ListServices /// <summary> /// Returns a list of running App Runner services in your Amazon Web Services account. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListServices service method.</param> /// /// <returns>The response from the ListServices service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/ListServices">REST API Reference for ListServices Operation</seealso> ListServicesResponse ListServices(ListServicesRequest request); /// <summary> /// Returns a list of running App Runner services in your Amazon Web Services account. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListServices service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the ListServices service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/ListServices">REST API Reference for ListServices Operation</seealso> Task<ListServicesResponse> ListServicesAsync(ListServicesRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region ListTagsForResource /// <summary> /// List tags that are associated with for an App Runner resource. The response contains /// a list of tag key-value pairs. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListTagsForResource service method.</param> /// /// <returns>The response from the ListTagsForResource service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidStateException"> /// You can't perform this action when the resource is in its current state. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/ListTagsForResource">REST API Reference for ListTagsForResource Operation</seealso> ListTagsForResourceResponse ListTagsForResource(ListTagsForResourceRequest request); /// <summary> /// List tags that are associated with for an App Runner resource. The response contains /// a list of tag key-value pairs. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListTagsForResource service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the ListTagsForResource service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidStateException"> /// You can't perform this action when the resource is in its current state. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/ListTagsForResource">REST API Reference for ListTagsForResource Operation</seealso> Task<ListTagsForResourceResponse> ListTagsForResourceAsync(ListTagsForResourceRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region ListVpcConnectors /// <summary> /// Returns a list of App Runner VPC connectors in your Amazon Web Services account. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListVpcConnectors service method.</param> /// /// <returns>The response from the ListVpcConnectors service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/ListVpcConnectors">REST API Reference for ListVpcConnectors Operation</seealso> ListVpcConnectorsResponse ListVpcConnectors(ListVpcConnectorsRequest request); /// <summary> /// Returns a list of App Runner VPC connectors in your Amazon Web Services account. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListVpcConnectors service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the ListVpcConnectors service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/ListVpcConnectors">REST API Reference for ListVpcConnectors Operation</seealso> Task<ListVpcConnectorsResponse> ListVpcConnectorsAsync(ListVpcConnectorsRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region ListVpcIngressConnections /// <summary> /// Return a list of App Runner VPC Ingress Connections in your Amazon Web Services account. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListVpcIngressConnections service method.</param> /// /// <returns>The response from the ListVpcIngressConnections service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/ListVpcIngressConnections">REST API Reference for ListVpcIngressConnections Operation</seealso> ListVpcIngressConnectionsResponse ListVpcIngressConnections(ListVpcIngressConnectionsRequest request); /// <summary> /// Return a list of App Runner VPC Ingress Connections in your Amazon Web Services account. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListVpcIngressConnections service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the ListVpcIngressConnections service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/ListVpcIngressConnections">REST API Reference for ListVpcIngressConnections Operation</seealso> Task<ListVpcIngressConnectionsResponse> ListVpcIngressConnectionsAsync(ListVpcIngressConnectionsRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region PauseService /// <summary> /// 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). /// /// /// <para> /// This is an asynchronous operation. On a successful call, you can use the returned /// <code>OperationId</code> and the <a>ListOperations</a> call to track the operation's /// progress. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the PauseService service method.</param> /// /// <returns>The response from the PauseService service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidStateException"> /// You can't perform this action when the resource is in its current state. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/PauseService">REST API Reference for PauseService Operation</seealso> PauseServiceResponse PauseService(PauseServiceRequest request); /// <summary> /// 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). /// /// /// <para> /// This is an asynchronous operation. On a successful call, you can use the returned /// <code>OperationId</code> and the <a>ListOperations</a> call to track the operation's /// progress. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the PauseService service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the PauseService service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidStateException"> /// You can't perform this action when the resource is in its current state. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/PauseService">REST API Reference for PauseService Operation</seealso> Task<PauseServiceResponse> PauseServiceAsync(PauseServiceRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region ResumeService /// <summary> /// Resume an active App Runner service. App Runner provisions compute capacity for the /// service. /// /// /// <para> /// This is an asynchronous operation. On a successful call, you can use the returned /// <code>OperationId</code> and the <a>ListOperations</a> call to track the operation's /// progress. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the ResumeService service method.</param> /// /// <returns>The response from the ResumeService service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidStateException"> /// You can't perform this action when the resource is in its current state. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/ResumeService">REST API Reference for ResumeService Operation</seealso> ResumeServiceResponse ResumeService(ResumeServiceRequest request); /// <summary> /// Resume an active App Runner service. App Runner provisions compute capacity for the /// service. /// /// /// <para> /// This is an asynchronous operation. On a successful call, you can use the returned /// <code>OperationId</code> and the <a>ListOperations</a> call to track the operation's /// progress. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the ResumeService service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the ResumeService service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidStateException"> /// You can't perform this action when the resource is in its current state. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/ResumeService">REST API Reference for ResumeService Operation</seealso> Task<ResumeServiceResponse> ResumeServiceAsync(ResumeServiceRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region StartDeployment /// <summary> /// 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. /// /// /// <para> /// 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. /// </para> /// /// <para> /// This is an asynchronous operation. On a successful call, you can use the returned /// <code>OperationId</code> and the <a>ListOperations</a> call to track the operation's /// progress. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the StartDeployment service method.</param> /// /// <returns>The response from the StartDeployment service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/StartDeployment">REST API Reference for StartDeployment Operation</seealso> StartDeploymentResponse StartDeployment(StartDeploymentRequest request); /// <summary> /// 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. /// /// /// <para> /// 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. /// </para> /// /// <para> /// This is an asynchronous operation. On a successful call, you can use the returned /// <code>OperationId</code> and the <a>ListOperations</a> call to track the operation's /// progress. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the StartDeployment service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the StartDeployment service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/StartDeployment">REST API Reference for StartDeployment Operation</seealso> Task<StartDeploymentResponse> StartDeploymentAsync(StartDeploymentRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region TagResource /// <summary> /// Add tags to, or update the tag values of, an App Runner resource. A tag is a key-value /// pair. /// </summary> /// <param name="request">Container for the necessary parameters to execute the TagResource service method.</param> /// /// <returns>The response from the TagResource service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidStateException"> /// You can't perform this action when the resource is in its current state. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/TagResource">REST API Reference for TagResource Operation</seealso> TagResourceResponse TagResource(TagResourceRequest request); /// <summary> /// Add tags to, or update the tag values of, an App Runner resource. A tag is a key-value /// pair. /// </summary> /// <param name="request">Container for the necessary parameters to execute the TagResource service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the TagResource service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidStateException"> /// You can't perform this action when the resource is in its current state. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/TagResource">REST API Reference for TagResource Operation</seealso> Task<TagResourceResponse> TagResourceAsync(TagResourceRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region UntagResource /// <summary> /// Remove tags from an App Runner resource. /// </summary> /// <param name="request">Container for the necessary parameters to execute the UntagResource service method.</param> /// /// <returns>The response from the UntagResource service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidStateException"> /// You can't perform this action when the resource is in its current state. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/UntagResource">REST API Reference for UntagResource Operation</seealso> UntagResourceResponse UntagResource(UntagResourceRequest request); /// <summary> /// Remove tags from an App Runner resource. /// </summary> /// <param name="request">Container for the necessary parameters to execute the UntagResource service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the UntagResource service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidStateException"> /// You can't perform this action when the resource is in its current state. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/UntagResource">REST API Reference for UntagResource Operation</seealso> Task<UntagResourceResponse> UntagResourceAsync(UntagResourceRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region UpdateService /// <summary> /// 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. /// /// /// <para> /// To update the tags applied to your service, use the separate actions <a>TagResource</a> /// and <a>UntagResource</a>. /// </para> /// /// <para> /// This is an asynchronous operation. On a successful call, you can use the returned /// <code>OperationId</code> and the <a>ListOperations</a> call to track the operation's /// progress. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the UpdateService service method.</param> /// /// <returns>The response from the UpdateService service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidStateException"> /// You can't perform this action when the resource is in its current state. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/UpdateService">REST API Reference for UpdateService Operation</seealso> UpdateServiceResponse UpdateService(UpdateServiceRequest request); /// <summary> /// 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. /// /// /// <para> /// To update the tags applied to your service, use the separate actions <a>TagResource</a> /// and <a>UntagResource</a>. /// </para> /// /// <para> /// This is an asynchronous operation. On a successful call, you can use the returned /// <code>OperationId</code> and the <a>ListOperations</a> call to track the operation's /// progress. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the UpdateService service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the UpdateService service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidStateException"> /// You can't perform this action when the resource is in its current state. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/UpdateService">REST API Reference for UpdateService Operation</seealso> Task<UpdateServiceResponse> UpdateServiceAsync(UpdateServiceRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion #region UpdateVpcIngressConnection /// <summary> /// Update an existing App Runner VPC Ingress Connection resource. The VPC Ingress Connection /// must be in one of the following states to be updated: /// /// <ul> <li> /// <para> /// AVAILABLE /// </para> /// </li> <li> /// <para> /// FAILED_CREATION /// </para> /// </li> <li> /// <para> /// FAILED_UPDATE /// </para> /// </li> </ul> /// </summary> /// <param name="request">Container for the necessary parameters to execute the UpdateVpcIngressConnection service method.</param> /// /// <returns>The response from the UpdateVpcIngressConnection service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidStateException"> /// You can't perform this action when the resource is in its current state. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/UpdateVpcIngressConnection">REST API Reference for UpdateVpcIngressConnection Operation</seealso> UpdateVpcIngressConnectionResponse UpdateVpcIngressConnection(UpdateVpcIngressConnectionRequest request); /// <summary> /// Update an existing App Runner VPC Ingress Connection resource. The VPC Ingress Connection /// must be in one of the following states to be updated: /// /// <ul> <li> /// <para> /// AVAILABLE /// </para> /// </li> <li> /// <para> /// FAILED_CREATION /// </para> /// </li> <li> /// <para> /// FAILED_UPDATE /// </para> /// </li> </ul> /// </summary> /// <param name="request">Container for the necessary parameters to execute the UpdateVpcIngressConnection service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the UpdateVpcIngressConnection service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidStateException"> /// You can't perform this action when the resource is in its current state. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/UpdateVpcIngressConnection">REST API Reference for UpdateVpcIngressConnection Operation</seealso> Task<UpdateVpcIngressConnectionResponse> UpdateVpcIngressConnectionAsync(UpdateVpcIngressConnectionRequest request, CancellationToken cancellationToken = default(CancellationToken)); #endregion } }
2,348
aws-sdk-net
aws
C#
/* * 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.Runtime.ExceptionServices; using System.Threading; using System.Threading.Tasks; using System.Collections.Generic; using System.Net; using Amazon.AppRunner.Model; using Amazon.AppRunner.Model.Internal.MarshallTransformations; using Amazon.AppRunner.Internal; using Amazon.Runtime; using Amazon.Runtime.Internal; using Amazon.Runtime.Internal.Auth; using Amazon.Runtime.Internal.Transform; namespace Amazon.AppRunner { /// <summary> /// Implementation for accessing AppRunner /// /// App Runner /// <para> /// 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. /// </para> /// /// <para> /// 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. /// </para> /// /// <para> /// For more information about App Runner, see the <a href="https://docs.aws.amazon.com/apprunner/latest/dg/">App /// Runner Developer Guide</a>. For release information, see the <a href="https://docs.aws.amazon.com/apprunner/latest/relnotes/">App /// Runner Release Notes</a>. /// </para> /// /// <para> /// 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 <a /// href="http://aws.amazon.com/tools/">Tools for Amazon Web Services</a>. /// </para> /// /// <para> /// <b>Endpoints</b> /// </para> /// /// <para> /// For a list of Region-specific endpoints that App Runner supports, see <a href="https://docs.aws.amazon.com/general/latest/gr/apprunner.html">App /// Runner endpoints and quotas</a> in the <i>Amazon Web Services General Reference</i>. /// </para> /// </summary> public partial class AmazonAppRunnerClient : AmazonServiceClient, IAmazonAppRunner { private static IServiceMetadata serviceMetadata = new AmazonAppRunnerMetadata(); #region Constructors /// <summary> /// Constructs AmazonAppRunnerClient with the credentials loaded from the application's /// default configuration, and if unsuccessful from the Instance Profile service on an EC2 instance. /// /// Example App.config with credentials set. /// <code> /// &lt;?xml version="1.0" encoding="utf-8" ?&gt; /// &lt;configuration&gt; /// &lt;appSettings&gt; /// &lt;add key="AWSProfileName" value="AWS Default"/&gt; /// &lt;/appSettings&gt; /// &lt;/configuration&gt; /// </code> /// /// </summary> public AmazonAppRunnerClient() : base(FallbackCredentialsFactory.GetCredentials(), new AmazonAppRunnerConfig()) { } /// <summary> /// Constructs AmazonAppRunnerClient with the credentials loaded from the application's /// default configuration, and if unsuccessful from the Instance Profile service on an EC2 instance. /// /// Example App.config with credentials set. /// <code> /// &lt;?xml version="1.0" encoding="utf-8" ?&gt; /// &lt;configuration&gt; /// &lt;appSettings&gt; /// &lt;add key="AWSProfileName" value="AWS Default"/&gt; /// &lt;/appSettings&gt; /// &lt;/configuration&gt; /// </code> /// /// </summary> /// <param name="region">The region to connect.</param> public AmazonAppRunnerClient(RegionEndpoint region) : base(FallbackCredentialsFactory.GetCredentials(), new AmazonAppRunnerConfig{RegionEndpoint = region}) { } /// <summary> /// Constructs AmazonAppRunnerClient with the credentials loaded from the application's /// default configuration, and if unsuccessful from the Instance Profile service on an EC2 instance. /// /// Example App.config with credentials set. /// <code> /// &lt;?xml version="1.0" encoding="utf-8" ?&gt; /// &lt;configuration&gt; /// &lt;appSettings&gt; /// &lt;add key="AWSProfileName" value="AWS Default"/&gt; /// &lt;/appSettings&gt; /// &lt;/configuration&gt; /// </code> /// /// </summary> /// <param name="config">The AmazonAppRunnerClient Configuration Object</param> public AmazonAppRunnerClient(AmazonAppRunnerConfig config) : base(FallbackCredentialsFactory.GetCredentials(), config) { } /// <summary> /// Constructs AmazonAppRunnerClient with AWS Credentials /// </summary> /// <param name="credentials">AWS Credentials</param> public AmazonAppRunnerClient(AWSCredentials credentials) : this(credentials, new AmazonAppRunnerConfig()) { } /// <summary> /// Constructs AmazonAppRunnerClient with AWS Credentials /// </summary> /// <param name="credentials">AWS Credentials</param> /// <param name="region">The region to connect.</param> public AmazonAppRunnerClient(AWSCredentials credentials, RegionEndpoint region) : this(credentials, new AmazonAppRunnerConfig{RegionEndpoint = region}) { } /// <summary> /// Constructs AmazonAppRunnerClient with AWS Credentials and an /// AmazonAppRunnerClient Configuration object. /// </summary> /// <param name="credentials">AWS Credentials</param> /// <param name="clientConfig">The AmazonAppRunnerClient Configuration Object</param> public AmazonAppRunnerClient(AWSCredentials credentials, AmazonAppRunnerConfig clientConfig) : base(credentials, clientConfig) { } /// <summary> /// Constructs AmazonAppRunnerClient with AWS Access Key ID and AWS Secret Key /// </summary> /// <param name="awsAccessKeyId">AWS Access Key ID</param> /// <param name="awsSecretAccessKey">AWS Secret Access Key</param> public AmazonAppRunnerClient(string awsAccessKeyId, string awsSecretAccessKey) : this(awsAccessKeyId, awsSecretAccessKey, new AmazonAppRunnerConfig()) { } /// <summary> /// Constructs AmazonAppRunnerClient with AWS Access Key ID and AWS Secret Key /// </summary> /// <param name="awsAccessKeyId">AWS Access Key ID</param> /// <param name="awsSecretAccessKey">AWS Secret Access Key</param> /// <param name="region">The region to connect.</param> public AmazonAppRunnerClient(string awsAccessKeyId, string awsSecretAccessKey, RegionEndpoint region) : this(awsAccessKeyId, awsSecretAccessKey, new AmazonAppRunnerConfig() {RegionEndpoint=region}) { } /// <summary> /// Constructs AmazonAppRunnerClient with AWS Access Key ID, AWS Secret Key and an /// AmazonAppRunnerClient Configuration object. /// </summary> /// <param name="awsAccessKeyId">AWS Access Key ID</param> /// <param name="awsSecretAccessKey">AWS Secret Access Key</param> /// <param name="clientConfig">The AmazonAppRunnerClient Configuration Object</param> public AmazonAppRunnerClient(string awsAccessKeyId, string awsSecretAccessKey, AmazonAppRunnerConfig clientConfig) : base(awsAccessKeyId, awsSecretAccessKey, clientConfig) { } /// <summary> /// Constructs AmazonAppRunnerClient with AWS Access Key ID and AWS Secret Key /// </summary> /// <param name="awsAccessKeyId">AWS Access Key ID</param> /// <param name="awsSecretAccessKey">AWS Secret Access Key</param> /// <param name="awsSessionToken">AWS Session Token</param> public AmazonAppRunnerClient(string awsAccessKeyId, string awsSecretAccessKey, string awsSessionToken) : this(awsAccessKeyId, awsSecretAccessKey, awsSessionToken, new AmazonAppRunnerConfig()) { } /// <summary> /// Constructs AmazonAppRunnerClient with AWS Access Key ID and AWS Secret Key /// </summary> /// <param name="awsAccessKeyId">AWS Access Key ID</param> /// <param name="awsSecretAccessKey">AWS Secret Access Key</param> /// <param name="awsSessionToken">AWS Session Token</param> /// <param name="region">The region to connect.</param> public AmazonAppRunnerClient(string awsAccessKeyId, string awsSecretAccessKey, string awsSessionToken, RegionEndpoint region) : this(awsAccessKeyId, awsSecretAccessKey, awsSessionToken, new AmazonAppRunnerConfig{RegionEndpoint = region}) { } /// <summary> /// Constructs AmazonAppRunnerClient with AWS Access Key ID, AWS Secret Key and an /// AmazonAppRunnerClient Configuration object. /// </summary> /// <param name="awsAccessKeyId">AWS Access Key ID</param> /// <param name="awsSecretAccessKey">AWS Secret Access Key</param> /// <param name="awsSessionToken">AWS Session Token</param> /// <param name="clientConfig">The AmazonAppRunnerClient Configuration Object</param> public AmazonAppRunnerClient(string awsAccessKeyId, string awsSecretAccessKey, string awsSessionToken, AmazonAppRunnerConfig clientConfig) : base(awsAccessKeyId, awsSecretAccessKey, awsSessionToken, clientConfig) { } #endregion #if AWS_ASYNC_ENUMERABLES_API private IAppRunnerPaginatorFactory _paginators; /// <summary> /// Paginators for the service /// </summary> public IAppRunnerPaginatorFactory Paginators { get { if (this._paginators == null) { this._paginators = new AppRunnerPaginatorFactory(this); } return this._paginators; } } #endif #region Overrides /// <summary> /// Creates the signer for the service. /// </summary> protected override AbstractAWSSigner CreateSigner() { return new AWS4Signer(); } /// <summary> /// Customizes the runtime pipeline. /// </summary> /// <param name="pipeline">Runtime pipeline for the current client.</param> protected override void CustomizeRuntimePipeline(RuntimePipeline pipeline) { pipeline.RemoveHandler<Amazon.Runtime.Internal.EndpointResolver>(); pipeline.AddHandlerAfter<Amazon.Runtime.Internal.Marshaller>(new AmazonAppRunnerEndpointResolver()); } /// <summary> /// Capture metadata for the service. /// </summary> protected override IServiceMetadata ServiceMetadata { get { return serviceMetadata; } } #endregion #region Dispose /// <summary> /// Disposes the service client. /// </summary> protected override void Dispose(bool disposing) { base.Dispose(disposing); } #endregion #region AssociateCustomDomain internal virtual AssociateCustomDomainResponse AssociateCustomDomain(AssociateCustomDomainRequest request) { var options = new InvokeOptions(); options.RequestMarshaller = AssociateCustomDomainRequestMarshaller.Instance; options.ResponseUnmarshaller = AssociateCustomDomainResponseUnmarshaller.Instance; return Invoke<AssociateCustomDomainResponse>(request, options); } /// <summary> /// Associate your own domain name with the App Runner subdomain URL of your App Runner /// service. /// /// /// <para> /// After you call <code>AssociateCustomDomain</code> and receive a successful response, /// use the information in the <a>CustomDomain</a> 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 <a href="https://docs.aws.amazon.com/acm/latest/userguide">AWS Certificate Manager /// (ACM)</a>. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the AssociateCustomDomain service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the AssociateCustomDomain service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidStateException"> /// You can't perform this action when the resource is in its current state. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/AssociateCustomDomain">REST API Reference for AssociateCustomDomain Operation</seealso> public virtual Task<AssociateCustomDomainResponse> AssociateCustomDomainAsync(AssociateCustomDomainRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var options = new InvokeOptions(); options.RequestMarshaller = AssociateCustomDomainRequestMarshaller.Instance; options.ResponseUnmarshaller = AssociateCustomDomainResponseUnmarshaller.Instance; return InvokeAsync<AssociateCustomDomainResponse>(request, options, cancellationToken); } #endregion #region CreateAutoScalingConfiguration internal virtual CreateAutoScalingConfigurationResponse CreateAutoScalingConfiguration(CreateAutoScalingConfigurationRequest request) { var options = new InvokeOptions(); options.RequestMarshaller = CreateAutoScalingConfigurationRequestMarshaller.Instance; options.ResponseUnmarshaller = CreateAutoScalingConfigurationResponseUnmarshaller.Instance; return Invoke<CreateAutoScalingConfigurationResponse>(request, options); } /// <summary> /// 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. /// /// /// <para> /// Create multiple revisions of a configuration by calling this action multiple times /// using the same <code>AutoScalingConfigurationName</code>. The call returns incremental /// <code>AutoScalingConfigurationRevision</code> 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. /// </para> /// /// <para> /// Configure a higher <code>MinSize</code> 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. /// </para> /// /// <para> /// Configure a lower <code>MaxSize</code> to control your cost. The tradeoff is lower /// responsiveness during peak demand. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the CreateAutoScalingConfiguration service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the CreateAutoScalingConfiguration service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ServiceQuotaExceededException"> /// App Runner can't create this resource. You've reached your account quota for this /// resource type. /// /// /// <para> /// For App Runner per-resource quotas, see <a href="https://docs.aws.amazon.com/general/latest/gr/apprunner.html">App /// Runner endpoints and quotas</a> in the <i>Amazon Web Services General Reference</i>. /// </para> /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/CreateAutoScalingConfiguration">REST API Reference for CreateAutoScalingConfiguration Operation</seealso> public virtual Task<CreateAutoScalingConfigurationResponse> CreateAutoScalingConfigurationAsync(CreateAutoScalingConfigurationRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var options = new InvokeOptions(); options.RequestMarshaller = CreateAutoScalingConfigurationRequestMarshaller.Instance; options.ResponseUnmarshaller = CreateAutoScalingConfigurationResponseUnmarshaller.Instance; return InvokeAsync<CreateAutoScalingConfigurationResponse>(request, options, cancellationToken); } #endregion #region CreateConnection internal virtual CreateConnectionResponse CreateConnection(CreateConnectionRequest request) { var options = new InvokeOptions(); options.RequestMarshaller = CreateConnectionRequestMarshaller.Instance; options.ResponseUnmarshaller = CreateConnectionResponseUnmarshaller.Instance; return Invoke<CreateConnectionResponse>(request, options); } /// <summary> /// 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. /// /// /// <para> /// 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. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the CreateConnection service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the CreateConnection service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ServiceQuotaExceededException"> /// App Runner can't create this resource. You've reached your account quota for this /// resource type. /// /// /// <para> /// For App Runner per-resource quotas, see <a href="https://docs.aws.amazon.com/general/latest/gr/apprunner.html">App /// Runner endpoints and quotas</a> in the <i>Amazon Web Services General Reference</i>. /// </para> /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/CreateConnection">REST API Reference for CreateConnection Operation</seealso> public virtual Task<CreateConnectionResponse> CreateConnectionAsync(CreateConnectionRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var options = new InvokeOptions(); options.RequestMarshaller = CreateConnectionRequestMarshaller.Instance; options.ResponseUnmarshaller = CreateConnectionResponseUnmarshaller.Instance; return InvokeAsync<CreateConnectionResponse>(request, options, cancellationToken); } #endregion #region CreateObservabilityConfiguration internal virtual CreateObservabilityConfigurationResponse CreateObservabilityConfiguration(CreateObservabilityConfigurationRequest request) { var options = new InvokeOptions(); options.RequestMarshaller = CreateObservabilityConfigurationRequestMarshaller.Instance; options.ResponseUnmarshaller = CreateObservabilityConfigurationResponseUnmarshaller.Instance; return Invoke<CreateObservabilityConfigurationResponse>(request, options); } /// <summary> /// 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. /// /// /// <para> /// Create multiple revisions of a configuration by calling this action multiple times /// using the same <code>ObservabilityConfigurationName</code>. The call returns incremental /// <code>ObservabilityConfigurationRevision</code> 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. /// </para> /// /// <para> /// 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, <code>TraceConfiguration</code>). /// If you don't specify a feature parameter, App Runner doesn't enable the feature. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the CreateObservabilityConfiguration service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the CreateObservabilityConfiguration service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ServiceQuotaExceededException"> /// App Runner can't create this resource. You've reached your account quota for this /// resource type. /// /// /// <para> /// For App Runner per-resource quotas, see <a href="https://docs.aws.amazon.com/general/latest/gr/apprunner.html">App /// Runner endpoints and quotas</a> in the <i>Amazon Web Services General Reference</i>. /// </para> /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/CreateObservabilityConfiguration">REST API Reference for CreateObservabilityConfiguration Operation</seealso> public virtual Task<CreateObservabilityConfigurationResponse> CreateObservabilityConfigurationAsync(CreateObservabilityConfigurationRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var options = new InvokeOptions(); options.RequestMarshaller = CreateObservabilityConfigurationRequestMarshaller.Instance; options.ResponseUnmarshaller = CreateObservabilityConfigurationResponseUnmarshaller.Instance; return InvokeAsync<CreateObservabilityConfigurationResponse>(request, options, cancellationToken); } #endregion #region CreateService internal virtual CreateServiceResponse CreateService(CreateServiceRequest request) { var options = new InvokeOptions(); options.RequestMarshaller = CreateServiceRequestMarshaller.Instance; options.ResponseUnmarshaller = CreateServiceResponseUnmarshaller.Instance; return Invoke<CreateServiceResponse>(request, options); } /// <summary> /// Create an App Runner service. After the service is created, the action also automatically /// starts a deployment. /// /// /// <para> /// This is an asynchronous operation. On a successful call, you can use the returned /// <code>OperationId</code> and the <a href="https://docs.aws.amazon.com/apprunner/latest/api/API_ListOperations.html">ListOperations</a> /// call to track the operation's progress. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the CreateService service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the CreateService service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ServiceQuotaExceededException"> /// App Runner can't create this resource. You've reached your account quota for this /// resource type. /// /// /// <para> /// For App Runner per-resource quotas, see <a href="https://docs.aws.amazon.com/general/latest/gr/apprunner.html">App /// Runner endpoints and quotas</a> in the <i>Amazon Web Services General Reference</i>. /// </para> /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/CreateService">REST API Reference for CreateService Operation</seealso> public virtual Task<CreateServiceResponse> CreateServiceAsync(CreateServiceRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var options = new InvokeOptions(); options.RequestMarshaller = CreateServiceRequestMarshaller.Instance; options.ResponseUnmarshaller = CreateServiceResponseUnmarshaller.Instance; return InvokeAsync<CreateServiceResponse>(request, options, cancellationToken); } #endregion #region CreateVpcConnector internal virtual CreateVpcConnectorResponse CreateVpcConnector(CreateVpcConnectorRequest request) { var options = new InvokeOptions(); options.RequestMarshaller = CreateVpcConnectorRequestMarshaller.Instance; options.ResponseUnmarshaller = CreateVpcConnectorResponseUnmarshaller.Instance; return Invoke<CreateVpcConnectorResponse>(request, options); } /// <summary> /// 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). /// </summary> /// <param name="request">Container for the necessary parameters to execute the CreateVpcConnector service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the CreateVpcConnector service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ServiceQuotaExceededException"> /// App Runner can't create this resource. You've reached your account quota for this /// resource type. /// /// /// <para> /// For App Runner per-resource quotas, see <a href="https://docs.aws.amazon.com/general/latest/gr/apprunner.html">App /// Runner endpoints and quotas</a> in the <i>Amazon Web Services General Reference</i>. /// </para> /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/CreateVpcConnector">REST API Reference for CreateVpcConnector Operation</seealso> public virtual Task<CreateVpcConnectorResponse> CreateVpcConnectorAsync(CreateVpcConnectorRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var options = new InvokeOptions(); options.RequestMarshaller = CreateVpcConnectorRequestMarshaller.Instance; options.ResponseUnmarshaller = CreateVpcConnectorResponseUnmarshaller.Instance; return InvokeAsync<CreateVpcConnectorResponse>(request, options, cancellationToken); } #endregion #region CreateVpcIngressConnection internal virtual CreateVpcIngressConnectionResponse CreateVpcIngressConnection(CreateVpcIngressConnectionRequest request) { var options = new InvokeOptions(); options.RequestMarshaller = CreateVpcIngressConnectionRequestMarshaller.Instance; options.ResponseUnmarshaller = CreateVpcIngressConnectionResponseUnmarshaller.Instance; return Invoke<CreateVpcIngressConnectionResponse>(request, options); } /// <summary> /// 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. /// </summary> /// <param name="request">Container for the necessary parameters to execute the CreateVpcIngressConnection service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the CreateVpcIngressConnection service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidStateException"> /// You can't perform this action when the resource is in its current state. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ServiceQuotaExceededException"> /// App Runner can't create this resource. You've reached your account quota for this /// resource type. /// /// /// <para> /// For App Runner per-resource quotas, see <a href="https://docs.aws.amazon.com/general/latest/gr/apprunner.html">App /// Runner endpoints and quotas</a> in the <i>Amazon Web Services General Reference</i>. /// </para> /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/CreateVpcIngressConnection">REST API Reference for CreateVpcIngressConnection Operation</seealso> public virtual Task<CreateVpcIngressConnectionResponse> CreateVpcIngressConnectionAsync(CreateVpcIngressConnectionRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var options = new InvokeOptions(); options.RequestMarshaller = CreateVpcIngressConnectionRequestMarshaller.Instance; options.ResponseUnmarshaller = CreateVpcIngressConnectionResponseUnmarshaller.Instance; return InvokeAsync<CreateVpcIngressConnectionResponse>(request, options, cancellationToken); } #endregion #region DeleteAutoScalingConfiguration internal virtual DeleteAutoScalingConfigurationResponse DeleteAutoScalingConfiguration(DeleteAutoScalingConfigurationRequest request) { var options = new InvokeOptions(); options.RequestMarshaller = DeleteAutoScalingConfigurationRequestMarshaller.Instance; options.ResponseUnmarshaller = DeleteAutoScalingConfigurationResponseUnmarshaller.Instance; return Invoke<DeleteAutoScalingConfigurationResponse>(request, options); } /// <summary> /// 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. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DeleteAutoScalingConfiguration service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DeleteAutoScalingConfiguration service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DeleteAutoScalingConfiguration">REST API Reference for DeleteAutoScalingConfiguration Operation</seealso> public virtual Task<DeleteAutoScalingConfigurationResponse> DeleteAutoScalingConfigurationAsync(DeleteAutoScalingConfigurationRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var options = new InvokeOptions(); options.RequestMarshaller = DeleteAutoScalingConfigurationRequestMarshaller.Instance; options.ResponseUnmarshaller = DeleteAutoScalingConfigurationResponseUnmarshaller.Instance; return InvokeAsync<DeleteAutoScalingConfigurationResponse>(request, options, cancellationToken); } #endregion #region DeleteConnection internal virtual DeleteConnectionResponse DeleteConnection(DeleteConnectionRequest request) { var options = new InvokeOptions(); options.RequestMarshaller = DeleteConnectionRequestMarshaller.Instance; options.ResponseUnmarshaller = DeleteConnectionResponseUnmarshaller.Instance; return Invoke<DeleteConnectionResponse>(request, options); } /// <summary> /// 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 <code>DeleteConnection</code> /// action fails. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DeleteConnection service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DeleteConnection service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DeleteConnection">REST API Reference for DeleteConnection Operation</seealso> public virtual Task<DeleteConnectionResponse> DeleteConnectionAsync(DeleteConnectionRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var options = new InvokeOptions(); options.RequestMarshaller = DeleteConnectionRequestMarshaller.Instance; options.ResponseUnmarshaller = DeleteConnectionResponseUnmarshaller.Instance; return InvokeAsync<DeleteConnectionResponse>(request, options, cancellationToken); } #endregion #region DeleteObservabilityConfiguration internal virtual DeleteObservabilityConfigurationResponse DeleteObservabilityConfiguration(DeleteObservabilityConfigurationRequest request) { var options = new InvokeOptions(); options.RequestMarshaller = DeleteObservabilityConfigurationRequestMarshaller.Instance; options.ResponseUnmarshaller = DeleteObservabilityConfigurationResponseUnmarshaller.Instance; return Invoke<DeleteObservabilityConfigurationResponse>(request, options); } /// <summary> /// 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. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DeleteObservabilityConfiguration service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DeleteObservabilityConfiguration service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DeleteObservabilityConfiguration">REST API Reference for DeleteObservabilityConfiguration Operation</seealso> public virtual Task<DeleteObservabilityConfigurationResponse> DeleteObservabilityConfigurationAsync(DeleteObservabilityConfigurationRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var options = new InvokeOptions(); options.RequestMarshaller = DeleteObservabilityConfigurationRequestMarshaller.Instance; options.ResponseUnmarshaller = DeleteObservabilityConfigurationResponseUnmarshaller.Instance; return InvokeAsync<DeleteObservabilityConfigurationResponse>(request, options, cancellationToken); } #endregion #region DeleteService internal virtual DeleteServiceResponse DeleteService(DeleteServiceRequest request) { var options = new InvokeOptions(); options.RequestMarshaller = DeleteServiceRequestMarshaller.Instance; options.ResponseUnmarshaller = DeleteServiceResponseUnmarshaller.Instance; return Invoke<DeleteServiceResponse>(request, options); } /// <summary> /// Delete an App Runner service. /// /// /// <para> /// This is an asynchronous operation. On a successful call, you can use the returned /// <code>OperationId</code> and the <a>ListOperations</a> call to track the operation's /// progress. /// </para> /// <note> /// <para> /// Make sure that you don't have any active VPCIngressConnections associated with the /// service you want to delete. /// </para> /// </note> /// </summary> /// <param name="request">Container for the necessary parameters to execute the DeleteService service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DeleteService service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidStateException"> /// You can't perform this action when the resource is in its current state. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DeleteService">REST API Reference for DeleteService Operation</seealso> public virtual Task<DeleteServiceResponse> DeleteServiceAsync(DeleteServiceRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var options = new InvokeOptions(); options.RequestMarshaller = DeleteServiceRequestMarshaller.Instance; options.ResponseUnmarshaller = DeleteServiceResponseUnmarshaller.Instance; return InvokeAsync<DeleteServiceResponse>(request, options, cancellationToken); } #endregion #region DeleteVpcConnector internal virtual DeleteVpcConnectorResponse DeleteVpcConnector(DeleteVpcConnectorRequest request) { var options = new InvokeOptions(); options.RequestMarshaller = DeleteVpcConnectorRequestMarshaller.Instance; options.ResponseUnmarshaller = DeleteVpcConnectorResponseUnmarshaller.Instance; return Invoke<DeleteVpcConnectorResponse>(request, options); } /// <summary> /// Delete an App Runner VPC connector resource. You can't delete a connector that's used /// by one or more App Runner services. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DeleteVpcConnector service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DeleteVpcConnector service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DeleteVpcConnector">REST API Reference for DeleteVpcConnector Operation</seealso> public virtual Task<DeleteVpcConnectorResponse> DeleteVpcConnectorAsync(DeleteVpcConnectorRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var options = new InvokeOptions(); options.RequestMarshaller = DeleteVpcConnectorRequestMarshaller.Instance; options.ResponseUnmarshaller = DeleteVpcConnectorResponseUnmarshaller.Instance; return InvokeAsync<DeleteVpcConnectorResponse>(request, options, cancellationToken); } #endregion #region DeleteVpcIngressConnection internal virtual DeleteVpcIngressConnectionResponse DeleteVpcIngressConnection(DeleteVpcIngressConnectionRequest request) { var options = new InvokeOptions(); options.RequestMarshaller = DeleteVpcIngressConnectionRequestMarshaller.Instance; options.ResponseUnmarshaller = DeleteVpcIngressConnectionResponseUnmarshaller.Instance; return Invoke<DeleteVpcIngressConnectionResponse>(request, options); } /// <summary> /// 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: /// /// <ul> <li> /// <para> /// <code>AVAILABLE</code> /// </para> /// </li> <li> /// <para> /// <code>FAILED_CREATION</code> /// </para> /// </li> <li> /// <para> /// <code>FAILED_UPDATE</code> /// </para> /// </li> <li> /// <para> /// <code>FAILED_DELETION</code> /// </para> /// </li> </ul> /// </summary> /// <param name="request">Container for the necessary parameters to execute the DeleteVpcIngressConnection service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DeleteVpcIngressConnection service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidStateException"> /// You can't perform this action when the resource is in its current state. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DeleteVpcIngressConnection">REST API Reference for DeleteVpcIngressConnection Operation</seealso> public virtual Task<DeleteVpcIngressConnectionResponse> DeleteVpcIngressConnectionAsync(DeleteVpcIngressConnectionRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var options = new InvokeOptions(); options.RequestMarshaller = DeleteVpcIngressConnectionRequestMarshaller.Instance; options.ResponseUnmarshaller = DeleteVpcIngressConnectionResponseUnmarshaller.Instance; return InvokeAsync<DeleteVpcIngressConnectionResponse>(request, options, cancellationToken); } #endregion #region DescribeAutoScalingConfiguration internal virtual DescribeAutoScalingConfigurationResponse DescribeAutoScalingConfiguration(DescribeAutoScalingConfigurationRequest request) { var options = new InvokeOptions(); options.RequestMarshaller = DescribeAutoScalingConfigurationRequestMarshaller.Instance; options.ResponseUnmarshaller = DescribeAutoScalingConfigurationResponseUnmarshaller.Instance; return Invoke<DescribeAutoScalingConfigurationResponse>(request, options); } /// <summary> /// Return a full description of an App Runner automatic scaling configuration resource. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DescribeAutoScalingConfiguration service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DescribeAutoScalingConfiguration service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DescribeAutoScalingConfiguration">REST API Reference for DescribeAutoScalingConfiguration Operation</seealso> public virtual Task<DescribeAutoScalingConfigurationResponse> DescribeAutoScalingConfigurationAsync(DescribeAutoScalingConfigurationRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var options = new InvokeOptions(); options.RequestMarshaller = DescribeAutoScalingConfigurationRequestMarshaller.Instance; options.ResponseUnmarshaller = DescribeAutoScalingConfigurationResponseUnmarshaller.Instance; return InvokeAsync<DescribeAutoScalingConfigurationResponse>(request, options, cancellationToken); } #endregion #region DescribeCustomDomains internal virtual DescribeCustomDomainsResponse DescribeCustomDomains(DescribeCustomDomainsRequest request) { var options = new InvokeOptions(); options.RequestMarshaller = DescribeCustomDomainsRequestMarshaller.Instance; options.ResponseUnmarshaller = DescribeCustomDomainsResponseUnmarshaller.Instance; return Invoke<DescribeCustomDomainsResponse>(request, options); } /// <summary> /// Return a description of custom domain names that are associated with an App Runner /// service. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DescribeCustomDomains service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DescribeCustomDomains service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DescribeCustomDomains">REST API Reference for DescribeCustomDomains Operation</seealso> public virtual Task<DescribeCustomDomainsResponse> DescribeCustomDomainsAsync(DescribeCustomDomainsRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var options = new InvokeOptions(); options.RequestMarshaller = DescribeCustomDomainsRequestMarshaller.Instance; options.ResponseUnmarshaller = DescribeCustomDomainsResponseUnmarshaller.Instance; return InvokeAsync<DescribeCustomDomainsResponse>(request, options, cancellationToken); } #endregion #region DescribeObservabilityConfiguration internal virtual DescribeObservabilityConfigurationResponse DescribeObservabilityConfiguration(DescribeObservabilityConfigurationRequest request) { var options = new InvokeOptions(); options.RequestMarshaller = DescribeObservabilityConfigurationRequestMarshaller.Instance; options.ResponseUnmarshaller = DescribeObservabilityConfigurationResponseUnmarshaller.Instance; return Invoke<DescribeObservabilityConfigurationResponse>(request, options); } /// <summary> /// Return a full description of an App Runner observability configuration resource. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DescribeObservabilityConfiguration service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DescribeObservabilityConfiguration service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DescribeObservabilityConfiguration">REST API Reference for DescribeObservabilityConfiguration Operation</seealso> public virtual Task<DescribeObservabilityConfigurationResponse> DescribeObservabilityConfigurationAsync(DescribeObservabilityConfigurationRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var options = new InvokeOptions(); options.RequestMarshaller = DescribeObservabilityConfigurationRequestMarshaller.Instance; options.ResponseUnmarshaller = DescribeObservabilityConfigurationResponseUnmarshaller.Instance; return InvokeAsync<DescribeObservabilityConfigurationResponse>(request, options, cancellationToken); } #endregion #region DescribeService internal virtual DescribeServiceResponse DescribeService(DescribeServiceRequest request) { var options = new InvokeOptions(); options.RequestMarshaller = DescribeServiceRequestMarshaller.Instance; options.ResponseUnmarshaller = DescribeServiceResponseUnmarshaller.Instance; return Invoke<DescribeServiceResponse>(request, options); } /// <summary> /// Return a full description of an App Runner service. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DescribeService service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DescribeService service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DescribeService">REST API Reference for DescribeService Operation</seealso> public virtual Task<DescribeServiceResponse> DescribeServiceAsync(DescribeServiceRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var options = new InvokeOptions(); options.RequestMarshaller = DescribeServiceRequestMarshaller.Instance; options.ResponseUnmarshaller = DescribeServiceResponseUnmarshaller.Instance; return InvokeAsync<DescribeServiceResponse>(request, options, cancellationToken); } #endregion #region DescribeVpcConnector internal virtual DescribeVpcConnectorResponse DescribeVpcConnector(DescribeVpcConnectorRequest request) { var options = new InvokeOptions(); options.RequestMarshaller = DescribeVpcConnectorRequestMarshaller.Instance; options.ResponseUnmarshaller = DescribeVpcConnectorResponseUnmarshaller.Instance; return Invoke<DescribeVpcConnectorResponse>(request, options); } /// <summary> /// Return a description of an App Runner VPC connector resource. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DescribeVpcConnector service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DescribeVpcConnector service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DescribeVpcConnector">REST API Reference for DescribeVpcConnector Operation</seealso> public virtual Task<DescribeVpcConnectorResponse> DescribeVpcConnectorAsync(DescribeVpcConnectorRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var options = new InvokeOptions(); options.RequestMarshaller = DescribeVpcConnectorRequestMarshaller.Instance; options.ResponseUnmarshaller = DescribeVpcConnectorResponseUnmarshaller.Instance; return InvokeAsync<DescribeVpcConnectorResponse>(request, options, cancellationToken); } #endregion #region DescribeVpcIngressConnection internal virtual DescribeVpcIngressConnectionResponse DescribeVpcIngressConnection(DescribeVpcIngressConnectionRequest request) { var options = new InvokeOptions(); options.RequestMarshaller = DescribeVpcIngressConnectionRequestMarshaller.Instance; options.ResponseUnmarshaller = DescribeVpcIngressConnectionResponseUnmarshaller.Instance; return Invoke<DescribeVpcIngressConnectionResponse>(request, options); } /// <summary> /// Return a full description of an App Runner VPC Ingress Connection resource. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DescribeVpcIngressConnection service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DescribeVpcIngressConnection service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DescribeVpcIngressConnection">REST API Reference for DescribeVpcIngressConnection Operation</seealso> public virtual Task<DescribeVpcIngressConnectionResponse> DescribeVpcIngressConnectionAsync(DescribeVpcIngressConnectionRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var options = new InvokeOptions(); options.RequestMarshaller = DescribeVpcIngressConnectionRequestMarshaller.Instance; options.ResponseUnmarshaller = DescribeVpcIngressConnectionResponseUnmarshaller.Instance; return InvokeAsync<DescribeVpcIngressConnectionResponse>(request, options, cancellationToken); } #endregion #region DisassociateCustomDomain internal virtual DisassociateCustomDomainResponse DisassociateCustomDomain(DisassociateCustomDomainRequest request) { var options = new InvokeOptions(); options.RequestMarshaller = DisassociateCustomDomainRequestMarshaller.Instance; options.ResponseUnmarshaller = DisassociateCustomDomainResponseUnmarshaller.Instance; return Invoke<DisassociateCustomDomainResponse>(request, options); } /// <summary> /// Disassociate a custom domain name from an App Runner service. /// /// /// <para> /// Certificates tracking domain validity are associated with a custom domain and are /// stored in <a href="https://docs.aws.amazon.com/acm/latest/userguide">AWS Certificate /// Manager (ACM)</a>. 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. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the DisassociateCustomDomain service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DisassociateCustomDomain service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidStateException"> /// You can't perform this action when the resource is in its current state. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DisassociateCustomDomain">REST API Reference for DisassociateCustomDomain Operation</seealso> public virtual Task<DisassociateCustomDomainResponse> DisassociateCustomDomainAsync(DisassociateCustomDomainRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var options = new InvokeOptions(); options.RequestMarshaller = DisassociateCustomDomainRequestMarshaller.Instance; options.ResponseUnmarshaller = DisassociateCustomDomainResponseUnmarshaller.Instance; return InvokeAsync<DisassociateCustomDomainResponse>(request, options, cancellationToken); } #endregion #region ListAutoScalingConfigurations internal virtual ListAutoScalingConfigurationsResponse ListAutoScalingConfigurations(ListAutoScalingConfigurationsRequest request) { var options = new InvokeOptions(); options.RequestMarshaller = ListAutoScalingConfigurationsRequestMarshaller.Instance; options.ResponseUnmarshaller = ListAutoScalingConfigurationsResponseUnmarshaller.Instance; return Invoke<ListAutoScalingConfigurationsResponse>(request, options); } /// <summary> /// 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. /// /// /// <para> /// To retrieve a full description of a particular configuration revision, call and provide /// one of the ARNs returned by <code>ListAutoScalingConfigurations</code>. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListAutoScalingConfigurations service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the ListAutoScalingConfigurations service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/ListAutoScalingConfigurations">REST API Reference for ListAutoScalingConfigurations Operation</seealso> public virtual Task<ListAutoScalingConfigurationsResponse> ListAutoScalingConfigurationsAsync(ListAutoScalingConfigurationsRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var options = new InvokeOptions(); options.RequestMarshaller = ListAutoScalingConfigurationsRequestMarshaller.Instance; options.ResponseUnmarshaller = ListAutoScalingConfigurationsResponseUnmarshaller.Instance; return InvokeAsync<ListAutoScalingConfigurationsResponse>(request, options, cancellationToken); } #endregion #region ListConnections internal virtual ListConnectionsResponse ListConnections(ListConnectionsRequest request) { var options = new InvokeOptions(); options.RequestMarshaller = ListConnectionsRequestMarshaller.Instance; options.ResponseUnmarshaller = ListConnectionsResponseUnmarshaller.Instance; return Invoke<ListConnectionsResponse>(request, options); } /// <summary> /// Returns a list of App Runner connections that are associated with your Amazon Web /// Services account. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListConnections service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the ListConnections service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/ListConnections">REST API Reference for ListConnections Operation</seealso> public virtual Task<ListConnectionsResponse> ListConnectionsAsync(ListConnectionsRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var options = new InvokeOptions(); options.RequestMarshaller = ListConnectionsRequestMarshaller.Instance; options.ResponseUnmarshaller = ListConnectionsResponseUnmarshaller.Instance; return InvokeAsync<ListConnectionsResponse>(request, options, cancellationToken); } #endregion #region ListObservabilityConfigurations internal virtual ListObservabilityConfigurationsResponse ListObservabilityConfigurations(ListObservabilityConfigurationsRequest request) { var options = new InvokeOptions(); options.RequestMarshaller = ListObservabilityConfigurationsRequestMarshaller.Instance; options.ResponseUnmarshaller = ListObservabilityConfigurationsResponseUnmarshaller.Instance; return Invoke<ListObservabilityConfigurationsResponse>(request, options); } /// <summary> /// 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. /// /// /// <para> /// To retrieve a full description of a particular configuration revision, call and provide /// one of the ARNs returned by <code>ListObservabilityConfigurations</code>. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListObservabilityConfigurations service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the ListObservabilityConfigurations service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/ListObservabilityConfigurations">REST API Reference for ListObservabilityConfigurations Operation</seealso> public virtual Task<ListObservabilityConfigurationsResponse> ListObservabilityConfigurationsAsync(ListObservabilityConfigurationsRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var options = new InvokeOptions(); options.RequestMarshaller = ListObservabilityConfigurationsRequestMarshaller.Instance; options.ResponseUnmarshaller = ListObservabilityConfigurationsResponseUnmarshaller.Instance; return InvokeAsync<ListObservabilityConfigurationsResponse>(request, options, cancellationToken); } #endregion #region ListOperations internal virtual ListOperationsResponse ListOperations(ListOperationsRequest request) { var options = new InvokeOptions(); options.RequestMarshaller = ListOperationsRequestMarshaller.Instance; options.ResponseUnmarshaller = ListOperationsResponseUnmarshaller.Instance; return Invoke<ListOperationsResponse>(request, options); } /// <summary> /// Return a list of operations that occurred on an App Runner service. /// /// /// <para> /// The resulting list of <a>OperationSummary</a> objects is sorted in reverse chronological /// order. The first object on the list represents the last started operation. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListOperations service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the ListOperations service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/ListOperations">REST API Reference for ListOperations Operation</seealso> public virtual Task<ListOperationsResponse> ListOperationsAsync(ListOperationsRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var options = new InvokeOptions(); options.RequestMarshaller = ListOperationsRequestMarshaller.Instance; options.ResponseUnmarshaller = ListOperationsResponseUnmarshaller.Instance; return InvokeAsync<ListOperationsResponse>(request, options, cancellationToken); } #endregion #region ListServices internal virtual ListServicesResponse ListServices(ListServicesRequest request) { var options = new InvokeOptions(); options.RequestMarshaller = ListServicesRequestMarshaller.Instance; options.ResponseUnmarshaller = ListServicesResponseUnmarshaller.Instance; return Invoke<ListServicesResponse>(request, options); } /// <summary> /// Returns a list of running App Runner services in your Amazon Web Services account. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListServices service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the ListServices service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/ListServices">REST API Reference for ListServices Operation</seealso> public virtual Task<ListServicesResponse> ListServicesAsync(ListServicesRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var options = new InvokeOptions(); options.RequestMarshaller = ListServicesRequestMarshaller.Instance; options.ResponseUnmarshaller = ListServicesResponseUnmarshaller.Instance; return InvokeAsync<ListServicesResponse>(request, options, cancellationToken); } #endregion #region ListTagsForResource internal virtual ListTagsForResourceResponse ListTagsForResource(ListTagsForResourceRequest request) { var options = new InvokeOptions(); options.RequestMarshaller = ListTagsForResourceRequestMarshaller.Instance; options.ResponseUnmarshaller = ListTagsForResourceResponseUnmarshaller.Instance; return Invoke<ListTagsForResourceResponse>(request, options); } /// <summary> /// List tags that are associated with for an App Runner resource. The response contains /// a list of tag key-value pairs. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListTagsForResource service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the ListTagsForResource service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidStateException"> /// You can't perform this action when the resource is in its current state. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/ListTagsForResource">REST API Reference for ListTagsForResource Operation</seealso> public virtual Task<ListTagsForResourceResponse> ListTagsForResourceAsync(ListTagsForResourceRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var options = new InvokeOptions(); options.RequestMarshaller = ListTagsForResourceRequestMarshaller.Instance; options.ResponseUnmarshaller = ListTagsForResourceResponseUnmarshaller.Instance; return InvokeAsync<ListTagsForResourceResponse>(request, options, cancellationToken); } #endregion #region ListVpcConnectors internal virtual ListVpcConnectorsResponse ListVpcConnectors(ListVpcConnectorsRequest request) { var options = new InvokeOptions(); options.RequestMarshaller = ListVpcConnectorsRequestMarshaller.Instance; options.ResponseUnmarshaller = ListVpcConnectorsResponseUnmarshaller.Instance; return Invoke<ListVpcConnectorsResponse>(request, options); } /// <summary> /// Returns a list of App Runner VPC connectors in your Amazon Web Services account. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListVpcConnectors service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the ListVpcConnectors service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/ListVpcConnectors">REST API Reference for ListVpcConnectors Operation</seealso> public virtual Task<ListVpcConnectorsResponse> ListVpcConnectorsAsync(ListVpcConnectorsRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var options = new InvokeOptions(); options.RequestMarshaller = ListVpcConnectorsRequestMarshaller.Instance; options.ResponseUnmarshaller = ListVpcConnectorsResponseUnmarshaller.Instance; return InvokeAsync<ListVpcConnectorsResponse>(request, options, cancellationToken); } #endregion #region ListVpcIngressConnections internal virtual ListVpcIngressConnectionsResponse ListVpcIngressConnections(ListVpcIngressConnectionsRequest request) { var options = new InvokeOptions(); options.RequestMarshaller = ListVpcIngressConnectionsRequestMarshaller.Instance; options.ResponseUnmarshaller = ListVpcIngressConnectionsResponseUnmarshaller.Instance; return Invoke<ListVpcIngressConnectionsResponse>(request, options); } /// <summary> /// Return a list of App Runner VPC Ingress Connections in your Amazon Web Services account. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListVpcIngressConnections service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the ListVpcIngressConnections service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/ListVpcIngressConnections">REST API Reference for ListVpcIngressConnections Operation</seealso> public virtual Task<ListVpcIngressConnectionsResponse> ListVpcIngressConnectionsAsync(ListVpcIngressConnectionsRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var options = new InvokeOptions(); options.RequestMarshaller = ListVpcIngressConnectionsRequestMarshaller.Instance; options.ResponseUnmarshaller = ListVpcIngressConnectionsResponseUnmarshaller.Instance; return InvokeAsync<ListVpcIngressConnectionsResponse>(request, options, cancellationToken); } #endregion #region PauseService internal virtual PauseServiceResponse PauseService(PauseServiceRequest request) { var options = new InvokeOptions(); options.RequestMarshaller = PauseServiceRequestMarshaller.Instance; options.ResponseUnmarshaller = PauseServiceResponseUnmarshaller.Instance; return Invoke<PauseServiceResponse>(request, options); } /// <summary> /// 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). /// /// /// <para> /// This is an asynchronous operation. On a successful call, you can use the returned /// <code>OperationId</code> and the <a>ListOperations</a> call to track the operation's /// progress. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the PauseService service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the PauseService service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidStateException"> /// You can't perform this action when the resource is in its current state. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/PauseService">REST API Reference for PauseService Operation</seealso> public virtual Task<PauseServiceResponse> PauseServiceAsync(PauseServiceRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var options = new InvokeOptions(); options.RequestMarshaller = PauseServiceRequestMarshaller.Instance; options.ResponseUnmarshaller = PauseServiceResponseUnmarshaller.Instance; return InvokeAsync<PauseServiceResponse>(request, options, cancellationToken); } #endregion #region ResumeService internal virtual ResumeServiceResponse ResumeService(ResumeServiceRequest request) { var options = new InvokeOptions(); options.RequestMarshaller = ResumeServiceRequestMarshaller.Instance; options.ResponseUnmarshaller = ResumeServiceResponseUnmarshaller.Instance; return Invoke<ResumeServiceResponse>(request, options); } /// <summary> /// Resume an active App Runner service. App Runner provisions compute capacity for the /// service. /// /// /// <para> /// This is an asynchronous operation. On a successful call, you can use the returned /// <code>OperationId</code> and the <a>ListOperations</a> call to track the operation's /// progress. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the ResumeService service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the ResumeService service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidStateException"> /// You can't perform this action when the resource is in its current state. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/ResumeService">REST API Reference for ResumeService Operation</seealso> public virtual Task<ResumeServiceResponse> ResumeServiceAsync(ResumeServiceRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var options = new InvokeOptions(); options.RequestMarshaller = ResumeServiceRequestMarshaller.Instance; options.ResponseUnmarshaller = ResumeServiceResponseUnmarshaller.Instance; return InvokeAsync<ResumeServiceResponse>(request, options, cancellationToken); } #endregion #region StartDeployment internal virtual StartDeploymentResponse StartDeployment(StartDeploymentRequest request) { var options = new InvokeOptions(); options.RequestMarshaller = StartDeploymentRequestMarshaller.Instance; options.ResponseUnmarshaller = StartDeploymentResponseUnmarshaller.Instance; return Invoke<StartDeploymentResponse>(request, options); } /// <summary> /// 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. /// /// /// <para> /// 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. /// </para> /// /// <para> /// This is an asynchronous operation. On a successful call, you can use the returned /// <code>OperationId</code> and the <a>ListOperations</a> call to track the operation's /// progress. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the StartDeployment service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the StartDeployment service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/StartDeployment">REST API Reference for StartDeployment Operation</seealso> public virtual Task<StartDeploymentResponse> StartDeploymentAsync(StartDeploymentRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var options = new InvokeOptions(); options.RequestMarshaller = StartDeploymentRequestMarshaller.Instance; options.ResponseUnmarshaller = StartDeploymentResponseUnmarshaller.Instance; return InvokeAsync<StartDeploymentResponse>(request, options, cancellationToken); } #endregion #region TagResource internal virtual TagResourceResponse TagResource(TagResourceRequest request) { var options = new InvokeOptions(); options.RequestMarshaller = TagResourceRequestMarshaller.Instance; options.ResponseUnmarshaller = TagResourceResponseUnmarshaller.Instance; return Invoke<TagResourceResponse>(request, options); } /// <summary> /// Add tags to, or update the tag values of, an App Runner resource. A tag is a key-value /// pair. /// </summary> /// <param name="request">Container for the necessary parameters to execute the TagResource service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the TagResource service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidStateException"> /// You can't perform this action when the resource is in its current state. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/TagResource">REST API Reference for TagResource Operation</seealso> public virtual Task<TagResourceResponse> TagResourceAsync(TagResourceRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var options = new InvokeOptions(); options.RequestMarshaller = TagResourceRequestMarshaller.Instance; options.ResponseUnmarshaller = TagResourceResponseUnmarshaller.Instance; return InvokeAsync<TagResourceResponse>(request, options, cancellationToken); } #endregion #region UntagResource internal virtual UntagResourceResponse UntagResource(UntagResourceRequest request) { var options = new InvokeOptions(); options.RequestMarshaller = UntagResourceRequestMarshaller.Instance; options.ResponseUnmarshaller = UntagResourceResponseUnmarshaller.Instance; return Invoke<UntagResourceResponse>(request, options); } /// <summary> /// Remove tags from an App Runner resource. /// </summary> /// <param name="request">Container for the necessary parameters to execute the UntagResource service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the UntagResource service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidStateException"> /// You can't perform this action when the resource is in its current state. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/UntagResource">REST API Reference for UntagResource Operation</seealso> public virtual Task<UntagResourceResponse> UntagResourceAsync(UntagResourceRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var options = new InvokeOptions(); options.RequestMarshaller = UntagResourceRequestMarshaller.Instance; options.ResponseUnmarshaller = UntagResourceResponseUnmarshaller.Instance; return InvokeAsync<UntagResourceResponse>(request, options, cancellationToken); } #endregion #region UpdateService internal virtual UpdateServiceResponse UpdateService(UpdateServiceRequest request) { var options = new InvokeOptions(); options.RequestMarshaller = UpdateServiceRequestMarshaller.Instance; options.ResponseUnmarshaller = UpdateServiceResponseUnmarshaller.Instance; return Invoke<UpdateServiceResponse>(request, options); } /// <summary> /// 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. /// /// /// <para> /// To update the tags applied to your service, use the separate actions <a>TagResource</a> /// and <a>UntagResource</a>. /// </para> /// /// <para> /// This is an asynchronous operation. On a successful call, you can use the returned /// <code>OperationId</code> and the <a>ListOperations</a> call to track the operation's /// progress. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the UpdateService service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the UpdateService service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidStateException"> /// You can't perform this action when the resource is in its current state. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/UpdateService">REST API Reference for UpdateService Operation</seealso> public virtual Task<UpdateServiceResponse> UpdateServiceAsync(UpdateServiceRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var options = new InvokeOptions(); options.RequestMarshaller = UpdateServiceRequestMarshaller.Instance; options.ResponseUnmarshaller = UpdateServiceResponseUnmarshaller.Instance; return InvokeAsync<UpdateServiceResponse>(request, options, cancellationToken); } #endregion #region UpdateVpcIngressConnection internal virtual UpdateVpcIngressConnectionResponse UpdateVpcIngressConnection(UpdateVpcIngressConnectionRequest request) { var options = new InvokeOptions(); options.RequestMarshaller = UpdateVpcIngressConnectionRequestMarshaller.Instance; options.ResponseUnmarshaller = UpdateVpcIngressConnectionResponseUnmarshaller.Instance; return Invoke<UpdateVpcIngressConnectionResponse>(request, options); } /// <summary> /// Update an existing App Runner VPC Ingress Connection resource. The VPC Ingress Connection /// must be in one of the following states to be updated: /// /// <ul> <li> /// <para> /// AVAILABLE /// </para> /// </li> <li> /// <para> /// FAILED_CREATION /// </para> /// </li> <li> /// <para> /// FAILED_UPDATE /// </para> /// </li> </ul> /// </summary> /// <param name="request">Container for the necessary parameters to execute the UpdateVpcIngressConnection service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the UpdateVpcIngressConnection service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidStateException"> /// You can't perform this action when the resource is in its current state. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/UpdateVpcIngressConnection">REST API Reference for UpdateVpcIngressConnection Operation</seealso> public virtual Task<UpdateVpcIngressConnectionResponse> UpdateVpcIngressConnectionAsync(UpdateVpcIngressConnectionRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var options = new InvokeOptions(); options.RequestMarshaller = UpdateVpcIngressConnectionRequestMarshaller.Instance; options.ResponseUnmarshaller = UpdateVpcIngressConnectionResponseUnmarshaller.Instance; return InvokeAsync<UpdateVpcIngressConnectionResponse>(request, options, cancellationToken); } #endregion } }
2,139
aws-sdk-net
aws
C#
/* * 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.Threading; using System.Threading.Tasks; using System.Collections.Generic; using Amazon.Runtime; using Amazon.AppRunner.Model; namespace Amazon.AppRunner { /// <summary> /// Interface for accessing AppRunner /// /// App Runner /// <para> /// 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. /// </para> /// /// <para> /// 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. /// </para> /// /// <para> /// For more information about App Runner, see the <a href="https://docs.aws.amazon.com/apprunner/latest/dg/">App /// Runner Developer Guide</a>. For release information, see the <a href="https://docs.aws.amazon.com/apprunner/latest/relnotes/">App /// Runner Release Notes</a>. /// </para> /// /// <para> /// 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 <a /// href="http://aws.amazon.com/tools/">Tools for Amazon Web Services</a>. /// </para> /// /// <para> /// <b>Endpoints</b> /// </para> /// /// <para> /// For a list of Region-specific endpoints that App Runner supports, see <a href="https://docs.aws.amazon.com/general/latest/gr/apprunner.html">App /// Runner endpoints and quotas</a> in the <i>Amazon Web Services General Reference</i>. /// </para> /// </summary> public partial interface IAmazonAppRunner : IAmazonService, IDisposable { #if AWS_ASYNC_ENUMERABLES_API /// <summary> /// Paginators for the service /// </summary> IAppRunnerPaginatorFactory Paginators { get; } #endif #region AssociateCustomDomain /// <summary> /// Associate your own domain name with the App Runner subdomain URL of your App Runner /// service. /// /// /// <para> /// After you call <code>AssociateCustomDomain</code> and receive a successful response, /// use the information in the <a>CustomDomain</a> 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 <a href="https://docs.aws.amazon.com/acm/latest/userguide">AWS Certificate Manager /// (ACM)</a>. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the AssociateCustomDomain service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the AssociateCustomDomain service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidStateException"> /// You can't perform this action when the resource is in its current state. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/AssociateCustomDomain">REST API Reference for AssociateCustomDomain Operation</seealso> Task<AssociateCustomDomainResponse> AssociateCustomDomainAsync(AssociateCustomDomainRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)); #endregion #region CreateAutoScalingConfiguration /// <summary> /// 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. /// /// /// <para> /// Create multiple revisions of a configuration by calling this action multiple times /// using the same <code>AutoScalingConfigurationName</code>. The call returns incremental /// <code>AutoScalingConfigurationRevision</code> 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. /// </para> /// /// <para> /// Configure a higher <code>MinSize</code> 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. /// </para> /// /// <para> /// Configure a lower <code>MaxSize</code> to control your cost. The tradeoff is lower /// responsiveness during peak demand. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the CreateAutoScalingConfiguration service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the CreateAutoScalingConfiguration service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ServiceQuotaExceededException"> /// App Runner can't create this resource. You've reached your account quota for this /// resource type. /// /// /// <para> /// For App Runner per-resource quotas, see <a href="https://docs.aws.amazon.com/general/latest/gr/apprunner.html">App /// Runner endpoints and quotas</a> in the <i>Amazon Web Services General Reference</i>. /// </para> /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/CreateAutoScalingConfiguration">REST API Reference for CreateAutoScalingConfiguration Operation</seealso> Task<CreateAutoScalingConfigurationResponse> CreateAutoScalingConfigurationAsync(CreateAutoScalingConfigurationRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)); #endregion #region CreateConnection /// <summary> /// 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. /// /// /// <para> /// 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. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the CreateConnection service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the CreateConnection service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ServiceQuotaExceededException"> /// App Runner can't create this resource. You've reached your account quota for this /// resource type. /// /// /// <para> /// For App Runner per-resource quotas, see <a href="https://docs.aws.amazon.com/general/latest/gr/apprunner.html">App /// Runner endpoints and quotas</a> in the <i>Amazon Web Services General Reference</i>. /// </para> /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/CreateConnection">REST API Reference for CreateConnection Operation</seealso> Task<CreateConnectionResponse> CreateConnectionAsync(CreateConnectionRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)); #endregion #region CreateObservabilityConfiguration /// <summary> /// 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. /// /// /// <para> /// Create multiple revisions of a configuration by calling this action multiple times /// using the same <code>ObservabilityConfigurationName</code>. The call returns incremental /// <code>ObservabilityConfigurationRevision</code> 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. /// </para> /// /// <para> /// 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, <code>TraceConfiguration</code>). /// If you don't specify a feature parameter, App Runner doesn't enable the feature. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the CreateObservabilityConfiguration service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the CreateObservabilityConfiguration service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ServiceQuotaExceededException"> /// App Runner can't create this resource. You've reached your account quota for this /// resource type. /// /// /// <para> /// For App Runner per-resource quotas, see <a href="https://docs.aws.amazon.com/general/latest/gr/apprunner.html">App /// Runner endpoints and quotas</a> in the <i>Amazon Web Services General Reference</i>. /// </para> /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/CreateObservabilityConfiguration">REST API Reference for CreateObservabilityConfiguration Operation</seealso> Task<CreateObservabilityConfigurationResponse> CreateObservabilityConfigurationAsync(CreateObservabilityConfigurationRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)); #endregion #region CreateService /// <summary> /// Create an App Runner service. After the service is created, the action also automatically /// starts a deployment. /// /// /// <para> /// This is an asynchronous operation. On a successful call, you can use the returned /// <code>OperationId</code> and the <a href="https://docs.aws.amazon.com/apprunner/latest/api/API_ListOperations.html">ListOperations</a> /// call to track the operation's progress. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the CreateService service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the CreateService service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ServiceQuotaExceededException"> /// App Runner can't create this resource. You've reached your account quota for this /// resource type. /// /// /// <para> /// For App Runner per-resource quotas, see <a href="https://docs.aws.amazon.com/general/latest/gr/apprunner.html">App /// Runner endpoints and quotas</a> in the <i>Amazon Web Services General Reference</i>. /// </para> /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/CreateService">REST API Reference for CreateService Operation</seealso> Task<CreateServiceResponse> CreateServiceAsync(CreateServiceRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)); #endregion #region CreateVpcConnector /// <summary> /// 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). /// </summary> /// <param name="request">Container for the necessary parameters to execute the CreateVpcConnector service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the CreateVpcConnector service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ServiceQuotaExceededException"> /// App Runner can't create this resource. You've reached your account quota for this /// resource type. /// /// /// <para> /// For App Runner per-resource quotas, see <a href="https://docs.aws.amazon.com/general/latest/gr/apprunner.html">App /// Runner endpoints and quotas</a> in the <i>Amazon Web Services General Reference</i>. /// </para> /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/CreateVpcConnector">REST API Reference for CreateVpcConnector Operation</seealso> Task<CreateVpcConnectorResponse> CreateVpcConnectorAsync(CreateVpcConnectorRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)); #endregion #region CreateVpcIngressConnection /// <summary> /// 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. /// </summary> /// <param name="request">Container for the necessary parameters to execute the CreateVpcIngressConnection service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the CreateVpcIngressConnection service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidStateException"> /// You can't perform this action when the resource is in its current state. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ServiceQuotaExceededException"> /// App Runner can't create this resource. You've reached your account quota for this /// resource type. /// /// /// <para> /// For App Runner per-resource quotas, see <a href="https://docs.aws.amazon.com/general/latest/gr/apprunner.html">App /// Runner endpoints and quotas</a> in the <i>Amazon Web Services General Reference</i>. /// </para> /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/CreateVpcIngressConnection">REST API Reference for CreateVpcIngressConnection Operation</seealso> Task<CreateVpcIngressConnectionResponse> CreateVpcIngressConnectionAsync(CreateVpcIngressConnectionRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)); #endregion #region DeleteAutoScalingConfiguration /// <summary> /// 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. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DeleteAutoScalingConfiguration service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DeleteAutoScalingConfiguration service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DeleteAutoScalingConfiguration">REST API Reference for DeleteAutoScalingConfiguration Operation</seealso> Task<DeleteAutoScalingConfigurationResponse> DeleteAutoScalingConfigurationAsync(DeleteAutoScalingConfigurationRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)); #endregion #region DeleteConnection /// <summary> /// 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 <code>DeleteConnection</code> /// action fails. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DeleteConnection service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DeleteConnection service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DeleteConnection">REST API Reference for DeleteConnection Operation</seealso> Task<DeleteConnectionResponse> DeleteConnectionAsync(DeleteConnectionRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)); #endregion #region DeleteObservabilityConfiguration /// <summary> /// 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. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DeleteObservabilityConfiguration service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DeleteObservabilityConfiguration service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DeleteObservabilityConfiguration">REST API Reference for DeleteObservabilityConfiguration Operation</seealso> Task<DeleteObservabilityConfigurationResponse> DeleteObservabilityConfigurationAsync(DeleteObservabilityConfigurationRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)); #endregion #region DeleteService /// <summary> /// Delete an App Runner service. /// /// /// <para> /// This is an asynchronous operation. On a successful call, you can use the returned /// <code>OperationId</code> and the <a>ListOperations</a> call to track the operation's /// progress. /// </para> /// <note> /// <para> /// Make sure that you don't have any active VPCIngressConnections associated with the /// service you want to delete. /// </para> /// </note> /// </summary> /// <param name="request">Container for the necessary parameters to execute the DeleteService service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DeleteService service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidStateException"> /// You can't perform this action when the resource is in its current state. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DeleteService">REST API Reference for DeleteService Operation</seealso> Task<DeleteServiceResponse> DeleteServiceAsync(DeleteServiceRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)); #endregion #region DeleteVpcConnector /// <summary> /// Delete an App Runner VPC connector resource. You can't delete a connector that's used /// by one or more App Runner services. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DeleteVpcConnector service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DeleteVpcConnector service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DeleteVpcConnector">REST API Reference for DeleteVpcConnector Operation</seealso> Task<DeleteVpcConnectorResponse> DeleteVpcConnectorAsync(DeleteVpcConnectorRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)); #endregion #region DeleteVpcIngressConnection /// <summary> /// 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: /// /// <ul> <li> /// <para> /// <code>AVAILABLE</code> /// </para> /// </li> <li> /// <para> /// <code>FAILED_CREATION</code> /// </para> /// </li> <li> /// <para> /// <code>FAILED_UPDATE</code> /// </para> /// </li> <li> /// <para> /// <code>FAILED_DELETION</code> /// </para> /// </li> </ul> /// </summary> /// <param name="request">Container for the necessary parameters to execute the DeleteVpcIngressConnection service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DeleteVpcIngressConnection service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidStateException"> /// You can't perform this action when the resource is in its current state. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DeleteVpcIngressConnection">REST API Reference for DeleteVpcIngressConnection Operation</seealso> Task<DeleteVpcIngressConnectionResponse> DeleteVpcIngressConnectionAsync(DeleteVpcIngressConnectionRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)); #endregion #region DescribeAutoScalingConfiguration /// <summary> /// Return a full description of an App Runner automatic scaling configuration resource. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DescribeAutoScalingConfiguration service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DescribeAutoScalingConfiguration service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DescribeAutoScalingConfiguration">REST API Reference for DescribeAutoScalingConfiguration Operation</seealso> Task<DescribeAutoScalingConfigurationResponse> DescribeAutoScalingConfigurationAsync(DescribeAutoScalingConfigurationRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)); #endregion #region DescribeCustomDomains /// <summary> /// Return a description of custom domain names that are associated with an App Runner /// service. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DescribeCustomDomains service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DescribeCustomDomains service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DescribeCustomDomains">REST API Reference for DescribeCustomDomains Operation</seealso> Task<DescribeCustomDomainsResponse> DescribeCustomDomainsAsync(DescribeCustomDomainsRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)); #endregion #region DescribeObservabilityConfiguration /// <summary> /// Return a full description of an App Runner observability configuration resource. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DescribeObservabilityConfiguration service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DescribeObservabilityConfiguration service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DescribeObservabilityConfiguration">REST API Reference for DescribeObservabilityConfiguration Operation</seealso> Task<DescribeObservabilityConfigurationResponse> DescribeObservabilityConfigurationAsync(DescribeObservabilityConfigurationRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)); #endregion #region DescribeService /// <summary> /// Return a full description of an App Runner service. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DescribeService service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DescribeService service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DescribeService">REST API Reference for DescribeService Operation</seealso> Task<DescribeServiceResponse> DescribeServiceAsync(DescribeServiceRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)); #endregion #region DescribeVpcConnector /// <summary> /// Return a description of an App Runner VPC connector resource. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DescribeVpcConnector service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DescribeVpcConnector service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DescribeVpcConnector">REST API Reference for DescribeVpcConnector Operation</seealso> Task<DescribeVpcConnectorResponse> DescribeVpcConnectorAsync(DescribeVpcConnectorRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)); #endregion #region DescribeVpcIngressConnection /// <summary> /// Return a full description of an App Runner VPC Ingress Connection resource. /// </summary> /// <param name="request">Container for the necessary parameters to execute the DescribeVpcIngressConnection service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DescribeVpcIngressConnection service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DescribeVpcIngressConnection">REST API Reference for DescribeVpcIngressConnection Operation</seealso> Task<DescribeVpcIngressConnectionResponse> DescribeVpcIngressConnectionAsync(DescribeVpcIngressConnectionRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)); #endregion #region DisassociateCustomDomain /// <summary> /// Disassociate a custom domain name from an App Runner service. /// /// /// <para> /// Certificates tracking domain validity are associated with a custom domain and are /// stored in <a href="https://docs.aws.amazon.com/acm/latest/userguide">AWS Certificate /// Manager (ACM)</a>. 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. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the DisassociateCustomDomain service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the DisassociateCustomDomain service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidStateException"> /// You can't perform this action when the resource is in its current state. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DisassociateCustomDomain">REST API Reference for DisassociateCustomDomain Operation</seealso> Task<DisassociateCustomDomainResponse> DisassociateCustomDomainAsync(DisassociateCustomDomainRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)); #endregion #region ListAutoScalingConfigurations /// <summary> /// 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. /// /// /// <para> /// To retrieve a full description of a particular configuration revision, call and provide /// one of the ARNs returned by <code>ListAutoScalingConfigurations</code>. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListAutoScalingConfigurations service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the ListAutoScalingConfigurations service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/ListAutoScalingConfigurations">REST API Reference for ListAutoScalingConfigurations Operation</seealso> Task<ListAutoScalingConfigurationsResponse> ListAutoScalingConfigurationsAsync(ListAutoScalingConfigurationsRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)); #endregion #region ListConnections /// <summary> /// Returns a list of App Runner connections that are associated with your Amazon Web /// Services account. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListConnections service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the ListConnections service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/ListConnections">REST API Reference for ListConnections Operation</seealso> Task<ListConnectionsResponse> ListConnectionsAsync(ListConnectionsRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)); #endregion #region ListObservabilityConfigurations /// <summary> /// 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. /// /// /// <para> /// To retrieve a full description of a particular configuration revision, call and provide /// one of the ARNs returned by <code>ListObservabilityConfigurations</code>. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListObservabilityConfigurations service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the ListObservabilityConfigurations service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/ListObservabilityConfigurations">REST API Reference for ListObservabilityConfigurations Operation</seealso> Task<ListObservabilityConfigurationsResponse> ListObservabilityConfigurationsAsync(ListObservabilityConfigurationsRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)); #endregion #region ListOperations /// <summary> /// Return a list of operations that occurred on an App Runner service. /// /// /// <para> /// The resulting list of <a>OperationSummary</a> objects is sorted in reverse chronological /// order. The first object on the list represents the last started operation. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListOperations service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the ListOperations service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/ListOperations">REST API Reference for ListOperations Operation</seealso> Task<ListOperationsResponse> ListOperationsAsync(ListOperationsRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)); #endregion #region ListServices /// <summary> /// Returns a list of running App Runner services in your Amazon Web Services account. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListServices service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the ListServices service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/ListServices">REST API Reference for ListServices Operation</seealso> Task<ListServicesResponse> ListServicesAsync(ListServicesRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)); #endregion #region ListTagsForResource /// <summary> /// List tags that are associated with for an App Runner resource. The response contains /// a list of tag key-value pairs. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListTagsForResource service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the ListTagsForResource service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidStateException"> /// You can't perform this action when the resource is in its current state. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/ListTagsForResource">REST API Reference for ListTagsForResource Operation</seealso> Task<ListTagsForResourceResponse> ListTagsForResourceAsync(ListTagsForResourceRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)); #endregion #region ListVpcConnectors /// <summary> /// Returns a list of App Runner VPC connectors in your Amazon Web Services account. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListVpcConnectors service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the ListVpcConnectors service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/ListVpcConnectors">REST API Reference for ListVpcConnectors Operation</seealso> Task<ListVpcConnectorsResponse> ListVpcConnectorsAsync(ListVpcConnectorsRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)); #endregion #region ListVpcIngressConnections /// <summary> /// Return a list of App Runner VPC Ingress Connections in your Amazon Web Services account. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListVpcIngressConnections service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the ListVpcIngressConnections service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/ListVpcIngressConnections">REST API Reference for ListVpcIngressConnections Operation</seealso> Task<ListVpcIngressConnectionsResponse> ListVpcIngressConnectionsAsync(ListVpcIngressConnectionsRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)); #endregion #region PauseService /// <summary> /// 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). /// /// /// <para> /// This is an asynchronous operation. On a successful call, you can use the returned /// <code>OperationId</code> and the <a>ListOperations</a> call to track the operation's /// progress. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the PauseService service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the PauseService service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidStateException"> /// You can't perform this action when the resource is in its current state. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/PauseService">REST API Reference for PauseService Operation</seealso> Task<PauseServiceResponse> PauseServiceAsync(PauseServiceRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)); #endregion #region ResumeService /// <summary> /// Resume an active App Runner service. App Runner provisions compute capacity for the /// service. /// /// /// <para> /// This is an asynchronous operation. On a successful call, you can use the returned /// <code>OperationId</code> and the <a>ListOperations</a> call to track the operation's /// progress. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the ResumeService service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the ResumeService service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidStateException"> /// You can't perform this action when the resource is in its current state. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/ResumeService">REST API Reference for ResumeService Operation</seealso> Task<ResumeServiceResponse> ResumeServiceAsync(ResumeServiceRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)); #endregion #region StartDeployment /// <summary> /// 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. /// /// /// <para> /// 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. /// </para> /// /// <para> /// This is an asynchronous operation. On a successful call, you can use the returned /// <code>OperationId</code> and the <a>ListOperations</a> call to track the operation's /// progress. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the StartDeployment service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the StartDeployment service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/StartDeployment">REST API Reference for StartDeployment Operation</seealso> Task<StartDeploymentResponse> StartDeploymentAsync(StartDeploymentRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)); #endregion #region TagResource /// <summary> /// Add tags to, or update the tag values of, an App Runner resource. A tag is a key-value /// pair. /// </summary> /// <param name="request">Container for the necessary parameters to execute the TagResource service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the TagResource service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidStateException"> /// You can't perform this action when the resource is in its current state. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/TagResource">REST API Reference for TagResource Operation</seealso> Task<TagResourceResponse> TagResourceAsync(TagResourceRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)); #endregion #region UntagResource /// <summary> /// Remove tags from an App Runner resource. /// </summary> /// <param name="request">Container for the necessary parameters to execute the UntagResource service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the UntagResource service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidStateException"> /// You can't perform this action when the resource is in its current state. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/UntagResource">REST API Reference for UntagResource Operation</seealso> Task<UntagResourceResponse> UntagResourceAsync(UntagResourceRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)); #endregion #region UpdateService /// <summary> /// 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. /// /// /// <para> /// To update the tags applied to your service, use the separate actions <a>TagResource</a> /// and <a>UntagResource</a>. /// </para> /// /// <para> /// This is an asynchronous operation. On a successful call, you can use the returned /// <code>OperationId</code> and the <a>ListOperations</a> call to track the operation's /// progress. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the UpdateService service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the UpdateService service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidStateException"> /// You can't perform this action when the resource is in its current state. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/UpdateService">REST API Reference for UpdateService Operation</seealso> Task<UpdateServiceResponse> UpdateServiceAsync(UpdateServiceRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)); #endregion #region UpdateVpcIngressConnection /// <summary> /// Update an existing App Runner VPC Ingress Connection resource. The VPC Ingress Connection /// must be in one of the following states to be updated: /// /// <ul> <li> /// <para> /// AVAILABLE /// </para> /// </li> <li> /// <para> /// FAILED_CREATION /// </para> /// </li> <li> /// <para> /// FAILED_UPDATE /// </para> /// </li> </ul> /// </summary> /// <param name="request">Container for the necessary parameters to execute the UpdateVpcIngressConnection service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the UpdateVpcIngressConnection service method, as returned by AppRunner.</returns> /// <exception cref="Amazon.AppRunner.Model.InternalServiceErrorException"> /// An unexpected service exception occurred. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidRequestException"> /// 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. /// </exception> /// <exception cref="Amazon.AppRunner.Model.InvalidStateException"> /// You can't perform this action when the resource is in its current state. /// </exception> /// <exception cref="Amazon.AppRunner.Model.ResourceNotFoundException"> /// A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon /// Web Services account. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/UpdateVpcIngressConnection">REST API Reference for UpdateVpcIngressConnection Operation</seealso> Task<UpdateVpcIngressConnectionResponse> UpdateVpcIngressConnectionAsync(UpdateVpcIngressConnectionRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)); #endregion } }
1,354
aws-sdk-net
aws
C#
using System; using System.Reflection; using System.Runtime.InteropServices; using System.Runtime.CompilerServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("AWSSDK.AppRunner")] #if BCL35 [assembly: AssemblyDescription("The Amazon Web Services SDK for .NET (3.5) - AWS App Runner. AWS App Runner is a service that provides a fast, simple, and cost-effective way to deploy from source code or a container image directly to a scalable and secure web application in the AWS Cloud.")] #elif BCL45 [assembly: AssemblyDescription("The Amazon Web Services SDK for .NET (4.5) - AWS App Runner. AWS App Runner is a service that provides a fast, simple, and cost-effective way to deploy from source code or a container image directly to a scalable and secure web application in the AWS Cloud.")] #elif NETSTANDARD20 [assembly: AssemblyDescription("The Amazon Web Services SDK for .NET (NetStandard 2.0) - AWS App Runner. AWS App Runner is a service that provides a fast, simple, and cost-effective way to deploy from source code or a container image directly to a scalable and secure web application in the AWS Cloud.")] #elif NETCOREAPP3_1 [assembly: AssemblyDescription("The Amazon Web Services SDK for .NET (.NET Core 3.1) - AWS App Runner. AWS App Runner is a service that provides a fast, simple, and cost-effective way to deploy from source code or a container image directly to a scalable and secure web application in the AWS Cloud.")] #else #error Unknown platform constant - unable to set correct AssemblyDescription #endif [assembly: AssemblyConfiguration("")] [assembly: AssemblyProduct("Amazon Web Services SDK for .NET")] [assembly: AssemblyCompany("Amazon.com, Inc")] [assembly: AssemblyCopyright("Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] // Setting ComVisible to false makes the types in this assembly not visible // to COM components. If you need to access a type in this assembly from // COM, set the ComVisible attribute to true on that type. [assembly: ComVisible(false)] // Version information for an assembly consists of the following four values: // // Major Version // Minor Version // Build Number // Revision // // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("3.3")] [assembly: AssemblyFileVersion("3.7.105.41")] [assembly: System.CLSCompliant(true)] #if BCL [assembly: System.Security.AllowPartiallyTrustedCallers] #endif
51
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using Amazon.Runtime; using Amazon.Runtime.Internal; using Amazon.Util.Internal; using Amazon.AppStream.Internal; namespace Amazon.AppStream { /// <summary> /// Configuration for accessing Amazon AppStream service /// </summary> [AWSSignerType("v4")] public partial class AmazonAppStreamConfig : ClientConfig { private static readonly string UserAgentString = InternalSDKUtils.BuildUserAgentString("3.7.103.0"); private string _userAgent = UserAgentString; /// <summary> /// Default constructor /// </summary> public AmazonAppStreamConfig() : base(new Amazon.Runtime.Internal.DefaultConfigurationProvider(AmazonAppStreamDefaultConfiguration.GetAllConfigurations())) { this.AuthenticationServiceName = "appstream"; this.EndpointProvider = new AmazonAppStreamEndpointProvider(); } /// <summary> /// The constant used to lookup in the region hash the endpoint. /// </summary> public override string RegionEndpointServiceName { get { return "appstream2"; } } /// <summary> /// Gets the ServiceVersion property. /// </summary> public override string ServiceVersion { get { return "2016-12-01"; } } /// <summary> /// Gets the value of UserAgent property. /// </summary> public override string UserAgent { get { return _userAgent; } } } }
83
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Collections.ObjectModel; using Amazon.Runtime; namespace Amazon.AppStream { /// <summary> /// Configuration for accessing Amazon AppStream service /// </summary> public static class AmazonAppStreamDefaultConfiguration { /// <summary> /// Collection of all <see cref="DefaultConfiguration"/>s supported by /// AppStream /// </summary> public static ReadOnlyCollection<IDefaultConfiguration> GetAllConfigurations() { return new ReadOnlyCollection<IDefaultConfiguration>(new List<IDefaultConfiguration> { Standard, InRegion, CrossRegion, Mobile, Auto, Legacy }); } /// <summary> /// <p>The STANDARD mode provides the latest recommended default values that should be safe to run in most scenarios</p><p>Note that the default values vended from this mode might change as best practices may evolve. As a result, it is encouraged to perform tests when upgrading the SDK</p> /// </summary> public static IDefaultConfiguration Standard {get;} = new DefaultConfiguration { Name = DefaultConfigurationMode.Standard, RetryMode = RequestRetryMode.Standard, StsRegionalEndpoints = StsRegionalEndpointsValue.Regional, S3UsEast1RegionalEndpoint = S3UsEast1RegionalEndpointValue.Regional, // 0:00:03.1 ConnectTimeout = TimeSpan.FromMilliseconds(3100L), // 0:00:03.1 TlsNegotiationTimeout = TimeSpan.FromMilliseconds(3100L), TimeToFirstByteTimeout = null, HttpRequestTimeout = null }; /// <summary> /// <p>The IN_REGION mode builds on the standard mode and includes optimization tailored for applications which call AWS services from within the same AWS region</p><p>Note that the default values vended from this mode might change as best practices may evolve. As a result, it is encouraged to perform tests when upgrading the SDK</p> /// </summary> public static IDefaultConfiguration InRegion {get;} = new DefaultConfiguration { Name = DefaultConfigurationMode.InRegion, RetryMode = RequestRetryMode.Standard, StsRegionalEndpoints = StsRegionalEndpointsValue.Regional, S3UsEast1RegionalEndpoint = S3UsEast1RegionalEndpointValue.Regional, // 0:00:01.1 ConnectTimeout = TimeSpan.FromMilliseconds(1100L), // 0:00:01.1 TlsNegotiationTimeout = TimeSpan.FromMilliseconds(1100L), TimeToFirstByteTimeout = null, HttpRequestTimeout = null }; /// <summary> /// <p>The CROSS_REGION mode builds on the standard mode and includes optimization tailored for applications which call AWS services in a different region</p><p>Note that the default values vended from this mode might change as best practices may evolve. As a result, it is encouraged to perform tests when upgrading the SDK</p> /// </summary> public static IDefaultConfiguration CrossRegion {get;} = new DefaultConfiguration { Name = DefaultConfigurationMode.CrossRegion, RetryMode = RequestRetryMode.Standard, StsRegionalEndpoints = StsRegionalEndpointsValue.Regional, S3UsEast1RegionalEndpoint = S3UsEast1RegionalEndpointValue.Regional, // 0:00:03.1 ConnectTimeout = TimeSpan.FromMilliseconds(3100L), // 0:00:03.1 TlsNegotiationTimeout = TimeSpan.FromMilliseconds(3100L), TimeToFirstByteTimeout = null, HttpRequestTimeout = null }; /// <summary> /// <p>The MOBILE mode builds on the standard mode and includes optimization tailored for mobile applications</p><p>Note that the default values vended from this mode might change as best practices may evolve. As a result, it is encouraged to perform tests when upgrading the SDK</p> /// </summary> public static IDefaultConfiguration Mobile {get;} = new DefaultConfiguration { Name = DefaultConfigurationMode.Mobile, RetryMode = RequestRetryMode.Standard, StsRegionalEndpoints = StsRegionalEndpointsValue.Regional, S3UsEast1RegionalEndpoint = S3UsEast1RegionalEndpointValue.Regional, // 0:00:30 ConnectTimeout = TimeSpan.FromMilliseconds(30000L), // 0:00:30 TlsNegotiationTimeout = TimeSpan.FromMilliseconds(30000L), TimeToFirstByteTimeout = null, HttpRequestTimeout = null }; /// <summary> /// <p>The AUTO mode is an experimental mode that builds on the standard mode. The SDK will attempt to discover the execution environment to determine the appropriate settings automatically.</p><p>Note that the auto detection is heuristics-based and does not guarantee 100% accuracy. STANDARD mode will be used if the execution environment cannot be determined. The auto detection might query <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-metadata.html">EC2 Instance Metadata service</a>, which might introduce latency. Therefore we recommend choosing an explicit defaults_mode instead if startup latency is critical to your application</p> /// </summary> public static IDefaultConfiguration Auto {get;} = new DefaultConfiguration { Name = DefaultConfigurationMode.Auto, RetryMode = RequestRetryMode.Standard, StsRegionalEndpoints = StsRegionalEndpointsValue.Regional, S3UsEast1RegionalEndpoint = S3UsEast1RegionalEndpointValue.Regional, // 0:00:01.1 ConnectTimeout = TimeSpan.FromMilliseconds(1100L), // 0:00:01.1 TlsNegotiationTimeout = TimeSpan.FromMilliseconds(1100L), TimeToFirstByteTimeout = null, HttpRequestTimeout = null }; /// <summary> /// <p>The LEGACY mode provides default settings that vary per SDK and were used prior to establishment of defaults_mode</p> /// </summary> public static IDefaultConfiguration Legacy {get;} = new DefaultConfiguration { Name = DefaultConfigurationMode.Legacy, RetryMode = RequestRetryMode.Legacy, StsRegionalEndpoints = StsRegionalEndpointsValue.Legacy, S3UsEast1RegionalEndpoint = S3UsEast1RegionalEndpointValue.Legacy, ConnectTimeout = null, TlsNegotiationTimeout = null, TimeToFirstByteTimeout = null, HttpRequestTimeout = null }; } }
146
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using Amazon.Runtime; using Amazon.Runtime.Endpoints; namespace Amazon.AppStream.Endpoints { /// <summary> /// Contains parameters used for resolving AppStream endpoints /// Parameters can be sourced from client config and service operations /// Used by internal AppStreamEndpointProvider and AppStreamEndpointResolver /// Can be used by custom EndpointProvider, see ClientConfig.EndpointProvider /// </summary> public class AppStreamEndpointParameters : EndpointParameters { /// <summary> /// AppStreamEndpointParameters constructor /// </summary> public AppStreamEndpointParameters() { UseDualStack = false; UseFIPS = false; } /// <summary> /// Region parameter /// </summary> public string Region { get { return (string)this["Region"]; } set { this["Region"] = value; } } /// <summary> /// UseDualStack parameter /// </summary> public bool? UseDualStack { get { return (bool?)this["UseDualStack"]; } set { this["UseDualStack"] = value; } } /// <summary> /// UseFIPS parameter /// </summary> public bool? UseFIPS { get { return (bool?)this["UseFIPS"]; } set { this["UseFIPS"] = value; } } /// <summary> /// Endpoint parameter /// </summary> public string Endpoint { get { return (string)this["Endpoint"]; } set { this["Endpoint"] = value; } } } }
78
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Net; using System.Text; using Amazon.Runtime; namespace Amazon.AppStream { ///<summary> /// Common exception for the AppStream service. /// </summary> #if !NETSTANDARD [Serializable] #endif public partial class AmazonAppStreamException : AmazonServiceException { /// <summary> /// Construct instance of AmazonAppStreamException /// </summary> /// <param name="message"></param> public AmazonAppStreamException(string message) : base(message) { } /// <summary> /// Construct instance of AmazonAppStreamException /// </summary> /// <param name="message"></param> /// <param name="innerException"></param> public AmazonAppStreamException(string message, Exception innerException) : base(message, innerException) { } /// <summary> /// Construct instance of AmazonAppStreamException /// </summary> /// <param name="innerException"></param> public AmazonAppStreamException(Exception innerException) : base(innerException.Message, innerException) { } /// <summary> /// Construct instance of AmazonAppStreamException /// </summary> /// <param name="message"></param> /// <param name="errorType"></param> /// <param name="errorCode"></param> /// <param name="requestId"></param> /// <param name="statusCode"></param> public AmazonAppStreamException(string message, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode) : base(message, errorType, errorCode, requestId, statusCode) { } /// <summary> /// Construct instance of AmazonAppStreamException /// </summary> /// <param name="message"></param> /// <param name="innerException"></param> /// <param name="errorType"></param> /// <param name="errorCode"></param> /// <param name="requestId"></param> /// <param name="statusCode"></param> public AmazonAppStreamException(string message, Exception innerException, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode) : base(message, innerException, errorType, errorCode, requestId, statusCode) { } #if !NETSTANDARD /// <summary> /// Constructs a new instance of the AmazonAppStreamException class with serialized data. /// </summary> /// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param> /// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param> /// <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is null. </exception> /// <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult" /> is zero (0). </exception> protected AmazonAppStreamException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) : base(info, context) { } #endif } }
105
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using Amazon.Runtime; namespace Amazon.AppStream { /// <summary> /// Constants used for properties of type AccessEndpointType. /// </summary> public class AccessEndpointType : ConstantClass { /// <summary> /// Constant STREAMING for AccessEndpointType /// </summary> public static readonly AccessEndpointType STREAMING = new AccessEndpointType("STREAMING"); /// <summary> /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// </summary> public AccessEndpointType(string value) : base(value) { } /// <summary> /// Finds the constant for the unique value. /// </summary> /// <param name="value">The unique value for the constant</param> /// <returns>The constant for the unique value</returns> public static AccessEndpointType FindValue(string value) { return FindValue<AccessEndpointType>(value); } /// <summary> /// Utility method to convert strings to the constant class. /// </summary> /// <param name="value">The string value to convert to the constant class.</param> /// <returns></returns> public static implicit operator AccessEndpointType(string value) { return FindValue(value); } } /// <summary> /// Constants used for properties of type Action. /// </summary> public class Action : ConstantClass { /// <summary> /// Constant CLIPBOARD_COPY_FROM_LOCAL_DEVICE for Action /// </summary> public static readonly Action CLIPBOARD_COPY_FROM_LOCAL_DEVICE = new Action("CLIPBOARD_COPY_FROM_LOCAL_DEVICE"); /// <summary> /// Constant CLIPBOARD_COPY_TO_LOCAL_DEVICE for Action /// </summary> public static readonly Action CLIPBOARD_COPY_TO_LOCAL_DEVICE = new Action("CLIPBOARD_COPY_TO_LOCAL_DEVICE"); /// <summary> /// Constant DOMAIN_PASSWORD_SIGNIN for Action /// </summary> public static readonly Action DOMAIN_PASSWORD_SIGNIN = new Action("DOMAIN_PASSWORD_SIGNIN"); /// <summary> /// Constant DOMAIN_SMART_CARD_SIGNIN for Action /// </summary> public static readonly Action DOMAIN_SMART_CARD_SIGNIN = new Action("DOMAIN_SMART_CARD_SIGNIN"); /// <summary> /// Constant FILE_DOWNLOAD for Action /// </summary> public static readonly Action FILE_DOWNLOAD = new Action("FILE_DOWNLOAD"); /// <summary> /// Constant FILE_UPLOAD for Action /// </summary> public static readonly Action FILE_UPLOAD = new Action("FILE_UPLOAD"); /// <summary> /// Constant PRINTING_TO_LOCAL_DEVICE for Action /// </summary> public static readonly Action PRINTING_TO_LOCAL_DEVICE = new Action("PRINTING_TO_LOCAL_DEVICE"); /// <summary> /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// </summary> public Action(string value) : base(value) { } /// <summary> /// Finds the constant for the unique value. /// </summary> /// <param name="value">The unique value for the constant</param> /// <returns>The constant for the unique value</returns> public static Action FindValue(string value) { return FindValue<Action>(value); } /// <summary> /// Utility method to convert strings to the constant class. /// </summary> /// <param name="value">The string value to convert to the constant class.</param> /// <returns></returns> public static implicit operator Action(string value) { return FindValue(value); } } /// <summary> /// Constants used for properties of type AppBlockBuilderAttribute. /// </summary> public class AppBlockBuilderAttribute : ConstantClass { /// <summary> /// Constant ACCESS_ENDPOINTS for AppBlockBuilderAttribute /// </summary> public static readonly AppBlockBuilderAttribute ACCESS_ENDPOINTS = new AppBlockBuilderAttribute("ACCESS_ENDPOINTS"); /// <summary> /// Constant IAM_ROLE_ARN for AppBlockBuilderAttribute /// </summary> public static readonly AppBlockBuilderAttribute IAM_ROLE_ARN = new AppBlockBuilderAttribute("IAM_ROLE_ARN"); /// <summary> /// Constant VPC_CONFIGURATION_SECURITY_GROUP_IDS for AppBlockBuilderAttribute /// </summary> public static readonly AppBlockBuilderAttribute VPC_CONFIGURATION_SECURITY_GROUP_IDS = new AppBlockBuilderAttribute("VPC_CONFIGURATION_SECURITY_GROUP_IDS"); /// <summary> /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// </summary> public AppBlockBuilderAttribute(string value) : base(value) { } /// <summary> /// Finds the constant for the unique value. /// </summary> /// <param name="value">The unique value for the constant</param> /// <returns>The constant for the unique value</returns> public static AppBlockBuilderAttribute FindValue(string value) { return FindValue<AppBlockBuilderAttribute>(value); } /// <summary> /// Utility method to convert strings to the constant class. /// </summary> /// <param name="value">The string value to convert to the constant class.</param> /// <returns></returns> public static implicit operator AppBlockBuilderAttribute(string value) { return FindValue(value); } } /// <summary> /// Constants used for properties of type AppBlockBuilderPlatformType. /// </summary> public class AppBlockBuilderPlatformType : ConstantClass { /// <summary> /// Constant WINDOWS_SERVER_2019 for AppBlockBuilderPlatformType /// </summary> public static readonly AppBlockBuilderPlatformType WINDOWS_SERVER_2019 = new AppBlockBuilderPlatformType("WINDOWS_SERVER_2019"); /// <summary> /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// </summary> public AppBlockBuilderPlatformType(string value) : base(value) { } /// <summary> /// Finds the constant for the unique value. /// </summary> /// <param name="value">The unique value for the constant</param> /// <returns>The constant for the unique value</returns> public static AppBlockBuilderPlatformType FindValue(string value) { return FindValue<AppBlockBuilderPlatformType>(value); } /// <summary> /// Utility method to convert strings to the constant class. /// </summary> /// <param name="value">The string value to convert to the constant class.</param> /// <returns></returns> public static implicit operator AppBlockBuilderPlatformType(string value) { return FindValue(value); } } /// <summary> /// Constants used for properties of type AppBlockBuilderState. /// </summary> public class AppBlockBuilderState : ConstantClass { /// <summary> /// Constant RUNNING for AppBlockBuilderState /// </summary> public static readonly AppBlockBuilderState RUNNING = new AppBlockBuilderState("RUNNING"); /// <summary> /// Constant STARTING for AppBlockBuilderState /// </summary> public static readonly AppBlockBuilderState STARTING = new AppBlockBuilderState("STARTING"); /// <summary> /// Constant STOPPED for AppBlockBuilderState /// </summary> public static readonly AppBlockBuilderState STOPPED = new AppBlockBuilderState("STOPPED"); /// <summary> /// Constant STOPPING for AppBlockBuilderState /// </summary> public static readonly AppBlockBuilderState STOPPING = new AppBlockBuilderState("STOPPING"); /// <summary> /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// </summary> public AppBlockBuilderState(string value) : base(value) { } /// <summary> /// Finds the constant for the unique value. /// </summary> /// <param name="value">The unique value for the constant</param> /// <returns>The constant for the unique value</returns> public static AppBlockBuilderState FindValue(string value) { return FindValue<AppBlockBuilderState>(value); } /// <summary> /// Utility method to convert strings to the constant class. /// </summary> /// <param name="value">The string value to convert to the constant class.</param> /// <returns></returns> public static implicit operator AppBlockBuilderState(string value) { return FindValue(value); } } /// <summary> /// Constants used for properties of type AppBlockBuilderStateChangeReasonCode. /// </summary> public class AppBlockBuilderStateChangeReasonCode : ConstantClass { /// <summary> /// Constant INTERNAL_ERROR for AppBlockBuilderStateChangeReasonCode /// </summary> public static readonly AppBlockBuilderStateChangeReasonCode INTERNAL_ERROR = new AppBlockBuilderStateChangeReasonCode("INTERNAL_ERROR"); /// <summary> /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// </summary> public AppBlockBuilderStateChangeReasonCode(string value) : base(value) { } /// <summary> /// Finds the constant for the unique value. /// </summary> /// <param name="value">The unique value for the constant</param> /// <returns>The constant for the unique value</returns> public static AppBlockBuilderStateChangeReasonCode FindValue(string value) { return FindValue<AppBlockBuilderStateChangeReasonCode>(value); } /// <summary> /// Utility method to convert strings to the constant class. /// </summary> /// <param name="value">The string value to convert to the constant class.</param> /// <returns></returns> public static implicit operator AppBlockBuilderStateChangeReasonCode(string value) { return FindValue(value); } } /// <summary> /// Constants used for properties of type AppBlockState. /// </summary> public class AppBlockState : ConstantClass { /// <summary> /// Constant ACTIVE for AppBlockState /// </summary> public static readonly AppBlockState ACTIVE = new AppBlockState("ACTIVE"); /// <summary> /// Constant INACTIVE for AppBlockState /// </summary> public static readonly AppBlockState INACTIVE = new AppBlockState("INACTIVE"); /// <summary> /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// </summary> public AppBlockState(string value) : base(value) { } /// <summary> /// Finds the constant for the unique value. /// </summary> /// <param name="value">The unique value for the constant</param> /// <returns>The constant for the unique value</returns> public static AppBlockState FindValue(string value) { return FindValue<AppBlockState>(value); } /// <summary> /// Utility method to convert strings to the constant class. /// </summary> /// <param name="value">The string value to convert to the constant class.</param> /// <returns></returns> public static implicit operator AppBlockState(string value) { return FindValue(value); } } /// <summary> /// Constants used for properties of type ApplicationAttribute. /// </summary> public class ApplicationAttribute : ConstantClass { /// <summary> /// Constant LAUNCH_PARAMETERS for ApplicationAttribute /// </summary> public static readonly ApplicationAttribute LAUNCH_PARAMETERS = new ApplicationAttribute("LAUNCH_PARAMETERS"); /// <summary> /// Constant WORKING_DIRECTORY for ApplicationAttribute /// </summary> public static readonly ApplicationAttribute WORKING_DIRECTORY = new ApplicationAttribute("WORKING_DIRECTORY"); /// <summary> /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// </summary> public ApplicationAttribute(string value) : base(value) { } /// <summary> /// Finds the constant for the unique value. /// </summary> /// <param name="value">The unique value for the constant</param> /// <returns>The constant for the unique value</returns> public static ApplicationAttribute FindValue(string value) { return FindValue<ApplicationAttribute>(value); } /// <summary> /// Utility method to convert strings to the constant class. /// </summary> /// <param name="value">The string value to convert to the constant class.</param> /// <returns></returns> public static implicit operator ApplicationAttribute(string value) { return FindValue(value); } } /// <summary> /// Constants used for properties of type AppVisibility. /// </summary> public class AppVisibility : ConstantClass { /// <summary> /// Constant ALL for AppVisibility /// </summary> public static readonly AppVisibility ALL = new AppVisibility("ALL"); /// <summary> /// Constant ASSOCIATED for AppVisibility /// </summary> public static readonly AppVisibility ASSOCIATED = new AppVisibility("ASSOCIATED"); /// <summary> /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// </summary> public AppVisibility(string value) : base(value) { } /// <summary> /// Finds the constant for the unique value. /// </summary> /// <param name="value">The unique value for the constant</param> /// <returns>The constant for the unique value</returns> public static AppVisibility FindValue(string value) { return FindValue<AppVisibility>(value); } /// <summary> /// Utility method to convert strings to the constant class. /// </summary> /// <param name="value">The string value to convert to the constant class.</param> /// <returns></returns> public static implicit operator AppVisibility(string value) { return FindValue(value); } } /// <summary> /// Constants used for properties of type AuthenticationType. /// </summary> public class AuthenticationType : ConstantClass { /// <summary> /// Constant API for AuthenticationType /// </summary> public static readonly AuthenticationType API = new AuthenticationType("API"); /// <summary> /// Constant AWS_AD for AuthenticationType /// </summary> public static readonly AuthenticationType AWS_AD = new AuthenticationType("AWS_AD"); /// <summary> /// Constant SAML for AuthenticationType /// </summary> public static readonly AuthenticationType SAML = new AuthenticationType("SAML"); /// <summary> /// Constant USERPOOL for AuthenticationType /// </summary> public static readonly AuthenticationType USERPOOL = new AuthenticationType("USERPOOL"); /// <summary> /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// </summary> public AuthenticationType(string value) : base(value) { } /// <summary> /// Finds the constant for the unique value. /// </summary> /// <param name="value">The unique value for the constant</param> /// <returns>The constant for the unique value</returns> public static AuthenticationType FindValue(string value) { return FindValue<AuthenticationType>(value); } /// <summary> /// Utility method to convert strings to the constant class. /// </summary> /// <param name="value">The string value to convert to the constant class.</param> /// <returns></returns> public static implicit operator AuthenticationType(string value) { return FindValue(value); } } /// <summary> /// Constants used for properties of type CertificateBasedAuthStatus. /// </summary> public class CertificateBasedAuthStatus : ConstantClass { /// <summary> /// Constant DISABLED for CertificateBasedAuthStatus /// </summary> public static readonly CertificateBasedAuthStatus DISABLED = new CertificateBasedAuthStatus("DISABLED"); /// <summary> /// Constant ENABLED for CertificateBasedAuthStatus /// </summary> public static readonly CertificateBasedAuthStatus ENABLED = new CertificateBasedAuthStatus("ENABLED"); /// <summary> /// Constant ENABLED_NO_DIRECTORY_LOGIN_FALLBACK for CertificateBasedAuthStatus /// </summary> public static readonly CertificateBasedAuthStatus ENABLED_NO_DIRECTORY_LOGIN_FALLBACK = new CertificateBasedAuthStatus("ENABLED_NO_DIRECTORY_LOGIN_FALLBACK"); /// <summary> /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// </summary> public CertificateBasedAuthStatus(string value) : base(value) { } /// <summary> /// Finds the constant for the unique value. /// </summary> /// <param name="value">The unique value for the constant</param> /// <returns>The constant for the unique value</returns> public static CertificateBasedAuthStatus FindValue(string value) { return FindValue<CertificateBasedAuthStatus>(value); } /// <summary> /// Utility method to convert strings to the constant class. /// </summary> /// <param name="value">The string value to convert to the constant class.</param> /// <returns></returns> public static implicit operator CertificateBasedAuthStatus(string value) { return FindValue(value); } } /// <summary> /// Constants used for properties of type FleetAttribute. /// </summary> public class FleetAttribute : ConstantClass { /// <summary> /// Constant DOMAIN_JOIN_INFO for FleetAttribute /// </summary> public static readonly FleetAttribute DOMAIN_JOIN_INFO = new FleetAttribute("DOMAIN_JOIN_INFO"); /// <summary> /// Constant IAM_ROLE_ARN for FleetAttribute /// </summary> public static readonly FleetAttribute IAM_ROLE_ARN = new FleetAttribute("IAM_ROLE_ARN"); /// <summary> /// Constant SESSION_SCRIPT_S3_LOCATION for FleetAttribute /// </summary> public static readonly FleetAttribute SESSION_SCRIPT_S3_LOCATION = new FleetAttribute("SESSION_SCRIPT_S3_LOCATION"); /// <summary> /// Constant USB_DEVICE_FILTER_STRINGS for FleetAttribute /// </summary> public static readonly FleetAttribute USB_DEVICE_FILTER_STRINGS = new FleetAttribute("USB_DEVICE_FILTER_STRINGS"); /// <summary> /// Constant VPC_CONFIGURATION for FleetAttribute /// </summary> public static readonly FleetAttribute VPC_CONFIGURATION = new FleetAttribute("VPC_CONFIGURATION"); /// <summary> /// Constant VPC_CONFIGURATION_SECURITY_GROUP_IDS for FleetAttribute /// </summary> public static readonly FleetAttribute VPC_CONFIGURATION_SECURITY_GROUP_IDS = new FleetAttribute("VPC_CONFIGURATION_SECURITY_GROUP_IDS"); /// <summary> /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// </summary> public FleetAttribute(string value) : base(value) { } /// <summary> /// Finds the constant for the unique value. /// </summary> /// <param name="value">The unique value for the constant</param> /// <returns>The constant for the unique value</returns> public static FleetAttribute FindValue(string value) { return FindValue<FleetAttribute>(value); } /// <summary> /// Utility method to convert strings to the constant class. /// </summary> /// <param name="value">The string value to convert to the constant class.</param> /// <returns></returns> public static implicit operator FleetAttribute(string value) { return FindValue(value); } } /// <summary> /// Constants used for properties of type FleetErrorCode. /// </summary> public class FleetErrorCode : ConstantClass { /// <summary> /// Constant DOMAIN_JOIN_ERROR_ACCESS_DENIED for FleetErrorCode /// </summary> public static readonly FleetErrorCode DOMAIN_JOIN_ERROR_ACCESS_DENIED = new FleetErrorCode("DOMAIN_JOIN_ERROR_ACCESS_DENIED"); /// <summary> /// Constant DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED for FleetErrorCode /// </summary> public static readonly FleetErrorCode DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED = new FleetErrorCode("DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED"); /// <summary> /// Constant DOMAIN_JOIN_ERROR_FILE_NOT_FOUND for FleetErrorCode /// </summary> public static readonly FleetErrorCode DOMAIN_JOIN_ERROR_FILE_NOT_FOUND = new FleetErrorCode("DOMAIN_JOIN_ERROR_FILE_NOT_FOUND"); /// <summary> /// Constant DOMAIN_JOIN_ERROR_INVALID_PARAMETER for FleetErrorCode /// </summary> public static readonly FleetErrorCode DOMAIN_JOIN_ERROR_INVALID_PARAMETER = new FleetErrorCode("DOMAIN_JOIN_ERROR_INVALID_PARAMETER"); /// <summary> /// Constant DOMAIN_JOIN_ERROR_LOGON_FAILURE for FleetErrorCode /// </summary> public static readonly FleetErrorCode DOMAIN_JOIN_ERROR_LOGON_FAILURE = new FleetErrorCode("DOMAIN_JOIN_ERROR_LOGON_FAILURE"); /// <summary> /// Constant DOMAIN_JOIN_ERROR_MORE_DATA for FleetErrorCode /// </summary> public static readonly FleetErrorCode DOMAIN_JOIN_ERROR_MORE_DATA = new FleetErrorCode("DOMAIN_JOIN_ERROR_MORE_DATA"); /// <summary> /// Constant DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN for FleetErrorCode /// </summary> public static readonly FleetErrorCode DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN = new FleetErrorCode("DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN"); /// <summary> /// Constant DOMAIN_JOIN_ERROR_NOT_SUPPORTED for FleetErrorCode /// </summary> public static readonly FleetErrorCode DOMAIN_JOIN_ERROR_NOT_SUPPORTED = new FleetErrorCode("DOMAIN_JOIN_ERROR_NOT_SUPPORTED"); /// <summary> /// Constant DOMAIN_JOIN_INTERNAL_SERVICE_ERROR for FleetErrorCode /// </summary> public static readonly FleetErrorCode DOMAIN_JOIN_INTERNAL_SERVICE_ERROR = new FleetErrorCode("DOMAIN_JOIN_INTERNAL_SERVICE_ERROR"); /// <summary> /// Constant DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME for FleetErrorCode /// </summary> public static readonly FleetErrorCode DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME = new FleetErrorCode("DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME"); /// <summary> /// Constant DOMAIN_JOIN_NERR_PASSWORD_EXPIRED for FleetErrorCode /// </summary> public static readonly FleetErrorCode DOMAIN_JOIN_NERR_PASSWORD_EXPIRED = new FleetErrorCode("DOMAIN_JOIN_NERR_PASSWORD_EXPIRED"); /// <summary> /// Constant DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED for FleetErrorCode /// </summary> public static readonly FleetErrorCode DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED = new FleetErrorCode("DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED"); /// <summary> /// Constant FLEET_INSTANCE_PROVISIONING_FAILURE for FleetErrorCode /// </summary> public static readonly FleetErrorCode FLEET_INSTANCE_PROVISIONING_FAILURE = new FleetErrorCode("FLEET_INSTANCE_PROVISIONING_FAILURE"); /// <summary> /// Constant FLEET_STOPPED for FleetErrorCode /// </summary> public static readonly FleetErrorCode FLEET_STOPPED = new FleetErrorCode("FLEET_STOPPED"); /// <summary> /// Constant IAM_SERVICE_ROLE_IS_MISSING for FleetErrorCode /// </summary> public static readonly FleetErrorCode IAM_SERVICE_ROLE_IS_MISSING = new FleetErrorCode("IAM_SERVICE_ROLE_IS_MISSING"); /// <summary> /// Constant IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION for FleetErrorCode /// </summary> public static readonly FleetErrorCode IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION = new FleetErrorCode("IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION"); /// <summary> /// Constant IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION for FleetErrorCode /// </summary> public static readonly FleetErrorCode IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION = new FleetErrorCode("IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION"); /// <summary> /// Constant IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION for FleetErrorCode /// </summary> public static readonly FleetErrorCode IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION = new FleetErrorCode("IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION"); /// <summary> /// Constant IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION for FleetErrorCode /// </summary> public static readonly FleetErrorCode IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION = new FleetErrorCode("IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION"); /// <summary> /// Constant IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION for FleetErrorCode /// </summary> public static readonly FleetErrorCode IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION = new FleetErrorCode("IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION"); /// <summary> /// Constant IGW_NOT_ATTACHED for FleetErrorCode /// </summary> public static readonly FleetErrorCode IGW_NOT_ATTACHED = new FleetErrorCode("IGW_NOT_ATTACHED"); /// <summary> /// Constant IMAGE_NOT_FOUND for FleetErrorCode /// </summary> public static readonly FleetErrorCode IMAGE_NOT_FOUND = new FleetErrorCode("IMAGE_NOT_FOUND"); /// <summary> /// Constant INTERNAL_SERVICE_ERROR for FleetErrorCode /// </summary> public static readonly FleetErrorCode INTERNAL_SERVICE_ERROR = new FleetErrorCode("INTERNAL_SERVICE_ERROR"); /// <summary> /// Constant INVALID_SUBNET_CONFIGURATION for FleetErrorCode /// </summary> public static readonly FleetErrorCode INVALID_SUBNET_CONFIGURATION = new FleetErrorCode("INVALID_SUBNET_CONFIGURATION"); /// <summary> /// Constant MACHINE_ROLE_IS_MISSING for FleetErrorCode /// </summary> public static readonly FleetErrorCode MACHINE_ROLE_IS_MISSING = new FleetErrorCode("MACHINE_ROLE_IS_MISSING"); /// <summary> /// Constant NETWORK_INTERFACE_LIMIT_EXCEEDED for FleetErrorCode /// </summary> public static readonly FleetErrorCode NETWORK_INTERFACE_LIMIT_EXCEEDED = new FleetErrorCode("NETWORK_INTERFACE_LIMIT_EXCEEDED"); /// <summary> /// Constant SECURITY_GROUPS_NOT_FOUND for FleetErrorCode /// </summary> public static readonly FleetErrorCode SECURITY_GROUPS_NOT_FOUND = new FleetErrorCode("SECURITY_GROUPS_NOT_FOUND"); /// <summary> /// Constant STS_DISABLED_IN_REGION for FleetErrorCode /// </summary> public static readonly FleetErrorCode STS_DISABLED_IN_REGION = new FleetErrorCode("STS_DISABLED_IN_REGION"); /// <summary> /// Constant SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES for FleetErrorCode /// </summary> public static readonly FleetErrorCode SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES = new FleetErrorCode("SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES"); /// <summary> /// Constant SUBNET_NOT_FOUND for FleetErrorCode /// </summary> public static readonly FleetErrorCode SUBNET_NOT_FOUND = new FleetErrorCode("SUBNET_NOT_FOUND"); /// <summary> /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// </summary> public FleetErrorCode(string value) : base(value) { } /// <summary> /// Finds the constant for the unique value. /// </summary> /// <param name="value">The unique value for the constant</param> /// <returns>The constant for the unique value</returns> public static FleetErrorCode FindValue(string value) { return FindValue<FleetErrorCode>(value); } /// <summary> /// Utility method to convert strings to the constant class. /// </summary> /// <param name="value">The string value to convert to the constant class.</param> /// <returns></returns> public static implicit operator FleetErrorCode(string value) { return FindValue(value); } } /// <summary> /// Constants used for properties of type FleetState. /// </summary> public class FleetState : ConstantClass { /// <summary> /// Constant RUNNING for FleetState /// </summary> public static readonly FleetState RUNNING = new FleetState("RUNNING"); /// <summary> /// Constant STARTING for FleetState /// </summary> public static readonly FleetState STARTING = new FleetState("STARTING"); /// <summary> /// Constant STOPPED for FleetState /// </summary> public static readonly FleetState STOPPED = new FleetState("STOPPED"); /// <summary> /// Constant STOPPING for FleetState /// </summary> public static readonly FleetState STOPPING = new FleetState("STOPPING"); /// <summary> /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// </summary> public FleetState(string value) : base(value) { } /// <summary> /// Finds the constant for the unique value. /// </summary> /// <param name="value">The unique value for the constant</param> /// <returns>The constant for the unique value</returns> public static FleetState FindValue(string value) { return FindValue<FleetState>(value); } /// <summary> /// Utility method to convert strings to the constant class. /// </summary> /// <param name="value">The string value to convert to the constant class.</param> /// <returns></returns> public static implicit operator FleetState(string value) { return FindValue(value); } } /// <summary> /// Constants used for properties of type FleetType. /// </summary> public class FleetType : ConstantClass { /// <summary> /// Constant ALWAYS_ON for FleetType /// </summary> public static readonly FleetType ALWAYS_ON = new FleetType("ALWAYS_ON"); /// <summary> /// Constant ELASTIC for FleetType /// </summary> public static readonly FleetType ELASTIC = new FleetType("ELASTIC"); /// <summary> /// Constant ON_DEMAND for FleetType /// </summary> public static readonly FleetType ON_DEMAND = new FleetType("ON_DEMAND"); /// <summary> /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// </summary> public FleetType(string value) : base(value) { } /// <summary> /// Finds the constant for the unique value. /// </summary> /// <param name="value">The unique value for the constant</param> /// <returns>The constant for the unique value</returns> public static FleetType FindValue(string value) { return FindValue<FleetType>(value); } /// <summary> /// Utility method to convert strings to the constant class. /// </summary> /// <param name="value">The string value to convert to the constant class.</param> /// <returns></returns> public static implicit operator FleetType(string value) { return FindValue(value); } } /// <summary> /// Constants used for properties of type ImageBuilderState. /// </summary> public class ImageBuilderState : ConstantClass { /// <summary> /// Constant DELETING for ImageBuilderState /// </summary> public static readonly ImageBuilderState DELETING = new ImageBuilderState("DELETING"); /// <summary> /// Constant FAILED for ImageBuilderState /// </summary> public static readonly ImageBuilderState FAILED = new ImageBuilderState("FAILED"); /// <summary> /// Constant PENDING for ImageBuilderState /// </summary> public static readonly ImageBuilderState PENDING = new ImageBuilderState("PENDING"); /// <summary> /// Constant PENDING_QUALIFICATION for ImageBuilderState /// </summary> public static readonly ImageBuilderState PENDING_QUALIFICATION = new ImageBuilderState("PENDING_QUALIFICATION"); /// <summary> /// Constant REBOOTING for ImageBuilderState /// </summary> public static readonly ImageBuilderState REBOOTING = new ImageBuilderState("REBOOTING"); /// <summary> /// Constant RUNNING for ImageBuilderState /// </summary> public static readonly ImageBuilderState RUNNING = new ImageBuilderState("RUNNING"); /// <summary> /// Constant SNAPSHOTTING for ImageBuilderState /// </summary> public static readonly ImageBuilderState SNAPSHOTTING = new ImageBuilderState("SNAPSHOTTING"); /// <summary> /// Constant STOPPED for ImageBuilderState /// </summary> public static readonly ImageBuilderState STOPPED = new ImageBuilderState("STOPPED"); /// <summary> /// Constant STOPPING for ImageBuilderState /// </summary> public static readonly ImageBuilderState STOPPING = new ImageBuilderState("STOPPING"); /// <summary> /// Constant UPDATING for ImageBuilderState /// </summary> public static readonly ImageBuilderState UPDATING = new ImageBuilderState("UPDATING"); /// <summary> /// Constant UPDATING_AGENT for ImageBuilderState /// </summary> public static readonly ImageBuilderState UPDATING_AGENT = new ImageBuilderState("UPDATING_AGENT"); /// <summary> /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// </summary> public ImageBuilderState(string value) : base(value) { } /// <summary> /// Finds the constant for the unique value. /// </summary> /// <param name="value">The unique value for the constant</param> /// <returns>The constant for the unique value</returns> public static ImageBuilderState FindValue(string value) { return FindValue<ImageBuilderState>(value); } /// <summary> /// Utility method to convert strings to the constant class. /// </summary> /// <param name="value">The string value to convert to the constant class.</param> /// <returns></returns> public static implicit operator ImageBuilderState(string value) { return FindValue(value); } } /// <summary> /// Constants used for properties of type ImageBuilderStateChangeReasonCode. /// </summary> public class ImageBuilderStateChangeReasonCode : ConstantClass { /// <summary> /// Constant IMAGE_UNAVAILABLE for ImageBuilderStateChangeReasonCode /// </summary> public static readonly ImageBuilderStateChangeReasonCode IMAGE_UNAVAILABLE = new ImageBuilderStateChangeReasonCode("IMAGE_UNAVAILABLE"); /// <summary> /// Constant INTERNAL_ERROR for ImageBuilderStateChangeReasonCode /// </summary> public static readonly ImageBuilderStateChangeReasonCode INTERNAL_ERROR = new ImageBuilderStateChangeReasonCode("INTERNAL_ERROR"); /// <summary> /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// </summary> public ImageBuilderStateChangeReasonCode(string value) : base(value) { } /// <summary> /// Finds the constant for the unique value. /// </summary> /// <param name="value">The unique value for the constant</param> /// <returns>The constant for the unique value</returns> public static ImageBuilderStateChangeReasonCode FindValue(string value) { return FindValue<ImageBuilderStateChangeReasonCode>(value); } /// <summary> /// Utility method to convert strings to the constant class. /// </summary> /// <param name="value">The string value to convert to the constant class.</param> /// <returns></returns> public static implicit operator ImageBuilderStateChangeReasonCode(string value) { return FindValue(value); } } /// <summary> /// Constants used for properties of type ImageState. /// </summary> public class ImageState : ConstantClass { /// <summary> /// Constant AVAILABLE for ImageState /// </summary> public static readonly ImageState AVAILABLE = new ImageState("AVAILABLE"); /// <summary> /// Constant COPYING for ImageState /// </summary> public static readonly ImageState COPYING = new ImageState("COPYING"); /// <summary> /// Constant CREATING for ImageState /// </summary> public static readonly ImageState CREATING = new ImageState("CREATING"); /// <summary> /// Constant DELETING for ImageState /// </summary> public static readonly ImageState DELETING = new ImageState("DELETING"); /// <summary> /// Constant FAILED for ImageState /// </summary> public static readonly ImageState FAILED = new ImageState("FAILED"); /// <summary> /// Constant IMPORTING for ImageState /// </summary> public static readonly ImageState IMPORTING = new ImageState("IMPORTING"); /// <summary> /// Constant PENDING for ImageState /// </summary> public static readonly ImageState PENDING = new ImageState("PENDING"); /// <summary> /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// </summary> public ImageState(string value) : base(value) { } /// <summary> /// Finds the constant for the unique value. /// </summary> /// <param name="value">The unique value for the constant</param> /// <returns>The constant for the unique value</returns> public static ImageState FindValue(string value) { return FindValue<ImageState>(value); } /// <summary> /// Utility method to convert strings to the constant class. /// </summary> /// <param name="value">The string value to convert to the constant class.</param> /// <returns></returns> public static implicit operator ImageState(string value) { return FindValue(value); } } /// <summary> /// Constants used for properties of type ImageStateChangeReasonCode. /// </summary> public class ImageStateChangeReasonCode : ConstantClass { /// <summary> /// Constant IMAGE_BUILDER_NOT_AVAILABLE for ImageStateChangeReasonCode /// </summary> public static readonly ImageStateChangeReasonCode IMAGE_BUILDER_NOT_AVAILABLE = new ImageStateChangeReasonCode("IMAGE_BUILDER_NOT_AVAILABLE"); /// <summary> /// Constant IMAGE_COPY_FAILURE for ImageStateChangeReasonCode /// </summary> public static readonly ImageStateChangeReasonCode IMAGE_COPY_FAILURE = new ImageStateChangeReasonCode("IMAGE_COPY_FAILURE"); /// <summary> /// Constant INTERNAL_ERROR for ImageStateChangeReasonCode /// </summary> public static readonly ImageStateChangeReasonCode INTERNAL_ERROR = new ImageStateChangeReasonCode("INTERNAL_ERROR"); /// <summary> /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// </summary> public ImageStateChangeReasonCode(string value) : base(value) { } /// <summary> /// Finds the constant for the unique value. /// </summary> /// <param name="value">The unique value for the constant</param> /// <returns>The constant for the unique value</returns> public static ImageStateChangeReasonCode FindValue(string value) { return FindValue<ImageStateChangeReasonCode>(value); } /// <summary> /// Utility method to convert strings to the constant class. /// </summary> /// <param name="value">The string value to convert to the constant class.</param> /// <returns></returns> public static implicit operator ImageStateChangeReasonCode(string value) { return FindValue(value); } } /// <summary> /// Constants used for properties of type MessageAction. /// </summary> public class MessageAction : ConstantClass { /// <summary> /// Constant RESEND for MessageAction /// </summary> public static readonly MessageAction RESEND = new MessageAction("RESEND"); /// <summary> /// Constant SUPPRESS for MessageAction /// </summary> public static readonly MessageAction SUPPRESS = new MessageAction("SUPPRESS"); /// <summary> /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// </summary> public MessageAction(string value) : base(value) { } /// <summary> /// Finds the constant for the unique value. /// </summary> /// <param name="value">The unique value for the constant</param> /// <returns>The constant for the unique value</returns> public static MessageAction FindValue(string value) { return FindValue<MessageAction>(value); } /// <summary> /// Utility method to convert strings to the constant class. /// </summary> /// <param name="value">The string value to convert to the constant class.</param> /// <returns></returns> public static implicit operator MessageAction(string value) { return FindValue(value); } } /// <summary> /// Constants used for properties of type PackagingType. /// </summary> public class PackagingType : ConstantClass { /// <summary> /// Constant APPSTREAM2 for PackagingType /// </summary> public static readonly PackagingType APPSTREAM2 = new PackagingType("APPSTREAM2"); /// <summary> /// Constant CUSTOM for PackagingType /// </summary> public static readonly PackagingType CUSTOM = new PackagingType("CUSTOM"); /// <summary> /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// </summary> public PackagingType(string value) : base(value) { } /// <summary> /// Finds the constant for the unique value. /// </summary> /// <param name="value">The unique value for the constant</param> /// <returns>The constant for the unique value</returns> public static PackagingType FindValue(string value) { return FindValue<PackagingType>(value); } /// <summary> /// Utility method to convert strings to the constant class. /// </summary> /// <param name="value">The string value to convert to the constant class.</param> /// <returns></returns> public static implicit operator PackagingType(string value) { return FindValue(value); } } /// <summary> /// Constants used for properties of type Permission. /// </summary> public class Permission : ConstantClass { /// <summary> /// Constant DISABLED for Permission /// </summary> public static readonly Permission DISABLED = new Permission("DISABLED"); /// <summary> /// Constant ENABLED for Permission /// </summary> public static readonly Permission ENABLED = new Permission("ENABLED"); /// <summary> /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// </summary> public Permission(string value) : base(value) { } /// <summary> /// Finds the constant for the unique value. /// </summary> /// <param name="value">The unique value for the constant</param> /// <returns>The constant for the unique value</returns> public static Permission FindValue(string value) { return FindValue<Permission>(value); } /// <summary> /// Utility method to convert strings to the constant class. /// </summary> /// <param name="value">The string value to convert to the constant class.</param> /// <returns></returns> public static implicit operator Permission(string value) { return FindValue(value); } } /// <summary> /// Constants used for properties of type PlatformType. /// </summary> public class PlatformType : ConstantClass { /// <summary> /// Constant AMAZON_LINUX2 for PlatformType /// </summary> public static readonly PlatformType AMAZON_LINUX2 = new PlatformType("AMAZON_LINUX2"); /// <summary> /// Constant WINDOWS for PlatformType /// </summary> public static readonly PlatformType WINDOWS = new PlatformType("WINDOWS"); /// <summary> /// Constant WINDOWS_SERVER_2016 for PlatformType /// </summary> public static readonly PlatformType WINDOWS_SERVER_2016 = new PlatformType("WINDOWS_SERVER_2016"); /// <summary> /// Constant WINDOWS_SERVER_2019 for PlatformType /// </summary> public static readonly PlatformType WINDOWS_SERVER_2019 = new PlatformType("WINDOWS_SERVER_2019"); /// <summary> /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// </summary> public PlatformType(string value) : base(value) { } /// <summary> /// Finds the constant for the unique value. /// </summary> /// <param name="value">The unique value for the constant</param> /// <returns>The constant for the unique value</returns> public static PlatformType FindValue(string value) { return FindValue<PlatformType>(value); } /// <summary> /// Utility method to convert strings to the constant class. /// </summary> /// <param name="value">The string value to convert to the constant class.</param> /// <returns></returns> public static implicit operator PlatformType(string value) { return FindValue(value); } } /// <summary> /// Constants used for properties of type PreferredProtocol. /// </summary> public class PreferredProtocol : ConstantClass { /// <summary> /// Constant TCP for PreferredProtocol /// </summary> public static readonly PreferredProtocol TCP = new PreferredProtocol("TCP"); /// <summary> /// Constant UDP for PreferredProtocol /// </summary> public static readonly PreferredProtocol UDP = new PreferredProtocol("UDP"); /// <summary> /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// </summary> public PreferredProtocol(string value) : base(value) { } /// <summary> /// Finds the constant for the unique value. /// </summary> /// <param name="value">The unique value for the constant</param> /// <returns>The constant for the unique value</returns> public static PreferredProtocol FindValue(string value) { return FindValue<PreferredProtocol>(value); } /// <summary> /// Utility method to convert strings to the constant class. /// </summary> /// <param name="value">The string value to convert to the constant class.</param> /// <returns></returns> public static implicit operator PreferredProtocol(string value) { return FindValue(value); } } /// <summary> /// Constants used for properties of type SessionConnectionState. /// </summary> public class SessionConnectionState : ConstantClass { /// <summary> /// Constant CONNECTED for SessionConnectionState /// </summary> public static readonly SessionConnectionState CONNECTED = new SessionConnectionState("CONNECTED"); /// <summary> /// Constant NOT_CONNECTED for SessionConnectionState /// </summary> public static readonly SessionConnectionState NOT_CONNECTED = new SessionConnectionState("NOT_CONNECTED"); /// <summary> /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// </summary> public SessionConnectionState(string value) : base(value) { } /// <summary> /// Finds the constant for the unique value. /// </summary> /// <param name="value">The unique value for the constant</param> /// <returns>The constant for the unique value</returns> public static SessionConnectionState FindValue(string value) { return FindValue<SessionConnectionState>(value); } /// <summary> /// Utility method to convert strings to the constant class. /// </summary> /// <param name="value">The string value to convert to the constant class.</param> /// <returns></returns> public static implicit operator SessionConnectionState(string value) { return FindValue(value); } } /// <summary> /// Constants used for properties of type StackAttribute. /// </summary> public class StackAttribute : ConstantClass { /// <summary> /// Constant ACCESS_ENDPOINTS for StackAttribute /// </summary> public static readonly StackAttribute ACCESS_ENDPOINTS = new StackAttribute("ACCESS_ENDPOINTS"); /// <summary> /// Constant EMBED_HOST_DOMAINS for StackAttribute /// </summary> public static readonly StackAttribute EMBED_HOST_DOMAINS = new StackAttribute("EMBED_HOST_DOMAINS"); /// <summary> /// Constant FEEDBACK_URL for StackAttribute /// </summary> public static readonly StackAttribute FEEDBACK_URL = new StackAttribute("FEEDBACK_URL"); /// <summary> /// Constant IAM_ROLE_ARN for StackAttribute /// </summary> public static readonly StackAttribute IAM_ROLE_ARN = new StackAttribute("IAM_ROLE_ARN"); /// <summary> /// Constant REDIRECT_URL for StackAttribute /// </summary> public static readonly StackAttribute REDIRECT_URL = new StackAttribute("REDIRECT_URL"); /// <summary> /// Constant STORAGE_CONNECTOR_GOOGLE_DRIVE for StackAttribute /// </summary> public static readonly StackAttribute STORAGE_CONNECTOR_GOOGLE_DRIVE = new StackAttribute("STORAGE_CONNECTOR_GOOGLE_DRIVE"); /// <summary> /// Constant STORAGE_CONNECTOR_HOMEFOLDERS for StackAttribute /// </summary> public static readonly StackAttribute STORAGE_CONNECTOR_HOMEFOLDERS = new StackAttribute("STORAGE_CONNECTOR_HOMEFOLDERS"); /// <summary> /// Constant STORAGE_CONNECTOR_ONE_DRIVE for StackAttribute /// </summary> public static readonly StackAttribute STORAGE_CONNECTOR_ONE_DRIVE = new StackAttribute("STORAGE_CONNECTOR_ONE_DRIVE"); /// <summary> /// Constant STORAGE_CONNECTORS for StackAttribute /// </summary> public static readonly StackAttribute STORAGE_CONNECTORS = new StackAttribute("STORAGE_CONNECTORS"); /// <summary> /// Constant STREAMING_EXPERIENCE_SETTINGS for StackAttribute /// </summary> public static readonly StackAttribute STREAMING_EXPERIENCE_SETTINGS = new StackAttribute("STREAMING_EXPERIENCE_SETTINGS"); /// <summary> /// Constant THEME_NAME for StackAttribute /// </summary> public static readonly StackAttribute THEME_NAME = new StackAttribute("THEME_NAME"); /// <summary> /// Constant USER_SETTINGS for StackAttribute /// </summary> public static readonly StackAttribute USER_SETTINGS = new StackAttribute("USER_SETTINGS"); /// <summary> /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// </summary> public StackAttribute(string value) : base(value) { } /// <summary> /// Finds the constant for the unique value. /// </summary> /// <param name="value">The unique value for the constant</param> /// <returns>The constant for the unique value</returns> public static StackAttribute FindValue(string value) { return FindValue<StackAttribute>(value); } /// <summary> /// Utility method to convert strings to the constant class. /// </summary> /// <param name="value">The string value to convert to the constant class.</param> /// <returns></returns> public static implicit operator StackAttribute(string value) { return FindValue(value); } } /// <summary> /// Constants used for properties of type StackErrorCode. /// </summary> public class StackErrorCode : ConstantClass { /// <summary> /// Constant INTERNAL_SERVICE_ERROR for StackErrorCode /// </summary> public static readonly StackErrorCode INTERNAL_SERVICE_ERROR = new StackErrorCode("INTERNAL_SERVICE_ERROR"); /// <summary> /// Constant STORAGE_CONNECTOR_ERROR for StackErrorCode /// </summary> public static readonly StackErrorCode STORAGE_CONNECTOR_ERROR = new StackErrorCode("STORAGE_CONNECTOR_ERROR"); /// <summary> /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// </summary> public StackErrorCode(string value) : base(value) { } /// <summary> /// Finds the constant for the unique value. /// </summary> /// <param name="value">The unique value for the constant</param> /// <returns>The constant for the unique value</returns> public static StackErrorCode FindValue(string value) { return FindValue<StackErrorCode>(value); } /// <summary> /// Utility method to convert strings to the constant class. /// </summary> /// <param name="value">The string value to convert to the constant class.</param> /// <returns></returns> public static implicit operator StackErrorCode(string value) { return FindValue(value); } } /// <summary> /// Constants used for properties of type StorageConnectorType. /// </summary> public class StorageConnectorType : ConstantClass { /// <summary> /// Constant GOOGLE_DRIVE for StorageConnectorType /// </summary> public static readonly StorageConnectorType GOOGLE_DRIVE = new StorageConnectorType("GOOGLE_DRIVE"); /// <summary> /// Constant HOMEFOLDERS for StorageConnectorType /// </summary> public static readonly StorageConnectorType HOMEFOLDERS = new StorageConnectorType("HOMEFOLDERS"); /// <summary> /// Constant ONE_DRIVE for StorageConnectorType /// </summary> public static readonly StorageConnectorType ONE_DRIVE = new StorageConnectorType("ONE_DRIVE"); /// <summary> /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// </summary> public StorageConnectorType(string value) : base(value) { } /// <summary> /// Finds the constant for the unique value. /// </summary> /// <param name="value">The unique value for the constant</param> /// <returns>The constant for the unique value</returns> public static StorageConnectorType FindValue(string value) { return FindValue<StorageConnectorType>(value); } /// <summary> /// Utility method to convert strings to the constant class. /// </summary> /// <param name="value">The string value to convert to the constant class.</param> /// <returns></returns> public static implicit operator StorageConnectorType(string value) { return FindValue(value); } } /// <summary> /// Constants used for properties of type StreamSessionState. /// </summary> public class StreamSessionState : ConstantClass { /// <summary> /// Constant ACTIVE for StreamSessionState /// </summary> public static readonly StreamSessionState ACTIVE = new StreamSessionState("ACTIVE"); /// <summary> /// Constant EXPIRED for StreamSessionState /// </summary> public static readonly StreamSessionState EXPIRED = new StreamSessionState("EXPIRED"); /// <summary> /// Constant PENDING for StreamSessionState /// </summary> public static readonly StreamSessionState PENDING = new StreamSessionState("PENDING"); /// <summary> /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// </summary> public StreamSessionState(string value) : base(value) { } /// <summary> /// Finds the constant for the unique value. /// </summary> /// <param name="value">The unique value for the constant</param> /// <returns>The constant for the unique value</returns> public static StreamSessionState FindValue(string value) { return FindValue<StreamSessionState>(value); } /// <summary> /// Utility method to convert strings to the constant class. /// </summary> /// <param name="value">The string value to convert to the constant class.</param> /// <returns></returns> public static implicit operator StreamSessionState(string value) { return FindValue(value); } } /// <summary> /// Constants used for properties of type StreamView. /// </summary> public class StreamView : ConstantClass { /// <summary> /// Constant APP for StreamView /// </summary> public static readonly StreamView APP = new StreamView("APP"); /// <summary> /// Constant DESKTOP for StreamView /// </summary> public static readonly StreamView DESKTOP = new StreamView("DESKTOP"); /// <summary> /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// </summary> public StreamView(string value) : base(value) { } /// <summary> /// Finds the constant for the unique value. /// </summary> /// <param name="value">The unique value for the constant</param> /// <returns>The constant for the unique value</returns> public static StreamView FindValue(string value) { return FindValue<StreamView>(value); } /// <summary> /// Utility method to convert strings to the constant class. /// </summary> /// <param name="value">The string value to convert to the constant class.</param> /// <returns></returns> public static implicit operator StreamView(string value) { return FindValue(value); } } /// <summary> /// Constants used for properties of type UsageReportExecutionErrorCode. /// </summary> public class UsageReportExecutionErrorCode : ConstantClass { /// <summary> /// Constant ACCESS_DENIED for UsageReportExecutionErrorCode /// </summary> public static readonly UsageReportExecutionErrorCode ACCESS_DENIED = new UsageReportExecutionErrorCode("ACCESS_DENIED"); /// <summary> /// Constant INTERNAL_SERVICE_ERROR for UsageReportExecutionErrorCode /// </summary> public static readonly UsageReportExecutionErrorCode INTERNAL_SERVICE_ERROR = new UsageReportExecutionErrorCode("INTERNAL_SERVICE_ERROR"); /// <summary> /// Constant RESOURCE_NOT_FOUND for UsageReportExecutionErrorCode /// </summary> public static readonly UsageReportExecutionErrorCode RESOURCE_NOT_FOUND = new UsageReportExecutionErrorCode("RESOURCE_NOT_FOUND"); /// <summary> /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// </summary> public UsageReportExecutionErrorCode(string value) : base(value) { } /// <summary> /// Finds the constant for the unique value. /// </summary> /// <param name="value">The unique value for the constant</param> /// <returns>The constant for the unique value</returns> public static UsageReportExecutionErrorCode FindValue(string value) { return FindValue<UsageReportExecutionErrorCode>(value); } /// <summary> /// Utility method to convert strings to the constant class. /// </summary> /// <param name="value">The string value to convert to the constant class.</param> /// <returns></returns> public static implicit operator UsageReportExecutionErrorCode(string value) { return FindValue(value); } } /// <summary> /// Constants used for properties of type UsageReportSchedule. /// </summary> public class UsageReportSchedule : ConstantClass { /// <summary> /// Constant DAILY for UsageReportSchedule /// </summary> public static readonly UsageReportSchedule DAILY = new UsageReportSchedule("DAILY"); /// <summary> /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// </summary> public UsageReportSchedule(string value) : base(value) { } /// <summary> /// Finds the constant for the unique value. /// </summary> /// <param name="value">The unique value for the constant</param> /// <returns>The constant for the unique value</returns> public static UsageReportSchedule FindValue(string value) { return FindValue<UsageReportSchedule>(value); } /// <summary> /// Utility method to convert strings to the constant class. /// </summary> /// <param name="value">The string value to convert to the constant class.</param> /// <returns></returns> public static implicit operator UsageReportSchedule(string value) { return FindValue(value); } } /// <summary> /// Constants used for properties of type UserStackAssociationErrorCode. /// </summary> public class UserStackAssociationErrorCode : ConstantClass { /// <summary> /// Constant DIRECTORY_NOT_FOUND for UserStackAssociationErrorCode /// </summary> public static readonly UserStackAssociationErrorCode DIRECTORY_NOT_FOUND = new UserStackAssociationErrorCode("DIRECTORY_NOT_FOUND"); /// <summary> /// Constant INTERNAL_ERROR for UserStackAssociationErrorCode /// </summary> public static readonly UserStackAssociationErrorCode INTERNAL_ERROR = new UserStackAssociationErrorCode("INTERNAL_ERROR"); /// <summary> /// Constant STACK_NOT_FOUND for UserStackAssociationErrorCode /// </summary> public static readonly UserStackAssociationErrorCode STACK_NOT_FOUND = new UserStackAssociationErrorCode("STACK_NOT_FOUND"); /// <summary> /// Constant USER_NAME_NOT_FOUND for UserStackAssociationErrorCode /// </summary> public static readonly UserStackAssociationErrorCode USER_NAME_NOT_FOUND = new UserStackAssociationErrorCode("USER_NAME_NOT_FOUND"); /// <summary> /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// </summary> public UserStackAssociationErrorCode(string value) : base(value) { } /// <summary> /// Finds the constant for the unique value. /// </summary> /// <param name="value">The unique value for the constant</param> /// <returns>The constant for the unique value</returns> public static UserStackAssociationErrorCode FindValue(string value) { return FindValue<UserStackAssociationErrorCode>(value); } /// <summary> /// Utility method to convert strings to the constant class. /// </summary> /// <param name="value">The string value to convert to the constant class.</param> /// <returns></returns> public static implicit operator UserStackAssociationErrorCode(string value) { return FindValue(value); } } /// <summary> /// Constants used for properties of type VisibilityType. /// </summary> public class VisibilityType : ConstantClass { /// <summary> /// Constant PRIVATE for VisibilityType /// </summary> public static readonly VisibilityType PRIVATE = new VisibilityType("PRIVATE"); /// <summary> /// Constant PUBLIC for VisibilityType /// </summary> public static readonly VisibilityType PUBLIC = new VisibilityType("PUBLIC"); /// <summary> /// Constant SHARED for VisibilityType /// </summary> public static readonly VisibilityType SHARED = new VisibilityType("SHARED"); /// <summary> /// This constant constructor does not need to be called if the constant /// you are attempting to use is already defined as a static instance of /// this class. /// This constructor should be used to construct constants that are not /// defined as statics, for instance if attempting to use a feature that is /// newer than the current version of the SDK. /// </summary> public VisibilityType(string value) : base(value) { } /// <summary> /// Finds the constant for the unique value. /// </summary> /// <param name="value">The unique value for the constant</param> /// <returns>The constant for the unique value</returns> public static VisibilityType FindValue(string value) { return FindValue<VisibilityType>(value); } /// <summary> /// Utility method to convert strings to the constant class. /// </summary> /// <param name="value">The string value to convert to the constant class.</param> /// <returns></returns> public static implicit operator VisibilityType(string value) { return FindValue(value); } } }
2,026
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using Amazon.Runtime; using Amazon.Runtime.Endpoints; using static Amazon.Runtime.Internal.Endpoints.StandardLibrary.Fn; namespace Amazon.AppStream.Internal { /// <summary> /// Amazon AppStream endpoint provider. /// Resolves endpoint for given set of AppStreamEndpointParameters. /// Can throw AmazonClientException if endpoint resolution is unsuccessful. /// </summary> public class AmazonAppStreamEndpointProvider : IEndpointProvider { /// <summary> /// Resolve endpoint for AppStreamEndpointParameters /// </summary> public Endpoint ResolveEndpoint(EndpointParameters parameters) { if (parameters == null) throw new ArgumentNullException("parameters"); if (parameters["UseDualStack"] == null) throw new AmazonClientException("UseDualStack parameter must be set for endpoint resolution"); if (parameters["UseFIPS"] == null) throw new AmazonClientException("UseFIPS parameter must be set for endpoint resolution"); var refs = new Dictionary<string, object>() { ["Region"] = parameters["Region"], ["UseDualStack"] = parameters["UseDualStack"], ["UseFIPS"] = parameters["UseFIPS"], ["Endpoint"] = parameters["Endpoint"], }; if (IsSet(refs["Endpoint"])) { if (Equals(refs["UseFIPS"], true)) { throw new AmazonClientException("Invalid Configuration: FIPS and custom endpoint are not supported"); } if (Equals(refs["UseDualStack"], true)) { throw new AmazonClientException("Invalid Configuration: Dualstack and custom endpoint are not supported"); } return new Endpoint((string)refs["Endpoint"], InterpolateJson(@"", refs), InterpolateJson(@"", refs)); } if (IsSet(refs["Region"])) { if ((refs["PartitionResult"] = Partition((string)refs["Region"])) != null) { if (Equals(refs["UseFIPS"], true) && Equals(refs["UseDualStack"], true)) { if (Equals(true, GetAttr(refs["PartitionResult"], "supportsFIPS")) && Equals(true, GetAttr(refs["PartitionResult"], "supportsDualStack"))) { return new Endpoint(Interpolate(@"https://appstream2-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", refs), InterpolateJson(@"", refs), InterpolateJson(@"", refs)); } throw new AmazonClientException("FIPS and DualStack are enabled, but this partition does not support one or both"); } if (Equals(refs["UseFIPS"], true)) { if (Equals(true, GetAttr(refs["PartitionResult"], "supportsFIPS"))) { return new Endpoint(Interpolate(@"https://appstream2-fips.{Region}.{PartitionResult#dnsSuffix}", refs), InterpolateJson(@"", refs), InterpolateJson(@"", refs)); } throw new AmazonClientException("FIPS is enabled but this partition does not support FIPS"); } if (Equals(refs["UseDualStack"], true)) { if (Equals(true, GetAttr(refs["PartitionResult"], "supportsDualStack"))) { return new Endpoint(Interpolate(@"https://appstream2.{Region}.{PartitionResult#dualStackDnsSuffix}", refs), InterpolateJson(@"", refs), InterpolateJson(@"", refs)); } throw new AmazonClientException("DualStack is enabled but this partition does not support DualStack"); } if (Equals("aws", GetAttr(refs["PartitionResult"], "name"))) { return new Endpoint(Interpolate(@"https://appstream2.{Region}.amazonaws.com", refs), InterpolateJson(@"", refs), InterpolateJson(@"", refs)); } if (Equals("aws-us-gov", GetAttr(refs["PartitionResult"], "name"))) { return new Endpoint(Interpolate(@"https://appstream2.{Region}.amazonaws.com", refs), InterpolateJson(@"", refs), InterpolateJson(@"", refs)); } return new Endpoint(Interpolate(@"https://appstream2.{Region}.{PartitionResult#dnsSuffix}", refs), InterpolateJson(@"", refs), InterpolateJson(@"", refs)); } } throw new AmazonClientException("Invalid Configuration: Missing Region"); throw new AmazonClientException("Cannot resolve endpoint"); } } }
111
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using Amazon.AppStream.Model; using Amazon.Runtime; using Amazon.Runtime.Internal; using Amazon.Runtime.Endpoints; using Amazon.Util; using Amazon.AppStream.Endpoints; #pragma warning disable 1591 namespace Amazon.AppStream.Internal { /// <summary> /// Amazon AppStream endpoint resolver. /// Custom PipelineHandler responsible for resolving endpoint and setting authentication parameters for AppStream service requests. /// Collects values for AppStreamEndpointParameters and then tries to resolve endpoint by calling /// ResolveEndpoint method on GlobalEndpoints.Provider if present, otherwise uses AppStreamEndpointProvider. /// Responsible for setting authentication and http headers provided by resolved endpoint. /// </summary> public class AmazonAppStreamEndpointResolver : BaseEndpointResolver { protected override void ServiceSpecificHandler(IExecutionContext executionContext, EndpointParameters parameters) { InjectHostPrefix(executionContext.RequestContext); } protected override EndpointParameters MapEndpointsParameters(IRequestContext requestContext) { var config = (AmazonAppStreamConfig)requestContext.ClientConfig; var result = new AppStreamEndpointParameters(); result.Region = config.RegionEndpoint?.SystemName; result.UseDualStack = config.UseDualstackEndpoint; result.UseFIPS = config.UseFIPSEndpoint; result.Endpoint = config.ServiceURL; // The region needs to be determined from the ServiceURL if not set. var regionEndpoint = config.RegionEndpoint; if (regionEndpoint == null && !string.IsNullOrEmpty(config.ServiceURL)) { var regionName = AWSSDKUtils.DetermineRegion(config.ServiceURL); result.Region = RegionEndpoint.GetBySystemName(regionName).SystemName; } // To support legacy endpoint overridding rules in the endpoints.json if (result.Region == "us-east-1-regional") { result.Region = "us-east-1"; } // Use AlternateEndpoint region override if set if (requestContext.Request.AlternateEndpoint != null) { result.Region = requestContext.Request.AlternateEndpoint.SystemName; } // Assign staticContextParams and contextParam per operation return result; } } }
83
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using Amazon.Runtime.Internal; namespace Amazon.AppStream.Internal { /// <summary> /// Service metadata for Amazon AppStream service /// </summary> public partial class AmazonAppStreamMetadata : IServiceMetadata { /// <summary> /// Gets the value of the Service Id. /// </summary> public string ServiceId { get { return "AppStream"; } } /// <summary> /// Gets the dictionary that gives mapping of renamed operations /// </summary> public System.Collections.Generic.IDictionary<string, string> OperationNameMapping { get { return new System.Collections.Generic.Dictionary<string, string>(0) { }; } } } }
55
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// Describes an interface VPC endpoint (interface endpoint) that lets you create a private /// connection between the virtual private cloud (VPC) that you specify and AppStream /// 2.0. When you specify an interface endpoint for a stack, users of the stack can connect /// to AppStream 2.0 only through that endpoint. When you specify an interface endpoint /// for an image builder, administrators can connect to the image builder only through /// that endpoint. /// </summary> public partial class AccessEndpoint { private AccessEndpointType _endpointType; private string _vpceId; /// <summary> /// Gets and sets the property EndpointType. /// <para> /// The type of interface endpoint. /// </para> /// </summary> [AWSProperty(Required=true)] public AccessEndpointType EndpointType { get { return this._endpointType; } set { this._endpointType = value; } } // Check to see if EndpointType property is set internal bool IsSetEndpointType() { return this._endpointType != null; } /// <summary> /// Gets and sets the property VpceId. /// <para> /// The identifier (ID) of the VPC in which the interface endpoint is used. /// </para> /// </summary> [AWSProperty(Min=1)] public string VpceId { get { return this._vpceId; } set { this._vpceId = value; } } // Check to see if VpceId property is set internal bool IsSetVpceId() { return this._vpceId != null; } } }
83
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using Amazon.Runtime; namespace Amazon.AppStream { /// <summary> /// Base class for AppStream operation requests. /// </summary> public partial class AmazonAppStreamRequest : AmazonWebServiceRequest { } }
30
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// Describes an app block. /// /// /// <para> /// App blocks are an Amazon AppStream 2.0 resource that stores the details about the /// virtual hard disk in an S3 bucket. It also stores the setup script with details about /// how to mount the virtual hard disk. The virtual hard disk includes the application /// binaries and other files necessary to launch your applications. Multiple applications /// can be assigned to a single app block. /// </para> /// /// <para> /// This is only supported for Elastic fleets. /// </para> /// </summary> public partial class AppBlock { private List<ErrorDetails> _appBlockErrors = new List<ErrorDetails>(); private string _arn; private DateTime? _createdTime; private string _description; private string _displayName; private string _name; private PackagingType _packagingType; private ScriptDetails _postSetupScriptDetails; private ScriptDetails _setupScriptDetails; private S3Location _sourceS3Location; private AppBlockState _state; /// <summary> /// Gets and sets the property AppBlockErrors. /// <para> /// The errors of the app block. /// </para> /// </summary> public List<ErrorDetails> AppBlockErrors { get { return this._appBlockErrors; } set { this._appBlockErrors = value; } } // Check to see if AppBlockErrors property is set internal bool IsSetAppBlockErrors() { return this._appBlockErrors != null && this._appBlockErrors.Count > 0; } /// <summary> /// Gets and sets the property Arn. /// <para> /// The ARN of the app block. /// </para> /// </summary> [AWSProperty(Required=true)] public string Arn { get { return this._arn; } set { this._arn = value; } } // Check to see if Arn property is set internal bool IsSetArn() { return this._arn != null; } /// <summary> /// Gets and sets the property CreatedTime. /// <para> /// The created time of the app block. /// </para> /// </summary> public DateTime CreatedTime { get { return this._createdTime.GetValueOrDefault(); } set { this._createdTime = value; } } // Check to see if CreatedTime property is set internal bool IsSetCreatedTime() { return this._createdTime.HasValue; } /// <summary> /// Gets and sets the property Description. /// <para> /// The description of the app block. /// </para> /// </summary> [AWSProperty(Min=1)] public string Description { get { return this._description; } set { this._description = value; } } // Check to see if Description property is set internal bool IsSetDescription() { return this._description != null; } /// <summary> /// Gets and sets the property DisplayName. /// <para> /// The display name of the app block. /// </para> /// </summary> [AWSProperty(Min=1)] public string DisplayName { get { return this._displayName; } set { this._displayName = value; } } // Check to see if DisplayName property is set internal bool IsSetDisplayName() { return this._displayName != null; } /// <summary> /// Gets and sets the property Name. /// <para> /// The name of the app block. /// </para> /// </summary> [AWSProperty(Required=true, Min=1)] public string Name { get { return this._name; } set { this._name = value; } } // Check to see if Name property is set internal bool IsSetName() { return this._name != null; } /// <summary> /// Gets and sets the property PackagingType. /// <para> /// The packaging type of the app block. /// </para> /// </summary> public PackagingType PackagingType { get { return this._packagingType; } set { this._packagingType = value; } } // Check to see if PackagingType property is set internal bool IsSetPackagingType() { return this._packagingType != null; } /// <summary> /// Gets and sets the property PostSetupScriptDetails. /// <para> /// The post setup script details of the app block. /// </para> /// /// <para> /// This only applies to app blocks with PackagingType <code>APPSTREAM2</code>. /// </para> /// </summary> public ScriptDetails PostSetupScriptDetails { get { return this._postSetupScriptDetails; } set { this._postSetupScriptDetails = value; } } // Check to see if PostSetupScriptDetails property is set internal bool IsSetPostSetupScriptDetails() { return this._postSetupScriptDetails != null; } /// <summary> /// Gets and sets the property SetupScriptDetails. /// <para> /// The setup script details of the app block. /// </para> /// /// <para> /// This only applies to app blocks with PackagingType <code>CUSTOM</code>. /// </para> /// </summary> public ScriptDetails SetupScriptDetails { get { return this._setupScriptDetails; } set { this._setupScriptDetails = value; } } // Check to see if SetupScriptDetails property is set internal bool IsSetSetupScriptDetails() { return this._setupScriptDetails != null; } /// <summary> /// Gets and sets the property SourceS3Location. /// <para> /// The source S3 location of the app block. /// </para> /// </summary> public S3Location SourceS3Location { get { return this._sourceS3Location; } set { this._sourceS3Location = value; } } // Check to see if SourceS3Location property is set internal bool IsSetSourceS3Location() { return this._sourceS3Location != null; } /// <summary> /// Gets and sets the property State. /// <para> /// The state of the app block. /// </para> /// /// <para> /// An app block with AppStream 2.0 packaging will be in the <code>INACTIVE</code> state /// if no application package (VHD) is assigned to it. After an application package (VHD) /// is created by an app block builder for an app block, it becomes <code>ACTIVE</code>. /// /// </para> /// /// <para> /// Custom app blocks are always in the <code>ACTIVE</code> state and no action is required /// to use them. /// </para> /// </summary> public AppBlockState State { get { return this._state; } set { this._state = value; } } // Check to see if State property is set internal bool IsSetState() { return this._state != null; } } }
284
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// Describes an app block builder. /// </summary> public partial class AppBlockBuilder { private List<AccessEndpoint> _accessEndpoints = new List<AccessEndpoint>(); private List<ResourceError> _appBlockBuilderErrors = new List<ResourceError>(); private string _arn; private DateTime? _createdTime; private string _description; private string _displayName; private bool? _enableDefaultInternetAccess; private string _iamRoleArn; private string _instanceType; private string _name; private AppBlockBuilderPlatformType _platform; private AppBlockBuilderState _state; private AppBlockBuilderStateChangeReason _stateChangeReason; private VpcConfig _vpcConfig; /// <summary> /// Gets and sets the property AccessEndpoints. /// <para> /// The list of interface VPC endpoint (interface endpoint) objects. Administrators can /// connect to the app block builder only through the specified endpoints. /// </para> /// </summary> [AWSProperty(Min=1, Max=4)] public List<AccessEndpoint> AccessEndpoints { get { return this._accessEndpoints; } set { this._accessEndpoints = value; } } // Check to see if AccessEndpoints property is set internal bool IsSetAccessEndpoints() { return this._accessEndpoints != null && this._accessEndpoints.Count > 0; } /// <summary> /// Gets and sets the property AppBlockBuilderErrors. /// <para> /// The app block builder errors. /// </para> /// </summary> public List<ResourceError> AppBlockBuilderErrors { get { return this._appBlockBuilderErrors; } set { this._appBlockBuilderErrors = value; } } // Check to see if AppBlockBuilderErrors property is set internal bool IsSetAppBlockBuilderErrors() { return this._appBlockBuilderErrors != null && this._appBlockBuilderErrors.Count > 0; } /// <summary> /// Gets and sets the property Arn. /// <para> /// The ARN of the app block builder. /// </para> /// </summary> [AWSProperty(Required=true)] public string Arn { get { return this._arn; } set { this._arn = value; } } // Check to see if Arn property is set internal bool IsSetArn() { return this._arn != null; } /// <summary> /// Gets and sets the property CreatedTime. /// <para> /// The creation time of the app block builder. /// </para> /// </summary> public DateTime CreatedTime { get { return this._createdTime.GetValueOrDefault(); } set { this._createdTime = value; } } // Check to see if CreatedTime property is set internal bool IsSetCreatedTime() { return this._createdTime.HasValue; } /// <summary> /// Gets and sets the property Description. /// <para> /// The description of the app block builder. /// </para> /// </summary> [AWSProperty(Min=1)] public string Description { get { return this._description; } set { this._description = value; } } // Check to see if Description property is set internal bool IsSetDescription() { return this._description != null; } /// <summary> /// Gets and sets the property DisplayName. /// <para> /// The display name of the app block builder. /// </para> /// </summary> [AWSProperty(Min=1)] public string DisplayName { get { return this._displayName; } set { this._displayName = value; } } // Check to see if DisplayName property is set internal bool IsSetDisplayName() { return this._displayName != null; } /// <summary> /// Gets and sets the property EnableDefaultInternetAccess. /// <para> /// Indicates whether default internet access is enabled for the app block builder. /// </para> /// </summary> public bool EnableDefaultInternetAccess { get { return this._enableDefaultInternetAccess.GetValueOrDefault(); } set { this._enableDefaultInternetAccess = value; } } // Check to see if EnableDefaultInternetAccess property is set internal bool IsSetEnableDefaultInternetAccess() { return this._enableDefaultInternetAccess.HasValue; } /// <summary> /// Gets and sets the property IamRoleArn. /// <para> /// The ARN of the IAM role that is applied to the app block builder. /// </para> /// </summary> public string IamRoleArn { get { return this._iamRoleArn; } set { this._iamRoleArn = value; } } // Check to see if IamRoleArn property is set internal bool IsSetIamRoleArn() { return this._iamRoleArn != null; } /// <summary> /// Gets and sets the property InstanceType. /// <para> /// The instance type of the app block builder. /// </para> /// </summary> [AWSProperty(Required=true, Min=1)] public string InstanceType { get { return this._instanceType; } set { this._instanceType = value; } } // Check to see if InstanceType property is set internal bool IsSetInstanceType() { return this._instanceType != null; } /// <summary> /// Gets and sets the property Name. /// <para> /// The name of the app block builder. /// </para> /// </summary> [AWSProperty(Required=true, Min=1)] public string Name { get { return this._name; } set { this._name = value; } } // Check to see if Name property is set internal bool IsSetName() { return this._name != null; } /// <summary> /// Gets and sets the property Platform. /// <para> /// The platform of the app block builder. /// </para> /// /// <para> /// <code>WINDOWS_SERVER_2019</code> is the only valid value. /// </para> /// </summary> [AWSProperty(Required=true)] public AppBlockBuilderPlatformType Platform { get { return this._platform; } set { this._platform = value; } } // Check to see if Platform property is set internal bool IsSetPlatform() { return this._platform != null; } /// <summary> /// Gets and sets the property State. /// <para> /// The state of the app block builder. /// </para> /// </summary> [AWSProperty(Required=true)] public AppBlockBuilderState State { get { return this._state; } set { this._state = value; } } // Check to see if State property is set internal bool IsSetState() { return this._state != null; } /// <summary> /// Gets and sets the property StateChangeReason. /// <para> /// The state change reason. /// </para> /// </summary> public AppBlockBuilderStateChangeReason StateChangeReason { get { return this._stateChangeReason; } set { this._stateChangeReason = value; } } // Check to see if StateChangeReason property is set internal bool IsSetStateChangeReason() { return this._stateChangeReason != null; } /// <summary> /// Gets and sets the property VpcConfig. /// <para> /// The VPC configuration for the app block builder. /// </para> /// </summary> [AWSProperty(Required=true)] public VpcConfig VpcConfig { get { return this._vpcConfig; } set { this._vpcConfig = value; } } // Check to see if VpcConfig property is set internal bool IsSetVpcConfig() { return this._vpcConfig != null; } } }
318
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// Describes an association between an app block builder and app block. /// </summary> public partial class AppBlockBuilderAppBlockAssociation { private string _appBlockArn; private string _appBlockBuilderName; /// <summary> /// Gets and sets the property AppBlockArn. /// <para> /// The ARN of the app block. /// </para> /// </summary> [AWSProperty(Required=true)] public string AppBlockArn { get { return this._appBlockArn; } set { this._appBlockArn = value; } } // Check to see if AppBlockArn property is set internal bool IsSetAppBlockArn() { return this._appBlockArn != null; } /// <summary> /// Gets and sets the property AppBlockBuilderName. /// <para> /// The name of the app block builder. /// </para> /// </summary> [AWSProperty(Required=true)] public string AppBlockBuilderName { get { return this._appBlockBuilderName; } set { this._appBlockBuilderName = value; } } // Check to see if AppBlockBuilderName property is set internal bool IsSetAppBlockBuilderName() { return this._appBlockBuilderName != null; } } }
78
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// Describes the reason why the last app block builder state change occurred. /// </summary> public partial class AppBlockBuilderStateChangeReason { private AppBlockBuilderStateChangeReasonCode _code; private string _message; /// <summary> /// Gets and sets the property Code. /// <para> /// The state change reason code. /// </para> /// </summary> public AppBlockBuilderStateChangeReasonCode Code { get { return this._code; } set { this._code = value; } } // Check to see if Code property is set internal bool IsSetCode() { return this._code != null; } /// <summary> /// Gets and sets the property Message. /// <para> /// The state change reason message. /// </para> /// </summary> [AWSProperty(Min=1)] public string Message { get { return this._message; } set { this._message = value; } } // Check to see if Message property is set internal bool IsSetMessage() { return this._message != null; } } }
77
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// Describes an application in the application catalog. /// </summary> public partial class Application { private string _appBlockArn; private string _arn; private DateTime? _createdTime; private string _description; private string _displayName; private bool? _enabled; private S3Location _iconS3Location; private string _iconURL; private List<string> _instanceFamilies = new List<string>(); private string _launchParameters; private string _launchPath; private Dictionary<string, string> _metadata = new Dictionary<string, string>(); private string _name; private List<string> _platforms = new List<string>(); private string _workingDirectory; /// <summary> /// Gets and sets the property AppBlockArn. /// <para> /// The app block ARN of the application. /// </para> /// </summary> public string AppBlockArn { get { return this._appBlockArn; } set { this._appBlockArn = value; } } // Check to see if AppBlockArn property is set internal bool IsSetAppBlockArn() { return this._appBlockArn != null; } /// <summary> /// Gets and sets the property Arn. /// <para> /// The ARN of the application. /// </para> /// </summary> public string Arn { get { return this._arn; } set { this._arn = value; } } // Check to see if Arn property is set internal bool IsSetArn() { return this._arn != null; } /// <summary> /// Gets and sets the property CreatedTime. /// <para> /// The time at which the application was created within the app block. /// </para> /// </summary> public DateTime CreatedTime { get { return this._createdTime.GetValueOrDefault(); } set { this._createdTime = value; } } // Check to see if CreatedTime property is set internal bool IsSetCreatedTime() { return this._createdTime.HasValue; } /// <summary> /// Gets and sets the property Description. /// <para> /// The description of the application. /// </para> /// </summary> [AWSProperty(Min=1)] public string Description { get { return this._description; } set { this._description = value; } } // Check to see if Description property is set internal bool IsSetDescription() { return this._description != null; } /// <summary> /// Gets and sets the property DisplayName. /// <para> /// The application name to display. /// </para> /// </summary> [AWSProperty(Min=1)] public string DisplayName { get { return this._displayName; } set { this._displayName = value; } } // Check to see if DisplayName property is set internal bool IsSetDisplayName() { return this._displayName != null; } /// <summary> /// Gets and sets the property Enabled. /// <para> /// If there is a problem, the application can be disabled after image creation. /// </para> /// </summary> public bool Enabled { get { return this._enabled.GetValueOrDefault(); } set { this._enabled = value; } } // Check to see if Enabled property is set internal bool IsSetEnabled() { return this._enabled.HasValue; } /// <summary> /// Gets and sets the property IconS3Location. /// <para> /// The S3 location of the application icon. /// </para> /// </summary> public S3Location IconS3Location { get { return this._iconS3Location; } set { this._iconS3Location = value; } } // Check to see if IconS3Location property is set internal bool IsSetIconS3Location() { return this._iconS3Location != null; } /// <summary> /// Gets and sets the property IconURL. /// <para> /// The URL for the application icon. This URL might be time-limited. /// </para> /// </summary> [AWSProperty(Min=1)] public string IconURL { get { return this._iconURL; } set { this._iconURL = value; } } // Check to see if IconURL property is set internal bool IsSetIconURL() { return this._iconURL != null; } /// <summary> /// Gets and sets the property InstanceFamilies. /// <para> /// The instance families for the application. /// </para> /// </summary> public List<string> InstanceFamilies { get { return this._instanceFamilies; } set { this._instanceFamilies = value; } } // Check to see if InstanceFamilies property is set internal bool IsSetInstanceFamilies() { return this._instanceFamilies != null && this._instanceFamilies.Count > 0; } /// <summary> /// Gets and sets the property LaunchParameters. /// <para> /// The arguments that are passed to the application at launch. /// </para> /// </summary> [AWSProperty(Min=1)] public string LaunchParameters { get { return this._launchParameters; } set { this._launchParameters = value; } } // Check to see if LaunchParameters property is set internal bool IsSetLaunchParameters() { return this._launchParameters != null; } /// <summary> /// Gets and sets the property LaunchPath. /// <para> /// The path to the application executable in the instance. /// </para> /// </summary> [AWSProperty(Min=1)] public string LaunchPath { get { return this._launchPath; } set { this._launchPath = value; } } // Check to see if LaunchPath property is set internal bool IsSetLaunchPath() { return this._launchPath != null; } /// <summary> /// Gets and sets the property Metadata. /// <para> /// Additional attributes that describe the application. /// </para> /// </summary> public Dictionary<string, string> Metadata { get { return this._metadata; } set { this._metadata = value; } } // Check to see if Metadata property is set internal bool IsSetMetadata() { return this._metadata != null && this._metadata.Count > 0; } /// <summary> /// Gets and sets the property Name. /// <para> /// The name of the application. /// </para> /// </summary> [AWSProperty(Min=1)] public string Name { get { return this._name; } set { this._name = value; } } // Check to see if Name property is set internal bool IsSetName() { return this._name != null; } /// <summary> /// Gets and sets the property Platforms. /// <para> /// The platforms on which the application can run. /// </para> /// </summary> [AWSProperty(Max=4)] public List<string> Platforms { get { return this._platforms; } set { this._platforms = value; } } // Check to see if Platforms property is set internal bool IsSetPlatforms() { return this._platforms != null && this._platforms.Count > 0; } /// <summary> /// Gets and sets the property WorkingDirectory. /// <para> /// The working directory for the application. /// </para> /// </summary> [AWSProperty(Min=1)] public string WorkingDirectory { get { return this._workingDirectory; } set { this._workingDirectory = value; } } // Check to see if WorkingDirectory property is set internal bool IsSetWorkingDirectory() { return this._workingDirectory != null; } } }
331
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// Describes the application fleet association. /// </summary> public partial class ApplicationFleetAssociation { private string _applicationArn; private string _fleetName; /// <summary> /// Gets and sets the property ApplicationArn. /// <para> /// The ARN of the application associated with the fleet. /// </para> /// </summary> [AWSProperty(Required=true)] public string ApplicationArn { get { return this._applicationArn; } set { this._applicationArn = value; } } // Check to see if ApplicationArn property is set internal bool IsSetApplicationArn() { return this._applicationArn != null; } /// <summary> /// Gets and sets the property FleetName. /// <para> /// The name of the fleet associated with the application. /// </para> /// </summary> [AWSProperty(Required=true, Min=1)] public string FleetName { get { return this._fleetName; } set { this._fleetName = value; } } // Check to see if FleetName property is set internal bool IsSetFleetName() { return this._fleetName != null; } } }
78
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// The persistent application settings for users of a stack. /// </summary> public partial class ApplicationSettings { private bool? _enabled; private string _settingsGroup; /// <summary> /// Gets and sets the property Enabled. /// <para> /// Enables or disables persistent application settings for users during their streaming /// sessions. /// </para> /// </summary> [AWSProperty(Required=true)] public bool Enabled { get { return this._enabled.GetValueOrDefault(); } set { this._enabled = value; } } // Check to see if Enabled property is set internal bool IsSetEnabled() { return this._enabled.HasValue; } /// <summary> /// Gets and sets the property SettingsGroup. /// <para> /// The path prefix for the S3 bucket where users’ persistent application settings are /// stored. You can allow the same persistent application settings to be used across multiple /// stacks by specifying the same settings group for each stack. /// </para> /// </summary> [AWSProperty(Max=100)] public string SettingsGroup { get { return this._settingsGroup; } set { this._settingsGroup = value; } } // Check to see if SettingsGroup property is set internal bool IsSetSettingsGroup() { return this._settingsGroup != null; } } }
81
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// Describes the persistent application settings for users of a stack. /// </summary> public partial class ApplicationSettingsResponse { private bool? _enabled; private string _s3BucketName; private string _settingsGroup; /// <summary> /// Gets and sets the property Enabled. /// <para> /// Specifies whether persistent application settings are enabled for users during their /// streaming sessions. /// </para> /// </summary> public bool Enabled { get { return this._enabled.GetValueOrDefault(); } set { this._enabled = value; } } // Check to see if Enabled property is set internal bool IsSetEnabled() { return this._enabled.HasValue; } /// <summary> /// Gets and sets the property S3BucketName. /// <para> /// The S3 bucket where users’ persistent application settings are stored. When persistent /// application settings are enabled for the first time for an account in an AWS Region, /// an S3 bucket is created. The bucket is unique to the AWS account and the Region. /// </para> /// </summary> [AWSProperty(Min=1)] public string S3BucketName { get { return this._s3BucketName; } set { this._s3BucketName = value; } } // Check to see if S3BucketName property is set internal bool IsSetS3BucketName() { return this._s3BucketName != null; } /// <summary> /// Gets and sets the property SettingsGroup. /// <para> /// The path prefix for the S3 bucket where users’ persistent application settings are /// stored. /// </para> /// </summary> [AWSProperty(Max=100)] public string SettingsGroup { get { return this._settingsGroup; } set { this._settingsGroup = value; } } // Check to see if SettingsGroup property is set internal bool IsSetSettingsGroup() { return this._settingsGroup != null; } } }
101
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// Container for the parameters to the AssociateAppBlockBuilderAppBlock operation. /// Associates the specified app block builder with the specified app block. /// </summary> public partial class AssociateAppBlockBuilderAppBlockRequest : AmazonAppStreamRequest { private string _appBlockArn; private string _appBlockBuilderName; /// <summary> /// Gets and sets the property AppBlockArn. /// <para> /// The ARN of the app block. /// </para> /// </summary> [AWSProperty(Required=true)] public string AppBlockArn { get { return this._appBlockArn; } set { this._appBlockArn = value; } } // Check to see if AppBlockArn property is set internal bool IsSetAppBlockArn() { return this._appBlockArn != null; } /// <summary> /// Gets and sets the property AppBlockBuilderName. /// <para> /// The name of the app block builder. /// </para> /// </summary> [AWSProperty(Required=true)] public string AppBlockBuilderName { get { return this._appBlockBuilderName; } set { this._appBlockBuilderName = value; } } // Check to see if AppBlockBuilderName property is set internal bool IsSetAppBlockBuilderName() { return this._appBlockBuilderName != null; } } }
79
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// This is the response object from the AssociateAppBlockBuilderAppBlock operation. /// </summary> public partial class AssociateAppBlockBuilderAppBlockResponse : AmazonWebServiceResponse { private AppBlockBuilderAppBlockAssociation _appBlockBuilderAppBlockAssociation; /// <summary> /// Gets and sets the property AppBlockBuilderAppBlockAssociation. /// <para> /// The list of app block builders associated with app blocks. /// </para> /// </summary> public AppBlockBuilderAppBlockAssociation AppBlockBuilderAppBlockAssociation { get { return this._appBlockBuilderAppBlockAssociation; } set { this._appBlockBuilderAppBlockAssociation = value; } } // Check to see if AppBlockBuilderAppBlockAssociation property is set internal bool IsSetAppBlockBuilderAppBlockAssociation() { return this._appBlockBuilderAppBlockAssociation != null; } } }
57
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// Container for the parameters to the AssociateApplicationFleet operation. /// Associates the specified application with the specified fleet. This is only supported /// for Elastic fleets. /// </summary> public partial class AssociateApplicationFleetRequest : AmazonAppStreamRequest { private string _applicationArn; private string _fleetName; /// <summary> /// Gets and sets the property ApplicationArn. /// <para> /// The ARN of the application. /// </para> /// </summary> [AWSProperty(Required=true)] public string ApplicationArn { get { return this._applicationArn; } set { this._applicationArn = value; } } // Check to see if ApplicationArn property is set internal bool IsSetApplicationArn() { return this._applicationArn != null; } /// <summary> /// Gets and sets the property FleetName. /// <para> /// The name of the fleet. /// </para> /// </summary> [AWSProperty(Required=true)] public string FleetName { get { return this._fleetName; } set { this._fleetName = value; } } // Check to see if FleetName property is set internal bool IsSetFleetName() { return this._fleetName != null; } } }
80
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// This is the response object from the AssociateApplicationFleet operation. /// </summary> public partial class AssociateApplicationFleetResponse : AmazonWebServiceResponse { private ApplicationFleetAssociation _applicationFleetAssociation; /// <summary> /// Gets and sets the property ApplicationFleetAssociation. /// <para> /// If fleet name is specified, this returns the list of applications that are associated /// to it. If application ARN is specified, this returns the list of fleets to which it /// is associated. /// </para> /// </summary> public ApplicationFleetAssociation ApplicationFleetAssociation { get { return this._applicationFleetAssociation; } set { this._applicationFleetAssociation = value; } } // Check to see if ApplicationFleetAssociation property is set internal bool IsSetApplicationFleetAssociation() { return this._applicationFleetAssociation != null; } } }
59
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// Container for the parameters to the AssociateApplicationToEntitlement operation. /// Associates an application to entitle. /// </summary> public partial class AssociateApplicationToEntitlementRequest : AmazonAppStreamRequest { private string _applicationIdentifier; private string _entitlementName; private string _stackName; /// <summary> /// Gets and sets the property ApplicationIdentifier. /// <para> /// The identifier of the application. /// </para> /// </summary> [AWSProperty(Required=true, Min=1)] public string ApplicationIdentifier { get { return this._applicationIdentifier; } set { this._applicationIdentifier = value; } } // Check to see if ApplicationIdentifier property is set internal bool IsSetApplicationIdentifier() { return this._applicationIdentifier != null; } /// <summary> /// Gets and sets the property EntitlementName. /// <para> /// The name of the entitlement. /// </para> /// </summary> [AWSProperty(Required=true)] public string EntitlementName { get { return this._entitlementName; } set { this._entitlementName = value; } } // Check to see if EntitlementName property is set internal bool IsSetEntitlementName() { return this._entitlementName != null; } /// <summary> /// Gets and sets the property StackName. /// <para> /// The name of the stack. /// </para> /// </summary> [AWSProperty(Required=true)] public string StackName { get { return this._stackName; } set { this._stackName = value; } } // Check to see if StackName property is set internal bool IsSetStackName() { return this._stackName != null; } } }
99
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// This is the response object from the AssociateApplicationToEntitlement operation. /// </summary> public partial class AssociateApplicationToEntitlementResponse : AmazonWebServiceResponse { } }
38
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// Container for the parameters to the AssociateFleet operation. /// Associates the specified fleet with the specified stack. /// </summary> public partial class AssociateFleetRequest : AmazonAppStreamRequest { private string _fleetName; private string _stackName; /// <summary> /// Gets and sets the property FleetName. /// <para> /// The name of the fleet. /// </para> /// </summary> [AWSProperty(Required=true, Min=1)] public string FleetName { get { return this._fleetName; } set { this._fleetName = value; } } // Check to see if FleetName property is set internal bool IsSetFleetName() { return this._fleetName != null; } /// <summary> /// Gets and sets the property StackName. /// <para> /// The name of the stack. /// </para> /// </summary> [AWSProperty(Required=true, Min=1)] public string StackName { get { return this._stackName; } set { this._stackName = value; } } // Check to see if StackName property is set internal bool IsSetStackName() { return this._stackName != null; } } }
79
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// This is the response object from the AssociateFleet operation. /// </summary> public partial class AssociateFleetResponse : AmazonWebServiceResponse { } }
38
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// Container for the parameters to the BatchAssociateUserStack operation. /// Associates the specified users with the specified stacks. Users in a user pool cannot /// be assigned to stacks with fleets that are joined to an Active Directory domain. /// </summary> public partial class BatchAssociateUserStackRequest : AmazonAppStreamRequest { private List<UserStackAssociation> _userStackAssociations = new List<UserStackAssociation>(); /// <summary> /// Gets and sets the property UserStackAssociations. /// <para> /// The list of UserStackAssociation objects. /// </para> /// </summary> [AWSProperty(Required=true, Min=1, Max=25)] public List<UserStackAssociation> UserStackAssociations { get { return this._userStackAssociations; } set { this._userStackAssociations = value; } } // Check to see if UserStackAssociations property is set internal bool IsSetUserStackAssociations() { return this._userStackAssociations != null && this._userStackAssociations.Count > 0; } } }
60
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// This is the response object from the BatchAssociateUserStack operation. /// </summary> public partial class BatchAssociateUserStackResponse : AmazonWebServiceResponse { private List<UserStackAssociationError> _errors = new List<UserStackAssociationError>(); /// <summary> /// Gets and sets the property Errors. /// <para> /// The list of UserStackAssociationError objects. /// </para> /// </summary> public List<UserStackAssociationError> Errors { get { return this._errors; } set { this._errors = value; } } // Check to see if Errors property is set internal bool IsSetErrors() { return this._errors != null && this._errors.Count > 0; } } }
57
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// Container for the parameters to the BatchDisassociateUserStack operation. /// Disassociates the specified users from the specified stacks. /// </summary> public partial class BatchDisassociateUserStackRequest : AmazonAppStreamRequest { private List<UserStackAssociation> _userStackAssociations = new List<UserStackAssociation>(); /// <summary> /// Gets and sets the property UserStackAssociations. /// <para> /// The list of UserStackAssociation objects. /// </para> /// </summary> [AWSProperty(Required=true, Min=1, Max=25)] public List<UserStackAssociation> UserStackAssociations { get { return this._userStackAssociations; } set { this._userStackAssociations = value; } } // Check to see if UserStackAssociations property is set internal bool IsSetUserStackAssociations() { return this._userStackAssociations != null && this._userStackAssociations.Count > 0; } } }
59
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// This is the response object from the BatchDisassociateUserStack operation. /// </summary> public partial class BatchDisassociateUserStackResponse : AmazonWebServiceResponse { private List<UserStackAssociationError> _errors = new List<UserStackAssociationError>(); /// <summary> /// Gets and sets the property Errors. /// <para> /// The list of UserStackAssociationError objects. /// </para> /// </summary> public List<UserStackAssociationError> Errors { get { return this._errors; } set { this._errors = value; } } // Check to see if Errors property is set internal bool IsSetErrors() { return this._errors != null && this._errors.Count > 0; } } }
57
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// The certificate-based authentication properties used to authenticate SAML 2.0 Identity /// Provider (IdP) user identities to Active Directory domain-joined streaming instances. /// Fallback is turned on by default when certificate-based authentication is <b>Enabled</b> /// . Fallback allows users to log in using their AD domain password if certificate-based /// authentication is unsuccessful, or to unlock a desktop lock screen. <b>Enabled_no_directory_login_fallback</b> /// enables certificate-based authentication, but does not allow users to log in using /// their AD domain password. Users will be disconnected to re-authenticate using certificates. /// </summary> public partial class CertificateBasedAuthProperties { private string _certificateAuthorityArn; private CertificateBasedAuthStatus _status; /// <summary> /// Gets and sets the property CertificateAuthorityArn. /// <para> /// The ARN of the AWS Certificate Manager Private CA resource. /// </para> /// </summary> public string CertificateAuthorityArn { get { return this._certificateAuthorityArn; } set { this._certificateAuthorityArn = value; } } // Check to see if CertificateAuthorityArn property is set internal bool IsSetCertificateAuthorityArn() { return this._certificateAuthorityArn != null; } /// <summary> /// Gets and sets the property Status. /// <para> /// The status of the certificate-based authentication properties. /// </para> /// </summary> public CertificateBasedAuthStatus Status { get { return this._status; } set { this._status = value; } } // Check to see if Status property is set internal bool IsSetStatus() { return this._status != null; } } }
82
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// Describes the capacity for a fleet. /// </summary> public partial class ComputeCapacity { private int? _desiredInstances; /// <summary> /// Gets and sets the property DesiredInstances. /// <para> /// The desired number of streaming instances. /// </para> /// </summary> [AWSProperty(Required=true)] public int DesiredInstances { get { return this._desiredInstances.GetValueOrDefault(); } set { this._desiredInstances = value; } } // Check to see if DesiredInstances property is set internal bool IsSetDesiredInstances() { return this._desiredInstances.HasValue; } } }
58
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// Describes the capacity status for a fleet. /// </summary> public partial class ComputeCapacityStatus { private int? _available; private int? _desired; private int? _inUse; private int? _running; /// <summary> /// Gets and sets the property Available. /// <para> /// The number of currently available instances that can be used to stream sessions. /// </para> /// </summary> public int Available { get { return this._available.GetValueOrDefault(); } set { this._available = value; } } // Check to see if Available property is set internal bool IsSetAvailable() { return this._available.HasValue; } /// <summary> /// Gets and sets the property Desired. /// <para> /// The desired number of streaming instances. /// </para> /// </summary> [AWSProperty(Required=true)] public int Desired { get { return this._desired.GetValueOrDefault(); } set { this._desired = value; } } // Check to see if Desired property is set internal bool IsSetDesired() { return this._desired.HasValue; } /// <summary> /// Gets and sets the property InUse. /// <para> /// The number of instances in use for streaming. /// </para> /// </summary> public int InUse { get { return this._inUse.GetValueOrDefault(); } set { this._inUse = value; } } // Check to see if InUse property is set internal bool IsSetInUse() { return this._inUse.HasValue; } /// <summary> /// Gets and sets the property Running. /// <para> /// The total number of simultaneous streaming instances that are running. /// </para> /// </summary> public int Running { get { return this._running.GetValueOrDefault(); } set { this._running = value; } } // Check to see if Running property is set internal bool IsSetRunning() { return this._running.HasValue; } } }
115
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// An API error occurred. Wait a few minutes and try again. /// </summary> #if !NETSTANDARD [Serializable] #endif public partial class ConcurrentModificationException : AmazonAppStreamException { /// <summary> /// Constructs a new ConcurrentModificationException with the specified error /// message. /// </summary> /// <param name="message"> /// Describes the error encountered. /// </param> public ConcurrentModificationException(string message) : base(message) {} /// <summary> /// Construct instance of ConcurrentModificationException /// </summary> /// <param name="message"></param> /// <param name="innerException"></param> public ConcurrentModificationException(string message, Exception innerException) : base(message, innerException) {} /// <summary> /// Construct instance of ConcurrentModificationException /// </summary> /// <param name="innerException"></param> public ConcurrentModificationException(Exception innerException) : base(innerException) {} /// <summary> /// Construct instance of ConcurrentModificationException /// </summary> /// <param name="message"></param> /// <param name="innerException"></param> /// <param name="errorType"></param> /// <param name="errorCode"></param> /// <param name="requestId"></param> /// <param name="statusCode"></param> public ConcurrentModificationException(string message, Exception innerException, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode) : base(message, innerException, errorType, errorCode, requestId, statusCode) {} /// <summary> /// Construct instance of ConcurrentModificationException /// </summary> /// <param name="message"></param> /// <param name="errorType"></param> /// <param name="errorCode"></param> /// <param name="requestId"></param> /// <param name="statusCode"></param> public ConcurrentModificationException(string message, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode) : base(message, errorType, errorCode, requestId, statusCode) {} #if !NETSTANDARD /// <summary> /// Constructs a new instance of the ConcurrentModificationException class with serialized data. /// </summary> /// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param> /// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param> /// <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is null. </exception> /// <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult" /> is zero (0). </exception> protected ConcurrentModificationException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) : base(info, context) { } /// <summary> /// Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with information about the exception. /// </summary> /// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param> /// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param> /// <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is a null reference (Nothing in Visual Basic). </exception> #if BCL35 [System.Security.Permissions.SecurityPermission( System.Security.Permissions.SecurityAction.LinkDemand, Flags = System.Security.Permissions.SecurityPermissionFlag.SerializationFormatter)] #endif [System.Security.SecurityCritical] // These FxCop rules are giving false-positives for this method [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")] [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2134:MethodsMustOverrideWithConsistentTransparencyFxCopRule")] public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { base.GetObjectData(info, context); } #endif } }
124
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// Container for the parameters to the CopyImage operation. /// Copies the image within the same region or to a new region within the same AWS account. /// Note that any tags you added to the image will not be copied. /// </summary> public partial class CopyImageRequest : AmazonAppStreamRequest { private string _destinationImageDescription; private string _destinationImageName; private string _destinationRegion; private string _sourceImageName; /// <summary> /// Gets and sets the property DestinationImageDescription. /// <para> /// The description that the image will have when it is copied to the destination. /// </para> /// </summary> [AWSProperty(Max=256)] public string DestinationImageDescription { get { return this._destinationImageDescription; } set { this._destinationImageDescription = value; } } // Check to see if DestinationImageDescription property is set internal bool IsSetDestinationImageDescription() { return this._destinationImageDescription != null; } /// <summary> /// Gets and sets the property DestinationImageName. /// <para> /// The name that the image will have when it is copied to the destination. /// </para> /// </summary> [AWSProperty(Required=true)] public string DestinationImageName { get { return this._destinationImageName; } set { this._destinationImageName = value; } } // Check to see if DestinationImageName property is set internal bool IsSetDestinationImageName() { return this._destinationImageName != null; } /// <summary> /// Gets and sets the property DestinationRegion. /// <para> /// The destination region to which the image will be copied. This parameter is required, /// even if you are copying an image within the same region. /// </para> /// </summary> [AWSProperty(Required=true, Min=1, Max=32)] public string DestinationRegion { get { return this._destinationRegion; } set { this._destinationRegion = value; } } // Check to see if DestinationRegion property is set internal bool IsSetDestinationRegion() { return this._destinationRegion != null; } /// <summary> /// Gets and sets the property SourceImageName. /// <para> /// The name of the image to copy. /// </para> /// </summary> [AWSProperty(Required=true)] public string SourceImageName { get { return this._sourceImageName; } set { this._sourceImageName = value; } } // Check to see if SourceImageName property is set internal bool IsSetSourceImageName() { return this._sourceImageName != null; } } }
121
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// This is the response object from the CopyImage operation. /// </summary> public partial class CopyImageResponse : AmazonWebServiceResponse { private string _destinationImageName; /// <summary> /// Gets and sets the property DestinationImageName. /// <para> /// The name of the destination image. /// </para> /// </summary> public string DestinationImageName { get { return this._destinationImageName; } set { this._destinationImageName = value; } } // Check to see if DestinationImageName property is set internal bool IsSetDestinationImageName() { return this._destinationImageName != null; } } }
57
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// Container for the parameters to the CreateAppBlockBuilder operation. /// Creates an app block builder. /// </summary> public partial class CreateAppBlockBuilderRequest : AmazonAppStreamRequest { private List<AccessEndpoint> _accessEndpoints = new List<AccessEndpoint>(); private string _description; private string _displayName; private bool? _enableDefaultInternetAccess; private string _iamRoleArn; private string _instanceType; private string _name; private AppBlockBuilderPlatformType _platform; private Dictionary<string, string> _tags = new Dictionary<string, string>(); private VpcConfig _vpcConfig; /// <summary> /// Gets and sets the property AccessEndpoints. /// <para> /// The list of interface VPC endpoint (interface endpoint) objects. Administrators can /// connect to the app block builder only through the specified endpoints. /// </para> /// </summary> [AWSProperty(Min=1, Max=4)] public List<AccessEndpoint> AccessEndpoints { get { return this._accessEndpoints; } set { this._accessEndpoints = value; } } // Check to see if AccessEndpoints property is set internal bool IsSetAccessEndpoints() { return this._accessEndpoints != null && this._accessEndpoints.Count > 0; } /// <summary> /// Gets and sets the property Description. /// <para> /// The description of the app block builder. /// </para> /// </summary> [AWSProperty(Max=256)] public string Description { get { return this._description; } set { this._description = value; } } // Check to see if Description property is set internal bool IsSetDescription() { return this._description != null; } /// <summary> /// Gets and sets the property DisplayName. /// <para> /// The display name of the app block builder. /// </para> /// </summary> [AWSProperty(Max=100)] public string DisplayName { get { return this._displayName; } set { this._displayName = value; } } // Check to see if DisplayName property is set internal bool IsSetDisplayName() { return this._displayName != null; } /// <summary> /// Gets and sets the property EnableDefaultInternetAccess. /// <para> /// Enables or disables default internet access for the app block builder. /// </para> /// </summary> public bool EnableDefaultInternetAccess { get { return this._enableDefaultInternetAccess.GetValueOrDefault(); } set { this._enableDefaultInternetAccess = value; } } // Check to see if EnableDefaultInternetAccess property is set internal bool IsSetEnableDefaultInternetAccess() { return this._enableDefaultInternetAccess.HasValue; } /// <summary> /// Gets and sets the property IamRoleArn. /// <para> /// The Amazon Resource Name (ARN) of the IAM role to apply to the app block builder. /// To assume a role, the app block builder calls the AWS Security Token Service (STS) /// <code>AssumeRole</code> API operation and passes the ARN of the role to use. The operation /// creates a new session with temporary credentials. AppStream 2.0 retrieves the temporary /// credentials and creates the <b>appstream_machine_role</b> credential profile on the /// instance. /// </para> /// /// <para> /// For more information, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/using-iam-roles-to-grant-permissions-to-applications-scripts-streaming-instances.html">Using /// an IAM Role to Grant Permissions to Applications and Scripts Running on AppStream /// 2.0 Streaming Instances</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>. /// </para> /// </summary> public string IamRoleArn { get { return this._iamRoleArn; } set { this._iamRoleArn = value; } } // Check to see if IamRoleArn property is set internal bool IsSetIamRoleArn() { return this._iamRoleArn != null; } /// <summary> /// Gets and sets the property InstanceType. /// <para> /// The instance type to use when launching the app block builder. The following instance /// types are available: /// </para> /// <ul> <li> /// <para> /// stream.standard.small /// </para> /// </li> <li> /// <para> /// stream.standard.medium /// </para> /// </li> <li> /// <para> /// stream.standard.large /// </para> /// </li> <li> /// <para> /// stream.standard.xlarge /// </para> /// </li> <li> /// <para> /// stream.standard.2xlarge /// </para> /// </li> </ul> /// </summary> [AWSProperty(Required=true, Min=1)] public string InstanceType { get { return this._instanceType; } set { this._instanceType = value; } } // Check to see if InstanceType property is set internal bool IsSetInstanceType() { return this._instanceType != null; } /// <summary> /// Gets and sets the property Name. /// <para> /// The unique name for the app block builder. /// </para> /// </summary> [AWSProperty(Required=true)] public string Name { get { return this._name; } set { this._name = value; } } // Check to see if Name property is set internal bool IsSetName() { return this._name != null; } /// <summary> /// Gets and sets the property Platform. /// <para> /// The platform of the app block builder. /// </para> /// /// <para> /// <code>WINDOWS_SERVER_2019</code> is the only valid value. /// </para> /// </summary> [AWSProperty(Required=true)] public AppBlockBuilderPlatformType Platform { get { return this._platform; } set { this._platform = value; } } // Check to see if Platform property is set internal bool IsSetPlatform() { return this._platform != null; } /// <summary> /// Gets and sets the property Tags. /// <para> /// The tags to associate with the app block builder. A tag is a key-value pair, and the /// value is optional. For example, Environment=Test. If you do not specify a value, Environment=. /// /// </para> /// /// <para> /// If you do not specify a value, the value is set to an empty string. /// </para> /// /// <para> /// Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, /// and the following special characters: /// </para> /// /// <para> /// _ . : / = + \ - @ /// </para> /// /// <para> /// For more information, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/tagging-basic.html">Tagging /// Your Resources</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>. /// </para> /// </summary> [AWSProperty(Min=1, Max=50)] public Dictionary<string, string> Tags { get { return this._tags; } set { this._tags = value; } } // Check to see if Tags property is set internal bool IsSetTags() { return this._tags != null && this._tags.Count > 0; } /// <summary> /// Gets and sets the property VpcConfig. /// <para> /// The VPC configuration for the app block builder. /// </para> /// /// <para> /// App block builders require that you specify at least two subnets in different availability /// zones. /// </para> /// </summary> [AWSProperty(Required=true)] public VpcConfig VpcConfig { get { return this._vpcConfig; } set { this._vpcConfig = value; } } // Check to see if VpcConfig property is set internal bool IsSetVpcConfig() { return this._vpcConfig != null; } } }
300
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// This is the response object from the CreateAppBlockBuilder operation. /// </summary> public partial class CreateAppBlockBuilderResponse : AmazonWebServiceResponse { private AppBlockBuilder _appBlockBuilder; /// <summary> /// Gets and sets the property AppBlockBuilder. /// </summary> public AppBlockBuilder AppBlockBuilder { get { return this._appBlockBuilder; } set { this._appBlockBuilder = value; } } // Check to see if AppBlockBuilder property is set internal bool IsSetAppBlockBuilder() { return this._appBlockBuilder != null; } } }
54
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// Container for the parameters to the CreateAppBlockBuilderStreamingURL operation. /// Creates a URL to start a create app block builder streaming session. /// </summary> public partial class CreateAppBlockBuilderStreamingURLRequest : AmazonAppStreamRequest { private string _appBlockBuilderName; private long? _validity; /// <summary> /// Gets and sets the property AppBlockBuilderName. /// <para> /// The name of the app block builder. /// </para> /// </summary> [AWSProperty(Required=true)] public string AppBlockBuilderName { get { return this._appBlockBuilderName; } set { this._appBlockBuilderName = value; } } // Check to see if AppBlockBuilderName property is set internal bool IsSetAppBlockBuilderName() { return this._appBlockBuilderName != null; } /// <summary> /// Gets and sets the property Validity. /// <para> /// The time that the streaming URL will be valid, in seconds. Specify a value between /// 1 and 604800 seconds. The default is 3600 seconds. /// </para> /// </summary> public long Validity { get { return this._validity.GetValueOrDefault(); } set { this._validity = value; } } // Check to see if Validity property is set internal bool IsSetValidity() { return this._validity.HasValue; } } }
79
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// This is the response object from the CreateAppBlockBuilderStreamingURL operation. /// </summary> public partial class CreateAppBlockBuilderStreamingURLResponse : AmazonWebServiceResponse { private DateTime? _expires; private string _streamingURL; /// <summary> /// Gets and sets the property Expires. /// <para> /// The elapsed time, in seconds after the Unix epoch, when this URL expires. /// </para> /// </summary> public DateTime Expires { get { return this._expires.GetValueOrDefault(); } set { this._expires = value; } } // Check to see if Expires property is set internal bool IsSetExpires() { return this._expires.HasValue; } /// <summary> /// Gets and sets the property StreamingURL. /// <para> /// The URL to start the streaming session. /// </para> /// </summary> [AWSProperty(Min=1)] public string StreamingURL { get { return this._streamingURL; } set { this._streamingURL = value; } } // Check to see if StreamingURL property is set internal bool IsSetStreamingURL() { return this._streamingURL != null; } } }
77
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// Container for the parameters to the CreateAppBlock operation. /// Creates an app block. /// /// /// <para> /// App blocks are an Amazon AppStream 2.0 resource that stores the details about the /// virtual hard disk in an S3 bucket. It also stores the setup script with details about /// how to mount the virtual hard disk. The virtual hard disk includes the application /// binaries and other files necessary to launch your applications. Multiple applications /// can be assigned to a single app block. /// </para> /// /// <para> /// This is only supported for Elastic fleets. /// </para> /// </summary> public partial class CreateAppBlockRequest : AmazonAppStreamRequest { private string _description; private string _displayName; private string _name; private PackagingType _packagingType; private ScriptDetails _postSetupScriptDetails; private ScriptDetails _setupScriptDetails; private S3Location _sourceS3Location; private Dictionary<string, string> _tags = new Dictionary<string, string>(); /// <summary> /// Gets and sets the property Description. /// <para> /// The description of the app block. /// </para> /// </summary> [AWSProperty(Max=256)] public string Description { get { return this._description; } set { this._description = value; } } // Check to see if Description property is set internal bool IsSetDescription() { return this._description != null; } /// <summary> /// Gets and sets the property DisplayName. /// <para> /// The display name of the app block. This is not displayed to the user. /// </para> /// </summary> [AWSProperty(Max=100)] public string DisplayName { get { return this._displayName; } set { this._displayName = value; } } // Check to see if DisplayName property is set internal bool IsSetDisplayName() { return this._displayName != null; } /// <summary> /// Gets and sets the property Name. /// <para> /// The name of the app block. /// </para> /// </summary> [AWSProperty(Required=true)] public string Name { get { return this._name; } set { this._name = value; } } // Check to see if Name property is set internal bool IsSetName() { return this._name != null; } /// <summary> /// Gets and sets the property PackagingType. /// <para> /// The packaging type of the app block. /// </para> /// </summary> public PackagingType PackagingType { get { return this._packagingType; } set { this._packagingType = value; } } // Check to see if PackagingType property is set internal bool IsSetPackagingType() { return this._packagingType != null; } /// <summary> /// Gets and sets the property PostSetupScriptDetails. /// <para> /// The post setup script details of the app block. This can only be provided for the /// <code>APPSTREAM2</code> PackagingType. /// </para> /// </summary> public ScriptDetails PostSetupScriptDetails { get { return this._postSetupScriptDetails; } set { this._postSetupScriptDetails = value; } } // Check to see if PostSetupScriptDetails property is set internal bool IsSetPostSetupScriptDetails() { return this._postSetupScriptDetails != null; } /// <summary> /// Gets and sets the property SetupScriptDetails. /// <para> /// The setup script details of the app block. This must be provided for the <code>CUSTOM</code> /// PackagingType. /// </para> /// </summary> public ScriptDetails SetupScriptDetails { get { return this._setupScriptDetails; } set { this._setupScriptDetails = value; } } // Check to see if SetupScriptDetails property is set internal bool IsSetSetupScriptDetails() { return this._setupScriptDetails != null; } /// <summary> /// Gets and sets the property SourceS3Location. /// <para> /// The source S3 location of the app block. /// </para> /// </summary> [AWSProperty(Required=true)] public S3Location SourceS3Location { get { return this._sourceS3Location; } set { this._sourceS3Location = value; } } // Check to see if SourceS3Location property is set internal bool IsSetSourceS3Location() { return this._sourceS3Location != null; } /// <summary> /// Gets and sets the property Tags. /// <para> /// The tags assigned to the app block. /// </para> /// </summary> [AWSProperty(Min=1, Max=50)] public Dictionary<string, string> Tags { get { return this._tags; } set { this._tags = value; } } // Check to see if Tags property is set internal bool IsSetTags() { return this._tags != null && this._tags.Count > 0; } } }
211
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// This is the response object from the CreateAppBlock operation. /// </summary> public partial class CreateAppBlockResponse : AmazonWebServiceResponse { private AppBlock _appBlock; /// <summary> /// Gets and sets the property AppBlock. /// <para> /// The app block. /// </para> /// </summary> public AppBlock AppBlock { get { return this._appBlock; } set { this._appBlock = value; } } // Check to see if AppBlock property is set internal bool IsSetAppBlock() { return this._appBlock != null; } } }
57
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// Container for the parameters to the CreateApplication operation. /// Creates an application. /// /// /// <para> /// Applications are an Amazon AppStream 2.0 resource that stores the details about how /// to launch applications on Elastic fleet streaming instances. An application consists /// of the launch details, icon, and display name. Applications are associated with an /// app block that contains the application binaries and other files. The applications /// assigned to an Elastic fleet are the applications users can launch. /// </para> /// /// <para> /// This is only supported for Elastic fleets. /// </para> /// </summary> public partial class CreateApplicationRequest : AmazonAppStreamRequest { private string _appBlockArn; private string _description; private string _displayName; private S3Location _iconS3Location; private List<string> _instanceFamilies = new List<string>(); private string _launchParameters; private string _launchPath; private string _name; private List<string> _platforms = new List<string>(); private Dictionary<string, string> _tags = new Dictionary<string, string>(); private string _workingDirectory; /// <summary> /// Gets and sets the property AppBlockArn. /// <para> /// The app block ARN to which the application should be associated /// </para> /// </summary> [AWSProperty(Required=true)] public string AppBlockArn { get { return this._appBlockArn; } set { this._appBlockArn = value; } } // Check to see if AppBlockArn property is set internal bool IsSetAppBlockArn() { return this._appBlockArn != null; } /// <summary> /// Gets and sets the property Description. /// <para> /// The description of the application. /// </para> /// </summary> [AWSProperty(Max=256)] public string Description { get { return this._description; } set { this._description = value; } } // Check to see if Description property is set internal bool IsSetDescription() { return this._description != null; } /// <summary> /// Gets and sets the property DisplayName. /// <para> /// The display name of the application. This name is visible to users in the application /// catalog. /// </para> /// </summary> [AWSProperty(Max=100)] public string DisplayName { get { return this._displayName; } set { this._displayName = value; } } // Check to see if DisplayName property is set internal bool IsSetDisplayName() { return this._displayName != null; } /// <summary> /// Gets and sets the property IconS3Location. /// <para> /// The location in S3 of the application icon. /// </para> /// </summary> [AWSProperty(Required=true)] public S3Location IconS3Location { get { return this._iconS3Location; } set { this._iconS3Location = value; } } // Check to see if IconS3Location property is set internal bool IsSetIconS3Location() { return this._iconS3Location != null; } /// <summary> /// Gets and sets the property InstanceFamilies. /// <para> /// The instance families the application supports. Valid values are GENERAL_PURPOSE and /// GRAPHICS_G4. /// </para> /// </summary> [AWSProperty(Required=true)] public List<string> InstanceFamilies { get { return this._instanceFamilies; } set { this._instanceFamilies = value; } } // Check to see if InstanceFamilies property is set internal bool IsSetInstanceFamilies() { return this._instanceFamilies != null && this._instanceFamilies.Count > 0; } /// <summary> /// Gets and sets the property LaunchParameters. /// <para> /// The launch parameters of the application. /// </para> /// </summary> [AWSProperty(Min=1)] public string LaunchParameters { get { return this._launchParameters; } set { this._launchParameters = value; } } // Check to see if LaunchParameters property is set internal bool IsSetLaunchParameters() { return this._launchParameters != null; } /// <summary> /// Gets and sets the property LaunchPath. /// <para> /// The launch path of the application. /// </para> /// </summary> [AWSProperty(Required=true, Min=1)] public string LaunchPath { get { return this._launchPath; } set { this._launchPath = value; } } // Check to see if LaunchPath property is set internal bool IsSetLaunchPath() { return this._launchPath != null; } /// <summary> /// Gets and sets the property Name. /// <para> /// The name of the application. This name is visible to users when display name is not /// specified. /// </para> /// </summary> [AWSProperty(Required=true)] public string Name { get { return this._name; } set { this._name = value; } } // Check to see if Name property is set internal bool IsSetName() { return this._name != null; } /// <summary> /// Gets and sets the property Platforms. /// <para> /// The platforms the application supports. WINDOWS_SERVER_2019 and AMAZON_LINUX2 are /// supported for Elastic fleets. /// </para> /// </summary> [AWSProperty(Required=true, Max=4)] public List<string> Platforms { get { return this._platforms; } set { this._platforms = value; } } // Check to see if Platforms property is set internal bool IsSetPlatforms() { return this._platforms != null && this._platforms.Count > 0; } /// <summary> /// Gets and sets the property Tags. /// <para> /// The tags assigned to the application. /// </para> /// </summary> [AWSProperty(Min=1, Max=50)] public Dictionary<string, string> Tags { get { return this._tags; } set { this._tags = value; } } // Check to see if Tags property is set internal bool IsSetTags() { return this._tags != null && this._tags.Count > 0; } /// <summary> /// Gets and sets the property WorkingDirectory. /// <para> /// The working directory of the application. /// </para> /// </summary> [AWSProperty(Min=1)] public string WorkingDirectory { get { return this._workingDirectory; } set { this._workingDirectory = value; } } // Check to see if WorkingDirectory property is set internal bool IsSetWorkingDirectory() { return this._workingDirectory != null; } } }
276
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// This is the response object from the CreateApplication operation. /// </summary> public partial class CreateApplicationResponse : AmazonWebServiceResponse { private Application _application; /// <summary> /// Gets and sets the property Application. /// </summary> public Application Application { get { return this._application; } set { this._application = value; } } // Check to see if Application property is set internal bool IsSetApplication() { return this._application != null; } } }
54
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// Container for the parameters to the CreateDirectoryConfig operation. /// Creates a Directory Config object in AppStream 2.0. This object includes the configuration /// information required to join fleets and image builders to Microsoft Active Directory /// domains. /// </summary> public partial class CreateDirectoryConfigRequest : AmazonAppStreamRequest { private CertificateBasedAuthProperties _certificateBasedAuthProperties; private string _directoryName; private List<string> _organizationalUnitDistinguishedNames = new List<string>(); private ServiceAccountCredentials _serviceAccountCredentials; /// <summary> /// Gets and sets the property CertificateBasedAuthProperties. /// <para> /// The certificate-based authentication properties used to authenticate SAML 2.0 Identity /// Provider (IdP) user identities to Active Directory domain-joined streaming instances. /// Fallback is turned on by default when certificate-based authentication is <b>Enabled</b> /// . Fallback allows users to log in using their AD domain password if certificate-based /// authentication is unsuccessful, or to unlock a desktop lock screen. <b>Enabled_no_directory_login_fallback</b> /// enables certificate-based authentication, but does not allow users to log in using /// their AD domain password. Users will be disconnected to re-authenticate using certificates. /// </para> /// </summary> public CertificateBasedAuthProperties CertificateBasedAuthProperties { get { return this._certificateBasedAuthProperties; } set { this._certificateBasedAuthProperties = value; } } // Check to see if CertificateBasedAuthProperties property is set internal bool IsSetCertificateBasedAuthProperties() { return this._certificateBasedAuthProperties != null; } /// <summary> /// Gets and sets the property DirectoryName. /// <para> /// The fully qualified name of the directory (for example, corp.example.com). /// </para> /// </summary> [AWSProperty(Required=true)] public string DirectoryName { get { return this._directoryName; } set { this._directoryName = value; } } // Check to see if DirectoryName property is set internal bool IsSetDirectoryName() { return this._directoryName != null; } /// <summary> /// Gets and sets the property OrganizationalUnitDistinguishedNames. /// <para> /// The distinguished names of the organizational units for computer accounts. /// </para> /// </summary> [AWSProperty(Required=true)] public List<string> OrganizationalUnitDistinguishedNames { get { return this._organizationalUnitDistinguishedNames; } set { this._organizationalUnitDistinguishedNames = value; } } // Check to see if OrganizationalUnitDistinguishedNames property is set internal bool IsSetOrganizationalUnitDistinguishedNames() { return this._organizationalUnitDistinguishedNames != null && this._organizationalUnitDistinguishedNames.Count > 0; } /// <summary> /// Gets and sets the property ServiceAccountCredentials. /// <para> /// The credentials for the service account used by the fleet or image builder to connect /// to the directory. /// </para> /// </summary> public ServiceAccountCredentials ServiceAccountCredentials { get { return this._serviceAccountCredentials; } set { this._serviceAccountCredentials = value; } } // Check to see if ServiceAccountCredentials property is set internal bool IsSetServiceAccountCredentials() { return this._serviceAccountCredentials != null; } } }
126
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// This is the response object from the CreateDirectoryConfig operation. /// </summary> public partial class CreateDirectoryConfigResponse : AmazonWebServiceResponse { private DirectoryConfig _directoryConfig; /// <summary> /// Gets and sets the property DirectoryConfig. /// <para> /// Information about the directory configuration. /// </para> /// </summary> public DirectoryConfig DirectoryConfig { get { return this._directoryConfig; } set { this._directoryConfig = value; } } // Check to see if DirectoryConfig property is set internal bool IsSetDirectoryConfig() { return this._directoryConfig != null; } } }
57
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// Container for the parameters to the CreateEntitlement operation. /// Creates a new entitlement. Entitlements control access to specific applications within /// a stack, based on user attributes. Entitlements apply to SAML 2.0 federated user identities. /// Amazon AppStream 2.0 user pool and streaming URL users are entitled to all applications /// in a stack. Entitlements don't apply to the desktop stream view application, or to /// applications managed by a dynamic app provider using the Dynamic Application Framework. /// </summary> public partial class CreateEntitlementRequest : AmazonAppStreamRequest { private AppVisibility _appVisibility; private List<EntitlementAttribute> _attributes = new List<EntitlementAttribute>(); private string _description; private string _name; private string _stackName; /// <summary> /// Gets and sets the property AppVisibility. /// <para> /// Specifies whether all or selected apps are entitled. /// </para> /// </summary> [AWSProperty(Required=true)] public AppVisibility AppVisibility { get { return this._appVisibility; } set { this._appVisibility = value; } } // Check to see if AppVisibility property is set internal bool IsSetAppVisibility() { return this._appVisibility != null; } /// <summary> /// Gets and sets the property Attributes. /// <para> /// The attributes of the entitlement. /// </para> /// </summary> [AWSProperty(Required=true, Min=1)] public List<EntitlementAttribute> Attributes { get { return this._attributes; } set { this._attributes = value; } } // Check to see if Attributes property is set internal bool IsSetAttributes() { return this._attributes != null && this._attributes.Count > 0; } /// <summary> /// Gets and sets the property Description. /// <para> /// The description of the entitlement. /// </para> /// </summary> [AWSProperty(Max=256)] public string Description { get { return this._description; } set { this._description = value; } } // Check to see if Description property is set internal bool IsSetDescription() { return this._description != null; } /// <summary> /// Gets and sets the property Name. /// <para> /// The name of the entitlement. /// </para> /// </summary> [AWSProperty(Required=true)] public string Name { get { return this._name; } set { this._name = value; } } // Check to see if Name property is set internal bool IsSetName() { return this._name != null; } /// <summary> /// Gets and sets the property StackName. /// <para> /// The name of the stack with which the entitlement is associated. /// </para> /// </summary> [AWSProperty(Required=true)] public string StackName { get { return this._stackName; } set { this._stackName = value; } } // Check to see if StackName property is set internal bool IsSetStackName() { return this._stackName != null; } } }
143
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// This is the response object from the CreateEntitlement operation. /// </summary> public partial class CreateEntitlementResponse : AmazonWebServiceResponse { private Entitlement _entitlement; /// <summary> /// Gets and sets the property Entitlement. /// <para> /// The entitlement. /// </para> /// </summary> public Entitlement Entitlement { get { return this._entitlement; } set { this._entitlement = value; } } // Check to see if Entitlement property is set internal bool IsSetEntitlement() { return this._entitlement != null; } } }
57
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// Container for the parameters to the CreateFleet operation. /// Creates a fleet. A fleet consists of streaming instances that your users access for /// their applications and desktops. /// </summary> public partial class CreateFleetRequest : AmazonAppStreamRequest { private ComputeCapacity _computeCapacity; private string _description; private int? _disconnectTimeoutInSeconds; private string _displayName; private DomainJoinInfo _domainJoinInfo; private bool? _enableDefaultInternetAccess; private FleetType _fleetType; private string _iamRoleArn; private int? _idleDisconnectTimeoutInSeconds; private string _imageArn; private string _imageName; private string _instanceType; private int? _maxConcurrentSessions; private int? _maxUserDurationInSeconds; private string _name; private PlatformType _platform; private S3Location _sessionScriptS3Location; private StreamView _streamView; private Dictionary<string, string> _tags = new Dictionary<string, string>(); private List<string> _usbDeviceFilterStrings = new List<string>(); private VpcConfig _vpcConfig; /// <summary> /// Gets and sets the property ComputeCapacity. /// <para> /// The desired capacity for the fleet. This is not allowed for Elastic fleets. For Elastic /// fleets, specify MaxConcurrentSessions instead. /// </para> /// </summary> public ComputeCapacity ComputeCapacity { get { return this._computeCapacity; } set { this._computeCapacity = value; } } // Check to see if ComputeCapacity property is set internal bool IsSetComputeCapacity() { return this._computeCapacity != null; } /// <summary> /// Gets and sets the property Description. /// <para> /// The description to display. /// </para> /// </summary> [AWSProperty(Max=256)] public string Description { get { return this._description; } set { this._description = value; } } // Check to see if Description property is set internal bool IsSetDescription() { return this._description != null; } /// <summary> /// Gets and sets the property DisconnectTimeoutInSeconds. /// <para> /// The amount of time that a streaming session remains active after users disconnect. /// If users try to reconnect to the streaming session after a disconnection or network /// interruption within this time interval, they are connected to their previous session. /// Otherwise, they are connected to a new session with a new streaming instance. /// </para> /// /// <para> /// Specify a value between 60 and 360000. /// </para> /// </summary> public int DisconnectTimeoutInSeconds { get { return this._disconnectTimeoutInSeconds.GetValueOrDefault(); } set { this._disconnectTimeoutInSeconds = value; } } // Check to see if DisconnectTimeoutInSeconds property is set internal bool IsSetDisconnectTimeoutInSeconds() { return this._disconnectTimeoutInSeconds.HasValue; } /// <summary> /// Gets and sets the property DisplayName. /// <para> /// The fleet name to display. /// </para> /// </summary> [AWSProperty(Max=100)] public string DisplayName { get { return this._displayName; } set { this._displayName = value; } } // Check to see if DisplayName property is set internal bool IsSetDisplayName() { return this._displayName != null; } /// <summary> /// Gets and sets the property DomainJoinInfo. /// <para> /// The name of the directory and organizational unit (OU) to use to join the fleet to /// a Microsoft Active Directory domain. This is not allowed for Elastic fleets. /// </para> /// </summary> public DomainJoinInfo DomainJoinInfo { get { return this._domainJoinInfo; } set { this._domainJoinInfo = value; } } // Check to see if DomainJoinInfo property is set internal bool IsSetDomainJoinInfo() { return this._domainJoinInfo != null; } /// <summary> /// Gets and sets the property EnableDefaultInternetAccess. /// <para> /// Enables or disables default internet access for the fleet. /// </para> /// </summary> public bool EnableDefaultInternetAccess { get { return this._enableDefaultInternetAccess.GetValueOrDefault(); } set { this._enableDefaultInternetAccess = value; } } // Check to see if EnableDefaultInternetAccess property is set internal bool IsSetEnableDefaultInternetAccess() { return this._enableDefaultInternetAccess.HasValue; } /// <summary> /// Gets and sets the property FleetType. /// <para> /// The fleet type. /// </para> /// <dl> <dt>ALWAYS_ON</dt> <dd> /// <para> /// Provides users with instant-on access to their apps. You are charged for all running /// instances in your fleet, even if no users are streaming apps. /// </para> /// </dd> <dt>ON_DEMAND</dt> <dd> /// <para> /// Provide users with access to applications after they connect, which takes one to two /// minutes. You are charged for instance streaming when users are connected and a small /// hourly fee for instances that are not streaming apps. /// </para> /// </dd> </dl> /// </summary> public FleetType FleetType { get { return this._fleetType; } set { this._fleetType = value; } } // Check to see if FleetType property is set internal bool IsSetFleetType() { return this._fleetType != null; } /// <summary> /// Gets and sets the property IamRoleArn. /// <para> /// The Amazon Resource Name (ARN) of the IAM role to apply to the fleet. To assume a /// role, a fleet instance calls the AWS Security Token Service (STS) <code>AssumeRole</code> /// API operation and passes the ARN of the role to use. The operation creates a new session /// with temporary credentials. AppStream 2.0 retrieves the temporary credentials and /// creates the <b>appstream_machine_role</b> credential profile on the instance. /// </para> /// /// <para> /// For more information, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/using-iam-roles-to-grant-permissions-to-applications-scripts-streaming-instances.html">Using /// an IAM Role to Grant Permissions to Applications and Scripts Running on AppStream /// 2.0 Streaming Instances</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>. /// </para> /// </summary> public string IamRoleArn { get { return this._iamRoleArn; } set { this._iamRoleArn = value; } } // Check to see if IamRoleArn property is set internal bool IsSetIamRoleArn() { return this._iamRoleArn != null; } /// <summary> /// Gets and sets the property IdleDisconnectTimeoutInSeconds. /// <para> /// The amount of time that users can be idle (inactive) before they are disconnected /// from their streaming session and the <code>DisconnectTimeoutInSeconds</code> time /// interval begins. Users are notified before they are disconnected due to inactivity. /// If they try to reconnect to the streaming session before the time interval specified /// in <code>DisconnectTimeoutInSeconds</code> elapses, they are connected to their previous /// session. Users are considered idle when they stop providing keyboard or mouse input /// during their streaming session. File uploads and downloads, audio in, audio out, and /// pixels changing do not qualify as user activity. If users continue to be idle after /// the time interval in <code>IdleDisconnectTimeoutInSeconds</code> elapses, they are /// disconnected. /// </para> /// /// <para> /// To prevent users from being disconnected due to inactivity, specify a value of 0. /// Otherwise, specify a value between 60 and 3600. The default value is 0. /// </para> /// <note> /// <para> /// If you enable this feature, we recommend that you specify a value that corresponds /// exactly to a whole number of minutes (for example, 60, 120, and 180). If you don't /// do this, the value is rounded to the nearest minute. For example, if you specify a /// value of 70, users are disconnected after 1 minute of inactivity. If you specify a /// value that is at the midpoint between two different minutes, the value is rounded /// up. For example, if you specify a value of 90, users are disconnected after 2 minutes /// of inactivity. /// </para> /// </note> /// </summary> public int IdleDisconnectTimeoutInSeconds { get { return this._idleDisconnectTimeoutInSeconds.GetValueOrDefault(); } set { this._idleDisconnectTimeoutInSeconds = value; } } // Check to see if IdleDisconnectTimeoutInSeconds property is set internal bool IsSetIdleDisconnectTimeoutInSeconds() { return this._idleDisconnectTimeoutInSeconds.HasValue; } /// <summary> /// Gets and sets the property ImageArn. /// <para> /// The ARN of the public, private, or shared image to use. /// </para> /// </summary> public string ImageArn { get { return this._imageArn; } set { this._imageArn = value; } } // Check to see if ImageArn property is set internal bool IsSetImageArn() { return this._imageArn != null; } /// <summary> /// Gets and sets the property ImageName. /// <para> /// The name of the image used to create the fleet. /// </para> /// </summary> public string ImageName { get { return this._imageName; } set { this._imageName = value; } } // Check to see if ImageName property is set internal bool IsSetImageName() { return this._imageName != null; } /// <summary> /// Gets and sets the property InstanceType. /// <para> /// The instance type to use when launching fleet instances. The following instance types /// are available: /// </para> /// <ul> <li> /// <para> /// stream.standard.small /// </para> /// </li> <li> /// <para> /// stream.standard.medium /// </para> /// </li> <li> /// <para> /// stream.standard.large /// </para> /// </li> <li> /// <para> /// stream.standard.xlarge /// </para> /// </li> <li> /// <para> /// stream.standard.2xlarge /// </para> /// </li> <li> /// <para> /// stream.compute.large /// </para> /// </li> <li> /// <para> /// stream.compute.xlarge /// </para> /// </li> <li> /// <para> /// stream.compute.2xlarge /// </para> /// </li> <li> /// <para> /// stream.compute.4xlarge /// </para> /// </li> <li> /// <para> /// stream.compute.8xlarge /// </para> /// </li> <li> /// <para> /// stream.memory.large /// </para> /// </li> <li> /// <para> /// stream.memory.xlarge /// </para> /// </li> <li> /// <para> /// stream.memory.2xlarge /// </para> /// </li> <li> /// <para> /// stream.memory.4xlarge /// </para> /// </li> <li> /// <para> /// stream.memory.8xlarge /// </para> /// </li> <li> /// <para> /// stream.memory.z1d.large /// </para> /// </li> <li> /// <para> /// stream.memory.z1d.xlarge /// </para> /// </li> <li> /// <para> /// stream.memory.z1d.2xlarge /// </para> /// </li> <li> /// <para> /// stream.memory.z1d.3xlarge /// </para> /// </li> <li> /// <para> /// stream.memory.z1d.6xlarge /// </para> /// </li> <li> /// <para> /// stream.memory.z1d.12xlarge /// </para> /// </li> <li> /// <para> /// stream.graphics-design.large /// </para> /// </li> <li> /// <para> /// stream.graphics-design.xlarge /// </para> /// </li> <li> /// <para> /// stream.graphics-design.2xlarge /// </para> /// </li> <li> /// <para> /// stream.graphics-design.4xlarge /// </para> /// </li> <li> /// <para> /// stream.graphics-desktop.2xlarge /// </para> /// </li> <li> /// <para> /// stream.graphics.g4dn.xlarge /// </para> /// </li> <li> /// <para> /// stream.graphics.g4dn.2xlarge /// </para> /// </li> <li> /// <para> /// stream.graphics.g4dn.4xlarge /// </para> /// </li> <li> /// <para> /// stream.graphics.g4dn.8xlarge /// </para> /// </li> <li> /// <para> /// stream.graphics.g4dn.12xlarge /// </para> /// </li> <li> /// <para> /// stream.graphics.g4dn.16xlarge /// </para> /// </li> <li> /// <para> /// stream.graphics-pro.4xlarge /// </para> /// </li> <li> /// <para> /// stream.graphics-pro.8xlarge /// </para> /// </li> <li> /// <para> /// stream.graphics-pro.16xlarge /// </para> /// </li> </ul> /// <para> /// The following instance types are available for Elastic fleets: /// </para> /// <ul> <li> /// <para> /// stream.standard.small /// </para> /// </li> <li> /// <para> /// stream.standard.medium /// </para> /// </li> <li> /// <para> /// stream.standard.large /// </para> /// </li> <li> /// <para> /// stream.standard.xlarge /// </para> /// </li> <li> /// <para> /// stream.standard.2xlarge /// </para> /// </li> </ul> /// </summary> [AWSProperty(Required=true, Min=1)] public string InstanceType { get { return this._instanceType; } set { this._instanceType = value; } } // Check to see if InstanceType property is set internal bool IsSetInstanceType() { return this._instanceType != null; } /// <summary> /// Gets and sets the property MaxConcurrentSessions. /// <para> /// The maximum concurrent sessions of the Elastic fleet. This is required for Elastic /// fleets, and not allowed for other fleet types. /// </para> /// </summary> public int MaxConcurrentSessions { get { return this._maxConcurrentSessions.GetValueOrDefault(); } set { this._maxConcurrentSessions = value; } } // Check to see if MaxConcurrentSessions property is set internal bool IsSetMaxConcurrentSessions() { return this._maxConcurrentSessions.HasValue; } /// <summary> /// Gets and sets the property MaxUserDurationInSeconds. /// <para> /// The maximum amount of time that a streaming session can remain active, in seconds. /// If users are still connected to a streaming instance five minutes before this limit /// is reached, they are prompted to save any open documents before being disconnected. /// After this time elapses, the instance is terminated and replaced by a new instance. /// </para> /// /// <para> /// Specify a value between 600 and 360000. /// </para> /// </summary> public int MaxUserDurationInSeconds { get { return this._maxUserDurationInSeconds.GetValueOrDefault(); } set { this._maxUserDurationInSeconds = value; } } // Check to see if MaxUserDurationInSeconds property is set internal bool IsSetMaxUserDurationInSeconds() { return this._maxUserDurationInSeconds.HasValue; } /// <summary> /// Gets and sets the property Name. /// <para> /// A unique name for the fleet. /// </para> /// </summary> [AWSProperty(Required=true)] public string Name { get { return this._name; } set { this._name = value; } } // Check to see if Name property is set internal bool IsSetName() { return this._name != null; } /// <summary> /// Gets and sets the property Platform. /// <para> /// The fleet platform. WINDOWS_SERVER_2019 and AMAZON_LINUX2 are supported for Elastic /// fleets. /// </para> /// </summary> public PlatformType Platform { get { return this._platform; } set { this._platform = value; } } // Check to see if Platform property is set internal bool IsSetPlatform() { return this._platform != null; } /// <summary> /// Gets and sets the property SessionScriptS3Location. /// <para> /// The S3 location of the session scripts configuration zip file. This only applies to /// Elastic fleets. /// </para> /// </summary> public S3Location SessionScriptS3Location { get { return this._sessionScriptS3Location; } set { this._sessionScriptS3Location = value; } } // Check to see if SessionScriptS3Location property is set internal bool IsSetSessionScriptS3Location() { return this._sessionScriptS3Location != null; } /// <summary> /// Gets and sets the property StreamView. /// <para> /// The AppStream 2.0 view that is displayed to your users when they stream from the fleet. /// When <code>APP</code> is specified, only the windows of applications opened by users /// display. When <code>DESKTOP</code> is specified, the standard desktop that is provided /// by the operating system displays. /// </para> /// /// <para> /// The default value is <code>APP</code>. /// </para> /// </summary> public StreamView StreamView { get { return this._streamView; } set { this._streamView = value; } } // Check to see if StreamView property is set internal bool IsSetStreamView() { return this._streamView != null; } /// <summary> /// Gets and sets the property Tags. /// <para> /// The tags to associate with the fleet. A tag is a key-value pair, and the value is /// optional. For example, Environment=Test. If you do not specify a value, Environment=. /// /// </para> /// /// <para> /// If you do not specify a value, the value is set to an empty string. /// </para> /// /// <para> /// Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, /// and the following special characters: /// </para> /// /// <para> /// _ . : / = + \ - @ /// </para> /// /// <para> /// For more information, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/tagging-basic.html">Tagging /// Your Resources</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>. /// </para> /// </summary> [AWSProperty(Min=1, Max=50)] public Dictionary<string, string> Tags { get { return this._tags; } set { this._tags = value; } } // Check to see if Tags property is set internal bool IsSetTags() { return this._tags != null && this._tags.Count > 0; } /// <summary> /// Gets and sets the property UsbDeviceFilterStrings. /// <para> /// The USB device filter strings that specify which USB devices a user can redirect to /// the fleet streaming session, when using the Windows native client. This is allowed /// but not required for Elastic fleets. /// </para> /// </summary> public List<string> UsbDeviceFilterStrings { get { return this._usbDeviceFilterStrings; } set { this._usbDeviceFilterStrings = value; } } // Check to see if UsbDeviceFilterStrings property is set internal bool IsSetUsbDeviceFilterStrings() { return this._usbDeviceFilterStrings != null && this._usbDeviceFilterStrings.Count > 0; } /// <summary> /// Gets and sets the property VpcConfig. /// <para> /// The VPC configuration for the fleet. This is required for Elastic fleets, but not /// required for other fleet types. Elastic fleets require that you specify at least two /// subnets in different availability zones. /// </para> /// </summary> public VpcConfig VpcConfig { get { return this._vpcConfig; } set { this._vpcConfig = value; } } // Check to see if VpcConfig property is set internal bool IsSetVpcConfig() { return this._vpcConfig != null; } } }
707
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// This is the response object from the CreateFleet operation. /// </summary> public partial class CreateFleetResponse : AmazonWebServiceResponse { private Fleet _fleet; /// <summary> /// Gets and sets the property Fleet. /// <para> /// Information about the fleet. /// </para> /// </summary> public Fleet Fleet { get { return this._fleet; } set { this._fleet = value; } } // Check to see if Fleet property is set internal bool IsSetFleet() { return this._fleet != null; } } }
57
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// Container for the parameters to the CreateImageBuilder operation. /// Creates an image builder. An image builder is a virtual machine that is used to create /// an image. /// /// /// <para> /// The initial state of the builder is <code>PENDING</code>. When it is ready, the state /// is <code>RUNNING</code>. /// </para> /// </summary> public partial class CreateImageBuilderRequest : AmazonAppStreamRequest { private List<AccessEndpoint> _accessEndpoints = new List<AccessEndpoint>(); private string _appstreamAgentVersion; private string _description; private string _displayName; private DomainJoinInfo _domainJoinInfo; private bool? _enableDefaultInternetAccess; private string _iamRoleArn; private string _imageArn; private string _imageName; private string _instanceType; private string _name; private Dictionary<string, string> _tags = new Dictionary<string, string>(); private VpcConfig _vpcConfig; /// <summary> /// Gets and sets the property AccessEndpoints. /// <para> /// The list of interface VPC endpoint (interface endpoint) objects. Administrators can /// connect to the image builder only through the specified endpoints. /// </para> /// </summary> [AWSProperty(Min=1, Max=4)] public List<AccessEndpoint> AccessEndpoints { get { return this._accessEndpoints; } set { this._accessEndpoints = value; } } // Check to see if AccessEndpoints property is set internal bool IsSetAccessEndpoints() { return this._accessEndpoints != null && this._accessEndpoints.Count > 0; } /// <summary> /// Gets and sets the property AppstreamAgentVersion. /// <para> /// The version of the AppStream 2.0 agent to use for this image builder. To use the latest /// version of the AppStream 2.0 agent, specify [LATEST]. /// </para> /// </summary> [AWSProperty(Min=1, Max=100)] public string AppstreamAgentVersion { get { return this._appstreamAgentVersion; } set { this._appstreamAgentVersion = value; } } // Check to see if AppstreamAgentVersion property is set internal bool IsSetAppstreamAgentVersion() { return this._appstreamAgentVersion != null; } /// <summary> /// Gets and sets the property Description. /// <para> /// The description to display. /// </para> /// </summary> [AWSProperty(Max=256)] public string Description { get { return this._description; } set { this._description = value; } } // Check to see if Description property is set internal bool IsSetDescription() { return this._description != null; } /// <summary> /// Gets and sets the property DisplayName. /// <para> /// The image builder name to display. /// </para> /// </summary> [AWSProperty(Max=100)] public string DisplayName { get { return this._displayName; } set { this._displayName = value; } } // Check to see if DisplayName property is set internal bool IsSetDisplayName() { return this._displayName != null; } /// <summary> /// Gets and sets the property DomainJoinInfo. /// <para> /// The name of the directory and organizational unit (OU) to use to join the image builder /// to a Microsoft Active Directory domain. /// </para> /// </summary> public DomainJoinInfo DomainJoinInfo { get { return this._domainJoinInfo; } set { this._domainJoinInfo = value; } } // Check to see if DomainJoinInfo property is set internal bool IsSetDomainJoinInfo() { return this._domainJoinInfo != null; } /// <summary> /// Gets and sets the property EnableDefaultInternetAccess. /// <para> /// Enables or disables default internet access for the image builder. /// </para> /// </summary> public bool EnableDefaultInternetAccess { get { return this._enableDefaultInternetAccess.GetValueOrDefault(); } set { this._enableDefaultInternetAccess = value; } } // Check to see if EnableDefaultInternetAccess property is set internal bool IsSetEnableDefaultInternetAccess() { return this._enableDefaultInternetAccess.HasValue; } /// <summary> /// Gets and sets the property IamRoleArn. /// <para> /// The Amazon Resource Name (ARN) of the IAM role to apply to the image builder. To assume /// a role, the image builder calls the AWS Security Token Service (STS) <code>AssumeRole</code> /// API operation and passes the ARN of the role to use. The operation creates a new session /// with temporary credentials. AppStream 2.0 retrieves the temporary credentials and /// creates the <b>appstream_machine_role</b> credential profile on the instance. /// </para> /// /// <para> /// For more information, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/using-iam-roles-to-grant-permissions-to-applications-scripts-streaming-instances.html">Using /// an IAM Role to Grant Permissions to Applications and Scripts Running on AppStream /// 2.0 Streaming Instances</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>. /// </para> /// </summary> public string IamRoleArn { get { return this._iamRoleArn; } set { this._iamRoleArn = value; } } // Check to see if IamRoleArn property is set internal bool IsSetIamRoleArn() { return this._iamRoleArn != null; } /// <summary> /// Gets and sets the property ImageArn. /// <para> /// The ARN of the public, private, or shared image to use. /// </para> /// </summary> public string ImageArn { get { return this._imageArn; } set { this._imageArn = value; } } // Check to see if ImageArn property is set internal bool IsSetImageArn() { return this._imageArn != null; } /// <summary> /// Gets and sets the property ImageName. /// <para> /// The name of the image used to create the image builder. /// </para> /// </summary> [AWSProperty(Min=1)] public string ImageName { get { return this._imageName; } set { this._imageName = value; } } // Check to see if ImageName property is set internal bool IsSetImageName() { return this._imageName != null; } /// <summary> /// Gets and sets the property InstanceType. /// <para> /// The instance type to use when launching the image builder. The following instance /// types are available: /// </para> /// <ul> <li> /// <para> /// stream.standard.small /// </para> /// </li> <li> /// <para> /// stream.standard.medium /// </para> /// </li> <li> /// <para> /// stream.standard.large /// </para> /// </li> <li> /// <para> /// stream.compute.large /// </para> /// </li> <li> /// <para> /// stream.compute.xlarge /// </para> /// </li> <li> /// <para> /// stream.compute.2xlarge /// </para> /// </li> <li> /// <para> /// stream.compute.4xlarge /// </para> /// </li> <li> /// <para> /// stream.compute.8xlarge /// </para> /// </li> <li> /// <para> /// stream.memory.large /// </para> /// </li> <li> /// <para> /// stream.memory.xlarge /// </para> /// </li> <li> /// <para> /// stream.memory.2xlarge /// </para> /// </li> <li> /// <para> /// stream.memory.4xlarge /// </para> /// </li> <li> /// <para> /// stream.memory.8xlarge /// </para> /// </li> <li> /// <para> /// stream.memory.z1d.large /// </para> /// </li> <li> /// <para> /// stream.memory.z1d.xlarge /// </para> /// </li> <li> /// <para> /// stream.memory.z1d.2xlarge /// </para> /// </li> <li> /// <para> /// stream.memory.z1d.3xlarge /// </para> /// </li> <li> /// <para> /// stream.memory.z1d.6xlarge /// </para> /// </li> <li> /// <para> /// stream.memory.z1d.12xlarge /// </para> /// </li> <li> /// <para> /// stream.graphics-design.large /// </para> /// </li> <li> /// <para> /// stream.graphics-design.xlarge /// </para> /// </li> <li> /// <para> /// stream.graphics-design.2xlarge /// </para> /// </li> <li> /// <para> /// stream.graphics-design.4xlarge /// </para> /// </li> <li> /// <para> /// stream.graphics-desktop.2xlarge /// </para> /// </li> <li> /// <para> /// stream.graphics.g4dn.xlarge /// </para> /// </li> <li> /// <para> /// stream.graphics.g4dn.2xlarge /// </para> /// </li> <li> /// <para> /// stream.graphics.g4dn.4xlarge /// </para> /// </li> <li> /// <para> /// stream.graphics.g4dn.8xlarge /// </para> /// </li> <li> /// <para> /// stream.graphics.g4dn.12xlarge /// </para> /// </li> <li> /// <para> /// stream.graphics.g4dn.16xlarge /// </para> /// </li> <li> /// <para> /// stream.graphics-pro.4xlarge /// </para> /// </li> <li> /// <para> /// stream.graphics-pro.8xlarge /// </para> /// </li> <li> /// <para> /// stream.graphics-pro.16xlarge /// </para> /// </li> </ul> /// </summary> [AWSProperty(Required=true, Min=1)] public string InstanceType { get { return this._instanceType; } set { this._instanceType = value; } } // Check to see if InstanceType property is set internal bool IsSetInstanceType() { return this._instanceType != null; } /// <summary> /// Gets and sets the property Name. /// <para> /// A unique name for the image builder. /// </para> /// </summary> [AWSProperty(Required=true)] public string Name { get { return this._name; } set { this._name = value; } } // Check to see if Name property is set internal bool IsSetName() { return this._name != null; } /// <summary> /// Gets and sets the property Tags. /// <para> /// The tags to associate with the image builder. A tag is a key-value pair, and the value /// is optional. For example, Environment=Test. If you do not specify a value, Environment=. /// /// </para> /// /// <para> /// Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, /// and the following special characters: /// </para> /// /// <para> /// _ . : / = + \ - @ /// </para> /// /// <para> /// If you do not specify a value, the value is set to an empty string. /// </para> /// /// <para> /// For more information about tags, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/tagging-basic.html">Tagging /// Your Resources</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>. /// </para> /// </summary> [AWSProperty(Min=1, Max=50)] public Dictionary<string, string> Tags { get { return this._tags; } set { this._tags = value; } } // Check to see if Tags property is set internal bool IsSetTags() { return this._tags != null && this._tags.Count > 0; } /// <summary> /// Gets and sets the property VpcConfig. /// <para> /// The VPC configuration for the image builder. You can specify only one subnet. /// </para> /// </summary> public VpcConfig VpcConfig { get { return this._vpcConfig; } set { this._vpcConfig = value; } } // Check to see if VpcConfig property is set internal bool IsSetVpcConfig() { return this._vpcConfig != null; } } }
468
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// This is the response object from the CreateImageBuilder operation. /// </summary> public partial class CreateImageBuilderResponse : AmazonWebServiceResponse { private ImageBuilder _imageBuilder; /// <summary> /// Gets and sets the property ImageBuilder. /// <para> /// Information about the image builder. /// </para> /// </summary> public ImageBuilder ImageBuilder { get { return this._imageBuilder; } set { this._imageBuilder = value; } } // Check to see if ImageBuilder property is set internal bool IsSetImageBuilder() { return this._imageBuilder != null; } } }
57
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// Container for the parameters to the CreateImageBuilderStreamingURL operation. /// Creates a URL to start an image builder streaming session. /// </summary> public partial class CreateImageBuilderStreamingURLRequest : AmazonAppStreamRequest { private string _name; private long? _validity; /// <summary> /// Gets and sets the property Name. /// <para> /// The name of the image builder. /// </para> /// </summary> [AWSProperty(Required=true, Min=1)] public string Name { get { return this._name; } set { this._name = value; } } // Check to see if Name property is set internal bool IsSetName() { return this._name != null; } /// <summary> /// Gets and sets the property Validity. /// <para> /// The time that the streaming URL will be valid, in seconds. Specify a value between /// 1 and 604800 seconds. The default is 3600 seconds. /// </para> /// </summary> public long Validity { get { return this._validity.GetValueOrDefault(); } set { this._validity = value; } } // Check to see if Validity property is set internal bool IsSetValidity() { return this._validity.HasValue; } } }
79
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// This is the response object from the CreateImageBuilderStreamingURL operation. /// </summary> public partial class CreateImageBuilderStreamingURLResponse : AmazonWebServiceResponse { private DateTime? _expires; private string _streamingURL; /// <summary> /// Gets and sets the property Expires. /// <para> /// The elapsed time, in seconds after the Unix epoch, when this URL expires. /// </para> /// </summary> public DateTime Expires { get { return this._expires.GetValueOrDefault(); } set { this._expires = value; } } // Check to see if Expires property is set internal bool IsSetExpires() { return this._expires.HasValue; } /// <summary> /// Gets and sets the property StreamingURL. /// <para> /// The URL to start the AppStream 2.0 streaming session. /// </para> /// </summary> [AWSProperty(Min=1)] public string StreamingURL { get { return this._streamingURL; } set { this._streamingURL = value; } } // Check to see if StreamingURL property is set internal bool IsSetStreamingURL() { return this._streamingURL != null; } } }
77
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// Container for the parameters to the CreateStack operation. /// Creates a stack to start streaming applications to users. A stack consists of an associated /// fleet, user access policies, and storage configurations. /// </summary> public partial class CreateStackRequest : AmazonAppStreamRequest { private List<AccessEndpoint> _accessEndpoints = new List<AccessEndpoint>(); private ApplicationSettings _applicationSettings; private string _description; private string _displayName; private List<string> _embedHostDomains = new List<string>(); private string _feedbackURL; private string _name; private string _redirectURL; private List<StorageConnector> _storageConnectors = new List<StorageConnector>(); private StreamingExperienceSettings _streamingExperienceSettings; private Dictionary<string, string> _tags = new Dictionary<string, string>(); private List<UserSetting> _userSettings = new List<UserSetting>(); /// <summary> /// Gets and sets the property AccessEndpoints. /// <para> /// The list of interface VPC endpoint (interface endpoint) objects. Users of the stack /// can connect to AppStream 2.0 only through the specified endpoints. /// </para> /// </summary> [AWSProperty(Min=1, Max=4)] public List<AccessEndpoint> AccessEndpoints { get { return this._accessEndpoints; } set { this._accessEndpoints = value; } } // Check to see if AccessEndpoints property is set internal bool IsSetAccessEndpoints() { return this._accessEndpoints != null && this._accessEndpoints.Count > 0; } /// <summary> /// Gets and sets the property ApplicationSettings. /// <para> /// The persistent application settings for users of a stack. When these settings are /// enabled, changes that users make to applications and Windows settings are automatically /// saved after each session and applied to the next session. /// </para> /// </summary> public ApplicationSettings ApplicationSettings { get { return this._applicationSettings; } set { this._applicationSettings = value; } } // Check to see if ApplicationSettings property is set internal bool IsSetApplicationSettings() { return this._applicationSettings != null; } /// <summary> /// Gets and sets the property Description. /// <para> /// The description to display. /// </para> /// </summary> [AWSProperty(Max=256)] public string Description { get { return this._description; } set { this._description = value; } } // Check to see if Description property is set internal bool IsSetDescription() { return this._description != null; } /// <summary> /// Gets and sets the property DisplayName. /// <para> /// The stack name to display. /// </para> /// </summary> [AWSProperty(Max=100)] public string DisplayName { get { return this._displayName; } set { this._displayName = value; } } // Check to see if DisplayName property is set internal bool IsSetDisplayName() { return this._displayName != null; } /// <summary> /// Gets and sets the property EmbedHostDomains. /// <para> /// The domains where AppStream 2.0 streaming sessions can be embedded in an iframe. You /// must approve the domains that you want to host embedded AppStream 2.0 streaming sessions. /// /// </para> /// </summary> [AWSProperty(Min=1, Max=20)] public List<string> EmbedHostDomains { get { return this._embedHostDomains; } set { this._embedHostDomains = value; } } // Check to see if EmbedHostDomains property is set internal bool IsSetEmbedHostDomains() { return this._embedHostDomains != null && this._embedHostDomains.Count > 0; } /// <summary> /// Gets and sets the property FeedbackURL. /// <para> /// The URL that users are redirected to after they click the Send Feedback link. If no /// URL is specified, no Send Feedback link is displayed. /// </para> /// </summary> [AWSProperty(Max=1000)] public string FeedbackURL { get { return this._feedbackURL; } set { this._feedbackURL = value; } } // Check to see if FeedbackURL property is set internal bool IsSetFeedbackURL() { return this._feedbackURL != null; } /// <summary> /// Gets and sets the property Name. /// <para> /// The name of the stack. /// </para> /// </summary> [AWSProperty(Required=true)] public string Name { get { return this._name; } set { this._name = value; } } // Check to see if Name property is set internal bool IsSetName() { return this._name != null; } /// <summary> /// Gets and sets the property RedirectURL. /// <para> /// The URL that users are redirected to after their streaming session ends. /// </para> /// </summary> [AWSProperty(Max=1000)] public string RedirectURL { get { return this._redirectURL; } set { this._redirectURL = value; } } // Check to see if RedirectURL property is set internal bool IsSetRedirectURL() { return this._redirectURL != null; } /// <summary> /// Gets and sets the property StorageConnectors. /// <para> /// The storage connectors to enable. /// </para> /// </summary> public List<StorageConnector> StorageConnectors { get { return this._storageConnectors; } set { this._storageConnectors = value; } } // Check to see if StorageConnectors property is set internal bool IsSetStorageConnectors() { return this._storageConnectors != null && this._storageConnectors.Count > 0; } /// <summary> /// Gets and sets the property StreamingExperienceSettings. /// <para> /// The streaming protocol you want your stack to prefer. This can be UDP or TCP. Currently, /// UDP is only supported in the Windows native client. /// </para> /// </summary> public StreamingExperienceSettings StreamingExperienceSettings { get { return this._streamingExperienceSettings; } set { this._streamingExperienceSettings = value; } } // Check to see if StreamingExperienceSettings property is set internal bool IsSetStreamingExperienceSettings() { return this._streamingExperienceSettings != null; } /// <summary> /// Gets and sets the property Tags. /// <para> /// The tags to associate with the stack. A tag is a key-value pair, and the value is /// optional. For example, Environment=Test. If you do not specify a value, Environment=. /// /// </para> /// /// <para> /// If you do not specify a value, the value is set to an empty string. /// </para> /// /// <para> /// Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, /// and the following special characters: /// </para> /// /// <para> /// _ . : / = + \ - @ /// </para> /// /// <para> /// For more information about tags, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/tagging-basic.html">Tagging /// Your Resources</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>. /// </para> /// </summary> [AWSProperty(Min=1, Max=50)] public Dictionary<string, string> Tags { get { return this._tags; } set { this._tags = value; } } // Check to see if Tags property is set internal bool IsSetTags() { return this._tags != null && this._tags.Count > 0; } /// <summary> /// Gets and sets the property UserSettings. /// <para> /// The actions that are enabled or disabled for users during their streaming sessions. /// By default, these actions are enabled. /// </para> /// </summary> [AWSProperty(Min=1)] public List<UserSetting> UserSettings { get { return this._userSettings; } set { this._userSettings = value; } } // Check to see if UserSettings property is set internal bool IsSetUserSettings() { return this._userSettings != null && this._userSettings.Count > 0; } } }
305
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// This is the response object from the CreateStack operation. /// </summary> public partial class CreateStackResponse : AmazonWebServiceResponse { private Stack _stack; /// <summary> /// Gets and sets the property Stack. /// <para> /// Information about the stack. /// </para> /// </summary> public Stack Stack { get { return this._stack; } set { this._stack = value; } } // Check to see if Stack property is set internal bool IsSetStack() { return this._stack != null; } } }
57
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// Container for the parameters to the CreateStreamingURL operation. /// Creates a temporary URL to start an AppStream 2.0 streaming session for the specified /// user. A streaming URL enables application streaming to be tested without user setup. /// </summary> public partial class CreateStreamingURLRequest : AmazonAppStreamRequest { private string _applicationId; private string _fleetName; private string _sessionContext; private string _stackName; private string _userId; private long? _validity; /// <summary> /// Gets and sets the property ApplicationId. /// <para> /// The name of the application to launch after the session starts. This is the name that /// you specified as <b>Name</b> in the Image Assistant. If your fleet is enabled for /// the <b>Desktop</b> stream view, you can also choose to launch directly to the operating /// system desktop. To do so, specify <b>Desktop</b>. /// </para> /// </summary> [AWSProperty(Min=1)] public string ApplicationId { get { return this._applicationId; } set { this._applicationId = value; } } // Check to see if ApplicationId property is set internal bool IsSetApplicationId() { return this._applicationId != null; } /// <summary> /// Gets and sets the property FleetName. /// <para> /// The name of the fleet. /// </para> /// </summary> [AWSProperty(Required=true, Min=1)] public string FleetName { get { return this._fleetName; } set { this._fleetName = value; } } // Check to see if FleetName property is set internal bool IsSetFleetName() { return this._fleetName != null; } /// <summary> /// Gets and sets the property SessionContext. /// <para> /// The session context. For more information, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/managing-stacks-fleets.html#managing-stacks-fleets-parameters">Session /// Context</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>. /// </para> /// </summary> [AWSProperty(Min=1)] public string SessionContext { get { return this._sessionContext; } set { this._sessionContext = value; } } // Check to see if SessionContext property is set internal bool IsSetSessionContext() { return this._sessionContext != null; } /// <summary> /// Gets and sets the property StackName. /// <para> /// The name of the stack. /// </para> /// </summary> [AWSProperty(Required=true, Min=1)] public string StackName { get { return this._stackName; } set { this._stackName = value; } } // Check to see if StackName property is set internal bool IsSetStackName() { return this._stackName != null; } /// <summary> /// Gets and sets the property UserId. /// <para> /// The identifier of the user. /// </para> /// </summary> [AWSProperty(Required=true, Min=2, Max=32)] public string UserId { get { return this._userId; } set { this._userId = value; } } // Check to see if UserId property is set internal bool IsSetUserId() { return this._userId != null; } /// <summary> /// Gets and sets the property Validity. /// <para> /// The time that the streaming URL will be valid, in seconds. Specify a value between /// 1 and 604800 seconds. The default is 60 seconds. /// </para> /// </summary> public long Validity { get { return this._validity.GetValueOrDefault(); } set { this._validity = value; } } // Check to see if Validity property is set internal bool IsSetValidity() { return this._validity.HasValue; } } }
164
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// This is the response object from the CreateStreamingURL operation. /// </summary> public partial class CreateStreamingURLResponse : AmazonWebServiceResponse { private DateTime? _expires; private string _streamingURL; /// <summary> /// Gets and sets the property Expires. /// <para> /// The elapsed time, in seconds after the Unix epoch, when this URL expires. /// </para> /// </summary> public DateTime Expires { get { return this._expires.GetValueOrDefault(); } set { this._expires = value; } } // Check to see if Expires property is set internal bool IsSetExpires() { return this._expires.HasValue; } /// <summary> /// Gets and sets the property StreamingURL. /// <para> /// The URL to start the AppStream 2.0 streaming session. /// </para> /// </summary> [AWSProperty(Min=1)] public string StreamingURL { get { return this._streamingURL; } set { this._streamingURL = value; } } // Check to see if StreamingURL property is set internal bool IsSetStreamingURL() { return this._streamingURL != null; } } }
77
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// Container for the parameters to the CreateUpdatedImage operation. /// Creates a new image with the latest Windows operating system updates, driver updates, /// and AppStream 2.0 agent software. /// /// /// <para> /// For more information, see the "Update an Image by Using Managed AppStream 2.0 Image /// Updates" section in <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/administer-images.html">Administer /// Your AppStream 2.0 Images</a>, in the <i>Amazon AppStream 2.0 Administration Guide</i>. /// </para> /// </summary> public partial class CreateUpdatedImageRequest : AmazonAppStreamRequest { private bool? _dryRun; private string _existingImageName; private string _newImageDescription; private string _newImageDisplayName; private string _newImageName; private Dictionary<string, string> _newImageTags = new Dictionary<string, string>(); /// <summary> /// Gets and sets the property DryRun. /// <para> /// Indicates whether to display the status of image update availability before AppStream /// 2.0 initiates the process of creating a new updated image. If this value is set to /// <code>true</code>, AppStream 2.0 displays whether image updates are available. If /// this value is set to <code>false</code>, AppStream 2.0 initiates the process of creating /// a new updated image without displaying whether image updates are available. /// </para> /// </summary> public bool DryRun { get { return this._dryRun.GetValueOrDefault(); } set { this._dryRun = value; } } // Check to see if DryRun property is set internal bool IsSetDryRun() { return this._dryRun.HasValue; } /// <summary> /// Gets and sets the property ExistingImageName. /// <para> /// The name of the image to update. /// </para> /// </summary> [AWSProperty(Required=true)] public string ExistingImageName { get { return this._existingImageName; } set { this._existingImageName = value; } } // Check to see if ExistingImageName property is set internal bool IsSetExistingImageName() { return this._existingImageName != null; } /// <summary> /// Gets and sets the property NewImageDescription. /// <para> /// The description to display for the new image. /// </para> /// </summary> [AWSProperty(Max=256)] public string NewImageDescription { get { return this._newImageDescription; } set { this._newImageDescription = value; } } // Check to see if NewImageDescription property is set internal bool IsSetNewImageDescription() { return this._newImageDescription != null; } /// <summary> /// Gets and sets the property NewImageDisplayName. /// <para> /// The name to display for the new image. /// </para> /// </summary> [AWSProperty(Max=100)] public string NewImageDisplayName { get { return this._newImageDisplayName; } set { this._newImageDisplayName = value; } } // Check to see if NewImageDisplayName property is set internal bool IsSetNewImageDisplayName() { return this._newImageDisplayName != null; } /// <summary> /// Gets and sets the property NewImageName. /// <para> /// The name of the new image. The name must be unique within the AWS account and Region. /// </para> /// </summary> [AWSProperty(Required=true)] public string NewImageName { get { return this._newImageName; } set { this._newImageName = value; } } // Check to see if NewImageName property is set internal bool IsSetNewImageName() { return this._newImageName != null; } /// <summary> /// Gets and sets the property NewImageTags. /// <para> /// The tags to associate with the new image. A tag is a key-value pair, and the value /// is optional. For example, Environment=Test. If you do not specify a value, Environment=. /// /// </para> /// /// <para> /// Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, /// and the following special characters: /// </para> /// /// <para> /// _ . : / = + \ - @ /// </para> /// /// <para> /// If you do not specify a value, the value is set to an empty string. /// </para> /// /// <para> /// For more information about tags, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/tagging-basic.html">Tagging /// Your Resources</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>. /// </para> /// </summary> [AWSProperty(Min=1, Max=50)] public Dictionary<string, string> NewImageTags { get { return this._newImageTags; } set { this._newImageTags = value; } } // Check to see if NewImageTags property is set internal bool IsSetNewImageTags() { return this._newImageTags != null && this._newImageTags.Count > 0; } } }
190
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// This is the response object from the CreateUpdatedImage operation. /// </summary> public partial class CreateUpdatedImageResponse : AmazonWebServiceResponse { private bool? _canUpdateImage; private Image _image; /// <summary> /// Gets and sets the property CanUpdateImage. /// <para> /// Indicates whether a new image can be created. /// </para> /// </summary> public bool CanUpdateImage { get { return this._canUpdateImage.GetValueOrDefault(); } set { this._canUpdateImage = value; } } // Check to see if CanUpdateImage property is set internal bool IsSetCanUpdateImage() { return this._canUpdateImage.HasValue; } /// <summary> /// Gets and sets the property Image. /// </summary> public Image Image { get { return this._image; } set { this._image = value; } } // Check to see if Image property is set internal bool IsSetImage() { return this._image != null; } } }
73
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// Container for the parameters to the CreateUsageReportSubscription operation. /// Creates a usage report subscription. Usage reports are generated daily. /// </summary> public partial class CreateUsageReportSubscriptionRequest : AmazonAppStreamRequest { } }
39
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// This is the response object from the CreateUsageReportSubscription operation. /// </summary> public partial class CreateUsageReportSubscriptionResponse : AmazonWebServiceResponse { private string _s3BucketName; private UsageReportSchedule _schedule; /// <summary> /// Gets and sets the property S3BucketName. /// <para> /// The Amazon S3 bucket where generated reports are stored. /// </para> /// /// <para> /// If you enabled on-instance session scripts and Amazon S3 logging for your session /// script configuration, AppStream 2.0 created an S3 bucket to store the script output. /// The bucket is unique to your account and Region. When you enable usage reporting in /// this case, AppStream 2.0 uses the same bucket to store your usage reports. If you /// haven't already enabled on-instance session scripts, when you enable usage reports, /// AppStream 2.0 creates a new S3 bucket. /// </para> /// </summary> [AWSProperty(Min=1)] public string S3BucketName { get { return this._s3BucketName; } set { this._s3BucketName = value; } } // Check to see if S3BucketName property is set internal bool IsSetS3BucketName() { return this._s3BucketName != null; } /// <summary> /// Gets and sets the property Schedule. /// <para> /// The schedule for generating usage reports. /// </para> /// </summary> public UsageReportSchedule Schedule { get { return this._schedule; } set { this._schedule = value; } } // Check to see if Schedule property is set internal bool IsSetSchedule() { return this._schedule != null; } } }
86
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// Container for the parameters to the CreateUser operation. /// Creates a new user in the user pool. /// </summary> public partial class CreateUserRequest : AmazonAppStreamRequest { private AuthenticationType _authenticationType; private string _firstName; private string _lastName; private MessageAction _messageAction; private string _userName; /// <summary> /// Gets and sets the property AuthenticationType. /// <para> /// The authentication type for the user. You must specify USERPOOL. /// </para> /// </summary> [AWSProperty(Required=true)] public AuthenticationType AuthenticationType { get { return this._authenticationType; } set { this._authenticationType = value; } } // Check to see if AuthenticationType property is set internal bool IsSetAuthenticationType() { return this._authenticationType != null; } /// <summary> /// Gets and sets the property FirstName. /// <para> /// The first name, or given name, of the user. /// </para> /// </summary> [AWSProperty(Sensitive=true, Max=2048)] public string FirstName { get { return this._firstName; } set { this._firstName = value; } } // Check to see if FirstName property is set internal bool IsSetFirstName() { return this._firstName != null; } /// <summary> /// Gets and sets the property LastName. /// <para> /// The last name, or surname, of the user. /// </para> /// </summary> [AWSProperty(Sensitive=true, Max=2048)] public string LastName { get { return this._lastName; } set { this._lastName = value; } } // Check to see if LastName property is set internal bool IsSetLastName() { return this._lastName != null; } /// <summary> /// Gets and sets the property MessageAction. /// <para> /// The action to take for the welcome email that is sent to a user after the user is /// created in the user pool. If you specify SUPPRESS, no email is sent. If you specify /// RESEND, do not specify the first name or last name of the user. If the value is null, /// the email is sent. /// </para> /// <note> /// <para> /// The temporary password in the welcome email is valid for only 7 days. If users don’t /// set their passwords within 7 days, you must send them a new welcome email. /// </para> /// </note> /// </summary> public MessageAction MessageAction { get { return this._messageAction; } set { this._messageAction = value; } } // Check to see if MessageAction property is set internal bool IsSetMessageAction() { return this._messageAction != null; } /// <summary> /// Gets and sets the property UserName. /// <para> /// The email address of the user. /// </para> /// <note> /// <para> /// Users' email addresses are case-sensitive. During login, if they specify an email /// address that doesn't use the same capitalization as the email address specified when /// their user pool account was created, a "user does not exist" error message displays. /// </para> /// </note> /// </summary> [AWSProperty(Required=true, Sensitive=true, Min=1, Max=128)] public string UserName { get { return this._userName; } set { this._userName = value; } } // Check to see if UserName property is set internal bool IsSetUserName() { return this._userName != null; } } }
154
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// This is the response object from the CreateUser operation. /// </summary> public partial class CreateUserResponse : AmazonWebServiceResponse { } }
38
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// Container for the parameters to the DeleteAppBlockBuilder operation. /// Deletes an app block builder. /// /// /// <para> /// An app block builder can only be deleted when it has no association with an app block. /// </para> /// </summary> public partial class DeleteAppBlockBuilderRequest : AmazonAppStreamRequest { private string _name; /// <summary> /// Gets and sets the property Name. /// <para> /// The name of the app block builder. /// </para> /// </summary> [AWSProperty(Required=true)] public string Name { get { return this._name; } set { this._name = value; } } // Check to see if Name property is set internal bool IsSetName() { return this._name != null; } } }
64
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// This is the response object from the DeleteAppBlockBuilder operation. /// </summary> public partial class DeleteAppBlockBuilderResponse : AmazonWebServiceResponse { } }
38
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// Container for the parameters to the DeleteAppBlock operation. /// Deletes an app block. /// </summary> public partial class DeleteAppBlockRequest : AmazonAppStreamRequest { private string _name; /// <summary> /// Gets and sets the property Name. /// <para> /// The name of the app block. /// </para> /// </summary> [AWSProperty(Required=true)] public string Name { get { return this._name; } set { this._name = value; } } // Check to see if Name property is set internal bool IsSetName() { return this._name != null; } } }
59
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// This is the response object from the DeleteAppBlock operation. /// </summary> public partial class DeleteAppBlockResponse : AmazonWebServiceResponse { } }
38
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// Container for the parameters to the DeleteApplication operation. /// Deletes an application. /// </summary> public partial class DeleteApplicationRequest : AmazonAppStreamRequest { private string _name; /// <summary> /// Gets and sets the property Name. /// <para> /// The name of the application. /// </para> /// </summary> [AWSProperty(Required=true)] public string Name { get { return this._name; } set { this._name = value; } } // Check to see if Name property is set internal bool IsSetName() { return this._name != null; } } }
59
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// This is the response object from the DeleteApplication operation. /// </summary> public partial class DeleteApplicationResponse : AmazonWebServiceResponse { } }
38
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// Container for the parameters to the DeleteDirectoryConfig operation. /// Deletes the specified Directory Config object from AppStream 2.0. This object includes /// the information required to join streaming instances to an Active Directory domain. /// </summary> public partial class DeleteDirectoryConfigRequest : AmazonAppStreamRequest { private string _directoryName; /// <summary> /// Gets and sets the property DirectoryName. /// <para> /// The name of the directory configuration. /// </para> /// </summary> [AWSProperty(Required=true)] public string DirectoryName { get { return this._directoryName; } set { this._directoryName = value; } } // Check to see if DirectoryName property is set internal bool IsSetDirectoryName() { return this._directoryName != null; } } }
60
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// This is the response object from the DeleteDirectoryConfig operation. /// </summary> public partial class DeleteDirectoryConfigResponse : AmazonWebServiceResponse { } }
38
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// Container for the parameters to the DeleteEntitlement operation. /// Deletes the specified entitlement. /// </summary> public partial class DeleteEntitlementRequest : AmazonAppStreamRequest { private string _name; private string _stackName; /// <summary> /// Gets and sets the property Name. /// <para> /// The name of the entitlement. /// </para> /// </summary> [AWSProperty(Required=true)] public string Name { get { return this._name; } set { this._name = value; } } // Check to see if Name property is set internal bool IsSetName() { return this._name != null; } /// <summary> /// Gets and sets the property StackName. /// <para> /// The name of the stack with which the entitlement is associated. /// </para> /// </summary> [AWSProperty(Required=true)] public string StackName { get { return this._stackName; } set { this._stackName = value; } } // Check to see if StackName property is set internal bool IsSetStackName() { return this._stackName != null; } } }
79
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// This is the response object from the DeleteEntitlement operation. /// </summary> public partial class DeleteEntitlementResponse : AmazonWebServiceResponse { } }
38
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// Container for the parameters to the DeleteFleet operation. /// Deletes the specified fleet. /// </summary> public partial class DeleteFleetRequest : AmazonAppStreamRequest { private string _name; /// <summary> /// Gets and sets the property Name. /// <para> /// The name of the fleet. /// </para> /// </summary> [AWSProperty(Required=true, Min=1)] public string Name { get { return this._name; } set { this._name = value; } } // Check to see if Name property is set internal bool IsSetName() { return this._name != null; } } }
59
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// This is the response object from the DeleteFleet operation. /// </summary> public partial class DeleteFleetResponse : AmazonWebServiceResponse { } }
38
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// Container for the parameters to the DeleteImageBuilder operation. /// Deletes the specified image builder and releases the capacity. /// </summary> public partial class DeleteImageBuilderRequest : AmazonAppStreamRequest { private string _name; /// <summary> /// Gets and sets the property Name. /// <para> /// The name of the image builder. /// </para> /// </summary> [AWSProperty(Required=true)] public string Name { get { return this._name; } set { this._name = value; } } // Check to see if Name property is set internal bool IsSetName() { return this._name != null; } } }
59
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// This is the response object from the DeleteImageBuilder operation. /// </summary> public partial class DeleteImageBuilderResponse : AmazonWebServiceResponse { private ImageBuilder _imageBuilder; /// <summary> /// Gets and sets the property ImageBuilder. /// <para> /// Information about the image builder. /// </para> /// </summary> public ImageBuilder ImageBuilder { get { return this._imageBuilder; } set { this._imageBuilder = value; } } // Check to see if ImageBuilder property is set internal bool IsSetImageBuilder() { return this._imageBuilder != null; } } }
57
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// Container for the parameters to the DeleteImagePermissions operation. /// Deletes permissions for the specified private image. After you delete permissions /// for an image, AWS accounts to which you previously granted these permissions can no /// longer use the image. /// </summary> public partial class DeleteImagePermissionsRequest : AmazonAppStreamRequest { private string _name; private string _sharedAccountId; /// <summary> /// Gets and sets the property Name. /// <para> /// The name of the private image. /// </para> /// </summary> [AWSProperty(Required=true)] public string Name { get { return this._name; } set { this._name = value; } } // Check to see if Name property is set internal bool IsSetName() { return this._name != null; } /// <summary> /// Gets and sets the property SharedAccountId. /// <para> /// The 12-digit identifier of the AWS account for which to delete image permissions. /// </para> /// </summary> [AWSProperty(Required=true)] public string SharedAccountId { get { return this._sharedAccountId; } set { this._sharedAccountId = value; } } // Check to see if SharedAccountId property is set internal bool IsSetSharedAccountId() { return this._sharedAccountId != null; } } }
81
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// This is the response object from the DeleteImagePermissions operation. /// </summary> public partial class DeleteImagePermissionsResponse : AmazonWebServiceResponse { } }
38
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// Container for the parameters to the DeleteImage operation. /// Deletes the specified image. You cannot delete an image when it is in use. After you /// delete an image, you cannot provision new capacity using the image. /// </summary> public partial class DeleteImageRequest : AmazonAppStreamRequest { private string _name; /// <summary> /// Gets and sets the property Name. /// <para> /// The name of the image. /// </para> /// </summary> [AWSProperty(Required=true)] public string Name { get { return this._name; } set { this._name = value; } } // Check to see if Name property is set internal bool IsSetName() { return this._name != null; } } }
60
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// This is the response object from the DeleteImage operation. /// </summary> public partial class DeleteImageResponse : AmazonWebServiceResponse { private Image _image; /// <summary> /// Gets and sets the property Image. /// <para> /// Information about the image. /// </para> /// </summary> public Image Image { get { return this._image; } set { this._image = value; } } // Check to see if Image property is set internal bool IsSetImage() { return this._image != null; } } }
57
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// Container for the parameters to the DeleteStack operation. /// Deletes the specified stack. After the stack is deleted, the application streaming /// environment provided by the stack is no longer available to users. Also, any reservations /// made for application streaming sessions for the stack are released. /// </summary> public partial class DeleteStackRequest : AmazonAppStreamRequest { private string _name; /// <summary> /// Gets and sets the property Name. /// <para> /// The name of the stack. /// </para> /// </summary> [AWSProperty(Required=true, Min=1)] public string Name { get { return this._name; } set { this._name = value; } } // Check to see if Name property is set internal bool IsSetName() { return this._name != null; } } }
61
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// This is the response object from the DeleteStack operation. /// </summary> public partial class DeleteStackResponse : AmazonWebServiceResponse { } }
38
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// Container for the parameters to the DeleteUsageReportSubscription operation. /// Disables usage report generation. /// </summary> public partial class DeleteUsageReportSubscriptionRequest : AmazonAppStreamRequest { } }
39
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// This is the response object from the DeleteUsageReportSubscription operation. /// </summary> public partial class DeleteUsageReportSubscriptionResponse : AmazonWebServiceResponse { } }
38
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// Container for the parameters to the DeleteUser operation. /// Deletes a user from the user pool. /// </summary> public partial class DeleteUserRequest : AmazonAppStreamRequest { private AuthenticationType _authenticationType; private string _userName; /// <summary> /// Gets and sets the property AuthenticationType. /// <para> /// The authentication type for the user. You must specify USERPOOL. /// </para> /// </summary> [AWSProperty(Required=true)] public AuthenticationType AuthenticationType { get { return this._authenticationType; } set { this._authenticationType = value; } } // Check to see if AuthenticationType property is set internal bool IsSetAuthenticationType() { return this._authenticationType != null; } /// <summary> /// Gets and sets the property UserName. /// <para> /// The email address of the user. /// </para> /// <note> /// <para> /// Users' email addresses are case-sensitive. /// </para> /// </note> /// </summary> [AWSProperty(Required=true, Sensitive=true, Min=1, Max=128)] public string UserName { get { return this._userName; } set { this._userName = value; } } // Check to see if UserName property is set internal bool IsSetUserName() { return this._userName != null; } } }
84
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// This is the response object from the DeleteUser operation. /// </summary> public partial class DeleteUserResponse : AmazonWebServiceResponse { } }
38
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// Container for the parameters to the DescribeAppBlockBuilderAppBlockAssociations operation. /// Retrieves a list that describes one or more app block builder associations. /// </summary> public partial class DescribeAppBlockBuilderAppBlockAssociationsRequest : AmazonAppStreamRequest { private string _appBlockArn; private string _appBlockBuilderName; private int? _maxResults; private string _nextToken; /// <summary> /// Gets and sets the property AppBlockArn. /// <para> /// The ARN of the app block. /// </para> /// </summary> public string AppBlockArn { get { return this._appBlockArn; } set { this._appBlockArn = value; } } // Check to see if AppBlockArn property is set internal bool IsSetAppBlockArn() { return this._appBlockArn != null; } /// <summary> /// Gets and sets the property AppBlockBuilderName. /// <para> /// The name of the app block builder. /// </para> /// </summary> public string AppBlockBuilderName { get { return this._appBlockBuilderName; } set { this._appBlockBuilderName = value; } } // Check to see if AppBlockBuilderName property is set internal bool IsSetAppBlockBuilderName() { return this._appBlockBuilderName != null; } /// <summary> /// Gets and sets the property MaxResults. /// <para> /// The maximum size of each page of results. /// </para> /// </summary> public int MaxResults { get { return this._maxResults.GetValueOrDefault(); } set { this._maxResults = value; } } // Check to see if MaxResults property is set internal bool IsSetMaxResults() { return this._maxResults.HasValue; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The pagination token used to retrieve the next page of results for this operation. /// </para> /// </summary> [AWSProperty(Min=1)] public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } } }
116
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// This is the response object from the DescribeAppBlockBuilderAppBlockAssociations operation. /// </summary> public partial class DescribeAppBlockBuilderAppBlockAssociationsResponse : AmazonWebServiceResponse { private List<AppBlockBuilderAppBlockAssociation> _appBlockBuilderAppBlockAssociations = new List<AppBlockBuilderAppBlockAssociation>(); private string _nextToken; /// <summary> /// Gets and sets the property AppBlockBuilderAppBlockAssociations. /// <para> /// This list of app block builders associated with app blocks. /// </para> /// </summary> [AWSProperty(Min=1, Max=25)] public List<AppBlockBuilderAppBlockAssociation> AppBlockBuilderAppBlockAssociations { get { return this._appBlockBuilderAppBlockAssociations; } set { this._appBlockBuilderAppBlockAssociations = value; } } // Check to see if AppBlockBuilderAppBlockAssociations property is set internal bool IsSetAppBlockBuilderAppBlockAssociations() { return this._appBlockBuilderAppBlockAssociations != null && this._appBlockBuilderAppBlockAssociations.Count > 0; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The pagination token used to retrieve the next page of results for this operation. /// </para> /// </summary> [AWSProperty(Min=1)] public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } } }
78
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// Container for the parameters to the DescribeAppBlockBuilders operation. /// Retrieves a list that describes one or more app block builders. /// </summary> public partial class DescribeAppBlockBuildersRequest : AmazonAppStreamRequest { private int? _maxResults; private List<string> _names = new List<string>(); private string _nextToken; /// <summary> /// Gets and sets the property MaxResults. /// <para> /// The maximum size of each page of results. The maximum value is 25. /// </para> /// </summary> public int MaxResults { get { return this._maxResults.GetValueOrDefault(); } set { this._maxResults = value; } } // Check to see if MaxResults property is set internal bool IsSetMaxResults() { return this._maxResults.HasValue; } /// <summary> /// Gets and sets the property Names. /// <para> /// The names of the app block builders. /// </para> /// </summary> public List<string> Names { get { return this._names; } set { this._names = value; } } // Check to see if Names property is set internal bool IsSetNames() { return this._names != null && this._names.Count > 0; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The pagination token used to retrieve the next page of results for this operation. /// </para> /// </summary> [AWSProperty(Min=1)] public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } } }
97
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// This is the response object from the DescribeAppBlockBuilders operation. /// </summary> public partial class DescribeAppBlockBuildersResponse : AmazonWebServiceResponse { private List<AppBlockBuilder> _appBlockBuilders = new List<AppBlockBuilder>(); private string _nextToken; /// <summary> /// Gets and sets the property AppBlockBuilders. /// <para> /// The list that describes one or more app block builders. /// </para> /// </summary> public List<AppBlockBuilder> AppBlockBuilders { get { return this._appBlockBuilders; } set { this._appBlockBuilders = value; } } // Check to see if AppBlockBuilders property is set internal bool IsSetAppBlockBuilders() { return this._appBlockBuilders != null && this._appBlockBuilders.Count > 0; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The pagination token used to retrieve the next page of results for this operation. /// </para> /// </summary> [AWSProperty(Min=1)] public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } } }
77
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// Container for the parameters to the DescribeAppBlocks operation. /// Retrieves a list that describes one or more app blocks. /// </summary> public partial class DescribeAppBlocksRequest : AmazonAppStreamRequest { private List<string> _arns = new List<string>(); private int? _maxResults; private string _nextToken; /// <summary> /// Gets and sets the property Arns. /// <para> /// The ARNs of the app blocks. /// </para> /// </summary> public List<string> Arns { get { return this._arns; } set { this._arns = value; } } // Check to see if Arns property is set internal bool IsSetArns() { return this._arns != null && this._arns.Count > 0; } /// <summary> /// Gets and sets the property MaxResults. /// <para> /// The maximum size of each page of results. /// </para> /// </summary> public int MaxResults { get { return this._maxResults.GetValueOrDefault(); } set { this._maxResults = value; } } // Check to see if MaxResults property is set internal bool IsSetMaxResults() { return this._maxResults.HasValue; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The pagination token used to retrieve the next page of results for this operation. /// </para> /// </summary> [AWSProperty(Min=1)] public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } } }
97
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// This is the response object from the DescribeAppBlocks operation. /// </summary> public partial class DescribeAppBlocksResponse : AmazonWebServiceResponse { private List<AppBlock> _appBlocks = new List<AppBlock>(); private string _nextToken; /// <summary> /// Gets and sets the property AppBlocks. /// <para> /// The app blocks in the list. /// </para> /// </summary> public List<AppBlock> AppBlocks { get { return this._appBlocks; } set { this._appBlocks = value; } } // Check to see if AppBlocks property is set internal bool IsSetAppBlocks() { return this._appBlocks != null && this._appBlocks.Count > 0; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The pagination token used to retrieve the next page of results for this operation. /// </para> /// </summary> [AWSProperty(Min=1)] public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } } }
77
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// Container for the parameters to the DescribeApplicationFleetAssociations operation. /// Retrieves a list that describes one or more application fleet associations. Either /// ApplicationArn or FleetName must be specified. /// </summary> public partial class DescribeApplicationFleetAssociationsRequest : AmazonAppStreamRequest { private string _applicationArn; private string _fleetName; private int? _maxResults; private string _nextToken; /// <summary> /// Gets and sets the property ApplicationArn. /// <para> /// The ARN of the application. /// </para> /// </summary> public string ApplicationArn { get { return this._applicationArn; } set { this._applicationArn = value; } } // Check to see if ApplicationArn property is set internal bool IsSetApplicationArn() { return this._applicationArn != null; } /// <summary> /// Gets and sets the property FleetName. /// <para> /// The name of the fleet. /// </para> /// </summary> public string FleetName { get { return this._fleetName; } set { this._fleetName = value; } } // Check to see if FleetName property is set internal bool IsSetFleetName() { return this._fleetName != null; } /// <summary> /// Gets and sets the property MaxResults. /// <para> /// The maximum size of each page of results. /// </para> /// </summary> public int MaxResults { get { return this._maxResults.GetValueOrDefault(); } set { this._maxResults = value; } } // Check to see if MaxResults property is set internal bool IsSetMaxResults() { return this._maxResults.HasValue; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The pagination token used to retrieve the next page of results for this operation. /// </para> /// </summary> [AWSProperty(Min=1)] public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } } }
117
aws-sdk-net
aws
C#
/* * 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 appstream-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.AppStream.Model { /// <summary> /// This is the response object from the DescribeApplicationFleetAssociations operation. /// </summary> public partial class DescribeApplicationFleetAssociationsResponse : AmazonWebServiceResponse { private List<ApplicationFleetAssociation> _applicationFleetAssociations = new List<ApplicationFleetAssociation>(); private string _nextToken; /// <summary> /// Gets and sets the property ApplicationFleetAssociations. /// <para> /// The application fleet associations in the list. /// </para> /// </summary> [AWSProperty(Min=1, Max=25)] public List<ApplicationFleetAssociation> ApplicationFleetAssociations { get { return this._applicationFleetAssociations; } set { this._applicationFleetAssociations = value; } } // Check to see if ApplicationFleetAssociations property is set internal bool IsSetApplicationFleetAssociations() { return this._applicationFleetAssociations != null && this._applicationFleetAssociations.Count > 0; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// The pagination token used to retrieve the next page of results for this operation. /// </para> /// </summary> [AWSProperty(Min=1)] public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } } }
78