Show / Hide Table of Contents

Class ListOAuthClientCredentialsRequest

Inheritance
object
ListOAuthClientCredentialsRequest
Implements
IOciRequest
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.IdentityService.Requests
Assembly: OCI.DotNetSDK.Identity.dll
Syntax
public class ListOAuthClientCredentialsRequest : IOciRequest
Examples

Click here to see an example of how to use ListOAuthClientCredentials request.

Properties

LifecycleState

Declaration
[HttpConverter(TargetEnum.Query, "lifecycleState")]
public OAuth2ClientCredentialSummary.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
OAuth2ClientCredentialSummary.LifecycleStateEnum?

A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.

Limit

Declaration
[HttpConverter(TargetEnum.Query, "limit")]
public int? Limit { get; set; }
Property Value
Type Description
int?

The maximum number of items to return in a paginated "List" call.

Page

Declaration
[HttpConverter(TargetEnum.Query, "page")]
public string Page { get; set; }
Property Value
Type Description
string

The value of the opc-next-page response header from the previous "List" call.

UserId

Declaration
[Required(ErrorMessage = "UserId is required.")]
[HttpConverter(TargetEnum.Path, "userId")]
public string UserId { get; set; }
Property Value
Type Description
string

The OCID of the user.

Remarks

Required

Implements

IOciRequest
In this article
Back to top