/// <summary>
        /// Initiates the asynchronous execution of the UpdateScalingParameters operation.
        /// </summary>
        /// 
        /// <param name="request">Container for the necessary parameters to execute the UpdateScalingParameters operation on AmazonCloudSearchClient.</param>
        /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
        /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback
        ///          procedure using the AsyncState property.</param>
        /// 
        /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndUpdateScalingParameters
        ///         operation.</returns>
        public IAsyncResult BeginUpdateScalingParameters(UpdateScalingParametersRequest request, AsyncCallback callback, object state)
        {
            var marshaller = new UpdateScalingParametersRequestMarshaller();
            var unmarshaller = UpdateScalingParametersResponseUnmarshaller.Instance;

            return BeginInvoke<UpdateScalingParametersRequest>(request, marshaller, unmarshaller,
                callback, state);
        }
 IAsyncResult invokeUpdateScalingParameters(UpdateScalingParametersRequest updateScalingParametersRequest, AsyncCallback callback, object state, bool synchronized)
 {
     IRequest irequest = new UpdateScalingParametersRequestMarshaller().Marshall(updateScalingParametersRequest);
     var unmarshaller = UpdateScalingParametersResponseUnmarshaller.GetInstance();
     AsyncResult result = new AsyncResult(irequest, callback, state, synchronized, signer, unmarshaller);
     Invoke(result);
     return result;
 }
        /// <summary>
        /// Configures scaling parameters for a domain. A domain's scaling parameters specify
        /// the desired search instance type and replication count. Amazon CloudSearch will still
        /// automatically scale your domain based on the volume of data and traffic, but not below
        /// the desired instance type and replication count. If the Multi-AZ option is enabled,
        /// these values control the resources used per Availability Zone. For more information,
        /// see <a href="http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-scaling-options.html"
        /// target="_blank">Configuring Scaling Options</a> in the <i>Amazon CloudSearch Developer
        /// Guide</i>.
        /// </summary>
        /// <param name="request">Container for the necessary parameters to execute the UpdateScalingParameters service method.</param>
        /// 
        /// <returns>The response from the UpdateScalingParameters service method, as returned by CloudSearch.</returns>
        /// <exception cref="Amazon.CloudSearch.Model.BaseException">
        /// An error occurred while processing the request.
        /// </exception>
        /// <exception cref="Amazon.CloudSearch.Model.InternalException">
        /// An internal error occurred while processing the request. If this problem persists,
        /// report an issue from the <a href="http://status.aws.amazon.com/" target="_blank">Service
        /// Health Dashboard</a>.
        /// </exception>
        /// <exception cref="Amazon.CloudSearch.Model.InvalidTypeException">
        /// The request was rejected because it specified an invalid type definition.
        /// </exception>
        /// <exception cref="Amazon.CloudSearch.Model.LimitExceededException">
        /// The request was rejected because a resource limit has already been met.
        /// </exception>
        /// <exception cref="Amazon.CloudSearch.Model.ResourceNotFoundException">
        /// The request was rejected because it attempted to reference a resource that does not
        /// exist.
        /// </exception>
        public UpdateScalingParametersResponse UpdateScalingParameters(UpdateScalingParametersRequest request)
        {
            var marshaller = new UpdateScalingParametersRequestMarshaller();
            var unmarshaller = UpdateScalingParametersResponseUnmarshaller.Instance;

            return Invoke<UpdateScalingParametersRequest,UpdateScalingParametersResponse>(request, marshaller, unmarshaller);
        }
 /// <summary>
 /// <para>Configures scaling parameters for a domain. A domain's scaling parameters specify the desired search instance type and replication
 /// count. Amazon CloudSearch will still automatically scale your domain based on the volume of data and traffic, but not below the desired
 /// instance type and replication count. If the Multi-AZ option is enabled, these values control the resources used per Availability Zone. For
 /// more information, see <a href="http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-scaling-options.html" >Configuring
 /// Scaling Options</a> in the <i>Amazon CloudSearch Developer Guide</i> . </para>
 /// </summary>
 /// 
 /// <param name="updateScalingParametersRequest">Container for the necessary parameters to execute the UpdateScalingParameters service method on
 ///          AmazonCloudSearch.</param>
 /// 
 /// <returns>The response from the UpdateScalingParameters service method, as returned by AmazonCloudSearch.</returns>
 /// 
 /// <exception cref="InternalException"/>
 /// <exception cref="InvalidTypeException"/>
 /// <exception cref="ResourceNotFoundException"/>
 /// <exception cref="LimitExceededException"/>
 /// <exception cref="BaseException"/>
 public UpdateScalingParametersResponse UpdateScalingParameters(UpdateScalingParametersRequest updateScalingParametersRequest)
 {
     IAsyncResult asyncResult = invokeUpdateScalingParameters(updateScalingParametersRequest, null, null, true);
     return EndUpdateScalingParameters(asyncResult);
 }
 /// <summary>
 /// Initiates the asynchronous execution of the UpdateScalingParameters operation.
 /// <seealso cref="Amazon.CloudSearch.IAmazonCloudSearch.UpdateScalingParameters"/>
 /// </summary>
 /// 
 /// <param name="updateScalingParametersRequest">Container for the necessary parameters to execute the UpdateScalingParameters operation on
 ///          AmazonCloudSearch.</param>
 /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
 /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback
 ///          procedure using the AsyncState property.</param>
 /// 
 /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking
 ///         EndUpdateScalingParameters operation.</returns>
 public IAsyncResult BeginUpdateScalingParameters(UpdateScalingParametersRequest updateScalingParametersRequest, AsyncCallback callback, object state)
 {
     return invokeUpdateScalingParameters(updateScalingParametersRequest, callback, state, false);
 }
		internal UpdateScalingParametersResponse UpdateScalingParameters(UpdateScalingParametersRequest request)
        {
            var task = UpdateScalingParametersAsync(request);
            try
            {
                return task.Result;
            }
            catch(AggregateException e)
            {
                ExceptionDispatchInfo.Capture(e.InnerException).Throw();
                return null;
            }
        }
        /// <summary>
        /// <para>Configures scaling parameters for a domain. A domain's scaling parameters specify the desired search instance type and replication
        /// count. Amazon CloudSearch will still automatically scale your domain based on the volume of data and traffic, but not below the desired
        /// instance type and replication count. If the Multi-AZ option is enabled, these values control the resources used per Availability Zone. For
        /// more information, see <a href="http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-scaling-options.html">Configuring
        /// Scaling Options</a> in the <i>Amazon CloudSearch Developer Guide</i> . </para>
        /// </summary>
        /// 
        /// <param name="updateScalingParametersRequest">Container for the necessary parameters to execute the UpdateScalingParameters service method on
        /// AmazonCloudSearch.</param>
        /// 
        /// <returns>The response from the UpdateScalingParameters service method, as returned by AmazonCloudSearch.</returns>
        /// 
        /// <exception cref="T:Amazon.CloudSearch.Model.InternalException" />
        /// <exception cref="T:Amazon.CloudSearch.Model.InvalidTypeException" />
        /// <exception cref="T:Amazon.CloudSearch.Model.ResourceNotFoundException" />
        /// <exception cref="T:Amazon.CloudSearch.Model.LimitExceededException" />
        /// <exception cref="T:Amazon.CloudSearch.Model.BaseException" />
        /// <param name="cancellationToken">
        ///     A cancellation token that can be used by other objects or threads to receive notice of cancellation.
        /// </param>
		public Task<UpdateScalingParametersResponse> UpdateScalingParametersAsync(UpdateScalingParametersRequest updateScalingParametersRequest, CancellationToken cancellationToken = default(CancellationToken))
        {
            var marshaller = new UpdateScalingParametersRequestMarshaller();
            var unmarshaller = UpdateScalingParametersResponseUnmarshaller.GetInstance();
            return Invoke<IRequest, UpdateScalingParametersRequest, UpdateScalingParametersResponse>(updateScalingParametersRequest, marshaller, unmarshaller, signer, cancellationToken);
        }
        /// <summary>
        /// Initiates the asynchronous execution of the UpdateScalingParameters operation.
        /// </summary>
        /// 
        /// <param name="request">Container for the necessary parameters to execute the UpdateScalingParameters operation.</param>
        /// <param name="cancellationToken">
        ///     A cancellation token that can be used by other objects or threads to receive notice of cancellation.
        /// </param>
        /// <returns>The task object representing the asynchronous operation.</returns>
        public Task<UpdateScalingParametersResponse> UpdateScalingParametersAsync(UpdateScalingParametersRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
        {
            var marshaller = new UpdateScalingParametersRequestMarshaller();
            var unmarshaller = UpdateScalingParametersResponseUnmarshaller.Instance;

            return InvokeAsync<UpdateScalingParametersRequest,UpdateScalingParametersResponse>(request, marshaller, 
                unmarshaller, cancellationToken);
        }
Exemple #9
0
 private Amazon.CloudSearch.Model.UpdateScalingParametersResponse CallAWSServiceOperation(IAmazonCloudSearch client, Amazon.CloudSearch.Model.UpdateScalingParametersRequest request)
 {
     Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "Amazon CloudSearch", "UpdateScalingParameters");
     try
     {
         #if DESKTOP
         return(client.UpdateScalingParameters(request));
         #elif CORECLR
         return(client.UpdateScalingParametersAsync(request).GetAwaiter().GetResult());
         #else
                 #error "Unknown build edition"
         #endif
     }
     catch (AmazonServiceException exc)
     {
         var webException = exc.InnerException as System.Net.WebException;
         if (webException != null)
         {
             throw new Exception(Utils.Common.FormatNameResolutionFailureMessage(client.Config, webException.Message), webException);
         }
         throw;
     }
 }
