Class PoliciesResource.ListRequest
List Policies
Inheritance
Inherited Members
Namespace: Google.Apis.CloudIdentity.v1beta1
Assembly: Google.Apis.CloudIdentity.v1beta1.dll
Syntax
public class PoliciesResource.ListRequest : CloudIdentityBaseServiceRequest<ListPoliciesResponse>, IClientServiceRequest<ListPoliciesResponse>, IClientServiceRequest
Constructors
ListRequest(IClientService)
Constructs a new List request.
Declaration
public ListRequest(IClientService service)
Parameters
Type | Name | Description |
---|---|---|
IClientService | service |
Properties
Filter
Optional. A CEL expression for filtering the results. Policies can be filtered by application with this
expression: setting.name = 'settings/gmail.' Policies can be filtered by setting type with this
expression: setting.name = '.service_status' A maximum of one of the above setting.name clauses can be
used. Policies can be filtered by customer with this expression: customer = "customers/{customer}" Where
customer
is the id
from the Admin SDK Customer
resource. You may use
customers/my_customer
to specify your own organization. When no customer is mentioned it will be
default to customers/my_customer. A maximum of one customer clause can be used. The above clauses can
only be combined together in a single filter expression with the AND operator.
Declaration
[RequestParameter("filter", RequestParameterType.Query)]
public virtual string Filter { get; set; }
Property Value
Type | Description |
---|---|
string |
HttpMethod
Gets the HTTP method.
Declaration
public override string HttpMethod { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
MethodName
Gets the method name.
Declaration
public override string MethodName { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
PageSize
Optional. The maximum number of results to return. The service may return fewer than this value. If omitted (or defaulted to zero) the server will default to 50. The maximum allowed value is 100, though requests with page_size greater than that will be interpreted as 100.
Declaration
[RequestParameter("pageSize", RequestParameterType.Query)]
public virtual int? PageSize { get; set; }
Property Value
Type | Description |
---|---|
int? |
PageToken
Optional. The pagination token received from a prior call to PoliciesService.ListPolicies to retrieve
the next page of results. When paginating, all other parameters provided to ListPoliciesRequest
must
match the call that provided the page token.
Declaration
[RequestParameter("pageToken", RequestParameterType.Query)]
public virtual string PageToken { get; set; }
Property Value
Type | Description |
---|---|
string |
RestPath
Gets the REST path.
Declaration
public override string RestPath { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
Methods
InitParameters()
Initializes List parameter list.
Declaration
protected override void InitParameters()