Class: Google::Apis::OracledatabaseV1::PolarisIcebergCatalog

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 Polaris Iceberg catalog.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ PolarisIcebergCatalog

Returns a new instance of PolarisIcebergCatalog.



8959
8960
8961
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 8959

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

Instance Attribute Details

#client_idString

Required. The Polaris client ID. Corresponds to the JSON property clientId

Returns:

  • (String)


8937
8938
8939
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 8937

def client_id
  @client_id
end

#client_secretString

Optional. The Polaris client secret. Corresponds to the JSON property clientSecret

Returns:

  • (String)


8942
8943
8944
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 8942

def client_secret
  @client_secret
end

#polaris_catalogString

Required. The catalog name within Polaris. Corresponds to the JSON property polarisCatalog

Returns:

  • (String)


8947
8948
8949
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 8947

def polaris_catalog
  @polaris_catalog
end

#principal_roleString

Required. The Polaris principal role. Corresponds to the JSON property principalRole

Returns:

  • (String)


8952
8953
8954
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 8952

def principal_role
  @principal_role
end

#uriString

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

Returns:

  • (String)


8957
8958
8959
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 8957

def uri
  @uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8964
8965
8966
8967
8968
8969
8970
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 8964

def update!(**args)
  @client_id = args[:client_id] if args.key?(:client_id)
  @client_secret = args[:client_secret] if args.key?(:client_secret)
  @polaris_catalog = args[:polaris_catalog] if args.key?(:polaris_catalog)
  @principal_role = args[:principal_role] if args.key?(:principal_role)
  @uri = args[:uri] if args.key?(:uri)
end