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

com.oracle.bmc.dataintegration.requests.ListTaskRunLineagesRequest Maven / Gradle / Ivy

There is a newer version: 3.46.1
Show newest version
/**
 * Copyright (c) 2016, 2023, Oracle and/or its affiliates.  All rights reserved.
 * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
 */
package com.oracle.bmc.dataintegration.requests;

import com.oracle.bmc.dataintegration.model.*;
/**
 * Example: Click here to see how to use ListTaskRunLineagesRequest.
 */
@javax.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20200430")
public class ListTaskRunLineagesRequest extends com.oracle.bmc.requests.BmcRequest {

    /**
     * The workspace ID.
     */
    private String workspaceId;

    /**
     * The workspace ID.
     */
    public String getWorkspaceId() {
        return workspaceId;
    }
    /**
     * The application key.
     */
    private String applicationKey;

    /**
     * The application key.
     */
    public String getApplicationKey() {
        return applicationKey;
    }
    /**
     * Unique Oracle-assigned identifier for the request. If
     * you need to contact Oracle about a particular request,
     * please provide the request ID.
     *
     */
    private String opcRequestId;

    /**
     * Unique Oracle-assigned identifier for the request. If
     * you need to contact Oracle about a particular request,
     * please provide the request ID.
     *
     */
    public String getOpcRequestId() {
        return opcRequestId;
    }
    /**
     * Specifies the fields to get for an object.
     */
    private java.util.List fields;

    /**
     * Specifies the fields to get for an object.
     */
    public java.util.List getFields() {
        return fields;
    }
    /**
     * For list pagination. The value for this parameter is the {@code opc-next-page} or the {@code opc-prev-page} response header from the previous {@code List} call. See [List Pagination](https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine).
     */
    private String page;

    /**
     * For list pagination. The value for this parameter is the {@code opc-next-page} or the {@code opc-prev-page} response header from the previous {@code List} call. See [List Pagination](https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine).
     */
    public String getPage() {
        return page;
    }
    /**
     * Sets the maximum number of results per page, or items to return in a paginated {@code List} call. See [List Pagination](https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine).
     */
    private Integer limit;

    /**
     * Sets the maximum number of results per page, or items to return in a paginated {@code List} call. See [List Pagination](https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine).
     */
    public Integer getLimit() {
        return limit;
    }
    /**
     * Specifies sort order to use, either {@code ASC} (ascending) or {@code DESC} (descending).
     */
    private SortOrder sortOrder;

    /**
     * Specifies sort order to use, either {@code ASC} (ascending) or {@code DESC} (descending).
     **/
    public enum SortOrder {
        Asc("ASC"),
        Desc("DESC"),
        ;

        private final String value;
        private static java.util.Map map;

        static {
            map = new java.util.HashMap<>();
            for (SortOrder v : SortOrder.values()) {
                map.put(v.getValue(), v);
            }
        }

        SortOrder(String value) {
            this.value = value;
        }

        @com.fasterxml.jackson.annotation.JsonValue
        public String getValue() {
            return value;
        }

        @com.fasterxml.jackson.annotation.JsonCreator
        public static SortOrder create(String key) {
            if (map.containsKey(key)) {
                return map.get(key);
            }
            throw new IllegalArgumentException("Invalid SortOrder: " + key);
        }
    };

    /**
     * Specifies sort order to use, either {@code ASC} (ascending) or {@code DESC} (descending).
     */
    public SortOrder getSortOrder() {
        return sortOrder;
    }
    /**
     * Specifies the field to sort by. Accepts only one field. By default, when you sort by time fields, results are shown in descending order. All other fields default to ascending order. Sorting related parameters are ignored when parameter {@code query} is present (search operation and sorting order is by relevance score in descending order).
     */
    private SortBy sortBy;

