Skip to content

Commit 685c01d

Browse files
Merge branch 'main' into fix-dashboard-parallelism
2 parents d30b9cc + 5d5c9f3 commit 685c01d

File tree

2,604 files changed

+143949
-47896
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,604 files changed

+143949
-47896
lines changed

.github/workflows/codegen.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
# As of November 2023, it returns 269 service names.
1111
uses: googleapis/discovery-artifact-manager/.github/workflows/list-services.yml@master
1212
total_service_size_check:
13-
runs-on: ubuntu-20.04
13+
runs-on: 'ubuntu-24.04'
1414
needs: discovery
1515
steps:
1616
- uses: actions/github-script@v5
@@ -24,7 +24,7 @@ jobs:
2424
throw new Error(`Total services (${services.length}) exceed limit of ${MAX_SERVICE_SIZE}`)
2525
}
2626
batch:
27-
runs-on: ubuntu-20.04
27+
runs-on: 'ubuntu-24.04'
2828
needs: discovery
2929
outputs:
3030
# As of November 2023, the output of batch job is a 3-element array, which contains a chunk of 100 service names

.github/workflows/generate.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515
name: generate
1616
jobs:
1717
generate_one:
18-
runs-on: ubuntu-20.04
18+
runs-on: 'ubuntu-24.04'
1919
strategy:
2020
fail-fast: false
2121
max-parallel: 4

.github/workflows/requirements.in

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ absl-py==2.1.0
22
gitdb==4.0.11
33
GitPython==3.1.43
44
smmap==5.0.1
5+
lxml==5.3.1

.github/workflows/requirements.txt

-26
Original file line numberDiff line numberDiff line change
@@ -1,26 +0,0 @@
1-
#
2-
# This file is autogenerated by pip-compile with Python 3.11
3-
# by the following command:
4-
#
5-
# pip-compile --generate-hashes
6-
#
7-
absl-py==2.1.0 \
8-
--hash=sha256:526a04eadab8b4ee719ce68f204172ead1027549089702d99b9059f129ff1308 \
9-
--hash=sha256:7820790efbb316739cde8b4e19357243fc3608a152024288513dd968d7d959ff
10-
# via -r requirements.in
11-
gitdb==4.0.11 \
12-
--hash=sha256:81a3407ddd2ee8df444cbacea00e2d038e40150acfa3001696fe0dcf1d3adfa4 \
13-
--hash=sha256:bf5421126136d6d0af55bc1e7c1af1c397a34f5b7bd79e776cd3e89785c2b04b
14-
# via
15-
# -r requirements.in
16-
# gitpython
17-
gitpython==3.1.43 \
18-
--hash=sha256:35f314a9f878467f5453cc1fee295c3e18e52f1b99f10f6cf5b1682e968a9e7c \
19-
--hash=sha256:eec7ec56b92aad751f9912a73404bc02ba212a23adb2c7098ee668417051a1ff
20-
# via -r requirements.in
21-
smmap==5.0.1 \
22-
--hash=sha256:dceeb6c0028fdb6734471eb07c0cd2aae706ccaecab45965ee83f11c8d3b1f62 \
23-
--hash=sha256:e6d8668fa5f93e706934a62d7b4db19c8d9eb8cf2adbb75ef1b675aa332b69da
24-
# via
25-
# -r requirements.in
26-
# gitdb

.github/workflows/update-root-readme.py

+29
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,15 @@
2424
import json
2525
from git import Repo
2626
import shutil
27+
from lxml import etree
2728

2829

2930
# global vars
3031
VERSION_REGEX = r"([^\.]*)\.(.+)\.json$"
3132
SCRIPT_DIR = Path(path.dirname(path.realpath(__file__)))
3233
REPO_DIR = Path(str(SCRIPT_DIR / '..' / '..'))
3334
DISCOVERY_REPO_PATH = Path(path.abspath(path.join(getcwd(), './discovery-artifact-manager')))
35+
LATEST_VERSION = '2.0.0'
3436
_discovery_repo = None
3537

3638

@@ -134,6 +136,31 @@ def all_services():
134136

135137
return services
136138

