Show / Hide Table of Contents

Class DataSourceDetailsInflux

Data Source details for influx.

Inheritance
object
DataSourceDetails
DataSourceDetailsInflux
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.AianomalydetectionService.Models
Assembly: OCI.DotNetSDK.Aianomalydetection.dll
Syntax
public class DataSourceDetailsInflux : DataSourceDetails

Properties

MeasurementName

Declaration
[Required(ErrorMessage = "MeasurementName is required.")]
[JsonProperty(PropertyName = "measurementName")]
public string MeasurementName { get; set; }
Property Value
Type Description
string

Measurement name for influx

Remarks

Required

PasswordSecretId

Declaration
[Required(ErrorMessage = "PasswordSecretId is required.")]
[JsonProperty(PropertyName = "passwordSecretId")]
public string PasswordSecretId { get; set; }
Property Value
Type Description
string

Password Secret Id for the influx connection

Remarks

Required

Url

Declaration
[Required(ErrorMessage = "Url is required.")]
[JsonProperty(PropertyName = "url")]
public string Url { get; set; }
Property Value
Type Description
string

public IP address and port to influx DB

Remarks

Required

UserName

Declaration
[Required(ErrorMessage = "UserName is required.")]
[JsonProperty(PropertyName = "userName")]
public string UserName { get; set; }
Property Value
Type Description
string

Username for connection to Influx

Remarks

Required

VersionSpecificDetails

Declaration
[Required(ErrorMessage = "VersionSpecificDetails is required.")]
[JsonProperty(PropertyName = "versionSpecificDetails")]
public InfluxDetails VersionSpecificDetails { get; set; }
Property Value
Type Description
InfluxDetails
Remarks

Required

In this article
Back to top