Skip to content
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
10 changes: 6 additions & 4 deletions packages/clients/src/api/rdb/v1/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,8 @@ export type VolumeType = 'lssd' | 'bssd'

export interface ACLRule {
ip: string
port: number
/** @deprecated */
port?: number
protocol: ACLRuleProtocol
direction: ACLRuleDirection
action: ACLRuleAction
Expand Down Expand Up @@ -709,9 +710,10 @@ export interface UpgradableVersion {
/** User */
export interface User {
/**
* Name of the user (Length must be between 1 and 63 characters, First
* character must be an alphabet character (a-zA-Z), Your Username cannot
* start with '_rdb', Only a-zA-Z0-9_$- characters are accepted)
* Name of the user (Length must be between 1 and 63 characters, The max
* Length is 32 for MySQL engines, First character must be an alphabet
* character (a-zA-Z), Your Username cannot start with '_rdb', Only
* a-zA-Z0-9_$- characters are accepted)
*/
name: string
/**
Expand Down