File tree
3 files changed
+58
-2
lines changed- source
- submodules
3 files changed
+58
-2
lines changedLines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
27 | 27 |
| |
28 | 28 |
| |
29 | 29 |
| |
30 |
| - | |
| 30 | + | |
31 | 31 |
| |
32 | 32 |
| |
33 | 33 |
| |
|
Lines changed: 56 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
14 | 14 |
| |
15 | 15 |
| |
16 | 16 |
| |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
17 | 43 |
| |
18 | 44 |
| |
19 | 45 |
| |
| |||
32 | 58 |
| |
33 | 59 |
| |
34 | 60 |
| |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
35 | 72 |
| |
36 | 73 |
| |
37 | 74 |
| |
| |||
59 | 96 |
| |
60 | 97 |
| |
61 | 98 |
| |
| 99 | + | |
| 100 | + | |
| 101 | + | |
| 102 | + | |
| 103 | + | |
| 104 | + | |
| 105 | + | |
| 106 | + | |
| 107 | + | |
| 108 | + | |
| 109 | + | |
| 110 | + | |
| 111 | + | |
| 112 | + | |
| 113 | + | |
| 114 | + | |
| 115 | + | |
| 116 | + | |
| 117 | + | |
62 | 118 |
| |
63 | 119 |
| |
64 | 120 |
| |
|
Submodule mongodb-atlas-cli updated 79 files
- .github/workflows/labeler.yaml+1-1
- .github/workflows/stale.yml+1-1
- docs/atlascli/command/atlas-alerts-settings-list.txt+4
- docs/atlascli/command/atlas-clusters-create.txt+3-3
- docs/atlascli/command/atlas-clusters-delete.txt+1-2
- docs/atlascli/command/atlas-clusters-sampleData-load.txt+7
- docs/atlascli/command/atlas-customDbRoles-create.txt+8-2
- docs/atlascli/command/atlas-dbusers-list.txt+4
- docs/atlascli/command/atlas-kubernetes-config-apply.txt+2-2
- docs/atlascli/command/atlas-kubernetes-config-generate.txt+2-2
- docs/atlascli/command/atlas-kubernetes-config.txt+2-2
- docs/atlascli/command/atlas-logs-download.txt+2-2
- docs/atlascli/command/atlas-organizations-apiKeys-list.txt+4
- docs/atlascli/command/atlas-processes-list.txt+4
- docs/atlascli/command/atlas-projects-apiKeys-list.txt+4
- docs/atlascli/command/atlas-projects-users-list.txt+4
- docs/atlascli/command/atlas-teams-list.txt+4
- docs/atlascli/command/atlas-teams-users-list.txt+4
- docs/mongocli/command/mongocli-atlas-clusters-create.txt+3-3
- docs/mongocli/command/mongocli-atlas-clusters-delete.txt+1-2
- docs/mongocli/command/mongocli-atlas-customDbRoles-create.txt+8-2
- docs/mongocli/command/mongocli-atlas-dbusers-list.txt+4
- docs/mongocli/command/mongocli-atlas-logs-download.txt+2-2
- docs/mongocli/command/mongocli-atlas-processes-list.txt+4
- go.mod+1-1
- go.sum+2-2
- internal/cli/atlas/accesslists/create.go+13-5
- internal/cli/atlas/accesslists/create_test.go+3-1
- internal/cli/atlas/alerts/acknowledge.go+2-1
- internal/cli/atlas/alerts/settings/list.go+7-1
- internal/cli/atlas/clusters/create.go+15-8
- internal/cli/atlas/clusters/delete.go+38-2
- internal/cli/atlas/clusters/sampledata/load.go+2
- internal/cli/atlas/clusters/watch.go+3-4
- internal/cli/atlas/customdbroles/create.go+5-2
- internal/cli/atlas/datalakepipelines/availablesnapshots/list.go+3-2
- internal/cli/atlas/dbusers/list.go+7-1
- internal/cli/atlas/kubernetes/config/apply.go+2-2
- internal/cli/atlas/kubernetes/config/generate.go+2-2
- internal/cli/atlas/logs/download.go+21-11
- internal/cli/atlas/logs/download_test.go+1-1
- internal/cli/atlas/organizations/apikeys/list.go+7-1
- internal/cli/atlas/processes/list.go+7-1
- internal/cli/atlas/projects/apikeys/list.go+7-1
- internal/cli/atlas/projects/users/list.go+7-1
- internal/cli/atlas/teams/list.go+7-1
- internal/cli/atlas/teams/users/list.go+8-2
- internal/cli/errors.go+1
- internal/cli/output_opts.go+44
- internal/cli/output_opts_test.go+34
- internal/cli/watch_opts.go+14
- internal/convert/database_user.go+2-1
- internal/flag/flags.go+5
- internal/mocks/mock_logs.go+5-5
- internal/pointer/pointer.go+2-1
- internal/store/logs.go+11-4
- internal/time/time.go+36
- internal/time/time_test.go+62
- internal/usage/usage.go+5
- internal/watchers/cluster.go+74
- internal/watchers/watcher.go+246
- test/e2e/atlas/alert_settings_test.go+22
- test/e2e/atlas/backup_export_jobs_test.go+1-1
- test/e2e/atlas/backup_snapshot_test.go+1-1
- test/e2e/atlas/clusters_file_test.go+1-1
- test/e2e/atlas/clusters_flags_test.go+3-17
- test/e2e/atlas/clusters_m0_test.go+1-1
- test/e2e/atlas/clusters_sharded_test.go+1-1
- test/e2e/atlas/clusters_upgrade_test.go+1-1
- test/e2e/atlas/dbusers_test.go+18
- test/e2e/atlas/logs_test.go+14-9
- test/e2e/atlas/processes_test.go+21
- test/e2e/atlas/quickstart_test.go+1-1
- test/e2e/atlas/search_test.go+59-29
- test/e2e/atlas/setup_force_test.go+1-1
- test/e2e/iam/atlas_org_api_keys_test.go+20
- test/e2e/iam/atlas_project_api_keys_test.go+20
- test/e2e/iam/atlas_team_users_test.go+19
- test/e2e/iam/atlas_teams_test.go+18
0 commit comments