Skip to content

Commit 5a60966

Browse files
feat(all): auto-regenerate discovery clients (#1486)
1 parent db51ba4 commit 5a60966

26 files changed

+12059
-1611
lines changed

artifactregistry/v1/artifactregistry-api.json

+123-1
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,76 @@
173173
},
174174
"resources": {
175175
"locations": {
176+
"methods": {
177+
"get": {
178+
"description": "Gets information about a location.",
179+
"flatPath": "v1/projects/{projectsId}/locations/{locationsId}",
180+
"httpMethod": "GET",
181+
"id": "artifactregistry.projects.locations.get",
182+
"parameterOrder": [
183+
"name"
184+
],
185+
"parameters": {
186+
"name": {
187+
"description": "Resource name for the location.",
188+
"location": "path",
189+
"pattern": "^projects/[^/]+/locations/[^/]+$",
190+
"required": true,
191+
"type": "string"
192+
}
193+
},
194+
"path": "v1/{+name}",
195+
"response": {
196+
"$ref": "Location"
197+
},
198+
"scopes": [
199+
"https://www.googleapis.com/auth/cloud-platform",
200+
"https://www.googleapis.com/auth/cloud-platform.read-only"
201+
]
202+
},
203+
"list": {
204+
"description": "Lists information about the supported locations for this service.",
205+
"flatPath": "v1/projects/{projectsId}/locations",
206+
"httpMethod": "GET",
207+
"id": "artifactregistry.projects.locations.list",
208+
"parameterOrder": [
209+
"name"
210+
],
211+
"parameters": {
212+
"filter": {
213+
"description": "A filter to narrow down results to a preferred subset. The filtering language accepts strings like \"displayName=tokyo\", and is documented in more detail in [AIP-160](https://google.aip.dev/160).",
214+
"location": "query",
215+
"type": "string"
216+
},
217+
"name": {
218+
"description": "The resource that owns the locations collection, if applicable.",
219+
"location": "path",
220+
"pattern": "^projects/[^/]+$",
221+
"required": true,
222+
"type": "string"
223+
},
224+
"pageSize": {
225+
"description": "The maximum number of results to return. If not set, the service selects a default.",
226+
"format": "int32",
227+
"location": "query",
228+
"type": "integer"
229+
},
230+
"pageToken": {
231+
"description": "A page token received from the `next_page_token` field in the response. Send that page token to receive the subsequent page.",
232+
"location": "query",
233+
"type": "string"
234+
}
235+
},
236+
"path": "v1/{+name}/locations",
237+
"response": {
238+
"$ref": "ListLocationsResponse"
239+
},
240+
"scopes": [
241+
"https://www.googleapis.com/auth/cloud-platform",
242+
"https://www.googleapis.com/auth/cloud-platform.read-only"
243+
]
244+
}
245+
},
176246
"resources": {
177247
"operations": {
178248
"methods": {
@@ -1137,7 +1207,7 @@
11371207
}
11381208
}
11391209
},
1140-
"revision": "20220307",
1210+
"revision": "20220311",
11411211
"rootUrl": "https://artifactregistry.googleapis.com/",
11421212
"schemas": {
11431213
"Binding": {
@@ -1389,6 +1459,24 @@
13891459
},
13901460
"type": "object"
13911461
},
1462+
"ListLocationsResponse": {
1463+
"description": "The response message for Locations.ListLocations.",
1464+
"id": "ListLocationsResponse",
1465+
"properties": {
1466+
"locations": {
1467+
"description": "A list of locations that matches the specified filter in the request.",
1468+
"items": {
1469+
"$ref": "Location"
1470+
},
1471+
"type": "array"
1472+
},
1473+
"nextPageToken": {
1474+
"description": "The standard List next-page token.",
1475+
"type": "string"
1476+
}
1477+
},
1478+
"type": "object"
1479+
},
13921480
"ListPackagesResponse": {
13931481
"description": "The response from listing packages.",
13941482
"id": "ListPackagesResponse",
@@ -1461,6 +1549,40 @@
14611549
},
14621550
"type": "object"
14631551
},
1552+
"Location": {
1553+
"description": "A resource that represents Google Cloud Platform location.",
1554+
"id": "Location",
1555+
"properties": {
1556+
"displayName": {
1557+
"description": "The friendly name for this location, typically a nearby city name. For example, \"Tokyo\".",
1558+
"type": "string"
1559+
},
1560+
"labels": {
1561+
"additionalProperties": {
1562+
"type": "string"
1563+
},
1564+
"description": "Cross-service attributes for the location. For example {\"cloud.googleapis.com/region\": \"us-east1\"}",
1565+
"type": "object"
1566+
},
1567+
"locationId": {
1568+
"description": "The canonical id for this location. For example: `\"us-east1\"`.",
1569+
"type": "string"
1570+
},
1571+
"metadata": {
1572+
"additionalProperties": {
1573+
"description": "Properties of the object. Contains field @type with type URL.",
1574+
"type": "any"
1575+
},
1576+
"description": "Service-specific metadata. For example the available capacity at the given location.",
1577+
"type": "object"
1578+
},
1579+
"name": {
1580+
"description": "Resource name for the location, which may vary between implementations. For example: `\"projects/example-project/locations/us-east1\"`",
1581+
"type": "string"
1582+
}
1583+
},
1584+
"type": "object"
1585+
},
14641586
"MavenRepositoryConfig": {
14651587
"description": "MavenRepositoryConfig is maven related repository details. Provides additional configuration details for repositories of the maven format type.",
14661588
"id": "MavenRepositoryConfig",

0 commit comments

Comments
 (0)