Skip to content

Commit ac8aed5

Browse files
1 parent 1c733ae commit ac8aed5

File tree

8 files changed

+78
-12
lines changed

8 files changed

+78
-12
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-rev20251117-2.0.0</version>
25+
<version>v1-rev20251211-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-rev20251117-2.0.0'
38+
implementation 'com.google.apis:google-api-services-healthcare:v1-rev20251211-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,16 @@ public final class ValidationConfig extends com.google.api.client.json.GenericJs
7171
@com.google.api.client.util.Key
7272
private java.lang.Boolean disableRequiredFieldValidation;
7373

74+
/**
75+
* Optional. Whether to enable FHIRPath validation for incoming resource types that have profiles
76+
* configured for them in the `enabled_implementation_guides` list. Set this to true to enable
77+
* checking incoming resources for conformance against FHIRPath requirements defined in the
78+
* configured profiles.
79+
* The value may be {@code null}.
80+
*/
81+
@com.google.api.client.util.Key
82+
private java.lang.Boolean enableFhirpathProfileValidation;
83+
7484
/**
7585
* Optional. A list of implementation guide URLs in this FHIR store that are used to configure the
7686
* profiles to use for validation. For example, to use the US Core profiles for validation, set
@@ -184,6 +194,29 @@ public ValidationConfig setDisableRequiredFieldValidation(java.lang.Boolean disa
184194
return this;
185195
}
186196

197+
/**
198+
* Optional. Whether to enable FHIRPath validation for incoming resource types that have profiles
199+
* configured for them in the `enabled_implementation_guides` list. Set this to true to enable
200+
* checking incoming resources for conformance against FHIRPath requirements defined in the
201+
* configured profiles.
202+
* @return value or {@code null} for none
203+
*/
204+
public java.lang.Boolean getEnableFhirpathProfileValidation() {
205+
return enableFhirpathProfileValidation;
206+
}
207+
208+
/**
209+
* Optional. Whether to enable FHIRPath validation for incoming resource types that have profiles
210+
* configured for them in the `enabled_implementation_guides` list. Set this to true to enable
211+
* checking incoming resources for conformance against FHIRPath requirements defined in the
212+
* configured profiles.
213+
* @param enableFhirpathProfileValidation enableFhirpathProfileValidation or {@code null} for none
214+
*/
215+
public ValidationConfig setEnableFhirpathProfileValidation(java.lang.Boolean enableFhirpathProfileValidation) {
216+
this.enableFhirpathProfileValidation = enableFhirpathProfileValidation;
217+
return this;
218+
}
219+
187220
/**
188221
* Optional. A list of implementation guide URLs in this FHIR store that are used to configure the
189222
* profiles to use for validation. For example, to use the US Core profiles for validation, set

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-rev20251117-2.0.0</version>
12-
<name>Cloud Healthcare API v1-rev20251117-2.0.0</name>
11+
<version>v1-rev20251211-2.0.0</version>
12+
<name>Cloud Healthcare API v1-rev20251211-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-rev20251117-2.0.0</version>
25+
<version>v1-rev20251211-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-rev20251117-2.0.0'
38+
implementation 'com.google.apis:google-api-services-healthcare:v1-rev20251211-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-rev20251117-2.0.0</version>
25+
<version>v1beta1-rev20251211-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-rev20251117-2.0.0'
38+
implementation 'com.google.apis:google-api-services-healthcare:v1beta1-rev20251211-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,16 @@ public final class ValidationConfig extends com.google.api.client.json.GenericJs
7171
@com.google.api.client.util.Key
7272
private java.lang.Boolean disableRequiredFieldValidation;
7373

74+
/**
75+
* Optional. Whether to enable FHIRPath validation for incoming resource types that have profiles
76+
* configured for them in the `enabled_implementation_guides` list. Set this to true to enable
77+
* checking incoming resources for conformance against FHIRPath requirements defined in the
78+
* configured profiles.
79+
* The value may be {@code null}.
80+
*/
81+
@com.google.api.client.util.Key
82+
private java.lang.Boolean enableFhirpathProfileValidation;
83+
7484
/**
7585
* A list of ImplementationGuide URLs in this FHIR store that are used to configure the profiles
7686
* to use for validation. For example, to use the US Core profiles for validation, set
@@ -184,6 +194,29 @@ public ValidationConfig setDisableRequiredFieldValidation(java.lang.Boolean disa
184194
return this;
185195
}
186196

197+
/**
198+
* Optional. Whether to enable FHIRPath validation for incoming resource types that have profiles
199+
* configured for them in the `enabled_implementation_guides` list. Set this to true to enable
200+
* checking incoming resources for conformance against FHIRPath requirements defined in the
201+
* configured profiles.
202+
* @return value or {@code null} for none
203+
*/
204+
public java.lang.Boolean getEnableFhirpathProfileValidation() {
205+
return enableFhirpathProfileValidation;
206+
}
207+
208+
/**
209+
* Optional. Whether to enable FHIRPath validation for incoming resource types that have profiles
210+
* configured for them in the `enabled_implementation_guides` list. Set this to true to enable
211+
* checking incoming resources for conformance against FHIRPath requirements defined in the
212+
* configured profiles.
213+
* @param enableFhirpathProfileValidation enableFhirpathProfileValidation or {@code null} for none
214+
*/
215+
public ValidationConfig setEnableFhirpathProfileValidation(java.lang.Boolean enableFhirpathProfileValidation) {
216+
this.enableFhirpathProfileValidation = enableFhirpathProfileValidation;
217+
return this;
218+
}
219+
187220
/**
188221
* A list of ImplementationGuide URLs in this FHIR store that are used to configure the profiles
189222
* to use for validation. For example, to use the US Core profiles for validation, set

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-rev20251117-2.0.0</version>
12-
<name>Cloud Healthcare API v1beta1-rev20251117-2.0.0</name>
11+
<version>v1beta1-rev20251211-2.0.0</version>
12+
<name>Cloud Healthcare API v1beta1-rev20251211-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-rev20251117-2.0.0</version>
25+
<version>v1beta1-rev20251211-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-rev20251117-2.0.0'
38+
implementation 'com.google.apis:google-api-services-healthcare:v1beta1-rev20251211-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)