Autogenerated update (2019-10-29)

Update:
- cloudshell_v1
- cloudshell_v1alpha1
- healthcare_v1beta1
This commit is contained in:
Google APIs 2019-10-29 00:37:01 +00:00
parent 555bc226f2
commit 306fc03d59
9 changed files with 109 additions and 113 deletions

View File

@ -26,7 +26,7 @@ module Google
# @see https://cloud.google.com/shell/docs/ # @see https://cloud.google.com/shell/docs/
module CloudshellV1 module CloudshellV1
VERSION = 'V1' VERSION = 'V1'
REVISION = '20191023' REVISION = '20191028'
# View and manage your data across Google Cloud Platform services # View and manage your data across Google Cloud Platform services
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform' AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'

View File

@ -67,11 +67,6 @@ module Google
# @return [String] # @return [String]
attr_accessor :docker_image attr_accessor :docker_image
# Output only. List of ports users can connect to on the environment.
# Corresponds to the JSON property `httpsPorts`
# @return [Array<Fixnum>]
attr_accessor :https_ports
# Output only. The environment's identifier, which is always "default". # Output only. The environment's identifier, which is always "default".
# Corresponds to the JSON property `id` # Corresponds to the JSON property `id`
# @return [String] # @return [String]
@ -137,6 +132,12 @@ module Google
# @return [String] # @return [String]
attr_accessor :web_host attr_accessor :web_host
# Output only. Ports to which clients can connect to initiate HTTPS or WSS
# connections with the environment.
# Corresponds to the JSON property `webPorts`
# @return [Array<Fixnum>]
attr_accessor :web_ports
def initialize(**args) def initialize(**args)
update!(**args) update!(**args)
end end
@ -144,7 +145,6 @@ module Google
# Update properties of this object # Update properties of this object
def update!(**args) def update!(**args)
@docker_image = args[:docker_image] if args.key?(:docker_image) @docker_image = args[:docker_image] if args.key?(:docker_image)
@https_ports = args[:https_ports] if args.key?(:https_ports)
@id = args[:id] if args.key?(:id) @id = args[:id] if args.key?(:id)
@name = args[:name] if args.key?(:name) @name = args[:name] if args.key?(:name)
@public_keys = args[:public_keys] if args.key?(:public_keys) @public_keys = args[:public_keys] if args.key?(:public_keys)
@ -155,6 +155,7 @@ module Google
@state = args[:state] if args.key?(:state) @state = args[:state] if args.key?(:state)
@vm_size_expire_time = args[:vm_size_expire_time] if args.key?(:vm_size_expire_time) @vm_size_expire_time = args[:vm_size_expire_time] if args.key?(:vm_size_expire_time)
@web_host = args[:web_host] if args.key?(:web_host) @web_host = args[:web_host] if args.key?(:web_host)
@web_ports = args[:web_ports] if args.key?(:web_ports)
end end
end end

View File

@ -92,7 +92,6 @@ module Google
# @private # @private
class Representation < Google::Apis::Core::JsonRepresentation class Representation < Google::Apis::Core::JsonRepresentation
property :docker_image, as: 'dockerImage' property :docker_image, as: 'dockerImage'
collection :https_ports, as: 'httpsPorts'
property :id, as: 'id' property :id, as: 'id'
property :name, as: 'name' property :name, as: 'name'
collection :public_keys, as: 'publicKeys', class: Google::Apis::CloudshellV1::PublicKey, decorator: Google::Apis::CloudshellV1::PublicKey::Representation collection :public_keys, as: 'publicKeys', class: Google::Apis::CloudshellV1::PublicKey, decorator: Google::Apis::CloudshellV1::PublicKey::Representation
@ -104,6 +103,7 @@ module Google
property :state, as: 'state' property :state, as: 'state'
property :vm_size_expire_time, as: 'vmSizeExpireTime' property :vm_size_expire_time, as: 'vmSizeExpireTime'
property :web_host, as: 'webHost' property :web_host, as: 'webHost'
collection :web_ports, as: 'webPorts'
end end
end end

View File

@ -26,7 +26,7 @@ module Google
# @see https://cloud.google.com/shell/docs/ # @see https://cloud.google.com/shell/docs/
module CloudshellV1alpha1 module CloudshellV1alpha1
VERSION = 'V1alpha1' VERSION = 'V1alpha1'
REVISION = '20191023' REVISION = '20191028'
# View and manage your data across Google Cloud Platform services # View and manage your data across Google Cloud Platform services
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform' AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'

