Skip to content

Commit

Permalink
add omitempty
Browse files Browse the repository at this point in the history
  • Loading branch information
danaelhe committed Jan 27, 2025
1 parent 40b40ef commit fad8a22
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions databases.go
Original file line number Diff line number Diff line change
Expand Up @@ -530,8 +530,8 @@ type DatabaseFirewallRule struct {
// DatabaseStartOnlineMigrationRequest is used to start an online migration for a database cluster
type DatabaseStartOnlineMigrationRequest struct {
Source *DatabaseOnlineMigrationConfig `json:"source"`
DisableSSL bool `json:"disable_ssl"`
IgnoreDBs []string `json:"ignore_dbs"`
DisableSSL bool `json:"disable_ssl,omitempty"`
IgnoreDBs []string `json:"ignore_dbs,omitempty"`
}

// DatabaseCreateLogsinkRequest is used to create logsink for a database cluster
Expand Down

0 comments on commit fad8a22

Please sign in to comment.