Show / Hide Table of Contents

Class ProjectsResource.LocationsResource.DatasetsResource.Hl7V2StoresResource.ListRequest

Lists the HL7v2 stores in the given dataset.

Inheritance
System.Object
ClientServiceRequest
ClientServiceRequest<ListHl7V2StoresResponse>
CloudHealthcareBaseServiceRequest<ListHl7V2StoresResponse>
ProjectsResource.LocationsResource.DatasetsResource.Hl7V2StoresResource.ListRequest
Implements
IClientServiceRequest<ListHl7V2StoresResponse>
IClientServiceRequest
Inherited Members
CloudHealthcareBaseServiceRequest<ListHl7V2StoresResponse>.Xgafv
CloudHealthcareBaseServiceRequest<ListHl7V2StoresResponse>.AccessToken
CloudHealthcareBaseServiceRequest<ListHl7V2StoresResponse>.Alt
CloudHealthcareBaseServiceRequest<ListHl7V2StoresResponse>.Callback
CloudHealthcareBaseServiceRequest<ListHl7V2StoresResponse>.Fields
CloudHealthcareBaseServiceRequest<ListHl7V2StoresResponse>.Key
CloudHealthcareBaseServiceRequest<ListHl7V2StoresResponse>.OauthToken
CloudHealthcareBaseServiceRequest<ListHl7V2StoresResponse>.PrettyPrint
CloudHealthcareBaseServiceRequest<ListHl7V2StoresResponse>.QuotaUser
CloudHealthcareBaseServiceRequest<ListHl7V2StoresResponse>.UploadType
CloudHealthcareBaseServiceRequest<ListHl7V2StoresResponse>.UploadProtocol
ClientServiceRequest<ListHl7V2StoresResponse>.Execute()
ClientServiceRequest<ListHl7V2StoresResponse>.ExecuteAsStream()
ClientServiceRequest<ListHl7V2StoresResponse>.ExecuteAsync()
ClientServiceRequest<ListHl7V2StoresResponse>.ExecuteAsync(CancellationToken)
ClientServiceRequest<ListHl7V2StoresResponse>.ExecuteAsStreamAsync()
ClientServiceRequest<ListHl7V2StoresResponse>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<ListHl7V2StoresResponse>.CreateRequest(Nullable<Boolean>)
ClientServiceRequest<ListHl7V2StoresResponse>.GenerateRequestUri()
ClientServiceRequest<ListHl7V2StoresResponse>.GetBody()
ClientServiceRequest<ListHl7V2StoresResponse>.GetDefaultETagAction(String)
ClientServiceRequest<ListHl7V2StoresResponse>.ETagAction
ClientServiceRequest<ListHl7V2StoresResponse>.ModifyRequest
ClientServiceRequest<ListHl7V2StoresResponse>.RequestParameters
ClientServiceRequest<ListHl7V2StoresResponse>.Service
ClientServiceRequest._unsuccessfulResponseHandlers
ClientServiceRequest._exceptionHandlers
ClientServiceRequest._executeInterceptors
ClientServiceRequest.AddUnsuccessfulResponseHandler(IHttpUnsuccessfulResponseHandler)
ClientServiceRequest.AddExceptionHandler(IHttpExceptionHandler)
ClientServiceRequest.AddExecuteInterceptor(IHttpExecuteInterceptor)
ClientServiceRequest.Credential
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.CloudHealthcare.v1
Assembly: Google.Apis.CloudHealthcare.v1.dll
Syntax
public class ListRequest : CloudHealthcareBaseServiceRequest<ListHl7V2StoresResponse>, IClientServiceRequest<ListHl7V2StoresResponse>, IClientServiceRequest

Constructors

ListRequest(IClientService, String)

Constructs a new List request.

Declaration
public ListRequest(IClientService service, string parent)
Parameters
Type Name Description
IClientService service
System.String parent

Properties

Filter

Restricts stores returned to those matching a filter. Syntax: https://cloud.google.com/appengine/docs/standard/python/search/query_strings Only filtering on labels is supported. For example, labels.key=value.

Declaration
[RequestParameter("filter", RequestParameterType.Query)]
public virtual string Filter { get; set; }
Property Value
Type Description
System.String

HttpMethod

Gets the HTTP method.

Declaration
public override string HttpMethod { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudHealthcare.v1.Data.ListHl7V2StoresResponse>.HttpMethod

MethodName

Gets the method name.

Declaration
public override string MethodName { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudHealthcare.v1.Data.ListHl7V2StoresResponse>.MethodName

PageSize

Limit on the number of HL7v2 stores to return in a single response. If zero the default page size of 100 is used.

Declaration
[RequestParameter("pageSize", RequestParameterType.Query)]
public virtual int? PageSize { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

PageToken

The next_page_token value returned from the previous List request, if any.

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

Parent

Name of the dataset.

Declaration
[RequestParameter("parent", RequestParameterType.Path)]
public virtual string Parent { get; }
Property Value
Type Description
System.String

RestPath

Gets the REST path.

Declaration
public override string RestPath { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudHealthcare.v1.Data.ListHl7V2StoresResponse>.RestPath

Methods

InitParameters()

Initializes List parameter list.

Declaration
protected override void InitParameters()
Overrides
Google.Apis.CloudHealthcare.v1.CloudHealthcareBaseServiceRequest<Google.Apis.CloudHealthcare.v1.Data.ListHl7V2StoresResponse>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
Back to top