Skip to content

Commit

Permalink
feat(all): auto-regenerate discovery clients (googleapis#2585)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation committed May 13, 2024
1 parent 7b18e5d commit e35f76f
Show file tree
Hide file tree
Showing 2 changed files with 175 additions and 1 deletion.
56 changes: 55 additions & 1 deletion connectors/v1/connectors-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -1212,6 +1212,34 @@
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
]
},
"deprecate": {
"description": "Deprecates a single CustomConnectorVersion.",
"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/customConnectors/{customConnectorsId}/customConnectorVersions/{customConnectorVersionsId}:deprecate",
"httpMethod": "POST",
"id": "connectors.projects.locations.customConnectors.customConnectorVersions.deprecate",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Required. Resource name of the form: `projects/{project}/locations/{location}/customConnectors/{custom_connector}/customConnectorVersions/{custom_connector_version}`",
"location": "path",
"pattern": "^projects/[^/]+/locations/[^/]+/customConnectors/[^/]+/customConnectorVersions/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1/{+name}:deprecate",
"request": {
"$ref": "DeprecateCustomConnectorVersionRequest"
},
"response": {
"$ref": "Operation"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
]
}
}
}
Expand Down Expand Up @@ -2399,7 +2427,7 @@
}
}
},
"revision": "20240415",
"revision": "20240504",
"rootUrl": "https://connectors.googleapis.com/",
"schemas": {
"AuditConfig": {
Expand Down Expand Up @@ -3422,6 +3450,22 @@
"enabled": {
"description": "Enabled represents whether logging is enabled or not for a connection.",
"type": "boolean"
},
"level": {
"description": "Optional. Log configuration level.",
"enum": [
"LOG_LEVEL_UNSPECIFIED",
"ERROR",
"INFO",
"DEBUG"
],
"enumDescriptions": [
"Log level unspecified.",
"Only error logs are enabled.",
"Info and error logs are enabled.",
"Debug and high verbosity logs are enabled."
],
"type": "string"
}
},
"type": "object"
Expand Down Expand Up @@ -3654,6 +3698,12 @@
},
"type": "object"
},
"DeprecateCustomConnectorVersionRequest": {
"description": "Request message for ConnectorsService.DeprecateCustomConnectorVersion",
"id": "DeprecateCustomConnectorVersionRequest",
"properties": {},
"type": "object"
},
"Destination": {
"id": "Destination",
"properties": {
Expand Down Expand Up @@ -3860,6 +3910,10 @@
"description": "Optional. Description of the resource.",
"type": "string"
},
"endpointGlobalAccess": {
"description": "Optional. The Private Service Connect Connection Endpoint Global Access. https://cloud.google.com/vpc/docs/about-accessing-vpc-hosted-services-endpoints#global-access",
"type": "boolean"
},
"endpointIp": {
"description": "Output only. The Private Service Connect connection endpoint ip",
"readOnly": true,
Expand Down
120 changes: 120 additions & 0 deletions connectors/v1/connectors-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit e35f76f

Please sign in to comment.