Class CouchbaseRemoteAnalyticsLink
Inheritance
CouchbaseRemoteAnalyticsLink
Assembly: Couchbase.NetClient.dll
Syntax
public record CouchbaseRemoteAnalyticsLink : AnalyticsLink, IEquatable<AnalyticsLink>, IEquatable<CouchbaseRemoteAnalyticsLink>
Constructors
|
Edit this page
View Source
CouchbaseRemoteAnalyticsLink(string, string, string, EncryptionSettings?)
Declaration
public CouchbaseRemoteAnalyticsLink(string Name, string Dataverse, string Hostname, CouchbaseRemoteAnalyticsLink.EncryptionSettings? Encryption = null)
Parameters
Properties
|
Edit this page
View Source
Encryption
Declaration
public CouchbaseRemoteAnalyticsLink.EncryptionSettings? Encryption { get; init; }
Property Value
|
Edit this page
View Source
Hostname
Declaration
public string Hostname { get; init; }
Property Value
|
Edit this page
View Source
LinkType
Declaration
public override string LinkType { get; }
Property Value
Overrides
|
Edit this page
View Source
Password
Declaration
public string? Password { get; init; }
Property Value
|
Edit this page
View Source
Username
Declaration
public string? Username { get; init; }
Property Value
Methods
|
Edit this page
View Source
Declaration
protected override IEnumerable<KeyValuePair<string, string>> GetFormData()
Returns
Overrides
|
Edit this page
View Source
TryValidateForRequest(out List<string>)
Declaration
public override bool TryValidateForRequest(out List<string> errors)
Parameters
Returns
Overrides
|
Edit this page
View Source
WithFullEncryption(string, string, string, string, string, string)
Declaration
public static CouchbaseRemoteAnalyticsLink WithFullEncryption(string name, string dataverse, string hostname, string certificate, string clientCertificate, string clientKey)
Parameters
Returns
|
Edit this page
View Source
WithPassword(string)
Declaration
public CouchbaseRemoteAnalyticsLink WithPassword(string password)
Parameters
Type |
Name |
Description |
string |
password |
|
Returns
|
Edit this page
View Source
WithUsername(string)
Declaration
public CouchbaseRemoteAnalyticsLink WithUsername(string username)
Parameters
Type |
Name |
Description |
string |
username |
|
Returns
Implements