/*
* 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/metastore/v1beta/metastore.proto
// Protobuf Java Version: 3.25.5
package com.google.cloud.metastore.v1beta;
public interface MetadataExportOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.metastore.v1beta.MetadataExport)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Output only. A Cloud Storage URI of a folder that metadata are exported
* to, in the form of
* `gs://<bucket_name>/<path_inside_bucket>/<export_folder>`, where
* `<export_folder>` is automatically generated.
*
*
* string destination_gcs_uri = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
* @return Whether the destinationGcsUri field is set.
*/
boolean hasDestinationGcsUri();
/**
*
*
*
* Output only. A Cloud Storage URI of a folder that metadata are exported
* to, in the form of
* `gs://<bucket_name>/<path_inside_bucket>/<export_folder>`, where
* `<export_folder>` is automatically generated.
*
*
* string destination_gcs_uri = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
* @return The destinationGcsUri.
*/
java.lang.String getDestinationGcsUri();
/**
*
*
*
* Output only. A Cloud Storage URI of a folder that metadata are exported
* to, in the form of
* `gs://<bucket_name>/<path_inside_bucket>/<export_folder>`, where
* `<export_folder>` is automatically generated.
*
*
* string destination_gcs_uri = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
* @return The bytes for destinationGcsUri.
*/
com.google.protobuf.ByteString getDestinationGcsUriBytes();
/**
*
*
*
* Output only. The time when the export started.
*
*
* .google.protobuf.Timestamp start_time = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return Whether the startTime field is set.
*/
boolean hasStartTime();
/**
*
*
*
* Output only. The time when the export started.
*
*
* .google.protobuf.Timestamp start_time = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return The startTime.
*/
com.google.protobuf.Timestamp getStartTime();
/**
*
*
*
* Output only. The time when the export started.
*
*
* .google.protobuf.Timestamp start_time = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*/
com.google.protobuf.TimestampOrBuilder getStartTimeOrBuilder();
/**
*
*
*
* Output only. The time when the export ended.
*
*
* .google.protobuf.Timestamp end_time = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return Whether the endTime field is set.
*/
boolean hasEndTime();
/**
*
*
*
* Output only. The time when the export ended.
*
*
* .google.protobuf.Timestamp end_time = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return The endTime.
*/
com.google.protobuf.Timestamp getEndTime();
/**
*
*
*
* Output only. The time when the export ended.
*
*
* .google.protobuf.Timestamp end_time = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*/
com.google.protobuf.TimestampOrBuilder getEndTimeOrBuilder();
/**
*
*
*
* Output only. The current state of the export.
*
*
*
* .google.cloud.metastore.v1beta.MetadataExport.State state = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return The enum numeric value on the wire for state.
*/
int getStateValue();
/**
*
*
*
* Output only. The current state of the export.
*
*
*
* .google.cloud.metastore.v1beta.MetadataExport.State state = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return The state.
*/
com.google.cloud.metastore.v1beta.MetadataExport.State getState();
/**
*
*
*
* Output only. The type of the database dump.
*
*
*
* .google.cloud.metastore.v1beta.DatabaseDumpSpec.Type database_dump_type = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return The enum numeric value on the wire for databaseDumpType.
*/
int getDatabaseDumpTypeValue();
/**
*
*
*
* Output only. The type of the database dump.
*
*
*
* .google.cloud.metastore.v1beta.DatabaseDumpSpec.Type database_dump_type = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return The databaseDumpType.
*/
com.google.cloud.metastore.v1beta.DatabaseDumpSpec.Type getDatabaseDumpType();
com.google.cloud.metastore.v1beta.MetadataExport.DestinationCase getDestinationCase();
}