Interface UpdateCatalogItemRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
UpdateCatalogItemRequest
,UpdateCatalogItemRequest.Builder
public interface UpdateCatalogItemRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CatalogItem
getCatalogItem()
Required.CatalogItemOrBuilder
getCatalogItemOrBuilder()
Required.String
getName()
Required.com.google.protobuf.ByteString
getNameBytes()
Required.com.google.protobuf.FieldMask
getUpdateMask()
Optional.com.google.protobuf.FieldMaskOrBuilder
getUpdateMaskOrBuilder()
Optional.boolean
hasCatalogItem()
Required.boolean
hasUpdateMask()
Optional.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getName
String getName()
Required. Full resource name of catalog item, such as `projects/*/locations/global/catalogs/default_catalog/catalogItems/some_catalog_item_id`.
string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
Required. Full resource name of catalog item, such as `projects/*/locations/global/catalogs/default_catalog/catalogItems/some_catalog_item_id`.
string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The bytes for name.
-
hasCatalogItem
boolean hasCatalogItem()
Required. The catalog item to update/create. The 'catalog_item_id' field has to match that in the 'name'.
.google.cloud.recommendationengine.v1beta1.CatalogItem catalog_item = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- Whether the catalogItem field is set.
-
getCatalogItem
CatalogItem getCatalogItem()
Required. The catalog item to update/create. The 'catalog_item_id' field has to match that in the 'name'.
.google.cloud.recommendationengine.v1beta1.CatalogItem catalog_item = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The catalogItem.
-
getCatalogItemOrBuilder
CatalogItemOrBuilder getCatalogItemOrBuilder()
Required. The catalog item to update/create. The 'catalog_item_id' field has to match that in the 'name'.
.google.cloud.recommendationengine.v1beta1.CatalogItem catalog_item = 2 [(.google.api.field_behavior) = REQUIRED];
-
hasUpdateMask
boolean hasUpdateMask()
Optional. Indicates which fields in the provided 'item' to update. If not set, will by default update all fields.
.google.protobuf.FieldMask update_mask = 3;
- Returns:
- Whether the updateMask field is set.
-
getUpdateMask
com.google.protobuf.FieldMask getUpdateMask()
Optional. Indicates which fields in the provided 'item' to update. If not set, will by default update all fields.
.google.protobuf.FieldMask update_mask = 3;
- Returns:
- The updateMask.
-
getUpdateMaskOrBuilder
com.google.protobuf.FieldMaskOrBuilder getUpdateMaskOrBuilder()
Optional. Indicates which fields in the provided 'item' to update. If not set, will by default update all fields.
.google.protobuf.FieldMask update_mask = 3;
-
-