139+
def maven_metadata(pom_file: str):
140+
if not path.isfile(pom_file):
141+
print(f'skipping {pom_file} because it doesn\'t exist')
142+
return None
143+
tree = etree.parse(pom_file)
144+
root = tree.getroot()
145+
version = root.find("{http://maven.apache.org/POM/4.0.0}version").text
146+
group_id = root.find("{http://maven.apache.org/POM/4.0.0}groupId").text
147+
artifact_id = root.find("{http://maven.apache.org/POM/4.0.0}artifactId").text
148+
return {"groupId": group_id, "artifactId": artifact_id, "version": version}
149+
150+
def write_metadata_file(name: str, version: str, metadata: dict):
151+
metadata_file = path.join(REPO_DIR, "clients", name, f'{version}.metadata.json')
152+
print(f"Writing json metadata to {metadata_file}")
153+
metadata = {"maven": metadata}
154+
with open(metadata_file, "w+") as outfile:
155+
json.dump(metadata, outfile, indent=2)
156+
157+
def generate_metadata_file(service: list[Service]):
158+
library_name = f'google-api-services-{service.id}'
159+
metadata = maven_metadata(
160+
path.join(REPO_DIR, "clients", library_name, service.version, LATEST_VERSION, "pom.xml")
161+
)
162+
if metadata is not None:
163+
write_metadata_file(library_name, service.version, metadata)
137164

138165
def main(argv: List[str]) -> None:
139166
if len(argv) > 1:
@@ -142,6 +169,8 @@ def main(argv: List[str]) -> None:
142169
clone_discovery_repo()
143170
services = all_services()
144171
generate_service_list(services)
172+
for service in services:
173+
generate_metadata_file(service)
145174
remove_discovery_repo()
146175

147176

.github/workflows/update-root-readme.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
name: update root README.md
88
jobs:
99
update:
10-
runs-on: ubuntu-20.04
10+
runs-on: 'ubuntu-24.04'
1111
steps:
1212
- uses: actions/checkout@v2
1313
with:

.github/workflows/verify.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
name: Verify libraries compilation
1111
jobs:
1212
verify:
13-
runs-on: ubuntu-24.04
13+
runs-on: 'ubuntu-24.04'
1414
strategy:
1515
matrix:
1616
variant: [ 1.26.0, 1.27.0, 1.28.0, 1.29.2, 1.30.1, 1.31.0, 2.0.0 ]

clients/google-api-services-abusiveexperiencereport/v1.metadata.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
"maven": {
33
"groupId": "com.google.apis",
44
"artifactId": "google-api-services-abusiveexperiencereport",
5-
"version": "v1-rev20200803-1.32.1"
5+
"version": "v1-rev20200803-2.0.0"
66
}
77
}

clients/google-api-services-acceleratedmobilepageurl/v1.metadata.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
"maven": {
33
"groupId": "com.google.apis",
44
"artifactId": "google-api-services-acceleratedmobilepageurl",
5-
"version": "v1-rev20200916-1.32.1"
5+
"version": "v1-rev20230701-2.0.0"
66
}
77
}

clients/google-api-services-accessapproval/v1.metadata.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
"maven": {
33
"groupId": "com.google.apis",
44
"artifactId": "google-api-services-accessapproval",
5-
"version": "v1-rev20211130-1.32.1"
5+
"version": "v1-rev20250206-2.0.0"
66
}
77
}

clients/google-api-services-accesscontextmanager/v1.metadata.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
"maven": {
33
"groupId": "com.google.apis",
44
"artifactId": "google-api-services-accesscontextmanager",
5-
"version": "v1-rev20211203-1.32.1"
5+
"version": "v1-rev20250212-2.0.0"
66
}
77
}

clients/google-api-services-accesscontextmanager/v1/2.0.0/README.md

+2-2
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-accesscontextmanager</artifactId>
25-
<version>v1-rev20250212-2.0.0</version>
25+
<version>v1-rev20250312-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-accesscontextmanager:v1-rev20250212-2.0.0'
38+
implementation 'com.google.apis:google-api-services-accesscontextmanager:v1-rev20250312-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-accesscontextmanager/v1/2.0.0/com/google/api/services/accesscontextmanager/v1/model/EgressTo.java

