diff --git a/docs/resources/mysql.md b/docs/resources/mysql.md index 17f36a8a0..0a9c11907 100644 --- a/docs/resources/mysql.md +++ b/docs/resources/mysql.md @@ -126,7 +126,7 @@ Optional: - `dbname` (String) Database name for bootstrapping the initial connection. - `ignore_dbs` (String) Comma-separated list of databases, which should be ignored during migration (supported by MySQL and PostgreSQL only at the moment). -- `method` (String) The migration method to be used (currently supported only by Redis, MySQL and PostgreSQL service types). +- `method` (String) The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types). - `password` (String, Sensitive) Password for authentication with the server where to migrate data from. - `ssl` (Boolean) The server where to migrate data from is secured with SSL. The default value is `true`. - `username` (String) User name for authentication with the server where to migrate data from. diff --git a/docs/resources/pg.md b/docs/resources/pg.md index b4802935a..709b56ea9 100644 --- a/docs/resources/pg.md +++ b/docs/resources/pg.md @@ -169,7 +169,7 @@ Optional: - `dbname` (String) Database name for bootstrapping the initial connection. - `ignore_dbs` (String) Comma-separated list of databases, which should be ignored during migration (supported by MySQL and PostgreSQL only at the moment). -- `method` (String) The migration method to be used (currently supported only by Redis, MySQL and PostgreSQL service types). +- `method` (String) The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types). - `password` (String, Sensitive) Password for authentication with the server where to migrate data from. - `ssl` (Boolean) The server where to migrate data from is secured with SSL. The default value is `true`. - `username` (String) User name for authentication with the server where to migrate data from. diff --git a/docs/resources/redis.md b/docs/resources/redis.md index ae49a79e7..9f4a7e879 100644 --- a/docs/resources/redis.md +++ b/docs/resources/redis.md @@ -125,7 +125,7 @@ Optional: - `dbname` (String) Database name for bootstrapping the initial connection. - `ignore_dbs` (String) Comma-separated list of databases, which should be ignored during migration (supported by MySQL and PostgreSQL only at the moment). -- `method` (String) The migration method to be used (currently supported only by Redis, MySQL and PostgreSQL service types). +- `method` (String) The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types). - `password` (String, Sensitive) Password for authentication with the server where to migrate data from. - `ssl` (Boolean) The server where to migrate data from is secured with SSL. The default value is `true`. - `username` (String) User name for authentication with the server where to migrate data from. diff --git a/go.mod b/go.mod index 269159d6b..42f7bccfb 100644 --- a/go.mod +++ b/go.mod @@ -44,7 +44,7 @@ require ( cloud.google.com/go v0.110.0 // indirect cloud.google.com/go/storage v1.28.1 // indirect github.com/agext/levenshtein v1.2.3 // indirect - github.com/aiven/go-api-schemas v1.43.0 + github.com/aiven/go-api-schemas v1.44.0 github.com/aws/aws-sdk-go v1.44.122 // indirect github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect github.com/davecgh/go-spew v1.1.1 // indirect diff --git a/go.sum b/go.sum index 75d4d061b..385807423 100644 --- a/go.sum +++ b/go.sum @@ -203,8 +203,8 @@ github.com/agext/levenshtein v1.2.3 h1:YB2fHEn0UJagG8T1rrWknE3ZQzWM06O8AMAatNn7l github.com/agext/levenshtein v1.2.3/go.mod h1:JEDfjyjHDjOF/1e4FlBE/PkbqA9OfWu2ki2W0IB5558= github.com/aiven/aiven-go-client/v2 v2.2.0 h1:ZPeIMF3Jt/wPrwFj3mO1Z8KtP9OHc6GpMtZXmwfBsE4= github.com/aiven/aiven-go-client/v2 v2.2.0/go.mod h1:x0xhzxWEKAwKv0xY5FvECiI6tesWshcPHvjwl0B/1SU= -github.com/aiven/go-api-schemas v1.43.0 h1:Ha5OEe4m9eZW7YjxsmnSAoas8DFNU0c/70EJ1kCxu0s= -github.com/aiven/go-api-schemas v1.43.0/go.mod h1:/bPxBUHza/2Aeer6hIIdB++GxKiw9K1KCBtRa2rtZ5I= +github.com/aiven/go-api-schemas v1.44.0 h1:TzQuFVa3rTZU3lP6kScOlZq+Fs4mfOisfSeiaXg6Yjk= +github.com/aiven/go-api-schemas v1.44.0/go.mod h1:/bPxBUHza/2Aeer6hIIdB++GxKiw9K1KCBtRa2rtZ5I= github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY= github.com/apparentlymart/go-dump v0.0.0-20180507223929-23540a00eaa3/go.mod h1:oL81AME2rN47vu18xqj1S1jPIPuN7afo62yKTNn3XMM= github.com/apparentlymart/go-textseg v1.0.0/go.mod h1:z96Txxhf3xSFMPmb5X/1W05FF/Nj9VFpLOpjS5yuumk= diff --git a/internal/schemautil/userconfig/dist/service_types.go b/internal/schemautil/userconfig/dist/service_types.go index fab522b0d..9f46927b6 100644 --- a/internal/schemautil/userconfig/dist/service_types.go +++ b/internal/schemautil/userconfig/dist/service_types.go @@ -4765,7 +4765,7 @@ func ServiceTypeMysql() *schema.Schema { Type: schema.TypeString, }, "method": { - Description: "The migration method to be used (currently supported only by Redis, MySQL and PostgreSQL service types).", + Description: "The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).", Optional: true, Type: schema.TypeString, }, @@ -4809,7 +4809,7 @@ func ServiceTypeMysql() *schema.Schema { Type: schema.TypeString, }, "method": { - Description: "The migration method to be used (currently supported only by Redis, MySQL and PostgreSQL service types).", + Description: "The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).", Optional: true, Type: schema.TypeString, }, @@ -7007,7 +7007,7 @@ func ServiceTypePg() *schema.Schema { Type: schema.TypeString, }, "method": { - Description: "The migration method to be used (currently supported only by Redis, MySQL and PostgreSQL service types).", + Description: "The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).", Optional: true, Type: schema.TypeString, }, @@ -7051,7 +7051,7 @@ func ServiceTypePg() *schema.Schema { Type: schema.TypeString, }, "method": { - Description: "The migration method to be used (currently supported only by Redis, MySQL and PostgreSQL service types).", + Description: "The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).", Optional: true, Type: schema.TypeString, }, @@ -7989,7 +7989,7 @@ func ServiceTypeRedis() *schema.Schema { Type: schema.TypeString, }, "method": { - Description: "The migration method to be used (currently supported only by Redis, MySQL and PostgreSQL service types).", + Description: "The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).", Optional: true, Type: schema.TypeString, }, @@ -8033,7 +8033,7 @@ func ServiceTypeRedis() *schema.Schema { Type: schema.TypeString, }, "method": { - Description: "The migration method to be used (currently supported only by Redis, MySQL and PostgreSQL service types).", + Description: "The migration method to be used (currently supported only by Redis, Dragonfly, MySQL and PostgreSQL service types).", Optional: true, Type: schema.TypeString, },