Class: Google::Apis::OracledatabaseV1::AmazonS3IcebergStorage
- Inherits:
-
Object
- Object
- Google::Apis::OracledatabaseV1::AmazonS3IcebergStorage
- 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 Amazon S3 Iceberg storage.
Instance Attribute Summary collapse
-
#access_key_id ⇒ String
Required.
-
#bucket ⇒ String
Required.
-
#endpoint ⇒ String
Optional.
-
#region ⇒ String
Required.
-
#scheme_type ⇒ String
Required.
-
#secret_access_key_secret ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AmazonS3IcebergStorage
constructor
A new instance of AmazonS3IcebergStorage.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AmazonS3IcebergStorage
Returns a new instance of AmazonS3IcebergStorage.
94 95 96 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 94 def initialize(**args) update!(**args) end |
Instance Attribute Details
#access_key_id ⇒ String
Required. The access key ID of Amazon S3.
Corresponds to the JSON property accessKeyId
67 68 69 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 67 def access_key_id @access_key_id end |
#bucket ⇒ String
Required. The bucket of Amazon S3.
Corresponds to the JSON property bucket
72 73 74 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 72 def bucket @bucket end |
#endpoint ⇒ String
Optional. The endpoint of Amazon S3.
Corresponds to the JSON property endpoint
77 78 79 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 77 def endpoint @endpoint end |
#region ⇒ String
Required. The region of Amazon S3.
Corresponds to the JSON property region
82 83 84 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 82 def region @region end |
#scheme_type ⇒ String
Required. The scheme type of Amazon S3.
Corresponds to the JSON property schemeType
87 88 89 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 87 def scheme_type @scheme_type end |
#secret_access_key_secret ⇒ String
Optional. The secret access key of Amazon S3.
Corresponds to the JSON property secretAccessKeySecret
92 93 94 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 92 def secret_access_key_secret @secret_access_key_secret end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
99 100 101 102 103 104 105 106 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 99 def update!(**args) @access_key_id = args[:access_key_id] if args.key?(:access_key_id) @bucket = args[:bucket] if args.key?(:bucket) @endpoint = args[:endpoint] if args.key?(:endpoint) @region = args[:region] if args.key?(:region) @scheme_type = args[:scheme_type] if args.key?(:scheme_type) @secret_access_key_secret = args[:secret_access_key_secret] if args.key?(:secret_access_key_secret) end |