Class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1EntryGroup

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/datacatalog_v1beta1/classes.rb,
generated/google/apis/datacatalog_v1beta1/representations.rb,
generated/google/apis/datacatalog_v1beta1/representations.rb

Overview

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GoogleCloudDatacatalogV1beta1EntryGroup

Returns a new instance of GoogleCloudDatacatalogV1beta1EntryGroup.



516
517
518
# File 'generated/google/apis/datacatalog_v1beta1/classes.rb', line 516

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#data_catalog_timestampsGoogle::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1SystemTimestamps

Timestamps about this resource according to a particular system. Corresponds to the JSON property dataCatalogTimestamps



493
494
495
# File 'generated/google/apis/datacatalog_v1beta1/classes.rb', line 493

def data_catalog_timestamps
  @data_catalog_timestamps
end

#descriptionString

Entry group description, which can consist of several sentences or paragraphs that describe entry group contents. Default value is an empty string. Corresponds to the JSON property description

Returns:

  • (String)


500
501
502
# File 'generated/google/apis/datacatalog_v1beta1/classes.rb', line 500

def description
  @description
end

#display_nameString

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

Returns:

  • (String)


506
507
508
# File 'generated/google/apis/datacatalog_v1beta1/classes.rb', line 506

def display_name
  @display_name
end

#nameString

The resource name of the entry group in URL format. Example:

  • projects/project_id/locations/location/entryGroups/entry_group_id Note that this EntryGroup and its child resources may not actually be stored in the location in this name. Corresponds to the JSON property name

Returns:

  • (String)


514
515
516
# File 'generated/google/apis/datacatalog_v1beta1/classes.rb', line 514

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



521
522
523
524
525
526
# File 'generated/google/apis/datacatalog_v1beta1/classes.rb', line 521

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