Class UpdateOAuth2ClientCredentialDetails
Inherited Members
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