/* * Copyright 2012-2017 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. */ package com.amazonaws.services.applicationautoscaling; import org.w3c.dom.*; import java.net.*; import java.util.*; import javax.annotation.Generated; import org.apache.commons.logging.*; import com.amazonaws.*; import com.amazonaws.annotation.SdkInternalApi; import com.amazonaws.auth.*; import com.amazonaws.handlers.*; import com.amazonaws.http.*; import com.amazonaws.internal.*; import com.amazonaws.internal.auth.*; import com.amazonaws.metrics.*; import com.amazonaws.regions.*; import com.amazonaws.transform.*; import com.amazonaws.util.*; import com.amazonaws.protocol.json.*; import com.amazonaws.util.AWSRequestMetrics.Field; import com.amazonaws.annotation.ThreadSafe; import com.amazonaws.client.AwsSyncClientParams; import com.amazonaws.services.applicationautoscaling.AWSApplicationAutoScalingClientBuilder; import com.amazonaws.AmazonServiceException; import com.amazonaws.services.applicationautoscaling.model.*; import com.amazonaws.services.applicationautoscaling.model.transform.*; /** * Client for accessing Application Auto Scaling. All service calls made using this client are blocking, and will not * return until the service call completes. * <p> * <p> * With Application Auto Scaling, you can automatically scale your AWS resources. The experience similar to that of <a * href="https://aws.amazon.com/autoscaling/">Auto Scaling</a>. You can use Application Auto Scaling to accomplish the * following tasks: * </p> * <ul> * <li> * <p> * Define scaling policies to automatically scale your AWS resources * </p> * </li> * <li> * <p> * Scale your resources in response to CloudWatch alarms * </p> * </li> * <li> * <p> * View the history of your scaling events * </p> * </li> * </ul> * <p> * Application Auto Scaling can scale the following AWS resources: * </p> * <ul> * <li> * <p> * Amazon ECS services. For more information, see <a * href="http://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-auto-scaling.html">Service Auto Scaling</a> * in the <i>Amazon EC2 Container Service Developer Guide</i>. * </p> * </li> * <li> * <p> * Amazon EC2 Spot fleets. For more information, see <a * href="http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/fleet-auto-scaling.html">Automatic Scaling for Spot * Fleet</a> in the <i>Amazon EC2 User Guide</i>. * </p> * </li> * <li> * <p> * Amazon EMR clusters. For more information, see <a * href="http://docs.aws.amazon.com/ElasticMapReduce/latest/ManagementGuide/emr-automatic-scaling.html">Using Automatic * Scaling in Amazon EMR</a> in the <i>Amazon EMR Management Guide</i>. * </p> * </li> * <li> * <p> * AppStream 2.0 fleets. For more information, see <a * href="http://docs.aws.amazon.com/appstream2/latest/developerguide/autoscaling.html">Autoscaling Amazon AppStream 2.0 * Resources</a> in the <i>Amazon AppStream 2.0 Developer Guide</i>. * </p> * </li> * </ul> * <p> * For a list of supported regions, see <a * href="http://docs.aws.amazon.com/general/latest/gr/rande.html#as-app_region">AWS Regions and Endpoints: Application * Auto Scaling</a> in the <i>AWS General Reference</i>. * </p> */ @ThreadSafe @Generated("com.amazonaws:aws-java-sdk-code-generator") public class AWSApplicationAutoScalingClient extends AmazonWebServiceClient implements AWSApplicationAutoScaling { /** Provider for AWS credentials. */ private final AWSCredentialsProvider awsCredentialsProvider; private static final Log log = LogFactory.getLog(AWSApplicationAutoScaling.class); /** Default signing name for the service. */ private static final String DEFAULT_SIGNING_NAME = "application-autoscaling"; /** Client configuration factory providing ClientConfigurations tailored to this client */ protected static final ClientConfigurationFactory configFactory = new ClientConfigurationFactory(); private final com.amazonaws.protocol.json.SdkJsonProtocolFactory protocolFactory = new com.amazonaws.protocol.json.SdkJsonProtocolFactory( new JsonClientMetadata() .withProtocolVersion("1.1") .withSupportsCbor(false) .withSupportsIon(false) .addErrorMetadata( new JsonErrorShapeMetadata().withErrorCode("ValidationException").withModeledClass( com.amazonaws.services.applicationautoscaling.model.ValidationException.class)) .addErrorMetadata( new JsonErrorShapeMetadata().withErrorCode("InternalServiceException").withModeledClass( com.amazonaws.services.applicationautoscaling.model.InternalServiceException.class)) .addErrorMetadata( new JsonErrorShapeMetadata().withErrorCode("InvalidNextTokenException").withModeledClass( com.amazonaws.services.applicationautoscaling.model.InvalidNextTokenException.class)) .addErrorMetadata( new JsonErrorShapeMetadata().withErrorCode("ObjectNotFoundException").withModeledClass( com.amazonaws.services.applicationautoscaling.model.ObjectNotFoundException.class)) .addErrorMetadata( new JsonErrorShapeMetadata().withErrorCode("FailedResourceAccessException").withModeledClass( com.amazonaws.services.applicationautoscaling.model.FailedResourceAccessException.class)) .addErrorMetadata( new JsonErrorShapeMetadata().withErrorCode("LimitExceededException").withModeledClass( com.amazonaws.services.applicationautoscaling.model.LimitExceededException.class)) .addErrorMetadata( new JsonErrorShapeMetadata().withErrorCode("ConcurrentUpdateException").withModeledClass( com.amazonaws.services.applicationautoscaling.model.ConcurrentUpdateException.class)) .withBaseServiceExceptionClass(com.amazonaws.services.applicationautoscaling.model.AWSApplicationAutoScalingException.class)); /** * Constructs a new client to invoke service methods on Application Auto Scaling. A credentials provider chain will * be used that searches for credentials in this order: * <ul> * <li>Environment Variables - AWS_ACCESS_KEY_ID and AWS_SECRET_KEY</li> * <li>Java System Properties - aws.accessKeyId and aws.secretKey</li> * <li>Instance profile credentials delivered through the Amazon EC2 metadata service</li> * </ul> * * <p> * All service calls made using this new client object are blocking, and will not return until the service call * completes. * * @see DefaultAWSCredentialsProviderChain * @deprecated use {@link AWSApplicationAutoScalingClientBuilder#defaultClient()} */ @Deprecated public AWSApplicationAutoScalingClient() { this(DefaultAWSCredentialsProviderChain.getInstance(), configFactory.getConfig()); } /** * Constructs a new client to invoke service methods on Application Auto Scaling. A credentials provider chain will * be used that searches for credentials in this order: * <ul> * <li>Environment Variables - AWS_ACCESS_KEY_ID and AWS_SECRET_KEY</li> * <li>Java System Properties - aws.accessKeyId and aws.secretKey</li> * <li>Instance profile credentials delivered through the Amazon EC2 metadata service</li> * </ul> * * <p> * All service calls made using this new client object are blocking, and will not return until the service call * completes. * * @param clientConfiguration * The client configuration options controlling how this client connects to Application Auto Scaling (ex: * proxy settings, retry counts, etc.). * * @see DefaultAWSCredentialsProviderChain * @deprecated use {@link AWSApplicationAutoScalingClientBuilder#withClientConfiguration(ClientConfiguration)} */ @Deprecated public AWSApplicationAutoScalingClient(ClientConfiguration clientConfiguration) { this(DefaultAWSCredentialsProviderChain.getInstance(), clientConfiguration); } /** * Constructs a new client to invoke service methods on Application Auto Scaling using the specified AWS account * credentials. * * <p> * All service calls made using this new client object are blocking, and will not return until the service call * completes. * * @param awsCredentials * The AWS credentials (access key ID and secret key) to use when authenticating with AWS services. * @deprecated use {@link AWSApplicationAutoScalingClientBuilder#withCredentials(AWSCredentialsProvider)} for * example: * {@code AWSApplicationAutoScalingClientBuilder.standard().withCredentials(new AWSStaticCredentialsProvider(awsCredentials)).build();} */ @Deprecated public AWSApplicationAutoScalingClient(AWSCredentials awsCredentials) { this(awsCredentials, configFactory.getConfig()); } /** * Constructs a new client to invoke service methods on Application Auto Scaling using the specified AWS account * credentials and client configuration options. * * <p> * All service calls made using this new client object are blocking, and will not return until the service call * completes. * * @param awsCredentials * The AWS credentials (access key ID and secret key) to use when authenticating with AWS services. * @param clientConfiguration * The client configuration options controlling how this client connects to Application Auto Scaling (ex: * proxy settings, retry counts, etc.). * @deprecated use {@link AWSApplicationAutoScalingClientBuilder#withCredentials(AWSCredentialsProvider)} and * {@link AWSApplicationAutoScalingClientBuilder#withClientConfiguration(ClientConfiguration)} */ @Deprecated public AWSApplicationAutoScalingClient(AWSCredentials awsCredentials, ClientConfiguration clientConfiguration) { super(clientConfiguration); this.awsCredentialsProvider = new StaticCredentialsProvider(awsCredentials); init(); } /** * Constructs a new client to invoke service methods on Application Auto Scaling using the specified AWS account * credentials provider. * * <p> * All service calls made using this new client object are blocking, and will not return until the service call * completes. * * @param awsCredentialsProvider * The AWS credentials provider which will provide credentials to authenticate requests with AWS services. * @deprecated use {@link AWSApplicationAutoScalingClientBuilder#withCredentials(AWSCredentialsProvider)} */ @Deprecated public AWSApplicationAutoScalingClient(AWSCredentialsProvider awsCredentialsProvider) { this(awsCredentialsProvider, configFactory.getConfig()); } /** * Constructs a new client to invoke service methods on Application Auto Scaling using the specified AWS account * credentials provider and client configuration options. * * <p> * All service calls made using this new client object are blocking, and will not return until the service call * completes. * * @param awsCredentialsProvider * The AWS credentials provider which will provide credentials to authenticate requests with AWS services. * @param clientConfiguration * The client configuration options controlling how this client connects to Application Auto Scaling (ex: * proxy settings, retry counts, etc.). * @deprecated use {@link AWSApplicationAutoScalingClientBuilder#withCredentials(AWSCredentialsProvider)} and * {@link AWSApplicationAutoScalingClientBuilder#withClientConfiguration(ClientConfiguration)} */ @Deprecated public AWSApplicationAutoScalingClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration) { this(awsCredentialsProvider, clientConfiguration, null); } /** * Constructs a new client to invoke service methods on Application Auto Scaling using the specified AWS account * credentials provider, client configuration options, and request metric collector. * * <p> * All service calls made using this new client object are blocking, and will not return until the service call * completes. * * @param awsCredentialsProvider * The AWS credentials provider which will provide credentials to authenticate requests with AWS services. * @param clientConfiguration * The client configuration options controlling how this client connects to Application Auto Scaling (ex: * proxy settings, retry counts, etc.). * @param requestMetricCollector * optional request metric collector * @deprecated use {@link AWSApplicationAutoScalingClientBuilder#withCredentials(AWSCredentialsProvider)} and * {@link AWSApplicationAutoScalingClientBuilder#withClientConfiguration(ClientConfiguration)} and * {@link AWSApplicationAutoScalingClientBuilder#withMetricsCollector(RequestMetricCollector)} */ @Deprecated public AWSApplicationAutoScalingClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, RequestMetricCollector requestMetricCollector) { super(clientConfiguration, requestMetricCollector); this.awsCredentialsProvider = awsCredentialsProvider; init(); } public static AWSApplicationAutoScalingClientBuilder builder() { return AWSApplicationAutoScalingClientBuilder.standard(); } /** * Constructs a new client to invoke service methods on Application Auto Scaling using the specified parameters. * * <p> * All service calls made using this new client object are blocking, and will not return until the service call * completes. * * @param clientParams * Object providing client parameters. */ AWSApplicationAutoScalingClient(AwsSyncClientParams clientParams) { super(clientParams); this.awsCredentialsProvider = clientParams.getCredentialsProvider(); init(); } private void init() { setServiceNameIntern(DEFAULT_SIGNING_NAME); setEndpointPrefix(ENDPOINT_PREFIX); // calling this.setEndPoint(...) will also modify the signer accordingly setEndpoint("https://autoscaling.us-east-1.amazonaws.com"); HandlerChainFactory chainFactory = new HandlerChainFactory(); requestHandler2s.addAll(chainFactory.newRequestHandlerChain("/com/amazonaws/services/applicationautoscaling/request.handlers")); requestHandler2s.addAll(chainFactory.newRequestHandler2Chain("/com/amazonaws/services/applicationautoscaling/request.handler2s")); requestHandler2s.addAll(chainFactory.getGlobalHandlers()); } /** * <p> * Deletes the specified Application Auto Scaling scaling policy. * </p> * <p> * Deleting a policy deletes the underlying alarm action, but does not delete the CloudWatch alarm associated with * the scaling policy, even if it no longer has an associated action. * </p> * <p> * To create a scaling policy or update an existing one, see <a>PutScalingPolicy</a>. * </p> * * @param deleteScalingPolicyRequest * @return Result of the DeleteScalingPolicy operation returned by the service. * @throws ValidationException * An exception was thrown for a validation issue. Review the available parameters for the API request. * @throws ObjectNotFoundException * The specified object could not be found. For any <code>Put</code> or <code>Register</code> API operation, * which depends on the existence of a scalable target, this exception is thrown if the scalable target with * the specified service namespace, resource ID, and scalable dimension does not exist. For any * <code>Delete</code> or <code>Deregister</code> API operation, this exception is thrown if the resource * that is to be deleted or deregistered cannot be found. * @throws ConcurrentUpdateException * Concurrent updates caused an exception, for example, if you request an update to an Application Auto * Scaling resource that already has a pending update. * @throws InternalServiceException * The service encountered an internal error. * @sample AWSApplicationAutoScaling.DeleteScalingPolicy * @see <a href="http://docs.aws.amazon.com/goto/WebAPI/application-autoscaling-2016-02-06/DeleteScalingPolicy" * target="_top">AWS API Documentation</a> */ @Override public DeleteScalingPolicyResult deleteScalingPolicy(DeleteScalingPolicyRequest request) { request = beforeClientExecution(request); return executeDeleteScalingPolicy(request); } @SdkInternalApi final DeleteScalingPolicyResult executeDeleteScalingPolicy(DeleteScalingPolicyRequest deleteScalingPolicyRequest) { ExecutionContext executionContext = createExecutionContext(deleteScalingPolicyRequest); AWSRequestMetrics awsRequestMetrics = executionContext.getAwsRequestMetrics(); awsRequestMetrics.startEvent(Field.ClientExecuteTime); Request<DeleteScalingPolicyRequest> request = null; Response<DeleteScalingPolicyResult> response = null; try { awsRequestMetrics.startEvent(Field.RequestMarshallTime); try { request = new DeleteScalingPolicyRequestProtocolMarshaller(protocolFactory).marshall(super.beforeMarshalling(deleteScalingPolicyRequest)); // Binds the request metrics to the current request. request.setAWSRequestMetrics(awsRequestMetrics); } finally { awsRequestMetrics.endEvent(Field.RequestMarshallTime); } HttpResponseHandler<AmazonWebServiceResponse<DeleteScalingPolicyResult>> responseHandler = protocolFactory.createResponseHandler( new JsonOperationMetadata().withPayloadJson(true).withHasStreamingSuccessResponse(false), new DeleteScalingPolicyResultJsonUnmarshaller()); response = invoke(request, responseHandler, executionContext); return response.getAwsResponse(); } finally { endClientExecution(awsRequestMetrics, request, response); } } /** * <p> * Deregisters a scalable target. * </p> * <p> * Deregistering a scalable target deletes the scaling policies that are associated with it. * </p> * <p> * To create a scalable target or update an existing one, see <a>RegisterScalableTarget</a>. * </p> * * @param deregisterScalableTargetRequest * @return Result of the DeregisterScalableTarget operation returned by the service. * @throws ValidationException * An exception was thrown for a validation issue. Review the available parameters for the API request. * @throws ObjectNotFoundException * The specified object could not be found. For any <code>Put</code> or <code>Register</code> API operation, * which depends on the existence of a scalable target, this exception is thrown if the scalable target with * the specified service namespace, resource ID, and scalable dimension does not exist. For any * <code>Delete</code> or <code>Deregister</code> API operation, this exception is thrown if the resource * that is to be deleted or deregistered cannot be found. * @throws ConcurrentUpdateException * Concurrent updates caused an exception, for example, if you request an update to an Application Auto * Scaling resource that already has a pending update. * @throws InternalServiceException * The service encountered an internal error. * @sample AWSApplicationAutoScaling.DeregisterScalableTarget * @see <a href="http://docs.aws.amazon.com/goto/WebAPI/application-autoscaling-2016-02-06/DeregisterScalableTarget" * target="_top">AWS API Documentation</a> */ @Override public DeregisterScalableTargetResult deregisterScalableTarget(DeregisterScalableTargetRequest request) { request = beforeClientExecution(request); return executeDeregisterScalableTarget(request); } @SdkInternalApi final DeregisterScalableTargetResult executeDeregisterScalableTarget(DeregisterScalableTargetRequest deregisterScalableTargetRequest) { ExecutionContext executionContext = createExecutionContext(deregisterScalableTargetRequest); AWSRequestMetrics awsRequestMetrics = executionContext.getAwsRequestMetrics(); awsRequestMetrics.startEvent(Field.ClientExecuteTime); Request<DeregisterScalableTargetRequest> request = null; Response<DeregisterScalableTargetResult> response = null; try { awsRequestMetrics.startEvent(Field.RequestMarshallTime); try { request = new DeregisterScalableTargetRequestProtocolMarshaller(protocolFactory).marshall(super .beforeMarshalling(deregisterScalableTargetRequest)); // Binds the request metrics to the current request. request.setAWSRequestMetrics(awsRequestMetrics); } finally { awsRequestMetrics.endEvent(Field.RequestMarshallTime); } HttpResponseHandler<AmazonWebServiceResponse<DeregisterScalableTargetResult>> responseHandler = protocolFactory.createResponseHandler( new JsonOperationMetadata().withPayloadJson(true).withHasStreamingSuccessResponse(false), new DeregisterScalableTargetResultJsonUnmarshaller()); response = invoke(request, responseHandler, executionContext); return response.getAwsResponse(); } finally { endClientExecution(awsRequestMetrics, request, response); } } /** * <p> * Provides descriptive information about the scalable targets in the specified namespace. * </p> * <p> * You can filter the results using the <code>ResourceIds</code> and <code>ScalableDimension</code> parameters. * </p> * <p> * To create a scalable target or update an existing one, see <a>RegisterScalableTarget</a>. If you are no longer * using a scalable target, you can deregister it using <a>DeregisterScalableTarget</a>. * </p> * * @param describeScalableTargetsRequest * @return Result of the DescribeScalableTargets operation returned by the service. * @throws ValidationException * An exception was thrown for a validation issue. Review the available parameters for the API request. * @throws InvalidNextTokenException * The next token supplied was invalid. * @throws ConcurrentUpdateException * Concurrent updates caused an exception, for example, if you request an update to an Application Auto * Scaling resource that already has a pending update. * @throws InternalServiceException * The service encountered an internal error. * @sample AWSApplicationAutoScaling.DescribeScalableTargets * @see <a href="http://docs.aws.amazon.com/goto/WebAPI/application-autoscaling-2016-02-06/DescribeScalableTargets" * target="_top">AWS API Documentation</a> */ @Override public DescribeScalableTargetsResult describeScalableTargets(DescribeScalableTargetsRequest request) { request = beforeClientExecution(request); return executeDescribeScalableTargets(request); } @SdkInternalApi final DescribeScalableTargetsResult executeDescribeScalableTargets(DescribeScalableTargetsRequest describeScalableTargetsRequest) { ExecutionContext executionContext = createExecutionContext(describeScalableTargetsRequest); AWSRequestMetrics awsRequestMetrics = executionContext.getAwsRequestMetrics(); awsRequestMetrics.startEvent(Field.ClientExecuteTime); Request<DescribeScalableTargetsRequest> request = null; Response<DescribeScalableTargetsResult> response = null; try { awsRequestMetrics.startEvent(Field.RequestMarshallTime); try { request = new DescribeScalableTargetsRequestProtocolMarshaller(protocolFactory).marshall(super .beforeMarshalling(describeScalableTargetsRequest)); // Binds the request metrics to the current request. request.setAWSRequestMetrics(awsRequestMetrics); } finally { awsRequestMetrics.endEvent(Field.RequestMarshallTime); } HttpResponseHandler<AmazonWebServiceResponse<DescribeScalableTargetsResult>> responseHandler = protocolFactory.createResponseHandler( new JsonOperationMetadata().withPayloadJson(true).withHasStreamingSuccessResponse(false), new DescribeScalableTargetsResultJsonUnmarshaller()); response = invoke(request, responseHandler, executionContext); return response.getAwsResponse(); } finally { endClientExecution(awsRequestMetrics, request, response); } } /** * <p> * Provides descriptive information about the scaling activities in the specified namespace from the previous six * weeks. * </p> * <p> * You can filter the results using the <code>ResourceId</code> and <code>ScalableDimension</code> parameters. * </p> * <p> * Scaling activities are triggered by CloudWatch alarms that are associated with scaling policies. To view the * scaling policies for a service namespace, see <a>DescribeScalingPolicies</a>. To create a scaling policy or * update an existing one, see <a>PutScalingPolicy</a>. * </p> * * @param describeScalingActivitiesRequest * @return Result of the DescribeScalingActivities operation returned by the service. * @throws ValidationException * An exception was thrown for a validation issue. Review the available parameters for the API request. * @throws InvalidNextTokenException * The next token supplied was invalid. * @throws ConcurrentUpdateException * Concurrent updates caused an exception, for example, if you request an update to an Application Auto * Scaling resource that already has a pending update. * @throws InternalServiceException * The service encountered an internal error. * @sample AWSApplicationAutoScaling.DescribeScalingActivities * @see <a * href="http://docs.aws.amazon.com/goto/WebAPI/application-autoscaling-2016-02-06/DescribeScalingActivities" * target="_top">AWS API Documentation</a> */ @Override public DescribeScalingActivitiesResult describeScalingActivities(DescribeScalingActivitiesRequest request) { request = beforeClientExecution(request); return executeDescribeScalingActivities(request); } @SdkInternalApi final DescribeScalingActivitiesResult executeDescribeScalingActivities(DescribeScalingActivitiesRequest describeScalingActivitiesRequest) { ExecutionContext executionContext = createExecutionContext(describeScalingActivitiesRequest); AWSRequestMetrics awsRequestMetrics = executionContext.getAwsRequestMetrics(); awsRequestMetrics.startEvent(Field.ClientExecuteTime); Request<DescribeScalingActivitiesRequest> request = null; Response<DescribeScalingActivitiesResult> response = null; try { awsRequestMetrics.startEvent(Field.RequestMarshallTime); try { request = new DescribeScalingActivitiesRequestProtocolMarshaller(protocolFactory).marshall(super .beforeMarshalling(describeScalingActivitiesRequest)); // Binds the request metrics to the current request. request.setAWSRequestMetrics(awsRequestMetrics); } finally { awsRequestMetrics.endEvent(Field.RequestMarshallTime); } HttpResponseHandler<AmazonWebServiceResponse<DescribeScalingActivitiesResult>> responseHandler = protocolFactory.createResponseHandler( new JsonOperationMetadata().withPayloadJson(true).withHasStreamingSuccessResponse(false), new DescribeScalingActivitiesResultJsonUnmarshaller()); response = invoke(request, responseHandler, executionContext); return response.getAwsResponse(); } finally { endClientExecution(awsRequestMetrics, request, response); } } /** * <p> * Provides descriptive information about the scaling policies in the specified namespace. * </p> * <p> * You can filter the results using the <code>ResourceId</code>, <code>ScalableDimension</code>, and * <code>PolicyNames</code> parameters. * </p> * <p> * To create a scaling policy or update an existing one, see <a>PutScalingPolicy</a>. If you are no longer using a * scaling policy, you can delete it using <a>DeleteScalingPolicy</a>. * </p> * * @param describeScalingPoliciesRequest * @return Result of the DescribeScalingPolicies operation returned by the service. * @throws ValidationException * An exception was thrown for a validation issue. Review the available parameters for the API request. * @throws FailedResourceAccessException * Failed access to resources caused an exception. This exception currently only applies to * <a>DescribeScalingPolicies</a>. It is thrown when Application Auto Scaling is unable to retrieve the * alarms associated with a scaling policy due to a client error, for example, if the role ARN specified for * a scalable target does not have the proper permissions to call the CloudWatch <a * href="http://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_DescribeAlarms.html" * >DescribeAlarms</a> API operation on behalf of your account. * @throws InvalidNextTokenException * The next token supplied was invalid. * @throws ConcurrentUpdateException * Concurrent updates caused an exception, for example, if you request an update to an Application Auto * Scaling resource that already has a pending update. * @throws InternalServiceException * The service encountered an internal error. * @sample AWSApplicationAutoScaling.DescribeScalingPolicies * @see <a href="http://docs.aws.amazon.com/goto/WebAPI/application-autoscaling-2016-02-06/DescribeScalingPolicies" * target="_top">AWS API Documentation</a> */ @Override public DescribeScalingPoliciesResult describeScalingPolicies(DescribeScalingPoliciesRequest request) { request = beforeClientExecution(request); return executeDescribeScalingPolicies(request); } @SdkInternalApi final DescribeScalingPoliciesResult executeDescribeScalingPolicies(DescribeScalingPoliciesRequest describeScalingPoliciesRequest) { ExecutionContext executionContext = createExecutionContext(describeScalingPoliciesRequest); AWSRequestMetrics awsRequestMetrics = executionContext.getAwsRequestMetrics(); awsRequestMetrics.startEvent(Field.ClientExecuteTime); Request<DescribeScalingPoliciesRequest> request = null; Response<DescribeScalingPoliciesResult> response = null; try { awsRequestMetrics.startEvent(Field.RequestMarshallTime); try { request = new DescribeScalingPoliciesRequestProtocolMarshaller(protocolFactory).marshall(super .beforeMarshalling(describeScalingPoliciesRequest)); // Binds the request metrics to the current request. request.setAWSRequestMetrics(awsRequestMetrics); } finally { awsRequestMetrics.endEvent(Field.RequestMarshallTime); } HttpResponseHandler<AmazonWebServiceResponse<DescribeScalingPoliciesResult>> responseHandler = protocolFactory.createResponseHandler( new JsonOperationMetadata().withPayloadJson(true).withHasStreamingSuccessResponse(false), new DescribeScalingPoliciesResultJsonUnmarshaller()); response = invoke(request, responseHandler, executionContext); return response.getAwsResponse(); } finally { endClientExecution(awsRequestMetrics, request, response); } } /** * <p> * Creates or updates a policy for an Application Auto Scaling scalable target. * </p> * <p> * Each scalable target is identified by a service namespace, resource ID, and scalable dimension. A scaling policy * applies to the scalable target identified by those three attributes. You cannot create a scaling policy without * first registering a scalable target using <a>RegisterScalableTarget</a>. * </p> * <p> * To update a policy, specify its policy name and the parameters that you want to change. Any parameters that you * don't specify are not changed by this update request. * </p> * <p> * You can view the scaling policies for a service namespace using <a>DescribeScalingPolicies</a>. If you are no * longer using a scaling policy, you can delete it using <a>DeleteScalingPolicy</a>. * </p> * * @param putScalingPolicyRequest * @return Result of the PutScalingPolicy operation returned by the service. * @throws ValidationException * An exception was thrown for a validation issue. Review the available parameters for the API request. * @throws LimitExceededException * Your account exceeded a limit. This exception is thrown when a per-account resource limit is exceeded. * For more information, see <a * href="http://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html#limits_as-app">Application * Auto Scaling Limits</a>. * @throws ObjectNotFoundException * The specified object could not be found. For any <code>Put</code> or <code>Register</code> API operation, * which depends on the existence of a scalable target, this exception is thrown if the scalable target with * the specified service namespace, resource ID, and scalable dimension does not exist. For any * <code>Delete</code> or <code>Deregister</code> API operation, this exception is thrown if the resource * that is to be deleted or deregistered cannot be found. * @throws ConcurrentUpdateException * Concurrent updates caused an exception, for example, if you request an update to an Application Auto * Scaling resource that already has a pending update. * @throws InternalServiceException * The service encountered an internal error. * @sample AWSApplicationAutoScaling.PutScalingPolicy * @see <a href="http://docs.aws.amazon.com/goto/WebAPI/application-autoscaling-2016-02-06/PutScalingPolicy" * target="_top">AWS API Documentation</a> */ @Override public PutScalingPolicyResult putScalingPolicy(PutScalingPolicyRequest request) { request = beforeClientExecution(request); return executePutScalingPolicy(request); } @SdkInternalApi final PutScalingPolicyResult executePutScalingPolicy(PutScalingPolicyRequest putScalingPolicyRequest) { ExecutionContext executionContext = createExecutionContext(putScalingPolicyRequest); AWSRequestMetrics awsRequestMetrics = executionContext.getAwsRequestMetrics(); awsRequestMetrics.startEvent(Field.ClientExecuteTime); Request<PutScalingPolicyRequest> request = null; Response<PutScalingPolicyResult> response = null; try { awsRequestMetrics.startEvent(Field.RequestMarshallTime); try { request = new PutScalingPolicyRequestProtocolMarshaller(protocolFactory).marshall(super.beforeMarshalling(putScalingPolicyRequest)); // Binds the request metrics to the current request. request.setAWSRequestMetrics(awsRequestMetrics); } finally { awsRequestMetrics.endEvent(Field.RequestMarshallTime); } HttpResponseHandler<AmazonWebServiceResponse<PutScalingPolicyResult>> responseHandler = protocolFactory.createResponseHandler( new JsonOperationMetadata().withPayloadJson(true).withHasStreamingSuccessResponse(false), new PutScalingPolicyResultJsonUnmarshaller()); response = invoke(request, responseHandler, executionContext); return response.getAwsResponse(); } finally { endClientExecution(awsRequestMetrics, request, response); } } /** * <p> * Registers or updates a scalable target. A scalable target is a resource that Application Auto Scaling can scale * out or scale in. After you have registered a scalable target, you can use this operation to update the minimum * and maximum values for your scalable dimension. * </p> * <p> * After you register a scalable target, you can create and apply scaling policies using <a>PutScalingPolicy</a>. * You can view the scaling policies for a service namespace using <a>DescribeScalableTargets</a>. If you are no * longer using a scalable target, you can deregister it using <a>DeregisterScalableTarget</a>. * </p> * * @param registerScalableTargetRequest * @return Result of the RegisterScalableTarget operation returned by the service. * @throws ValidationException * An exception was thrown for a validation issue. Review the available parameters for the API request. * @throws LimitExceededException * Your account exceeded a limit. This exception is thrown when a per-account resource limit is exceeded. * For more information, see <a * href="http://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html#limits_as-app">Application * Auto Scaling Limits</a>. * @throws ConcurrentUpdateException * Concurrent updates caused an exception, for example, if you request an update to an Application Auto * Scaling resource that already has a pending update. * @throws InternalServiceException * The service encountered an internal error. * @sample AWSApplicationAutoScaling.RegisterScalableTarget * @see <a href="http://docs.aws.amazon.com/goto/WebAPI/application-autoscaling-2016-02-06/RegisterScalableTarget" * target="_top">AWS API Documentation</a> */ @Override public RegisterScalableTargetResult registerScalableTarget(RegisterScalableTargetRequest request) { request = beforeClientExecution(request); return executeRegisterScalableTarget(request); } @SdkInternalApi final RegisterScalableTargetResult executeRegisterScalableTarget(RegisterScalableTargetRequest registerScalableTargetRequest) { ExecutionContext executionContext = createExecutionContext(registerScalableTargetRequest); AWSRequestMetrics awsRequestMetrics = executionContext.getAwsRequestMetrics(); awsRequestMetrics.startEvent(Field.ClientExecuteTime); Request<RegisterScalableTargetRequest> request = null; Response<RegisterScalableTargetResult> response = null; try { awsRequestMetrics.startEvent(Field.RequestMarshallTime); try { request = new RegisterScalableTargetRequestProtocolMarshaller(protocolFactory).marshall(super.beforeMarshalling(registerScalableTargetRequest)); // Binds the request metrics to the current request. request.setAWSRequestMetrics(awsRequestMetrics); } finally { awsRequestMetrics.endEvent(Field.RequestMarshallTime); } HttpResponseHandler<AmazonWebServiceResponse<RegisterScalableTargetResult>> responseHandler = protocolFactory.createResponseHandler( new JsonOperationMetadata().withPayloadJson(true).withHasStreamingSuccessResponse(false), new RegisterScalableTargetResultJsonUnmarshaller()); response = invoke(request, responseHandler, executionContext); return response.getAwsResponse(); } finally { endClientExecution(awsRequestMetrics, request, response); } } /** * Returns additional metadata for a previously executed successful, request, typically used for debugging issues * where a service isn't acting as expected. This data isn't considered part of the result data returned by an * operation, so it's available through this separate, diagnostic interface. * <p> * Response metadata is only cached for a limited period of time, so if you need to access this extra diagnostic * information for an executed request, you should use this method to retrieve it as soon as possible after * executing the request. * * @param request * The originally executed request * * @return The response metadata for the specified request, or null if none is available. */ public ResponseMetadata getCachedResponseMetadata(AmazonWebServiceRequest request) { return client.getResponseMetadataForRequest(request); } /** * Normal invoke with authentication. Credentials are required and may be overriden at the request level. **/ private <X, Y extends AmazonWebServiceRequest> Response<X> invoke(Request<Y> request, HttpResponseHandler<AmazonWebServiceResponse<X>> responseHandler, ExecutionContext executionContext) { executionContext.setCredentialsProvider(CredentialUtils.getCredentialsProvider(request.getOriginalRequest(), awsCredentialsProvider)); return doInvoke(request, responseHandler, executionContext); } /** * Invoke with no authentication. Credentials are not required and any credentials set on the client or request will * be ignored for this operation. **/ private <X, Y extends AmazonWebServiceRequest> Response<X> anonymousInvoke(Request<Y> request, HttpResponseHandler<AmazonWebServiceResponse<X>> responseHandler, ExecutionContext executionContext) { return doInvoke(request, responseHandler, executionContext); } /** * Invoke the request using the http client. Assumes credentials (or lack thereof) have been configured in the * ExecutionContext beforehand. **/ private <X, Y extends AmazonWebServiceRequest> Response<X> doInvoke(Request<Y> request, HttpResponseHandler<AmazonWebServiceResponse<X>> responseHandler, ExecutionContext executionContext) { request.setEndpoint(endpoint); request.setTimeOffset(timeOffset); HttpResponseHandler<AmazonServiceException> errorResponseHandler = protocolFactory.createErrorResponseHandler(new JsonErrorResponseMetadata()); return client.execute(request, responseHandler, errorResponseHandler, executionContext); } }