Class ProjectsResource.LocationsResource.DiscoveryConfigsResource.ListRequest
Lists discovery configurations.
Inheritance
Implements
Inherited Members
Namespace: Google.Apis.DLP.v2
Assembly: Google.Apis.DLP.v2.dll
Syntax
public class ProjectsResource.LocationsResource.DiscoveryConfigsResource.ListRequest : DLPBaseServiceRequest<GooglePrivacyDlpV2ListDiscoveryConfigsResponse>, IClientServiceRequest<GooglePrivacyDlpV2ListDiscoveryConfigsResponse>, IClientServiceRequest
Constructors
ListRequest(IClientService, string)
Constructs a new List request.
Declaration
public ListRequest(IClientService service, string parent)
Parameters
Type | Name | Description |
---|---|---|
IClientService | service | |
string | parent |
Properties
HttpMethod
Gets the HTTP method.
Declaration
public override string HttpMethod { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
MethodName
Gets the method name.
Declaration
public override string MethodName { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
OrderBy
Comma-separated list of config fields to order by, followed by asc
or desc
postfix. This
list is case insensitive. The default sorting order is ascending. Redundant space characters are
insignificant. Example: name asc,update_time, create_time desc
Supported fields are: -
last_run_time
: corresponds to the last time the DiscoveryConfig ran. - name
: corresponds to
the DiscoveryConfig's name. - status
: corresponds to DiscoveryConfig's status.
Declaration
[RequestParameter("orderBy", RequestParameterType.Query)]
public virtual string OrderBy { get; set; }
Property Value
Type | Description |
---|---|
string |
PageSize
Size of the page. This value can be limited by a server.
Declaration
[RequestParameter("pageSize", RequestParameterType.Query)]
public virtual int? PageSize { get; set; }
Property Value
Type | Description |
---|---|
int? |
PageToken
Page token to continue retrieval. Comes from the previous call to ListDiscoveryConfigs.
order_by
field must not change for subsequent calls.
Declaration
[RequestParameter("pageToken", RequestParameterType.Query)]
public virtual string PageToken { get; set; }
Property Value
Type | Description |
---|---|
string |
Parent
Required. Parent resource name. The format of this value is as follows:
projects/{project_id}/locations/{location_id}
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
Declaration
[RequestParameter("parent", RequestParameterType.Path)]
public virtual string Parent { get; }
Property Value
Type | Description |
---|---|
string |
RestPath
Gets the REST path.
Declaration
public override string RestPath { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
Methods
InitParameters()
Initializes List parameter list.
Declaration
protected override void InitParameters()