Class ProjectsResource.LocationsResource.DatasetsResource.ConsentStoresResource.UserDataMappingsResource.ListRequest
Lists the User data mappings in the specified consent store.
Inheritance
Inherited Members
Namespace: Google.Apis.CloudHealthcare.v1
Assembly: Google.Apis.CloudHealthcare.v1.dll
Syntax
public class ProjectsResource.LocationsResource.DatasetsResource.ConsentStoresResource.UserDataMappingsResource.ListRequest : CloudHealthcareBaseServiceRequest<ListUserDataMappingsResponse>, IClientServiceRequest<ListUserDataMappingsResponse>, 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
Filter
Optional. Restricts the User data mappings returned to those matching a filter. The
following syntax is available: * A string field value can be written as text inside
quotation marks, for example "query text"
. The only valid relational operation for
text fields is equality (=
), where text is searched within the field, rather than
having the field be equal to the text. For example, "Comment = great"
returns messages
with great
in the comment field. * A number field value can be written as an integer,
a decimal, or an exponential. The valid relational operators for number fields are the
equality operator (=
), along with the less than/greater than operators (<
,
<=
, >
, >=
). Note that there is no inequality (!=
) operator.
You can prepend the NOT
operator to an expression to negate it. * A date field value
must be written in yyyy-mm-dd
form. Fields with date and time use the RFC3339 time
format. Leading zeros are required for one-digit months and days. The valid relational
operators for date fields are the equality operator (=
) , along with the less
than/greater than operators (<
, <=
, >
, >=
). Note
that there is no inequality (!=
) operator. You can prepend the NOT
operator to an
expression to negate it. * Multiple field query expressions can be combined in one query
by adding AND
or OR
operators between the expressions. If a boolean operator appears
within a quoted string, it is not treated as special, it's just another part of the
character string to be matched. You can prepend the NOT
operator to an expression to
negate it. The fields available for filtering are: - data_id - user_id. For example,
filter=user_id=\"user123\"
. - archived - archive_time
Declaration
[RequestParameter("filter", RequestParameterType.Query)]
public virtual string Filter { get; set; }
Property Value
Type | Description |
---|---|
string |
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
PageSize
Optional. Limit on the number of User data mappings to return in a single response. If not specified, 100 is used. May not be larger than 1000.
Declaration
[RequestParameter("pageSize", RequestParameterType.Query)]
public virtual int? PageSize { get; set; }
Property Value
Type | Description |
---|---|
int? |
PageToken
Optional. Token to retrieve the next page of results, or empty to get the first page.
Declaration
[RequestParameter("pageToken", RequestParameterType.Query)]
public virtual string PageToken { get; set; }
Property Value
Type | Description |
---|---|
string |
Parent
Required. Name of the consent store to retrieve User data mappings from.
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()