public object Execute(ExecutorContext context) { var cmdletContext = context as CmdletContext; // create request var request = new Amazon.S3.Model.PutCORSConfigurationRequest(); if (cmdletContext.BucketName != null) { request.BucketName = cmdletContext.BucketName; } // populate Configuration var requestConfigurationIsNull = true; request.Configuration = new Amazon.S3.Model.CORSConfiguration(); List <Amazon.S3.Model.CORSRule> requestConfiguration_configuration_Rule = null; if (cmdletContext.Configuration_Rule != null) { requestConfiguration_configuration_Rule = cmdletContext.Configuration_Rule; } if (requestConfiguration_configuration_Rule != null) { request.Configuration.Rules = requestConfiguration_configuration_Rule; requestConfigurationIsNull = false; } // determine if request.Configuration should be set to null if (requestConfigurationIsNull) { request.Configuration = 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); }
/// <summary> /// Initiates the asynchronous execution of the PutCORSConfiguration operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the PutCORSConfiguration 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<PutCORSConfigurationResponse> PutCORSConfigurationAsync(PutCORSConfigurationRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var marshaller = new PutCORSConfigurationRequestMarshaller(); var unmarshaller = PutCORSConfigurationResponseUnmarshaller.Instance; return InvokeAsync<PutCORSConfigurationRequest,PutCORSConfigurationResponse>(request, marshaller, unmarshaller, cancellationToken); }
internal PutCORSConfigurationResponse PutCORSConfiguration(PutCORSConfigurationRequest request) { var marshaller = new PutCORSConfigurationRequestMarshaller(); var unmarshaller = PutCORSConfigurationResponseUnmarshaller.Instance; return Invoke<PutCORSConfigurationRequest,PutCORSConfigurationResponse>(request, marshaller, unmarshaller); }
IAsyncResult invokePutCORSConfiguration(PutCORSConfigurationRequest putCORSConfigurationRequest, AsyncCallback callback, object state, bool synchronized) { IRequest irequest = new PutCORSConfigurationRequestMarshaller().Marshall(putCORSConfigurationRequest); var unmarshaller = PutCORSConfigurationResponseUnmarshaller.GetInstance(); AsyncResult result = new AsyncResult(irequest, callback, state, synchronized, signer, unmarshaller); Invoke(result); return result; }
/// <summary> /// Initiates the asynchronous execution of the PutCORSConfiguration operation. /// <seealso cref="Amazon.S3.IAmazonS3.PutCORSConfiguration"/> /// </summary> /// /// <param name="putCORSConfigurationRequest">Container for the necessary parameters to execute the PutCORSConfiguration operation on AmazonS3.</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 BeginPutCORSConfiguration(PutCORSConfigurationRequest putCORSConfigurationRequest, AsyncCallback callback, object state) { return invokePutCORSConfiguration(putCORSConfigurationRequest, callback, state, false); }
/// <summary> /// <para>Sets the cors configuration for a bucket.</para> /// </summary> /// /// <param name="putCORSConfigurationRequest">Container for the necessary parameters to execute the PutCORSConfiguration service method on AmazonS3.</param> /// public PutCORSConfigurationResponse PutCORSConfiguration(PutCORSConfigurationRequest putCORSConfigurationRequest) { IAsyncResult asyncResult = invokePutCORSConfiguration(putCORSConfigurationRequest, null, null, true); return EndPutCORSConfiguration(asyncResult); }
private Amazon.S3.Model.PutCORSConfigurationResponse CallAWSServiceOperation(IAmazonS3 client, Amazon.S3.Model.PutCORSConfigurationRequest request) { Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "Amazon Simple Storage Service (S3)", "PutCORSConfiguration"); try { #if DESKTOP return(client.PutCORSConfiguration(request)); #elif CORECLR return(client.PutCORSConfigurationAsync(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; } }
/// <summary> /// Initiates the asynchronous execution of the PutCORSConfiguration operation. /// This API is supported only when AWSConfigs.HttpClient is set to AWSConfigs.HttpClientOption.UnityWebRequest, the default value for this configuration option is AWSConfigs.HttpClientOption.UnityWWW /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the PutCORSConfiguration operation on AmazonS3Client.</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 PutCORSConfigurationAsync(PutCORSConfigurationRequest request, AmazonServiceCallback<PutCORSConfigurationRequest, PutCORSConfigurationResponse> callback, AsyncOptions options = null) { if (AWSConfigs.HttpClient == AWSConfigs.HttpClientOption.UnityWWW) { throw new InvalidOperationException("PutCORSConfiguration is only allowed with AWSConfigs.HttpClientOption.UnityWebRequest API option"); } options = options == null?new AsyncOptions():options; var marshaller = new PutCORSConfigurationRequestMarshaller(); var unmarshaller = PutCORSConfigurationResponseUnmarshaller.Instance; Action<AmazonWebServiceRequest, AmazonWebServiceResponse, Exception, AsyncOptions> callbackHelper = null; if(callback !=null ) callbackHelper = (AmazonWebServiceRequest req, AmazonWebServiceResponse res, Exception ex, AsyncOptions ao) => { AmazonServiceResult<PutCORSConfigurationRequest,PutCORSConfigurationResponse> responseObject = new AmazonServiceResult<PutCORSConfigurationRequest,PutCORSConfigurationResponse>((PutCORSConfigurationRequest)req, (PutCORSConfigurationResponse)res, ex , ao.State); callback(responseObject); }; BeginInvoke<PutCORSConfigurationRequest>(request, marshaller, unmarshaller, options, callbackHelper); }
/// <summary> /// Sets the cors configuration for a bucket. /// This API is supported only when AWSConfigs.HttpClient is set to AWSConfigs.HttpClientOption.UnityWebRequest, the default value of this configuration option is AWSConfigs.HttpClientOption.UnityWWW /// </summary> /// <param name="bucketName">A property of PutCORSConfigurationRequest used to execute the PutCORSConfiguration service method.</param> /// <param name="configuration">A property of PutCORSConfigurationRequest used to execute the PutCORSConfiguration service method.</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> /// /// <returns>The response from the PutCORSConfiguration service method, as returned by S3.</returns> public void PutCORSConfigurationAsync(string bucketName, CORSConfiguration configuration, AmazonServiceCallback<PutCORSConfigurationRequest, PutCORSConfigurationResponse> callback, AsyncOptions options = null) { var request = new PutCORSConfigurationRequest(); request.BucketName = bucketName; request.Configuration = configuration; PutCORSConfigurationAsync(request, callback, options); }
/// <summary> /// Sets the cors configuration for a bucket. /// </summary> /// <param name="bucketName">A property of PutCORSConfigurationRequest used to execute the PutCORSConfiguration service method.</param> /// <param name="configuration">A property of PutCORSConfigurationRequest used to execute the PutCORSConfiguration service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the PutCORSConfiguration service method, as returned by S3.</returns> public Task<PutCORSConfigurationResponse> PutCORSConfigurationAsync(string bucketName, CORSConfiguration configuration, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var request = new PutCORSConfigurationRequest(); request.BucketName = bucketName; request.Configuration = configuration; return PutCORSConfigurationAsync(request, cancellationToken); }
/// <summary> /// Sets the cors configuration for a bucket. /// </summary> /// <param name="bucketName">A property of PutCORSConfigurationRequest used to execute the PutCORSConfiguration service method.</param> /// <param name="configuration">A property of PutCORSConfigurationRequest used to execute the PutCORSConfiguration service method.</param> /// /// <returns>The response from the PutCORSConfiguration service method, as returned by S3.</returns> public PutCORSConfigurationResponse PutCORSConfiguration(string bucketName, CORSConfiguration configuration) { var request = new PutCORSConfigurationRequest(); request.BucketName = bucketName; request.Configuration = configuration; return PutCORSConfiguration(request); }
/// <summary> /// Initiates the asynchronous execution of the PutCORSConfiguration operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the PutCORSConfiguration operation on AmazonS3Client.</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 EndPutCORSConfiguration /// operation.</returns> public IAsyncResult BeginPutCORSConfiguration(PutCORSConfigurationRequest request, AsyncCallback callback, object state) { var marshaller = new PutCORSConfigurationRequestMarshaller(); var unmarshaller = PutCORSConfigurationResponseUnmarshaller.Instance; return BeginInvoke<PutCORSConfigurationRequest>(request, marshaller, unmarshaller, callback, state); }
/// <summary> /// Initiates the asynchronous execution of the PutCORSConfiguration operation. /// <seealso cref="Amazon.S3.IAmazonS3.PutCORSConfiguration"/> /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the PutCORSConfiguration 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<PutCORSConfigurationResponse> PutCORSConfigurationAsync(PutCORSConfigurationRequest request, CancellationToken cancellationToken = default(CancellationToken)) { var marshaller = new PutCORSConfigurationRequestMarshaller(); var unmarshaller = PutCORSConfigurationResponseUnmarshaller.GetInstance(); return Invoke<IRequest, PutCORSConfigurationRequest, PutCORSConfigurationResponse>(request, marshaller, unmarshaller, signer, cancellationToken); }
/// <summary> /// <para>Sets the cors configuration for a bucket.</para> /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the PutCORSConfiguration service method on AmazonS3.</param> public PutCORSConfigurationResponse PutCORSConfiguration(PutCORSConfigurationRequest request) { var task = PutCORSConfigurationAsync(request); try { return task.Result; } catch(AggregateException e) { throw e.InnerException; } }
/// <summary> /// <para>Sets the cors configuration for a bucket.</para> /// </summary> /// /// <param name="putCORSConfigurationRequest">Container for the necessary parameters to execute the PutCORSConfiguration service method on AmazonS3.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> public async Task<PutCORSConfigurationResponse> PutCORSConfigurationAsync(PutCORSConfigurationRequest putCORSConfigurationRequest, CancellationToken cancellationToken = default(CancellationToken)) { var marshaller = new PutCORSConfigurationRequestMarshaller(); var unmarshaller = PutCORSConfigurationResponseUnmarshaller.GetInstance(); var response = await Invoke<IRequest, PutCORSConfigurationRequest, PutCORSConfigurationResponse>(putCORSConfigurationRequest, marshaller, unmarshaller, signer, cancellationToken) .ConfigureAwait(continueOnCapturedContext: false); return response; }
/// <summary> /// <para>Sets the cors configuration for a bucket.</para> /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the PutCORSConfiguration service method on AmazonS3.</param> public PutCORSConfigurationResponse PutCORSConfiguration(PutCORSConfigurationRequest request) { var task = PutCORSConfigurationAsync(request); try { return task.Result; } catch(AggregateException e) { ExceptionDispatchInfo.Capture(e.InnerException).Throw(); return null; } }