Show / Hide Table of Contents

Class ListDynamicGroupsRequest

Inheritance
System.Object
ListDynamicGroupsRequest
Implements
IOciRequest
Namespace: Oci.IdentityService.Requests
Assembly: OCI.DotNetSDK.Identity.dll
Syntax
public class ListDynamicGroupsRequest : object, IOciRequest
Examples

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

Properties

CompartmentId

Declaration
public string CompartmentId { get; set; }
Property Value
Type Description
System.String

The OCID of the compartment (remember that the tenancy is simply the root compartment).

Remarks

Required

LifecycleState

Declaration
public System.Nullable<DynamicGroup.LifecycleStateEnum> LifecycleState { get; set; }
Property Value
Type Description
System.Nullable<DynamicGroup.LifecycleStateEnum>

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

Limit

Declaration
public System.Nullable<int> Limit { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

The maximum number of items to return in a paginated &quot;List&quot; call.

Name

Declaration
public string Name { get; set; }
Property Value
Type Description
System.String

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

Page

Declaration
public string Page { get; set; }
Property Value
Type Description
System.String

The value of the opc-next-page response header from the previous &quot;List&quot; call.

SortBy

Declaration
public System.Nullable<ListDynamicGroupsRequest.SortByEnum> SortBy { get; set; }
Property Value
Type Description
System.Nullable<ListDynamicGroupsRequest.SortByEnum>

The field to sort by. You can provide one sort order (sortOrder). Default order for TIMECREATED is descending. Default order for NAME is ascending. The NAME sort order is case sensitive.
Note: In general, some &quot;List&quot; operations (for example, ListInstances) let you optionally filter by Availability Domain if the scope of the resource type is within a single Availability Domain. If you call one of these &quot;List&quot; operations without specifying an Availability Domain, the resources are grouped by Availability Domain, then sorted.

SortOrder

Declaration
public System.Nullable<ListDynamicGroupsRequest.SortOrderEnum> SortOrder { get; set; }
Property Value
Type Description
System.Nullable<ListDynamicGroupsRequest.SortOrderEnum>

The sort order to use, either ascending (ASC) or descending (DESC). The NAME sort order is case sensitive.

Implements

IOciRequest
In This Article
Back to top