Skip to content

fix: update redis documentation #998

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

Merged
merged 1 commit into from
Nov 15, 2023
Merged
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
5 changes: 5 additions & 0 deletions packages/clients/src/api/redis/v1/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -526,13 +526,18 @@ export type UpdateClusterRequest = {
export type UpdateEndpointRequest = {
/** Zone to target. If none is passed will use default zone from the config. */
zone?: Zone
/** UUID of the endpoint you want to get. */
endpointId: string
/**
* Private Network details.
*
* One-of ('endpointType'): at most one of 'privateNetwork', 'publicNetwork'
* could be set.
*/
privateNetwork?: EndpointSpecPrivateNetworkSpec
/**
* Public network details.
*
* One-of ('endpointType'): at most one of 'privateNetwork', 'publicNetwork'
* could be set.
*/
Expand Down