Class UpdateConnectionOptions
Supports all classes in the .NET class hierarchy and provides low-level services to derived classes. This is the ultimate base class of all .NET classes; it is the root of the type hierarchy.
Implements
Namespace: Tableau.Migration.Api.Models
Assembly: Tableau.Migration.dll
Syntax
public class UpdateConnectionOptions : IUpdateConnectionOptions
Constructors
UpdateConnectionOptions(string?, string?, string?, string?, bool?, bool?)
Creates a new UpdateConnectionOptions object.
Declaration
public UpdateConnectionOptions(string? serverAddress = null, string? serverPort = null, string? connectionUsername = null, string? password = null, bool? embedPassword = null, bool? queryTaggingEnabled = null)
Parameters
Type | Name | Description |
---|---|---|
string | serverAddress | The server address on the connection. |
string | serverPort | The server port on the connection. |
string | connectionUsername | The user name on the connection. |
string | password | The password on the connection. |
bool? | embedPassword | The embed password flag on the connection. |
bool? | queryTaggingEnabled | The query tagging enabled flag on the connection. |
Properties
ConnectionUsername
The user name on the connection.
Declaration
public string? ConnectionUsername { get; }
Property Value
Type | Description |
---|---|
string |
EmbedPassword
The embed password flag on the connection.
Declaration
public bool? EmbedPassword { get; }
Property Value
Type | Description |
---|---|
bool? |
Password
The connection password.
Declaration
public string? Password { get; }
Property Value
Type | Description |
---|---|
string |
QueryTaggingEnabled
The query tagging enabled flag on the connection.
Declaration
public bool? QueryTaggingEnabled { get; }
Property Value
Type | Description |
---|---|
bool? |
ServerAddress
The ServerAddress.
Declaration
public string? ServerAddress { get; }
Property Value
Type | Description |
---|---|
string |
ServerPort
The server port on the connection.
Declaration
public string? ServerPort { get; }
Property Value
Type | Description |
---|---|
string |