public sealed class ListEntriesRequest : IMessage<ListEntriesRequest>, IEquatable<ListEntriesRequest>, IDeepCloneable<ListEntriesRequest>, IBufferMessage, IMessage, IPageRequestReference documentation and code samples for the Cloud Dataplex v1 API class ListEntriesRequest.
List Entries request.
Implements
IMessageListEntriesRequest, IEquatableListEntriesRequest, IDeepCloneableListEntriesRequest, IBufferMessage, IMessage, IPageRequestNamespace
Google.Cloud.Dataplex.V1Assembly
Google.Cloud.Dataplex.V1.dll
Constructors
ListEntriesRequest()
public ListEntriesRequest()ListEntriesRequest(ListEntriesRequest)
public ListEntriesRequest(ListEntriesRequest other)| Parameter | |
|---|---|
| Name | Description |
other |
ListEntriesRequest |
Properties
Filter
public string Filter { get; set; }Optional. A filter on the entries to return. Filters are case-sensitive. You can filter the request by the following fields:
- entry_type
- entry_source.display_name
- parent_entry
The comparison operators are =, !=, <, >, <=, >=. The service compares strings according to lexical order.
You can use the logical operators AND, OR, NOT in the filter.
You can use Wildcard "*", but for entry_type and parent_entry you need to provide the full project id or number.
You cannot use parent_entry in conjunction with other fields.
Example filter expressions:
- "entry_source.display_name=AnExampleDisplayName"
- "entry_type=projects/example-project/locations/global/entryTypes/example-entry_type"
- "entry_type=projects/example-project/locations/us/entryTypes/a* OR entry_type=projects/another-project/locations/*"
- "NOT entry_source.display_name=AnotherExampleDisplayName"
- "parent_entry=projects/example-project/locations/us/entryGroups/example-entry-group/entries/example-entry"
| Property Value | |
|---|---|
| Type | Description |
string |
|
PageSize
public int PageSize { get; set; }Optional. Number of items to return per page. If there are remaining results, the service returns a next_page_token. If unspecified, the service returns at most 10 Entries. The maximum value is 100; values above 100 will be coerced to 100.
| Property Value | |
|---|---|
| Type | Description |
int |
|
PageToken
public string PageToken { get; set; }Optional. Page token received from a previous ListEntries call. Provide
this to retrieve the subsequent page.
| Property Value | |
|---|---|
| Type | Description |
string |
|
Parent
public string Parent { get; set; }Required. The resource name of the parent Entry Group:
projects/{project}/locations/{location}/entryGroups/{entry_group}.
| Property Value | |
|---|---|
| Type | Description |
string |
|
ParentAsEntryGroupName
public EntryGroupName ParentAsEntryGroupName { get; set; }EntryGroupName-typed view over the Parent resource name property.
| Property Value | |
|---|---|
| Type | Description |
EntryGroupName |
|