Class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1EntryGroup
- Inherits:
-
Object
- Object
- Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1EntryGroup
- 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 group metadata. An EntryGroup resource represents a logical grouping
of zero or more Data Catalog Entry resources.
Instance Attribute Summary collapse
-
#data_catalog_timestamps ⇒ Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1SystemTimestamps
Timestamps associated with this resource in a particular system.
-
#description ⇒ String
Entry group description.
-
#display_name ⇒ String
A short name to identify the entry group, for example, "analytics data - jan 2011".
-
#name ⇒ String
The resource name of the entry group in URL format.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDatacatalogV1EntryGroup
constructor
A new instance of GoogleCloudDatacatalogV1EntryGroup.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDatacatalogV1EntryGroup
Returns a new instance of GoogleCloudDatacatalogV1EntryGroup.
1251 1252 1253 |
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 1251 def initialize(**args) update!(**args) end |
Instance Attribute Details
#data_catalog_timestamps ⇒ Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1SystemTimestamps
Timestamps associated with this resource in a particular system.
Corresponds to the JSON property dataCatalogTimestamps
1230 1231 1232 |
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 1230 def @data_catalog_timestamps end |
#description ⇒ String
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
1236 1237 1238 |
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 1236 def description @description end |
#display_name ⇒ 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
1242 1243 1244 |
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 1242 def display_name @display_name end |
#name ⇒ 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
1249 1250 1251 |
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 1249 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1256 1257 1258 1259 1260 1261 |
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 1256 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 |