Class: Google::Apis::OracledatabaseV1::GoldengateAzureDataLakeStorageConnectionProperties
- Inherits:
-
Object
- Object
- Google::Apis::OracledatabaseV1::GoldengateAzureDataLakeStorageConnectionProperties
- 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 properties of GoldengateAzureDataLakeStorageConnection.
Instance Attribute Summary collapse
-
#account ⇒ String
Optional.
-
#account_key_secret ⇒ String
Optional.
-
#authentication_type ⇒ String
Optional.
-
#azure_authority_host ⇒ String
Optional.
-
#azure_tenant_id ⇒ String
Optional.
-
#client_id ⇒ String
Optional.
-
#client_secret ⇒ String
Optional.
-
#endpoint ⇒ String
Optional.
-
#sas_token_secret ⇒ String
Optional.
-
#technology_type ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoldengateAzureDataLakeStorageConnectionProperties
constructor
A new instance of GoldengateAzureDataLakeStorageConnectionProperties.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoldengateAzureDataLakeStorageConnectionProperties
Returns a new instance of GoldengateAzureDataLakeStorageConnectionProperties.
4059 4060 4061 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4059 def initialize(**args) update!(**args) end |
Instance Attribute Details
#account ⇒ String
Optional. Sets the Azure storage account name.
Corresponds to the JSON property account
4005 4006 4007 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4005 def account @account end |
#account_key_secret ⇒ String
Optional. Azure storage account key. This property is required when '
authentication_type' is set to 'SHARED_KEY'.
Corresponds to the JSON property accountKeySecret
4011 4012 4013 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4011 def account_key_secret @account_key_secret end |
#authentication_type ⇒ String
Optional. Authentication mechanism to access Azure Data Lake Storage.
Corresponds to the JSON property authenticationType
4016 4017 4018 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4016 def authentication_type @authentication_type end |
#azure_authority_host ⇒ String
Optional. The endpoint used for authentication with Microsoft Entra ID (
formerly Azure Active Directory). Default value: https://login.microsoftonline.
com
Corresponds to the JSON property azureAuthorityHost
4023 4024 4025 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4023 def @azure_authority_host end |
#azure_tenant_id ⇒ String
Optional. Azure tenant ID of the application. This property is required when '
authentication_type' is set to 'AZURE_ACTIVE_DIRECTORY'.
Corresponds to the JSON property azureTenantId
4029 4030 4031 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4029 def azure_tenant_id @azure_tenant_id end |
#client_id ⇒ String
Optional. Azure client ID of the application. This property is required when '
authentication_type' is set to 'AZURE_ACTIVE_DIRECTORY'.
Corresponds to the JSON property clientId
4035 4036 4037 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4035 def client_id @client_id end |
#client_secret ⇒ String
Optional. Azure client secret (aka application password) for authentication.
Corresponds to the JSON property clientSecret
4040 4041 4042 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4040 def client_secret @client_secret end |
#endpoint ⇒ String
Optional. Azure Storage service endpoint. e.g: https://test.blob.core.windows.
net
Corresponds to the JSON property endpoint
4046 4047 4048 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4046 def endpoint @endpoint end |
#sas_token_secret ⇒ String
Optional. Credential that uses a shared access signature (SAS) to authenticate
to an Azure Service.
Corresponds to the JSON property sasTokenSecret
4052 4053 4054 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4052 def sas_token_secret @sas_token_secret end |
#technology_type ⇒ String
Optional. The technology type of AzureDataLakeStorageConnection.
Corresponds to the JSON property technologyType
4057 4058 4059 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4057 def technology_type @technology_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4064 def update!(**args) @account = args[:account] if args.key?(:account) @account_key_secret = args[:account_key_secret] if args.key?(:account_key_secret) @authentication_type = args[:authentication_type] if args.key?(:authentication_type) @azure_authority_host = args[:azure_authority_host] if args.key?(:azure_authority_host) @azure_tenant_id = args[:azure_tenant_id] if args.key?(:azure_tenant_id) @client_id = args[:client_id] if args.key?(:client_id) @client_secret = args[:client_secret] if args.key?(:client_secret) @endpoint = args[:endpoint] if args.key?(:endpoint) @sas_token_secret = args[:sas_token_secret] if args.key?(:sas_token_secret) @technology_type = args[:technology_type] if args.key?(:technology_type) end |