Skip to content

Commit 5f61c3c

Browse files
1 parent 0e30e3d commit 5f61c3c

File tree

10 files changed

+85
-27
lines changed

10 files changed

+85
-27
lines changed

clients/google-api-services-healthcare/v1/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-healthcare</artifactId>
25-
<version>v1-rev20251001-2.0.0</version>
25+
<version>v1-rev20251009-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-healthcare:v1-rev20251001-2.0.0'
38+
implementation 'com.google.apis:google-api-services-healthcare:v1-rev20251009-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-healthcare/v1/2.0.0/com/google/api/services/healthcare/v1/CloudHealthcare.java

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21326,7 +21326,8 @@ public ConditionalDelete set(String parameterName, Object value) {
2132621326
* in the same way it supports STU3. Search term for identifier should be in the pattern
2132721327
* `identifier=system|value` or `identifier=value` - similar to the `search` method on resources
2132821328
* with a specific identifier. If the search criteria identify more than one match, the request
21329-
* returns a `412 Precondition Failed` error. The request body must contain a JSON Patch document,
21329+
* returns a `412 Precondition Failed` error. If the search criteria doesn't identify any matches,
21330+
* the request returns a `404 Not Found` error. The request body must contain a JSON Patch document,
2133021331
* and the request headers must contain `Content-Type: application/json-patch+json`. On success, the
2133121332
* response body contains a JSON-encoded representation of the updated resource, including the
2133221333
* server-assigned version ID. Errors generated by the FHIR store contain a JSON-encoded
@@ -21374,12 +21375,13 @@ public class ConditionalPatch extends CloudHealthcareRequest<com.google.api.serv
2137421375
* it in the same way it supports STU3. Search term for identifier should be in the pattern
2137521376
* `identifier=system|value` or `identifier=value` - similar to the `search` method on resources
2137621377
* with a specific identifier. If the search criteria identify more than one match, the request
21377-
* returns a `412 Precondition Failed` error. The request body must contain a JSON Patch document,
21378-
* and the request headers must contain `Content-Type: application/json-patch+json`. On success,
21379-
* the response body contains a JSON-encoded representation of the updated resource, including the
21380-
* server-assigned version ID. Errors generated by the FHIR store contain a JSON-encoded
21381-
* `OperationOutcome` resource describing the reason for the error. If the request cannot be
21382-
* mapped to a valid API method on a FHIR store, a generic GCP error might be returned instead.
21378+
* returns a `412 Precondition Failed` error. If the search criteria doesn't identify any matches,
21379+
* the request returns a `404 Not Found` error. The request body must contain a JSON Patch
21380+
* document, and the request headers must contain `Content-Type: application/json-patch+json`. On
21381+
* success, the response body contains a JSON-encoded representation of the updated resource,
21382+
* including the server-assigned version ID. Errors generated by the FHIR store contain a JSON-
21383+
* encoded `OperationOutcome` resource describing the reason for the error. If the request cannot
21384+
* be mapped to a valid API method on a FHIR store, a generic GCP error might be returned instead.
2138321385
* For samples that show how to call `conditionalPatch`, see [Conditionally patching a FHIR
2138421386
* resource](https://cloud.google.com/healthcare/docs/how-tos/fhir-
2138521387
* resources#conditionally_patching_a_fhir_resource).

clients/google-api-services-healthcare/v1/2.0.0/com/google/api/services/healthcare/v1/model/FhirStoreMetric.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,14 @@ public final class FhirStoreMetric extends com.google.api.client.json.GenericJso
5151
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
5252
private java.lang.Long structuredStorageSizeBytes;
5353

54+
/**
55+
* The total amount of versioned storage used by versioned FHIR resources of this resource type in
56+
* the store.
57+
* The value may be {@code null}.
58+
*/
59+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
60+
private java.lang.Long versionedStorageSizeBytes;
61+
5462
/**
5563
* The total count of FHIR resources in the store of this resource type.
5664
* @return value or {@code null} for none
@@ -104,6 +112,25 @@ public FhirStoreMetric setStructuredStorageSizeBytes(java.lang.Long structuredSt
104112
return this;
105113
}
106114

115+
/**
116+
* The total amount of versioned storage used by versioned FHIR resources of this resource type in
117+
* the store.
118+
* @return value or {@code null} for none
119+
*/
120+
public java.lang.Long getVersionedStorageSizeBytes() {
121+
return versionedStorageSizeBytes;
122+
}
123+
124+
/**
125+
* The total amount of versioned storage used by versioned FHIR resources of this resource type in
126+
* the store.
127+
* @param versionedStorageSizeBytes versionedStorageSizeBytes or {@code null} for none
128+
*/
129+
public FhirStoreMetric setVersionedStorageSizeBytes(java.lang.Long versionedStorageSizeBytes) {
130+
this.versionedStorageSizeBytes = versionedStorageSizeBytes;
131+
return this;
132+
}
133+
107134
@Override
108135
public FhirStoreMetric set(String fieldName, Object value) {
109136
return (FhirStoreMetric) super.set(fieldName, value);

clients/google-api-services-healthcare/v1/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-healthcare</artifactId>
11-
<version>v1-rev20251001-2.0.0</version>
12-
<name>Cloud Healthcare API v1-rev20251001-2.0.0</name>
11+
<version>v1-rev20251009-2.0.0</version>
12+
<name>Cloud Healthcare API v1-rev20251009-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-healthcare/v1/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-healthcare</artifactId>
25-
<version>v1-rev20251001-2.0.0</version>
25+
<version>v1-rev20251009-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-healthcare:v1-rev20251001-2.0.0'
38+
implementation 'com.google.apis:google-api-services-healthcare:v1-rev20251009-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-healthcare/v1beta1/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-healthcare</artifactId>
25-
<version>v1beta1-rev20251001-2.0.0</version>
25+
<version>v1beta1-rev20251009-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-healthcare:v1beta1-rev20251001-2.0.0'
38+
implementation 'com.google.apis:google-api-services-healthcare:v1beta1-rev20251009-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-healthcare/v1beta1/2.0.0/com/google/api/services/healthcare/v1beta1/CloudHealthcare.java

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24081,13 +24081,14 @@ public ConditionalDelete set(String parameterName, Object value) {
2408124081
* DSTU2 doesn't define a conditional patch method, but the server supports it in the same way it
2408224082
* supports STU3. Search terms are provided as query parameters following the same pattern as the
2408324083
* search method. If the search criteria identify more than one match, the request returns a `412
24084-
* Precondition Failed` error. The request body must contain a JSON Patch document, and the request
24085-
* headers must contain `Content-Type: application/json-patch+json`. On success, the response body
24086-
* contains a JSON-encoded representation of the updated resource, including the server-assigned
24087-
* version ID. Errors generated by the FHIR store contain a JSON-encoded `OperationOutcome` resource
24088-
* describing the reason for the error. If the request cannot be mapped to a valid API method on a
24089-
* FHIR store, a generic GCP error might be returned instead. This method requires
24090-
* the`healthcare.fhirStores.searchResources` permission on the parent FHIR store and the
24084+
* Precondition Failed` error. If the search criteria doesn't identify any matches, the request
24085+
* returns a `404 Not Found` error. The request body must contain a JSON Patch document, and the
24086+
* request headers must contain `Content-Type: application/json-patch+json`. On success, the
24087+
* response body contains a JSON-encoded representation of the updated resource, including the
24088+
* server-assigned version ID. Errors generated by the FHIR store contain a JSON-encoded
24089+
* `OperationOutcome` resource describing the reason for the error. If the request cannot be mapped
24090+
* to a valid API method on a FHIR store, a generic GCP error might be returned instead. This method
24091+
* requires the`healthcare.fhirStores.searchResources` permission on the parent FHIR store and the
2409124092
* `healthcare.fhirResources.patch` permission on the requested FHIR store resource. For samples
2409224093
* that show how to call `conditionalPatch`, see [Conditionally patching a FHIR
2409324094
* resource](https://cloud.google.com/healthcare/docs/how-tos/fhir-
@@ -24132,7 +24133,8 @@ public class ConditionalPatch extends CloudHealthcareRequest<com.google.api.serv
2413224133
* DSTU2 doesn't define a conditional patch method, but the server supports it in the same way it
2413324134
* supports STU3. Search terms are provided as query parameters following the same pattern as the
2413424135
* search method. If the search criteria identify more than one match, the request returns a `412
24135-
* Precondition Failed` error. The request body must contain a JSON Patch document, and the
24136+
* Precondition Failed` error. If the search criteria doesn't identify any matches, the request
24137+
* returns a `404 Not Found` error. The request body must contain a JSON Patch document, and the
2413624138
* request headers must contain `Content-Type: application/json-patch+json`. On success, the
2413724139
* response body contains a JSON-encoded representation of the updated resource, including the
2413824140
* server-assigned version ID. Errors generated by the FHIR store contain a JSON-encoded

clients/google-api-services-healthcare/v1beta1/2.0.0/com/google/api/services/healthcare/v1beta1/model/FhirStoreMetric.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,14 @@ public final class FhirStoreMetric extends com.google.api.client.json.GenericJso
5151
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
5252
private java.lang.Long structuredStorageSizeBytes;
5353

54+
/**
55+
* The total amount of versioned storage used by versioned FHIR resources of this resource type in
56+
* the store.
57+
* The value may be {@code null}.
58+
*/
59+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
60+
private java.lang.Long versionedStorageSizeBytes;
61+
5462
/**
5563
* The total count of FHIR resources in the store of this resource type.
5664
* @return value or {@code null} for none
@@ -104,6 +112,25 @@ public FhirStoreMetric setStructuredStorageSizeBytes(java.lang.Long structuredSt
104112
return this;
105113
}
106114

115+
/**
116+
* The total amount of versioned storage used by versioned FHIR resources of this resource type in
117+
* the store.
118+
* @return value or {@code null} for none
119+
*/
120+
public java.lang.Long getVersionedStorageSizeBytes() {
121+
return versionedStorageSizeBytes;
122+
}
123+
124+
/**
125+
* The total amount of versioned storage used by versioned FHIR resources of this resource type in
126+
* the store.
127+
* @param versionedStorageSizeBytes versionedStorageSizeBytes or {@code null} for none
128+
*/
129+
public FhirStoreMetric setVersionedStorageSizeBytes(java.lang.Long versionedStorageSizeBytes) {
130+
this.versionedStorageSizeBytes = versionedStorageSizeBytes;
131+
return this;
132+
}
133+
107134
@Override
108135
public FhirStoreMetric set(String fieldName, Object value) {
109136
return (FhirStoreMetric) super.set(fieldName, value);

clients/google-api-services-healthcare/v1beta1/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-healthcare</artifactId>
11-
<version>v1beta1-rev20251001-2.0.0</version>
12-
<name>Cloud Healthcare API v1beta1-rev20251001-2.0.0</name>
11+
<version>v1beta1-rev20251009-2.0.0</version>
12+
<name>Cloud Healthcare API v1beta1-rev20251009-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-healthcare/v1beta1/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-healthcare</artifactId>
25-
<version>v1beta1-rev20251001-2.0.0</version>
25+
<version>v1beta1-rev20251009-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-healthcare:v1beta1-rev20251001-2.0.0'
38+
implementation 'com.google.apis:google-api-services-healthcare:v1beta1-rev20251009-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)