Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(all): auto-regenerate discovery clients #2585

Merged
merged 1 commit into from
May 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.