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.



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

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

Instance Attribute Details

#client_idString

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

Returns:

  • (String)


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

def client_id
  @client_id
end

#client_secretString

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

Returns:

  • (String)


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

def client_secret
  @client_secret
end

#polaris_catalogString

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

Returns:

  • (String)


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

def polaris_catalog
  @polaris_catalog
end

#principal_roleString

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

Returns:

  • (String)


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

def principal_role
  @principal_role
end

#uriString

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

Returns:

  • (String)


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

def uri
  @uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



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

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