/** * * * OpenAPI spec version: 20200430 * * * NOTE: This class is auto generated by OracleSDKGenerator. * Do not edit the class manually. * * Copyright (c) 2020, 2026, 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. */ import common = require("oci-common"); /** * @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/dataintegration/ListTaskRunLineages.ts.html |here} to see how to use ListTaskRunLineagesRequest. */ export interface ListTaskRunLineagesRequest extends common.BaseRequest { /** * The workspace ID. */ "workspaceId": string; /** * The application key. */ "applicationKey": string; /** * Unique Oracle-assigned identifier for the request. If * you need to contact Oracle about a particular request, * please provide the request ID. * */ "opcRequestId"?: string; /** * Specifies the fields to get for an object. */ "fields"?: Array; /** * 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.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine). */ "page"?: string; /** * Sets the maximum number of results per page, or items to return in a paginated {@code List} call. See [List Pagination](https://docs.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine). */ "limit"?: number; /** * Specifies sort order to use, either {@code ASC} (ascending) or {@code DESC} (descending). */ "sortOrder"?: ListTaskRunLineagesRequest.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). */ "sortBy"?: ListTaskRunLineagesRequest.SortBy; /** * This filter parameter can be used to filter by model specific queryable fields of the object

Examples:-
*/ "filter"?: Array; /** * 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'\" */ "timeUpdatedGreaterThan"?: Date; /** * 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'\" */ "timeUpdatedGreaterThanOrEqualTo"?: Date; /** * 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'\" */ "timeUpatedLessThan"?: Date; /** * 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'\" */ "timeUpatedLessThanOrEqualTo"?: Date; } export declare namespace ListTaskRunLineagesRequest { enum SortOrder { Asc = "ASC", Desc = "DESC" } enum SortBy { TimeCreated = "TIME_CREATED", DisplayName = "DISPLAY_NAME", TimeUpdated = "TIME_UPDATED" } }