internal UnlinkDeveloperIdentityResponse UnlinkDeveloperIdentity(UnlinkDeveloperIdentityRequest request) { UnlinkDeveloperIdentityRequestMarshaller marshaller = new UnlinkDeveloperIdentityRequestMarshaller(); UnlinkDeveloperIdentityResponseUnmarshaller instance = UnlinkDeveloperIdentityResponseUnmarshaller.Instance; return(Invoke <UnlinkDeveloperIdentityRequest, UnlinkDeveloperIdentityResponse>(request, marshaller, instance)); }
/// <summary> /// Initiates the asynchronous execution of the UnlinkDeveloperIdentity operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the UnlinkDeveloperIdentity 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 <UnlinkDeveloperIdentityResponse> UnlinkDeveloperIdentityAsync(UnlinkDeveloperIdentityRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var marshaller = new UnlinkDeveloperIdentityRequestMarshaller(); var unmarshaller = UnlinkDeveloperIdentityResponseUnmarshaller.Instance; return(InvokeAsync <UnlinkDeveloperIdentityRequest, UnlinkDeveloperIdentityResponse>(request, marshaller, unmarshaller, cancellationToken)); }
public void UnlinkDeveloperIdentityMarshallTest() { var request = InstantiateClassGenerator.Execute <UnlinkDeveloperIdentityRequest>(); var marshaller = new UnlinkDeveloperIdentityRequestMarshaller(); var internalRequest = marshaller.Marshall(request); var jsonRequest = UTF8Encoding.UTF8.GetString(internalRequest.Content); Comparer.CompareObjectToJson <UnlinkDeveloperIdentityRequest>(request, jsonRequest); }
/// <summary> /// Initiates the asynchronous execution of the UnlinkDeveloperIdentity operation. /// <seealso cref="Amazon.CognitoIdentity.IAmazonCognitoIdentity"/> /// </summary> /// <param name="request">Container for the necessary parameters to execute the UnlinkDeveloperIdentity operation.</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>void</returns> public void UnlinkDeveloperIdentityAsync(UnlinkDeveloperIdentityRequest request, AmazonServiceCallback callback, object state) { if (!AmazonInitializer.IsInitialized) { throw new Exception("AWSPrefab is not added to the scene"); } ThreadPool.QueueUserWorkItem(new WaitCallback(delegate { var marshaller = new UnlinkDeveloperIdentityRequestMarshaller(); var unmarshaller = UnlinkDeveloperIdentityResponseUnmarshaller.Instance; Invoke(request, callback, state, marshaller, unmarshaller, signer); })); return; }
public void UnlinkDeveloperIdentityAsync(UnlinkDeveloperIdentityRequest request, AmazonServiceCallback <UnlinkDeveloperIdentityRequest, UnlinkDeveloperIdentityResponse> callback, AsyncOptions options = null) { options = ((options == null) ? new AsyncOptions() : options); UnlinkDeveloperIdentityRequestMarshaller marshaller = new UnlinkDeveloperIdentityRequestMarshaller(); UnlinkDeveloperIdentityResponseUnmarshaller instance = UnlinkDeveloperIdentityResponseUnmarshaller.Instance; Action <AmazonWebServiceRequest, AmazonWebServiceResponse, Exception, AsyncOptions> callbackHelper = null; if (callback != null) { callbackHelper = delegate(AmazonWebServiceRequest req, AmazonWebServiceResponse res, Exception ex, AsyncOptions ao) { AmazonServiceResult <UnlinkDeveloperIdentityRequest, UnlinkDeveloperIdentityResponse> responseObject = new AmazonServiceResult <UnlinkDeveloperIdentityRequest, UnlinkDeveloperIdentityResponse>((UnlinkDeveloperIdentityRequest)req, (UnlinkDeveloperIdentityResponse)res, ex, ao.State); callback(responseObject); }; } BeginInvoke(request, marshaller, instance, options, callbackHelper); }
/// <summary> /// Unlinks a <code>DeveloperUserIdentifier</code> from an existing identity. Unlinked /// developer users will be considered new identities next time they are seen. If, for /// a given Cognito identity, you remove all federated identities as well as the developer /// user identifier, the Cognito identity becomes inaccessible. /// </summary> /// <param name="request">Container for the necessary parameters to execute the UnlinkDeveloperIdentity service method.</param> /// /// <returns>The response from the UnlinkDeveloperIdentity service method, as returned by CognitoIdentity.</returns> /// <exception cref="Amazon.CognitoIdentity.Model.InternalErrorException"> /// Thrown when the service encounters an error during processing the request. /// </exception> /// <exception cref="Amazon.CognitoIdentity.Model.InvalidParameterException"> /// Thrown for missing or bad input parameter(s). /// </exception> /// <exception cref="Amazon.CognitoIdentity.Model.NotAuthorizedException"> /// Thrown when a user is not authorized to access the requested resource. /// </exception> /// <exception cref="Amazon.CognitoIdentity.Model.ResourceConflictException"> /// Thrown when a user tries to use a login which is already linked to another account. /// </exception> /// <exception cref="Amazon.CognitoIdentity.Model.ResourceNotFoundException"> /// Thrown when the requested resource (for example, a dataset or record) does not exist. /// </exception> /// <exception cref="Amazon.CognitoIdentity.Model.TooManyRequestsException"> /// Thrown when a request is throttled. /// </exception> internal UnlinkDeveloperIdentityResponse UnlinkDeveloperIdentity(UnlinkDeveloperIdentityRequest request) { var marshaller = new UnlinkDeveloperIdentityRequestMarshaller(); var unmarshaller = UnlinkDeveloperIdentityResponseUnmarshaller.Instance; return Invoke<UnlinkDeveloperIdentityRequest,UnlinkDeveloperIdentityResponse>(request, marshaller, unmarshaller); }
/// <summary> /// Initiates the asynchronous execution of the UnlinkDeveloperIdentity operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the UnlinkDeveloperIdentity operation on AmazonCognitoIdentityClient.</param> /// <param name="callback">An Action delegate that is invoked when the operation completes.</param> /// <param name="options">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> public void UnlinkDeveloperIdentityAsync(UnlinkDeveloperIdentityRequest request, AmazonServiceCallback<UnlinkDeveloperIdentityRequest, UnlinkDeveloperIdentityResponse> callback, AsyncOptions options = null) { options = options == null?new AsyncOptions():options; var marshaller = new UnlinkDeveloperIdentityRequestMarshaller(); var unmarshaller = UnlinkDeveloperIdentityResponseUnmarshaller.Instance; Action<AmazonWebServiceRequest, AmazonWebServiceResponse, Exception, AsyncOptions> callbackHelper = null; if(callback !=null ) callbackHelper = (AmazonWebServiceRequest req, AmazonWebServiceResponse res, Exception ex, AsyncOptions ao) => { AmazonServiceResult<UnlinkDeveloperIdentityRequest,UnlinkDeveloperIdentityResponse> responseObject = new AmazonServiceResult<UnlinkDeveloperIdentityRequest,UnlinkDeveloperIdentityResponse>((UnlinkDeveloperIdentityRequest)req, (UnlinkDeveloperIdentityResponse)res, ex , ao.State); callback(responseObject); }; BeginInvoke<UnlinkDeveloperIdentityRequest>(request, marshaller, unmarshaller, options, callbackHelper); }
/// <summary> /// Initiates the asynchronous execution of the UnlinkDeveloperIdentity operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the UnlinkDeveloperIdentity 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<UnlinkDeveloperIdentityResponse> UnlinkDeveloperIdentityAsync(UnlinkDeveloperIdentityRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var marshaller = new UnlinkDeveloperIdentityRequestMarshaller(); var unmarshaller = UnlinkDeveloperIdentityResponseUnmarshaller.Instance; return InvokeAsync<UnlinkDeveloperIdentityRequest,UnlinkDeveloperIdentityResponse>(request, marshaller, unmarshaller, cancellationToken); }
public void UnlinkDeveloperIdentityMarshallTest() { var request = InstantiateClassGenerator.Execute<UnlinkDeveloperIdentityRequest>(); var marshaller = new UnlinkDeveloperIdentityRequestMarshaller(); var internalRequest = marshaller.Marshall(request); var jsonRequest = UTF8Encoding.UTF8.GetString(internalRequest.Content); Comparer.CompareObjectToJson<UnlinkDeveloperIdentityRequest>(request,jsonRequest); }
/// <summary> /// Initiates the asynchronous execution of the UnlinkDeveloperIdentity operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the UnlinkDeveloperIdentity operation on AmazonCognitoIdentityClient.</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 EndUnlinkDeveloperIdentity /// operation.</returns> public IAsyncResult BeginUnlinkDeveloperIdentity(UnlinkDeveloperIdentityRequest request, AsyncCallback callback, object state) { var marshaller = new UnlinkDeveloperIdentityRequestMarshaller(); var unmarshaller = UnlinkDeveloperIdentityResponseUnmarshaller.Instance; return BeginInvoke<UnlinkDeveloperIdentityRequest>(request, marshaller, unmarshaller, callback, state); }