Class DataKey
The information about a Data Key, including the Data Key's value.
Inherited Members
Namespace: Oci.ApmcontrolplaneService.Models
Assembly: OCI.DotNetSDK.Apmcontrolplane.dll
Syntax
public class DataKey
Properties
Name
Declaration
[Required(ErrorMessage = "Name is required.")]
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
Type | Description |
---|---|
string | Name of the Data Key. The name uniquely identifies a Data Key within an APM domain. |
Remarks
Required
Type
Declaration
[Required(ErrorMessage = "Type is required.")]
[JsonProperty(PropertyName = "type")]
[JsonConverter(typeof(StringEnumConverter))]
public DataKeyTypes? Type { get; set; }
Property Value
Type | Description |
---|---|
DataKeyTypes? | Type of the Data Key. |
Remarks
Required
Value
Declaration
[JsonProperty(PropertyName = "value")]
public string Value { get; set; }
Property Value
Type | Description |
---|---|
string | Value of the Data Key. |