class Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1EntryGroup
Entry group metadata. An `EntryGroup` resource represents a logical grouping of zero or more Data Catalog Entry resources.
Attributes
Timestamps associated with this resource in a particular system. Corresponds to the JSON property `dataCatalogTimestamps` @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1SystemTimestamps]
Entry group description. Can consist of several sentences or paragraphs that describe the entry group contents. Default value is an empty string. Corresponds to the JSON property `description` @return [String]
A short name to identify the entry group, for example, “analytics data - jan 2011”. Default value is an empty string. Corresponds to the JSON property `displayName` @return [String]
The resource name of the entry group in URL format. Note: The entry group itself and its child resources might not be stored in the location specified in its name. Corresponds to the JSON property `name` @return [String]
Public Class Methods
# File lib/google/apis/datacatalog_v1/classes.rb, line 714 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/datacatalog_v1/classes.rb, line 719 def update!(**args) @data_catalog_timestamps = args[:data_catalog_timestamps] if args.key?(:data_catalog_timestamps) @description = args[:description] if args.key?(:description) @display_name = args[:display_name] if args.key?(:display_name) @name = args[:name] if args.key?(:name) end