Class: Google::Apis::OracledatabaseV1::AzureDataLakeStorageIcebergStorage

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 Azure Data Lake Storage Iceberg storage.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AzureDataLakeStorageIcebergStorage

Returns a new instance of AzureDataLakeStorageIcebergStorage.



1237
1238
1239
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 1237

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

Instance Attribute Details

#account_key_secretString

Optional. The account key of Azure Data Lake Storage. Corresponds to the JSON property accountKeySecret

Returns:

  • (String)


1220
1221
1222
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 1220

def 
  @account_key_secret
end

#azure_accountString

Required. The account of Azure Data Lake Storage. Corresponds to the JSON property azureAccount

Returns:

  • (String)


1225
1226
1227
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 1225

def 
  @azure_account
end

#containerString

Required. The container of Azure Data Lake Storage. Corresponds to the JSON property container

Returns:

  • (String)


1230
1231
1232
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 1230

def container
  @container
end

#endpointString

Optional. The endpoint of Azure Data Lake Storage. Corresponds to the JSON property endpoint

Returns:

  • (String)


1235
1236
1237
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 1235

def endpoint
  @endpoint
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1242
1243
1244
1245
1246
1247
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 1242

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