Show / Hide Table of Contents

Class IdentityTokenDetailsResponse

Response an Identity token generated for Redis cluster

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

Properties

IdentityToken

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

Generated Identity token

Remarks

Required

RedisUser

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

Redis user for the newly created identity token

Remarks

Required

In this article
Back to top