Class: Google::Apis::OracledatabaseV1::GoldengateMicrosoftFabricConnectionProperties

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 GoldengateMicrosoftFabricConnection.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoldengateMicrosoftFabricConnectionProperties

Returns a new instance of GoldengateMicrosoftFabricConnectionProperties.



6215
6216
6217
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 6215

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

Instance Attribute Details

#client_idString

Optional. Azure client ID of the application. Corresponds to the JSON property clientId

Returns:

  • (String)


6192
6193
6194
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 6192

def client_id
  @client_id
end

#client_secretString

Optional. Client secret associated with the client id. Corresponds to the JSON property clientSecret

Returns:

  • (String)


6197
6198
6199
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 6197

def client_secret
  @client_secret
end

#endpointString

Optional. Optional Microsoft Fabric service endpoint. Default value: https:// onelake.dfs.fabric.microsoft.com Corresponds to the JSON property endpoint

Returns:

  • (String)


6203
6204
6205
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 6203

def endpoint
  @endpoint
end

#technology_typeString

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

Returns:

  • (String)


6208
6209
6210
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 6208

def technology_type
  @technology_type
end

#tenant_idString

Optional. Azure tenant ID of the application. Corresponds to the JSON property tenantId

Returns:

  • (String)


6213
6214
6215
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 6213

def tenant_id
  @tenant_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6220
6221
6222
6223
6224
6225
6226
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 6220

def update!(**args)
  @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)
  @technology_type = args[:technology_type] if args.key?(:technology_type)
  @tenant_id = args[:tenant_id] if args.key?(:tenant_id)
end