com.google.cloud.dataplex.v1.ListTasksResponseOrBuilder Maven / Gradle / Ivy
/*
* Copyright 2024 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License 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.
*/
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/cloud/dataplex/v1/service.proto
// Protobuf Java Version: 3.25.4
package com.google.cloud.dataplex.v1;
public interface ListTasksResponseOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.dataplex.v1.ListTasksResponse)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Tasks under the given parent lake.
*
*
* repeated .google.cloud.dataplex.v1.Task tasks = 1;
*/
java.util.List getTasksList();
/**
*
*
*
* Tasks under the given parent lake.
*
*
* repeated .google.cloud.dataplex.v1.Task tasks = 1;
*/
com.google.cloud.dataplex.v1.Task getTasks(int index);
/**
*
*
*
* Tasks under the given parent lake.
*
*
* repeated .google.cloud.dataplex.v1.Task tasks = 1;
*/
int getTasksCount();
/**
*
*
*
* Tasks under the given parent lake.
*
*
* repeated .google.cloud.dataplex.v1.Task tasks = 1;
*/
java.util.List extends com.google.cloud.dataplex.v1.TaskOrBuilder> getTasksOrBuilderList();
/**
*
*
*
* Tasks under the given parent lake.
*
*
* repeated .google.cloud.dataplex.v1.Task tasks = 1;
*/
com.google.cloud.dataplex.v1.TaskOrBuilder getTasksOrBuilder(int index);
/**
*
*
*
* Token to retrieve the next page of results, or empty if there are no more
* results in the list.
*
*
* string next_page_token = 2;
*
* @return The nextPageToken.
*/
java.lang.String getNextPageToken();
/**
*
*
*
* Token to retrieve the next page of results, or empty if there are no more
* results in the list.
*
*
* string next_page_token = 2;
*
* @return The bytes for nextPageToken.
*/
com.google.protobuf.ByteString getNextPageTokenBytes();
/**
*
*
*
* Locations that could not be reached.
*
*
* repeated string unreachable_locations = 3;
*
* @return A list containing the unreachableLocations.
*/
java.util.List getUnreachableLocationsList();
/**
*
*
*
* Locations that could not be reached.
*
*
* repeated string unreachable_locations = 3;
*
* @return The count of unreachableLocations.
*/
int getUnreachableLocationsCount();
/**
*
*
*
* Locations that could not be reached.
*
*
* repeated string unreachable_locations = 3;
*
* @param index The index of the element to return.
* @return The unreachableLocations at the given index.
*/
java.lang.String getUnreachableLocations(int index);
/**
*
*
*
* Locations that could not be reached.
*
*
* repeated string unreachable_locations = 3;
*
* @param index The index of the value to return.
* @return The bytes of the unreachableLocations at the given index.
*/
com.google.protobuf.ByteString getUnreachableLocationsBytes(int index);
}