Skip to content

Commit 68cf4ef

Browse files
1 parent 1619258 commit 68cf4ef

File tree

10 files changed

+122
-26
lines changed

10 files changed

+122
-26
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-rev20250206-2.0.0</version>
25+
<version>v1-rev20250219-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-rev20250206-2.0.0'
38+
implementation 'com.google.apis:google-api-services-healthcare:v1-rev20250219-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,14 @@ public final class ConsentAccessorScope extends com.google.api.client.json.Gener
4040

4141
/**
4242
* An abstract identifier that describes the environment or conditions under which the accessor is
43-
* acting. Can be "*" if it applies to all environments.
43+
* acting. If it's not specified, it applies to all environments.
4444
* The value may be {@code null}.
4545
*/
4646
@com.google.api.client.util.Key
4747
private java.lang.String environment;
4848

4949
/**
50-
* The intent of data use. Can be "*" if it applies to all purposes.
50+
* The intent of data use. If it's not specified, it applies to all purposes.
5151
* The value may be {@code null}.
5252
*/
5353
@com.google.api.client.util.Key
@@ -76,7 +76,7 @@ public ConsentAccessorScope setActor(java.lang.String actor) {
7676

7777
/**
7878
* An abstract identifier that describes the environment or conditions under which the accessor is
79-
* acting. Can be "*" if it applies to all environments.
79+
* acting. If it's not specified, it applies to all environments.
8080
* @return value or {@code null} for none
8181
*/
8282
public java.lang.String getEnvironment() {
@@ -85,7 +85,7 @@ public java.lang.String getEnvironment() {
8585

8686
/**
8787
* An abstract identifier that describes the environment or conditions under which the accessor is
88-
* acting. Can be "*" if it applies to all environments.
88+
* acting. If it's not specified, it applies to all environments.
8989
* @param environment environment or {@code null} for none
9090
*/
9191
public ConsentAccessorScope setEnvironment(java.lang.String environment) {
@@ -94,15 +94,15 @@ public ConsentAccessorScope setEnvironment(java.lang.String environment) {
9494
}
9595

9696
/**
97-
* The intent of data use. Can be "*" if it applies to all purposes.
97+
* The intent of data use. If it's not specified, it applies to all purposes.
9898
* @return value or {@code null} for none
9999
*/
100100
public java.lang.String getPurpose() {
101101
return purpose;
102102
}
103103

104104
/**
105-
* The intent of data use. Can be "*" if it applies to all purposes.
105+
* The intent of data use. If it's not specified, it applies to all purposes.
106106
* @param purpose purpose or {@code null} for none
107107
*/
108108
public ConsentAccessorScope setPurpose(java.lang.String purpose) {

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

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,20 @@ public final class Dataset extends com.google.api.client.json.GenericJson {
4848
@com.google.api.client.util.Key
4949
private java.lang.String name;
5050

51+
/**
52+
* Output only. For future use.
53+
* The value may be {@code null}.
54+
*/
55+
@com.google.api.client.util.Key
56+
private java.lang.Boolean satisfiesPzi;
57+
58+
/**
59+
* Output only. For future use.
60+
* The value may be {@code null}.
61+
*/
62+
@com.google.api.client.util.Key
63+
private java.lang.Boolean satisfiesPzs;
64+
5165
/**
5266
* Optional. The default timezone used by this dataset. Must be a either a valid IANA time zone
5367
* name such as "America/New_York" or empty, which defaults to UTC. This is used for parsing times
@@ -97,6 +111,40 @@ public Dataset setName(java.lang.String name) {
97111
return this;
98112
}
99113

114+
/**
115+
* Output only. For future use.
116+
* @return value or {@code null} for none
117+
*/
118+
public java.lang.Boolean getSatisfiesPzi() {
119+
return satisfiesPzi;
120+
}
121+
122+
/**
123+
* Output only. For future use.
124+
* @param satisfiesPzi satisfiesPzi or {@code null} for none
125+
*/
126+
public Dataset setSatisfiesPzi(java.lang.Boolean satisfiesPzi) {
127+
this.satisfiesPzi = satisfiesPzi;
128+
return this;
129+
}
130+
131+
/**
132+
* Output only. For future use.
133+
* @return value or {@code null} for none
134+
*/
135+
public java.lang.Boolean getSatisfiesPzs() {
136+
return satisfiesPzs;
137+
}
138+
139+
/**
140+
* Output only. For future use.
141+
* @param satisfiesPzs satisfiesPzs or {@code null} for none
142+
*/
143+
public Dataset setSatisfiesPzs(java.lang.Boolean satisfiesPzs) {
144+
this.satisfiesPzs = satisfiesPzs;
145+
return this;
146+
}
147+
100148
/**
101149
* Optional. The default timezone used by this dataset. Must be a either a valid IANA time zone
102150
* name such as "America/New_York" or empty, which defaults to UTC. This is used for parsing times

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

Lines changed: 3 additions & 3 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-rev20250206-2.0.0</version>
12-
<name>Cloud Healthcare API v1-rev20250206-2.0.0</name>
11+
<version>v1-rev20250219-2.0.0</version>
12+
<name>Cloud Healthcare API v1-rev20250219-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>
@@ -90,7 +90,7 @@
9090
<windowtitle>Cloud Healthcare API ${project.version}</windowtitle>
9191
<links>
9292
<link>http://docs.oracle.com/javase/7/docs/api</link>
93-
<link>https://googleapis.dev/java/google-http-client/1.46.1/</link>
93+
<link>https://googleapis.dev/java/google-http-client/1.46.3/</link>
9494
<link>https://googleapis.dev/java/google-oauth-client/1.38.0/</link>
9595
<link>https://googleapis.dev/java/google-api-client/2.7.2/</link>
9696
</links>

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

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,14 @@ public final class ConsentAccessorScope extends com.google.api.client.json.Gener
4040

4141
/**
4242
* An abstract identifier that describes the environment or conditions under which the accessor is
43-
* acting. Can be "*" if it applies to all environments.
43+
* acting. If it's not specified, it applies to all environments.
4444
* The value may be {@code null}.
4545
*/
4646
@com.google.api.client.util.Key
4747
private java.lang.String environment;
4848

4949
/**
50-
* The intent of data use. Can be "*" if it applies to all purposes.
50+
* The intent of data use. If it's not specified, it applies to all purposes.
5151
* The value may be {@code null}.
5252
*/
5353
@com.google.api.client.util.Key
@@ -76,7 +76,7 @@ public ConsentAccessorScope setActor(java.lang.String actor) {
7676

7777
/**
7878
* An abstract identifier that describes the environment or conditions under which the accessor is
79-
* acting. Can be "*" if it applies to all environments.
79+
* acting. If it's not specified, it applies to all environments.
8080
* @return value or {@code null} for none
8181
*/
8282
public java.lang.String getEnvironment() {
@@ -85,7 +85,7 @@ public java.lang.String getEnvironment() {
8585

8686
/**
8787
* An abstract identifier that describes the environment or conditions under which the accessor is
88-
* acting. Can be "*" if it applies to all environments.
88+
* acting. If it's not specified, it applies to all environments.
8989
* @param environment environment or {@code null} for none
9090
*/
9191
public ConsentAccessorScope setEnvironment(java.lang.String environment) {
@@ -94,15 +94,15 @@ public ConsentAccessorScope setEnvironment(java.lang.String environment) {
9494
}
9595

9696
/**
97-
* The intent of data use. Can be "*" if it applies to all purposes.
97+
* The intent of data use. If it's not specified, it applies to all purposes.
9898
* @return value or {@code null} for none
9999
*/
100100
public java.lang.String getPurpose() {
101101
return purpose;
102102
}
103103

104104
/**
105-
* The intent of data use. Can be "*" if it applies to all purposes.
105+
* The intent of data use. If it's not specified, it applies to all purposes.
106106
* @param purpose purpose or {@code null} for none
107107
*/
108108
public ConsentAccessorScope setPurpose(java.lang.String purpose) {

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

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,20 @@ public final class Dataset extends com.google.api.client.json.GenericJson {
4848
@com.google.api.client.util.Key
4949
private java.lang.String name;
5050

51+
/**
52+
* Output only. For future use.
53+
* The value may be {@code null}.
54+
*/
55+
@com.google.api.client.util.Key
56+
private java.lang.Boolean satisfiesPzi;
57+
58+
/**
59+
* Output only. For future use.
60+
* The value may be {@code null}.
61+
*/
62+
@com.google.api.client.util.Key
63+
private java.lang.Boolean satisfiesPzs;
64+
5165
/**
5266
* The default timezone used by this dataset. Must be a either a valid IANA time zone name such as
5367
* "America/New_York" or empty, which defaults to UTC. This is used for parsing times in
@@ -97,6 +111,40 @@ public Dataset setName(java.lang.String name) {
97111
return this;
98112
}
99113

114+
/**
115+
* Output only. For future use.
116+
* @return value or {@code null} for none
117+
*/
118+
public java.lang.Boolean getSatisfiesPzi() {
119+
return satisfiesPzi;
120+
}
121+
122+
/**
123+
* Output only. For future use.
124+
* @param satisfiesPzi satisfiesPzi or {@code null} for none
125+
*/
126+
public Dataset setSatisfiesPzi(java.lang.Boolean satisfiesPzi) {
127+
this.satisfiesPzi = satisfiesPzi;
128+
return this;
129+
}
130+
131+
/**
132+
* Output only. For future use.
133+
* @return value or {@code null} for none
134+
*/
135+
public java.lang.Boolean getSatisfiesPzs() {
136+
return satisfiesPzs;
137+
}
138+
139+
/**
140+
* Output only. For future use.
141+
* @param satisfiesPzs satisfiesPzs or {@code null} for none
142+
*/
143+
public Dataset setSatisfiesPzs(java.lang.Boolean satisfiesPzs) {
144+
this.satisfiesPzs = satisfiesPzs;
145+
return this;
146+
}
147+
100148
/**
101149
* The default timezone used by this dataset. Must be a either a valid IANA time zone name such as
102150
* "America/New_York" or empty, which defaults to UTC. This is used for parsing times in

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

Lines changed: 3 additions & 3 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-rev20250206-2.0.0</version>
12-
<name>Cloud Healthcare API v1beta1-rev20250206-2.0.0</name>
11+
<version>v1beta1-rev20250219-2.0.0</version>
12+
<name>Cloud Healthcare API v1beta1-rev20250219-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>
@@ -90,7 +90,7 @@
9090
<windowtitle>Cloud Healthcare API ${project.version}</windowtitle>
9191
<links>
9292
<link>http://docs.oracle.com/javase/7/docs/api</link>
93-
<link>https://googleapis.dev/java/google-http-client/1.46.1/</link>
93+
<link>https://googleapis.dev/java/google-http-client/1.46.3/</link>
9494
<link>https://googleapis.dev/java/google-oauth-client/1.38.0/</link>
9595
<link>https://googleapis.dev/java/google-api-client/2.7.2/</link>
9696
</links>

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-rev20250206-2.0.0</version>
25+
<version>v1beta1-rev20250219-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-rev20250206-2.0.0'
38+
implementation 'com.google.apis:google-api-services-healthcare:v1beta1-rev20250219-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)