com.google.cloud.retail.v2alpha.ImportMetadataOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-retail-v2alpha Show documentation
Show all versions of proto-google-cloud-retail-v2alpha Show documentation
Proto library for google-cloud-retail
/*
* 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/retail/v2alpha/import_config.proto
// Protobuf Java Version: 3.25.5
package com.google.cloud.retail.v2alpha;
public interface ImportMetadataOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.retail.v2alpha.ImportMetadata)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Operation create time.
*
*
* .google.protobuf.Timestamp create_time = 1;
*
* @return Whether the createTime field is set.
*/
boolean hasCreateTime();
/**
*
*
*
* Operation create time.
*
*
* .google.protobuf.Timestamp create_time = 1;
*
* @return The createTime.
*/
com.google.protobuf.Timestamp getCreateTime();
/**
*
*
*
* Operation create time.
*
*
* .google.protobuf.Timestamp create_time = 1;
*/
com.google.protobuf.TimestampOrBuilder getCreateTimeOrBuilder();
/**
*
*
*
* Operation last update time. If the operation is done, this is also the
* finish time.
*
*
* .google.protobuf.Timestamp update_time = 2;
*
* @return Whether the updateTime field is set.
*/
boolean hasUpdateTime();
/**
*
*
*
* Operation last update time. If the operation is done, this is also the
* finish time.
*
*
* .google.protobuf.Timestamp update_time = 2;
*
* @return The updateTime.
*/
com.google.protobuf.Timestamp getUpdateTime();
/**
*
*
*
* Operation last update time. If the operation is done, this is also the
* finish time.
*
*
* .google.protobuf.Timestamp update_time = 2;
*/
com.google.protobuf.TimestampOrBuilder getUpdateTimeOrBuilder();
/**
*
*
*
* Count of entries that were processed successfully.
*
*
* int64 success_count = 3;
*
* @return The successCount.
*/
long getSuccessCount();
/**
*
*
*
* Count of entries that encountered errors while processing.
*
*
* int64 failure_count = 4;
*
* @return The failureCount.
*/
long getFailureCount();
/**
*
*
*
* Deprecated. This field is never set.
*
*
* string request_id = 5 [deprecated = true];
*
* @deprecated google.cloud.retail.v2alpha.ImportMetadata.request_id is deprecated. See
* google/cloud/retail/v2alpha/import_config.proto;l=345
* @return The requestId.
*/
@java.lang.Deprecated
java.lang.String getRequestId();
/**
*
*
*
* Deprecated. This field is never set.
*
*
* string request_id = 5 [deprecated = true];
*
* @deprecated google.cloud.retail.v2alpha.ImportMetadata.request_id is deprecated. See
* google/cloud/retail/v2alpha/import_config.proto;l=345
* @return The bytes for requestId.
*/
@java.lang.Deprecated
com.google.protobuf.ByteString getRequestIdBytes();
/**
*
*
*
* Pub/Sub topic for receiving notification. If this field is set,
* when the import is finished, a notification is sent to
* specified Pub/Sub topic. The message data is JSON string of a
* [Operation][google.longrunning.Operation].
* Format of the Pub/Sub topic is `projects/{project}/topics/{topic}`.
*
*
* string notification_pubsub_topic = 6;
*
* @return The notificationPubsubTopic.
*/
java.lang.String getNotificationPubsubTopic();
/**
*
*
*
* Pub/Sub topic for receiving notification. If this field is set,
* when the import is finished, a notification is sent to
* specified Pub/Sub topic. The message data is JSON string of a
* [Operation][google.longrunning.Operation].
* Format of the Pub/Sub topic is `projects/{project}/topics/{topic}`.
*
*
* string notification_pubsub_topic = 6;
*
* @return The bytes for notificationPubsubTopic.
*/
com.google.protobuf.ByteString getNotificationPubsubTopicBytes();
/**
*
*
*
* Metadata related to transform user events.
*
*
*
* .google.cloud.retail.v2alpha.TransformedUserEventsMetadata transformed_user_events_metadata = 7;
*
*
* @return Whether the transformedUserEventsMetadata field is set.
*/
boolean hasTransformedUserEventsMetadata();
/**
*
*
*
* Metadata related to transform user events.
*
*
*
* .google.cloud.retail.v2alpha.TransformedUserEventsMetadata transformed_user_events_metadata = 7;
*
*
* @return The transformedUserEventsMetadata.
*/
com.google.cloud.retail.v2alpha.TransformedUserEventsMetadata getTransformedUserEventsMetadata();
/**
*
*
*
* Metadata related to transform user events.
*
*
*
* .google.cloud.retail.v2alpha.TransformedUserEventsMetadata transformed_user_events_metadata = 7;
*
*/
com.google.cloud.retail.v2alpha.TransformedUserEventsMetadataOrBuilder
getTransformedUserEventsMetadataOrBuilder();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy