示例#1
0
        internal PutBucketLoggingResponse PutBucketLogging(PutBucketLoggingRequest request)
        {
            var marshaller = new PutBucketLoggingRequestMarshaller();
            var unmarshaller = PutBucketLoggingResponseUnmarshaller.Instance;

            return Invoke<PutBucketLoggingRequest,PutBucketLoggingResponse>(request, marshaller, unmarshaller);
        }
示例#2
0
        /// <summary>
        /// Initiates the asynchronous execution of the PutBucketLogging operation.
        /// </summary>
        /// 
        /// <param name="request">Container for the necessary parameters to execute the PutBucketLogging 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<PutBucketLoggingResponse> PutBucketLoggingAsync(PutBucketLoggingRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
        {
            var marshaller = new PutBucketLoggingRequestMarshaller();
            var unmarshaller = PutBucketLoggingResponseUnmarshaller.Instance;

            return InvokeAsync<PutBucketLoggingRequest,PutBucketLoggingResponse>(request, marshaller, 
                unmarshaller, cancellationToken);
        }
 /// <summary>
 /// Initiates the asynchronous execution of the PutBucketLogging operation.
 /// <seealso cref="Amazon.S3.IAmazonS3.PutBucketLogging"/>
 /// </summary>
 /// 
 /// <param name="putBucketLoggingRequest">Container for the necessary parameters to execute the PutBucketLogging 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 BeginPutBucketLogging(PutBucketLoggingRequest putBucketLoggingRequest, AsyncCallback callback, object state)
 {
     return invokePutBucketLogging(putBucketLoggingRequest, callback, state, false);
 }
 IAsyncResult invokePutBucketLogging(PutBucketLoggingRequest putBucketLoggingRequest, AsyncCallback callback, object state, bool synchronized)
 {
     IRequest irequest = new PutBucketLoggingRequestMarshaller().Marshall(putBucketLoggingRequest);
     var unmarshaller = PutBucketLoggingResponseUnmarshaller.GetInstance();
     AsyncResult result = new AsyncResult(irequest, callback, state, synchronized, signer, unmarshaller);
     Invoke(result);
     return result;
 }
