Deletes the specified policy associated with the specified User.
public static void DeleteUser(this AmazonIdentityManagementServiceClient client, string userName) { try { var userPolicies = client.ListUserPolicies(new ListUserPoliciesRequest { UserName = userName }).PolicyNames; foreach (var policy in userPolicies) { var request = new DeleteUserPolicyRequest { UserName = userName, PolicyName = policy }; IgnoringNoSuchEntity(() => { client.DeleteUserPolicy(request); }); } } catch (NoSuchEntityException) { return; } var keys = client.ListAccessKeys(new ListAccessKeysRequest { UserName = userName }); foreach (var key in keys.AccessKeyMetadata) { var request = new DeleteAccessKeyRequest { UserName = userName, AccessKeyId = key.AccessKeyId }; IgnoringNoSuchEntity(() => { client.DeleteAccessKey(request); }); } IgnoringNoSuchEntity(() => client.DeleteUser(new DeleteUserRequest { UserName = userName })); }
public object Execute(ExecutorContext context) { var cmdletContext = context as CmdletContext; // create request var request = new Amazon.IdentityManagement.Model.DeleteUserPolicyRequest(); if (cmdletContext.PolicyName != null) { request.PolicyName = cmdletContext.PolicyName; } if (cmdletContext.UserName != null) { request.UserName = cmdletContext.UserName; } 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); }
/// <summary> /// Initiates the asynchronous execution of the DeleteUserPolicy operation. /// <seealso cref="Amazon.IdentityManagement.IAmazonIdentityManagementService"/> /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the DeleteUserPolicy 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<DeleteUserPolicyResponse> DeleteUserPolicyAsync(DeleteUserPolicyRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var marshaller = new DeleteUserPolicyRequestMarshaller(); var unmarshaller = DeleteUserPolicyResponseUnmarshaller.Instance; return InvokeAsync<DeleteUserPolicyRequest,DeleteUserPolicyResponse>(request, marshaller, unmarshaller, cancellationToken); }
internal DeleteUserPolicyResponse DeleteUserPolicy(DeleteUserPolicyRequest request) { var marshaller = new DeleteUserPolicyRequestMarshaller(); var unmarshaller = DeleteUserPolicyResponseUnmarshaller.Instance; return Invoke<DeleteUserPolicyRequest,DeleteUserPolicyResponse>(request, marshaller, unmarshaller); }
/// <summary> /// Initiates the asynchronous execution of the DeleteUserPolicy operation. /// <seealso cref="Amazon.IdentityManagement.AmazonIdentityManagementService.DeleteUserPolicy"/> /// </summary> /// /// <param name="deleteUserPolicyRequest">Container for the necessary parameters to execute the DeleteUserPolicy operation on /// AmazonIdentityManagementService.</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> public IAsyncResult BeginDeleteUserPolicy(DeleteUserPolicyRequest deleteUserPolicyRequest, AsyncCallback callback, object state) { return invokeDeleteUserPolicy(deleteUserPolicyRequest, callback, state, false); }
IAsyncResult invokeDeleteUserPolicy(DeleteUserPolicyRequest deleteUserPolicyRequest, AsyncCallback callback, object state, bool synchronized) { IRequest irequest = new DeleteUserPolicyRequestMarshaller().Marshall(deleteUserPolicyRequest); var unmarshaller = DeleteUserPolicyResponseUnmarshaller.GetInstance(); AsyncResult result = new AsyncResult(irequest, callback, state, synchronized, signer, unmarshaller); Invoke(result); return result; }
/// <summary> /// <para>Deletes the specified policy associated with the specified user.</para> /// </summary> /// /// <param name="deleteUserPolicyRequest">Container for the necessary parameters to execute the DeleteUserPolicy service method on /// AmazonIdentityManagementService.</param> /// /// <exception cref="NoSuchEntityException"/> public DeleteUserPolicyResponse DeleteUserPolicy(DeleteUserPolicyRequest deleteUserPolicyRequest) { IAsyncResult asyncResult = invokeDeleteUserPolicy(deleteUserPolicyRequest, null, null, true); return EndDeleteUserPolicy(asyncResult); }
/// <summary> /// Initiates the asynchronous execution of the DeleteUserPolicy operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the DeleteUserPolicy operation on AmazonIdentityManagementServiceClient.</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 EndDeleteUserPolicy /// operation.</returns> public IAsyncResult BeginDeleteUserPolicy(DeleteUserPolicyRequest request, AsyncCallback callback, object state) { var marshaller = new DeleteUserPolicyRequestMarshaller(); var unmarshaller = DeleteUserPolicyResponseUnmarshaller.Instance; return BeginInvoke<DeleteUserPolicyRequest>(request, marshaller, unmarshaller, callback, state); }
/// <summary> /// <para>Deletes the specified policy associated with the specified /// User.</para> /// </summary> /// /// <param name="deleteUserPolicyRequest">Container for the necessary /// parameters to execute the DeleteUserPolicy service method on /// AmazonIdentityManagementService.</param> /// /// <exception cref="NoSuchEntityException"/> public DeleteUserPolicyResponse DeleteUserPolicy(DeleteUserPolicyRequest deleteUserPolicyRequest) { IRequest<DeleteUserPolicyRequest> request = new DeleteUserPolicyRequestMarshaller().Marshall(deleteUserPolicyRequest); DeleteUserPolicyResponse response = Invoke<DeleteUserPolicyRequest, DeleteUserPolicyResponse> (request, this.signer, DeleteUserPolicyResponseUnmarshaller.GetInstance()); return response; }
/// <summary> /// Initiates the asynchronous execution of the DeleteUserPolicy operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the DeleteUserPolicy operation on AmazonIdentityManagementServiceClient.</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 DeleteUserPolicyAsync(DeleteUserPolicyRequest request, AmazonServiceCallback<DeleteUserPolicyRequest, DeleteUserPolicyResponse> callback, AsyncOptions options = null) { options = options == null?new AsyncOptions():options; var marshaller = new DeleteUserPolicyRequestMarshaller(); var unmarshaller = DeleteUserPolicyResponseUnmarshaller.Instance; Action<AmazonWebServiceRequest, AmazonWebServiceResponse, Exception, AsyncOptions> callbackHelper = null; if(callback !=null ) callbackHelper = (AmazonWebServiceRequest req, AmazonWebServiceResponse res, Exception ex, AsyncOptions ao) => { AmazonServiceResult<DeleteUserPolicyRequest,DeleteUserPolicyResponse> responseObject = new AmazonServiceResult<DeleteUserPolicyRequest,DeleteUserPolicyResponse>((DeleteUserPolicyRequest)req, (DeleteUserPolicyResponse)res, ex , ao.State); callback(responseObject); }; BeginInvoke<DeleteUserPolicyRequest>(request, marshaller, unmarshaller, options, callbackHelper); }
/// <summary> /// Initiates the asynchronous execution of the DeleteUserPolicy operation. /// <seealso cref="Amazon.IdentityManagement.IAmazonIdentityManagementService.DeleteUserPolicy"/> /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the DeleteUserPolicy 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 async Task<DeleteUserPolicyResponse> DeleteUserPolicyAsync(DeleteUserPolicyRequest request, CancellationToken cancellationToken = default(CancellationToken)) { var marshaller = new DeleteUserPolicyRequestMarshaller(); var unmarshaller = DeleteUserPolicyResponseUnmarshaller.GetInstance(); var response = await Invoke<IRequest, DeleteUserPolicyRequest, DeleteUserPolicyResponse>(request, marshaller, unmarshaller, signer, cancellationToken) .ConfigureAwait(continueOnCapturedContext: false); return response; }
/// <summary> /// <para>Deletes the specified policy associated with the specified user.</para> /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the DeleteUserPolicy service method on /// AmazonIdentityManagementService.</param> /// /// <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException" /> /// <exception cref="T:Amazon.IdentityManagement.Model.LimitExceededException" /> public DeleteUserPolicyResponse DeleteUserPolicy(DeleteUserPolicyRequest request) { var task = DeleteUserPolicyAsync(request); try { return task.Result; } catch(AggregateException e) { throw e.InnerException; } }
/// <summary> /// <para>Deletes the specified policy associated with the specified user.</para> /// </summary> /// /// <param name="deleteUserPolicyRequest">Container for the necessary parameters to execute the DeleteUserPolicy service method on /// AmazonIdentityManagementService.</param> /// /// <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException" /> /// <exception cref="T:Amazon.IdentityManagement.Model.LimitExceededException" /> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> public Task<DeleteUserPolicyResponse> DeleteUserPolicyAsync(DeleteUserPolicyRequest deleteUserPolicyRequest, CancellationToken cancellationToken = default(CancellationToken)) { var marshaller = new DeleteUserPolicyRequestMarshaller(); var unmarshaller = DeleteUserPolicyResponseUnmarshaller.GetInstance(); return Invoke<IRequest, DeleteUserPolicyRequest, DeleteUserPolicyResponse>(deleteUserPolicyRequest, marshaller, unmarshaller, signer, cancellationToken); }
internal DeleteUserPolicyResponse DeleteUserPolicy(DeleteUserPolicyRequest request) { var task = DeleteUserPolicyAsync(request); try { return task.Result; } catch(AggregateException e) { ExceptionDispatchInfo.Capture(e.InnerException).Throw(); return null; } }
private Amazon.IdentityManagement.Model.DeleteUserPolicyResponse CallAWSServiceOperation(IAmazonIdentityManagementService client, Amazon.IdentityManagement.Model.DeleteUserPolicyRequest request) { Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "AWS Identity and Access Management", "DeleteUserPolicy"); try { #if DESKTOP return(client.DeleteUserPolicy(request)); #elif CORECLR return(client.DeleteUserPolicyAsync(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; } }
IAsyncResult invokeDeleteUserPolicy(DeleteUserPolicyRequest request, AsyncCallback callback, object state, bool synchronized) { var marshaller = new DeleteUserPolicyRequestMarshaller(); var unmarshaller = DeleteUserPolicyResponseUnmarshaller.Instance; return Invoke(request, callback, state, synchronized, marshaller, unmarshaller, signer); }