Class: Google::Apis::OracledatabaseV1::GoldengateMicrosoftFabricConnectionProperties
- Inherits:
-
Object
- Object
- Google::Apis::OracledatabaseV1::GoldengateMicrosoftFabricConnectionProperties
- 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
-
#client_id ⇒ String
Optional.
-
#client_secret ⇒ String
Optional.
-
#endpoint ⇒ String
Optional.
-
#technology_type ⇒ String
Optional.
-
#tenant_id ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoldengateMicrosoftFabricConnectionProperties
constructor
A new instance of GoldengateMicrosoftFabricConnectionProperties.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoldengateMicrosoftFabricConnectionProperties
Returns a new instance of GoldengateMicrosoftFabricConnectionProperties.
6346 6347 6348 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 6346 def initialize(**args) update!(**args) end |
Instance Attribute Details
#client_id ⇒ String
Optional. Azure client ID of the application.
Corresponds to the JSON property clientId
6323 6324 6325 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 6323 def client_id @client_id end |
#client_secret ⇒ String
Optional. Client secret associated with the client id.
Corresponds to the JSON property clientSecret
6328 6329 6330 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 6328 def client_secret @client_secret end |
#endpoint ⇒ String
Optional. Optional Microsoft Fabric service endpoint. Default value: https://
onelake.dfs.fabric.microsoft.com
Corresponds to the JSON property endpoint
6334 6335 6336 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 6334 def endpoint @endpoint end |
#technology_type ⇒ String
Optional. The technology type of MicrosoftFabricConnection.
Corresponds to the JSON property technologyType
6339 6340 6341 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 6339 def technology_type @technology_type end |
#tenant_id ⇒ String
Optional. Azure tenant ID of the application.
Corresponds to the JSON property tenantId
6344 6345 6346 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 6344 def tenant_id @tenant_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6351 6352 6353 6354 6355 6356 6357 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 6351 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 |