Interface ImportCatalogItemsRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ImportCatalogItemsRequest,ImportCatalogItemsRequest.Builder
public interface ImportCatalogItemsRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ImportErrorsConfiggetErrorsConfig()Optional.ImportErrorsConfigOrBuildergetErrorsConfigOrBuilder()Optional.InputConfiggetInputConfig()Required.InputConfigOrBuildergetInputConfigOrBuilder()Required.StringgetParent()Required.com.google.protobuf.ByteStringgetParentBytes()Required.StringgetRequestId()Optional.com.google.protobuf.ByteStringgetRequestIdBytes()Optional.booleanhasErrorsConfig()Optional.booleanhasInputConfig()Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getParent
String getParent()
Required. `projects/1234/locations/global/catalogs/default_catalog`
string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }- Returns:
- The parent.
-
getParentBytes
com.google.protobuf.ByteString getParentBytes()
Required. `projects/1234/locations/global/catalogs/default_catalog`
string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }- Returns:
- The bytes for parent.
-
getRequestId
String getRequestId()
Optional. Unique identifier provided by client, within the ancestor dataset scope. Ensures idempotency and used for request deduplication. Server-generated if unspecified. Up to 128 characters long. This is returned as google.longrunning.Operation.name in the response.
string request_id = 2 [(.google.api.field_behavior) = OPTIONAL];- Returns:
- The requestId.
-
getRequestIdBytes
com.google.protobuf.ByteString getRequestIdBytes()
Optional. Unique identifier provided by client, within the ancestor dataset scope. Ensures idempotency and used for request deduplication. Server-generated if unspecified. Up to 128 characters long. This is returned as google.longrunning.Operation.name in the response.
string request_id = 2 [(.google.api.field_behavior) = OPTIONAL];- Returns:
- The bytes for requestId.
-
hasInputConfig
boolean hasInputConfig()
Required. The desired input location of the data.
.google.cloud.recommendationengine.v1beta1.InputConfig input_config = 3 [(.google.api.field_behavior) = REQUIRED];- Returns:
- Whether the inputConfig field is set.
-
getInputConfig
InputConfig getInputConfig()
Required. The desired input location of the data.
.google.cloud.recommendationengine.v1beta1.InputConfig input_config = 3 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The inputConfig.
-
getInputConfigOrBuilder
InputConfigOrBuilder getInputConfigOrBuilder()
Required. The desired input location of the data.
.google.cloud.recommendationengine.v1beta1.InputConfig input_config = 3 [(.google.api.field_behavior) = REQUIRED];
-
hasErrorsConfig
boolean hasErrorsConfig()
Optional. The desired location of errors incurred during the Import.
.google.cloud.recommendationengine.v1beta1.ImportErrorsConfig errors_config = 4 [(.google.api.field_behavior) = OPTIONAL];- Returns:
- Whether the errorsConfig field is set.
-
getErrorsConfig
ImportErrorsConfig getErrorsConfig()
Optional. The desired location of errors incurred during the Import.
.google.cloud.recommendationengine.v1beta1.ImportErrorsConfig errors_config = 4 [(.google.api.field_behavior) = OPTIONAL];- Returns:
- The errorsConfig.
-
getErrorsConfigOrBuilder
ImportErrorsConfigOrBuilder getErrorsConfigOrBuilder()
Optional. The desired location of errors incurred during the Import.
.google.cloud.recommendationengine.v1beta1.ImportErrorsConfig errors_config = 4 [(.google.api.field_behavior) = OPTIONAL];
-
-