Class: Google::Apis::OracledatabaseV1::RestIcebergCatalog

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ RestIcebergCatalog

Returns a new instance of RestIcebergCatalog.



9017
9018
9019
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 9017

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

Instance Attribute Details

#propertiesString

Optional. The base64 encoded content of the configuration file containing additional properties for the REST catalog. Corresponds to the JSON property properties

Returns:

  • (String)


9010
9011
9012
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 9010

def properties
  @properties
end

#uriString

Required. The REST uri. Corresponds to the JSON property uri

Returns:

  • (String)


9015
9016
9017
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 9015

def uri
  @uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



9022
9023
9024
9025
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 9022

def update!(**args)
  @properties = args[:properties] if args.key?(:properties)
  @uri = args[:uri] if args.key?(:uri)
end