pub struct GoogleCloudDataplexV1Entity {Show 18 fields
pub access: Option<GoogleCloudDataplexV1StorageAccess>,
pub asset: Option<String>,
pub catalog_entry: Option<String>,
pub compatibility: Option<GoogleCloudDataplexV1EntityCompatibilityStatus>,
pub create_time: Option<DateTime<Utc>>,
pub data_path: Option<String>,
pub data_path_pattern: Option<String>,
pub description: Option<String>,
pub display_name: Option<String>,
pub etag: Option<String>,
pub format: Option<GoogleCloudDataplexV1StorageFormat>,
pub id: Option<String>,
pub name: Option<String>,
pub schema: Option<GoogleCloudDataplexV1Schema>,
pub system: Option<String>,
pub type_: Option<String>,
pub uid: Option<String>,
pub update_time: Option<DateTime<Utc>>,
}
Expand description
Represents tables and fileset metadata contained within a zone.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- locations lakes zones entities create projects (request|response)
- locations lakes zones entities get projects (response)
- locations lakes zones entities update projects (request|response)
Fields§
§access: Option<GoogleCloudDataplexV1StorageAccess>
Output only. Identifies the access mechanism to the entity. Not user settable.
asset: Option<String>
Required. Immutable. The ID of the asset associated with the storage location containing the entity data. The entity must be with in the same zone with the asset.
catalog_entry: Option<String>
Output only. The name of the associated Data Catalog entry.
compatibility: Option<GoogleCloudDataplexV1EntityCompatibilityStatus>
Output only. Metadata stores that the entity is compatible with.
create_time: Option<DateTime<Utc>>
Output only. The time when the entity was created.
data_path: Option<String>
Required. Immutable. The storage path of the entity data. For Cloud Storage data, this is the fully-qualified path to the entity, such as gs://bucket/path/to/data. For BigQuery data, this is the name of the table resource, such as projects/project_id/datasets/dataset_id/tables/table_id.
data_path_pattern: Option<String>
Optional. The set of items within the data path constituting the data in the entity, represented as a glob path. Example: gs://bucket/path/to/data/**/*.csv.
description: Option<String>
Optional. User friendly longer description text. Must be shorter than or equal to 1024 characters.
display_name: Option<String>
Optional. Display name must be shorter than or equal to 256 characters.
etag: Option<String>
Optional. The etag associated with the entity, which can be retrieved with a GetEntity request. Required for update and delete requests.
format: Option<GoogleCloudDataplexV1StorageFormat>
Required. Identifies the storage format of the entity data. It does not apply to entities with data stored in BigQuery.
id: Option<String>
Required. A user-provided entity ID. It is mutable, and will be used as the published table name. Specifying a new ID in an update entity request will override the existing value. The ID must contain only letters (a-z, A-Z), numbers (0-9), and underscores, and consist of 256 or fewer characters.
name: Option<String>
Output only. The resource name of the entity, of the form: projects/{project_number}/locations/{location_id}/lakes/{lake_id}/zones/{zone_id}/entities/{id}.
schema: Option<GoogleCloudDataplexV1Schema>
Required. The description of the data structure and layout. The schema is not included in list responses. It is only included in SCHEMA and FULL entity views of a GetEntity response.
system: Option<String>
Required. Immutable. Identifies the storage system of the entity data.
type_: Option<String>
Required. Immutable. The type of entity.
uid: Option<String>
Output only. System generated unique ID for the Entity. This ID will be different if the Entity is deleted and re-created with the same name.
update_time: Option<DateTime<Utc>>
Output only. The time when the entity was last updated.
Trait Implementations§
Source§impl Clone for GoogleCloudDataplexV1Entity
impl Clone for GoogleCloudDataplexV1Entity
Source§fn clone(&self) -> GoogleCloudDataplexV1Entity
fn clone(&self) -> GoogleCloudDataplexV1Entity
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for GoogleCloudDataplexV1Entity
impl Debug for GoogleCloudDataplexV1Entity
Source§impl Default for GoogleCloudDataplexV1Entity
impl Default for GoogleCloudDataplexV1Entity
Source§fn default() -> GoogleCloudDataplexV1Entity
fn default() -> GoogleCloudDataplexV1Entity
Source§impl<'de> Deserialize<'de> for GoogleCloudDataplexV1Entity
impl<'de> Deserialize<'de> for GoogleCloudDataplexV1Entity
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
impl RequestValue for GoogleCloudDataplexV1Entity
impl ResponseResult for GoogleCloudDataplexV1Entity
Auto Trait Implementations§
impl Freeze for GoogleCloudDataplexV1Entity
impl RefUnwindSafe for GoogleCloudDataplexV1Entity
impl Send for GoogleCloudDataplexV1Entity
impl Sync for GoogleCloudDataplexV1Entity
impl Unpin for GoogleCloudDataplexV1Entity
impl UnwindSafe for GoogleCloudDataplexV1Entity
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more