Interface DataplexConfigOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DataplexConfig
,DataplexConfig.Builder
public interface DataplexConfigOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description boolean
containsLakeResources(String key)
A reference to the Lake resources that this metastore service is attached to.Map<String,Lake>
getLakeResources()
Deprecated.int
getLakeResourcesCount()
A reference to the Lake resources that this metastore service is attached to.Map<String,Lake>
getLakeResourcesMap()
A reference to the Lake resources that this metastore service is attached to.Lake
getLakeResourcesOrDefault(String key, Lake defaultValue)
A reference to the Lake resources that this metastore service is attached to.Lake
getLakeResourcesOrThrow(String key)
A reference to the Lake resources that this metastore service is attached to.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getLakeResourcesCount
int getLakeResourcesCount()
A reference to the Lake resources that this metastore service is attached to. The key is the lake resource name. Example: `projects/{project_number}/locations/{location_id}/lakes/{lake_id}`.
map<string, .google.cloud.metastore.v1alpha.Lake> lake_resources = 1;
-
containsLakeResources
boolean containsLakeResources(String key)
A reference to the Lake resources that this metastore service is attached to. The key is the lake resource name. Example: `projects/{project_number}/locations/{location_id}/lakes/{lake_id}`.
map<string, .google.cloud.metastore.v1alpha.Lake> lake_resources = 1;
-
getLakeResources
@Deprecated Map<String,Lake> getLakeResources()
Deprecated.UsegetLakeResourcesMap()
instead.
-
getLakeResourcesMap
Map<String,Lake> getLakeResourcesMap()
A reference to the Lake resources that this metastore service is attached to. The key is the lake resource name. Example: `projects/{project_number}/locations/{location_id}/lakes/{lake_id}`.
map<string, .google.cloud.metastore.v1alpha.Lake> lake_resources = 1;
-
getLakeResourcesOrDefault
Lake getLakeResourcesOrDefault(String key, Lake defaultValue)
A reference to the Lake resources that this metastore service is attached to. The key is the lake resource name. Example: `projects/{project_number}/locations/{location_id}/lakes/{lake_id}`.
map<string, .google.cloud.metastore.v1alpha.Lake> lake_resources = 1;
-
getLakeResourcesOrThrow
Lake getLakeResourcesOrThrow(String key)
A reference to the Lake resources that this metastore service is attached to. The key is the lake resource name. Example: `projects/{project_number}/locations/{location_id}/lakes/{lake_id}`.
map<string, .google.cloud.metastore.v1alpha.Lake> lake_resources = 1;
-
-