+27
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,14 @@ public final class EgressTo extends com.google.api.client.json.GenericJson {
7070
@com.google.api.client.util.Key
7171
private java.util.List<java.lang.String> resources;
7272

73+
/**
74+
* IAM roles that represent the set of operations that the sources specified in the corresponding
75+
* EgressFrom. are allowed to perform in this ServicePerimeter.
76+
* The value may be {@code null}.
77+
*/
78+
@com.google.api.client.util.Key
79+
private java.util.List<java.lang.String> roles;
80+
7381
/**
7482
* A list of external resources that are allowed to be accessed. Only AWS and Azure resources are
7583
* supported. For Amazon S3, the supported formats are s3://BUCKET_NAME, s3a://BUCKET_NAME, and
@@ -137,6 +145,25 @@ public EgressTo setResources(java.util.List<java.lang.String> resources) {
137145
return this;
138146
}
139147

148+
/**
149+
* IAM roles that represent the set of operations that the sources specified in the corresponding
150+
* EgressFrom. are allowed to perform in this ServicePerimeter.
151+
* @return value or {@code null} for none
152+
*/
153+
public java.util.List<java.lang.String> getRoles() {
154+
return roles;
155+
}
156+
157+
/**
158+
* IAM roles that represent the set of operations that the sources specified in the corresponding
159+
* EgressFrom. are allowed to perform in this ServicePerimeter.
160+
* @param roles roles or {@code null} for none
161+
*/
162+
public EgressTo setRoles(java.util.List<java.lang.String> roles) {
163+
this.roles = roles;
164+
return this;
165+
}
166+
140167
@Override
141168
public EgressTo set(String fieldName, Object value) {
142169
return (EgressTo) super.set(fieldName, value);

clients/google-api-services-accesscontextmanager/v1/2.0.0/com/google/api/services/accesscontextmanager/v1/model/IngressTo.java

+27
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,14 @@ public final class IngressTo extends com.google.api.client.json.GenericJson {
5757
@com.google.api.client.util.Key
5858
private java.util.List<java.lang.String> resources;
5959

60+
/**
61+
* IAM roles that represent the set of operations that the sources specified in the corresponding
62+
* IngressFrom are allowed to perform in this ServicePerimeter.
63+
* The value may be {@code null}.
64+
*/
65+
@com.google.api.client.util.Key
66+
private java.util.List<java.lang.String> roles;
67+
6068
/**
6169
* A list of ApiOperations allowed to be performed by the sources specified in corresponding
6270
* IngressFrom in this ServicePerimeter.
@@ -99,6 +107,25 @@ public IngressTo setResources(java.util.List<java.lang.String> resources) {
99107
return this;
100108
}
101109

110+
/**
111+
* IAM roles that represent the set of operations that the sources specified in the corresponding
112+
* IngressFrom are allowed to perform in this ServicePerimeter.
113+
* @return value or {@code null} for none
114+
*/
115+
public java.util.List<java.lang.String> getRoles() {
116+
return roles;
117+
}
118+
119+
/**
120+
* IAM roles that represent the set of operations that the sources specified in the corresponding
121+
* IngressFrom are allowed to perform in this ServicePerimeter.
122+
* @param roles roles or {@code null} for none
123+
*/
124+
public IngressTo setRoles(java.util.List<java.lang.String> roles) {
125+
this.roles = roles;
126+
return this;
127+
}
128+
102129
@Override
103130
public IngressTo set(String fieldName, Object value) {
104131
return (IngressTo) super.set(fieldName, value);

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-accesscontextmanager</artifactId>
11-
<version>v1-rev20250212-2.0.0</version>
12-
<name>Access Context Manager API v1-rev20250212-2.0.0</name>
11+
<version>v1-rev20250312-2.0.0</version>
12+
<name>Access Context Manager API v1-rev20250312-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-accesscontextmanager/v1/README.md

+2-2
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-accesscontextmanager</artifactId>
25-
<version>v1-rev20250212-2.0.0</version>
25+
<version>v1-rev20250312-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-accesscontextmanager:v1-rev20250212-2.0.0'
38+
implementation 'com.google.apis:google-api-services-accesscontextmanager:v1-rev20250312-2.0.0'
3939
}
4040
```
4141

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"maven": {
3+
"groupId": "com.google.apis",
4+
"artifactId": "google-api-services-addressvalidation",
5+
"version": "v1-rev20241120-2.0.0"
6+
}
7+
}

clients/google-api-services-addressvalidation/v1/2.0.0/README.md

+2-2
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-addressvalidation</artifactId>
25-
<version>v1-rev20241120-2.0.0</version>
25+
<version>v1-rev20250323-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-addressvalidation:v1-rev20241120-2.0.0'
38+
implementation 'com.google.apis:google-api-services-addressvalidation:v1-rev20250323-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-addressvalidation/v1/2.0.0/com/google/api/services/addressvalidation/v1/model/GoogleMapsAddressvalidationV1Address.java

+21-9
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,15 @@ public final class GoogleMapsAddressvalidationV1Address extends com.google.api.c
5555

5656
/**
5757
* The types of components that were expected to be present in a correctly formatted mailing
58-
* address but were not found in the input AND could not be inferred. Components of this type are
59-
* not present in `formatted_address`, `postal_address`, or `address_components`. An example might
60-
* be `['street_number', 'route']` for an input like "Boulder, Colorado, 80301, USA". The list of
58+
* address but were not found in the input AND could not be inferred. An example might be
59+
* `['street_number', 'route']` for an input like "Boulder, Colorado, 80301, USA". The list of
6160
* possible types can be found
6261
* [here](https://developers.google.com/maps/documentation/geocoding/requests-geocoding#Types).
62+
* **Note: you might see a missing component type when you think you've already supplied the
63+
* missing component.** For example, this can happen when the input address contains the building
64+
* name, but not the premise number. In the address "渋谷区渋谷3丁目 Shibuya Stream", the building name
65+
* "Shibuya Stream" has the component type `premise`, but the premise number is missing, so
66+
* `missing_component_types` will contain `premise`.
6367
* The value may be {@code null}.
6468
*/
6569
@com.google.api.client.util.Key
@@ -146,11 +150,15 @@ public GoogleMapsAddressvalidationV1Address setFormattedAddress(java.lang.String
146150

147151
/**
148152
* The types of components that were expected to be present in a correctly formatted mailing
149-
* address but were not found in the input AND could not be inferred. Components of this type are
150-
* not present in `formatted_address`, `postal_address`, or `address_components`. An example might
151-
* be `['street_number', 'route']` for an input like "Boulder, Colorado, 80301, USA". The list of
153+
* address but were not found in the input AND could not be inferred. An example might be
154+
* `['street_number', 'route']` for an input like "Boulder, Colorado, 80301, USA". The list of
152155
* possible types can be found
153156
* [here](https://developers.google.com/maps/documentation/geocoding/requests-geocoding#Types).
157+
* **Note: you might see a missing component type when you think you've already supplied the
158+
* missing component.** For example, this can happen when the input address contains the building
159+
* name, but not the premise number. In the address "渋谷区渋谷3丁目 Shibuya Stream", the building name
160+
* "Shibuya Stream" has the component type `premise`, but the premise number is missing, so
161+
* `missing_component_types` will contain `premise`.
154162
* @return value or {@code null} for none
155163
*/
156164
public java.util.List<java.lang.String> getMissingComponentTypes() {
@@ -159,11 +167,15 @@ public java.util.List<java.lang.String> getMissingComponentTypes() {
159167

160168
/**
161169
* The types of components that were expected to be present in a correctly formatted mailing
162-
* address but were not found in the input AND could not be inferred. Components of this type are
163-
* not present in `formatted_address`, `postal_address`, or `address_components`. An example might
164-
* be `['street_number', 'route']` for an input like "Boulder, Colorado, 80301, USA". The list of
170+
* address but were not found in the input AND could not be inferred. An example might be
171+
* `['street_number', 'route']` for an input like "Boulder, Colorado, 80301, USA". The list of
165172
* possible types can be found
166173
* [here](https://developers.google.com/maps/documentation/geocoding/requests-geocoding#Types).
174+
* **Note: you might see a missing component type when you think you've already supplied the
175+
* missing component.** For example, this can happen when the input address contains the building
176+
* name, but not the premise number. In the address "渋谷区渋谷3丁目 Shibuya Stream", the building name
177+
* "Shibuya Stream" has the component type `premise`, but the premise number is missing, so
178+
* `missing_component_types` will contain `premise`.
167179
* @param missingComponentTypes missingComponentTypes or {@code null} for none
168180
*/
169181
public GoogleMapsAddressvalidationV1Address setMissingComponentTypes(java.util.List<java.lang.String> missingComponentTypes) {

0 commit comments

Comments
 (0)