pub struct GoogleCloudDataplexV1Content {
pub create_time: Option<DateTime<Utc>>,
pub data_text: Option<String>,
pub description: Option<String>,
pub labels: Option<HashMap<String, String>>,
pub name: Option<String>,
pub notebook: Option<GoogleCloudDataplexV1ContentNotebook>,
pub path: Option<String>,
pub sql_script: Option<GoogleCloudDataplexV1ContentSqlScript>,
pub uid: Option<String>,
pub update_time: Option<DateTime<Utc>>,
}Expand description
Content represents a user-visible notebook or a sql script
§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 content create projects (request|response)
- locations lakes content get projects (response)
- locations lakes content patch projects (request|response)
- locations lakes contentitems create projects (request|response)
- locations lakes contentitems get projects (response)
- locations lakes contentitems patch projects (request|response)
Fields§
§create_time: Option<DateTime<Utc>>Output only. Content creation time.
data_text: Option<String>Required. Content data in string format.
description: Option<String>Optional. Description of the content.
labels: Option<HashMap<String, String>>Optional. User defined labels for the content.
name: Option<String>Output only. The relative resource name of the content, of the form: projects/{project_id}/locations/{location_id}/lakes/{lake_id}/content/{content_id}
notebook: Option<GoogleCloudDataplexV1ContentNotebook>Notebook related configurations.
path: Option<String>Required. The path for the Content file, represented as directory structure. Unique within a lake. Limited to alphanumerics, hyphens, underscores, dots and slashes.
sql_script: Option<GoogleCloudDataplexV1ContentSqlScript>Sql Script related configurations.
uid: Option<String>Output only. System generated globally unique ID for the content. This ID will be different if the content is deleted and re-created with the same name.
update_time: Option<DateTime<Utc>>Output only. The time when the content was last updated.
Trait Implementations§
Source§impl Clone for GoogleCloudDataplexV1Content
impl Clone for GoogleCloudDataplexV1Content
Source§fn clone(&self) -> GoogleCloudDataplexV1Content
fn clone(&self) -> GoogleCloudDataplexV1Content
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for GoogleCloudDataplexV1Content
impl Debug for GoogleCloudDataplexV1Content
Source§impl Default for GoogleCloudDataplexV1Content
impl Default for GoogleCloudDataplexV1Content
Source§fn default() -> GoogleCloudDataplexV1Content
fn default() -> GoogleCloudDataplexV1Content
Source§impl<'de> Deserialize<'de> for GoogleCloudDataplexV1Content
impl<'de> Deserialize<'de> for GoogleCloudDataplexV1Content
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 GoogleCloudDataplexV1Content
impl ResponseResult for GoogleCloudDataplexV1Content
Auto Trait Implementations§
impl Freeze for GoogleCloudDataplexV1Content
impl RefUnwindSafe for GoogleCloudDataplexV1Content
impl Send for GoogleCloudDataplexV1Content
impl Sync for GoogleCloudDataplexV1Content
impl Unpin for GoogleCloudDataplexV1Content
impl UnwindSafe for GoogleCloudDataplexV1Content
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