From b0f4e6a0a238ecde37da8b7e463c5987c1891ceb Mon Sep 17 00:00:00 2001 From: yoshi-code-bot <70984784+yoshi-code-bot@users.noreply.github.com> Date: Fri, 12 Jun 2026 18:40:08 -0700 Subject: [PATCH] chore: regenerate health client --- .../v4/2.0.0/README.md | 4 +-- .../health/v4/GoogleHealthAPIScopes.java | 28 +++++++++++++++++++ .../v4/2.0.0/pom.xml | 4 +-- .../google-api-services-health/v4/README.md | 4 +-- 4 files changed, 34 insertions(+), 6 deletions(-) diff --git a/clients/google-api-services-health/v4/2.0.0/README.md b/clients/google-api-services-health/v4/2.0.0/README.md index 3d918065fb6..988dc155b22 100644 --- a/clients/google-api-services-health/v4/2.0.0/README.md +++ b/clients/google-api-services-health/v4/2.0.0/README.md @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file: com.google.apis google-api-services-health - v4-rev20260607-2.0.0 + v4-rev20260611-2.0.0 @@ -35,7 +35,7 @@ repositories { mavenCentral() } dependencies { - implementation 'com.google.apis:google-api-services-health:v4-rev20260607-2.0.0' + implementation 'com.google.apis:google-api-services-health:v4-rev20260611-2.0.0' } ``` diff --git a/clients/google-api-services-health/v4/2.0.0/com/google/api/services/health/v4/GoogleHealthAPIScopes.java b/clients/google-api-services-health/v4/2.0.0/com/google/api/services/health/v4/GoogleHealthAPIScopes.java index 5485a55d151..c22f93cdbda 100644 --- a/clients/google-api-services-health/v4/2.0.0/com/google/api/services/health/v4/GoogleHealthAPIScopes.java +++ b/clients/google-api-services-health/v4/2.0.0/com/google/api/services/health/v4/GoogleHealthAPIScopes.java @@ -29,27 +29,48 @@ public class GoogleHealthAPIScopes { /** See your Google Health activity and fitness data. */ public static final String GOOGLEHEALTH_ACTIVITY_AND_FITNESS_READONLY = "https://www.googleapis.com/auth/googlehealth.activity_and_fitness.readonly"; + /** Add activity and fitness data to Google Health, and edit or delete the data it adds.. */ + public static final String GOOGLEHEALTH_ACTIVITY_AND_FITNESS_WRITEONLY = "https://www.googleapis.com/auth/googlehealth.activity_and_fitness.writeonly"; + /** See your Google Health ECG data. */ public static final String GOOGLEHEALTH_ECG_READONLY = "https://www.googleapis.com/auth/googlehealth.ecg.readonly"; /** See your Google Health health metrics and measurement data. */ public static final String GOOGLEHEALTH_HEALTH_METRICS_AND_MEASUREMENTS_READONLY = "https://www.googleapis.com/auth/googlehealth.health_metrics_and_measurements.readonly"; + /** Add health metric and measurements data to Google Health, and edit or delete the data it adds.. */ + public static final String GOOGLEHEALTH_HEALTH_METRICS_AND_MEASUREMENTS_WRITEONLY = "https://www.googleapis.com/auth/googlehealth.health_metrics_and_measurements.writeonly"; + /** See your Google Health Irregular Rhythm Notifications data. */ public static final String GOOGLEHEALTH_IRN_READONLY = "https://www.googleapis.com/auth/googlehealth.irn.readonly"; /** See exercise GPS location data in Google Health. */ public static final String GOOGLEHEALTH_LOCATION_READONLY = "https://www.googleapis.com/auth/googlehealth.location.readonly"; + /** Add exercise GPS location data to Google Health, and edit or delete the data it adds.. */ + public static final String GOOGLEHEALTH_LOCATION_WRITEONLY = "https://www.googleapis.com/auth/googlehealth.location.writeonly"; + + /** Add nutrition data to Google Health, and edit or delete the data it adds.. */ + public static final String GOOGLEHEALTH_NUTRITION_WRITEONLY = "https://www.googleapis.com/auth/googlehealth.nutrition.writeonly"; + /** See your Google Health profile data. */ public static final String GOOGLEHEALTH_PROFILE_READONLY = "https://www.googleapis.com/auth/googlehealth.profile.readonly"; + /** Add profile data to Google Health, and edit or delete the data it adds.. */ + public static final String GOOGLEHEALTH_PROFILE_WRITEONLY = "https://www.googleapis.com/auth/googlehealth.profile.writeonly"; + /** See your Google Health settings. */ public static final String GOOGLEHEALTH_SETTINGS_READONLY = "https://www.googleapis.com/auth/googlehealth.settings.readonly"; + /** Add settings data to Google Health, and edit or delete the data it adds.. */ + public static final String GOOGLEHEALTH_SETTINGS_WRITEONLY = "https://www.googleapis.com/auth/googlehealth.settings.writeonly"; + /** See your Google Health sleep data. */ public static final String GOOGLEHEALTH_SLEEP_READONLY = "https://www.googleapis.com/auth/googlehealth.sleep.readonly"; + /** Add sleep data to Google Health, and edit or delete the data it adds.. */ + public static final String GOOGLEHEALTH_SLEEP_WRITEONLY = "https://www.googleapis.com/auth/googlehealth.sleep.writeonly"; + /** * Returns an unmodifiable set that contains all scopes declared by this class. * @@ -59,13 +80,20 @@ public static java.util.Set all() { java.util.Set set = new java.util.HashSet(); set.add(CLOUD_PLATFORM); set.add(GOOGLEHEALTH_ACTIVITY_AND_FITNESS_READONLY); + set.add(GOOGLEHEALTH_ACTIVITY_AND_FITNESS_WRITEONLY); set.add(GOOGLEHEALTH_ECG_READONLY); set.add(GOOGLEHEALTH_HEALTH_METRICS_AND_MEASUREMENTS_READONLY); + set.add(GOOGLEHEALTH_HEALTH_METRICS_AND_MEASUREMENTS_WRITEONLY); set.add(GOOGLEHEALTH_IRN_READONLY); set.add(GOOGLEHEALTH_LOCATION_READONLY); + set.add(GOOGLEHEALTH_LOCATION_WRITEONLY); + set.add(GOOGLEHEALTH_NUTRITION_WRITEONLY); set.add(GOOGLEHEALTH_PROFILE_READONLY); + set.add(GOOGLEHEALTH_PROFILE_WRITEONLY); set.add(GOOGLEHEALTH_SETTINGS_READONLY); + set.add(GOOGLEHEALTH_SETTINGS_WRITEONLY); set.add(GOOGLEHEALTH_SLEEP_READONLY); + set.add(GOOGLEHEALTH_SLEEP_WRITEONLY); return java.util.Collections.unmodifiableSet(set); } diff --git a/clients/google-api-services-health/v4/2.0.0/pom.xml b/clients/google-api-services-health/v4/2.0.0/pom.xml index 3776cb83882..c7769bbe3c2 100644 --- a/clients/google-api-services-health/v4/2.0.0/pom.xml +++ b/clients/google-api-services-health/v4/2.0.0/pom.xml @@ -8,8 +8,8 @@ com.google.apis google-api-services-health - v4-rev20260607-2.0.0 - Google Health API v4-rev20260607-2.0.0 + v4-rev20260611-2.0.0 + Google Health API v4-rev20260611-2.0.0 jar 2011 diff --git a/clients/google-api-services-health/v4/README.md b/clients/google-api-services-health/v4/README.md index 3d918065fb6..988dc155b22 100644 --- a/clients/google-api-services-health/v4/README.md +++ b/clients/google-api-services-health/v4/README.md @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file: com.google.apis google-api-services-health - v4-rev20260607-2.0.0 + v4-rev20260611-2.0.0 @@ -35,7 +35,7 @@ repositories { mavenCentral() } dependencies { - implementation 'com.google.apis:google-api-services-health:v4-rev20260607-2.0.0' + implementation 'com.google.apis:google-api-services-health:v4-rev20260611-2.0.0' } ```