/*
* 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/catalog.proto
// Protobuf Java Version: 3.25.5
package com.google.cloud.dataplex.v1;
public interface AspectOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.dataplex.v1.Aspect)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Output only. The resource name of the type used to create this Aspect.
*
*
* string aspect_type = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
* @return The aspectType.
*/
java.lang.String getAspectType();
/**
*
*
*
* Output only. The resource name of the type used to create this Aspect.
*
*
* string aspect_type = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
* @return The bytes for aspectType.
*/
com.google.protobuf.ByteString getAspectTypeBytes();
/**
*
*
*
* Output only. The path in the entry under which the aspect is attached.
*
*
* string path = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
* @return The path.
*/
java.lang.String getPath();
/**
*
*
*
* Output only. The path in the entry under which the aspect is attached.
*
*
* string path = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
* @return The bytes for path.
*/
com.google.protobuf.ByteString getPathBytes();
/**
*
*
*
* Output only. The time when the Aspect was created.
*
*
* .google.protobuf.Timestamp create_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return Whether the createTime field is set.
*/
boolean hasCreateTime();
/**
*
*
*
* Output only. The time when the Aspect was created.
*
*
* .google.protobuf.Timestamp create_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return The createTime.
*/
com.google.protobuf.Timestamp getCreateTime();
/**
*
*
*
* Output only. The time when the Aspect was created.
*
*
* .google.protobuf.Timestamp create_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*/
com.google.protobuf.TimestampOrBuilder getCreateTimeOrBuilder();
/**
*
*
*
* Output only. The time when the Aspect was last updated.
*
*
* .google.protobuf.Timestamp update_time = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return Whether the updateTime field is set.
*/
boolean hasUpdateTime();
/**
*
*
*
* Output only. The time when the Aspect was last updated.
*
*
* .google.protobuf.Timestamp update_time = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return The updateTime.
*/
com.google.protobuf.Timestamp getUpdateTime();
/**
*
*
*
* Output only. The time when the Aspect was last updated.
*
*
* .google.protobuf.Timestamp update_time = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*/
com.google.protobuf.TimestampOrBuilder getUpdateTimeOrBuilder();
/**
*
*
*
* Required. The content of the aspect, according to its aspect type schema.
* This will replace `content`.
* The maximum size of the field is 120KB (encoded as UTF-8).
*
*
* .google.protobuf.Struct data = 8 [(.google.api.field_behavior) = REQUIRED];
*
* @return Whether the data field is set.
*/
boolean hasData();
/**
*
*
*
* Required. The content of the aspect, according to its aspect type schema.
* This will replace `content`.
* The maximum size of the field is 120KB (encoded as UTF-8).
*
*
* .google.protobuf.Struct data = 8 [(.google.api.field_behavior) = REQUIRED];
*
* @return The data.
*/
com.google.protobuf.Struct getData();
/**
*
*
*
* Required. The content of the aspect, according to its aspect type schema.
* This will replace `content`.
* The maximum size of the field is 120KB (encoded as UTF-8).
*
*
* .google.protobuf.Struct data = 8 [(.google.api.field_behavior) = REQUIRED];
*/
com.google.protobuf.StructOrBuilder getDataOrBuilder();
/**
*
* .google.cloud.dataplex.v1.AspectSource aspect_source = 9 [(.google.api.field_behavior) = OPTIONAL];
*
*
* @return Whether the aspectSource field is set.
*/
boolean hasAspectSource();
/**
*
* .google.cloud.dataplex.v1.AspectSource aspect_source = 9 [(.google.api.field_behavior) = OPTIONAL];
*
*
* @return The aspectSource.
*/
com.google.cloud.dataplex.v1.AspectSource getAspectSource();
/**
*
* .google.cloud.dataplex.v1.AspectSource aspect_source = 9 [(.google.api.field_behavior) = OPTIONAL];
*
*/
com.google.cloud.dataplex.v1.AspectSourceOrBuilder getAspectSourceOrBuilder();
}