示例#5
0
 /// <summary>
 /// Initiates the asynchronous execution of the PutBucketLogging 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 PutBucketLogging 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 PutBucketLoggingAsync(PutBucketLoggingRequest request, AmazonServiceCallback<PutBucketLoggingRequest, PutBucketLoggingResponse> callback, AsyncOptions options = null)
 {
     if (AWSConfigs.HttpClient == AWSConfigs.HttpClientOption.UnityWWW)
     {
         throw new InvalidOperationException("PutBucketLogging is only allowed with AWSConfigs.HttpClientOption.UnityWebRequest API option");
     }
     options = options == null?new AsyncOptions():options;
     var marshaller = new PutBucketLoggingRequestMarshaller();
     var unmarshaller = PutBucketLoggingResponseUnmarshaller.Instance;
     Action<AmazonWebServiceRequest, AmazonWebServiceResponse, Exception, AsyncOptions> callbackHelper = null;
     if(callback !=null )
         callbackHelper = (AmazonWebServiceRequest req, AmazonWebServiceResponse res, Exception ex, AsyncOptions ao) => { 
             AmazonServiceResult<PutBucketLoggingRequest,PutBucketLoggingResponse> responseObject 
                     = new AmazonServiceResult<PutBucketLoggingRequest,PutBucketLoggingResponse>((PutBucketLoggingRequest)req, (PutBucketLoggingResponse)res, ex , ao.State);    
                 callback(responseObject); 
         };
     BeginInvoke<PutBucketLoggingRequest>(request, marshaller, unmarshaller, options, callbackHelper);
 }
 /// <summary>
 /// <para>Set the logging parameters for a bucket and to specify permissions for who can view and modify the logging parameters. To set the
 /// logging status of a bucket, you must be the bucket owner.</para>
 /// </summary>
 /// 
 /// <param name="putBucketLoggingRequest">Container for the necessary parameters to execute the PutBucketLogging service method on
 ///          AmazonS3.</param>
 /// 
 public PutBucketLoggingResponse PutBucketLogging(PutBucketLoggingRequest putBucketLoggingRequest)
 {
     IAsyncResult asyncResult = invokePutBucketLogging(putBucketLoggingRequest, null, null, true);
     return EndPutBucketLogging(asyncResult);
 }
        public object Execute(ExecutorContext context)
        {
            var cmdletContext = context as CmdletContext;
            // create request
            var request = new Amazon.S3.Model.PutBucketLoggingRequest();

            if (cmdletContext.BucketName != null)
            {
                request.BucketName = cmdletContext.BucketName;
            }

            // populate LoggingConfig
            var requestLoggingConfigIsNull = true;

            request.LoggingConfig = new Amazon.S3.Model.S3BucketLoggingConfig();
            System.String requestLoggingConfig_loggingConfig_TargetBucketName = null;
            if (cmdletContext.LoggingConfig_TargetBucketName != null)
            {
                requestLoggingConfig_loggingConfig_TargetBucketName = cmdletContext.LoggingConfig_TargetBucketName;
            }
            if (requestLoggingConfig_loggingConfig_TargetBucketName != null)
            {
                request.LoggingConfig.TargetBucketName = requestLoggingConfig_loggingConfig_TargetBucketName;
                requestLoggingConfigIsNull             = false;
            }
            List <Amazon.S3.Model.S3Grant> requestLoggingConfig_loggingConfig_Grant = null;

            if (cmdletContext.LoggingConfig_Grant != null)
            {
                requestLoggingConfig_loggingConfig_Grant = cmdletContext.LoggingConfig_Grant;
            }
            if (requestLoggingConfig_loggingConfig_Grant != null)
            {
                request.LoggingConfig.Grants = requestLoggingConfig_loggingConfig_Grant;
                requestLoggingConfigIsNull   = false;
            }
            System.String requestLoggingConfig_loggingConfig_TargetPrefix = null;
            if (cmdletContext.LoggingConfig_TargetPrefix != null)
            {
                requestLoggingConfig_loggingConfig_TargetPrefix = cmdletContext.LoggingConfig_TargetPrefix;
            }
            if (requestLoggingConfig_loggingConfig_TargetPrefix != null)
            {
                request.LoggingConfig.TargetPrefix = requestLoggingConfig_loggingConfig_TargetPrefix;
                requestLoggingConfigIsNull         = false;
            }
            // determine if request.LoggingConfig should be set to null
            if (requestLoggingConfigIsNull)
            {
                request.LoggingConfig = null;
            }
            if (cmdletContext.ExpectedBucketOwner != null)
            {
                request.ExpectedBucketOwner = cmdletContext.ExpectedBucketOwner;
            }

            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);
        }
 private Amazon.S3.Model.PutBucketLoggingResponse CallAWSServiceOperation(IAmazonS3 client, Amazon.S3.Model.PutBucketLoggingRequest request)
 {
     Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "Amazon Simple Storage Service (S3)", "PutBucketLogging");
     try
     {
         #if DESKTOP
         return(client.PutBucketLogging(request));
         #elif CORECLR
         return(client.PutBucketLoggingAsync(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 PutBucketLogging operation.
        /// </summary>
        /// 
        /// <param name="request">Container for the necessary parameters to execute the PutBucketLogging 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 EndPutBucketLogging
        ///         operation.</returns>
        public IAsyncResult BeginPutBucketLogging(PutBucketLoggingRequest request, AsyncCallback callback, object state)
        {
            var marshaller = new PutBucketLoggingRequestMarshaller();
            var unmarshaller = PutBucketLoggingResponseUnmarshaller.Instance;

            return BeginInvoke<PutBucketLoggingRequest>(request, marshaller, unmarshaller,
                callback, state);
        }
示例#10
0
        /// <summary>
        /// Initiates the asynchronous execution of the PutBucketLogging operation.
        /// <seealso cref="Amazon.S3.IAmazonS3.PutBucketLogging"/>
        /// </summary>
        /// 
        /// <param name="request">Container for the necessary parameters to execute the PutBucketLogging 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<PutBucketLoggingResponse> PutBucketLoggingAsync(PutBucketLoggingRequest request, CancellationToken cancellationToken = default(CancellationToken))
        {
            var marshaller = new PutBucketLoggingRequestMarshaller();
            var unmarshaller = PutBucketLoggingResponseUnmarshaller.GetInstance();
            return Invoke<IRequest, PutBucketLoggingRequest, PutBucketLoggingResponse>(request, marshaller, unmarshaller, signer, cancellationToken);
        }
示例#11
0
        /// <summary>
        /// <para>Set the logging parameters for a bucket and to specify permissions for who can view and modify the logging parameters. To set the
        /// logging status of a bucket, you must be the bucket owner.</para>
        /// </summary>
        /// 
        /// <param name="request">Container for the necessary parameters to execute the PutBucketLogging service method on
        /// AmazonS3.</param>
		public PutBucketLoggingResponse PutBucketLogging(PutBucketLoggingRequest request)
        {
            var task = PutBucketLoggingAsync(request);
            try
            {
                return task.Result;
            }
            catch(AggregateException e)
            {
                throw e.InnerException;
            }
        }
示例#12
0
        /// <summary>
        /// <para>Set the logging parameters for a bucket and to specify permissions for who can view and modify the logging parameters. To set the
        /// logging status of a bucket, you must be the bucket owner.</para>
        /// </summary>
        /// 
        /// <param name="putBucketLoggingRequest">Container for the necessary parameters to execute the PutBucketLogging 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<PutBucketLoggingResponse> PutBucketLoggingAsync(PutBucketLoggingRequest putBucketLoggingRequest, CancellationToken cancellationToken = default(CancellationToken))
        {
            var marshaller = new PutBucketLoggingRequestMarshaller();
            var unmarshaller = PutBucketLoggingResponseUnmarshaller.GetInstance();
            var response = await Invoke<IRequest, PutBucketLoggingRequest, PutBucketLoggingResponse>(putBucketLoggingRequest, marshaller, unmarshaller, signer, cancellationToken)
                .ConfigureAwait(continueOnCapturedContext: false);
            return response;
        }
示例#13
0
        /// <summary>
        /// <para>Set the logging parameters for a bucket and to specify permissions for who can view and modify the logging parameters. To set the
        /// logging status of a bucket, you must be the bucket owner.</para>
        /// </summary>
        /// 
        /// <param name="request">Container for the necessary parameters to execute the PutBucketLogging service method on
        /// AmazonS3.</param>
		public PutBucketLoggingResponse PutBucketLogging(PutBucketLoggingRequest request)
        {
            var task = PutBucketLoggingAsync(request);
            try
            {
                return task.Result;
            }
            catch(AggregateException e)
            {
                ExceptionDispatchInfo.Capture(e.InnerException).Throw();
                return null;
            }
        }