com.google.cloud.dataplex.v1.DataProfileResultOrBuilder 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/data_profile.proto
// Protobuf Java Version: 3.25.4
package com.google.cloud.dataplex.v1;
public interface DataProfileResultOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.dataplex.v1.DataProfileResult)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* The count of rows scanned.
*
*
* int64 row_count = 3;
*
* @return The rowCount.
*/
long getRowCount();
/**
*
*
*
* The profile information per field.
*
*
* .google.cloud.dataplex.v1.DataProfileResult.Profile profile = 4;
*
* @return Whether the profile field is set.
*/
boolean hasProfile();
/**
*
*
*
* The profile information per field.
*
*
* .google.cloud.dataplex.v1.DataProfileResult.Profile profile = 4;
*
* @return The profile.
*/
com.google.cloud.dataplex.v1.DataProfileResult.Profile getProfile();
/**
*
*
*
* The profile information per field.
*
*
* .google.cloud.dataplex.v1.DataProfileResult.Profile profile = 4;
*/
com.google.cloud.dataplex.v1.DataProfileResult.ProfileOrBuilder getProfileOrBuilder();
/**
*
*
*
* The data scanned for this result.
*
*
* .google.cloud.dataplex.v1.ScannedData scanned_data = 5;
*
* @return Whether the scannedData field is set.
*/
boolean hasScannedData();
/**
*
*
*
* The data scanned for this result.
*
*
* .google.cloud.dataplex.v1.ScannedData scanned_data = 5;
*
* @return The scannedData.
*/
com.google.cloud.dataplex.v1.ScannedData getScannedData();
/**
*
*
*
* The data scanned for this result.
*
*
* .google.cloud.dataplex.v1.ScannedData scanned_data = 5;
*/
com.google.cloud.dataplex.v1.ScannedDataOrBuilder getScannedDataOrBuilder();
/**
*
*
*
* Output only. The result of post scan actions.
*
*
*
* .google.cloud.dataplex.v1.DataProfileResult.PostScanActionsResult post_scan_actions_result = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return Whether the postScanActionsResult field is set.
*/
boolean hasPostScanActionsResult();
/**
*
*
*
* Output only. The result of post scan actions.
*
*
*
* .google.cloud.dataplex.v1.DataProfileResult.PostScanActionsResult post_scan_actions_result = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return The postScanActionsResult.
*/
com.google.cloud.dataplex.v1.DataProfileResult.PostScanActionsResult getPostScanActionsResult();
/**
*
*
*
* Output only. The result of post scan actions.
*
*
*
* .google.cloud.dataplex.v1.DataProfileResult.PostScanActionsResult post_scan_actions_result = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*/
com.google.cloud.dataplex.v1.DataProfileResult.PostScanActionsResultOrBuilder
getPostScanActionsResultOrBuilder();
}