View File

@ -105,11 +105,6 @@ module Google
# @return [String] # @return [String]
attr_accessor :docker_image attr_accessor :docker_image
# Output only. List of ports users can connect to on the environment.
# Corresponds to the JSON property `httpsPorts`
# @return [Array<Fixnum>]
attr_accessor :https_ports
# Output only. The environment's identifier, which is always "default". # Output only. The environment's identifier, which is always "default".
# Corresponds to the JSON property `id` # Corresponds to the JSON property `id`
# @return [String] # @return [String]
@ -175,6 +170,12 @@ module Google
# @return [String] # @return [String]
attr_accessor :web_host attr_accessor :web_host
# Output only. Ports to which clients can connect to initiate HTTPS or WSS
# connections with the environment.
# Corresponds to the JSON property `webPorts`
# @return [Array<Fixnum>]
attr_accessor :web_ports
def initialize(**args) def initialize(**args)
update!(**args) update!(**args)
end end
@ -182,7 +183,6 @@ module Google
# Update properties of this object # Update properties of this object
def update!(**args) def update!(**args)
@docker_image = args[:docker_image] if args.key?(:docker_image) @docker_image = args[:docker_image] if args.key?(:docker_image)
@https_ports = args[:https_ports] if args.key?(:https_ports)
@id = args[:id] if args.key?(:id) @id = args[:id] if args.key?(:id)
@name = args[:name] if args.key?(:name) @name = args[:name] if args.key?(:name)
@public_keys = args[:public_keys] if args.key?(:public_keys) @public_keys = args[:public_keys] if args.key?(:public_keys)
@ -193,6 +193,7 @@ module Google
@state = args[:state] if args.key?(:state) @state = args[:state] if args.key?(:state)
@vm_size_expire_time = args[:vm_size_expire_time] if args.key?(:vm_size_expire_time) @vm_size_expire_time = args[:vm_size_expire_time] if args.key?(:vm_size_expire_time)
@web_host = args[:web_host] if args.key?(:web_host) @web_host = args[:web_host] if args.key?(:web_host)
@web_ports = args[:web_ports] if args.key?(:web_ports)
end end
end end

View File

@ -109,7 +109,6 @@ module Google
# @private # @private
class Representation < Google::Apis::Core::JsonRepresentation class Representation < Google::Apis::Core::JsonRepresentation
property :docker_image, as: 'dockerImage' property :docker_image, as: 'dockerImage'
collection :https_ports, as: 'httpsPorts'
property :id, as: 'id' property :id, as: 'id'
property :name, as: 'name' property :name, as: 'name'
collection :public_keys, as: 'publicKeys', class: Google::Apis::CloudshellV1alpha1::PublicKey, decorator: Google::Apis::CloudshellV1alpha1::PublicKey::Representation collection :public_keys, as: 'publicKeys', class: Google::Apis::CloudshellV1alpha1::PublicKey, decorator: Google::Apis::CloudshellV1alpha1::PublicKey::Representation
@ -121,6 +120,7 @@ module Google
property :state, as: 'state' property :state, as: 'state'
property :vm_size_expire_time, as: 'vmSizeExpireTime' property :vm_size_expire_time, as: 'vmSizeExpireTime'
property :web_host, as: 'webHost' property :web_host, as: 'webHost'
collection :web_ports, as: 'webPorts'
end end
end end

View File

@ -25,7 +25,7 @@ module Google
# @see https://cloud.google.com/healthcare # @see https://cloud.google.com/healthcare
module HealthcareV1beta1 module HealthcareV1beta1
VERSION = 'V1beta1' VERSION = 'V1beta1'
REVISION = '20191008' REVISION = '20191021'
# View and manage your data across Google Cloud Platform services # View and manage your data across Google Cloud Platform services
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform' AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'

View File

@ -2373,7 +2373,8 @@ module Google
# schema. For example, `concept` in the CodeSystem resource is a recursive # schema. For example, `concept` in the CodeSystem resource is a recursive
# structure; when the depth is 2, the CodeSystem table will have a column # structure; when the depth is 2, the CodeSystem table will have a column
# called `concept.concept` but not `concept.concept.concept`. If not # called `concept.concept` but not `concept.concept.concept`. If not
# specified or set to 0, the server will use the default value 2. # specified or set to 0, the server will use the default value 2. The
# maximum depth allowed is 5.
# Corresponds to the JSON property `recursiveStructureDepth` # Corresponds to the JSON property `recursiveStructureDepth`
# @return [Fixnum] # @return [Fixnum]
attr_accessor :recursive_structure_depth attr_accessor :recursive_structure_depth

