/// <summary> /// Initiates the asynchronous execution of the PromoteReadReplica operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the PromoteReadReplica 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<PromoteReadReplicaResponse> PromoteReadReplicaAsync(PromoteReadReplicaRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var marshaller = new PromoteReadReplicaRequestMarshaller(); var unmarshaller = PromoteReadReplicaResponseUnmarshaller.Instance; return InvokeAsync<PromoteReadReplicaRequest,PromoteReadReplicaResponse>(request, marshaller, unmarshaller, cancellationToken); }
IAsyncResult invokePromoteReadReplica(PromoteReadReplicaRequest promoteReadReplicaRequest, AsyncCallback callback, object state, bool synchronized) { IRequest irequest = new PromoteReadReplicaRequestMarshaller().Marshall(promoteReadReplicaRequest); var unmarshaller = PromoteReadReplicaResponseUnmarshaller.GetInstance(); AsyncResult result = new AsyncResult(irequest, callback, state, synchronized, signer, unmarshaller); Invoke(result); return result; }
/// <summary> /// Promotes a Read Replica DB instance to a standalone DB instance. /// /// <note> /// <para> /// We recommend that you enable automated backups on your Read Replica before promoting /// the Read Replica. This ensures that no backup is taken during the promotion process. /// Once the instance is promoted to a primary instance, backups are taken based on your /// backup settings. /// </para> /// </note> /// </summary> /// <param name="request">Container for the necessary parameters to execute the PromoteReadReplica service method.</param> /// /// <returns>The response from the PromoteReadReplica service method, as returned by RDS.</returns> /// <exception cref="Amazon.RDS.Model.DBInstanceNotFoundException"> /// <i>DBInstanceIdentifier</i> does not refer to an existing DB instance. /// </exception> /// <exception cref="Amazon.RDS.Model.InvalidDBInstanceStateException"> /// The specified DB instance is not in the <i>available</i> state. /// </exception> public PromoteReadReplicaResponse PromoteReadReplica(PromoteReadReplicaRequest request) { var marshaller = new PromoteReadReplicaRequestMarshaller(); var unmarshaller = PromoteReadReplicaResponseUnmarshaller.Instance; return Invoke<PromoteReadReplicaRequest,PromoteReadReplicaResponse>(request, marshaller, unmarshaller); }
/// <summary> /// Initiates the asynchronous execution of the PromoteReadReplica operation. /// <seealso cref="Amazon.RDS.IAmazonRDS.PromoteReadReplica"/> /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the PromoteReadReplica 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<PromoteReadReplicaResponse> PromoteReadReplicaAsync(PromoteReadReplicaRequest request, CancellationToken cancellationToken = default(CancellationToken)) { var marshaller = new PromoteReadReplicaRequestMarshaller(); var unmarshaller = PromoteReadReplicaResponseUnmarshaller.GetInstance(); return Invoke<IRequest, PromoteReadReplicaRequest, PromoteReadReplicaResponse>(request, marshaller, unmarshaller, signer, cancellationToken); }
public void PromoteReadReplicaMarshallTest() { var operation = service_model.FindOperation("PromoteReadReplica"); var request = InstantiateClassGenerator.Execute<PromoteReadReplicaRequest>(); var marshaller = new PromoteReadReplicaRequestMarshaller(); var internalRequest = marshaller.Marshall(request); var validator = new AWSQueryValidator(internalRequest.Parameters, request, service_model, operation); validator.Validate(); var payloadResponse = new XmlSampleGenerator(service_model, operation).Execute(); var context = new XmlUnmarshallerContext(Utils.CreateStreamFromString(payloadResponse), false, null); var response = PromoteReadReplicaResponseUnmarshaller.Instance.Unmarshall(context) as PromoteReadReplicaResponse; InstantiateClassGenerator.ValidateObjectFullyInstantiated(response); }
/// <summary> /// <para> Promotes a read replica DB instance to a standalone DB instance. </para> /// </summary> /// /// <param name="promoteReadReplicaRequest">Container for the necessary parameters to execute the PromoteReadReplica service method on /// AmazonRDS.</param> /// /// <returns>The response from the PromoteReadReplica service method, as returned by AmazonRDS.</returns> /// /// <exception cref="T:Amazon.RDS.Model.DBInstanceNotFoundException" /> /// <exception cref="T:Amazon.RDS.Model.InvalidDBInstanceStateException" /> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> public async Task<PromoteReadReplicaResponse> PromoteReadReplicaAsync(PromoteReadReplicaRequest promoteReadReplicaRequest, CancellationToken cancellationToken = default(CancellationToken)) { var marshaller = new PromoteReadReplicaRequestMarshaller(); var unmarshaller = PromoteReadReplicaResponseUnmarshaller.GetInstance(); var response = await Invoke<IRequest, PromoteReadReplicaRequest, PromoteReadReplicaResponse>(promoteReadReplicaRequest, marshaller, unmarshaller, signer, cancellationToken) .ConfigureAwait(continueOnCapturedContext: false); return response; }
/// <summary> /// Initiates the asynchronous execution of the PromoteReadReplica operation. /// <seealso cref="Amazon.RDS.IAmazonRDS"/> /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the PromoteReadReplica operation on AmazonRDSClient.</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 EndPromoteReadReplica /// operation.</returns> public IAsyncResult BeginPromoteReadReplica(PromoteReadReplicaRequest request, AsyncCallback callback, object state) { var marshaller = new PromoteReadReplicaRequestMarshaller(); var unmarshaller = PromoteReadReplicaResponseUnmarshaller.Instance; return BeginInvoke<PromoteReadReplicaRequest>(request, marshaller, unmarshaller, callback, state); }