Show / Hide Table of Contents

Class MicrosoftFabricConnection

Represents the metadata of a Microsoft Fabric Connection.

Inheritance
object
Connection
MicrosoftFabricConnection
Inherited Members
Connection.Id
Connection.DisplayName
Connection.Description
Connection.CompartmentId
Connection.FreeformTags
Connection.DefinedTags
Connection.SystemTags
Connection.LifecycleState
Connection.LifecycleDetails
Connection.TimeCreated
Connection.TimeUpdated
Connection.Locks
Connection.VaultId
Connection.KeyId
Connection.IngressIps
Connection.NsgIds
Connection.SubnetId
Connection.RoutingMethod
Connection.DoesUseSecretIds
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.GoldengateService.Models
Assembly: OCI.DotNetSDK.Goldengate.dll
Syntax
public class MicrosoftFabricConnection : Connection

Properties

ClientId

Declaration
[Required(ErrorMessage = "ClientId is required.")]
[JsonProperty(PropertyName = "clientId")]
public string ClientId { get; set; }
Property Value
Type Description
string

Azure client ID of the application. e.g.: 06ecaabf-8b80-4ec8-a0ec-20cbf463703d

Remarks

Required

ClientSecretSecretId

Declaration
[JsonProperty(PropertyName = "clientSecretSecretId")]
public string ClientSecretSecretId { get; set; }
Property Value
Type Description
string

The OCID of the Secret where the client secret is stored. Note: When provided, 'clientSecret' field must not be provided.

Endpoint

Declaration
[JsonProperty(PropertyName = "endpoint")]
public string Endpoint { get; set; }
Property Value
Type Description
string

Optional Microsoft Fabric service endpoint. Default value: https://onelake.dfs.fabric.microsoft.com

TechnologyType

Declaration
[Required(ErrorMessage = "TechnologyType is required.")]
[JsonProperty(PropertyName = "technologyType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public MicrosoftFabricConnection.TechnologyTypeEnum? TechnologyType { get; set; }
Property Value
Type Description
MicrosoftFabricConnection.TechnologyTypeEnum?

The Microsoft Fabric technology type.

Remarks

Required

TenantId

Declaration
[Required(ErrorMessage = "TenantId is required.")]
[JsonProperty(PropertyName = "tenantId")]
public string TenantId { get; set; }
Property Value
Type Description
string

Azure tenant ID of the application. e.g.: 14593954-d337-4a61-a364-9f758c64f97f

Remarks

Required

In this article
Back to top