View File

@ -815,13 +815,13 @@ module Google
# SearchForInstances returns a list of matching instances. See # SearchForInstances returns a list of matching instances. See
# http://dicom.nema.org/medical/dicom/current/output/html/part18.html#sect_10.6. # http://dicom.nema.org/medical/dicom/current/output/html/part18.html#sect_10.6.
# @param [String] parent # @param [String] parent
# The name of the DICOM store that is being accessed (for example, # The name of the DICOM store that is being accessed. For example,
# `projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/ # `projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/
# dicomStores/`dicom_store_id``). # dicomStores/`dicom_store_id``.
# @param [String] dicom_web_path # @param [String] dicom_web_path
# The path of the SearchForInstancesRequest DICOMweb request (for example, # The path of the SearchForInstancesRequest DICOMweb request. For example,
# `instances` or `series/`series_uid`/instances` or # `instances`, `series/`series_uid`/instances`, or
# `studies/`study_uid`/instances`). # `studies/`study_uid`/instances`.
# @param [String] fields # @param [String] fields
# Selector specifying which fields to include in a partial response. # Selector specifying which fields to include in a partial response.
# @param [String] quota_user # @param [String] quota_user
@ -853,12 +853,12 @@ module Google
# SearchForSeries returns a list of matching series. See # SearchForSeries returns a list of matching series. See
# http://dicom.nema.org/medical/dicom/current/output/html/part18.html#sect_10.6. # http://dicom.nema.org/medical/dicom/current/output/html/part18.html#sect_10.6.
# @param [String] parent # @param [String] parent
# The name of the DICOM store that is being accessed (for example, # The name of the DICOM store that is being accessed. For example,
# `projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/ # `projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/
# dicomStores/`dicom_store_id``). # dicomStores/`dicom_store_id``.
# @param [String] dicom_web_path # @param [String] dicom_web_path
# The path of the SearchForSeries DICOMweb request(for example, `series` or # The path of the SearchForSeries DICOMweb request. For example, `series` or
# `studies/`study_uid`/series`). # `studies/`study_uid`/series`.
# @param [String] fields # @param [String] fields
# Selector specifying which fields to include in a partial response. # Selector specifying which fields to include in a partial response.
# @param [String] quota_user # @param [String] quota_user
@ -890,11 +890,11 @@ module Google
# SearchForStudies returns a list of matching studies. See # SearchForStudies returns a list of matching studies. See
# http://dicom.nema.org/medical/dicom/current/output/html/part18.html#sect_10.6. # http://dicom.nema.org/medical/dicom/current/output/html/part18.html#sect_10.6.
# @param [String] parent # @param [String] parent
# The name of the DICOM store that is being accessed (for example, # The name of the DICOM store that is being accessed. For example,
# `projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/ # `projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/
# dicomStores/`dicom_store_id``). # dicomStores/`dicom_store_id``.
# @param [String] dicom_web_path # @param [String] dicom_web_path
# The path of the SearchForStudies DICOMweb request (for example, `studies`). # The path of the SearchForStudies DICOMweb request. For example, `studies`.
# @param [String] fields # @param [String] fields
# Selector specifying which fields to include in a partial response. # Selector specifying which fields to include in a partial response.
# @param [String] quota_user # @param [String] quota_user
@ -963,12 +963,12 @@ module Google
# identifiers (SUID). See # identifiers (SUID). See
# http://dicom.nema.org/medical/dicom/current/output/html/part18.html#sect_10.5. # http://dicom.nema.org/medical/dicom/current/output/html/part18.html#sect_10.5.
# @param [String] parent # @param [String] parent
# The name of the DICOM store that is being accessed (for example, # The name of the DICOM store that is being accessed. For example,
# `projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/ # `projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/
# dicomStores/`dicom_store_id``). # dicomStores/`dicom_store_id``.
# @param [String] dicom_web_path # @param [String] dicom_web_path
# The path of the StoreInstances DICOMweb request (for example, # The path of the StoreInstances DICOMweb request. For example,
# `studies/[`study_uid`]`). Note that the `study_uid` is optional. # `studies/[`study_uid`]`. Note that the `study_uid` is optional.
# @param [Google::Apis::HealthcareV1beta1::HttpBody] http_body_object # @param [Google::Apis::HealthcareV1beta1::HttpBody] http_body_object
# @param [String] fields # @param [String] fields
# Selector specifying which fields to include in a partial response. # Selector specifying which fields to include in a partial response.
@ -1042,11 +1042,8 @@ module Google
# DeleteStudy deletes all instances within the given study. Delete requests # DeleteStudy deletes all instances within the given study. Delete requests
# are equivalent to the GET requests specified in the WADO-RS standard. # are equivalent to the GET requests specified in the WADO-RS standard.
# @param [String] parent # @param [String] parent
# The name of the DICOM store that is being accessed (for example,
# `projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/
# dicomStores/`dicom_store_id``).
# @param [String] dicom_web_path # @param [String] dicom_web_path
# The path of the DeleteStudy request (for example, `studies/`study_uid``). # The path of the DeleteStudy request. For example, `studies/`study_uid``.
# @param [String] fields # @param [String] fields
# Selector specifying which fields to include in a partial response. # Selector specifying which fields to include in a partial response.
# @param [String] quota_user # @param [String] quota_user
@ -1079,12 +1076,12 @@ module Google
# presented as metadata with the bulk data removed. See # presented as metadata with the bulk data removed. See
# http://dicom.nema.org/medical/dicom/current/output/html/part18.html#sect_10.4. # http://dicom.nema.org/medical/dicom/current/output/html/part18.html#sect_10.4.
# @param [String] parent # @param [String] parent
# The name of the DICOM store that is being accessed (for example, # The name of the DICOM store that is being accessed. For example,
# `projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/ # `projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/
# dicomStores/`dicom_store_id``). # dicomStores/`dicom_store_id``.
# @param [String] dicom_web_path # @param [String] dicom_web_path
# The path of the RetrieveStudyMetadata DICOMweb request (for example, # The path of the RetrieveStudyMetadata DICOMweb request. For example,
# `studies/`study_uid`/metadata`). # `studies/`study_uid`/metadata`.
# @param [String] fields # @param [String] fields
# Selector specifying which fields to include in a partial response. # Selector specifying which fields to include in a partial response.
# @param [String] quota_user # @param [String] quota_user
@ -1116,12 +1113,12 @@ module Google
# RetrieveStudy returns all instances within the given study. See # RetrieveStudy returns all instances within the given study. See
# http://dicom.nema.org/medical/dicom/current/output/html/part18.html#sect_10.4. # http://dicom.nema.org/medical/dicom/current/output/html/part18.html#sect_10.4.
# @param [String] parent # @param [String] parent
# The name of the DICOM store that is being accessed (for example, # The name of the DICOM store that is being accessed. For example,
# `projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/ # `projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/
# dicomStores/`dicom_store_id``). # dicomStores/`dicom_store_id``.
# @param [String] dicom_web_path # @param [String] dicom_web_path
# The path of the RetrieveStudy DICOMweb request (for example, # The path of the RetrieveStudy DICOMweb request. For example,
# `studies/`study_uid``). # `studies/`study_uid``.
# @param [String] fields # @param [String] fields
# Selector specifying which fields to include in a partial response. # Selector specifying which fields to include in a partial response.
# @param [String] quota_user # @param [String] quota_user
@ -1153,13 +1150,13 @@ module Google
# SearchForInstances returns a list of matching instances. See # SearchForInstances returns a list of matching instances. See
# http://dicom.nema.org/medical/dicom/current/output/html/part18.html#sect_10.6. # http://dicom.nema.org/medical/dicom/current/output/html/part18.html#sect_10.6.
# @param [String] parent # @param [String] parent
# The name of the DICOM store that is being accessed (for example, # The name of the DICOM store that is being accessed. For example,
# `projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/ # `projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/
# dicomStores/`dicom_store_id``). # dicomStores/`dicom_store_id``.
# @param [String] dicom_web_path # @param [String] dicom_web_path
# The path of the SearchForInstancesRequest DICOMweb request (for example, # The path of the SearchForInstancesRequest DICOMweb request. For example,
# `instances` or `series/`series_uid`/instances` or # `instances`, `series/`series_uid`/instances`, or
# `studies/`study_uid`/instances`). # `studies/`study_uid`/instances`.
# @param [String] fields # @param [String] fields
# Selector specifying which fields to include in a partial response. # Selector specifying which fields to include in a partial response.
# @param [String] quota_user # @param [String] quota_user
@ -1191,12 +1188,12 @@ module Google
# SearchForSeries returns a list of matching series. See # SearchForSeries returns a list of matching series. See
# http://dicom.nema.org/medical/dicom/current/output/html/part18.html#sect_10.6. # http://dicom.nema.org/medical/dicom/current/output/html/part18.html#sect_10.6.
# @param [String] parent # @param [String] parent
# The name of the DICOM store that is being accessed (for example, # The name of the DICOM store that is being accessed. For example,
# `projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/ # `projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/
# dicomStores/`dicom_store_id``). # dicomStores/`dicom_store_id``.
# @param [String] dicom_web_path # @param [String] dicom_web_path
# The path of the SearchForSeries DICOMweb request(for example, `series` or # The path of the SearchForSeries DICOMweb request. For example, `series` or
# `studies/`study_uid`/series`). # `studies/`study_uid`/series`.
# @param [String] fields # @param [String] fields
# Selector specifying which fields to include in a partial response. # Selector specifying which fields to include in a partial response.
# @param [String] quota_user # @param [String] quota_user
@ -1229,12 +1226,12 @@ module Google
# identifiers (SUID). See # identifiers (SUID). See
# http://dicom.nema.org/medical/dicom/current/output/html/part18.html#sect_10.5. # http://dicom.nema.org/medical/dicom/current/output/html/part18.html#sect_10.5.
# @param [String] parent # @param [String] parent
# The name of the DICOM store that is being accessed (for example, # The name of the DICOM store that is being accessed. For example,
# `projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/ # `projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/
# dicomStores/`dicom_store_id``). # dicomStores/`dicom_store_id``.
# @param [String] dicom_web_path # @param [String] dicom_web_path
# The path of the StoreInstances DICOMweb request (for example, # The path of the StoreInstances DICOMweb request. For example,
# `studies/[`study_uid`]`). Note that the `study_uid` is optional. # `studies/[`study_uid`]`. Note that the `study_uid` is optional.
# @param [Google::Apis::HealthcareV1beta1::HttpBody] http_body_object # @param [Google::Apis::HealthcareV1beta1::HttpBody] http_body_object
# @param [String] fields # @param [String] fields
# Selector specifying which fields to include in a partial response. # Selector specifying which fields to include in a partial response.
@ -1270,12 +1267,12 @@ module Google
# Delete requests are equivalent to the GET requests specified in the WADO-RS # Delete requests are equivalent to the GET requests specified in the WADO-RS
# standard. # standard.
# @param [String] parent # @param [String] parent
# The name of the DICOM store that is being accessed (for example, # The name of the DICOM store that is being accessed. For example,
# `projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/ # `projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/
# dicomStores/`dicom_store_id``). # dicomStores/`dicom_store_id``.
# @param [String] dicom_web_path # @param [String] dicom_web_path
# The path of the DeleteSeries request (for example, # The path of the DeleteSeries request. For example,
# `studies/`study_uid`/series/`series_uid``). # `studies/`study_uid`/series/`series_uid``.
# @param [String] fields # @param [String] fields
# Selector specifying which fields to include in a partial response. # Selector specifying which fields to include in a partial response.
# @param [String] quota_user # @param [String] quota_user
@ -1308,12 +1305,12 @@ module Google
# series, presented as metadata with the bulk data removed. See # series, presented as metadata with the bulk data removed. See
# http://dicom.nema.org/medical/dicom/current/output/html/part18.html#sect_10.4. # http://dicom.nema.org/medical/dicom/current/output/html/part18.html#sect_10.4.
# @param [String] parent # @param [String] parent
# The name of the DICOM store that is being accessed (for example, # The name of the DICOM store that is being accessed. For example,
# `projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/ # `projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/
# dicomStores/`dicom_store_id``). # dicomStores/`dicom_store_id``.
# @param [String] dicom_web_path # @param [String] dicom_web_path
# The path of the RetrieveSeriesMetadata DICOMweb request (for example, # The path of the RetrieveSeriesMetadata DICOMweb request. For example,
# `studies/`study_uid`/series/`series_uid`/metadata`). # `studies/`study_uid`/series/`series_uid`/metadata`.
# @param [String] fields # @param [String] fields
# Selector specifying which fields to include in a partial response. # Selector specifying which fields to include in a partial response.
# @param [String] quota_user # @param [String] quota_user
@ -1345,12 +1342,12 @@ module Google
# RetrieveSeries returns all instances within the given study and series. See # RetrieveSeries returns all instances within the given study and series. See
# http://dicom.nema.org/medical/dicom/current/output/html/part18.html#sect_10.4. # http://dicom.nema.org/medical/dicom/current/output/html/part18.html#sect_10.4.
# @param [String] parent # @param [String] parent
# The name of the DICOM store that is being accessed (for example, # The name of the DICOM store that is being accessed. For example,
# `projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/ # `projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/
# dicomStores/`dicom_store_id``). # dicomStores/`dicom_store_id``.
# @param [String] dicom_web_path # @param [String] dicom_web_path
# The path of the RetrieveSeries DICOMweb request (for example, # The path of the RetrieveSeries DICOMweb request. For example,
# `studies/`study_uid`/series/`series_uid``). # `studies/`study_uid`/series/`series_uid``.
# @param [String] fields # @param [String] fields
# Selector specifying which fields to include in a partial response. # Selector specifying which fields to include in a partial response.
# @param [String] quota_user # @param [String] quota_user
@ -1382,13 +1379,13 @@ module Google
# SearchForInstances returns a list of matching instances. See # SearchForInstances returns a list of matching instances. See
# http://dicom.nema.org/medical/dicom/current/output/html/part18.html#sect_10.6. # http://dicom.nema.org/medical/dicom/current/output/html/part18.html#sect_10.6.
# @param [String] parent # @param [String] parent
# The name of the DICOM store that is being accessed (for example, # The name of the DICOM store that is being accessed. For example,
# `projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/ # `projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/
# dicomStores/`dicom_store_id``). # dicomStores/`dicom_store_id``.
# @param [String] dicom_web_path # @param [String] dicom_web_path
# The path of the SearchForInstancesRequest DICOMweb request (for example, # The path of the SearchForInstancesRequest DICOMweb request. For example,
# `instances` or `series/`series_uid`/instances` or # `instances`, `series/`series_uid`/instances`, or
# `studies/`study_uid`/instances`). # `studies/`study_uid`/instances`.
# @param [String] fields # @param [String] fields
# Selector specifying which fields to include in a partial response. # Selector specifying which fields to include in a partial response.
# @param [String] quota_user # @param [String] quota_user
@ -1421,12 +1418,12 @@ module Google
# and SOP Instance UID. Delete requests are equivalent to the GET requests # and SOP Instance UID. Delete requests are equivalent to the GET requests
# specified in the WADO-RS standard. # specified in the WADO-RS standard.
# @param [String] parent # @param [String] parent
# The name of the DICOM store that is being accessed (for example, # The name of the DICOM store that is being accessed. For example,
# `projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/ # `projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/
# dicomStores/`dicom_store_id``). # dicomStores/`dicom_store_id``.
# @param [String] dicom_web_path # @param [String] dicom_web_path
# The path of the DeleteInstance request (for example, # The path of the DeleteInstance request. For example,
# `studies/`study_uid`/series/`series_uid`/instances/`instance_uid``). # `studies/`study_uid`/series/`series_uid`/instances/`instance_uid``.
# @param [String] fields # @param [String] fields
# Selector specifying which fields to include in a partial response. # Selector specifying which fields to include in a partial response.
# @param [String] quota_user # @param [String] quota_user
@ -1459,12 +1456,12 @@ module Google
# and SOP Instance UID. See # and SOP Instance UID. See
# http://dicom.nema.org/medical/dicom/current/output/html/part18.html#sect_10.4. # http://dicom.nema.org/medical/dicom/current/output/html/part18.html#sect_10.4.
# @param [String] parent # @param [String] parent
# The name of the DICOM store that is being accessed (for example, # The name of the DICOM store that is being accessed. For example,
# `projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/ # `projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/
# dicomStores/`dicom_store_id``). # dicomStores/`dicom_store_id``.
# @param [String] dicom_web_path # @param [String] dicom_web_path
# The path of the RetrieveInstance DICOMweb request (for example, # The path of the RetrieveInstance DICOMweb request. For example,
# `studies/`study_uid`/series/`series_uid`/instances/`instance_uid``). # `studies/`study_uid`/series/`series_uid`/instances/`instance_uid``.
# @param [String] fields # @param [String] fields
# Selector specifying which fields to include in a partial response. # Selector specifying which fields to include in a partial response.
# @param [String] quota_user # @param [String] quota_user
@ -1498,12 +1495,12 @@ module Google
# removed. See # removed. See
# http://dicom.nema.org/medical/dicom/current/output/html/part18.html#sect_10.4. # http://dicom.nema.org/medical/dicom/current/output/html/part18.html#sect_10.4.
# @param [String] parent # @param [String] parent
# The name of the DICOM store that is being accessed (for example, # The name of the DICOM store that is being accessed. For example,
# `projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/ # `projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/
# dicomStores/`dicom_store_id``). # dicomStores/`dicom_store_id``.
# @param [String] dicom_web_path # @param [String] dicom_web_path
# The path of the RetrieveInstanceMetadata DICOMweb request (for example, # The path of the RetrieveInstanceMetadata DICOMweb request. For example,
# `studies/`study_uid`/series/`series_uid`/instances/`instance_uid`/metadata`). # `studies/`study_uid`/series/`series_uid`/instances/`instance_uid`/metadata`.
# @param [String] fields # @param [String] fields
# Selector specifying which fields to include in a partial response. # Selector specifying which fields to include in a partial response.
# @param [String] quota_user # @param [String] quota_user
@ -1536,12 +1533,12 @@ module Google
# series, and SOP Instance UID in an acceptable Rendered Media Type. See # series, and SOP Instance UID in an acceptable Rendered Media Type. See
# http://dicom.nema.org/medical/dicom/current/output/html/part18.html#sect_10.4. # http://dicom.nema.org/medical/dicom/current/output/html/part18.html#sect_10.4.
# @param [String] parent # @param [String] parent
# The name of the DICOM store that is being accessed (for example, # The name of the DICOM store that is being accessed. For example,
# `projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/ # `projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/
# dicomStores/`dicom_store_id``). # dicomStores/`dicom_store_id``.
# @param [String] dicom_web_path # @param [String] dicom_web_path
# The path of the RetrieveRenderedInstance DICOMweb request (for example, # The path of the RetrieveRenderedInstance DICOMweb request. For example,
# `studies/`study_uid`/series/`series_uid`/instances/`instance_uid`/rendered`). # `studies/`study_uid`/series/`series_uid`/instances/`instance_uid`/rendered`.
# @param [String] fields # @param [String] fields
# Selector specifying which fields to include in a partial response. # Selector specifying which fields to include in a partial response.
# @param [String] quota_user # @param [String] quota_user
@ -1574,13 +1571,13 @@ module Google
# SOP Instance UID and frame numbers. See # SOP Instance UID and frame numbers. See
# http://dicom.nema.org/medical/dicom/current/output/html/part18.html#sect_10.4. # http://dicom.nema.org/medical/dicom/current/output/html/part18.html#sect_10.4.
# @param [String] parent # @param [String] parent
# The name of the DICOM store that is being accessed (for example, # The name of the DICOM store that is being accessed. For example,
# `projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/ # `projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/
# dicomStores/`dicom_store_id``). # dicomStores/`dicom_store_id``.
# @param [String] dicom_web_path # @param [String] dicom_web_path
# The path of the RetrieveFrames DICOMweb request (for example, # The path of the RetrieveFrames DICOMweb request. For example,
# `studies/`study_uid`/series/`series_uid`/instances/`instance_uid`/frames/` # `studies/`study_uid`/series/`series_uid`/instances/`instance_uid`/frames/`
# frame_list``). # frame_list``.
# @param [String] fields # @param [String] fields
# Selector specifying which fields to include in a partial response. # Selector specifying which fields to include in a partial response.
# @param [String] quota_user # @param [String] quota_user
@ -1614,13 +1611,13 @@ module Google
# Type. See # Type. See
# http://dicom.nema.org/medical/dicom/current/output/html/part18.html#sect_10.4. # http://dicom.nema.org/medical/dicom/current/output/html/part18.html#sect_10.4.
# @param [String] parent # @param [String] parent
# The name of the DICOM store that is being accessed (for example, # The name of the DICOM store that is being accessed. For example,
# `projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/ # `projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/
# dicomStores/`dicom_store_id``). # dicomStores/`dicom_store_id``.
# @param [String] dicom_web_path # @param [String] dicom_web_path
# The path of the RetrieveRenderedFrames DICOMweb request (for example, # The path of the RetrieveRenderedFrames DICOMweb request. For example,
# `studies/`study_uid`/series/`series_uid`/instances/`instance_uid`/frames/` # `studies/`study_uid`/series/`series_uid`/instances/`instance_uid`/frames/`
# frame_list`/rendered`). # frame_list`/rendered`.
# @param [String] fields # @param [String] fields
# Selector specifying which fields to include in a partial response. # Selector specifying which fields to include in a partial response.
# @param [String] quota_user # @param [String] quota_user
@ -2142,7 +2139,7 @@ module Google
# operations.html#lastn). # operations.html#lastn).
# Search terms are provided as query parameters following the same pattern as # Search terms are provided as query parameters following the same pattern as
# the search method. The following search parameters must # the search method. The following search parameters must
# be provided # be provided:
# - `subject` or `patient` to specify a subject for the Observation. # - `subject` or `patient` to specify a subject for the Observation.
# - `code`, `category` or any of the composite parameters that include # - `code`, `category` or any of the composite parameters that include
# `code`. # `code`.
@ -2150,6 +2147,10 @@ module Google
# operation accepts an additional query parameter `max`, which specifies N, # operation accepts an additional query parameter `max`, which specifies N,
# the maximum number of Observations to return from each group, with a # the maximum number of Observations to return from each group, with a
# default of 1. # default of 1.
# Searches with over 1000 results are rejected. Results are counted before
# grouping and limiting the results with `max`. To stay within the limit,
# constrain these searches using Observation search parameters such as
# `_lastUpdated` or `date`.
# On success, the response body will contain a JSON-encoded representation # On success, the response body will contain a JSON-encoded representation
# of a `Bundle` resource of type `searchset`, containing the results of the # of a `Bundle` resource of type `searchset`, containing the results of the
# operation. # operation.
@ -2186,11 +2187,6 @@ module Google
execute_or_queue_command(command, &block) execute_or_queue_command(command, &block)
end end
# Retrieves all the resources directly referenced by a patient, as well as
# all of the resources in the patient compartment.
# Implements the FHIR extended operation
# [Patient-everything](http://hl7.org/implement/standards/fhir/STU3/patient-
# operations.html#everything).
# On success, the response body will contain a JSON-encoded representation # On success, the response body will contain a JSON-encoded representation
# of a `Bundle` resource of type `searchset`, containing the results of the # of a `Bundle` resource of type `searchset`, containing the results of the
# operation. # operation.
@ -2806,9 +2802,10 @@ module Google
# request cannot be mapped to a valid API method on a FHIR store, a generic # request cannot be mapped to a valid API method on a FHIR store, a generic
# GCP error might be returned instead. # GCP error might be returned instead.
# The server's capability statement, retrieved through # The server's capability statement, retrieved through
# capabilities, indicates what search parameters # capabilities, indicates the search parameters
# are supported on each FHIR resource. A list of all search parameters # that are supported on each FHIR resource. For the list of search
# defined by the specification can be found in the [FHIR Search Parameter # parameters for STU3, see the
# [STU3 FHIR Search Parameter
# Registry](http://hl7.org/implement/standards/fhir/STU3/searchparameter- # Registry](http://hl7.org/implement/standards/fhir/STU3/searchparameter-
# registry.html). # registry.html).
# Supported search modifiers: `:missing`, `:exact`, `:contains`, `:text`, # Supported search modifiers: `:missing`, `:exact`, `:contains`, `:text`,
@ -3399,10 +3396,6 @@ module Google
# `send_time < "2017-01-02T00:00:00-05:00"`. # `send_time < "2017-01-02T00:00:00-05:00"`.
# * `send_facility`, the care center that the message came from, from the # * `send_facility`, the care center that the message came from, from the
# MSH-4 segment. For example, `send_facility = "ABC"`. # MSH-4 segment. For example, `send_facility = "ABC"`.
# * `HL7RegExp(expr)`, which does regular expression matching of `expr`
# against the message payload using RE2 syntax
# (https://github.com/google/re2/wiki/Syntax). For example,
# `HL7RegExp("^.*\|.*\|EMERG")`.
# * `PatientId(value, type)`, which matches if the message lists a patient # * `PatientId(value, type)`, which matches if the message lists a patient
# having an ID of the given value and type in the PID-2, PID-3, or PID-4 # having an ID of the given value and type in the PID-2, PID-3, or PID-4
# segments. For example, `PatientId("123456", "MRN")`. # segments. For example, `PatientId("123456", "MRN")`.