-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
96091d6
commit 51eebf8
Showing
37 changed files
with
2,675 additions
and
1,780 deletions.
There are no files selected for viewing
2,019 changes: 1,068 additions & 951 deletions
2,019
yugabyted-ui/apiserver/cmd/server/.docs/api/openapi.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
349 changes: 279 additions & 70 deletions
349
yugabyted-ui/apiserver/cmd/server/handlers/api_voyager.go
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
yugabyted-ui/apiserver/cmd/server/models/model_voyager_migration_details_source_db.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package models | ||
|
||
type VoyagerMigrationDetailsSourceDb struct { | ||
|
||
Ip string `json:"ip"` | ||
|
||
Port string `json:"port"` | ||
|
||
Engine string `json:"engine"` | ||
|
||
Version string `json:"version"` | ||
|
||
Database string `json:"database"` | ||
|
||
Schema string `json:"schema"` | ||
} |
12 changes: 12 additions & 0 deletions
12
yugabyted-ui/apiserver/cmd/server/models/model_voyager_migration_details_target_cluster.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package models | ||
|
||
type VoyagerMigrationDetailsTargetCluster struct { | ||
|
||
Ip string `json:"ip"` | ||
|
||
Port string `json:"port"` | ||
|
||
Engine string `json:"engine"` | ||
|
||
Version string `json:"version"` | ||
} |
14 changes: 14 additions & 0 deletions
14
yugabyted-ui/apiserver/cmd/server/models/model_voyager_migration_details_voyager.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package models | ||
|
||
type VoyagerMigrationDetailsVoyager struct { | ||
|
||
MachineIp string `json:"machine_ip"` | ||
|
||
Os string `json:"os"` | ||
|
||
AvailDiskBytes string `json:"avail_disk_bytes"` | ||
|
||
ExportDir string `json:"export_dir"` | ||
|
||
ExportedSchemaLocation string `json:"exported_schema_location"` | ||
} |
Oops, something went wrong.