public sealed class QueryIssuesRequest : IPageRequest, IMessage<QueryIssuesRequest>, IEquatable<QueryIssuesRequest>, IDeepCloneable<QueryIssuesRequest>, IBufferMessage, IMessageReference documentation and code samples for the Database Center v1beta API class QueryIssuesRequest.
QueryIssuesRequest is the request to get a list of issues.
Implements
IPageRequest, IMessageQueryIssuesRequest, IEquatableQueryIssuesRequest, IDeepCloneableQueryIssuesRequest, IBufferMessage, IMessageNamespace
Google.Cloud.DatabaseCenter.V1BetaAssembly
Google.Cloud.DatabaseCenter.V1Beta.dll
Constructors
QueryIssuesRequest()
public QueryIssuesRequest()QueryIssuesRequest(QueryIssuesRequest)
public QueryIssuesRequest(QueryIssuesRequest other)| Parameter | |
|---|---|
| Name | Description |
other |
QueryIssuesRequest |
Properties
Filter
public string Filter { get; set; }Optional.
Supported fields are:
'product',
location,
issue_severity,
'tags',
'labels',
| Property Value | |
|---|---|
| Type | Description |
string |
|
OrderBy
public string OrderBy { get; set; }Optional. Following fields are sortable: SignalType Product Location IssueSeverity
The default order is ascending. Add "DESC" after the field name to indicate descending order. Add "ASC" after the field name to indicate ascending order. It only supports a single field at a time.
| Property Value | |
|---|---|
| Type | Description |
string |
|
PageSize
public int PageSize { get; set; }Optional. If unspecified, at most 50 issues will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000.
| Property Value | |
|---|---|
| Type | Description |
int |
|
PageToken
public string PageToken { get; set; }Optional. A page token, received from a previous QueryIssues call.
Provide this to retrieve the subsequent page.
All parameters except page size should match the parameters used in the
call that provided the page token.
| Property Value | |
|---|---|
| Type | Description |
string |
|
Parent
public string Parent { get; set; }Required. Parent can be a project, a folder, or an organization. The list
is limited to the one attached to resources within the scope that a user
has access to.
The allowed values are:
- projects/{PROJECT_ID} (e.g., "projects/foo-bar")
- projects/{PROJECT_NUMBER} (e.g., "projects/12345678")
- folders/{FOLDER_NUMBER} (e.g., "folders/1234567")
- organizations/{ORGANIZATION_NUMBER} (e.g., "organizations/123456")
| Property Value | |
|---|---|
| Type | Description |
string |
|
SignalProductsFilters
public RepeatedField<SignalProductsFilters> SignalProductsFilters { get; }Optional. Filters based on signal and product. The filter list will be ORed across pairs and ANDed within a signal and products pair.
| Property Value | |
|---|---|
| Type | Description |
RepeatedFieldSignalProductsFilters |
|