Class: Google::Apis::OracledatabaseV1::RestIcebergCatalog
- Inherits:
-
Object
- Object
- Google::Apis::OracledatabaseV1::RestIcebergCatalog
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/oracledatabase_v1/classes.rb,
lib/google/apis/oracledatabase_v1/representations.rb,
lib/google/apis/oracledatabase_v1/representations.rb
Overview
The REST Iceberg catalog.
Instance Attribute Summary collapse
-
#properties ⇒ String
Optional.
-
#uri ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RestIcebergCatalog
constructor
A new instance of RestIcebergCatalog.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RestIcebergCatalog
Returns a new instance of RestIcebergCatalog.
9016 9017 9018 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 9016 def initialize(**args) update!(**args) end |
Instance Attribute Details
#properties ⇒ String
Optional. The content of the configuration file containing additional
properties for the REST catalog.
Corresponds to the JSON property properties
9009 9010 9011 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 9009 def properties @properties end |
#uri ⇒ String
Required. The REST uri.
Corresponds to the JSON property uri
9014 9015 9016 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 9014 def uri @uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9021 9022 9023 9024 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 9021 def update!(**args) @properties = args[:properties] if args.key?(:properties) @uri = args[:uri] if args.key?(:uri) end |