Skip to content

Commit e35f76f

Browse files
feat(all): auto-regenerate discovery clients (#2585)
1 parent 7b18e5d commit e35f76f

File tree

2 files changed

+175
-1
lines changed

2 files changed

+175
-1
lines changed

connectors/v1/connectors-api.json

Lines changed: 55 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1212,6 +1212,34 @@
12121212
"scopes": [
12131213
"https://www.googleapis.com/auth/cloud-platform"
12141214
]
1215+
},
1216+
"deprecate": {
1217+
"description": "Deprecates a single CustomConnectorVersion.",
1218+
"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/customConnectors/{customConnectorsId}/customConnectorVersions/{customConnectorVersionsId}:deprecate",
1219+
"httpMethod": "POST",
1220+
"id": "connectors.projects.locations.customConnectors.customConnectorVersions.deprecate",
1221+
"parameterOrder": [
1222+
"name"
1223+
],
1224+
"parameters": {
1225+
"name": {
1226+
"description": "Required. Resource name of the form: `projects/{project}/locations/{location}/customConnectors/{custom_connector}/customConnectorVersions/{custom_connector_version}`",
1227+
"location": "path",
1228+
"pattern": "^projects/[^/]+/locations/[^/]+/customConnectors/[^/]+/customConnectorVersions/[^/]+$",
1229+
"required": true,
1230+
"type": "string"
1231+
}
1232+
},
1233+
"path": "v1/{+name}:deprecate",
1234+
"request": {
1235+
"$ref": "DeprecateCustomConnectorVersionRequest"
1236+
},
1237+
"response": {
1238+
"$ref": "Operation"
1239+
},
1240+
"scopes": [
1241+
"https://www.googleapis.com/auth/cloud-platform"
1242+
]
12151243
}
12161244
}
12171245
}
@@ -2399,7 +2427,7 @@
23992427
}
24002428
}
24012429
},
2402-
"revision": "20240415",
2430+
"revision": "20240504",
24032431
"rootUrl": "https://connectors.googleapis.com/",
24042432
"schemas": {
24052433
"AuditConfig": {
@@ -3422,6 +3450,22 @@
34223450
"enabled": {
34233451
"description": "Enabled represents whether logging is enabled or not for a connection.",
34243452
"type": "boolean"
3453+
},
3454+
"level": {
3455+
"description": "Optional. Log configuration level.",
3456+
"enum": [
3457+
"LOG_LEVEL_UNSPECIFIED",
3458+
"ERROR",
3459+
"INFO",
3460+
"DEBUG"
3461+
],
3462+
"enumDescriptions": [
3463+
"Log level unspecified.",
3464+
"Only error logs are enabled.",
3465+
"Info and error logs are enabled.",
3466+
"Debug and high verbosity logs are enabled."
3467+
],
3468+
"type": "string"
34253469
}
34263470
},
34273471
"type": "object"
@@ -3654,6 +3698,12 @@
36543698
},
36553699
"type": "object"
36563700
},
3701+
"DeprecateCustomConnectorVersionRequest": {
3702+
"description": "Request message for ConnectorsService.DeprecateCustomConnectorVersion",
3703+
"id": "DeprecateCustomConnectorVersionRequest",
3704+
"properties": {},
3705+
"type": "object"
3706+
},
36573707
"Destination": {
36583708
"id": "Destination",
36593709
"properties": {
@@ -3860,6 +3910,10 @@
38603910
"description": "Optional. Description of the resource.",
38613911
"type": "string"
38623912
},
3913+
"endpointGlobalAccess": {
3914+
"description": "Optional. The Private Service Connect Connection Endpoint Global Access. https://cloud.google.com/vpc/docs/about-accessing-vpc-hosted-services-endpoints#global-access",
3915+
"type": "boolean"
3916+
},
38633917
"endpointIp": {
38643918
"description": "Output only. The Private Service Connect connection endpoint ip",
38653919
"readOnly": true,

connectors/v1/connectors-gen.go

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

0 commit comments

Comments
 (0)