Show / Hide Table of Contents

Class ProjectsResource.LocationsResource.DatasetsResource.ConsentStoresResource.ConsentsResource.ListRevisionsRequest

Lists the revisions of the specified Consent in reverse chronological order.

Inheritance
object
ClientServiceRequest
ClientServiceRequest<ListConsentRevisionsResponse>
CloudHealthcareBaseServiceRequest<ListConsentRevisionsResponse>
ProjectsResource.LocationsResource.DatasetsResource.ConsentStoresResource.ConsentsResource.ListRevisionsRequest
Implements
IClientServiceRequest<ListConsentRevisionsResponse>
IClientServiceRequest
Inherited Members
CloudHealthcareBaseServiceRequest<ListConsentRevisionsResponse>.Xgafv
CloudHealthcareBaseServiceRequest<ListConsentRevisionsResponse>.AccessToken
CloudHealthcareBaseServiceRequest<ListConsentRevisionsResponse>.Alt
CloudHealthcareBaseServiceRequest<ListConsentRevisionsResponse>.Callback
CloudHealthcareBaseServiceRequest<ListConsentRevisionsResponse>.Fields
CloudHealthcareBaseServiceRequest<ListConsentRevisionsResponse>.Key
CloudHealthcareBaseServiceRequest<ListConsentRevisionsResponse>.OauthToken
CloudHealthcareBaseServiceRequest<ListConsentRevisionsResponse>.PrettyPrint
CloudHealthcareBaseServiceRequest<ListConsentRevisionsResponse>.QuotaUser
CloudHealthcareBaseServiceRequest<ListConsentRevisionsResponse>.UploadType
CloudHealthcareBaseServiceRequest<ListConsentRevisionsResponse>.UploadProtocol
ClientServiceRequest<ListConsentRevisionsResponse>.Execute()
ClientServiceRequest<ListConsentRevisionsResponse>.ExecuteAsStream()
ClientServiceRequest<ListConsentRevisionsResponse>.ExecuteAsync()
ClientServiceRequest<ListConsentRevisionsResponse>.ExecuteAsync(CancellationToken)
ClientServiceRequest<ListConsentRevisionsResponse>.ExecuteAsStreamAsync()
ClientServiceRequest<ListConsentRevisionsResponse>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<ListConsentRevisionsResponse>.CreateRequest(bool?)
ClientServiceRequest<ListConsentRevisionsResponse>.GenerateRequestUri()
ClientServiceRequest<ListConsentRevisionsResponse>.GetBody()
ClientServiceRequest<ListConsentRevisionsResponse>.GetDefaultETagAction(string)
ClientServiceRequest<ListConsentRevisionsResponse>.ETagAction
ClientServiceRequest<ListConsentRevisionsResponse>.ModifyRequest
ClientServiceRequest<ListConsentRevisionsResponse>.ValidateParameters
ClientServiceRequest<ListConsentRevisionsResponse>.ApiVersion
ClientServiceRequest<ListConsentRevisionsResponse>.RequestParameters
ClientServiceRequest<ListConsentRevisionsResponse>.Service
ClientServiceRequest._unsuccessfulResponseHandlers
ClientServiceRequest._exceptionHandlers
ClientServiceRequest._executeInterceptors
ClientServiceRequest.AddUnsuccessfulResponseHandler(IHttpUnsuccessfulResponseHandler)
ClientServiceRequest.AddExceptionHandler(IHttpExceptionHandler)
ClientServiceRequest.AddExecuteInterceptor(IHttpExecuteInterceptor)
ClientServiceRequest.Credential
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.CloudHealthcare.v1beta1
Assembly: Google.Apis.CloudHealthcare.v1beta1.dll
Syntax
public class ProjectsResource.LocationsResource.DatasetsResource.ConsentStoresResource.ConsentsResource.ListRevisionsRequest : CloudHealthcareBaseServiceRequest<ListConsentRevisionsResponse>, IClientServiceRequest<ListConsentRevisionsResponse>, IClientServiceRequest

Constructors

ListRevisionsRequest(IClientService, string)

Constructs a new ListRevisions request.

Declaration
public ListRevisionsRequest(IClientService service, string name)
Parameters
Type Name Description
IClientService service
string name

Properties

Filter

Optional. Restricts the revisions 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 (&lt;, &lt;=, &gt;, &gt;=). 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 (&lt;, &lt;=, &gt;, &gt;=). 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. Fields/functions available for filtering are: - user_id. For example, filter='user_id="user123"'. - consent_artifact - state - revision_create_time - metadata. For example, filter=Metadata(\"testkey\")=\"value\" or filter=HasMetadata(\"testkey\").

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
ClientServiceRequest<ListConsentRevisionsResponse>.HttpMethod

MethodName

Gets the method name.

Declaration
public override string MethodName { get; }
Property Value
Type Description
string
Overrides
ClientServiceRequest<ListConsentRevisionsResponse>.MethodName

Name

Required. The resource name of the Consent to retrieve revisions for.

Declaration
[RequestParameter("name", RequestParameterType.Path)]
public virtual string Name { get; }
Property Value
Type Description
string

PageSize

Optional. Limit on the number of revisions 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 if there are no more results in the list.

Declaration
[RequestParameter("pageToken", RequestParameterType.Query)]
public virtual string PageToken { get; set; }
Property Value
Type Description
string

RestPath

Gets the REST path.

Declaration
public override string RestPath { get; }
Property Value
Type Description
string
Overrides
ClientServiceRequest<ListConsentRevisionsResponse>.RestPath

Methods

InitParameters()

Initializes ListRevisions parameter list.

Declaration
protected override void InitParameters()
Overrides
CloudHealthcareBaseServiceRequest<ListConsentRevisionsResponse>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
In this article
Back to top Generated by DocFX