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.



1184
1185
1186
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 1184

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)


1167
1168
1169
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 1167

def 
  @account_key_secret
end

#azure_accountString

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

Returns:

  • (String)


1172
1173
1174
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 1172

def 
  @azure_account
end

#containerString

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

Returns:

  • (String)


1177
1178
1179
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 1177

def container
  @container
end

#endpointString

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

Returns:

  • (String)


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