Show / Hide Table of Contents

Class TwilioLinkedService

Linked service for Twilio.

Inheritance
System.Object
LinkedService
TwilioLinkedService
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.TwilioLinkedService/TwilioLinkedServiceConverter))]
public class TwilioLinkedService : Azure.Analytics.Synapse.Artifacts.Models.LinkedService

Constructors

TwilioLinkedService(Object, SecretBase)

Initializes a new instance of TwilioLinkedService.

Declaration
public TwilioLinkedService (object userName, Azure.Analytics.Synapse.Artifacts.Models.SecretBase password);
Parameters
System.Object userName

The Account SID of Twilio service.

SecretBase password

The auth token of Twilio service. 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

userName or password is null.

Properties

Password

The auth token of Twilio service. 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 Password { get; set; }
Property Value
SecretBase

UserName

The Account SID of Twilio service.

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

Back to top Azure SDK for .NET