public sealed class ListDlpJobsRequest : IMessage<ListDlpJobsRequest>, IEquatable<ListDlpJobsRequest>, IDeepCloneable<ListDlpJobsRequest>, IBufferMessage, IMessage, IPageRequest
The request message for listing DLP jobs.
Implements
IMessage<ListDlpJobsRequest>, IEquatable<ListDlpJobsRequest>, IDeepCloneable<ListDlpJobsRequest>, IBufferMessage, IMessage, IPageRequestNamespace
Google.Cloud.Dlp.V2Assembly
Google.Cloud.Dlp.V2.dll
Constructors
ListDlpJobsRequest()
public ListDlpJobsRequest()
ListDlpJobsRequest(ListDlpJobsRequest)
public ListDlpJobsRequest(ListDlpJobsRequest other)
Parameter | |
---|---|
Name | Description |
other | ListDlpJobsRequest |
Properties
Filter
public string Filter { get; set; }
Allows filtering.
Supported syntax:
- Filter expressions are made up of one or more restrictions.
- Restrictions can be combined by
AND
orOR
logical operators. A sequence of restrictions implicitly usesAND
. - A restriction has the form of
{field} {operator} {value}
. - Supported fields/values for inspect jobs:
state
- PENDING|RUNNING|CANCELED|FINISHED|FAILEDinspected_storage
- DATASTORE|CLOUD_STORAGE|BIGQUERYtrigger_name
- The resource name of the trigger that created job.- 'end_time` - Corresponds to time the job finished.
- 'start_time` - Corresponds to time the job finished.
- Supported fields for risk analysis jobs:
state
- RUNNING|CANCELED|FINISHED|FAILED- 'end_time` - Corresponds to time the job finished.
- 'start_time` - Corresponds to time the job finished.
- The operator must be
=
or!=
.
Examples:
- inspected_storage = cloud_storage AND state = done
- inspected_storage = cloud_storage OR inspected_storage = bigquery
- inspected_storage = cloud_storage AND (state = done OR state = canceled)
- end_time > "2017-12-12T00:00:00+00:00"
The length of this field should be no more than 500 characters.
Property Value | |
---|---|
Type | Description |
String |
LocationId
public string LocationId { get; set; }
Deprecated. This field has no effect.
Property Value | |
---|---|
Type | Description |
String |
OrderBy
public string OrderBy { get; set; }
Comma separated list of fields to order by,
followed by asc
or desc
postfix. This list is case-insensitive,
default sorting order is ascending, redundant space characters are
insignificant.
Example: name asc, end_time asc, create_time desc
Supported fields are:
create_time
: corresponds to time the job was created.end_time
: corresponds to time the job ended.name
: corresponds to job's name.state
: corresponds tostate
Property Value | |
---|---|
Type | Description |
String |
PageSize
public int PageSize { get; set; }
The standard list page size.
Property Value | |
---|---|
Type | Description |
Int32 |
PageToken
public string PageToken { get; set; }
The standard list page token.
Property Value | |
---|---|
Type | Description |
String |
Parent
public string Parent { get; set; }
Required. Parent resource name.
The format of this value varies depending on whether you have specified a processing location:
- Projects scope, location specified:<br/>
projects/
<var>PROJECT_ID</var>/locations/
<var>LOCATION_ID</var> - Projects scope, no location specified (defaults to global):<br/>
projects/
<var>PROJECT_ID</var>
The following example parent
string specifies a parent project with the
identifier example-project
, and specifies the europe-west3
location
for processing data:
parent=projects/example-project/locations/europe-west3
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 |
ParentAsProjectName
public ProjectName ParentAsProjectName { get; set; }
ProjectName-typed view over the Parent resource name property.
Property Value | |
---|---|
Type | Description |
ProjectName |
ParentAsResourceName
public IResourceName ParentAsResourceName { get; set; }
IResourceName-typed view over the Parent resource name property.
Property Value | |
---|---|
Type | Description |
IResourceName |
Type
public DlpJobType Type { get; set; }
The type of job. Defaults to DlpJobType.INSPECT
Property Value | |
---|---|
Type | Description |
DlpJobType |