Skip to content

Commit 5d28001

Browse files
1 parent 3283df2 commit 5d28001

37 files changed

+3070
-114
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-rev20241017-2.0.0</version>
25+
<version>v1-rev20241205-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-rev20241017-2.0.0'
38+
implementation 'com.google.apis:google-api-services-healthcare:v1-rev20241205-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: 880 additions & 12 deletions
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.healthcare.v1.model;
18+
19+
/**
20+
* Configures consent audit log config for FHIR create, read, update, and delete (CRUD) operations.
21+
* Cloud audit log for healthcare API must be
22+
* [enabled](https://cloud.google.com/logging/docs/audit/configure-data-access#config-console-
23+
* enable). The consent-related logs are included as part of `protoPayload.metadata`.
24+
*
25+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
26+
* transmitted over HTTP when working with the Cloud Healthcare API. For a detailed explanation see:
27+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
28+
* </p>
29+
*
30+
* @author Google, Inc.
31+
*/
32+
@SuppressWarnings("javadoc")
33+
public final class AccessDeterminationLogConfig extends com.google.api.client.json.GenericJson {
34+
35+
/**
36+
* Optional. Controls the amount of detail to include as part of the audit logs.
37+
* The value may be {@code null}.
38+
*/
39+
@com.google.api.client.util.Key
40+
private java.lang.String logLevel;
41+
42+
/**
43+
* Optional. Controls the amount of detail to include as part of the audit logs.
44+
* @return value or {@code null} for none
45+
*/
46+
public java.lang.String getLogLevel() {
47+
return logLevel;
48+
}
49+
50+
/**
51+
* Optional. Controls the amount of detail to include as part of the audit logs.
52+
* @param logLevel logLevel or {@code null} for none
53+
*/
54+
public AccessDeterminationLogConfig setLogLevel(java.lang.String logLevel) {
55+
this.logLevel = logLevel;
56+
return this;
57+
}
58+
59+
@Override
60+
public AccessDeterminationLogConfig set(String fieldName, Object value) {
61+
return (AccessDeterminationLogConfig) super.set(fieldName, value);
62+
}
63+
64+
@Override
65+
public AccessDeterminationLogConfig clone() {
66+
return (AccessDeterminationLogConfig) super.clone();
67+
}
68+
69+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.healthcare.v1.model;
18+
19+
/**
20+
* List of admin Consent resources to be applied.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Cloud Healthcare API. For a detailed explanation see:
24+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class AdminConsents extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Optional. The versioned names of the admin Consent resource(s), in the format `projects/{projec
34+
* t_id}/locations/{location}/datasets/{dataset_id}/fhirStores/{fhir_store_id}/fhir/Consent/{resou
35+
* rce_id}/_history/{version_id}`. For FHIR stores with `disable_resource_versioning=true`, the
36+
* format is `projects/{project_id}/locations/{location}/datasets/{dataset_id}/fhirStores/{fhir_st
37+
* ore_id}/fhir/Consent/{resource_id}`.
38+
* The value may be {@code null}.
39+
*/
40+
@com.google.api.client.util.Key
41+
private java.util.List<java.lang.String> names;
42+
43+
/**
44+
* Optional. The versioned names of the admin Consent resource(s), in the format `projects/{projec
45+
* t_id}/locations/{location}/datasets/{dataset_id}/fhirStores/{fhir_store_id}/fhir/Consent/{resou
46+
* rce_id}/_history/{version_id}`. For FHIR stores with `disable_resource_versioning=true`, the
47+
* format is `projects/{project_id}/locations/{location}/datasets/{dataset_id}/fhirStores/{fhir_st
48+
* ore_id}/fhir/Consent/{resource_id}`.
49+
* @return value or {@code null} for none
50+
*/
51+
public java.util.List<java.lang.String> getNames() {
52+
return names;
53+
}
54+
55+
/**
56+
* Optional. The versioned names of the admin Consent resource(s), in the format `projects/{projec
57+
* t_id}/locations/{location}/datasets/{dataset_id}/fhirStores/{fhir_store_id}/fhir/Consent/{resou
58+
* rce_id}/_history/{version_id}`. For FHIR stores with `disable_resource_versioning=true`, the
59+
* format is `projects/{project_id}/locations/{location}/datasets/{dataset_id}/fhirStores/{fhir_st
60+
* ore_id}/fhir/Consent/{resource_id}`.
61+
* @param names names or {@code null} for none
62+
*/
63+
public AdminConsents setNames(java.util.List<java.lang.String> names) {
64+
this.names = names;
65+
return this;
66+
}
67+
68+
@Override
69+
public AdminConsents set(String fieldName, Object value) {
70+
return (AdminConsents) super.set(fieldName, value);
71+
}
72+
73+
@Override
74+
public AdminConsents clone() {
75+
return (AdminConsents) super.clone();
76+
}
77+
78+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.healthcare.v1.model;
18+
19+
/**
20+
* Contains the error details of the unsupported admin Consent resources for when the
21+
* ApplyAdminConsents method fails to apply one or more Consent resources.
22+
*
23+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
24+
* transmitted over HTTP when working with the Cloud Healthcare API. For a detailed explanation see:
25+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class ApplyAdminConsentsErrorDetail extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* The list of Consent resources that are unsupported or cannot be applied and the error
35+
* associated with each of them.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.util.List<ConsentErrors> consentErrors;
40+
41+
/**
42+
* The currently in progress non-validate-only ApplyAdminConsents operation ID if exist.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
46+
private java.math.BigInteger existingOperationId;
47+
48+
/**
49+
* The list of Consent resources that are unsupported or cannot be applied and the error
50+
* associated with each of them.
51+
* @return value or {@code null} for none
52+
*/
53+
public java.util.List<ConsentErrors> getConsentErrors() {
54+
return consentErrors;
55+
}
56+
57+
/**
58+
* The list of Consent resources that are unsupported or cannot be applied and the error
59+
* associated with each of them.
60+
* @param consentErrors consentErrors or {@code null} for none
61+
*/
62+
public ApplyAdminConsentsErrorDetail setConsentErrors(java.util.List<ConsentErrors> consentErrors) {
63+
this.consentErrors = consentErrors;
64+
return this;
65+
}
66+
67+
/**
68+
* The currently in progress non-validate-only ApplyAdminConsents operation ID if exist.
69+
* @return value or {@code null} for none
70+
*/
71+
public java.math.BigInteger getExistingOperationId() {
72+
return existingOperationId;
73+
}
74+
75+
/**
76+
* The currently in progress non-validate-only ApplyAdminConsents operation ID if exist.
77+
* @param existingOperationId existingOperationId or {@code null} for none
78+
*/
79+
public ApplyAdminConsentsErrorDetail setExistingOperationId(java.math.BigInteger existingOperationId) {
80+
this.existingOperationId = existingOperationId;
81+
return this;
82+
}
83+
84+
@Override
85+
public ApplyAdminConsentsErrorDetail set(String fieldName, Object value) {
86+
return (ApplyAdminConsentsErrorDetail) super.set(fieldName, value);
87+
}
88+
89+
@Override
90+
public ApplyAdminConsentsErrorDetail clone() {
91+
return (ApplyAdminConsentsErrorDetail) super.clone();
92+
}
93+
94+
}

0 commit comments

Comments
 (0)