Class RetrieveKeychainResponse
Class representing an embedded credentials retrieve keychain response.
Implements
Inherited Members
Namespace: Tableau.Migration.Api.Rest.Models.Responses
Assembly: Tableau.Migration.dll
Syntax
public class RetrieveKeychainResponse : TableauServerResponse, ITableauServerResponse
Constructors
RetrieveKeychainResponse()
The default parameterless constructor.
Declaration
public RetrieveKeychainResponse()
RetrieveKeychainResponse(IEnumerable<string>, IEnumerable<Guid>?)
Constructor to build from encrypted keychain list and associated user LUID list.
Declaration
public RetrieveKeychainResponse(IEnumerable<string> encryptedKeychainList, IEnumerable<Guid>? associatedUserLuidList)
Parameters
Type | Name | Description |
---|---|---|
IEnumerable<string> | encryptedKeychainList | The list of encrypted keychains for this response. |
IEnumerable<Guid> | associatedUserLuidList | The list of associated user LUIDs for this response. |
Properties
AssociatedUserLuidList
Gets or sets the associated user IDs for the response.
Declaration
public Guid[] AssociatedUserLuidList { get; set; }
Property Value
Type | Description |
---|---|
Guid[] |
EncryptedKeychainList
Gets or sets the encrypted key chains for the response.
Declaration
public string[] EncryptedKeychainList { get; set; }
Property Value
Type | Description |
---|---|
string[] |