Show / Hide Table of Contents

Class GenerateDataKeyDetails

Details of the Data Key to be generated.

Inheritance
object
GenerateDataKeyDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ApmcontrolplaneService.Models
Assembly: OCI.DotNetSDK.Apmcontrolplane.dll
Syntax
public class GenerateDataKeyDetails

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

In this article
Back to top