internal CreateKeyResponse CreateKey(CreateKeyRequest request) { var marshaller = new CreateKeyRequestMarshaller(); var unmarshaller = CreateKeyResponseUnmarshaller.Instance; return(Invoke <CreateKeyRequest, CreateKeyResponse>(request, marshaller, unmarshaller)); }
public void CreateKeyMarshallTest() { var request = InstantiateClassGenerator.Execute <CreateKeyRequest>(); var marshaller = new CreateKeyRequestMarshaller(); var internalRequest = marshaller.Marshall(request); var jsonRequest = UTF8Encoding.UTF8.GetString(internalRequest.Content); Comparer.CompareObjectToJson <CreateKeyRequest>(request, jsonRequest); var webResponse = new WebResponseData { Headers = { { "x-amzn-RequestId", Guid.NewGuid().ToString() }, { "x-amz-crc32", "0" } } }; var jsonResponse = new JsonSampleGenerator(service_model, service_model.FindOperation("CreateKey").ResponseStructure).Execute(); webResponse.Headers.Add("Content-Length", UTF8Encoding.UTF8.GetBytes(jsonResponse).Length.ToString()); UnmarshallerContext context = new JsonUnmarshallerContext(Utils.CreateStreamFromString(jsonResponse), false, webResponse); var response = CreateKeyResponseUnmarshaller.Instance.Unmarshall(context) as CreateKeyResponse; InstantiateClassGenerator.ValidateObjectFullyInstantiated(response); }
/// <summary> /// Initiates the asynchronous execution of the CreateKey operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the CreateKey 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 <CreateKeyResponse> CreateKeyAsync(CreateKeyRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var marshaller = new CreateKeyRequestMarshaller(); var unmarshaller = CreateKeyResponseUnmarshaller.Instance; return(InvokeAsync <CreateKeyRequest, CreateKeyResponse>(request, marshaller, unmarshaller, cancellationToken)); }
/// <summary> /// Initiates the asynchronous execution of the CreateKey operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the CreateKey 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<CreateKeyResponse> CreateKeyAsync(CreateKeyRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var marshaller = new CreateKeyRequestMarshaller(); var unmarshaller = CreateKeyResponseUnmarshaller.Instance; return InvokeAsync<CreateKeyRequest,CreateKeyResponse>(request, marshaller, unmarshaller, cancellationToken); }
/// <summary> /// Creates a customer master key. Customer master keys can be used to encrypt small amounts /// of data (less than 4K) directly, but they are most commonly used to encrypt or envelope /// data keys that are then used to encrypt customer data. For more information about /// data keys, see <a>GenerateDataKey</a> and <a>GenerateDataKeyWithoutPlaintext</a>. /// </summary> /// <param name="request">Container for the necessary parameters to execute the CreateKey service method.</param> /// /// <returns>The response from the CreateKey service method, as returned by KeyManagementService.</returns> /// <exception cref="Amazon.KeyManagementService.Model.DependencyTimeoutException"> /// The system timed out while trying to fulfill the request. /// </exception> /// <exception cref="Amazon.KeyManagementService.Model.InvalidArnException"> /// The request was rejected because a specified ARN was not valid. /// </exception> /// <exception cref="Amazon.KeyManagementService.Model.KMSInternalException"> /// The request was rejected because an internal exception occurred. This error can be /// retried. /// </exception> /// <exception cref="Amazon.KeyManagementService.Model.LimitExceededException"> /// The request was rejected because a quota was exceeded. /// </exception> /// <exception cref="Amazon.KeyManagementService.Model.MalformedPolicyDocumentException"> /// The request was rejected because the specified policy is not syntactically or semantically /// correct. /// </exception> /// <exception cref="Amazon.KeyManagementService.Model.UnsupportedOperationException"> /// The request was rejected because a specified parameter is not supported. /// </exception> public CreateKeyResponse CreateKey(CreateKeyRequest request) { var marshaller = new CreateKeyRequestMarshaller(); var unmarshaller = CreateKeyResponseUnmarshaller.Instance; return Invoke<CreateKeyRequest,CreateKeyResponse>(request, marshaller, unmarshaller); }
public void CreateKeyMarshallTest() { var request = InstantiateClassGenerator.Execute<CreateKeyRequest>(); var marshaller = new CreateKeyRequestMarshaller(); var internalRequest = marshaller.Marshall(request); var jsonRequest = UTF8Encoding.UTF8.GetString(internalRequest.Content); Comparer.CompareObjectToJson<CreateKeyRequest>(request,jsonRequest); var webResponse = new WebResponseData { Headers = { {"x-amzn-RequestId", Guid.NewGuid().ToString()}, {"x-amz-crc32","0"} } }; var jsonResponse = new JsonSampleGenerator(service_model, service_model.FindOperation("CreateKey").ResponseStructure).Execute(); webResponse.Headers.Add("Content-Length", UTF8Encoding.UTF8.GetBytes(jsonResponse).Length.ToString()); UnmarshallerContext context = new JsonUnmarshallerContext(Utils.CreateStreamFromString(jsonResponse), false, webResponse); var response = CreateKeyResponseUnmarshaller.Instance.Unmarshall(context) as CreateKeyResponse; InstantiateClassGenerator.ValidateObjectFullyInstantiated(response); }
/// <summary> /// Initiates the asynchronous execution of the CreateKey operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the CreateKey operation on AmazonKeyManagementServiceClient.</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 EndCreateKey /// operation.</returns> public IAsyncResult BeginCreateKey(CreateKeyRequest request, AsyncCallback callback, object state) { var marshaller = new CreateKeyRequestMarshaller(); var unmarshaller = CreateKeyResponseUnmarshaller.Instance; return BeginInvoke<CreateKeyRequest>(request, marshaller, unmarshaller, callback, state); }