Show / Hide Table of Contents

Class MyOAuth2ClientCredentials

The SCIM protocol defines a standard set of query parameters that can be used to filter, sort, and paginate to return zero or more resources in a query response. Queries MAY be made against a single resource or a resource type endpoint (e.g., /Users), or the service provider Base URI.

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

Properties

ItemsPerPage

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

The number of resources returned in a list response page. REQUIRED when partial results returned due to pagination.

Remarks

Required

Resources

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

A multi-valued list of complex objects containing the requested resources. This MAY be a subset of the full set of resources if pagination is requested. REQUIRED if "totalResults" is non-zero.

Remarks

Required

Schemas

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

The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior. REQUIRED.

Remarks

Required

StartIndex

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

The 1-based index of the first result in the current set of list results. REQUIRED when partial results returned due to pagination.

Remarks

Required

TotalResults

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

The total number of results returned by the list or query operation. The value may be larger than the number of resources returned such as when returning a single page of results where multiple pages are available. REQUIRED.

Remarks

Required

In this article
Back to top