class Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1EntryGroup

Entry group metadata. An `EntryGroup` resource represents a logical grouping of zero or more Data Catalog Entry resources.

Attributes

data_catalog_timestamps[RW]

Timestamps associated with this resource in a particular system. Corresponds to the JSON property `dataCatalogTimestamps` @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1SystemTimestamps]

description[RW]

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]

display_name[RW]

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]

name[RW]

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

new(**args) click to toggle source
# File lib/google/apis/datacatalog_v1/classes.rb, line 714
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

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