Class ListDlpJobsRequest (3.3.0)

public sealed class ListDlpJobsRequest : IMessage<ListDlpJobsRequest>, IEquatable<ListDlpJobsRequest>, IDeepCloneable<ListDlpJobsRequest>, IBufferMessage, IMessage, IPageRequest

The request message for listing DLP jobs.

Inheritance

Object > ListDlpJobsRequest

Namespace

Google.Cloud.Dlp.V2

Assembly

Google.Cloud.Dlp.V2.dll

Constructors

ListDlpJobsRequest()

public ListDlpJobsRequest()

ListDlpJobsRequest(ListDlpJobsRequest)

public ListDlpJobsRequest(ListDlpJobsRequest other)
Parameter
NameDescription
otherListDlpJobsRequest

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 or OR logical operators. A sequence of restrictions implicitly uses AND.
  • A restriction has the form of {field} {operator} {value}.
  • Supported fields/values for inspect jobs:
  • state - PENDING|RUNNING|CANCELED|FINISHED|FAILED
  • inspected_storage - DATASTORE|CLOUD_STORAGE|BIGQUERY
  • trigger_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 > &quot;2017-12-12T00:00:00+00:00&quot;

The length of this field should be no more than 500 characters.

Property Value
TypeDescription
String

LocationId

public string LocationId { get; set; }

Deprecated. This field has no effect.

Property Value
TypeDescription
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 to state
Property Value
TypeDescription
String

PageSize

public int PageSize { get; set; }

The standard list page size.

Property Value
TypeDescription
Int32

PageToken

public string PageToken { get; set; }

The standard list page token.

Property Value
TypeDescription
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
TypeDescription
String

ParentAsLocationName

public LocationName ParentAsLocationName { get; set; }

LocationName-typed view over the Parent resource name property.

Property Value
TypeDescription
LocationName

ParentAsProjectName

public ProjectName ParentAsProjectName { get; set; }

ProjectName-typed view over the Parent resource name property.

Property Value
TypeDescription
ProjectName

ParentAsResourceName

public IResourceName ParentAsResourceName { get; set; }

IResourceName-typed view over the Parent resource name property.

Property Value
TypeDescription
IResourceName

Type

public DlpJobType Type { get; set; }

The type of job. Defaults to DlpJobType.INSPECT

Property Value
TypeDescription
DlpJobType