Skip to content

Commit 96c0dea

Browse files
feat(all): auto-regenerate discovery clients (#2307)
1 parent 101074c commit 96c0dea

28 files changed

+902
-329
lines changed

artifactregistry/v1/artifactregistry-api.json

+1-7
Original file line numberDiff line numberDiff line change
@@ -1713,7 +1713,7 @@
17131713
}
17141714
}
17151715
},
1716-
"revision": "20231108",
1716+
"revision": "20231208",
17171717
"rootUrl": "https://artifactregistry.googleapis.com/",
17181718
"schemas": {
17191719
"AptArtifact": {
@@ -1906,12 +1906,6 @@
19061906
],
19071907
"type": "string"
19081908
},
1909-
"versionAge": {
1910-
"deprecated": true,
1911-
"description": "DEPRECATED: Use older_than.",
1912-
"format": "google-duration",
1913-
"type": "string"
1914-
},
19151909
"versionNamePrefixes": {
19161910
"description": "Match versions by version name prefix. Applied on any prefix match.",
19171911
"items": {

artifactregistry/v1/artifactregistry-gen.go

-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

checks/v1alpha/checks-api.json

+17-1
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@
414414
}
415415
}
416416
},
417-
"revision": "20230912",
417+
"revision": "20231213",
418418
"rootUrl": "https://checks.googleapis.com/",
419419
"schemas": {
420420
"CancelOperationRequest": {
@@ -466,6 +466,22 @@
466466
"description": "The request message for ReportService.AnalyzeUpload.",
467467
"id": "GoogleChecksReportV1alphaAnalyzeUploadRequest",
468468
"properties": {
469+
"appBinaryFileType": {
470+
"description": "Optional. The type of the uploaded app binary. If not provided, the server assumes APK file for Android and IPA file for iOS.",
471+
"enum": [
472+
"APP_BINARY_FILE_TYPE_UNSPECIFIED",
473+
"ANDROID_APK",
474+
"ANDROID_AAB",
475+
"IOS_IPA"
476+
],
477+
"enumDescriptions": [
478+
"Not specified.",
479+
".apk file type.",
480+
".aab (app bundle) file type.",
481+
".ipa file type."
482+
],
483+
"type": "string"
484+
},
469485
"codeReferenceId": {
470486
"description": "Optional. Git commit hash or changelist number associated with the upload.",
471487
"type": "string"

checks/v1alpha/checks-gen.go

+14-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cloudprofiler/v2/cloudprofiler-api.json

+62-1
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,44 @@
175175
"https://www.googleapis.com/auth/monitoring.write"
176176
]
177177
},
178+
"list": {
179+
"description": "Lists profiles which have been collected so far and for which the caller has permission to view.",
180+
"flatPath": "v2/projects/{projectsId}/profiles",
181+
"httpMethod": "GET",
182+
"id": "cloudprofiler.projects.profiles.list",
183+
"parameterOrder": [
184+
"parent"
185+
],
186+
"parameters": {
187+
"pageSize": {
188+
"description": "The maximum number of items to return. Default page_size is 1000. Max limit is 10000.",
189+
"format": "int32",
190+
"location": "query",
191+
"type": "integer"
192+
},
193+
"pageToken": {
194+
"description": "The token to continue pagination and get profiles from a particular page. When paginating, all other parameters provided to `ListProfiles` must match the call that provided the page token.",
195+
"location": "query",
196+
"type": "string"
197+
},
198+
"parent": {
199+
"description": "Required. The parent, which owns this collection of profiles. Format: projects/{user_project_id}",
200+
"location": "path",
201+
"pattern": "^projects/[^/]+$",
202+
"required": true,
203+
"type": "string"
204+
}
205+
},
206+
"path": "v2/{+parent}/profiles",
207+
"response": {
208+
"$ref": "ListProfilesResponse"
209+
},
210+
"scopes": [
211+
"https://www.googleapis.com/auth/cloud-platform",
212+
"https://www.googleapis.com/auth/monitoring",
213+
"https://www.googleapis.com/auth/monitoring.write"
214+
]
215+
},
178216
"patch": {
179217
"description": "UpdateProfile updates the profile bytes and labels on the profile resource created in the online mode. Updating the bytes for profiles created in the offline mode is currently not supported: the profile content must be provided at the time of the profile creation.",
180218
"flatPath": "v2/projects/{projectsId}/profiles/{profilesId}",
@@ -216,7 +254,7 @@
216254
}
217255
}
218256
},
219-
"revision": "20230327",
257+
"revision": "20231213",
220258
"rootUrl": "https://cloudprofiler.googleapis.com/",
221259
"schemas": {
222260
"CreateProfileRequest": {
@@ -279,6 +317,29 @@
279317
},
280318
"type": "object"
281319
},
320+
"ListProfilesResponse": {
321+
"description": "ListProfileResponse contains the list of collected profiles for deployments in projects which the user has permissions to view.",
322+
"id": "ListProfilesResponse",
323+
"properties": {
324+
"nextPageToken": {
325+
"description": "Token to receive the next page of results. This field maybe empty if there are no more profiles to fetch.",
326+
"type": "string"
327+
},
328+
"profiles": {
329+
"description": "List of profiles fetched.",
330+
"items": {
331+
"$ref": "Profile"
332+
},
333+
"type": "array"
334+
},
335+
"skippedProfiles": {
336+
"description": "Number of profiles that were skipped in the current page since they were not able to be fetched successfully. This should typically be zero. A non-zero value may indicate a transient failure, in which case if the number is too high for your use case, the call may be retried.",
337+
"format": "int32",
338+
"type": "integer"
339+
}
340+
},
341+
"type": "object"
342+
},
282343
"Profile": {
283344
"description": "Profile resource.",
284345
"id": "Profile",

0 commit comments

Comments
 (0)