nextmv 1.3.1.dev3__tar.gz → 1.4.0.dev0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/.gitignore +0 -5
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/PKG-INFO +1 -3
- nextmv-1.4.0.dev0/nextmv/__about__.py +1 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/acceptance/delete.py +2 -11
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/account/delete.py +2 -11
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/app/delete.py +2 -11
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/batch/delete.py +2 -11
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/ensemble/delete.py +2 -11
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/input_set/create.py +4 -3
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/input_set/delete.py +2 -11
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/instance/delete.py +2 -11
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/managed_input/delete.py +2 -11
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/marketplace/subscription/delete.py +2 -11
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/run/__init__.py +2 -0
- nextmv-1.4.0.dev0/nextmv/cli/cloud/run/delete.py +50 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/run/get.py +3 -8
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/scenario/delete.py +2 -11
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/secrets/delete.py +2 -11
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/shadow/delete.py +2 -11
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/sso/delete.py +2 -11
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/sso/domain/delete.py +2 -9
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/switchback/delete.py +2 -11
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/version/delete.py +2 -11
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/configuration/delete.py +2 -8
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/init.py +141 -112
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/local/app/delete.py +2 -10
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/main.py +1 -9
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/options.py +12 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cloud/application/_batch_scenario.py +0 -15
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cloud/application/_run.py +152 -45
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cloud/batch_experiment.py +0 -2
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/local/application.py +37 -6
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/run.py +5 -0
- nextmv-1.4.0.dev0/nextmv/templates/python_json_class-assign/README.md +48 -0
- nextmv-1.4.0.dev0/nextmv/templates/python_json_class-assign/app.yaml +87 -0
- nextmv-1.4.0.dev0/nextmv/templates/python_json_class-assign/input.json +303 -0
- nextmv-1.4.0.dev0/nextmv/templates/python_json_class-assign/main.py +439 -0
- nextmv-1.4.0.dev0/nextmv/templates/python_json_class-assign/requirements.txt +3 -0
- nextmv-1.4.0.dev0/nextmv/templates/python_json_class-assign/visualizations.py +656 -0
- nextmv-1.4.0.dev0/nextmv/templates/python_json_demand-alloc/.gitignore +1 -0
- nextmv-1.4.0.dev0/nextmv/templates/python_json_demand-alloc/README.md +14 -0
- nextmv-1.4.0.dev0/nextmv/templates/python_json_demand-alloc/allocation/README.md +50 -0
- nextmv-1.4.0.dev0/nextmv/templates/python_json_demand-alloc/allocation/app.yaml +83 -0
- nextmv-1.4.0.dev0/nextmv/templates/python_json_demand-alloc/allocation/input.json +7 -0
- nextmv-1.4.0.dev0/nextmv/templates/python_json_demand-alloc/allocation/main.py +494 -0
- nextmv-1.4.0.dev0/nextmv/templates/python_json_demand-alloc/allocation/requirements.txt +4 -0
- nextmv-1.4.0.dev0/nextmv/templates/python_json_demand-alloc/allocation/visuals.py +89 -0
- nextmv-1.4.0.dev0/nextmv/templates/python_json_demand-alloc/workflow/README.md +72 -0
- nextmv-1.4.0.dev0/nextmv/templates/python_json_demand-alloc/workflow/app.yaml +70 -0
- nextmv-1.4.0.dev0/nextmv/templates/python_json_demand-alloc/workflow/input.json +436 -0
- nextmv-1.4.0.dev0/nextmv/templates/python_json_demand-alloc/workflow/main.py +176 -0
- nextmv-1.4.0.dev0/nextmv/templates/python_json_demand-alloc/workflow/requirements.txt +5 -0
- nextmv-1.4.0.dev0/nextmv/templates/python_json_demand-alloc/workflow/visuals.py +187 -0
- nextmv-1.4.0.dev0/nextmv/templates/python_json_hello-world/.gitignore +1 -0
- nextmv-1.4.0.dev0/nextmv/templates/python_multi-file_class-assign/.gitignore +1 -0
- nextmv-1.4.0.dev0/nextmv/templates/python_multi-file_class-assign/README.md +48 -0
- nextmv-1.4.0.dev0/nextmv/templates/python_multi-file_class-assign/app.yaml +95 -0
- nextmv-1.4.0.dev0/nextmv/templates/python_multi-file_class-assign/inputs/input.json +303 -0
- nextmv-1.4.0.dev0/nextmv/templates/python_multi-file_class-assign/main.py +451 -0
- nextmv-1.4.0.dev0/nextmv/templates/python_multi-file_class-assign/requirements.txt +3 -0
- nextmv-1.4.0.dev0/nextmv/templates/python_multi-file_class-assign/visualizations.py +656 -0
- nextmv-1.4.0.dev0/nextmv/templates/python_multi-file_demand-alloc/README.md +14 -0
- nextmv-1.4.0.dev0/nextmv/templates/python_multi-file_demand-alloc/allocation/README.md +50 -0
- nextmv-1.4.0.dev0/nextmv/templates/python_multi-file_demand-alloc/allocation/app.yaml +83 -0
- nextmv-1.4.0.dev0/nextmv/templates/python_multi-file_demand-alloc/allocation/input.json +7 -0
- nextmv-1.4.0.dev0/nextmv/templates/python_multi-file_demand-alloc/allocation/main.py +494 -0
- nextmv-1.4.0.dev0/nextmv/templates/python_multi-file_demand-alloc/allocation/requirements.txt +4 -0
- nextmv-1.4.0.dev0/nextmv/templates/python_multi-file_demand-alloc/allocation/visuals.py +89 -0
- nextmv-1.4.0.dev0/nextmv/templates/python_multi-file_demand-alloc/workflow/README.md +70 -0
- nextmv-1.4.0.dev0/nextmv/templates/python_multi-file_demand-alloc/workflow/app.yaml +78 -0
- nextmv-1.4.0.dev0/nextmv/templates/python_multi-file_demand-alloc/workflow/inputs/input.json +436 -0
- nextmv-1.4.0.dev0/nextmv/templates/python_multi-file_demand-alloc/workflow/main.py +187 -0
- nextmv-1.4.0.dev0/nextmv/templates/python_multi-file_demand-alloc/workflow/requirements.txt +5 -0
- nextmv-1.4.0.dev0/nextmv/templates/python_multi-file_demand-alloc/workflow/visuals.py +187 -0
- nextmv-1.4.0.dev0/nextmv/templates/python_multi-file_hello-world/.gitignore +2 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/pyproject.toml +0 -4
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/tests/integration/cloud/test_integration_cloud.py +5 -2
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/uv.lock +10 -303
- nextmv-1.3.1.dev3/nextmv/__about__.py +0 -1
- nextmv-1.3.1.dev3/nextmv/cli/mcp/__init__.py +0 -38
- nextmv-1.3.1.dev3/nextmv/cli/mcp/serve.py +0 -66
- nextmv-1.3.1.dev3/nextmv/cli/mcp/server.py +0 -114
- nextmv-1.3.1.dev3/nextmv/cli/mcp/tools/__init__.py +0 -1
- nextmv-1.3.1.dev3/nextmv/cli/mcp/tools/_helpers.py +0 -316
- nextmv-1.3.1.dev3/nextmv/cli/mcp/tools/acceptance.py +0 -112
- nextmv-1.3.1.dev3/nextmv/cli/mcp/tools/account.py +0 -47
- nextmv-1.3.1.dev3/nextmv/cli/mcp/tools/app.py +0 -148
- nextmv-1.3.1.dev3/nextmv/cli/mcp/tools/batch.py +0 -110
- nextmv-1.3.1.dev3/nextmv/cli/mcp/tools/community.py +0 -45
- nextmv-1.3.1.dev3/nextmv/cli/mcp/tools/ensemble.py +0 -344
- nextmv-1.3.1.dev3/nextmv/cli/mcp/tools/guide.py +0 -423
- nextmv-1.3.1.dev3/nextmv/cli/mcp/tools/input_set.py +0 -138
- nextmv-1.3.1.dev3/nextmv/cli/mcp/tools/instance.py +0 -140
- nextmv-1.3.1.dev3/nextmv/cli/mcp/tools/local.py +0 -431
- nextmv-1.3.1.dev3/nextmv/cli/mcp/tools/managed_input.py +0 -108
- nextmv-1.3.1.dev3/nextmv/cli/mcp/tools/profile.py +0 -81
- nextmv-1.3.1.dev3/nextmv/cli/mcp/tools/run.py +0 -405
- nextmv-1.3.1.dev3/nextmv/cli/mcp/tools/scenario.py +0 -213
- nextmv-1.3.1.dev3/nextmv/cli/mcp/tools/secrets.py +0 -100
- nextmv-1.3.1.dev3/nextmv/cli/mcp/tools/shadow.py +0 -149
- nextmv-1.3.1.dev3/nextmv/cli/mcp/tools/sso.py +0 -29
- nextmv-1.3.1.dev3/nextmv/cli/mcp/tools/switchback.py +0 -162
- nextmv-1.3.1.dev3/nextmv/cli/mcp/tools/version.py +0 -113
- nextmv-1.3.1.dev3/tests/cli/test_mcp.py +0 -2040
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/.python-version +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/CONTRIBUTING.md +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/LICENSE +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/README.md +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/__entrypoint__.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/__init__.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/_serialization.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/base_model.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/__init__.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/__init__.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/acceptance/__init__.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/acceptance/create.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/acceptance/get.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/acceptance/list.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/acceptance/update.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/account/__init__.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/account/create.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/account/get.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/account/update.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/app/__init__.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/app/create.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/app/exists.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/app/get.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/app/list.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/app/push.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/app/update.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/batch/__init__.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/batch/create.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/batch/get.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/batch/list.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/batch/metadata.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/batch/update.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/data/__init__.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/data/upload.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/ensemble/__init__.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/ensemble/create.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/ensemble/get.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/ensemble/list.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/ensemble/update.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/input_set/__init__.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/input_set/get.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/input_set/list.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/input_set/update.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/instance/__init__.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/instance/create.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/instance/exists.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/instance/get.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/instance/list.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/instance/update.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/managed_input/__init__.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/managed_input/create.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/managed_input/get.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/managed_input/list.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/managed_input/update.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/marketplace/__init__.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/marketplace/app/__init__.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/marketplace/app/create.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/marketplace/app/get.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/marketplace/app/list.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/marketplace/app/update.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/marketplace/subscription/__init__.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/marketplace/subscription/create.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/marketplace/subscription/get.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/marketplace/subscription/list.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/marketplace/version/__init__.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/marketplace/version/create.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/marketplace/version/get.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/marketplace/version/list.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/marketplace/version/update.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/run/cancel.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/run/create.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/run/input.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/run/list.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/run/logs.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/run/metadata.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/run/track.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/scenario/__init__.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/scenario/create.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/scenario/get.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/scenario/list.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/scenario/metadata.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/scenario/update.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/secrets/__init__.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/secrets/create.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/secrets/get.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/secrets/list.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/secrets/update.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/shadow/__init__.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/shadow/create.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/shadow/get.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/shadow/list.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/shadow/metadata.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/shadow/start.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/shadow/stop.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/shadow/update.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/sso/__init__.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/sso/create.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/sso/disable.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/sso/domain/__init__.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/sso/enable.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/sso/get.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/sso/update.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/switchback/__init__.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/switchback/create.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/switchback/get.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/switchback/list.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/switchback/metadata.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/switchback/start.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/switchback/stop.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/switchback/update.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/upload/__init__.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/upload/create.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/version/__init__.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/version/create.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/version/exists.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/version/get.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/version/list.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/cloud/version/update.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/community/__init__.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/community/clone.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/community/list.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/configuration/__init__.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/configuration/config.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/configuration/create.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/configuration/list.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/local/__init__.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/local/app/__init__.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/local/app/get.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/local/app/list.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/local/app/register.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/local/app/registered.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/local/app/sync.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/local/app/update.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/local/run/__init__.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/local/run/create.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/local/run/get.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/local/run/input.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/local/run/list.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/local/run/logs.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/local/run/metadata.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/local/run/visuals.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/manifest/__init__.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/manifest/init.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/manifest/validate.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/message.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cli/version.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cloud/__init__.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cloud/acceptance_test.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cloud/account.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cloud/application/__init__.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cloud/application/_acceptance.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cloud/application/_ensemble.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cloud/application/_input_set.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cloud/application/_instance.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cloud/application/_managed_input.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cloud/application/_secrets.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cloud/application/_shadow.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cloud/application/_switchback.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cloud/application/_utils.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cloud/application/_version.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cloud/assets.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cloud/client.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cloud/community.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cloud/ensemble.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cloud/input_set.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cloud/instance.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cloud/integration.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cloud/marketplace.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cloud/package.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cloud/scenario.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cloud/secrets.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cloud/shadow.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cloud/sso.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cloud/switchback.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cloud/url.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/cloud/version.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/content_format.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/default_app/.gitignore +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/default_app/README.md +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/default_app/app.yaml +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/default_app/input.json +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/default_app/main.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/default_app/requirements.txt +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/default_app/src/__init__.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/default_app/src/visuals.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/deprecated.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/input.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/local/__init__.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/local/executor.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/local/geojson_handler.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/local/local.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/local/plotly_handler.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/local/registry.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/local/runner.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/logger.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/manifest.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/model.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/options.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/output.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/polling.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/safe.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/status.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/templates/binary_json_app.yaml +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/templates/binary_multi-file_app.yaml +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/templates/go_json_app.yaml +0 -0
- {nextmv-1.3.1.dev3/nextmv/templates/go_json_template → nextmv-1.4.0.dev0/nextmv/templates/go_json_hello-world}/.gitignore +0 -0
- {nextmv-1.3.1.dev3/nextmv/templates/go_json_template → nextmv-1.4.0.dev0/nextmv/templates/go_json_hello-world}/README.md +0 -0
- {nextmv-1.3.1.dev3/nextmv/templates/go_json_template → nextmv-1.4.0.dev0/nextmv/templates/go_json_hello-world}/app.yaml +0 -0
- {nextmv-1.3.1.dev3/nextmv/templates/go_json_template → nextmv-1.4.0.dev0/nextmv/templates/go_json_hello-world}/go.mod +0 -0
- {nextmv-1.3.1.dev3/nextmv/templates/go_json_template → nextmv-1.4.0.dev0/nextmv/templates/go_json_hello-world}/input.json +0 -0
- {nextmv-1.3.1.dev3/nextmv/templates/go_json_template → nextmv-1.4.0.dev0/nextmv/templates/go_json_hello-world}/main.go +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/templates/go_multi-file_app.yaml +0 -0
- {nextmv-1.3.1.dev3/nextmv/templates/go_multi-file_template → nextmv-1.4.0.dev0/nextmv/templates/go_multi-file_hello-world}/.gitignore +0 -0
- {nextmv-1.3.1.dev3/nextmv/templates/go_multi-file_template → nextmv-1.4.0.dev0/nextmv/templates/go_multi-file_hello-world}/README.md +0 -0
- {nextmv-1.3.1.dev3/nextmv/templates/go_multi-file_template → nextmv-1.4.0.dev0/nextmv/templates/go_multi-file_hello-world}/app.yaml +0 -0
- {nextmv-1.3.1.dev3/nextmv/templates/go_multi-file_template → nextmv-1.4.0.dev0/nextmv/templates/go_multi-file_hello-world}/go.mod +0 -0
- {nextmv-1.3.1.dev3/nextmv/templates/go_multi-file_template → nextmv-1.4.0.dev0/nextmv/templates/go_multi-file_hello-world}/inputs/input.json +0 -0
- {nextmv-1.3.1.dev3/nextmv/templates/go_multi-file_template → nextmv-1.4.0.dev0/nextmv/templates/go_multi-file_hello-world}/main.go +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/templates/java_json_app.yaml +0 -0
- {nextmv-1.3.1.dev3/nextmv/templates/java_json_template → nextmv-1.4.0.dev0/nextmv/templates/java_json_hello-world}/.gitignore +0 -0
- {nextmv-1.3.1.dev3/nextmv/templates/java_json_template → nextmv-1.4.0.dev0/nextmv/templates/java_json_hello-world}/Main.java +0 -0
- {nextmv-1.3.1.dev3/nextmv/templates/java_json_template → nextmv-1.4.0.dev0/nextmv/templates/java_json_hello-world}/README.md +0 -0
- {nextmv-1.3.1.dev3/nextmv/templates/java_json_template → nextmv-1.4.0.dev0/nextmv/templates/java_json_hello-world}/app.yaml +0 -0
- {nextmv-1.3.1.dev3/nextmv/templates/java_json_template → nextmv-1.4.0.dev0/nextmv/templates/java_json_hello-world}/input.json +0 -0
- {nextmv-1.3.1.dev3/nextmv/templates/java_json_template → nextmv-1.4.0.dev0/nextmv/templates/java_json_hello-world}/pom.xml +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/templates/java_multi-file_app.yaml +0 -0
- {nextmv-1.3.1.dev3/nextmv/templates/java_multi-file_template → nextmv-1.4.0.dev0/nextmv/templates/java_multi-file_hello-world}/.gitignore +0 -0
- {nextmv-1.3.1.dev3/nextmv/templates/java_multi-file_template → nextmv-1.4.0.dev0/nextmv/templates/java_multi-file_hello-world}/Main.java +0 -0
- {nextmv-1.3.1.dev3/nextmv/templates/java_multi-file_template → nextmv-1.4.0.dev0/nextmv/templates/java_multi-file_hello-world}/README.md +0 -0
- {nextmv-1.3.1.dev3/nextmv/templates/java_multi-file_template → nextmv-1.4.0.dev0/nextmv/templates/java_multi-file_hello-world}/app.yaml +0 -0
- {nextmv-1.3.1.dev3/nextmv/templates/java_multi-file_template → nextmv-1.4.0.dev0/nextmv/templates/java_multi-file_hello-world}/inputs/input.json +0 -0
- {nextmv-1.3.1.dev3/nextmv/templates/java_multi-file_template → nextmv-1.4.0.dev0/nextmv/templates/java_multi-file_hello-world}/pom.xml +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/templates/python_json_app.yaml +0 -0
- {nextmv-1.3.1.dev3/nextmv/templates/python_json_template → nextmv-1.4.0.dev0/nextmv/templates/python_json_class-assign}/.gitignore +0 -0
- {nextmv-1.3.1.dev3/nextmv/templates/python_json_template → nextmv-1.4.0.dev0/nextmv/templates/python_json_hello-world}/README.md +0 -0
- {nextmv-1.3.1.dev3/nextmv/templates/python_json_template → nextmv-1.4.0.dev0/nextmv/templates/python_json_hello-world}/app.yaml +0 -0
- {nextmv-1.3.1.dev3/nextmv/templates/python_json_template → nextmv-1.4.0.dev0/nextmv/templates/python_json_hello-world}/input.json +0 -0
- {nextmv-1.3.1.dev3/nextmv/templates/python_json_template → nextmv-1.4.0.dev0/nextmv/templates/python_json_hello-world}/main.py +0 -0
- {nextmv-1.3.1.dev3/nextmv/templates/python_json_template → nextmv-1.4.0.dev0/nextmv/templates/python_json_hello-world}/requirements.txt +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/nextmv/templates/python_multi-file_app.yaml +0 -0
- {nextmv-1.3.1.dev3/nextmv/templates/python_multi-file_template → nextmv-1.4.0.dev0/nextmv/templates/python_multi-file_demand-alloc/workflow}/.gitignore +0 -0
- {nextmv-1.3.1.dev3/nextmv/templates/python_multi-file_template → nextmv-1.4.0.dev0/nextmv/templates/python_multi-file_hello-world}/README.md +0 -0
- {nextmv-1.3.1.dev3/nextmv/templates/python_multi-file_template → nextmv-1.4.0.dev0/nextmv/templates/python_multi-file_hello-world}/app.yaml +0 -0
- {nextmv-1.3.1.dev3/nextmv/templates/python_multi-file_template → nextmv-1.4.0.dev0/nextmv/templates/python_multi-file_hello-world}/inputs/input.json +0 -0
- {nextmv-1.3.1.dev3/nextmv/templates/python_multi-file_template → nextmv-1.4.0.dev0/nextmv/templates/python_multi-file_hello-world}/main.py +0 -0
- {nextmv-1.3.1.dev3/nextmv/templates/python_multi-file_template → nextmv-1.4.0.dev0/nextmv/templates/python_multi-file_hello-world}/requirements.txt +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/tests/__init__.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/tests/cli/__init__.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/tests/cli/test_configuration.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/tests/cli/test_main.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/tests/cli/test_version.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/tests/cloud/__init__.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/tests/cloud/app.yaml +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/tests/cloud/test_client.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/tests/cloud/test_instance.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/tests/cloud/test_package.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/tests/cloud/test_scenario.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/tests/integration/__init__.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/tests/integration/cloud/__init__.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/tests/integration/cloud/test_integration_marketplace.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/tests/local/__init__.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/tests/local/test_application.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/tests/local/test_executor.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/tests/local/test_registry.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/tests/local/test_runner.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/tests/scripts/__init__.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/tests/scripts/options1.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/tests/scripts/options2.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/tests/scripts/options3.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/tests/scripts/options4.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/tests/scripts/options5.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/tests/scripts/options6.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/tests/scripts/options7.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/tests/test_base_model.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/tests/test_entrypoint/__init__.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/tests/test_entrypoint/test_entrypoint.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/tests/test_input.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/tests/test_inputs/test_data.csv +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/tests/test_inputs/test_data.json +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/tests/test_inputs/test_data.txt +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/tests/test_logger.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/tests/test_manifest.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/tests/test_model.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/tests/test_options.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/tests/test_output.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/tests/test_polling.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/tests/test_run.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/tests/test_safe.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/tests/test_serialization.py +0 -0
- {nextmv-1.3.1.dev3 → nextmv-1.4.0.dev0}/tests/test_version.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: nextmv
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.4.0.dev0
|
|
4
4
|
Summary: The all-purpose Python SDK for Nextmv
|
|
5
5
|
Project-URL: Homepage, https://www.nextmv.io
|
|
6
6
|
Project-URL: Documentation, https://nextmv-py.docs.nextmv.io/en/latest/nextmv/
|
|
@@ -227,8 +227,6 @@ Requires-Dist: questionary>=2.1.1
|
|
|
227
227
|
Requires-Dist: requests>=2.31.0
|
|
228
228
|
Requires-Dist: typer>=0.20.1
|
|
229
229
|
Requires-Dist: urllib3>=2.1.0
|
|
230
|
-
Provides-Extra: mcp
|
|
231
|
-
Requires-Dist: mcp[cli]>=1.0; extra == 'mcp'
|
|
232
230
|
Provides-Extra: notebook
|
|
233
231
|
Requires-Dist: mlflow>=3.9.0; extra == 'notebook'
|
|
234
232
|
Description-Content-Type: text/markdown
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "v1.4.0.dev0"
|
|
@@ -2,13 +2,11 @@
|
|
|
2
2
|
This module defines the cloud acceptance delete command for the Nextmv CLI.
|
|
3
3
|
"""
|
|
4
4
|
|
|
5
|
-
from typing import Annotated
|
|
6
|
-
|
|
7
5
|
import typer
|
|
8
6
|
|
|
9
7
|
from nextmv.cli.configuration.config import build_cloud_app
|
|
10
8
|
from nextmv.cli.message import confirmation, info, success
|
|
11
|
-
from nextmv.cli.options import AcceptanceTestIDOption, AppIDOption, ProfileOption
|
|
9
|
+
from nextmv.cli.options import AcceptanceTestIDOption, AppIDOption, ProfileOption, YesOption
|
|
12
10
|
|
|
13
11
|
# Set up subcommand application.
|
|
14
12
|
app = typer.Typer()
|
|
@@ -18,14 +16,7 @@ app = typer.Typer()
|
|
|
18
16
|
def delete(
|
|
19
17
|
app_id: AppIDOption,
|
|
20
18
|
acceptance_test_id: AcceptanceTestIDOption,
|
|
21
|
-
yes:
|
|
22
|
-
bool,
|
|
23
|
-
typer.Option(
|
|
24
|
-
"--yes",
|
|
25
|
-
"-y",
|
|
26
|
-
help="Agree to deletion confirmation prompt. Useful for non-interactive sessions.",
|
|
27
|
-
),
|
|
28
|
-
] = False,
|
|
19
|
+
yes: YesOption = False,
|
|
29
20
|
profile: ProfileOption = None,
|
|
30
21
|
) -> None:
|
|
31
22
|
"""
|
|
@@ -2,13 +2,11 @@
|
|
|
2
2
|
This module defines the cloud account delete command for the Nextmv CLI.
|
|
3
3
|
"""
|
|
4
4
|
|
|
5
|
-
from typing import Annotated
|
|
6
|
-
|
|
7
5
|
import typer
|
|
8
6
|
|
|
9
7
|
from nextmv.cli.configuration.config import build_account
|
|
10
8
|
from nextmv.cli.message import confirmation, info, success
|
|
11
|
-
from nextmv.cli.options import AccountIDOption, ProfileOption
|
|
9
|
+
from nextmv.cli.options import AccountIDOption, ProfileOption, YesOption
|
|
12
10
|
|
|
13
11
|
# Set up subcommand application.
|
|
14
12
|
app = typer.Typer()
|
|
@@ -17,14 +15,7 @@ app = typer.Typer()
|
|
|
17
15
|
@app.command()
|
|
18
16
|
def delete(
|
|
19
17
|
account_id: AccountIDOption,
|
|
20
|
-
yes:
|
|
21
|
-
bool,
|
|
22
|
-
typer.Option(
|
|
23
|
-
"--yes",
|
|
24
|
-
"-y",
|
|
25
|
-
help="Agree to deletion confirmation prompt. Useful for non-interactive sessions.",
|
|
26
|
-
),
|
|
27
|
-
] = False,
|
|
18
|
+
yes: YesOption = False,
|
|
28
19
|
profile: ProfileOption = None,
|
|
29
20
|
) -> None:
|
|
30
21
|
"""
|
|
@@ -2,13 +2,11 @@
|
|
|
2
2
|
This module defines the cloud app delete command for the Nextmv CLI.
|
|
3
3
|
"""
|
|
4
4
|
|
|
5
|
-
from typing import Annotated
|
|
6
|
-
|
|
7
5
|
import typer
|
|
8
6
|
|
|
9
7
|
from nextmv.cli.configuration.config import build_cloud_app
|
|
10
8
|
from nextmv.cli.message import confirmation, info, success
|
|
11
|
-
from nextmv.cli.options import AppIDOption, ProfileOption
|
|
9
|
+
from nextmv.cli.options import AppIDOption, ProfileOption, YesOption
|
|
12
10
|
|
|
13
11
|
# Set up subcommand application.
|
|
14
12
|
app = typer.Typer()
|
|
@@ -17,14 +15,7 @@ app = typer.Typer()
|
|
|
17
15
|
@app.command()
|
|
18
16
|
def delete(
|
|
19
17
|
app_id: AppIDOption,
|
|
20
|
-
yes:
|
|
21
|
-
bool,
|
|
22
|
-
typer.Option(
|
|
23
|
-
"--yes",
|
|
24
|
-
"-y",
|
|
25
|
-
help="Agree to deletion confirmation prompt. Useful for non-interactive sessions.",
|
|
26
|
-
),
|
|
27
|
-
] = False,
|
|
18
|
+
yes: YesOption = False,
|
|
28
19
|
profile: ProfileOption = None,
|
|
29
20
|
) -> None:
|
|
30
21
|
"""
|
|
@@ -2,13 +2,11 @@
|
|
|
2
2
|
This module defines the cloud batch delete command for the Nextmv CLI.
|
|
3
3
|
"""
|
|
4
4
|
|
|
5
|
-
from typing import Annotated
|
|
6
|
-
|
|
7
5
|
import typer
|
|
8
6
|
|
|
9
7
|
from nextmv.cli.configuration.config import build_cloud_app
|
|
10
8
|
from nextmv.cli.message import confirmation, info, success
|
|
11
|
-
from nextmv.cli.options import AppIDOption, BatchExperimentIDOption, ProfileOption
|
|
9
|
+
from nextmv.cli.options import AppIDOption, BatchExperimentIDOption, ProfileOption, YesOption
|
|
12
10
|
|
|
13
11
|
# Set up subcommand application.
|
|
14
12
|
app = typer.Typer()
|
|
@@ -18,14 +16,7 @@ app = typer.Typer()
|
|
|
18
16
|
def delete(
|
|
19
17
|
app_id: AppIDOption,
|
|
20
18
|
batch_experiment_id: BatchExperimentIDOption,
|
|
21
|
-
yes:
|
|
22
|
-
bool,
|
|
23
|
-
typer.Option(
|
|
24
|
-
"--yes",
|
|
25
|
-
"-y",
|
|
26
|
-
help="Agree to deletion confirmation prompt. Useful for non-interactive sessions.",
|
|
27
|
-
),
|
|
28
|
-
] = False,
|
|
19
|
+
yes: YesOption = False,
|
|
29
20
|
profile: ProfileOption = None,
|
|
30
21
|
) -> None:
|
|
31
22
|
"""
|
|
@@ -2,13 +2,11 @@
|
|
|
2
2
|
This module defines the cloud ensemble delete command for the Nextmv CLI.
|
|
3
3
|
"""
|
|
4
4
|
|
|
5
|
-
from typing import Annotated
|
|
6
|
-
|
|
7
5
|
import typer
|
|
8
6
|
|
|
9
7
|
from nextmv.cli.configuration.config import build_cloud_app
|
|
10
8
|
from nextmv.cli.message import confirmation, info, success
|
|
11
|
-
from nextmv.cli.options import AppIDOption, EnsembleDefinitionIDOption, ProfileOption
|
|
9
|
+
from nextmv.cli.options import AppIDOption, EnsembleDefinitionIDOption, ProfileOption, YesOption
|
|
12
10
|
|
|
13
11
|
# Set up subcommand application.
|
|
14
12
|
app = typer.Typer()
|
|
@@ -18,14 +16,7 @@ app = typer.Typer()
|
|
|
18
16
|
def delete(
|
|
19
17
|
app_id: AppIDOption,
|
|
20
18
|
ensemble_definition_id: EnsembleDefinitionIDOption,
|
|
21
|
-
yes:
|
|
22
|
-
bool,
|
|
23
|
-
typer.Option(
|
|
24
|
-
"--yes",
|
|
25
|
-
"-y",
|
|
26
|
-
help="Agree to deletion confirmation prompt. Useful for non-interactive sessions.",
|
|
27
|
-
),
|
|
28
|
-
] = False,
|
|
19
|
+
yes: YesOption = False,
|
|
29
20
|
profile: ProfileOption = None,
|
|
30
21
|
) -> None:
|
|
31
22
|
"""
|
|
@@ -146,13 +146,14 @@ def create(
|
|
|
146
146
|
if input_set_id is None:
|
|
147
147
|
input_set_id = safe_id("input-set")
|
|
148
148
|
|
|
149
|
-
|
|
149
|
+
managed_input_list = []
|
|
150
150
|
if managed_inputs is not None:
|
|
151
151
|
for d in json.loads(managed_inputs):
|
|
152
152
|
i = ManagedInput.from_dict(d)
|
|
153
153
|
if i is None:
|
|
154
154
|
error(f"[magenta]{d}[/magenta] is not a valid [yellow]ManagedInput[/yellow]")
|
|
155
|
-
|
|
155
|
+
|
|
156
|
+
managed_input_list.append(i)
|
|
156
157
|
|
|
157
158
|
input_set = cloud_app.new_input_set(
|
|
158
159
|
input_set_id,
|
|
@@ -163,6 +164,6 @@ def create(
|
|
|
163
164
|
start_time=start_time,
|
|
164
165
|
end_time=end_time,
|
|
165
166
|
maximum_runs=maximum_runs,
|
|
166
|
-
inputs=
|
|
167
|
+
inputs=managed_input_list or None,
|
|
167
168
|
)
|
|
168
169
|
print_json(input_set.to_dict())
|
|
@@ -2,13 +2,11 @@
|
|
|
2
2
|
This module defines the cloud input-set delete command for the Nextmv CLI.
|
|
3
3
|
"""
|
|
4
4
|
|
|
5
|
-
from typing import Annotated
|
|
6
|
-
|
|
7
5
|
import typer
|
|
8
6
|
|
|
9
7
|
from nextmv.cli.configuration.config import build_cloud_app
|
|
10
8
|
from nextmv.cli.message import confirmation, info, success
|
|
11
|
-
from nextmv.cli.options import AppIDOption, InputSetIDOption, ProfileOption
|
|
9
|
+
from nextmv.cli.options import AppIDOption, InputSetIDOption, ProfileOption, YesOption
|
|
12
10
|
|
|
13
11
|
# Set up subcommand application.
|
|
14
12
|
app = typer.Typer()
|
|
@@ -18,14 +16,7 @@ app = typer.Typer()
|
|
|
18
16
|
def delete(
|
|
19
17
|
app_id: AppIDOption,
|
|
20
18
|
input_set_id: InputSetIDOption,
|
|
21
|
-
yes:
|
|
22
|
-
bool,
|
|
23
|
-
typer.Option(
|
|
24
|
-
"--yes",
|
|
25
|
-
"-y",
|
|
26
|
-
help="Agree to deletion confirmation prompt. Useful for non-interactive sessions.",
|
|
27
|
-
),
|
|
28
|
-
] = False,
|
|
19
|
+
yes: YesOption = False,
|
|
29
20
|
profile: ProfileOption = None,
|
|
30
21
|
) -> None:
|
|
31
22
|
"""
|
|
@@ -2,13 +2,11 @@
|
|
|
2
2
|
This module defines the cloud instance delete command for the Nextmv CLI.
|
|
3
3
|
"""
|
|
4
4
|
|
|
5
|
-
from typing import Annotated
|
|
6
|
-
|
|
7
5
|
import typer
|
|
8
6
|
|
|
9
7
|
from nextmv.cli.configuration.config import build_cloud_app
|
|
10
8
|
from nextmv.cli.message import confirmation, info, success
|
|
11
|
-
from nextmv.cli.options import AppIDOption, InstanceIDOption, ProfileOption
|
|
9
|
+
from nextmv.cli.options import AppIDOption, InstanceIDOption, ProfileOption, YesOption
|
|
12
10
|
|
|
13
11
|
# Set up subcommand application.
|
|
14
12
|
app = typer.Typer()
|
|
@@ -18,14 +16,7 @@ app = typer.Typer()
|
|
|
18
16
|
def delete(
|
|
19
17
|
app_id: AppIDOption,
|
|
20
18
|
instance_id: InstanceIDOption,
|
|
21
|
-
yes:
|
|
22
|
-
bool,
|
|
23
|
-
typer.Option(
|
|
24
|
-
"--yes",
|
|
25
|
-
"-y",
|
|
26
|
-
help="Agree to deletion confirmation prompt. Useful for non-interactive sessions.",
|
|
27
|
-
),
|
|
28
|
-
] = False,
|
|
19
|
+
yes: YesOption = False,
|
|
29
20
|
profile: ProfileOption = None,
|
|
30
21
|
) -> None:
|
|
31
22
|
"""
|
|
@@ -2,13 +2,11 @@
|
|
|
2
2
|
This module defines the cloud managed-input delete command for the Nextmv CLI.
|
|
3
3
|
"""
|
|
4
4
|
|
|
5
|
-
from typing import Annotated
|
|
6
|
-
|
|
7
5
|
import typer
|
|
8
6
|
|
|
9
7
|
from nextmv.cli.configuration.config import build_cloud_app
|
|
10
8
|
from nextmv.cli.message import confirmation, info, success
|
|
11
|
-
from nextmv.cli.options import AppIDOption, ManagedInputIDOption, ProfileOption
|
|
9
|
+
from nextmv.cli.options import AppIDOption, ManagedInputIDOption, ProfileOption, YesOption
|
|
12
10
|
|
|
13
11
|
# Set up subcommand application.
|
|
14
12
|
app = typer.Typer()
|
|
@@ -18,14 +16,7 @@ app = typer.Typer()
|
|
|
18
16
|
def delete(
|
|
19
17
|
app_id: AppIDOption,
|
|
20
18
|
managed_input_id: ManagedInputIDOption,
|
|
21
|
-
yes:
|
|
22
|
-
bool,
|
|
23
|
-
typer.Option(
|
|
24
|
-
"--yes",
|
|
25
|
-
"-y",
|
|
26
|
-
help="Agree to deletion confirmation prompt. Useful for non-interactive sessions.",
|
|
27
|
-
),
|
|
28
|
-
] = False,
|
|
19
|
+
yes: YesOption = False,
|
|
29
20
|
profile: ProfileOption = None,
|
|
30
21
|
) -> None:
|
|
31
22
|
"""
|
|
@@ -2,13 +2,11 @@
|
|
|
2
2
|
This module defines the cloud marketplace subscription delete command for the Nextmv CLI.
|
|
3
3
|
"""
|
|
4
4
|
|
|
5
|
-
from typing import Annotated
|
|
6
|
-
|
|
7
5
|
import typer
|
|
8
6
|
|
|
9
7
|
from nextmv.cli.configuration.config import build_marketplace_subscription
|
|
10
8
|
from nextmv.cli.message import confirmation, info, success
|
|
11
|
-
from nextmv.cli.options import MarketplaceSubscriptionIDOption, ProfileOption
|
|
9
|
+
from nextmv.cli.options import MarketplaceSubscriptionIDOption, ProfileOption, YesOption
|
|
12
10
|
|
|
13
11
|
# Set up subcommand application.
|
|
14
12
|
app = typer.Typer()
|
|
@@ -17,14 +15,7 @@ app = typer.Typer()
|
|
|
17
15
|
@app.command()
|
|
18
16
|
def delete(
|
|
19
17
|
subscription_id: MarketplaceSubscriptionIDOption,
|
|
20
|
-
yes:
|
|
21
|
-
bool,
|
|
22
|
-
typer.Option(
|
|
23
|
-
"--yes",
|
|
24
|
-
"-y",
|
|
25
|
-
help="Agree to deletion confirmation prompt. Useful for non-interactive sessions.",
|
|
26
|
-
),
|
|
27
|
-
] = False,
|
|
18
|
+
yes: YesOption = False,
|
|
28
19
|
profile: ProfileOption = None,
|
|
29
20
|
) -> None:
|
|
30
21
|
"""
|
|
@@ -6,6 +6,7 @@ import typer
|
|
|
6
6
|
|
|
7
7
|
from nextmv.cli.cloud.run.cancel import app as cancel_app
|
|
8
8
|
from nextmv.cli.cloud.run.create import app as create_app
|
|
9
|
+
from nextmv.cli.cloud.run.delete import app as delete_app
|
|
9
10
|
from nextmv.cli.cloud.run.get import app as get_app
|
|
10
11
|
from nextmv.cli.cloud.run.input import app as input_app
|
|
11
12
|
from nextmv.cli.cloud.run.list import app as list_app
|
|
@@ -17,6 +18,7 @@ from nextmv.cli.cloud.run.track import app as track_app
|
|
|
17
18
|
app = typer.Typer()
|
|
18
19
|
app.add_typer(cancel_app)
|
|
19
20
|
app.add_typer(create_app)
|
|
21
|
+
app.add_typer(delete_app)
|
|
20
22
|
app.add_typer(get_app)
|
|
21
23
|
app.add_typer(input_app)
|
|
22
24
|
app.add_typer(list_app)
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"""
|
|
2
|
+
This module defines the cloud run delete command for the Nextmv CLI.
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
import typer
|
|
6
|
+
|
|
7
|
+
from nextmv.cli.configuration.config import build_cloud_app
|
|
8
|
+
from nextmv.cli.message import confirmation, info, success
|
|
9
|
+
from nextmv.cli.options import AppIDOption, ProfileOption, RunIDOption, YesOption
|
|
10
|
+
|
|
11
|
+
# Set up subcommand application.
|
|
12
|
+
app = typer.Typer()
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
@app.command()
|
|
16
|
+
def delete(
|
|
17
|
+
app_id: AppIDOption,
|
|
18
|
+
run_id: RunIDOption,
|
|
19
|
+
yes: YesOption = False,
|
|
20
|
+
profile: ProfileOption = None,
|
|
21
|
+
) -> None:
|
|
22
|
+
"""
|
|
23
|
+
Deletes a Nextmv Cloud application run.
|
|
24
|
+
|
|
25
|
+
This action is permanent and cannot be undone. Use the --yes
|
|
26
|
+
flag to skip the confirmation prompt.
|
|
27
|
+
|
|
28
|
+
[bold][underline]Examples[/underline][/bold]
|
|
29
|
+
|
|
30
|
+
- Delete the run with ID [magenta]burrow-123[/magenta] belonging to an app with ID [magenta]hare-app[/magenta].
|
|
31
|
+
$ [dim]nextmv cloud run delete --app-id hare-app --run-id burrow-123[/dim]
|
|
32
|
+
|
|
33
|
+
- Delete the run with ID [magenta]burrow-123[/magenta] belonging to an app with ID [magenta]hare-app[/magenta].
|
|
34
|
+
Use the profile named [magenta]hare[/magenta].
|
|
35
|
+
$ [dim]nextmv cloud run delete --app-id hare-app --run-id burrow-123 --profile hare[/dim]
|
|
36
|
+
"""
|
|
37
|
+
|
|
38
|
+
if not yes:
|
|
39
|
+
confirm = confirmation(
|
|
40
|
+
f"Are you sure you want to delete run [magenta]{run_id}[/magenta] from "
|
|
41
|
+
f"application [magenta]{app_id}[/magenta]? This action cannot be undone.",
|
|
42
|
+
)
|
|
43
|
+
|
|
44
|
+
if not confirm:
|
|
45
|
+
info(f"Run [magenta]{run_id}[/magenta] from application [magenta]{app_id}[/magenta] will not be deleted.")
|
|
46
|
+
return
|
|
47
|
+
|
|
48
|
+
cloud_app, _ = build_cloud_app(app_id=app_id, profile=profile)
|
|
49
|
+
cloud_app.delete_run(run_id)
|
|
50
|
+
success(f"Run [magenta]{run_id}[/magenta] from application [magenta]{app_id}[/magenta] deleted successfully.")
|
|
@@ -8,7 +8,7 @@ from typing import Annotated
|
|
|
8
8
|
import typer
|
|
9
9
|
|
|
10
10
|
from nextmv.cli.configuration.config import build_cloud_app
|
|
11
|
-
from nextmv.cli.message import in_progress,
|
|
11
|
+
from nextmv.cli.message import in_progress, print_json, success
|
|
12
12
|
from nextmv.cli.options import AppIDOption, ProfileOption, RunIDOption
|
|
13
13
|
from nextmv.cloud.application import Application
|
|
14
14
|
from nextmv.output import OutputFormat
|
|
@@ -187,13 +187,8 @@ def handle_outputs(
|
|
|
187
187
|
|
|
188
188
|
# At this point, we know that the output is multi-file or csv-archive.
|
|
189
189
|
result_dict = run_result.to_dict()
|
|
190
|
-
if "output" in result_dict
|
|
190
|
+
if "output" in result_dict:
|
|
191
191
|
del result_dict["output"]
|
|
192
|
-
success(f"Run outputs saved to [magenta]{output_dir}[/magenta]. Here is the metadata.")
|
|
193
|
-
else:
|
|
194
|
-
info(
|
|
195
|
-
f"Run is not finalized (status: [magenta]{run_result.metadata.status_v2.value}[/magenta]). "
|
|
196
|
-
"Here is the metadata."
|
|
197
|
-
)
|
|
198
192
|
|
|
193
|
+
success(f"Run outputs saved to [magenta]{output_dir}[/magenta]. Here is the metadata.")
|
|
199
194
|
print_json(result_dict)
|
|
@@ -2,13 +2,11 @@
|
|
|
2
2
|
This module defines the cloud scenario delete command for the Nextmv CLI.
|
|
3
3
|
"""
|
|
4
4
|
|
|
5
|
-
from typing import Annotated
|
|
6
|
-
|
|
7
5
|
import typer
|
|
8
6
|
|
|
9
7
|
from nextmv.cli.configuration.config import build_cloud_app
|
|
10
8
|
from nextmv.cli.message import confirmation, info, success
|
|
11
|
-
from nextmv.cli.options import AppIDOption, ProfileOption, ScenarioTestIDOption
|
|
9
|
+
from nextmv.cli.options import AppIDOption, ProfileOption, ScenarioTestIDOption, YesOption
|
|
12
10
|
|
|
13
11
|
# Set up subcommand application.
|
|
14
12
|
app = typer.Typer()
|
|
@@ -18,14 +16,7 @@ app = typer.Typer()
|
|
|
18
16
|
def delete(
|
|
19
17
|
app_id: AppIDOption,
|
|
20
18
|
scenario_test_id: ScenarioTestIDOption,
|
|
21
|
-
yes:
|
|
22
|
-
bool,
|
|
23
|
-
typer.Option(
|
|
24
|
-
"--yes",
|
|
25
|
-
"-y",
|
|
26
|
-
help="Agree to deletion confirmation prompt. Useful for non-interactive sessions.",
|
|
27
|
-
),
|
|
28
|
-
] = False,
|
|
19
|
+
yes: YesOption = False,
|
|
29
20
|
profile: ProfileOption = None,
|
|
30
21
|
) -> None:
|
|
31
22
|
"""
|
|
@@ -2,13 +2,11 @@
|
|
|
2
2
|
This module defines the cloud secrets delete command for the Nextmv CLI.
|
|
3
3
|
"""
|
|
4
4
|
|
|
5
|
-
from typing import Annotated
|
|
6
|
-
|
|
7
5
|
import typer
|
|
8
6
|
|
|
9
7
|
from nextmv.cli.configuration.config import build_cloud_app
|
|
10
8
|
from nextmv.cli.message import confirmation, info, success
|
|
11
|
-
from nextmv.cli.options import AppIDOption, ProfileOption, SecretsCollectionIDOption
|
|
9
|
+
from nextmv.cli.options import AppIDOption, ProfileOption, SecretsCollectionIDOption, YesOption
|
|
12
10
|
|
|
13
11
|
# Set up subcommand application.
|
|
14
12
|
app = typer.Typer()
|
|
@@ -18,14 +16,7 @@ app = typer.Typer()
|
|
|
18
16
|
def delete(
|
|
19
17
|
app_id: AppIDOption,
|
|
20
18
|
secrets_collection_id: SecretsCollectionIDOption,
|
|
21
|
-
yes:
|
|
22
|
-
bool,
|
|
23
|
-
typer.Option(
|
|
24
|
-
"--yes",
|
|
25
|
-
"-y",
|
|
26
|
-
help="Agree to deletion confirmation prompt. Useful for non-interactive sessions.",
|
|
27
|
-
),
|
|
28
|
-
] = False,
|
|
19
|
+
yes: YesOption = False,
|
|
29
20
|
profile: ProfileOption = None,
|
|
30
21
|
) -> None:
|
|
31
22
|
"""
|
|
@@ -2,13 +2,11 @@
|
|
|
2
2
|
This module defines the cloud shadow delete command for the Nextmv CLI.
|
|
3
3
|
"""
|
|
4
4
|
|
|
5
|
-
from typing import Annotated
|
|
6
|
-
|
|
7
5
|
import typer
|
|
8
6
|
|
|
9
7
|
from nextmv.cli.configuration.config import build_cloud_app
|
|
10
8
|
from nextmv.cli.message import confirmation, info, success
|
|
11
|
-
from nextmv.cli.options import AppIDOption, ProfileOption, ShadowTestIDOption
|
|
9
|
+
from nextmv.cli.options import AppIDOption, ProfileOption, ShadowTestIDOption, YesOption
|
|
12
10
|
|
|
13
11
|
# Set up subcommand application.
|
|
14
12
|
app = typer.Typer()
|
|
@@ -18,14 +16,7 @@ app = typer.Typer()
|
|
|
18
16
|
def delete(
|
|
19
17
|
app_id: AppIDOption,
|
|
20
18
|
shadow_test_id: ShadowTestIDOption,
|
|
21
|
-
yes:
|
|
22
|
-
bool,
|
|
23
|
-
typer.Option(
|
|
24
|
-
"--yes",
|
|
25
|
-
"-y",
|
|
26
|
-
help="Agree to deletion confirmation prompt. Useful for non-interactive sessions.",
|
|
27
|
-
),
|
|
28
|
-
] = False,
|
|
19
|
+
yes: YesOption = False,
|
|
29
20
|
profile: ProfileOption = None,
|
|
30
21
|
) -> None:
|
|
31
22
|
"""
|
|
@@ -2,13 +2,11 @@
|
|
|
2
2
|
This module defines the cloud sso delete command for the Nextmv CLI.
|
|
3
3
|
"""
|
|
4
4
|
|
|
5
|
-
from typing import Annotated
|
|
6
|
-
|
|
7
5
|
import typer
|
|
8
6
|
|
|
9
7
|
from nextmv.cli.configuration.config import build_sso_config
|
|
10
8
|
from nextmv.cli.message import confirmation, info, success
|
|
11
|
-
from nextmv.cli.options import ProfileOption
|
|
9
|
+
from nextmv.cli.options import ProfileOption, YesOption
|
|
12
10
|
|
|
13
11
|
# Set up subcommand application.
|
|
14
12
|
app = typer.Typer()
|
|
@@ -16,14 +14,7 @@ app = typer.Typer()
|
|
|
16
14
|
|
|
17
15
|
@app.command()
|
|
18
16
|
def delete(
|
|
19
|
-
yes:
|
|
20
|
-
bool,
|
|
21
|
-
typer.Option(
|
|
22
|
-
"--yes",
|
|
23
|
-
"-y",
|
|
24
|
-
help="Agree to deletion confirmation prompt. Useful for non-interactive sessions.",
|
|
25
|
-
),
|
|
26
|
-
] = False,
|
|
17
|
+
yes: YesOption = False,
|
|
27
18
|
profile: ProfileOption = None,
|
|
28
19
|
) -> None:
|
|
29
20
|
"""
|
|
@@ -8,7 +8,7 @@ import typer
|
|
|
8
8
|
|
|
9
9
|
from nextmv.cli.configuration.config import build_sso_config
|
|
10
10
|
from nextmv.cli.message import confirmation, in_progress, info, success
|
|
11
|
-
from nextmv.cli.options import ProfileOption
|
|
11
|
+
from nextmv.cli.options import ProfileOption, YesOption
|
|
12
12
|
|
|
13
13
|
# Set up subcommand application.
|
|
14
14
|
app = typer.Typer()
|
|
@@ -25,14 +25,7 @@ def delete(
|
|
|
25
25
|
metavar="DOMAIN",
|
|
26
26
|
),
|
|
27
27
|
],
|
|
28
|
-
yes:
|
|
29
|
-
bool,
|
|
30
|
-
typer.Option(
|
|
31
|
-
"--yes",
|
|
32
|
-
"-y",
|
|
33
|
-
help="Agree to deletion confirmation prompt. Useful for non-interactive sessions.",
|
|
34
|
-
),
|
|
35
|
-
] = False,
|
|
28
|
+
yes: YesOption = False,
|
|
36
29
|
profile: ProfileOption = None,
|
|
37
30
|
) -> None:
|
|
38
31
|
"""
|
|
@@ -2,13 +2,11 @@
|
|
|
2
2
|
This module defines the cloud switchback delete command for the Nextmv CLI.
|
|
3
3
|
"""
|
|
4
4
|
|
|
5
|
-
from typing import Annotated
|
|
6
|
-
|
|
7
5
|
import typer
|
|
8
6
|
|
|
9
7
|
from nextmv.cli.configuration.config import build_cloud_app
|
|
10
8
|
from nextmv.cli.message import confirmation, info, success
|
|
11
|
-
from nextmv.cli.options import AppIDOption, ProfileOption, SwitchbackTestIDOption
|
|
9
|
+
from nextmv.cli.options import AppIDOption, ProfileOption, SwitchbackTestIDOption, YesOption
|
|
12
10
|
|
|
13
11
|
# Set up subcommand application.
|
|
14
12
|
app = typer.Typer()
|
|
@@ -18,14 +16,7 @@ app = typer.Typer()
|
|
|
18
16
|
def delete(
|
|
19
17
|
app_id: AppIDOption,
|
|
20
18
|
switchback_test_id: SwitchbackTestIDOption,
|
|
21
|
-
yes:
|
|
22
|
-
bool,
|
|
23
|
-
typer.Option(
|
|
24
|
-
"--yes",
|
|
25
|
-
"-y",
|
|
26
|
-
help="Agree to deletion confirmation prompt. Useful for non-interactive sessions.",
|
|
27
|
-
),
|
|
28
|
-
] = False,
|
|
19
|
+
yes: YesOption = False,
|
|
29
20
|
profile: ProfileOption = None,
|
|
30
21
|
) -> None:
|
|
31
22
|
"""
|
|
@@ -2,13 +2,11 @@
|
|
|
2
2
|
This module defines the cloud version delete command for the Nextmv CLI.
|
|
3
3
|
"""
|
|
4
4
|
|
|
5
|
-
from typing import Annotated
|
|
6
|
-
|
|
7
5
|
import typer
|
|
8
6
|
|
|
9
7
|
from nextmv.cli.configuration.config import build_cloud_app
|
|
10
8
|
from nextmv.cli.message import confirmation, info, success
|
|
11
|
-
from nextmv.cli.options import AppIDOption, ProfileOption, VersionIDOption
|
|
9
|
+
from nextmv.cli.options import AppIDOption, ProfileOption, VersionIDOption, YesOption
|
|
12
10
|
|
|
13
11
|
# Set up subcommand application.
|
|
14
12
|
app = typer.Typer()
|
|
@@ -18,14 +16,7 @@ app = typer.Typer()
|
|
|
18
16
|
def delete(
|
|
19
17
|
app_id: AppIDOption,
|
|
20
18
|
version_id: VersionIDOption,
|
|
21
|
-
yes:
|
|
22
|
-
bool,
|
|
23
|
-
typer.Option(
|
|
24
|
-
"--yes",
|
|
25
|
-
"-y",
|
|
26
|
-
help="Agree to deletion confirmation prompt. Useful for non-interactive sessions.",
|
|
27
|
-
),
|
|
28
|
-
] = False,
|
|
19
|
+
yes: YesOption = False,
|
|
29
20
|
profile: ProfileOption = None,
|
|
30
21
|
) -> None:
|
|
31
22
|
"""
|
|
@@ -8,6 +8,7 @@ import typer
|
|
|
8
8
|
|
|
9
9
|
from nextmv.cli.configuration.config import load_config, save_config
|
|
10
10
|
from nextmv.cli.message import confirmation, error, info, success
|
|
11
|
+
from nextmv.cli.options import YesOption
|
|
11
12
|
|
|
12
13
|
# Set up subcommand application.
|
|
13
14
|
app = typer.Typer()
|
|
@@ -25,14 +26,7 @@ def delete(
|
|
|
25
26
|
metavar="PROFILE_NAME",
|
|
26
27
|
),
|
|
27
28
|
],
|
|
28
|
-
yes:
|
|
29
|
-
bool,
|
|
30
|
-
typer.Option(
|
|
31
|
-
"--yes",
|
|
32
|
-
"-y",
|
|
33
|
-
help="Agree to deletion confirmation prompt. Useful for non-interactive sessions.",
|
|
34
|
-
),
|
|
35
|
-
] = False,
|
|
29
|
+
yes: YesOption = False,
|
|
36
30
|
) -> None:
|
|
37
31
|
"""
|
|
38
32
|
Delete a profile from the configuration.
|