Show / Hide Table of Contents

Class Office365LinkedService

Office365 linked service.

Inheritance
System.Object
LinkedService
Office365LinkedService
Inherited Members
LinkedService.AdditionalProperties
LinkedService.Annotations
LinkedService.ConnectVia
LinkedService.Description
LinkedService.Parameters
LinkedService.Version
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.Analytics.Synapse.Artifacts.dll
Syntax
[System.Text.Json.Serialization.JsonConverter(typeof(Azure.Analytics.Synapse.Artifacts.Models.Office365LinkedService/Office365LinkedServiceConverter))]
public class Office365LinkedService : Azure.Analytics.Synapse.Artifacts.Models.LinkedService

Constructors

Office365LinkedService(Object, Object, Object, SecretBase)

Initializes a new instance of Office365LinkedService.

Declaration
public Office365LinkedService (object office365TenantId, object servicePrincipalTenantId, object servicePrincipalId, Azure.Analytics.Synapse.Artifacts.Models.SecretBase servicePrincipalKey);
Parameters
System.Object office365TenantId

Azure tenant ID to which the Office 365 account belongs. Type: string (or Expression with resultType string).

System.Object servicePrincipalTenantId

Specify the tenant information under which your Azure AD web application resides. Type: string (or Expression with resultType string).

System.Object servicePrincipalId

Specify the application's client ID. Type: string (or Expression with resultType string).

SecretBase servicePrincipalKey

Specify the application's key. Please note SecretBase is the base class. According to the scenario, a derived class of the base class might need to be assigned here, or this property needs to be casted to one of the possible derived classes. The available derived classes include AzureKeyVaultSecretReference and SecureString.

Exceptions
System.ArgumentNullException

office365TenantId, servicePrincipalTenantId, servicePrincipalId or servicePrincipalKey is null.

Properties

EncryptedCredential

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).

Declaration
public object EncryptedCredential { get; set; }
Property Value
System.Object

Office365TenantId

Azure tenant ID to which the Office 365 account belongs. Type: string (or Expression with resultType string).

Declaration
public object Office365TenantId { get; set; }
Property Value
System.Object

ServicePrincipalId

Specify the application's client ID. Type: string (or Expression with resultType string).

Declaration
public object ServicePrincipalId { get; set; }
Property Value
System.Object

ServicePrincipalKey

Specify the application's key. Please note SecretBase is the base class. According to the scenario, a derived class of the base class might need to be assigned here, or this property needs to be casted to one of the possible derived classes. The available derived classes include AzureKeyVaultSecretReference and SecureString.

Declaration
public Azure.Analytics.Synapse.Artifacts.Models.SecretBase ServicePrincipalKey { get; set; }
Property Value
SecretBase

ServicePrincipalTenantId

Specify the tenant information under which your Azure AD web application resides. Type: string (or Expression with resultType string).

Declaration
public object ServicePrincipalTenantId { get; set; }
Property Value
System.Object

Back to top Azure SDK for .NET