Class ProjectsResource.LocationsResource.RegistrationsResource.ListRequest
Lists the Registration
resources in a project.
Inheritance
Inherited Members
Namespace: Google.Apis.CloudDomains.v1beta1
Assembly: Google.Apis.CloudDomains.v1beta1.dll
Syntax
public class ProjectsResource.LocationsResource.RegistrationsResource.ListRequest : CloudDomainsBaseServiceRequest<ListRegistrationsResponse>, IClientServiceRequest<ListRegistrationsResponse>, IClientServiceRequest
Constructors
ListRequest(IClientService, string)
Constructs a new List request.
Declaration
public ListRequest(IClientService service, string parent)
Parameters
Type | Name | Description |
---|---|---|
IClientService | service | |
string | parent |
Properties
Filter
Filter expression to restrict the Registration
s returned. The expression must specify the
field name, a comparison operator, and the value that you want to use for filtering. The value
must be a string, a number, a boolean, or an enum value. The comparison operator should be one
of =, !=, >, <, >=, <=, or : for prefix or wildcard matches. For
example, to filter to a specific domain name, use an expression like domainName="example.com"
.
You can also check for the existence of a field; for example, to find domains using custom DNS
settings, use an expression like dnsSettings.customDns:*
. You can also create compound filters
by combining expressions with the AND
and OR
operators. For example, to find domains that
are suspended or have specific issues flagged, use an expression like (state=SUSPENDED) OR (issue:*)
.
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
Maximum number of results to return.
Declaration
[RequestParameter("pageSize", RequestParameterType.Query)]
public virtual int? PageSize { get; set; }
Property Value
Type | Description |
---|---|
int? |
PageToken
When set to the next_page_token
from a prior response, provides the next page of results.
Declaration
[RequestParameter("pageToken", RequestParameterType.Query)]
public virtual string PageToken { get; set; }
Property Value
Type | Description |
---|---|
string |
Parent
Required. The project and location from which to list Registration
s, specified in the format
projects/*/locations/*
.
Declaration
[RequestParameter("parent", RequestParameterType.Path)]
public virtual string Parent { get; }
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()