Class: Google::Apis::OracledatabaseV1::GoogleCloudStorageIcebergStorage

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 Google Cloud Storage Iceberg storage.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudStorageIcebergStorage

Returns a new instance of GoogleCloudStorageIcebergStorage.



7193
7194
7195
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 7193

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

Instance Attribute Details

#bucketString

Required. The bucket of Google Cloud Storage. Corresponds to the JSON property bucket

Returns:

  • (String)


7180
7181
7182
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 7180

def bucket
  @bucket
end

#project_idString

Required. The project ID of Google Cloud Storage. Corresponds to the JSON property projectId

Returns:

  • (String)


7185
7186
7187
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 7185

def project_id
  @project_id
end

#service_account_key_fileString

Optional. The base64 encoded content of the service account key file of Google Cloud Storage. Corresponds to the JSON property serviceAccountKeyFile

Returns:

  • (String)


7191
7192
7193
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 7191

def 
  @service_account_key_file
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7198
7199
7200
7201
7202
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 7198

def update!(**args)
  @bucket = args[:bucket] if args.key?(:bucket)
  @project_id = args[:project_id] if args.key?(:project_id)
  @service_account_key_file = args[:service_account_key_file] if args.key?(:service_account_key_file)
end