Exemple #10
0
        public object Execute(ExecutorContext context)
        {
            var cmdletContext = context as CmdletContext;
            // create request
            var request = new Amazon.CloudSearch.Model.UpdateScalingParametersRequest();

            if (cmdletContext.DomainName != null)
            {
                request.DomainName = cmdletContext.DomainName;
            }

            // populate ScalingParameters
            var requestScalingParametersIsNull = true;

            request.ScalingParameters = new Amazon.CloudSearch.Model.ScalingParameters();
            Amazon.CloudSearch.PartitionInstanceType requestScalingParameters_scalingParameters_DesiredInstanceType = null;
            if (cmdletContext.ScalingParameters_DesiredInstanceType != null)
            {
                requestScalingParameters_scalingParameters_DesiredInstanceType = cmdletContext.ScalingParameters_DesiredInstanceType;
            }
            if (requestScalingParameters_scalingParameters_DesiredInstanceType != null)
            {
                request.ScalingParameters.DesiredInstanceType = requestScalingParameters_scalingParameters_DesiredInstanceType;
                requestScalingParametersIsNull = false;
            }
            System.Int32?requestScalingParameters_scalingParameters_DesiredPartitionCount = null;
            if (cmdletContext.ScalingParameters_DesiredPartitionCount != null)
            {
                requestScalingParameters_scalingParameters_DesiredPartitionCount = cmdletContext.ScalingParameters_DesiredPartitionCount.Value;
            }
            if (requestScalingParameters_scalingParameters_DesiredPartitionCount != null)
            {
                request.ScalingParameters.DesiredPartitionCount = requestScalingParameters_scalingParameters_DesiredPartitionCount.Value;
                requestScalingParametersIsNull = false;
            }
            System.Int32?requestScalingParameters_scalingParameters_DesiredReplicationCount = null;
            if (cmdletContext.ScalingParameters_DesiredReplicationCount != null)
            {
                requestScalingParameters_scalingParameters_DesiredReplicationCount = cmdletContext.ScalingParameters_DesiredReplicationCount.Value;
            }
            if (requestScalingParameters_scalingParameters_DesiredReplicationCount != null)
            {
                request.ScalingParameters.DesiredReplicationCount = requestScalingParameters_scalingParameters_DesiredReplicationCount.Value;
                requestScalingParametersIsNull = false;
            }
            // determine if request.ScalingParameters should be set to null
            if (requestScalingParametersIsNull)
            {
                request.ScalingParameters = null;
            }

            CmdletOutput output;

            // issue call
            var client = Client ?? CreateClient(_CurrentCredentials, _RegionEndpoint);

            try
            {
                var    response       = CallAWSServiceOperation(client, request);
                object pipelineOutput = null;
                pipelineOutput = cmdletContext.Select(response, this);
                output         = new CmdletOutput
                {
                    PipelineOutput  = pipelineOutput,
                    ServiceResponse = response
                };
            }
            catch (Exception e)
            {
                output = new CmdletOutput {
                    ErrorResponse = e
                };
            }

            return(output);
        }