Interface CreateCatalogRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CreateCatalogRequest
,CreateCatalogRequest.Builder
public interface CreateCatalogRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Catalog
getCatalog()
Required.String
getCatalogId()
Required.com.google.protobuf.ByteString
getCatalogIdBytes()
Required.CatalogOrBuilder
getCatalogOrBuilder()
Required.String
getParent()
Required.com.google.protobuf.ByteString
getParentBytes()
Required.boolean
hasCatalog()
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 resource where this catalog will be created. Format: projects/{project_id_or_number}/locations/{location_id}
string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The parent.
-
getParentBytes
com.google.protobuf.ByteString getParentBytes()
Required. The parent resource where this catalog will be created. Format: projects/{project_id_or_number}/locations/{location_id}
string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The bytes for parent.
-
hasCatalog
boolean hasCatalog()
Required. The catalog to create. The `name` field does not need to be provided.
.google.cloud.bigquery.biglake.v1.Catalog catalog = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- Whether the catalog field is set.
-
getCatalog
Catalog getCatalog()
Required. The catalog to create. The `name` field does not need to be provided.
.google.cloud.bigquery.biglake.v1.Catalog catalog = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The catalog.
-
getCatalogOrBuilder
CatalogOrBuilder getCatalogOrBuilder()
Required. The catalog to create. The `name` field does not need to be provided.
.google.cloud.bigquery.biglake.v1.Catalog catalog = 2 [(.google.api.field_behavior) = REQUIRED];
-
getCatalogId
String getCatalogId()
Required. The ID to use for the catalog, which will become the final component of the catalog's resource name.
string catalog_id = 3 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The catalogId.
-
getCatalogIdBytes
com.google.protobuf.ByteString getCatalogIdBytes()
Required. The ID to use for the catalog, which will become the final component of the catalog's resource name.
string catalog_id = 3 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The bytes for catalogId.
-
-