    /**
     * Specifies the field to sort by. Accepts only one field. By default, when you sort by time fields, results are shown in descending order. All other fields default to ascending order. Sorting related parameters are ignored when parameter {@code query} is present (search operation and sorting order is by relevance score in descending order).
     **/
    public enum SortBy {
        TimeCreated("TIME_CREATED"),
        DisplayName("DISPLAY_NAME"),
        TimeUpdated("TIME_UPDATED"),
        ;

        private final String value;
        private static java.util.Map map;

        static {
            map = new java.util.HashMap<>();
            for (SortBy v : SortBy.values()) {
                map.put(v.getValue(), v);
            }
        }

        SortBy(String value) {
            this.value = value;
        }

        @com.fasterxml.jackson.annotation.JsonValue
        public String getValue() {
            return value;
        }

        @com.fasterxml.jackson.annotation.JsonCreator
        public static SortBy create(String key) {
            if (map.containsKey(key)) {
                return map.get(key);
            }
            throw new IllegalArgumentException("Invalid SortBy: " + key);
        }
    };

    /**
     * Specifies the field to sort by. Accepts only one field. By default, when you sort by time fields, results are shown in descending order. All other fields default to ascending order. Sorting related parameters are ignored when parameter {@code query} is present (search operation and sorting order is by relevance score in descending order).
     */
    public SortBy getSortBy() {
        return sortBy;
    }
    /**
     * This filter parameter can be used to filter by model specific queryable fields of the object 

Examples:-
  • ?filter=status eq Failed returns all objects that have a status field with value Failed
*/ private java.util.List filter; /** * This filter parameter can be used to filter by model specific queryable fields of the object

Examples:-
  • ?filter=status eq Failed returns all objects that have a status field with value Failed
*/ public java.util.List getFilter() { return filter; } /** * This parameter allows users to get objects which were updated after a certain time. The format of timeUpdatedGreaterThan is "YYYY-MM-dd'T'HH:mm:ss.SSS'Z'" */ private java.util.Date timeUpdatedGreaterThan; /** * This parameter allows users to get objects which were updated after a certain time. The format of timeUpdatedGreaterThan is "YYYY-MM-dd'T'HH:mm:ss.SSS'Z'" */ public java.util.Date getTimeUpdatedGreaterThan() { return timeUpdatedGreaterThan; } /** * This parameter allows users to get objects which were updated after and at a certain time. The format of timeUpdatedGreaterThanOrEqualTo is "YYYY-MM-dd'T'HH:mm:ss.SSS'Z'" */ private java.util.Date timeUpdatedGreaterThanOrEqualTo; /** * This parameter allows users to get objects which were updated after and at a certain time. The format of timeUpdatedGreaterThanOrEqualTo is "YYYY-MM-dd'T'HH:mm:ss.SSS'Z'" */ public java.util.Date getTimeUpdatedGreaterThanOrEqualTo() { return timeUpdatedGreaterThanOrEqualTo; } /** * This parameter allows users to get objects which were updated before a certain time. The format of timeUpatedLessThan is "YYYY-MM-dd'T'HH:mm:ss.SSS'Z'" */ private java.util.Date timeUpatedLessThan; /** * This parameter allows users to get objects which were updated before a certain time. The format of timeUpatedLessThan is "YYYY-MM-dd'T'HH:mm:ss.SSS'Z'" */ public java.util.Date getTimeUpatedLessThan() { return timeUpatedLessThan; } /** * This parameter allows users to get objects which were updated before and at a certain time. The format of timeUpatedLessThanOrEqualTo is "YYYY-MM-dd'T'HH:mm:ss.SSS'Z'" */ private java.util.Date timeUpatedLessThanOrEqualTo; /** * This parameter allows users to get objects which were updated before and at a certain time. The format of timeUpatedLessThanOrEqualTo is "YYYY-MM-dd'T'HH:mm:ss.SSS'Z'" */ public java.util.Date getTimeUpatedLessThanOrEqualTo() { return timeUpatedLessThanOrEqualTo; } public static class Builder implements com.oracle.bmc.requests.BmcRequest.Builder< ListTaskRunLineagesRequest, java.lang.Void> { private com.oracle.bmc.util.internal.Consumer invocationCallback = null; private com.oracle.bmc.retrier.RetryConfiguration retryConfiguration = null; /** * The workspace ID. */ private String workspaceId = null; /** * The workspace ID. * @param workspaceId the value to set * @return this builder instance */ public Builder workspaceId(String workspaceId) { this.workspaceId = workspaceId; return this; } /** * The application key. */ private String applicationKey = null; /** * The application key. * @param applicationKey the value to set * @return this builder instance */ public Builder applicationKey(String applicationKey) { this.applicationKey = applicationKey; return this; } /** * Unique Oracle-assigned identifier for the request. If * you need to contact Oracle about a particular request, * please provide the request ID. * */ private String opcRequestId = null; /** * Unique Oracle-assigned identifier for the request. If * you need to contact Oracle about a particular request, * please provide the request ID. * * @param opcRequestId the value to set * @return this builder instance */ public Builder opcRequestId(String opcRequestId) { this.opcRequestId = opcRequestId; return this; } /** * Specifies the fields to get for an object. */ private java.util.List fields = null; /** * Specifies the fields to get for an object. * @param fields the value to set * @return this builder instance */ public Builder fields(java.util.List fields) { this.fields = fields; return this; } /** * Singular setter. Specifies the fields to get for an object. * @param singularValue the singular value to set * @return this builder instance */ public Builder fields(String singularValue) { return this.fields(java.util.Arrays.asList(singularValue)); } /** * For list pagination. The value for this parameter is the {@code opc-next-page} or the {@code opc-prev-page} response header from the previous {@code List} call. See [List Pagination](https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine). */ private String page = null; /** * For list pagination. The value for this parameter is the {@code opc-next-page} or the {@code opc-prev-page} response header from the previous {@code List} call. See [List Pagination](https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine). * @param page the value to set * @return this builder instance */ public Builder page(String page) { this.page = page; return this; } /** * Sets the maximum number of results per page, or items to return in a paginated {@code List} call. See [List Pagination](https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine). */ private Integer limit = null; /** * Sets the maximum number of results per page, or items to return in a paginated {@code List} call. See [List Pagination](https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine). * @param limit the value to set * @return this builder instance */ public Builder limit(Integer limit) { this.limit = limit; return this; } /** * Specifies sort order to use, either {@code ASC} (ascending) or {@code DESC} (descending). */ private SortOrder sortOrder = null; /** * Specifies sort order to use, either {@code ASC} (ascending) or {@code DESC} (descending). * @param sortOrder the value to set * @return this builder instance */ public Builder sortOrder(SortOrder sortOrder) { this.sortOrder = sortOrder; return this; } /** * Specifies the field to sort by. Accepts only one field. By default, when you sort by time fields, results are shown in descending order. All other fields default to ascending order. Sorting related parameters are ignored when parameter {@code query} is present (search operation and sorting order is by relevance score in descending order). */ private SortBy sortBy = null; /** * Specifies the field to sort by. Accepts only one field. By default, when you sort by time fields, results are shown in descending order. All other fields default to ascending order. Sorting related parameters are ignored when parameter {@code query} is present (search operation and sorting order is by relevance score in descending order). * @param sortBy the value to set * @return this builder instance */ public Builder sortBy(SortBy sortBy) { this.sortBy = sortBy; return this; } /** * This filter parameter can be used to filter by model specific queryable fields of the object

Examples:-
  • ?filter=status eq Failed returns all objects that have a status field with value Failed
*/ private java.util.List filter = null; /** * This filter parameter can be used to filter by model specific queryable fields of the object

Examples:-
  • ?filter=status eq Failed returns all objects that have a status field with value Failed
* @param filter the value to set * @return this builder instance */ public Builder filter(java.util.List filter) { this.filter = filter; return this; } /** * Singular setter. This filter parameter can be used to filter by model specific queryable fields of the object

Examples:-
  • ?filter=status eq Failed returns all objects that have a status field with value Failed
* @param singularValue the singular value to set * @return this builder instance */ public Builder filter(String singularValue) { return this.filter(java.util.Arrays.asList(singularValue)); } /** * This parameter allows users to get objects which were updated after a certain time. The format of timeUpdatedGreaterThan is "YYYY-MM-dd'T'HH:mm:ss.SSS'Z'" */ private java.util.Date timeUpdatedGreaterThan = null; /** * This parameter allows users to get objects which were updated after a certain time. The format of timeUpdatedGreaterThan is "YYYY-MM-dd'T'HH:mm:ss.SSS'Z'" * @param timeUpdatedGreaterThan the value to set * @return this builder instance */ public Builder timeUpdatedGreaterThan(java.util.Date timeUpdatedGreaterThan) { this.timeUpdatedGreaterThan = timeUpdatedGreaterThan; return this; } /** * This parameter allows users to get objects which were updated after and at a certain time. The format of timeUpdatedGreaterThanOrEqualTo is "YYYY-MM-dd'T'HH:mm:ss.SSS'Z'" */ private java.util.Date timeUpdatedGreaterThanOrEqualTo = null; /** * This parameter allows users to get objects which were updated after and at a certain time. The format of timeUpdatedGreaterThanOrEqualTo is "YYYY-MM-dd'T'HH:mm:ss.SSS'Z'" * @param timeUpdatedGreaterThanOrEqualTo the value to set * @return this builder instance */ public Builder timeUpdatedGreaterThanOrEqualTo( java.util.Date timeUpdatedGreaterThanOrEqualTo) { this.timeUpdatedGreaterThanOrEqualTo = timeUpdatedGreaterThanOrEqualTo; return this; } /** * This parameter allows users to get objects which were updated before a certain time. The format of timeUpatedLessThan is "YYYY-MM-dd'T'HH:mm:ss.SSS'Z'" */ private java.util.Date timeUpatedLessThan = null; /** * This parameter allows users to get objects which were updated before a certain time. The format of timeUpatedLessThan is "YYYY-MM-dd'T'HH:mm:ss.SSS'Z'" * @param timeUpatedLessThan the value to set * @return this builder instance */ public Builder timeUpatedLessThan(java.util.Date timeUpatedLessThan) { this.timeUpatedLessThan = timeUpatedLessThan; return this; } /** * This parameter allows users to get objects which were updated before and at a certain time. The format of timeUpatedLessThanOrEqualTo is "YYYY-MM-dd'T'HH:mm:ss.SSS'Z'" */ private java.util.Date timeUpatedLessThanOrEqualTo = null; /** * This parameter allows users to get objects which were updated before and at a certain time. The format of timeUpatedLessThanOrEqualTo is "YYYY-MM-dd'T'HH:mm:ss.SSS'Z'" * @param timeUpatedLessThanOrEqualTo the value to set * @return this builder instance */ public Builder timeUpatedLessThanOrEqualTo(java.util.Date timeUpatedLessThanOrEqualTo) { this.timeUpatedLessThanOrEqualTo = timeUpatedLessThanOrEqualTo; return this; } /** * Set the invocation callback for the request to be built. * @param invocationCallback the invocation callback to be set for the request * @return this builder instance */ public Builder invocationCallback( com.oracle.bmc.util.internal.Consumer invocationCallback) { this.invocationCallback = invocationCallback; return this; } /** * Set the retry configuration for the request to be built. * @param retryConfiguration the retry configuration to be used for the request * @return this builder instance */ public Builder retryConfiguration( com.oracle.bmc.retrier.RetryConfiguration retryConfiguration) { this.retryConfiguration = retryConfiguration; return this; } /** * Copy method to populate the builder with values from the given instance. * @return this builder instance */ public Builder copy(ListTaskRunLineagesRequest o) { workspaceId(o.getWorkspaceId()); applicationKey(o.getApplicationKey()); opcRequestId(o.getOpcRequestId()); fields(o.getFields()); page(o.getPage()); limit(o.getLimit()); sortOrder(o.getSortOrder()); sortBy(o.getSortBy()); filter(o.getFilter()); timeUpdatedGreaterThan(o.getTimeUpdatedGreaterThan()); timeUpdatedGreaterThanOrEqualTo(o.getTimeUpdatedGreaterThanOrEqualTo()); timeUpatedLessThan(o.getTimeUpatedLessThan()); timeUpatedLessThanOrEqualTo(o.getTimeUpatedLessThanOrEqualTo()); invocationCallback(o.getInvocationCallback()); retryConfiguration(o.getRetryConfiguration()); return this; } /** * Build the instance of ListTaskRunLineagesRequest as configured by this builder * * Note that this method takes calls to {@link Builder#invocationCallback(com.oracle.bmc.util.internal.Consumer)} into account, * while the method {@link Builder#buildWithoutInvocationCallback} does not. * * This is the preferred method to build an instance. * * @return instance of ListTaskRunLineagesRequest */ public ListTaskRunLineagesRequest build() { ListTaskRunLineagesRequest request = buildWithoutInvocationCallback(); request.setInvocationCallback(invocationCallback); request.setRetryConfiguration(retryConfiguration); return request; } /** * Build the instance of ListTaskRunLineagesRequest as configured by this builder * * Note that this method does not take calls to {@link Builder#invocationCallback(com.oracle.bmc.util.internal.Consumer)} into account, * while the method {@link Builder#build} does * * @return instance of ListTaskRunLineagesRequest */ public ListTaskRunLineagesRequest buildWithoutInvocationCallback() { ListTaskRunLineagesRequest request = new ListTaskRunLineagesRequest(); request.workspaceId = workspaceId; request.applicationKey = applicationKey; request.opcRequestId = opcRequestId; request.fields = fields; request.page = page; request.limit = limit; request.sortOrder = sortOrder; request.sortBy = sortBy; request.filter = filter; request.timeUpdatedGreaterThan = timeUpdatedGreaterThan; request.timeUpdatedGreaterThanOrEqualTo = timeUpdatedGreaterThanOrEqualTo; request.timeUpatedLessThan = timeUpatedLessThan; request.timeUpatedLessThanOrEqualTo = timeUpatedLessThanOrEqualTo; return request; // new ListTaskRunLineagesRequest(workspaceId, applicationKey, opcRequestId, fields, page, limit, sortOrder, sortBy, filter, timeUpdatedGreaterThan, timeUpdatedGreaterThanOrEqualTo, timeUpatedLessThan, timeUpatedLessThanOrEqualTo); } } /** * Return an instance of {@link Builder} that allows you to modify request properties. * @return instance of {@link Builder} that allows you to modify request properties. */ public Builder toBuilder() { return new Builder() .workspaceId(workspaceId) .applicationKey(applicationKey) .opcRequestId(opcRequestId) .fields(fields) .page(page) .limit(limit) .sortOrder(sortOrder) .sortBy(sortBy) .filter(filter) .timeUpdatedGreaterThan(timeUpdatedGreaterThan) .timeUpdatedGreaterThanOrEqualTo(timeUpdatedGreaterThanOrEqualTo) .timeUpatedLessThan(timeUpatedLessThan) .timeUpatedLessThanOrEqualTo(timeUpatedLessThanOrEqualTo); } /** * Return a new builder for this request object. * @return builder for the request object */ public static Builder builder() { return new Builder(); } @Override public String toString() { java.lang.StringBuilder sb = new java.lang.StringBuilder(); sb.append("("); sb.append("super=").append(super.toString()); sb.append(",workspaceId=").append(String.valueOf(this.workspaceId)); sb.append(",applicationKey=").append(String.valueOf(this.applicationKey)); sb.append(",opcRequestId=").append(String.valueOf(this.opcRequestId)); sb.append(",fields=").append(String.valueOf(this.fields)); sb.append(",page=").append(String.valueOf(this.page)); sb.append(",limit=").append(String.valueOf(this.limit)); sb.append(",sortOrder=").append(String.valueOf(this.sortOrder)); sb.append(",sortBy=").append(String.valueOf(this.sortBy)); sb.append(",filter=").append(String.valueOf(this.filter)); sb.append(",timeUpdatedGreaterThan=").append(String.valueOf(this.timeUpdatedGreaterThan)); sb.append(",timeUpdatedGreaterThanOrEqualTo=") .append(String.valueOf(this.timeUpdatedGreaterThanOrEqualTo)); sb.append(",timeUpatedLessThan=").append(String.valueOf(this.timeUpatedLessThan)); sb.append(",timeUpatedLessThanOrEqualTo=") .append(String.valueOf(this.timeUpatedLessThanOrEqualTo)); sb.append(")"); return sb.toString(); } @Override public boolean equals(Object o) { if (this == o) { return true; } if (!(o instanceof ListTaskRunLineagesRequest)) { return false; } ListTaskRunLineagesRequest other = (ListTaskRunLineagesRequest) o; return super.equals(o) && java.util.Objects.equals(this.workspaceId, other.workspaceId) && java.util.Objects.equals(this.applicationKey, other.applicationKey) && java.util.Objects.equals(this.opcRequestId, other.opcRequestId) && java.util.Objects.equals(this.fields, other.fields) && java.util.Objects.equals(this.page, other.page) && java.util.Objects.equals(this.limit, other.limit) && java.util.Objects.equals(this.sortOrder, other.sortOrder) && java.util.Objects.equals(this.sortBy, other.sortBy) && java.util.Objects.equals(this.filter, other.filter) && java.util.Objects.equals( this.timeUpdatedGreaterThan, other.timeUpdatedGreaterThan) && java.util.Objects.equals( this.timeUpdatedGreaterThanOrEqualTo, other.timeUpdatedGreaterThanOrEqualTo) && java.util.Objects.equals(this.timeUpatedLessThan, other.timeUpatedLessThan) && java.util.Objects.equals( this.timeUpatedLessThanOrEqualTo, other.timeUpatedLessThanOrEqualTo); } @Override public int hashCode() { final int PRIME = 59; int result = super.hashCode(); result = (result * PRIME) + (this.workspaceId == null ? 43 : this.workspaceId.hashCode()); result = (result * PRIME) + (this.applicationKey == null ? 43 : this.applicationKey.hashCode()); result = (result * PRIME) + (this.opcRequestId == null ? 43 : this.opcRequestId.hashCode()); result = (result * PRIME) + (this.fields == null ? 43 : this.fields.hashCode()); result = (result * PRIME) + (this.page == null ? 43 : this.page.hashCode()); result = (result * PRIME) + (this.limit == null ? 43 : this.limit.hashCode()); result = (result * PRIME) + (this.sortOrder == null ? 43 : this.sortOrder.hashCode()); result = (result * PRIME) + (this.sortBy == null ? 43 : this.sortBy.hashCode()); result = (result * PRIME) + (this.filter == null ? 43 : this.filter.hashCode()); result = (result * PRIME) + (this.timeUpdatedGreaterThan == null ? 43 : this.timeUpdatedGreaterThan.hashCode()); result = (result * PRIME) + (this.timeUpdatedGreaterThanOrEqualTo == null ? 43 : this.timeUpdatedGreaterThanOrEqualTo.hashCode()); result = (result * PRIME) + (this.timeUpatedLessThan == null ? 43 : this.timeUpatedLessThan.hashCode()); result = (result * PRIME) + (this.timeUpatedLessThanOrEqualTo == null ? 43 : this.timeUpatedLessThanOrEqualTo.hashCode()); return result; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy