public sealed class ListRegistrationsRequest : IMessage<ListRegistrationsRequest>, IEquatable<ListRegistrationsRequest>, IDeepCloneable<ListRegistrationsRequest>, IBufferMessage, IMessage, IPageRequest
Request for the ListRegistrations
method.
Implements
IMessage<ListRegistrationsRequest>, IEquatable<ListRegistrationsRequest>, IDeepCloneable<ListRegistrationsRequest>, IBufferMessage, IMessage, IPageRequestNamespace
Google.Cloud.Domains.V1Assembly
Google.Cloud.Domains.V1.dll
Constructors
ListRegistrationsRequest()
public ListRegistrationsRequest()
ListRegistrationsRequest(ListRegistrationsRequest)
public ListRegistrationsRequest(ListRegistrationsRequest other)
Parameter | |
---|---|
Name | Description |
other | ListRegistrationsRequest |
Properties
Filter
public string Filter { get; set; }
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:*)
.
Property Value | |
---|---|
Type | Description |
String |
PageSize
public int PageSize { get; set; }
Maximum number of results to return.
Property Value | |
---|---|
Type | Description |
Int32 |
PageToken
public string PageToken { get; set; }
When set to the next_page_token
from a prior response, provides the next
page of results.
Property Value | |
---|---|
Type | Description |
String |
Parent
public string Parent { get; set; }
Required. The project and location from which to list Registration
s, specified in
the format projects/*/locations/*
.
Property Value | |
---|---|
Type | Description |
String |
ParentAsLocationName
public LocationName ParentAsLocationName { get; set; }
LocationName-typed view over the Parent resource name property.
Property Value | |
---|---|
Type | Description |
LocationName |