Show / Hide Table of Contents

Class ProjectsResource.LocationsResource.DatasetsResource.DicomStoresResource.ListRequest

Lists the DICOM stores in the given dataset.

Inheritance
System.Object
ClientServiceRequest
ClientServiceRequest<ListDicomStoresResponse>
CloudHealthcareBaseServiceRequest<ListDicomStoresResponse>
ProjectsResource.LocationsResource.DatasetsResource.DicomStoresResource.ListRequest
Implements
IClientServiceRequest<ListDicomStoresResponse>
IClientServiceRequest
Inherited Members
CloudHealthcareBaseServiceRequest<ListDicomStoresResponse>.Xgafv
CloudHealthcareBaseServiceRequest<ListDicomStoresResponse>.AccessToken
CloudHealthcareBaseServiceRequest<ListDicomStoresResponse>.Alt
CloudHealthcareBaseServiceRequest<ListDicomStoresResponse>.Callback
CloudHealthcareBaseServiceRequest<ListDicomStoresResponse>.Fields
CloudHealthcareBaseServiceRequest<ListDicomStoresResponse>.Key
CloudHealthcareBaseServiceRequest<ListDicomStoresResponse>.OauthToken
CloudHealthcareBaseServiceRequest<ListDicomStoresResponse>.PrettyPrint
CloudHealthcareBaseServiceRequest<ListDicomStoresResponse>.QuotaUser
CloudHealthcareBaseServiceRequest<ListDicomStoresResponse>.UploadType
CloudHealthcareBaseServiceRequest<ListDicomStoresResponse>.UploadProtocol
ClientServiceRequest<ListDicomStoresResponse>.Execute()
ClientServiceRequest<ListDicomStoresResponse>.ExecuteAsStream()
ClientServiceRequest<ListDicomStoresResponse>.ExecuteAsync()
ClientServiceRequest<ListDicomStoresResponse>.ExecuteAsync(CancellationToken)
ClientServiceRequest<ListDicomStoresResponse>.ExecuteAsStreamAsync()
ClientServiceRequest<ListDicomStoresResponse>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<ListDicomStoresResponse>.CreateRequest(Nullable<Boolean>)
ClientServiceRequest<ListDicomStoresResponse>.GenerateRequestUri()
ClientServiceRequest<ListDicomStoresResponse>.GetBody()
ClientServiceRequest<ListDicomStoresResponse>.GetDefaultETagAction(String)
ClientServiceRequest<ListDicomStoresResponse>.ETagAction
ClientServiceRequest<ListDicomStoresResponse>.ModifyRequest
ClientServiceRequest<ListDicomStoresResponse>.RequestParameters
ClientServiceRequest<ListDicomStoresResponse>.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<ListDicomStoresResponse>, IClientServiceRequest<ListDicomStoresResponse>, 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.ListDicomStoresResponse>.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.ListDicomStoresResponse>.MethodName

PageSize

Limit on the number of DICOM 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.ListDicomStoresResponse>.RestPath

Methods

InitParameters()

Initializes List parameter list.

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

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
Back to top