Skip to content

Commit 0e5a06d

Browse files
feat(all): auto-regenerate discovery clients (#3314)
1 parent 7f0983c commit 0e5a06d

File tree

12 files changed

+1008
-37
lines changed

12 files changed

+1008
-37
lines changed

apihub/v1/apihub-api.json

Lines changed: 86 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@
172172
],
173173
"parameters": {
174174
"extraLocationTypes": {
175-
"description": "Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented otherwise. This is primarily for internal usage.",
175+
"description": "Optional. Unless explicitly documented otherwise, don't use this unsupported field which is primarily intended for internal usage.",
176176
"location": "query",
177177
"repeated": true,
178178
"type": "string"
@@ -300,7 +300,7 @@
300300
]
301301
},
302302
"delete": {
303-
"description": "Deletes the API hub instance.",
303+
"description": "Deletes the API hub instance. Deleting the API hub instance will also result in the removal of all associated runtime project attachments and the host project registration.",
304304
"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/apiHubInstances/{apiHubInstancesId}",
305305
"httpMethod": "DELETE",
306306
"id": "apihub.projects.locations.apiHubInstances.delete",
@@ -2741,6 +2741,34 @@
27412741
"https://www.googleapis.com/auth/cloud-platform"
27422742
]
27432743
},
2744+
"manageSourceData": {
2745+
"description": "Manages data for a given plugin instance.",
2746+
"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/plugins/{pluginsId}/instances/{instancesId}:manageSourceData",
2747+
"httpMethod": "POST",
2748+
"id": "apihub.projects.locations.plugins.instances.manageSourceData",
2749+
"parameterOrder": [
2750+
"name"
2751+
],
2752+
"parameters": {
2753+
"name": {
2754+
"description": "Required. The name of the plugin instance for which data needs to be managed. Format: `projects/{project}/locations/{location}/plugins/{plugin}/instances/{instance}`",
2755+
"location": "path",
2756+
"pattern": "^projects/[^/]+/locations/[^/]+/plugins/[^/]+/instances/[^/]+$",
2757+
"required": true,
2758+
"type": "string"
2759+
}
2760+
},
2761+
"path": "v1/{+name}:manageSourceData",
2762+
"request": {
2763+
"$ref": "GoogleCloudApihubV1ManagePluginInstanceSourceDataRequest"
2764+
},
2765+
"response": {
2766+
"$ref": "GoogleCloudApihubV1ManagePluginInstanceSourceDataResponse"
2767+
},
2768+
"scopes": [
2769+
"https://www.googleapis.com/auth/cloud-platform"
2770+
]
2771+
},
27442772
"patch": {
27452773
"description": "Updates a plugin instance in the API hub. The following fields in the plugin_instance can be updated currently: * display_name * schedule_cron_expression The update_mask should be used to specify the fields being updated. To update the auth_config and additional_config of the plugin instance, use the ApplyPluginInstanceConfig method.",
27462774
"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/plugins/{pluginsId}/instances/{instancesId}",
@@ -2946,7 +2974,7 @@
29462974
}
29472975
}
29482976
},
2949-
"revision": "20250829",
2977+
"revision": "20250912",
29502978
"rootUrl": "https://apihub.googleapis.com/",
29512979
"schemas": {
29522980
"Empty": {
@@ -5140,6 +5168,60 @@
51405168
},
51415169
"type": "object"
51425170
},
5171+
"GoogleCloudApihubV1ManagePluginInstanceSourceDataRequest": {
5172+
"description": "The ManagePluginInstanceSourceData method's request.",
5173+
"id": "GoogleCloudApihubV1ManagePluginInstanceSourceDataRequest",
5174+
"properties": {
5175+
"action": {
5176+
"description": "Required. Action to be performed.",
5177+
"enum": [
5178+
"ACTION_UNSPECIFIED",
5179+
"UPLOAD",
5180+
"DELETE"
5181+
],
5182+
"enumDescriptions": [
5183+
"Default unspecified action.",
5184+
"Upload or upsert data.",
5185+
"Delete data."
5186+
],
5187+
"type": "string"
5188+
},
5189+
"data": {
5190+
"description": "Required. Data to be managed.",
5191+
"format": "byte",
5192+
"type": "string"
5193+
},
5194+
"dataType": {
5195+
"description": "Required. Type of data to be managed.",
5196+
"enum": [
5197+
"DATA_TYPE_UNSPECIFIED",
5198+
"PROXY_DEPLOYMENT_MANIFEST",
5199+
"ENVIRONMENT_MANIFEST",
5200+
"PROXY_BUNDLE",
5201+
"SHARED_FLOW_BUNDLE"
5202+
],
5203+
"enumDescriptions": [
5204+
"Default unspecified type.",
5205+
"Proxy deployment manifest.",
5206+
"Environment manifest.",
5207+
"Proxy bundle.",
5208+
"Shared flow bundle."
5209+
],
5210+
"type": "string"
5211+
},
5212+
"relativePath": {
5213+
"description": "Required. Relative path of data being managed for a given plugin instance.",
5214+
"type": "string"
5215+
}
5216+
},
5217+
"type": "object"
5218+
},
5219+
"GoogleCloudApihubV1ManagePluginInstanceSourceDataResponse": {
5220+
"description": "The ManagePluginInstanceSourceData method's response.",
5221+
"id": "GoogleCloudApihubV1ManagePluginInstanceSourceDataResponse",
5222+
"properties": {},
5223+
"type": "object"
5224+
},
51435225
"GoogleCloudApihubV1MatchResult": {
51445226
"description": "MatchResult represents the result of matching a discovered API operation with a catalog API operation.",
51455227
"id": "GoogleCloudApihubV1MatchResult",
@@ -5378,7 +5460,7 @@
53785460
"id": "GoogleCloudApihubV1Plugin",
53795461
"properties": {
53805462
"actionsConfig": {
5381-
"description": "Required. The configuration of actions supported by the plugin.",
5463+
"description": "Optional. The configuration of actions supported by the plugin. **REQUIRED**: This field must be provided when creating or updating a Plugin. The server will reject requests if this field is missing.",
53825464
"items": {
53835465
"$ref": "GoogleCloudApihubV1PluginActionConfig"
53845466
},

apihub/v1/apihub-gen.go

Lines changed: 165 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gkeonprem/v1/gkeonprem-api.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@
144144
],
145145
"parameters": {
146146
"extraLocationTypes": {
147-
"description": "Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented otherwise. This is primarily for internal usage.",
147+
"description": "Optional. Unless explicitly documented otherwise, don't use this unsupported field which is primarily intended for internal usage.",
148148
"location": "query",
149149
"repeated": true,
150150
"type": "string"
@@ -3105,7 +3105,7 @@
31053105
}
31063106
}
31073107
},
3108-
"revision": "20250827",
3108+
"revision": "20250908",
31093109
"rootUrl": "https://gkeonprem.googleapis.com/",
31103110
"schemas": {
31113111
"Authorization": {

gkeonprem/v1/gkeonprem-gen.go

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

healthcare/v1/healthcare-api.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@
148148
],
149149
"parameters": {
150150
"extraLocationTypes": {
151-
"description": "Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented otherwise. This is primarily for internal usage.",
151+
"description": "Optional. Unless explicitly documented otherwise, don't use this unsupported field which is primarily intended for internal usage.",
152152
"location": "query",
153153
"repeated": true,
154154
"type": "string"
@@ -5132,7 +5132,7 @@
51325132
}
51335133
}
51345134
},
5135-
"revision": "20250821",
5135+
"revision": "20250904",
51365136
"rootUrl": "https://healthcare.googleapis.com/",
51375137
"schemas": {
51385138
"AccessDeterminationLogConfig": {

healthcare/v1/healthcare-gen.go

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)