Class: Google::Apis::OracledatabaseV1::GoldengateAzureDataLakeStorageConnectionProperties

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 properties of GoldengateAzureDataLakeStorageConnection.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoldengateAzureDataLakeStorageConnectionProperties

Returns a new instance of GoldengateAzureDataLakeStorageConnectionProperties.



3981
3982
3983
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3981

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

Instance Attribute Details

#accountString

Optional. Sets the Azure storage account name. Corresponds to the JSON property account

Returns:

  • (String)


3927
3928
3929
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3927

def 
  @account
end

#account_key_secretString

Optional. Azure storage account key. This property is required when ' authentication_type' is set to 'SHARED_KEY'. Corresponds to the JSON property accountKeySecret

Returns:

  • (String)


3933
3934
3935
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3933

def 
  @account_key_secret
end

#authentication_typeString

Optional. Authentication mechanism to access Azure Data Lake Storage. Corresponds to the JSON property authenticationType

Returns:

  • (String)


3938
3939
3940
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3938

def authentication_type
  @authentication_type
end

#azure_authority_hostString

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

Returns:

  • (String)


3945
3946
3947
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3945

def azure_authority_host
  @azure_authority_host
end

#azure_tenant_idString

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

Returns:

  • (String)


3951
3952
3953
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3951

def azure_tenant_id
  @azure_tenant_id
end

#client_idString

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

Returns:

  • (String)


3957
3958
3959
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3957

def client_id
  @client_id
end

#client_secretString

Optional. Azure client secret (aka application password) for authentication. Corresponds to the JSON property clientSecret

Returns:

  • (String)


3962
3963
3964
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3962

def client_secret
  @client_secret
end

#endpointString

Optional. Azure Storage service endpoint. e.g: https://test.blob.core.windows. net Corresponds to the JSON property endpoint

Returns:

  • (String)


3968
3969
3970
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3968

def endpoint
  @endpoint
end

#sas_token_secretString

Optional. Credential that uses a shared access signature (SAS) to authenticate to an Azure Service. Corresponds to the JSON property sasTokenSecret

Returns:

  • (String)


3974
3975
3976
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3974

def sas_token_secret
  @sas_token_secret
end

#technology_typeString

Optional. The technology type of AzureDataLakeStorageConnection. Corresponds to the JSON property technologyType

Returns:

  • (String)


3979
3980
3981
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3979

def technology_type
  @technology_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3986

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