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
6 changes: 6 additions & 0 deletions api/rdb/v1/rdb_sdk.go
Original file line number Diff line number Diff line change
Expand Up @@ -795,6 +795,8 @@ type EngineVersion struct {
Disabled bool `json:"disabled"`

Beta bool `json:"beta"`

InitSettings []*EngineSetting `json:"init_settings"`
}

// Instance: instance
Expand Down Expand Up @@ -831,6 +833,8 @@ type Instance struct {
ReadReplicas []*Endpoint `json:"read_replicas"`
// NodeType: node type of the instance
NodeType string `json:"node_type"`
// InitSettings: list of engine settings to be set at database initialisation
InitSettings []*InstanceSetting `json:"init_settings"`
}

// InstanceLog: instance log
Expand Down Expand Up @@ -1682,6 +1686,8 @@ type CreateInstanceRequest struct {
DisableBackup bool `json:"disable_backup"`
// Tags: tags to apply to the instance
Tags []string `json:"tags"`
// InitSettings: list of engine settings to be set at database initialisation
InitSettings []*InstanceSetting `json:"init_settings"`
}

// CreateInstance: create an instance
Expand Down