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.



9090
9091
9092
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 9090

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

Instance Attribute Details

#client_idString

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

Returns:

  • (String)


9068
9069
9070
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 9068

def client_id
  @client_id
end

#client_secretString

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

Returns:

  • (String)


9073
9074
9075
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 9073

def client_secret
  @client_secret
end

#polaris_catalogString

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

Returns:

  • (String)


9078
9079
9080
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 9078

def polaris_catalog
  @polaris_catalog
end

#principal_roleString

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

Returns:

  • (String)


9083
9084
9085
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 9083

def principal_role
  @principal_role
end

#uriString

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

Returns:

  • (String)


9088
9089
9090
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 9088

def uri
  @uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



9095
9096
9097
9098
9099
9100
9101
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 9095

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