Package com.google.cloud.retail.v2beta
Interface CreateProductRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CreateProductRequest
,CreateProductRequest.Builder
public interface CreateProductRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getParent()
Required.com.google.protobuf.ByteString
getParentBytes()
Required.Product
getProduct()
Required.String
getProductId()
Required.com.google.protobuf.ByteString
getProductIdBytes()
Required.ProductOrBuilder
getProductOrBuilder()
Required.boolean
hasProduct()
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. The parent catalog resource name, such as `projects/*/locations/global/catalogs/default_catalog/branches/default_branch`.
string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The parent.
-
getParentBytes
com.google.protobuf.ByteString getParentBytes()
Required. The parent catalog resource name, such as `projects/*/locations/global/catalogs/default_catalog/branches/default_branch`.
string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The bytes for parent.
-
hasProduct
boolean hasProduct()
Required. The [Product][google.cloud.retail.v2beta.Product] to create.
.google.cloud.retail.v2beta.Product product = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- Whether the product field is set.
-
getProduct
Product getProduct()
Required. The [Product][google.cloud.retail.v2beta.Product] to create.
.google.cloud.retail.v2beta.Product product = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The product.
-
getProductOrBuilder
ProductOrBuilder getProductOrBuilder()
Required. The [Product][google.cloud.retail.v2beta.Product] to create.
.google.cloud.retail.v2beta.Product product = 2 [(.google.api.field_behavior) = REQUIRED];
-
getProductId
String getProductId()
Required. The ID to use for the [Product][google.cloud.retail.v2beta.Product], which will become the final component of the [Product.name][google.cloud.retail.v2beta.Product.name]. If the caller does not have permission to create the [Product][google.cloud.retail.v2beta.Product], regardless of whether or not it exists, a PERMISSION_DENIED error is returned. This field must be unique among all [Product][google.cloud.retail.v2beta.Product]s with the same [parent][google.cloud.retail.v2beta.CreateProductRequest.parent]. Otherwise, an ALREADY_EXISTS error is returned. This field must be a UTF-8 encoded string with a length limit of 128 characters. Otherwise, an INVALID_ARGUMENT error is returned.
string product_id = 3 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The productId.
-
getProductIdBytes
com.google.protobuf.ByteString getProductIdBytes()
Required. The ID to use for the [Product][google.cloud.retail.v2beta.Product], which will become the final component of the [Product.name][google.cloud.retail.v2beta.Product.name]. If the caller does not have permission to create the [Product][google.cloud.retail.v2beta.Product], regardless of whether or not it exists, a PERMISSION_DENIED error is returned. This field must be unique among all [Product][google.cloud.retail.v2beta.Product]s with the same [parent][google.cloud.retail.v2beta.CreateProductRequest.parent]. Otherwise, an ALREADY_EXISTS error is returned. This field must be a UTF-8 encoded string with a length limit of 128 characters. Otherwise, an INVALID_ARGUMENT error is returned.
string product_id = 3 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The bytes for productId.
-
-