Class ConnectionResponse.ConnectionType
Class representing an embedded connection on the response.
Inheritance
ConnectionResponse.ConnectionType
Assembly: Tableau.Migration.dll
Syntax
public class ConnectionResponse.ConnectionType : IConnectionType, IRestIdentifiable
Constructors
ConnectionType()
The default parameterless constructor.
Declaration
ConnectionType(SimulatedConnection)
Declaration
public ConnectionType(SimulatedConnection response)
Parameters
Properties
AuthenticationType
The authentication type for the response.
Declaration
public string? AuthenticationType { get; }
Property Value
ConnectionUsername
The connection username for the response.
Declaration
public string? ConnectionUsername { get; set; }
Property Value
EmbedPassword
The embed password value for the response.
Declaration
public string? EmbedPassword { get; set; }
Property Value
EmbedPasswordFlag
Declaration
public bool? EmbedPasswordFlag { get; set; }
Property Value
Id
Gets the unique identifier.
Declaration
public Guid Id { get; set; }
Property Value
QueryTaggingEnabled
The query tagging enabled flag for the response.
This is returned only for administrator users.
Declaration
public string? QueryTaggingEnabled { get; set; }
Property Value
QueryTaggingEnabledFlag
Declaration
public bool? QueryTaggingEnabledFlag { get; set; }
Property Value
ServerAddress
The server address for the response.
Declaration
public string? ServerAddress { get; set; }
Property Value
ServerPort
The server port for the response.
Declaration
public string? ServerPort { get; set; }
Property Value
Type
The connection type for the response.
Declaration
public string? Type { get; set; }
Property Value
UseOAuthManagedKeychain
Whether OAuth managed keychanins are used for the response.
Declaration
public string? UseOAuthManagedKeychain { get; set; }
Property Value
UseOAuthManagedKeychainFlag
Declaration
public bool? UseOAuthManagedKeychainFlag { get; set; }
Property Value
Implements