Show / Hide Table of Contents

Class DerivedKeyResponse

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

Properties

Principal

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

The principal.

Remarks

Required

SigningKey

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

The derived key.

Remarks

Required

In this article
Back to top