Class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1EntryOverview
- Inherits:
-
Object
- Object
- Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1EntryOverview
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/datacatalog_v1/classes.rb,
lib/google/apis/datacatalog_v1/representations.rb,
lib/google/apis/datacatalog_v1/representations.rb
Overview
Entry overview fields for rich text descriptions of entries.
Instance Attribute Summary collapse
-
#overview ⇒ String
Entry overview with support for rich text.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDatacatalogV1EntryOverview
constructor
A new instance of GoogleCloudDatacatalogV1EntryOverview.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDatacatalogV1EntryOverview
Returns a new instance of GoogleCloudDatacatalogV1EntryOverview.
1222 1223 1224 |
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 1222 def initialize(**args) update!(**args) end |
Instance Attribute Details
#overview ⇒ String
Entry overview with support for rich text. The overview must only contain
Unicode characters, and should be formatted using HTML. The maximum length is
10 MiB as this value holds HTML descriptions including encoded images. The
maximum length of the text without images is 100 KiB.
Corresponds to the JSON property overview
1220 1221 1222 |
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 1220 def overview @overview end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1227 1228 1229 |
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 1227 def update!(**args) @overview = args[:overview] if args.key?(:overview) end |