Show / Hide Table of Contents

Class UpdateOAuth2ClientCredentialDetails

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

Properties

Description

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

Description of the oauth credential to help user differentiate them.

Remarks

Required

IsResetPassword

Declaration
[JsonProperty(PropertyName = "isResetPassword")]
public bool? IsResetPassword { get; set; }
Property Value
Type Description
bool?

Indicate if the password to be reset or not in the update.

Scopes

Declaration
[Required(ErrorMessage = "Scopes is required.")]
[JsonProperty(PropertyName = "scopes")]
public List<FullyQualifiedScope> Scopes { get; set; }
Property Value
Type Description
List<FullyQualifiedScope>

Allowed scopes for the given oauth credential.

Remarks

Required

In this article
Back to top