All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.backup.model.ListReportJobsRequest Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS Backup module holds the client classes that are used for communicating with AWS Backup Service

There is a newer version: 1.12.780
Show newest version
/*
 * Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
 * the License. A copy of the License is located at
 * 
 * http://aws.amazon.com/apache2.0
 * 
 * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
 * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
 * and limitations under the License.
 */
package com.amazonaws.services.backup.model;

import java.io.Serializable;
import javax.annotation.Generated;

import com.amazonaws.AmazonWebServiceRequest;

/**
 * 
 * @see AWS API
 *      Documentation
 */
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class ListReportJobsRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {

    /**
     * 

* Returns only report jobs with the specified report plan name. *

*/ private String byReportPlanName; /** *

* Returns only report jobs that were created before the date and time specified in Unix format and Coordinated * Universal Time (UTC). For example, the value 1516925490 represents Friday, January 26, 2018 12:11:30 AM. *

*/ private java.util.Date byCreationBefore; /** *

* Returns only report jobs that were created after the date and time specified in Unix format and Coordinated * Universal Time (UTC). For example, the value 1516925490 represents Friday, January 26, 2018 12:11:30 AM. *

*/ private java.util.Date byCreationAfter; /** *

* Returns only report jobs that are in the specified status. The statuses are: *

*

* CREATED | RUNNING | COMPLETED | FAILED *

*/ private String byStatus; /** *

* The number of desired results from 1 to 1000. Optional. If unspecified, the query will return 1 MB of data. *

*/ private Integer maxResults; /** *

* An identifier that was returned from the previous call to this operation, which can be used to return the next * set of items in the list. *

*/ private String nextToken; /** *

* Returns only report jobs with the specified report plan name. *

* * @param byReportPlanName * Returns only report jobs with the specified report plan name. */ public void setByReportPlanName(String byReportPlanName) { this.byReportPlanName = byReportPlanName; } /** *

* Returns only report jobs with the specified report plan name. *

* * @return Returns only report jobs with the specified report plan name. */ public String getByReportPlanName() { return this.byReportPlanName; } /** *

* Returns only report jobs with the specified report plan name. *

* * @param byReportPlanName * Returns only report jobs with the specified report plan name. * @return Returns a reference to this object so that method calls can be chained together. */ public ListReportJobsRequest withByReportPlanName(String byReportPlanName) { setByReportPlanName(byReportPlanName); return this; } /** *

* Returns only report jobs that were created before the date and time specified in Unix format and Coordinated * Universal Time (UTC). For example, the value 1516925490 represents Friday, January 26, 2018 12:11:30 AM. *

* * @param byCreationBefore * Returns only report jobs that were created before the date and time specified in Unix format and * Coordinated Universal Time (UTC). For example, the value 1516925490 represents Friday, January 26, 2018 * 12:11:30 AM. */ public void setByCreationBefore(java.util.Date byCreationBefore) { this.byCreationBefore = byCreationBefore; } /** *

* Returns only report jobs that were created before the date and time specified in Unix format and Coordinated * Universal Time (UTC). For example, the value 1516925490 represents Friday, January 26, 2018 12:11:30 AM. *

* * @return Returns only report jobs that were created before the date and time specified in Unix format and * Coordinated Universal Time (UTC). For example, the value 1516925490 represents Friday, January 26, 2018 * 12:11:30 AM. */ public java.util.Date getByCreationBefore() { return this.byCreationBefore; } /** *

* Returns only report jobs that were created before the date and time specified in Unix format and Coordinated * Universal Time (UTC). For example, the value 1516925490 represents Friday, January 26, 2018 12:11:30 AM. *

* * @param byCreationBefore * Returns only report jobs that were created before the date and time specified in Unix format and * Coordinated Universal Time (UTC). For example, the value 1516925490 represents Friday, January 26, 2018 * 12:11:30 AM. * @return Returns a reference to this object so that method calls can be chained together. */ public ListReportJobsRequest withByCreationBefore(java.util.Date byCreationBefore) { setByCreationBefore(byCreationBefore); return this; } /** *

* Returns only report jobs that were created after the date and time specified in Unix format and Coordinated * Universal Time (UTC). For example, the value 1516925490 represents Friday, January 26, 2018 12:11:30 AM. *

* * @param byCreationAfter * Returns only report jobs that were created after the date and time specified in Unix format and * Coordinated Universal Time (UTC). For example, the value 1516925490 represents Friday, January 26, 2018 * 12:11:30 AM. */ public void setByCreationAfter(java.util.Date byCreationAfter) { this.byCreationAfter = byCreationAfter; } /** *

* Returns only report jobs that were created after the date and time specified in Unix format and Coordinated * Universal Time (UTC). For example, the value 1516925490 represents Friday, January 26, 2018 12:11:30 AM. *

* * @return Returns only report jobs that were created after the date and time specified in Unix format and * Coordinated Universal Time (UTC). For example, the value 1516925490 represents Friday, January 26, 2018 * 12:11:30 AM. */ public java.util.Date getByCreationAfter() { return this.byCreationAfter; } /** *

* Returns only report jobs that were created after the date and time specified in Unix format and Coordinated * Universal Time (UTC). For example, the value 1516925490 represents Friday, January 26, 2018 12:11:30 AM. *

* * @param byCreationAfter * Returns only report jobs that were created after the date and time specified in Unix format and * Coordinated Universal Time (UTC). For example, the value 1516925490 represents Friday, January 26, 2018 * 12:11:30 AM. * @return Returns a reference to this object so that method calls can be chained together. */ public ListReportJobsRequest withByCreationAfter(java.util.Date byCreationAfter) { setByCreationAfter(byCreationAfter); return this; } /** *

* Returns only report jobs that are in the specified status. The statuses are: *

*

* CREATED | RUNNING | COMPLETED | FAILED *

* * @param byStatus * Returns only report jobs that are in the specified status. The statuses are:

*

* CREATED | RUNNING | COMPLETED | FAILED */ public void setByStatus(String byStatus) { this.byStatus = byStatus; } /** *

* Returns only report jobs that are in the specified status. The statuses are: *

*

* CREATED | RUNNING | COMPLETED | FAILED *

* * @return Returns only report jobs that are in the specified status. The statuses are:

*

* CREATED | RUNNING | COMPLETED | FAILED */ public String getByStatus() { return this.byStatus; } /** *

* Returns only report jobs that are in the specified status. The statuses are: *

*

* CREATED | RUNNING | COMPLETED | FAILED *

* * @param byStatus * Returns only report jobs that are in the specified status. The statuses are:

*

* CREATED | RUNNING | COMPLETED | FAILED * @return Returns a reference to this object so that method calls can be chained together. */ public ListReportJobsRequest withByStatus(String byStatus) { setByStatus(byStatus); return this; } /** *

* The number of desired results from 1 to 1000. Optional. If unspecified, the query will return 1 MB of data. *

* * @param maxResults * The number of desired results from 1 to 1000. Optional. If unspecified, the query will return 1 MB of * data. */ public void setMaxResults(Integer maxResults) { this.maxResults = maxResults; } /** *

* The number of desired results from 1 to 1000. Optional. If unspecified, the query will return 1 MB of data. *

* * @return The number of desired results from 1 to 1000. Optional. If unspecified, the query will return 1 MB of * data. */ public Integer getMaxResults() { return this.maxResults; } /** *

* The number of desired results from 1 to 1000. Optional. If unspecified, the query will return 1 MB of data. *

* * @param maxResults * The number of desired results from 1 to 1000. Optional. If unspecified, the query will return 1 MB of * data. * @return Returns a reference to this object so that method calls can be chained together. */ public ListReportJobsRequest withMaxResults(Integer maxResults) { setMaxResults(maxResults); return this; } /** *

* An identifier that was returned from the previous call to this operation, which can be used to return the next * set of items in the list. *

* * @param nextToken * An identifier that was returned from the previous call to this operation, which can be used to return the * next set of items in the list. */ public void setNextToken(String nextToken) { this.nextToken = nextToken; } /** *

* An identifier that was returned from the previous call to this operation, which can be used to return the next * set of items in the list. *

* * @return An identifier that was returned from the previous call to this operation, which can be used to return the * next set of items in the list. */ public String getNextToken() { return this.nextToken; } /** *

* An identifier that was returned from the previous call to this operation, which can be used to return the next * set of items in the list. *

* * @param nextToken * An identifier that was returned from the previous call to this operation, which can be used to return the * next set of items in the list. * @return Returns a reference to this object so that method calls can be chained together. */ public ListReportJobsRequest withNextToken(String nextToken) { setNextToken(nextToken); return this; } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getByReportPlanName() != null) sb.append("ByReportPlanName: ").append(getByReportPlanName()).append(","); if (getByCreationBefore() != null) sb.append("ByCreationBefore: ").append(getByCreationBefore()).append(","); if (getByCreationAfter() != null) sb.append("ByCreationAfter: ").append(getByCreationAfter()).append(","); if (getByStatus() != null) sb.append("ByStatus: ").append(getByStatus()).append(","); if (getMaxResults() != null) sb.append("MaxResults: ").append(getMaxResults()).append(","); if (getNextToken() != null) sb.append("NextToken: ").append(getNextToken()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ListReportJobsRequest == false) return false; ListReportJobsRequest other = (ListReportJobsRequest) obj; if (other.getByReportPlanName() == null ^ this.getByReportPlanName() == null) return false; if (other.getByReportPlanName() != null && other.getByReportPlanName().equals(this.getByReportPlanName()) == false) return false; if (other.getByCreationBefore() == null ^ this.getByCreationBefore() == null) return false; if (other.getByCreationBefore() != null && other.getByCreationBefore().equals(this.getByCreationBefore()) == false) return false; if (other.getByCreationAfter() == null ^ this.getByCreationAfter() == null) return false; if (other.getByCreationAfter() != null && other.getByCreationAfter().equals(this.getByCreationAfter()) == false) return false; if (other.getByStatus() == null ^ this.getByStatus() == null) return false; if (other.getByStatus() != null && other.getByStatus().equals(this.getByStatus()) == false) return false; if (other.getMaxResults() == null ^ this.getMaxResults() == null) return false; if (other.getMaxResults() != null && other.getMaxResults().equals(this.getMaxResults()) == false) return false; if (other.getNextToken() == null ^ this.getNextToken() == null) return false; if (other.getNextToken() != null && other.getNextToken().equals(this.getNextToken()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getByReportPlanName() == null) ? 0 : getByReportPlanName().hashCode()); hashCode = prime * hashCode + ((getByCreationBefore() == null) ? 0 : getByCreationBefore().hashCode()); hashCode = prime * hashCode + ((getByCreationAfter() == null) ? 0 : getByCreationAfter().hashCode()); hashCode = prime * hashCode + ((getByStatus() == null) ? 0 : getByStatus().hashCode()); hashCode = prime * hashCode + ((getMaxResults() == null) ? 0 : getMaxResults().hashCode()); hashCode = prime * hashCode + ((getNextToken() == null) ? 0 : getNextToken().hashCode()); return hashCode; } @Override public ListReportJobsRequest clone() { return (ListReportJobsRequest) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy