Skip to content

Commit 7187746

Browse files
1 parent ae89891 commit 7187746

19 files changed

+1102
-36
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-rev20240731-2.0.0</version>
25+
<version>v1-rev20240819-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-rev20240731-2.0.0'
38+
implementation 'com.google.apis:google-api-services-healthcare:v1-rev20240819-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: 537 additions & 8 deletions
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,119 @@
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+
* BlobStorageInfo contains details about the data stored in Blob Storage for the referenced
21+
* resource. Note: Storage class is only valid for DICOM and hence will only be populated for DICOM
22+
* resources.
23+
*
24+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
25+
* transmitted over HTTP when working with the Cloud Healthcare API. For a detailed explanation see:
26+
* <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>
27+
* </p>
28+
*
29+
* @author Google, Inc.
30+
*/
31+
@SuppressWarnings("javadoc")
32+
public final class BlobStorageInfo extends com.google.api.client.json.GenericJson {
33+
34+
/**
35+
* Size in bytes of data stored in Blob Storage.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
39+
private java.lang.Long sizeBytes;
40+
41+
/**
42+
* The storage class in which the Blob data is stored.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.lang.String storageClass;
47+
48+
/**
49+
* The time at which the storage class was updated. This is used to compute early deletion fees of
50+
* the resource.
51+
* The value may be {@code null}.
52+
*/
53+
@com.google.api.client.util.Key
54+
private String storageClassUpdateTime;
55+
56+
/**
57+
* Size in bytes of data stored in Blob Storage.
58+
* @return value or {@code null} for none
59+
*/
60+
public java.lang.Long getSizeBytes() {
61+
return sizeBytes;
62+
}
63+
64+
/**
65+
* Size in bytes of data stored in Blob Storage.
66+
* @param sizeBytes sizeBytes or {@code null} for none
67+
*/
68+
public BlobStorageInfo setSizeBytes(java.lang.Long sizeBytes) {
69+
this.sizeBytes = sizeBytes;
70+
return this;
71+
}
72+
73+
/**
74+
* The storage class in which the Blob data is stored.
75+
* @return value or {@code null} for none
76+
*/
77+
public java.lang.String getStorageClass() {
78+
return storageClass;
79+
}
80+
81+
/**
82+
* The storage class in which the Blob data is stored.
83+
* @param storageClass storageClass or {@code null} for none
84+
*/
85+
public BlobStorageInfo setStorageClass(java.lang.String storageClass) {
86+
this.storageClass = storageClass;
87+
return this;
88+
}
89+
90+
/**
91+
* The time at which the storage class was updated. This is used to compute early deletion fees of
92+
* the resource.
93+
* @return value or {@code null} for none
94+
*/
95+
public String getStorageClassUpdateTime() {
96+
return storageClassUpdateTime;
97+
}
98+
99+
/**
100+
* The time at which the storage class was updated. This is used to compute early deletion fees of
101+
* the resource.
102+
* @param storageClassUpdateTime storageClassUpdateTime or {@code null} for none
103+
*/
104+
public BlobStorageInfo setStorageClassUpdateTime(String storageClassUpdateTime) {
105+
this.storageClassUpdateTime = storageClassUpdateTime;
106+
return this;
107+
}
108+
109+
@Override
110+
public BlobStorageInfo set(String fieldName, Object value) {
111+
return (BlobStorageInfo) super.set(fieldName, value);
112+
}
113+
114+
@Override
115+
public BlobStorageInfo clone() {
116+
return (BlobStorageInfo) super.clone();
117+
}
118+
119+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
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+
* Settings for data stored in Blob storage.
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 BlobStorageSettings extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* The Storage class in which the Blob data is stored.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String blobStorageClass;
38+
39+
/**
40+
* The Storage class in which the Blob data is stored.
41+
* @return value or {@code null} for none
42+
*/
43+
public java.lang.String getBlobStorageClass() {
44+
return blobStorageClass;
45+
}
46+
47+
/**
48+
* The Storage class in which the Blob data is stored.
49+
* @param blobStorageClass blobStorageClass or {@code null} for none
50+
*/
51+
public BlobStorageSettings setBlobStorageClass(java.lang.String blobStorageClass) {
52+
this.blobStorageClass = blobStorageClass;
53+
return this;
54+
}
55+
56+
@Override
57+
public BlobStorageSettings set(String fieldName, Object value) {
58+
return (BlobStorageSettings) super.set(fieldName, value);
59+
}
60+
61+
@Override
62+
public BlobStorageSettings clone() {
63+
return (BlobStorageSettings) super.clone();
64+
}
65+
66+
}

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,13 @@
3131
@SuppressWarnings("javadoc")
3232
public final class ImportDicomDataRequest extends com.google.api.client.json.GenericJson {
3333

34+
/**
35+
* Optional. The blob storage settings for the data imported by this operation.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private BlobStorageSettings blobStorageSettings;
40+
3441
/**
3542
* Cloud Storage source data location and import configuration. The Cloud Healthcare Service Agent
3643
* requires the `roles/storage.objectViewer` Cloud IAM roles on the Cloud Storage location.
@@ -39,6 +46,23 @@ public final class ImportDicomDataRequest extends com.google.api.client.json.Gen
3946
@com.google.api.client.util.Key
4047
private GoogleCloudHealthcareV1DicomGcsSource gcsSource;
4148

49+
/**
50+
* Optional. The blob storage settings for the data imported by this operation.
51+
* @return value or {@code null} for none
52+
*/
53+
public BlobStorageSettings getBlobStorageSettings() {
54+
return blobStorageSettings;
55+
}
56+
57+
/**
58+
* Optional. The blob storage settings for the data imported by this operation.
59+
* @param blobStorageSettings blobStorageSettings or {@code null} for none
60+
*/
61+
public ImportDicomDataRequest setBlobStorageSettings(BlobStorageSettings blobStorageSettings) {
62+
this.blobStorageSettings = blobStorageSettings;
63+
return this;
64+
}
65+
4266
/**
4367
* Cloud Storage source data location and import configuration. The Cloud Healthcare Service Agent
4468
* requires the `roles/storage.objectViewer` Cloud IAM roles on the Cloud Storage location.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package com.google.api.services.healthcare.v1.model;
1818

1919
/**
20-
* Filtering fields for an HL7 rollback. Currently only supports a list of operation ids to roll
20+
* Filtering fields for an HL7v2 rollback. Currently only supports a list of operation ids to roll
2121
* back.
2222
*
2323
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
public final class RollbackHl7V2MessagesResponse extends com.google.api.client.json.GenericJson {
3131

3232
/**
33-
* The name of the HL7 store to rollback, in the format of
33+
* The name of the HL7v2 store to rollback, in the format of
3434
* "projects/{project_id}/locations/{location_id}/datasets/{dataset_id}
3535
* /hl7v2Stores/{hl7v2_store_id}".
3636
* The value may be {@code null}.
@@ -39,7 +39,7 @@ public final class RollbackHl7V2MessagesResponse extends com.google.api.client.j
3939
private java.lang.String hl7v2Store;
4040

4141
/**
42-
* The name of the HL7 store to rollback, in the format of
42+
* The name of the HL7v2 store to rollback, in the format of
4343
* "projects/{project_id}/locations/{location_id}/datasets/{dataset_id}
4444
* /hl7v2Stores/{hl7v2_store_id}".
4545
* @return value or {@code null} for none
@@ -49,7 +49,7 @@ public java.lang.String getHl7v2Store() {
4949
}
5050

5151
/**
52-
* The name of the HL7 store to rollback, in the format of
52+
* The name of the HL7v2 store to rollback, in the format of
5353
* "projects/{project_id}/locations/{location_id}/datasets/{dataset_id}
5454
* /hl7v2Stores/{hl7v2_store_id}".
5555
* @param hl7v2Store hl7v2Store or {@code null} for none
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
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+
* Request message for `SetBlobStorageSettings` method.
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 SetBlobStorageSettingsRequest extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* The blob storage settings to update for the specified resources. Only fields listed in
34+
* `update_mask` are applied.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private BlobStorageSettings blobStorageSettings;
39+
40+
/**
41+
* Optional. A filter configuration. If `filter_config` is specified, set the value of `resource`
42+
* to the resource name of a DICOM store in the format
43+
* `projects/{projectID}/locations/{locationID}/datasets/{datasetID}/dicomStores/{dicomStoreID}`.
44+
* The value may be {@code null}.
45+
*/
46+
@com.google.api.client.util.Key
47+
private DicomFilterConfig filterConfig;
48+
49+
/**
50+
* The blob storage settings to update for the specified resources. Only fields listed in
51+
* `update_mask` are applied.
52+
* @return value or {@code null} for none
53+
*/
54+
public BlobStorageSettings getBlobStorageSettings() {
55+
return blobStorageSettings;
56+
}
57+
58+
/**
59+
* The blob storage settings to update for the specified resources. Only fields listed in
60+
* `update_mask` are applied.
61+
* @param blobStorageSettings blobStorageSettings or {@code null} for none
62+
*/
63+
public SetBlobStorageSettingsRequest setBlobStorageSettings(BlobStorageSettings blobStorageSettings) {
64+
this.blobStorageSettings = blobStorageSettings;
65+
return this;
66+
}
67+
68+
/**
69+
* Optional. A filter configuration. If `filter_config` is specified, set the value of `resource`
70+
* to the resource name of a DICOM store in the format
71+
* `projects/{projectID}/locations/{locationID}/datasets/{datasetID}/dicomStores/{dicomStoreID}`.
72+
* @return value or {@code null} for none
73+
*/
74+
public DicomFilterConfig getFilterConfig() {
75+
return filterConfig;
76+
}
77+
78+
/**
79+
* Optional. A filter configuration. If `filter_config` is specified, set the value of `resource`
80+
* to the resource name of a DICOM store in the format
81+
* `projects/{projectID}/locations/{locationID}/datasets/{datasetID}/dicomStores/{dicomStoreID}`.
82+
* @param filterConfig filterConfig or {@code null} for none
83+
*/
84+
public SetBlobStorageSettingsRequest setFilterConfig(DicomFilterConfig filterConfig) {
85+
this.filterConfig = filterConfig;
86+
return this;
87+
}
88+
89+
@Override
90+
public SetBlobStorageSettingsRequest set(String fieldName, Object value) {
91+
return (SetBlobStorageSettingsRequest) super.set(fieldName, value);
92+
}
93+
94+
@Override
95+
public SetBlobStorageSettingsRequest clone() {
96+
return (SetBlobStorageSettingsRequest) super.clone();
97+
}
98+
99+
}

0 commit comments

Comments
 (0)