View Source GoogleApi.Dataplex.V1.Model.GoogleCloudDataplexV1Content (google_api_dataplex v0.20.0)
Content represents a user-visible notebook or a sql script
Attributes
-
createTime
(type:DateTime.t
, default:nil
) - Output only. Content creation time. -
dataText
(type:String.t
, default:nil
) - Required. Content data in string format. -
description
(type:String.t
, default:nil
) - Optional. Description of the content. -
labels
(type:map()
, default:nil
) - Optional. User defined labels for the content. -
name
(type:String.t
, default:nil
) - 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
(type:GoogleApi.Dataplex.V1.Model.GoogleCloudDataplexV1ContentNotebook.t
, default:nil
) - Notebook related configurations. -
path
(type:String.t
, default:nil
) - Required. The path for the Content file, represented as directory structure. Unique within a lake. Limited to alphanumerics, hyphens, underscores, dots and slashes. -
sqlScript
(type:GoogleApi.Dataplex.V1.Model.GoogleCloudDataplexV1ContentSqlScript.t
, default:nil
) - Sql Script related configurations. -
uid
(type:String.t
, default:nil
) - 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. -
updateTime
(type:DateTime.t
, default:nil
) - Output only. The time when the content was last updated.
Summary
Functions
Unwrap a decoded JSON object into its complex fields.
Types
@type t() :: %GoogleApi.Dataplex.V1.Model.GoogleCloudDataplexV1Content{ createTime: DateTime.t() | nil, dataText: String.t() | nil, description: String.t() | nil, labels: map() | nil, name: String.t() | nil, notebook: GoogleApi.Dataplex.V1.Model.GoogleCloudDataplexV1ContentNotebook.t() | nil, path: String.t() | nil, sqlScript: GoogleApi.Dataplex.V1.Model.GoogleCloudDataplexV1ContentSqlScript.t() | nil, uid: String.t() | nil, updateTime: DateTime.t() | nil }