Class: Google::Apis::MetastoreV1beta::CatalogSummary
- Inherits:
-
Object
- Object
- Google::Apis::MetastoreV1beta::CatalogSummary
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/metastore_v1beta/classes.rb,
lib/google/apis/metastore_v1beta/representations.rb,
lib/google/apis/metastore_v1beta/representations.rb
Overview
Summary of results for a specific destination catalog.
Instance Attribute Summary collapse
-
#catalog ⇒ String
Output only.
-
#catalog_type ⇒ String
Output only.
-
#database_summaries ⇒ Array<Google::Apis::MetastoreV1beta::DatabaseSummary>
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CatalogSummary
constructor
A new instance of CatalogSummary.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CatalogSummary
Returns a new instance of CatalogSummary.
589 590 591 |
# File 'lib/google/apis/metastore_v1beta/classes.rb', line 589 def initialize(**args) update!(**args) end |
Instance Attribute Details
#catalog ⇒ String
Output only. The catalog resource name (format: projects//catalogs/).
Corresponds to the JSON property catalog
577 578 579 |
# File 'lib/google/apis/metastore_v1beta/classes.rb', line 577 def catalog @catalog end |
#catalog_type ⇒ String
Output only. The type of the catalog.
Corresponds to the JSON property catalogType
582 583 584 |
# File 'lib/google/apis/metastore_v1beta/classes.rb', line 582 def catalog_type @catalog_type end |
#database_summaries ⇒ Array<Google::Apis::MetastoreV1beta::DatabaseSummary>
Output only. Summary of results for each database in the catalog.
Corresponds to the JSON property databaseSummaries
587 588 589 |
# File 'lib/google/apis/metastore_v1beta/classes.rb', line 587 def database_summaries @database_summaries end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
594 595 596 597 598 |
# File 'lib/google/apis/metastore_v1beta/classes.rb', line 594 def update!(**args) @catalog = args[:catalog] if args.key?(:catalog) @catalog_type = args[:catalog_type] if args.key?(:catalog_type) @database_summaries = args[:database_summaries] if args.key?(:database_summaries) end |