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.



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

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

Instance Attribute Details

#client_idString

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

Returns:

  • (String)


8934
8935
8936
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 8934

def client_id
  @client_id
end

#client_secretString

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

Returns:

  • (String)


8939
8940
8941
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 8939

def client_secret
  @client_secret
end

#polaris_catalogString

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

Returns:

  • (String)


8944
8945
8946
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 8944

def polaris_catalog
  @polaris_catalog
end

#principal_roleString

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

Returns:

  • (String)


8949
8950
8951
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 8949

def principal_role
  @principal_role
end

#uriString

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

Returns:

  • (String)


8954
8955
8956
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 8954

def uri
  @uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8961
8962
8963
8964
8965
8966
8967
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 8961

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