Exemple #1
0
        public override void Invoke(AWSCredentials creds, RegionEndpoint region, int maxItems)
        {
            AmazonServerMigrationServiceConfig config = new AmazonServerMigrationServiceConfig();

            config.RegionEndpoint = region;
            ConfigureClient(config);
            AmazonServerMigrationServiceClient client = new AmazonServerMigrationServiceClient(creds, config);

            GetReplicationJobsResponse resp = new GetReplicationJobsResponse();

            do
            {
                GetReplicationJobsRequest req = new GetReplicationJobsRequest
                {
                    NextToken = resp.NextToken
                    ,
                    MaxResults = maxItems
                };

                resp = client.GetReplicationJobs(req);
                CheckError(resp.HttpStatusCode, "200");

                foreach (var obj in resp.ReplicationJobList)
                {
                    AddObject(obj);
                }
            }while (!string.IsNullOrEmpty(resp.NextToken));
        }
Exemple #2
0
        /// <summary>
        /// The GetReplicationJobs API will return all of your ReplicationJobs and their details.
        /// This API returns a paginated list, that may be consecutively called with nextToken
        /// to retrieve all ReplicationJobs.
        /// </summary>
        /// <param name="request">Container for the necessary parameters to execute the GetReplicationJobs service method.</param>
        ///
        /// <returns>The response from the GetReplicationJobs service method, as returned by ServerMigrationService.</returns>
        /// <exception cref="Amazon.ServerMigrationService.Model.InvalidParameterException">
        /// A parameter specified in the request is not valid, is unsupported, or cannot be used.
        /// </exception>
        /// <exception cref="Amazon.ServerMigrationService.Model.MissingRequiredParameterException">
        /// The request is missing a required parameter. Ensure that you have supplied all the
        /// required parameters for the request.
        /// </exception>
        /// <exception cref="Amazon.ServerMigrationService.Model.UnauthorizedOperationException">
        /// This user does not have permissions to perform this operation.
        /// </exception>
        /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/GetReplicationJobs">REST API Reference for GetReplicationJobs Operation</seealso>
        public virtual GetReplicationJobsResponse GetReplicationJobs(GetReplicationJobsRequest request)
        {
            var marshaller   = new GetReplicationJobsRequestMarshaller();
            var unmarshaller = GetReplicationJobsResponseUnmarshaller.Instance;

            return(Invoke <GetReplicationJobsRequest, GetReplicationJobsResponse>(request, marshaller, unmarshaller));
        }
Exemple #3
0
        /// <summary>
        /// Initiates the asynchronous execution of the GetReplicationJobs operation.
        /// </summary>
        ///
        /// <param name="request">Container for the necessary parameters to execute the GetReplicationJobs 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>
        /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/GetReplicationJobs">REST API Reference for GetReplicationJobs Operation</seealso>
        public virtual Task <GetReplicationJobsResponse> GetReplicationJobsAsync(GetReplicationJobsRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
        {
            var marshaller   = new GetReplicationJobsRequestMarshaller();
            var unmarshaller = GetReplicationJobsResponseUnmarshaller.Instance;

            return(InvokeAsync <GetReplicationJobsRequest, GetReplicationJobsResponse>(request, marshaller,
                                                                                       unmarshaller, cancellationToken));
        }