File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -149,6 +149,9 @@ var showCmd = &cobra.Command{
149149 if db .Schema != "" {
150150 fmt .Println ("Schema: " , db .Schema )
151151 }
152+ if db .EncryptionCipher != "" {
153+ fmt .Println ("Encryption: " , db .EncryptionCipher )
154+ }
152155
153156 fmt .Println ()
154157
Original file line number Diff line number Diff line change @@ -16,17 +16,18 @@ import (
1616)
1717
1818type Database struct {
19- ID string `json:"dbId" mapstructure:"dbId"`
20- Name string
21- Regions []string
22- PrimaryRegion string
23- Hostname string
24- Version string
25- Group string
26- Sleeping bool
27- Schema string
28- IsSchema bool `json:"is_schema" mapstructure:"is_schema"`
29- Parent * Database `json:"parent,omitempty"`
19+ ID string `json:"dbId" mapstructure:"dbId"`
20+ Name string
21+ Regions []string
22+ PrimaryRegion string
23+ Hostname string
24+ Version string
25+ Group string
26+ Sleeping bool
27+ Schema string
28+ IsSchema bool `json:"is_schema" mapstructure:"is_schema"`
29+ Parent * Database `json:"parent,omitempty"`
30+ EncryptionCipher string `json:"encryption_cipher,omitempty"`
3031}
3132
3233type DatabasesClient client
You can’t perform that action at this time.
0 commit comments