Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -270935,6 +270935,7 @@
"/healthcare:v1/FhirStoreMetric/count": count
"/healthcare:v1/FhirStoreMetric/resourceType": resource_type
"/healthcare:v1/FhirStoreMetric/structuredStorageSizeBytes": structured_storage_size_bytes
"/healthcare:v1/FhirStoreMetric/versionedStorageSizeBytes": versioned_storage_size_bytes
"/healthcare:v1/FhirStoreMetrics": fhir_store_metrics
"/healthcare:v1/FhirStoreMetrics/metrics": metrics
"/healthcare:v1/FhirStoreMetrics/metrics/metric": metric
Expand Down
4 changes: 4 additions & 0 deletions generated/google-apis-healthcare_v1/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history for google-apis-healthcare_v1

### v0.83.0 (2025-11-02)

* Regenerated from discovery document revision 20251009

### v0.82.0 (2025-10-19)

* Regenerated from discovery document revision 20251001
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2806,6 +2806,12 @@ class FhirStoreMetric
# @return [Fixnum]
attr_accessor :structured_storage_size_bytes

# The total amount of versioned storage used by versioned FHIR resources of this
# resource type in the store.
# Corresponds to the JSON property `versionedStorageSizeBytes`
# @return [Fixnum]
attr_accessor :versioned_storage_size_bytes

def initialize(**args)
update!(**args)
end
Expand All @@ -2815,6 +2821,7 @@ def update!(**args)
@count = args[:count] if args.key?(:count)
@resource_type = args[:resource_type] if args.key?(:resource_type)
@structured_storage_size_bytes = args[:structured_storage_size_bytes] if args.key?(:structured_storage_size_bytes)
@versioned_storage_size_bytes = args[:versioned_storage_size_bytes] if args.key?(:versioned_storage_size_bytes)
end
end

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module HealthcareV1
# Version of the google-apis-healthcare_v1 gem
GEM_VERSION = "0.82.0"
GEM_VERSION = "0.83.0"

# Version of the code generator used to generate this client
GENERATOR_VERSION = "0.18.0"

# Revision of the discovery document this client was generated from
REVISION = "20251001"
REVISION = "20251009"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -1770,6 +1770,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
property :count, :numeric_string => true, as: 'count'
property :resource_type, as: 'resourceType'
property :structured_storage_size_bytes, :numeric_string => true, as: 'structuredStorageSizeBytes'
property :versioned_storage_size_bytes, :numeric_string => true, as: 'versionedStorageSizeBytes'
end
end

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5023,16 +5023,17 @@ def conditional_project_location_dataset_fhir_store_fhir_delete(parent, type, fi
# pattern `identifier=system|value` or `identifier=value` - similar to the `
# search` method on resources with a specific identifier. If the search criteria
# identify more than one match, the request returns a `412 Precondition Failed`
# error. The request body must contain a JSON Patch document, and the request
# headers must contain `Content-Type: application/json-patch+json`. On success,
# the response body contains a JSON-encoded representation of the updated
# resource, including the server-assigned version ID. Errors generated by the
# FHIR store contain a JSON-encoded `OperationOutcome` resource describing the
# reason for the error. If the request cannot be mapped to a valid API method on
# a FHIR store, a generic GCP error might be returned instead. For samples that
# show how to call `conditionalPatch`, see [Conditionally patching a FHIR
# resource](https://cloud.google.com/healthcare/docs/how-tos/fhir-resources#
# conditionally_patching_a_fhir_resource).
# error. If the search criteria doesn't identify any matches, the request
# returns a `404 Not Found` error. The request body must contain a JSON Patch
# document, and the request headers must contain `Content-Type: application/json-
# patch+json`. On success, the response body contains a JSON-encoded
# representation of the updated resource, including the server-assigned version
# ID. Errors generated by the FHIR store contain a JSON-encoded `
# OperationOutcome` resource describing the reason for the error. If the request
# cannot be mapped to a valid API method on a FHIR store, a generic GCP error
# might be returned instead. For samples that show how to call `conditionalPatch`
# , see [Conditionally patching a FHIR resource](https://cloud.google.com/
# healthcare/docs/how-tos/fhir-resources#conditionally_patching_a_fhir_resource).
# @param [String] parent
# Required. The name of the FHIR store this resource belongs to.
# @param [String] type
Expand Down