Class: Google::Apis::OracledatabaseV1::GoogleCloudStorageIcebergStorage
- Inherits:
-
Object
- Object
- Google::Apis::OracledatabaseV1::GoogleCloudStorageIcebergStorage
- 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
-
#bucket ⇒ String
Required.
-
#project_id ⇒ String
Required.
-
#service_account_key_file ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudStorageIcebergStorage
constructor
A new instance of GoogleCloudStorageIcebergStorage.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudStorageIcebergStorage
Returns a new instance of GoogleCloudStorageIcebergStorage.
7355 7356 7357 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 7355 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bucket ⇒ String
Required. The bucket of Google Cloud Storage.
Corresponds to the JSON property bucket
7342 7343 7344 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 7342 def bucket @bucket end |
#project_id ⇒ String
Required. The project ID of Google Cloud Storage.
Corresponds to the JSON property projectId
7347 7348 7349 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 7347 def project_id @project_id end |
#service_account_key_file ⇒ String
Optional. The base64 encoded content of the service account key file of Google
Cloud Storage.
Corresponds to the JSON property serviceAccountKeyFile
7353 7354 7355 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 7353 def service_account_key_file @service_account_key_file end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7360 7361 7362 7363 7364 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 7360 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 |