Class SimulatedConnection
The connections type in the API request body.
Namespace: Tableau.Migration.Api.Simulation
Assembly: Tableau.Migration.dll
Syntax
public class SimulatedConnection
Constructors
SimulatedConnection()
Default parameterless constructor
Declaration
public SimulatedConnection()
Properties
ConnectionType
Gets or sets the connection type.
Declaration
public string? ConnectionType { get; set; }
Property Value
Type | Description |
---|---|
string |
Credentials
Gets or sets the credentials.
Declaration
public SimulatedConnectionCredentials? Credentials { get; set; }
Property Value
Type | Description |
---|---|
SimulatedConnectionCredentials |
Id
Gets or sets the ID.
Declaration
public Guid Id { get; set; }
Property Value
Type | Description |
---|---|
Guid |
QueryTaggingEnabled
Gets or sets the query tagging enabled flag.
Declaration
public bool? QueryTaggingEnabled { get; set; }
Property Value
Type | Description |
---|---|
bool? |
ServerAddress
Gets or sets the server address.
Declaration
public string? ServerAddress { get; set; }
Property Value
Type | Description |
---|---|
string |
ServerPort
Gets or sets the server port.
Declaration
public string? ServerPort { get; set; }
Property Value
Type | Description |
---|---|
string |
Methods
Update(ConnectionType)
Method to update the simulated connection from the REST API update request.
Declaration
public void Update(UpdateConnectionRequest.ConnectionType update)
Parameters
Type | Name | Description |
---|---|---|
UpdateConnectionRequest.ConnectionType | update |