Show / Hide Table of Contents

Class ListIdentityProviderGroupsRequest

Inheritance
object
ListIdentityProviderGroupsRequest
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 ListIdentityProviderGroupsRequest : IOciRequest
Examples

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

Properties

IdentityProviderId

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

The OCID of the identity provider.

Remarks

Required

LifecycleState

Declaration
[HttpConverter(TargetEnum.Query, "lifecycleState")]
public IdentityProvider.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
IdentityProvider.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.

Name

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

A filter to only return resources that match the given name exactly.

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.

Implements

IOciRequest
In this article
Back to top