Class: Google::Apis::OracledatabaseV1::AzureDataLakeStorageIcebergStorage
- Inherits:
-
Object
- Object
- Google::Apis::OracledatabaseV1::AzureDataLakeStorageIcebergStorage
- 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 Azure Data Lake Storage Iceberg storage.
Instance Attribute Summary collapse
-
#account_key_secret ⇒ String
Optional.
-
#azure_account ⇒ String
Required.
-
#container ⇒ String
Required.
-
#endpoint ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AzureDataLakeStorageIcebergStorage
constructor
A new instance of AzureDataLakeStorageIcebergStorage.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AzureDataLakeStorageIcebergStorage
Returns a new instance of AzureDataLakeStorageIcebergStorage.
1184 1185 1186 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 1184 def initialize(**args) update!(**args) end |
Instance Attribute Details
#account_key_secret ⇒ String
Optional. The account key of Azure Data Lake Storage.
Corresponds to the JSON property accountKeySecret
1167 1168 1169 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 1167 def account_key_secret @account_key_secret end |
#azure_account ⇒ String
Required. The account of Azure Data Lake Storage.
Corresponds to the JSON property azureAccount
1172 1173 1174 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 1172 def azure_account @azure_account end |
#container ⇒ String
Required. The container of Azure Data Lake Storage.
Corresponds to the JSON property container
1177 1178 1179 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 1177 def container @container end |
#endpoint ⇒ String
Optional. The endpoint of Azure Data Lake Storage.
Corresponds to the JSON property endpoint
1182 1183 1184 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 1182 def endpoint @endpoint end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1189 1190 1191 1192 1193 1194 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 1189 def update!(**args) @account_key_secret = args[:account_key_secret] if args.key?(:account_key_secret) @azure_account = args[:azure_account] if args.key?(:azure_account) @container = args[:container] if args.key?(:container) @endpoint = args[:endpoint] if args.key?(:endpoint) end |