orb-py 1.3.0__tar.gz → 2.0.0__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.
- {orb_py-1.3.0/src/orb_py.egg-info → orb_py-2.0.0}/PKG-INFO +11 -8
- {orb_py-1.3.0 → orb_py-2.0.0}/README.md +8 -4
- {orb_py-1.3.0 → orb_py-2.0.0}/config/aws_templates.json +20 -100
- {orb_py-1.3.0 → orb_py-2.0.0}/config/default_config.json +12 -156
- {orb_py-1.3.0 → orb_py-2.0.0}/pyproject.toml +56 -46
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/_package.py +5 -5
- orb_py-2.0.0/src/orb/api/dependencies.py +153 -0
- orb_py-2.0.0/src/orb/api/routers/machines.py +168 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/api/routers/requests.py +59 -88
- orb_py-2.0.0/src/orb/api/routers/templates.py +288 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/api/server.py +2 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/commands/request_creation_handlers.py +11 -6
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/commands/request_lifecycle_handlers.py +2 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/commands/system_handlers.py +1 -0
- orb_py-2.0.0/src/orb/application/commands/template_handlers.py +238 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/dto/base.py +12 -6
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/dto/commands.py +6 -3
- orb_py-2.0.0/src/orb/application/dto/interface_response.py +9 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/dto/queries.py +5 -1
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/dto/system.py +82 -1
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/events/base/event_handler.py +1 -1
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/factories/request_dto_factory.py +15 -3
- orb_py-2.0.0/src/orb/application/interfaces/command_query.py +18 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/ports/cache_service_port.py +1 -1
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/ports/scheduler_port.py +29 -1
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/queries/machine_query_handlers.py +9 -5
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/queries/request_query_handlers.py +8 -8
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/queries/storage.py +1 -1
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/queries/storage_handlers.py +15 -1
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/queries/system.py +10 -2
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/queries/system_handlers.py +234 -82
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/queries/template_query_handlers.py +7 -1
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/request/dto.py +16 -10
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/services/machine_sync_service.py +21 -2
- orb_py-2.0.0/src/orb/application/services/orchestration/__init__.py +5 -0
- orb_py-2.0.0/src/orb/application/services/orchestration/acquire_machines.py +95 -0
- orb_py-2.0.0/src/orb/application/services/orchestration/base.py +21 -0
- orb_py-2.0.0/src/orb/application/services/orchestration/cancel_request.py +44 -0
- orb_py-2.0.0/src/orb/application/services/orchestration/create_template.py +42 -0
- orb_py-2.0.0/src/orb/application/services/orchestration/delete_template.py +39 -0
- orb_py-2.0.0/src/orb/application/services/orchestration/dtos.py +345 -0
- orb_py-2.0.0/src/orb/application/services/orchestration/get_machine.py +32 -0
- orb_py-2.0.0/src/orb/application/services/orchestration/get_provider_config.py +33 -0
- orb_py-2.0.0/src/orb/application/services/orchestration/get_provider_health.py +31 -0
- orb_py-2.0.0/src/orb/application/services/orchestration/get_provider_metrics.py +40 -0
- orb_py-2.0.0/src/orb/application/services/orchestration/get_request_status.py +55 -0
- orb_py-2.0.0/src/orb/application/services/orchestration/get_scheduler_config.py +29 -0
- orb_py-2.0.0/src/orb/application/services/orchestration/get_storage_config.py +28 -0
- orb_py-2.0.0/src/orb/application/services/orchestration/get_template.py +39 -0
- orb_py-2.0.0/src/orb/application/services/orchestration/list_machines.py +41 -0
- orb_py-2.0.0/src/orb/application/services/orchestration/list_providers.py +30 -0
- orb_py-2.0.0/src/orb/application/services/orchestration/list_requests.py +51 -0
- orb_py-2.0.0/src/orb/application/services/orchestration/list_return_requests.py +65 -0
- orb_py-2.0.0/src/orb/application/services/orchestration/list_scheduler_strategies.py +33 -0
- orb_py-2.0.0/src/orb/application/services/orchestration/list_storage_strategies.py +33 -0
- orb_py-2.0.0/src/orb/application/services/orchestration/list_templates.py +39 -0
- orb_py-2.0.0/src/orb/application/services/orchestration/refresh_templates.py +39 -0
- orb_py-2.0.0/src/orb/application/services/orchestration/return_machines.py +116 -0
- orb_py-2.0.0/src/orb/application/services/orchestration/start_machines.py +83 -0
- orb_py-2.0.0/src/orb/application/services/orchestration/stop_machines.py +84 -0
- orb_py-2.0.0/src/orb/application/services/orchestration/update_template.py +40 -0
- orb_py-2.0.0/src/orb/application/services/orchestration/validate_template.py +47 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/services/provider_validation_service.py +1 -1
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/services/request_status_service.py +14 -6
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/services/template_defaults_service.py +9 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/services/template_generation_service.py +2 -2
- orb_py-1.3.0/src/orb/bootstrap.py → orb_py-2.0.0/src/orb/bootstrap/__init__.py +24 -7
- orb_py-2.0.0/src/orb/bootstrap/orchestrator_registry.py +274 -0
- {orb_py-1.3.0/src/orb/infrastructure/di → orb_py-2.0.0/src/orb/bootstrap}/port_registrations.py +9 -0
- orb_py-2.0.0/src/orb/bootstrap/server_services.py +198 -0
- {orb_py-1.3.0/src/orb/infrastructure/di → orb_py-2.0.0/src/orb/bootstrap}/services.py +18 -10
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/cli/args.py +72 -23
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/cli/args_extractor.py +1 -1
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/cli/factories/cli_command_factory_orchestrator.py +12 -6
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/cli/factories/provider_command_factory.py +14 -17
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/cli/factories/storage_command_factory.py +2 -2
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/cli/factories/system_command_factory.py +12 -3
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/cli/registry.py +32 -13
- orb_py-2.0.0/src/orb/cli/response_formatter.py +263 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/cli/router.py +15 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/config/__init__.py +0 -2
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/config/constants.py +0 -13
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/config/default_config.json +13 -157
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/config/loader.py +42 -6
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/config/schemas/__init__.py +0 -4
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/config/schemas/app_schema.py +0 -20
- orb_py-2.0.0/src/orb/config/schemas/cleanup_schema.py +8 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/config/schemas/common_schema.py +0 -29
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/config/schemas/metrics_schema.py +2 -9
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/config/schemas/performance_schema.py +0 -83
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/config/schemas/provider_strategy_schema.py +0 -4
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/config/schemas/storage_schema.py +3 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/config/schemas/template_schema.py +9 -1
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/operations.py +2 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/ports/configuration_port.py +25 -5
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/utils.py +2 -2
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/machine/machine_metadata.py +1 -1
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/services/generic_filter_service.py +1 -1
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/template/template_aggregate.py +0 -12
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/adapters/configuration_adapter.py +34 -8
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/adapters/template_configuration_adapter.py +1 -1
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/di/__init__.py +0 -2
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/di/buses.py +2 -2
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/di/container.py +20 -2
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/error/exception_handler.py +21 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/error/http_response_handler.py +12 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/logging/logger.py +4 -2
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/scheduler/base/field_mapper.py +2 -3
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/scheduler/base/strategy.py +49 -1
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/scheduler/default/default_strategy.py +10 -1
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/scheduler/hostfactory/hostfactory_strategy.py +38 -11
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/scheduler/hostfactory/response_formatter.py +27 -7
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/scheduler/registry.py +22 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/services/machine_filter_service.py +1 -1
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/storage/base/strategy.py +4 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/storage/components/file_manager.py +37 -4
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/storage/components/lock_manager.py +3 -3
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/storage/components/sql_connection_manager.py +13 -1
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/storage/json/registration.py +4 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/storage/json/strategy.py +5 -1
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/storage/json/unit_of_work.py +10 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/storage/sql/registration.py +11 -2
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/template/configuration_manager.py +4 -4
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/template/services/template_storage_service.py +64 -25
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/utilities/__init__.py +0 -2
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/utilities/common/string_utils.py +2 -2
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/utilities/factories/__init__.py +0 -4
- orb_py-2.0.0/src/orb/interface/config_command_handlers.py +81 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/interface/health_command_handler.py +5 -10
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/interface/infrastructure_command_handler.py +10 -13
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/interface/init_command_handler.py +14 -5
- orb_py-2.0.0/src/orb/interface/machine_command_handlers.py +268 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/interface/mcp/server/core.py +130 -31
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/interface/mcp_command_handlers.py +35 -23
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/interface/provider_config_handler.py +120 -113
- orb_py-2.0.0/src/orb/interface/request_command_handlers.py +297 -0
- orb_py-2.0.0/src/orb/interface/response_formatting_service.py +108 -0
- orb_py-2.0.0/src/orb/interface/scheduler_command_handlers.py +88 -0
- orb_py-2.0.0/src/orb/interface/storage_command_handlers.py +161 -0
- orb_py-2.0.0/src/orb/interface/system_command_handlers.py +180 -0
- orb_py-2.0.0/src/orb/interface/template_command_handlers.py +513 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/interface/templates_generate_handler.py +2 -6
- orb_py-2.0.0/src/orb/providers/aws/config/aws_defaults.json +143 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/configuration/__init__.py +7 -1
- orb_py-2.0.0/src/orb/providers/aws/configuration/batch_sizes_config.py +55 -0
- orb_py-1.3.0/src/orb/config/schemas/cleanup_schema.py → orb_py-2.0.0/src/orb/providers/aws/configuration/cleanup_config.py +1 -8
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/configuration/config.py +14 -0
- orb_py-2.0.0/src/orb/providers/aws/configuration/naming_config.py +67 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/configuration/validator.py +23 -39
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/domain/template/aws_template_aggregate.py +9 -3
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/infrastructure/adapters/machine_adapter.py +81 -21
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/infrastructure/aws_client.py +35 -39
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/infrastructure/handlers/base_handler.py +31 -4
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/infrastructure/handlers/ec2_fleet/handler.py +7 -31
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/infrastructure/handlers/shared/fleet_grouping_mixin.py +9 -9
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/infrastructure/instrumentation/botocore_metrics.py +1 -3
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/infrastructure/launch_template/manager.py +1 -1
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/registration.py +6 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/storage/registration.py +8 -3
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/strategy/aws_provider_strategy.py +28 -12
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/base/strategy/base_provider_strategy.py +4 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/registry/provider_registry.py +29 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/registry/types.py +2 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/sdk/__init__.py +6 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/sdk/client.py +471 -54
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/sdk/config.py +1 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/sdk/discovery.py +38 -6
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/sdk/exceptions.py +27 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/sdk/protocols.py +27 -5
- {orb_py-1.3.0 → orb_py-2.0.0/src/orb_py.egg-info}/PKG-INFO +11 -8
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb_py.egg-info/SOURCES.txt +48 -21
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb_py.egg-info/requires.txt +0 -1
- orb_py-1.3.0/src/orb/api/dependencies.py +0 -103
- orb_py-1.3.0/src/orb/api/handlers/__init__.py +0 -7
- orb_py-1.3.0/src/orb/api/handlers/get_available_templates_handler.py +0 -146
- orb_py-1.3.0/src/orb/api/handlers/get_request_status_handler.py +0 -305
- orb_py-1.3.0/src/orb/api/handlers/get_return_requests_handler.py +0 -370
- orb_py-1.3.0/src/orb/api/handlers/request_machines_handler.py +0 -160
- orb_py-1.3.0/src/orb/api/handlers/request_return_machines_handler.py +0 -276
- orb_py-1.3.0/src/orb/api/routers/machines.py +0 -131
- orb_py-1.3.0/src/orb/api/routers/templates.py +0 -289
- orb_py-1.3.0/src/orb/application/base/infrastructure_handlers.py +0 -336
- orb_py-1.3.0/src/orb/application/commands/template_handlers.py +0 -311
- orb_py-1.3.0/src/orb/application/interfaces/command_query.py +0 -41
- orb_py-1.3.0/src/orb/cli/response_formatter.py +0 -461
- orb_py-1.3.0/src/orb/infrastructure/di/server_services.py +0 -189
- orb_py-1.3.0/src/orb/infrastructure/storage/repository_migrator.py +0 -411
- orb_py-1.3.0/src/orb/infrastructure/utilities/factories/api_handler_factory.py +0 -196
- orb_py-1.3.0/src/orb/interface/machine_command_handlers.py +0 -318
- orb_py-1.3.0/src/orb/interface/request_command_handlers.py +0 -535
- orb_py-1.3.0/src/orb/interface/scheduler_command_handlers.py +0 -87
- orb_py-1.3.0/src/orb/interface/storage_command_handlers.py +0 -145
- orb_py-1.3.0/src/orb/interface/system_command_handlers.py +0 -222
- orb_py-1.3.0/src/orb/interface/template_command_handlers.py +0 -571
- {orb_py-1.3.0 → orb_py-2.0.0}/LICENSE +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/MANIFEST.in +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/config/config.example.json +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/config/specs/aws/examples/asg-basic.json +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/config/specs/aws/examples/complete-default.json +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/config/specs/aws/examples/ec2fleet-attribute-based.json +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/config/specs/aws/examples/ec2fleet-capacity-optimized-prioritized.json +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/config/specs/aws/examples/ec2fleet-hpc-spot-diversified.json +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/config/specs/aws/examples/ec2fleet-price-capacity-optimized.json +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/config/specs/aws/examples/gpu-compute-cluster.json +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/config/specs/aws/examples/launch-template-advanced.json +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/config/specs/aws/examples/launch-template-basic.json +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/config/specs/aws/examples/launch-template-complete-default.json +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/config/specs/aws/examples/multi-tier-architecture.json +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/config/specs/aws/examples/runinstances-basic.json +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/config/specs/aws/examples/spotfleet-price-capacity-optimized.json +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/setup.cfg +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/__main__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/api/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/api/documentation/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/api/documentation/examples.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/api/documentation/openapi_config.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/api/documentation/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/api/documentation/security_schemes.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/api/middleware/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/api/middleware/auth_middleware.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/api/middleware/logging_middleware.py +0 -0
- {orb_py-1.3.0/src/orb/api/handlers → orb_py-2.0.0/src/orb/api/middleware}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/api/models/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/api/models/base.py +0 -0
- {orb_py-1.3.0/src/orb/api/middleware → orb_py-2.0.0/src/orb/api/models}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/api/models/requests.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/api/models/responses.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/api/models/templates.py +0 -0
- {orb_py-1.3.0/src/orb/api/models → orb_py-2.0.0/src/orb/api}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/api/routers/__init__.py +0 -0
- {orb_py-1.3.0/src/orb/api → orb_py-2.0.0/src/orb/api/routers}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/api/validation.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/base/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/base/command_handler.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/base/commands.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/base/event_handlers.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/base/handlers.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/base/provider_handlers.py +0 -0
- {orb_py-1.3.0/src/orb/api/routers → orb_py-2.0.0/src/orb/application/base}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/base/queries.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/commands/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/commands/cleanup_handlers.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/commands/machine_handlers.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/commands/provider_handlers.py +0 -0
- {orb_py-1.3.0/src/orb/application/base → orb_py-2.0.0/src/orb/application/commands}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/commands/request_handlers.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/commands/request_sync_handlers.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/commands/system.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/decorators.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/dto/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/dto/bulk_queries.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/dto/bulk_responses.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/dto/paginated_responses.py +0 -0
- {orb_py-1.3.0/src/orb/application/commands → orb_py-2.0.0/src/orb/application/dto}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/dto/responses.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/dto/template_generation_dto.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/events/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/events/base/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/events/base/action_event_handler.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/events/base/logging_event_handler.py +0 -0
- {orb_py-1.3.0/src/orb/application/dto → orb_py-2.0.0/src/orb/application/events/base}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/events/bus/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/events/bus/event_bus.py +0 -0
- {orb_py-1.3.0/src/orb/application/events/base → orb_py-2.0.0/src/orb/application/events/bus}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/events/decorators.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/events/handlers/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/events/handlers/infrastructure_handlers.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/events/handlers/machine_handlers.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/events/handlers/metrics_event_handler.py +0 -0
- {orb_py-1.3.0/src/orb/application/events/bus → orb_py-2.0.0/src/orb/application/events/handlers}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/events/handlers/request_handlers.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/events/handlers/system_handlers.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/events/handlers/template_handlers.py +0 -0
- {orb_py-1.3.0/src/orb/application/events/handlers → orb_py-2.0.0/src/orb/application/events}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/factories/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/interfaces/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/interfaces/command_handler.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/interfaces/event_handler.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/interfaces/infrastructure_handler.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/interfaces/provider_handler.py +0 -0
- {orb_py-1.3.0/src/orb/application/events → orb_py-2.0.0/src/orb/application/interfaces}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/machine/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/machine/commands.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/machine/dto.py +0 -0
- {orb_py-1.3.0/src/orb/application/interfaces → orb_py-2.0.0/src/orb/application/machine}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/machine/queries.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/ports/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/ports/command_bus_port.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/ports/error_response_port.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/ports/query_bus_port.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/ports/registry_port.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/ports/template_dto_port.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/provider/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/provider/commands.py +0 -0
- {orb_py-1.3.0/src/orb/application/machine → orb_py-2.0.0/src/orb/application/provider}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/provider/queries.py +0 -0
- {orb_py-1.3.0/src/orb/application/provider → orb_py-2.0.0/src/orb/application}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/queries/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/queries/bulk_handlers.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/queries/cleanup_query_handlers.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/queries/provider_handlers.py +0 -0
- {orb_py-1.3.0/src/orb/application → orb_py-2.0.0/src/orb/application/queries}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/queries/scheduler.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/queries/scheduler_handlers.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/queries/specialized_handlers.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/request/__init__.py +0 -0
- {orb_py-1.3.0/src/orb/application/queries → orb_py-2.0.0/src/orb/application/request}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/request/queries.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/services/base_query_service.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/services/deprovisioning_orchestrator.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/services/event_publishing_service.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/services/machine_grouping_service.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/services/native_spec_service.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/services/provider_name_service.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/services/provider_registry_service.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/services/provisioning_orchestration_service.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/services/request_creation_service.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/services/request_query_service.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/services/request_status_management_service.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/services/scheduler_registry_service.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/services/storage_registry_service.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/services/template_validation_service.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/template/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/template/commands.py +0 -0
- {orb_py-1.3.0/src/orb/application/request → orb_py-2.0.0/src/orb/application/template}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/value_objects/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/application/value_objects/batching_policy.py +0 -0
- {orb_py-1.3.0/src/orb/infrastructure/di → orb_py-2.0.0/src/orb/bootstrap}/core_services.py +0 -0
- {orb_py-1.3.0/src/orb/infrastructure/di → orb_py-2.0.0/src/orb/bootstrap}/domain_services.py +0 -0
- {orb_py-1.3.0/src/orb/infrastructure/di → orb_py-2.0.0/src/orb/bootstrap}/infrastructure_services.py +0 -0
- {orb_py-1.3.0/src/orb/infrastructure/di → orb_py-2.0.0/src/orb/bootstrap}/monitoring_services.py +0 -0
- {orb_py-1.3.0/src/orb/infrastructure/di → orb_py-2.0.0/src/orb/bootstrap}/provider_services.py +0 -0
- {orb_py-1.3.0/src/orb/infrastructure/di → orb_py-2.0.0/src/orb/bootstrap}/registry_services.py +0 -0
- {orb_py-1.3.0/src/orb/infrastructure/di → orb_py-2.0.0/src/orb/bootstrap}/storage_services.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/cli/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/cli/completion.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/cli/console.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/cli/factories/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/cli/factories/machine_command_factory.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/cli/factories/request_command_factory.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/cli/factories/scheduler_command_factory.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/cli/factories/template_command_factory.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/cli/factories/utility_command_factory.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/cli/field_mapping.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/cli/formatters.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/cli/help_utils.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/cli/main.py +0 -0
- {orb_py-1.3.0/src/orb/application/template → orb_py-2.0.0/src/orb/cli}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/config/installation_detector.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/config/manager.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/config/managers/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/config/managers/cache_manager.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/config/managers/configuration_manager.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/config/managers/path_resolver.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/config/managers/provider_manager.py +0 -0
- {orb_py-1.3.0/src/orb/cli → orb_py-2.0.0/src/orb/config/managers}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/config/managers/type_converter.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/config/platform_dirs.py +0 -0
- {orb_py-1.3.0/src/orb/config/managers → orb_py-2.0.0/src/orb/config}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/config/schemas/base_config.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/config/schemas/logging_schema.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/config/schemas/native_spec_schema.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/config/schemas/provider_settings_registry.py +0 -0
- {orb_py-1.3.0/src/orb/config → orb_py-2.0.0/src/orb/config/schemas}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/config/schemas/scheduler_schema.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/config/schemas/server_schema.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/config/services/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/config/services/config_loader_service.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/config/services/path_resolution_service.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/config/utils/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/config/utils/env_expansion.py +0 -0
- {orb_py-1.3.0/src/orb/config/schemas → orb_py-2.0.0/src/orb/config/utils}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/config/validators/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/config/validators/config_validator.py +0 -0
- {orb_py-1.3.0/src/orb/config/utils → orb_py-2.0.0/src/orb/config/validators}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/configuration_service.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/contracts/template_contract.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/decorators.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/dependency_injection.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/di_contracts.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/domain_exceptions.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/domain_interfaces.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/entity.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/entity_pure.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/error.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/events/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/events/base_events.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/events/base_events_pure.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/events/domain_events.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/events/provider_events.py +0 -0
- {orb_py-1.3.0/src/orb/config/validators → orb_py-2.0.0/src/orb/domain/base/events}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/exceptions.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/ports/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/ports/console_port.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/ports/container_port.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/ports/error_handling_port.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/ports/event_publisher_port.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/ports/health_check_port.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/ports/logging_port.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/ports/path_resolution_port.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/ports/provider_cli_spec_port.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/ports/provider_config_port.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/ports/provider_discovery_port.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/ports/provider_monitoring_port.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/ports/provider_name_port.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/ports/provider_port.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/ports/provider_provisioning_port.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/ports/provider_registry_port.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/ports/provider_selection_port.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/ports/provider_template_port.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/ports/provider_validation_port.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/ports/provisioning_orchestration_port.py +0 -0
- {orb_py-1.3.0/src/orb/domain/base/events → orb_py-2.0.0/src/orb/domain/base/ports}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/ports/request_creation_port.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/ports/request_status_management_port.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/ports/spec_rendering_port.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/ports/storage_lifecycle_port.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/ports/storage_port.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/ports/storage_reader_port.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/ports/storage_writer_port.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/ports/template_adapter_port.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/ports/template_configuration_port.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/ports/template_example_generator_port.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/provider_interfaces.py +0 -0
- {orb_py-1.3.0/src/orb/domain/base/ports → orb_py-2.0.0/src/orb/domain/base}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/results.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/value_objects.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/base/value_objects_pure.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/constants.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/exceptions/image_resolution_error.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/machine/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/machine/aggregate.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/machine/exceptions.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/machine/machine_identifiers.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/machine/machine_status.py +0 -0
- {orb_py-1.3.0/src/orb/domain/base → orb_py-2.0.0/src/orb/domain/machine}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/machine/repository.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/machine/value_objects.py +0 -0
- {orb_py-1.3.0/src/orb/domain/machine → orb_py-2.0.0/src/orb/domain}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/request/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/request/aggregate.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/request/exceptions.py +0 -0
- {orb_py-1.3.0/src/orb/domain → orb_py-2.0.0/src/orb/domain/request}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/request/repository.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/request/request_identifiers.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/request/request_metadata.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/request/request_types.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/request/value_objects.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/services/filter_service.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/services/image_cache.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/services/image_resolution_service.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/services/template_validation_domain_service.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/services/timestamp_service.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/template/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/template/exceptions.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/template/extensions.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/template/factory.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/template/image_resolver.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/template/ports/template_defaults_port.py +0 -0
- {orb_py-1.3.0/src/orb/domain/request → orb_py-2.0.0/src/orb/domain/template}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/template/repository.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/domain/template/value_objects.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/adapters/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/adapters/cache_adapter.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/adapters/console_adapter.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/adapters/container_adapter.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/adapters/error_handling_adapter.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/adapters/factories/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/adapters/factories/container_adapter_factory.py +0 -0
- {orb_py-1.3.0/src/orb/domain/template → orb_py-2.0.0/src/orb/infrastructure/adapters/factories}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/adapters/logging_adapter.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/adapters/null_console_adapter.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/adapters/path_resolution_adapter.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/adapters/ports/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/adapters/ports/auth/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/adapters/ports/auth/auth_port.py +0 -0
- {orb_py-1.3.0/src/orb/infrastructure/adapters/factories → orb_py-2.0.0/src/orb/infrastructure/adapters/ports/auth}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/adapters/ports/auth/token_port.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/adapters/ports/auth/user_port.py +0 -0
- {orb_py-1.3.0/src/orb/infrastructure/adapters/ports/auth → orb_py-2.0.0/src/orb/infrastructure/adapters/ports}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/adapters/ports/request_adapter_port.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/adapters/ports/resource_provisioning_port.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/adapters/provider_discovery_adapter.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/adapters/provider_selection_adapter.py +0 -0
- {orb_py-1.3.0/src/orb/infrastructure/adapters/ports → orb_py-2.0.0/src/orb/infrastructure/adapters}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/adapters/storage_adapter.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/auth/__init__.py +0 -0
- {orb_py-1.3.0/src/orb/infrastructure/adapters → orb_py-2.0.0/src/orb/infrastructure/auth}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/auth/registry.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/auth/strategy/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/auth/strategy/bearer_token_strategy.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/auth/strategy/bearer_token_strategy_enhanced.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/auth/strategy/no_auth_strategy.py +0 -0
- {orb_py-1.3.0/src/orb/infrastructure/auth → orb_py-2.0.0/src/orb/infrastructure/auth/strategy}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/auth/token_blacklist/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/auth/token_blacklist/blacklist_port.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/auth/token_blacklist/in_memory_blacklist.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/auth/token_blacklist/redis_blacklist.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/caching/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/caching/ami_cache_service.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/caching/in_memory_cache_service.py +0 -0
- {orb_py-1.3.0/src/orb/infrastructure/auth/strategy → orb_py-2.0.0/src/orb/infrastructure/caching}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/caching/request_cache_service.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/constants.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/di/components/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/di/components/cqrs_registry.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/di/components/dependency_resolver.py +0 -0
- {orb_py-1.3.0/src/orb/infrastructure/caching → orb_py-2.0.0/src/orb/infrastructure/di/components}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/di/components/service_registry.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/di/decorators.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/di/exceptions.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/di/handler_discovery.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/di/lazy_config.py +0 -0
- {orb_py-1.3.0/src/orb/infrastructure/di/components → orb_py-2.0.0/src/orb/infrastructure/di}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/error/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/error/categories.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/error/context.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/error/decorators.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/error/error_middleware.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/error/exception_type_mapper.py +0 -0
- {orb_py-1.3.0/src/orb/infrastructure/di → orb_py-2.0.0/src/orb/infrastructure/error}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/error/responses.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/error/utilities.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/events/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/events/infrastructure_events.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/events/publisher.py +0 -0
- {orb_py-1.3.0/src/orb/infrastructure/error → orb_py-2.0.0/src/orb/infrastructure/events}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/events/storage_events.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/events/system_events.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/handlers/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/handlers/base/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/handlers/base/base_handler.py +0 -0
- {orb_py-1.3.0/src/orb/infrastructure/events → orb_py-2.0.0/src/orb/infrastructure/handlers/base}/py.typed +0 -0
- {orb_py-1.3.0/src/orb/infrastructure/handlers/base → orb_py-2.0.0/src/orb/infrastructure/handlers}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/interfaces/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/interfaces/provider.py +0 -0
- {orb_py-1.3.0/src/orb/infrastructure/handlers → orb_py-2.0.0/src/orb/infrastructure/interfaces}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/lifecycle.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/logging/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/logging/logger_singleton.py +0 -0
- {orb_py-1.3.0/src/orb/infrastructure/interfaces → orb_py-2.0.0/src/orb/infrastructure/logging}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/mocking/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/mocking/dry_run_context.py +0 -0
- {orb_py-1.3.0/src/orb/infrastructure/logging → orb_py-2.0.0/src/orb/infrastructure/mocking}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/patterns/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/patterns/lazy_import.py +0 -0
- {orb_py-1.3.0/src/orb/infrastructure/mocking → orb_py-2.0.0/src/orb/infrastructure/patterns}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/patterns/singleton_access.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/patterns/singleton_registry.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/performance/performance_monitor.py +0 -0
- {orb_py-1.3.0/src/orb/infrastructure/patterns → orb_py-2.0.0/src/orb/infrastructure}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/registry/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/registry/base_registry.py +0 -0
- {orb_py-1.3.0/src/orb/infrastructure → orb_py-2.0.0/src/orb/infrastructure/registry}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/registry/registry_factory.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/resilience/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/resilience/config.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/resilience/exceptions.py +0 -0
- {orb_py-1.3.0/src/orb/infrastructure/registry → orb_py-2.0.0/src/orb/infrastructure/resilience}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/resilience/retry_decorator.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/resilience/strategy/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/resilience/strategy/base.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/resilience/strategy/circuit_breaker.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/resilience/strategy/exponential.py +0 -0
- {orb_py-1.3.0/src/orb/infrastructure/resilience → orb_py-2.0.0/src/orb/infrastructure/resilience/strategy}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/scheduler/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/scheduler/base/__init__.py +0 -0
- {orb_py-1.3.0/src/orb/infrastructure/resilience/strategy → orb_py-2.0.0/src/orb/infrastructure/scheduler/base}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/scheduler/default/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/scheduler/default/field_mapper.py +0 -0
- {orb_py-1.3.0/src/orb/infrastructure/scheduler/base → orb_py-2.0.0/src/orb/infrastructure/scheduler/default}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/scheduler/factory.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/scheduler/hostfactory/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/scheduler/hostfactory/field_mapper.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/scheduler/hostfactory/field_mappings.py +0 -0
- {orb_py-1.3.0/src/orb/infrastructure/scheduler/default → orb_py-2.0.0/src/orb/infrastructure/scheduler/hostfactory}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/scheduler/hostfactory/scripts/getAvailableTemplates.bat +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/scheduler/hostfactory/scripts/getAvailableTemplates.sh +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/scheduler/hostfactory/scripts/getRequestStatus.bat +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/scheduler/hostfactory/scripts/getRequestStatus.sh +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/scheduler/hostfactory/scripts/getReturnRequests.bat +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/scheduler/hostfactory/scripts/getReturnRequests.sh +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/scheduler/hostfactory/scripts/invoke_provider.bat +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/scheduler/hostfactory/scripts/invoke_provider.sh +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/scheduler/hostfactory/scripts/requestMachines.bat +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/scheduler/hostfactory/scripts/requestMachines.sh +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/scheduler/hostfactory/scripts/requestReturnMachines.bat +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/scheduler/hostfactory/scripts/requestReturnMachines.sh +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/scheduler/hostfactory/scripts/templateWizard.bat +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/scheduler/hostfactory/scripts/templateWizard.sh +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/scheduler/hostfactory/transformations.py +0 -0
- {orb_py-1.3.0/src/orb/infrastructure/scheduler/hostfactory → orb_py-2.0.0/src/orb/infrastructure/scheduler}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/scheduler/registration.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/serialization/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/serialization/encoders.py +0 -0
- {orb_py-1.3.0/src/orb/infrastructure/scheduler → orb_py-2.0.0/src/orb/infrastructure/serialization}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/services/iso_timestamp_service.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/storage/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/storage/adapters/strategy_adapter.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/storage/base/__init__.py +0 -0
- {orb_py-1.3.0/src/orb/infrastructure/serialization → orb_py-2.0.0/src/orb/infrastructure/storage/base}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/storage/base/repository.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/storage/base/repository_mixin.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/storage/base/unit_of_work.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/storage/components/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/storage/components/entity_cache.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/storage/components/entity_serializer.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/storage/components/event_publisher.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/storage/components/generic_serializer.py +0 -0
- {orb_py-1.3.0/src/orb/infrastructure/storage/base → orb_py-2.0.0/src/orb/infrastructure/storage/components}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/storage/components/resource_manager.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/storage/components/serialization_manager.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/storage/components/sql_query_builder.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/storage/components/sql_serializer.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/storage/components/transaction_manager.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/storage/components/version_manager.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/storage/concurrency.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/storage/constants.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/storage/exceptions.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/storage/factories/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/storage/factories/machine_storage_factory.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/storage/factories/request_storage_factory.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/storage/factories/storage_factory_orchestrator.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/storage/factories/template_storage_factory.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/storage/factory.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/storage/interfaces/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/storage/interfaces/batch_storage.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/storage/interfaces/storage_reader.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/storage/interfaces/storage_writer.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/storage/interfaces/transactional_storage.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/storage/json/__init__.py +0 -0
- {orb_py-1.3.0/src/orb/infrastructure/storage/components → orb_py-2.0.0/src/orb/infrastructure/storage/json}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/storage/json/template.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/storage/metrics_decorators.py +0 -0
- {orb_py-1.3.0/src/orb/infrastructure/storage/json → orb_py-2.0.0/src/orb/infrastructure/storage}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/storage/registration.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/storage/registry.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/storage/repositories/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/storage/repositories/machine_repository.py +0 -0
- {orb_py-1.3.0/src/orb/infrastructure/storage → orb_py-2.0.0/src/orb/infrastructure/storage/repositories}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/storage/repositories/request_repository.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/storage/repositories/template_repository.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/storage/sql/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/storage/sql/models.py +0 -0
- {orb_py-1.3.0/src/orb/infrastructure/storage/repositories → orb_py-2.0.0/src/orb/infrastructure/storage/sql}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/storage/sql/strategy.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/storage/sql/unit_of_work.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/template/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/template/dtos.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/template/jinja_spec_renderer.py +0 -0
- {orb_py-1.3.0/src/orb/infrastructure/storage/sql → orb_py-2.0.0/src/orb/infrastructure/template}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/template/template_cache_service.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/template/template_repository_impl.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/utilities/common/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/utilities/common/collections/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/utilities/common/collections/filtering.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/utilities/common/collections/grouping.py +0 -0
- {orb_py-1.3.0/src/orb/infrastructure/template → orb_py-2.0.0/src/orb/infrastructure/utilities/common/collections}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/utilities/common/collections/transforming.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/utilities/common/collections/validation.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/utilities/common/date_utils.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/utilities/common/deep_merge.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/utilities/common/file_operations.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/utilities/common/file_utils.py +0 -0
- {orb_py-1.3.0/src/orb/infrastructure/utilities/common/collections → orb_py-2.0.0/src/orb/infrastructure/utilities/common}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/utilities/common/resource_naming.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/utilities/common/serialization.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/utilities/config_utils.py +0 -0
- {orb_py-1.3.0/src/orb/infrastructure/utilities/common → orb_py-2.0.0/src/orb/infrastructure/utilities/factories}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/utilities/factories/repository_factory.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/utilities/factories/sql_engine_factory.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/utilities/file/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/utilities/file/binary_utils.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/utilities/file/directory_utils.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/utilities/file/file_operations.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/utilities/file/json_utils.py +0 -0
- {orb_py-1.3.0/src/orb/infrastructure/utilities/factories → orb_py-2.0.0/src/orb/infrastructure/utilities/file}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/utilities/file/text_utils.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/utilities/file/yaml_utils.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/utilities/json_utils.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/utilities/network_utils.py +0 -0
- {orb_py-1.3.0/src/orb/infrastructure/utilities/file → orb_py-2.0.0/src/orb/infrastructure/utilities}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/validation/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/validation/input_validator.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/validation/secure_input.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/infrastructure/validation/startup_validator.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/interface/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/interface/command_handlers.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/interface/mcp/server/handler.py +0 -0
- {orb_py-1.3.0/src/orb/infrastructure/utilities → orb_py-2.0.0/src/orb/interface}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/interface/serve_command_handler.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/mcp/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/mcp/discovery.py +0 -0
- {orb_py-1.3.0/src/orb/interface → orb_py-2.0.0/src/orb/mcp}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/mcp/tools.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/monitoring/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/monitoring/health.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/monitoring/metrics.py +0 -0
- {orb_py-1.3.0/src/orb/mcp → orb_py-2.0.0/src/orb/monitoring}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/adapters/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/adapters/template_example_generator_adapter.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/application/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/application/events/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/application/events/aws_handlers.py +0 -0
- {orb_py-1.3.0/src/orb/monitoring → orb_py-2.0.0/src/orb/providers/aws/application/events}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/application/machine/__init__.py +0 -0
- {orb_py-1.3.0/src/orb/providers/aws/application/events → orb_py-2.0.0/src/orb/providers/aws/application/machine}/py.typed +0 -0
- {orb_py-1.3.0/src/orb/providers/aws/application/machine → orb_py-2.0.0/src/orb/providers/aws/application}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/application/request/__init__.py +0 -0
- {orb_py-1.3.0/src/orb/providers/aws/application → orb_py-2.0.0/src/orb/providers/aws/application/request}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/application/template/__init__.py +0 -0
- {orb_py-1.3.0/src/orb/providers/aws/application/request → orb_py-2.0.0/src/orb/providers/aws/application/template}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/auth/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/auth/cognito_strategy.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/auth/iam_strategy.py +0 -0
- {orb_py-1.3.0/src/orb/providers/aws/application/template → orb_py-2.0.0/src/orb/providers/aws/auth}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/cli/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/cli/aws_cli_spec.py +0 -0
- {orb_py-1.3.0/src/orb/providers/aws/domain/machine → orb_py-2.0.0/src/orb/providers/aws/config}/__init__.py +0 -0
- {orb_py-1.3.0/src/orb/providers/aws/auth → orb_py-2.0.0/src/orb/providers/aws/configuration}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/configuration/template_extension.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/domain/__init__.py +0 -0
- {orb_py-1.3.0/src/orb/providers/aws/domain/request → orb_py-2.0.0/src/orb/providers/aws/domain/machine}/__init__.py +0 -0
- {orb_py-1.3.0/src/orb/providers/aws/configuration → orb_py-2.0.0/src/orb/providers/aws/domain/machine}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/domain/machine/value_objects.py +0 -0
- {orb_py-1.3.0/src/orb/providers/aws/domain/machine → orb_py-2.0.0/src/orb/providers/aws/domain}/py.typed +0 -0
- {orb_py-1.3.0/src/orb/providers/aws/domain/template → orb_py-2.0.0/src/orb/providers/aws/domain/request}/__init__.py +0 -0
- {orb_py-1.3.0/src/orb/providers/aws/domain → orb_py-2.0.0/src/orb/providers/aws/domain/request}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/domain/request/value_objects.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/domain/services/ami_resolver.py +0 -0
- {orb_py-1.3.0/src/orb/providers/aws/infrastructure/handlers/asg → orb_py-2.0.0/src/orb/providers/aws/domain/template}/__init__.py +0 -0
- {orb_py-1.3.0/src/orb/providers/aws/domain/request → orb_py-2.0.0/src/orb/providers/aws/domain/template}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/domain/template/value_objects.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/exceptions/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/exceptions/aws_exceptions.py +0 -0
- {orb_py-1.3.0/src/orb/providers/aws/domain/template → orb_py-2.0.0/src/orb/providers/aws/exceptions}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/health.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/infrastructure/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/infrastructure/adapters/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/infrastructure/adapters/aws_provisioning_adapter.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/infrastructure/adapters/aws_validation_adapter.py +0 -0
- {orb_py-1.3.0/src/orb/providers/aws/exceptions → orb_py-2.0.0/src/orb/providers/aws/infrastructure/adapters}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/infrastructure/adapters/request_adapter.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/infrastructure/adapters/template_adapter.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/infrastructure/aws_client_factory.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/infrastructure/aws_handler_factory.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/infrastructure/caching/aws_image_cache.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/infrastructure/dry_run_adapter.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/infrastructure/handlers/__init__.py +0 -0
- {orb_py-1.3.0/src/orb/providers/aws/infrastructure/handlers/ec2_fleet → orb_py-2.0.0/src/orb/providers/aws/infrastructure/handlers/asg}/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/infrastructure/handlers/asg/capacity_manager.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/infrastructure/handlers/asg/config_builder.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/infrastructure/handlers/asg/handler.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/infrastructure/handlers/components/__init__.py +0 -0
- {orb_py-1.3.0/src/orb/providers/aws/infrastructure/adapters → orb_py-2.0.0/src/orb/providers/aws/infrastructure/handlers/components}/py.typed +0 -0
- {orb_py-1.3.0/src/orb/providers/aws/infrastructure/handlers/run_instances → orb_py-2.0.0/src/orb/providers/aws/infrastructure/handlers/ec2_fleet}/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/infrastructure/handlers/ec2_fleet/config_builder.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/infrastructure/handlers/ec2_fleet/release_manager.py +0 -0
- {orb_py-1.3.0/src/orb/providers/aws/infrastructure/handlers/components → orb_py-2.0.0/src/orb/providers/aws/infrastructure/handlers}/py.typed +0 -0
- {orb_py-1.3.0/src/orb/providers/aws/infrastructure/handlers/shared → orb_py-2.0.0/src/orb/providers/aws/infrastructure/handlers/run_instances}/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/infrastructure/handlers/run_instances/handler.py +0 -0
- {orb_py-1.3.0/src/orb/providers/aws/persistence → orb_py-2.0.0/src/orb/providers/aws/infrastructure/handlers/shared}/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/infrastructure/handlers/shared/base_config_builder.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/infrastructure/handlers/shared/base_context_mixin.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/infrastructure/handlers/shared/fleet_override_builder.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/infrastructure/handlers/shared/instance_override_builder.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/infrastructure/handlers/spot_fleet/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/infrastructure/handlers/spot_fleet/config_builder.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/infrastructure/handlers/spot_fleet/handler.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/infrastructure/handlers/spot_fleet/release_manager.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/infrastructure/handlers/spot_fleet/validator.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/infrastructure/instrumentation/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/infrastructure/launch_template/__init__.py +0 -0
- {orb_py-1.3.0/src/orb/providers/aws/infrastructure/handlers → orb_py-2.0.0/src/orb/providers/aws/infrastructure/launch_template}/py.typed +0 -0
- {orb_py-1.3.0/src/orb/providers/aws/infrastructure/launch_template → orb_py-2.0.0/src/orb/providers/aws/infrastructure}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/infrastructure/services/aws_image_resolution_service.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/infrastructure/services/aws_native_spec_service.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/infrastructure/tags.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/infrastructure/template/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/infrastructure/template/ami_cache.py +0 -0
- {orb_py-1.3.0/src/orb/providers/aws/infrastructure → orb_py-2.0.0/src/orb/providers/aws/infrastructure/template}/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/infrastructure/utils.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/models/infrastructure_models.py +0 -0
- /orb_py-1.3.0/src/orb/providers/aws/infrastructure/template/py.typed → /orb_py-2.0.0/src/orb/providers/aws/persistence/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/persistence/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/profile_discovery.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/resilience/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/resilience/aws_retry_config.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/resilience/aws_retry_errors.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/resilience/aws_retry_strategy.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/resilience/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/services/capability_service.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/services/ec2_fleet_management_service.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/services/handler_registry.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/services/health_check_service.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/services/infrastructure_discovery_service.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/services/instance_operation_service.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/services/template_validation_service.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/session_factory.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/storage/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/storage/components/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/storage/components/dynamodb_client_manager.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/storage/components/dynamodb_converter.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/storage/components/dynamodb_transaction_manager.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/storage/components/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/storage/config.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/storage/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/storage/strategy.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/storage/unit_of_work.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/strategy/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/strategy/aws_provider_adapter.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/strategy/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/utilities/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/utilities/aws_operations.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/utilities/ec2/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/utilities/ec2/instances.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/utilities/ec2/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/utilities/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/utilities/ssm_utils.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/validation/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/aws/validation/region_validator.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/base/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/base/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/base/strategy/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/base/strategy/composite_strategy.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/base/strategy/fallback_strategy.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/base/strategy/load_balancing/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/base/strategy/load_balancing/algorithms.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/base/strategy/load_balancing/config.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/base/strategy/load_balancing/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/base/strategy/load_balancing/stats.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/base/strategy/load_balancing/strategy.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/base/strategy/load_balancing_strategy.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/base/strategy/provider_selector.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/base/strategy/provider_strategy.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/base/strategy/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/base/strategy/selector_utils.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/config_builder.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/config_validator.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/registration.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/registry/__init__.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/results.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/providers/services/provider_execution_service.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/run.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/sdk/middleware.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/sdk/parameter_mapping.py +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb/sdk/py.typed +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb_py.egg-info/dependency_links.txt +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb_py.egg-info/entry_points.txt +0 -0
- {orb_py-1.3.0 → orb_py-2.0.0}/src/orb_py.egg-info/top_level.txt +0 -0
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: orb-py
|
|
3
|
-
Version:
|
|
3
|
+
Version: 2.0.0
|
|
4
4
|
Summary: Open Resource Broker (ORB) — dynamic cloud resource provisioning via CLI and REST API
|
|
5
|
-
Author-email: AWS
|
|
6
|
-
Maintainer-email: AWS
|
|
5
|
+
Author-email: AWS ORB Maintainers <aws-orb-maintainers@amazon.com>
|
|
6
|
+
Maintainer-email: AWS ORB Maintainers <aws-orb-maintainers@amazon.com>
|
|
7
7
|
License-Expression: Apache-2.0
|
|
8
8
|
Project-URL: Homepage, https://github.com/awslabs/open-resource-broker
|
|
9
9
|
Project-URL: Documentation, https://awslabs.github.io/open-resource-broker/
|
|
@@ -60,7 +60,6 @@ Provides-Extra: ci
|
|
|
60
60
|
Requires-Dist: ruff>=0.1.0; extra == "ci"
|
|
61
61
|
Requires-Dist: pathspec>=0.11.0; extra == "ci"
|
|
62
62
|
Requires-Dist: pyright<2.0.0,>=1.1.408; extra == "ci"
|
|
63
|
-
Requires-Dist: mypy<2.0.0,>=1.6.1; extra == "ci"
|
|
64
63
|
Requires-Dist: bandit<2.0.0,>=1.7.5; extra == "ci"
|
|
65
64
|
Requires-Dist: bandit-sarif-formatter<2.0.0,>=1.1.1; extra == "ci"
|
|
66
65
|
Requires-Dist: pytest<10.0.0,>=7.4.3; extra == "ci"
|
|
@@ -139,6 +138,14 @@ Dynamic: license-file
|
|
|
139
138
|
<a href="https://deepwiki.com/awslabs/open-resource-broker"><img src="https://deepwiki.com/badge.svg" alt="Ask DeepWiki"></a>
|
|
140
139
|
</p>
|
|
141
140
|
|
|
141
|
+
<p align="center">
|
|
142
|
+
<a href="https://github.com/awslabs/open-resource-broker/actions/workflows/ci-tests.yml"><img src="https://github.com/awslabs/open-resource-broker/actions/workflows/ci-tests.yml/badge.svg" alt="Unit Tests"></a>
|
|
143
|
+
<a href="https://github.com/awslabs/open-resource-broker/actions/workflows/ci-quality.yml"><img src="https://github.com/awslabs/open-resource-broker/actions/workflows/ci-quality.yml/badge.svg" alt="Quality Checks"></a>
|
|
144
|
+
<a href="https://github.com/awslabs/open-resource-broker/actions/workflows/security-code.yml"><img src="https://github.com/awslabs/open-resource-broker/actions/workflows/security-code.yml/badge.svg" alt="Security Scanning"></a>
|
|
145
|
+
<a href="https://codecov.io/gh/awslabs/open-resource-broker"><img src="https://codecov.io/gh/awslabs/open-resource-broker/graph/badge.svg" alt="Coverage"></a>
|
|
146
|
+
<a href="https://github.com/awslabs/open-resource-broker/actions/workflows/docs.yml"><img src="https://github.com/awslabs/open-resource-broker/actions/workflows/docs.yml/badge.svg" alt="Documentation"></a>
|
|
147
|
+
</p>
|
|
148
|
+
|
|
142
149
|
---
|
|
143
150
|
|
|
144
151
|
ORB is a unified API for orchestrating and provisioning compute capacity programmatically. Define what you need in a template, request it, track it, return it — through a CLI, REST API, Python SDK, or MCP server.
|
|
@@ -511,10 +518,6 @@ See [CONTRIBUTING.md](CONTRIBUTING.md) for the full development guide.
|
|
|
511
518
|
<details>
|
|
512
519
|
<summary>Documentation & CI</summary>
|
|
513
520
|
|
|
514
|
-
[](https://github.com/awslabs/open-resource-broker/actions/workflows/test-matrix.yml)
|
|
515
|
-
[](https://github.com/awslabs/open-resource-broker/actions/workflows/ci-quality.yml)
|
|
516
|
-
[](https://github.com/awslabs/open-resource-broker/actions/workflows/security-code.yml)
|
|
517
|
-
|
|
518
521
|
- [Quick Start](docs/root/getting_started/quick_start.md)
|
|
519
522
|
- [CLI Reference](docs/root/cli/cli-reference.md)
|
|
520
523
|
- [Configuration Guide](docs/root/user_guide/configuration.md)
|
|
@@ -18,6 +18,14 @@
|
|
|
18
18
|
<a href="https://deepwiki.com/awslabs/open-resource-broker"><img src="https://deepwiki.com/badge.svg" alt="Ask DeepWiki"></a>
|
|
19
19
|
</p>
|
|
20
20
|
|
|
21
|
+
<p align="center">
|
|
22
|
+
<a href="https://github.com/awslabs/open-resource-broker/actions/workflows/ci-tests.yml"><img src="https://github.com/awslabs/open-resource-broker/actions/workflows/ci-tests.yml/badge.svg" alt="Unit Tests"></a>
|
|
23
|
+
<a href="https://github.com/awslabs/open-resource-broker/actions/workflows/ci-quality.yml"><img src="https://github.com/awslabs/open-resource-broker/actions/workflows/ci-quality.yml/badge.svg" alt="Quality Checks"></a>
|
|
24
|
+
<a href="https://github.com/awslabs/open-resource-broker/actions/workflows/security-code.yml"><img src="https://github.com/awslabs/open-resource-broker/actions/workflows/security-code.yml/badge.svg" alt="Security Scanning"></a>
|
|
25
|
+
<a href="https://codecov.io/gh/awslabs/open-resource-broker"><img src="https://codecov.io/gh/awslabs/open-resource-broker/graph/badge.svg" alt="Coverage"></a>
|
|
26
|
+
<a href="https://github.com/awslabs/open-resource-broker/actions/workflows/docs.yml"><img src="https://github.com/awslabs/open-resource-broker/actions/workflows/docs.yml/badge.svg" alt="Documentation"></a>
|
|
27
|
+
</p>
|
|
28
|
+
|
|
21
29
|
---
|
|
22
30
|
|
|
23
31
|
ORB is a unified API for orchestrating and provisioning compute capacity programmatically. Define what you need in a template, request it, track it, return it — through a CLI, REST API, Python SDK, or MCP server.
|
|
@@ -390,10 +398,6 @@ See [CONTRIBUTING.md](CONTRIBUTING.md) for the full development guide.
|
|
|
390
398
|
<details>
|
|
391
399
|
<summary>Documentation & CI</summary>
|
|
392
400
|
|
|
393
|
-
[](https://github.com/awslabs/open-resource-broker/actions/workflows/test-matrix.yml)
|
|
394
|
-
[](https://github.com/awslabs/open-resource-broker/actions/workflows/ci-quality.yml)
|
|
395
|
-
[](https://github.com/awslabs/open-resource-broker/actions/workflows/security-code.yml)
|
|
396
|
-
|
|
397
401
|
- [Quick Start](docs/root/getting_started/quick_start.md)
|
|
398
402
|
- [CLI Reference](docs/root/cli/cli-reference.md)
|
|
399
403
|
- [Configuration Guide](docs/root/user_guide/configuration.md)
|
|
@@ -17,11 +17,7 @@
|
|
|
17
17
|
"name": "EC2 Fleet Instant On-Demand",
|
|
18
18
|
"providerApi": "EC2Fleet",
|
|
19
19
|
"providerType": "aws",
|
|
20
|
-
"createdAt": "2026-03-
|
|
21
|
-
"subnetIds": [],
|
|
22
|
-
"securityGroupIds": [],
|
|
23
|
-
"vmTypesOnDemand": {},
|
|
24
|
-
"vmTypesPriority": {}
|
|
20
|
+
"createdAt": "2026-03-20T13:33:26.173247"
|
|
25
21
|
},
|
|
26
22
|
{
|
|
27
23
|
"templateId": "EC2Fleet-Instant-Spot",
|
|
@@ -40,11 +36,7 @@
|
|
|
40
36
|
"name": "EC2 Fleet Instant Spot",
|
|
41
37
|
"providerApi": "EC2Fleet",
|
|
42
38
|
"providerType": "aws",
|
|
43
|
-
"createdAt": "2026-03-
|
|
44
|
-
"subnetIds": [],
|
|
45
|
-
"securityGroupIds": [],
|
|
46
|
-
"vmTypesOnDemand": {},
|
|
47
|
-
"vmTypesPriority": {}
|
|
39
|
+
"createdAt": "2026-03-20T13:33:26.173889"
|
|
48
40
|
},
|
|
49
41
|
{
|
|
50
42
|
"templateId": "EC2Fleet-Instant-Mixed",
|
|
@@ -63,11 +55,7 @@
|
|
|
63
55
|
"name": "EC2 Fleet Instant Mixed",
|
|
64
56
|
"providerApi": "EC2Fleet",
|
|
65
57
|
"providerType": "aws",
|
|
66
|
-
"createdAt": "2026-03-
|
|
67
|
-
"subnetIds": [],
|
|
68
|
-
"securityGroupIds": [],
|
|
69
|
-
"vmTypesOnDemand": {},
|
|
70
|
-
"vmTypesPriority": {},
|
|
58
|
+
"createdAt": "2026-03-20T13:33:26.173911",
|
|
71
59
|
"percentOnDemand": 30
|
|
72
60
|
},
|
|
73
61
|
{
|
|
@@ -86,11 +74,7 @@
|
|
|
86
74
|
"name": "EC2 Fleet Request On-Demand",
|
|
87
75
|
"providerApi": "EC2Fleet",
|
|
88
76
|
"providerType": "aws",
|
|
89
|
-
"createdAt": "2026-03-
|
|
90
|
-
"subnetIds": [],
|
|
91
|
-
"securityGroupIds": [],
|
|
92
|
-
"vmTypesOnDemand": {},
|
|
93
|
-
"vmTypesPriority": {}
|
|
77
|
+
"createdAt": "2026-03-20T13:33:26.173922"
|
|
94
78
|
},
|
|
95
79
|
{
|
|
96
80
|
"templateId": "EC2Fleet-Request-Spot",
|
|
@@ -109,11 +93,7 @@
|
|
|
109
93
|
"name": "EC2 Fleet Request Spot",
|
|
110
94
|
"providerApi": "EC2Fleet",
|
|
111
95
|
"providerType": "aws",
|
|
112
|
-
"createdAt": "2026-03-
|
|
113
|
-
"subnetIds": [],
|
|
114
|
-
"securityGroupIds": [],
|
|
115
|
-
"vmTypesOnDemand": {},
|
|
116
|
-
"vmTypesPriority": {}
|
|
96
|
+
"createdAt": "2026-03-20T13:33:26.173932"
|
|
117
97
|
},
|
|
118
98
|
{
|
|
119
99
|
"templateId": "EC2Fleet-Request-Mixed",
|
|
@@ -133,11 +113,7 @@
|
|
|
133
113
|
"name": "EC2 Fleet Request Mixed",
|
|
134
114
|
"providerApi": "EC2Fleet",
|
|
135
115
|
"providerType": "aws",
|
|
136
|
-
"createdAt": "2026-03-
|
|
137
|
-
"subnetIds": [],
|
|
138
|
-
"securityGroupIds": [],
|
|
139
|
-
"vmTypesOnDemand": {},
|
|
140
|
-
"vmTypesPriority": {},
|
|
116
|
+
"createdAt": "2026-03-20T13:33:26.173942",
|
|
141
117
|
"percentOnDemand": 40,
|
|
142
118
|
"allocationStrategyOnDemand": "lowestPrice"
|
|
143
119
|
},
|
|
@@ -157,11 +133,7 @@
|
|
|
157
133
|
"name": "EC2 Fleet Maintain On-Demand",
|
|
158
134
|
"providerApi": "EC2Fleet",
|
|
159
135
|
"providerType": "aws",
|
|
160
|
-
"createdAt": "2026-03-
|
|
161
|
-
"subnetIds": [],
|
|
162
|
-
"securityGroupIds": [],
|
|
163
|
-
"vmTypesOnDemand": {},
|
|
164
|
-
"vmTypesPriority": {}
|
|
136
|
+
"createdAt": "2026-03-20T13:33:26.173951"
|
|
165
137
|
},
|
|
166
138
|
{
|
|
167
139
|
"templateId": "EC2Fleet-Maintain-Spot",
|
|
@@ -180,11 +152,7 @@
|
|
|
180
152
|
"name": "EC2 Fleet Maintain Spot",
|
|
181
153
|
"providerApi": "EC2Fleet",
|
|
182
154
|
"providerType": "aws",
|
|
183
|
-
"createdAt": "2026-03-
|
|
184
|
-
"subnetIds": [],
|
|
185
|
-
"securityGroupIds": [],
|
|
186
|
-
"vmTypesOnDemand": {},
|
|
187
|
-
"vmTypesPriority": {}
|
|
155
|
+
"createdAt": "2026-03-20T13:33:26.173960"
|
|
188
156
|
},
|
|
189
157
|
{
|
|
190
158
|
"templateId": "EC2Fleet-Maintain-Mixed",
|
|
@@ -205,11 +173,7 @@
|
|
|
205
173
|
"name": "EC2 Fleet Maintain Mixed",
|
|
206
174
|
"providerApi": "EC2Fleet",
|
|
207
175
|
"providerType": "aws",
|
|
208
|
-
"createdAt": "2026-03-
|
|
209
|
-
"subnetIds": [],
|
|
210
|
-
"securityGroupIds": [],
|
|
211
|
-
"vmTypesOnDemand": {},
|
|
212
|
-
"vmTypesPriority": {},
|
|
176
|
+
"createdAt": "2026-03-20T13:33:26.173972",
|
|
213
177
|
"percentOnDemand": 50,
|
|
214
178
|
"allocationStrategyOnDemand": "prioritized"
|
|
215
179
|
},
|
|
@@ -231,11 +195,7 @@
|
|
|
231
195
|
"name": "Spot Fleet Request - Lowest Price",
|
|
232
196
|
"providerApi": "SpotFleet",
|
|
233
197
|
"providerType": "aws",
|
|
234
|
-
"createdAt": "2026-03-
|
|
235
|
-
"subnetIds": [],
|
|
236
|
-
"securityGroupIds": [],
|
|
237
|
-
"vmTypesOnDemand": {},
|
|
238
|
-
"vmTypesPriority": {}
|
|
198
|
+
"createdAt": "2026-03-20T13:33:26.173984"
|
|
239
199
|
},
|
|
240
200
|
{
|
|
241
201
|
"templateId": "SpotFleet-Request-Diversified",
|
|
@@ -255,11 +215,7 @@
|
|
|
255
215
|
"name": "Spot Fleet Request - Diversified",
|
|
256
216
|
"providerApi": "SpotFleet",
|
|
257
217
|
"providerType": "aws",
|
|
258
|
-
"createdAt": "2026-03-
|
|
259
|
-
"subnetIds": [],
|
|
260
|
-
"securityGroupIds": [],
|
|
261
|
-
"vmTypesOnDemand": {},
|
|
262
|
-
"vmTypesPriority": {}
|
|
218
|
+
"createdAt": "2026-03-20T13:33:26.173993"
|
|
263
219
|
},
|
|
264
220
|
{
|
|
265
221
|
"templateId": "SpotFleet-Request-CapacityOptimized",
|
|
@@ -279,11 +235,7 @@
|
|
|
279
235
|
"name": "Spot Fleet Request - Capacity Optimized",
|
|
280
236
|
"providerApi": "SpotFleet",
|
|
281
237
|
"providerType": "aws",
|
|
282
|
-
"createdAt": "2026-03-
|
|
283
|
-
"subnetIds": [],
|
|
284
|
-
"securityGroupIds": [],
|
|
285
|
-
"vmTypesOnDemand": {},
|
|
286
|
-
"vmTypesPriority": {}
|
|
238
|
+
"createdAt": "2026-03-20T13:33:26.173999"
|
|
287
239
|
},
|
|
288
240
|
{
|
|
289
241
|
"templateId": "SpotFleet-Maintain-LowestPrice",
|
|
@@ -303,11 +255,7 @@
|
|
|
303
255
|
"name": "Spot Fleet Maintain - Lowest Price",
|
|
304
256
|
"providerApi": "SpotFleet",
|
|
305
257
|
"providerType": "aws",
|
|
306
|
-
"createdAt": "2026-03-
|
|
307
|
-
"subnetIds": [],
|
|
308
|
-
"securityGroupIds": [],
|
|
309
|
-
"vmTypesOnDemand": {},
|
|
310
|
-
"vmTypesPriority": {}
|
|
258
|
+
"createdAt": "2026-03-20T13:33:26.174005"
|
|
311
259
|
},
|
|
312
260
|
{
|
|
313
261
|
"templateId": "SpotFleet-Maintain-Diversified",
|
|
@@ -327,11 +275,7 @@
|
|
|
327
275
|
"name": "Spot Fleet Maintain - Diversified",
|
|
328
276
|
"providerApi": "SpotFleet",
|
|
329
277
|
"providerType": "aws",
|
|
330
|
-
"createdAt": "2026-03-
|
|
331
|
-
"subnetIds": [],
|
|
332
|
-
"securityGroupIds": [],
|
|
333
|
-
"vmTypesOnDemand": {},
|
|
334
|
-
"vmTypesPriority": {}
|
|
278
|
+
"createdAt": "2026-03-20T13:33:26.174011"
|
|
335
279
|
},
|
|
336
280
|
{
|
|
337
281
|
"templateId": "SpotFleet-Maintain-CapacityOptimized",
|
|
@@ -351,11 +295,7 @@
|
|
|
351
295
|
"name": "Spot Fleet Maintain - Capacity Optimized",
|
|
352
296
|
"providerApi": "SpotFleet",
|
|
353
297
|
"providerType": "aws",
|
|
354
|
-
"createdAt": "2026-03-
|
|
355
|
-
"subnetIds": [],
|
|
356
|
-
"securityGroupIds": [],
|
|
357
|
-
"vmTypesOnDemand": {},
|
|
358
|
-
"vmTypesPriority": {}
|
|
298
|
+
"createdAt": "2026-03-20T13:33:26.174016"
|
|
359
299
|
},
|
|
360
300
|
{
|
|
361
301
|
"templateId": "ASG-OnDemand",
|
|
@@ -372,11 +312,7 @@
|
|
|
372
312
|
"name": "Auto Scaling Group On-Demand",
|
|
373
313
|
"providerApi": "ASG",
|
|
374
314
|
"providerType": "aws",
|
|
375
|
-
"createdAt": "2026-03-
|
|
376
|
-
"subnetIds": [],
|
|
377
|
-
"securityGroupIds": [],
|
|
378
|
-
"vmTypesOnDemand": {},
|
|
379
|
-
"vmTypesPriority": {}
|
|
315
|
+
"createdAt": "2026-03-20T13:33:26.174023"
|
|
380
316
|
},
|
|
381
317
|
{
|
|
382
318
|
"templateId": "ASG-Spot",
|
|
@@ -394,11 +330,7 @@
|
|
|
394
330
|
"name": "Auto Scaling Group Spot",
|
|
395
331
|
"providerApi": "ASG",
|
|
396
332
|
"providerType": "aws",
|
|
397
|
-
"createdAt": "2026-03-
|
|
398
|
-
"subnetIds": [],
|
|
399
|
-
"securityGroupIds": [],
|
|
400
|
-
"vmTypesOnDemand": {},
|
|
401
|
-
"vmTypesPriority": {}
|
|
333
|
+
"createdAt": "2026-03-20T13:33:26.174033"
|
|
402
334
|
},
|
|
403
335
|
{
|
|
404
336
|
"templateId": "ASG-Mixed",
|
|
@@ -416,11 +348,7 @@
|
|
|
416
348
|
"name": "Auto Scaling Group Mixed",
|
|
417
349
|
"providerApi": "ASG",
|
|
418
350
|
"providerType": "aws",
|
|
419
|
-
"createdAt": "2026-03-
|
|
420
|
-
"subnetIds": [],
|
|
421
|
-
"securityGroupIds": [],
|
|
422
|
-
"vmTypesOnDemand": {},
|
|
423
|
-
"vmTypesPriority": {},
|
|
351
|
+
"createdAt": "2026-03-20T13:33:26.174042",
|
|
424
352
|
"percentOnDemand": 30
|
|
425
353
|
},
|
|
426
354
|
{
|
|
@@ -438,11 +366,7 @@
|
|
|
438
366
|
"name": "Run Instances On-Demand",
|
|
439
367
|
"providerApi": "RunInstances",
|
|
440
368
|
"providerType": "aws",
|
|
441
|
-
"createdAt": "2026-03-
|
|
442
|
-
"subnetIds": [],
|
|
443
|
-
"securityGroupIds": [],
|
|
444
|
-
"vmTypesOnDemand": {},
|
|
445
|
-
"vmTypesPriority": {}
|
|
369
|
+
"createdAt": "2026-03-20T13:33:26.174049"
|
|
446
370
|
},
|
|
447
371
|
{
|
|
448
372
|
"templateId": "RunInstances-Spot",
|
|
@@ -460,11 +384,7 @@
|
|
|
460
384
|
"name": "Run Instances Spot",
|
|
461
385
|
"providerApi": "RunInstances",
|
|
462
386
|
"providerType": "aws",
|
|
463
|
-
"createdAt": "2026-03-
|
|
464
|
-
"subnetIds": [],
|
|
465
|
-
"securityGroupIds": [],
|
|
466
|
-
"vmTypesOnDemand": {},
|
|
467
|
-
"vmTypesPriority": {}
|
|
387
|
+
"createdAt": "2026-03-20T13:33:26.174058"
|
|
468
388
|
}
|
|
469
389
|
]
|
|
470
390
|
}
|
|
@@ -4,24 +4,7 @@
|
|
|
4
4
|
"type": "default"
|
|
5
5
|
},
|
|
6
6
|
"provider": {
|
|
7
|
-
"providers": [
|
|
8
|
-
{
|
|
9
|
-
"name": "aws-default",
|
|
10
|
-
"type": "aws",
|
|
11
|
-
"enabled": true,
|
|
12
|
-
"config": {
|
|
13
|
-
"region": "us-east-1",
|
|
14
|
-
"profile": "default",
|
|
15
|
-
"storage": {
|
|
16
|
-
"dynamodb": {
|
|
17
|
-
"region": "us-east-1",
|
|
18
|
-
"profile": "default",
|
|
19
|
-
"table_prefix": "hostfactory"
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
],
|
|
7
|
+
"providers": [],
|
|
25
8
|
"selection_policy": "FIRST_AVAILABLE",
|
|
26
9
|
"default_provider_type": "aws",
|
|
27
10
|
"health_check_interval": 60,
|
|
@@ -31,95 +14,7 @@
|
|
|
31
14
|
"recovery_timeout": 60,
|
|
32
15
|
"half_open_max_calls": 3
|
|
33
16
|
},
|
|
34
|
-
"provider_defaults": {
|
|
35
|
-
"aws": {
|
|
36
|
-
"handlers": {
|
|
37
|
-
"EC2Fleet": {
|
|
38
|
-
"handler_class": "EC2FleetHandler",
|
|
39
|
-
"supported_fleet_types": [
|
|
40
|
-
"instant",
|
|
41
|
-
"request",
|
|
42
|
-
"maintain"
|
|
43
|
-
],
|
|
44
|
-
"default_fleet_type": "instant",
|
|
45
|
-
"supports_spot": true,
|
|
46
|
-
"supports_ondemand": true
|
|
47
|
-
},
|
|
48
|
-
"SpotFleet": {
|
|
49
|
-
"handler_class": "SpotFleetHandler",
|
|
50
|
-
"supported_fleet_types": [
|
|
51
|
-
"request",
|
|
52
|
-
"maintain"
|
|
53
|
-
],
|
|
54
|
-
"default_fleet_type": "request",
|
|
55
|
-
"supports_spot": true,
|
|
56
|
-
"supports_ondemand": true
|
|
57
|
-
},
|
|
58
|
-
"ASG": {
|
|
59
|
-
"handler_class": "ASGHandler",
|
|
60
|
-
"supports_spot": true,
|
|
61
|
-
"supports_ondemand": true,
|
|
62
|
-
"max_instances": 10000
|
|
63
|
-
},
|
|
64
|
-
"RunInstances": {
|
|
65
|
-
"handler_class": "RunInstancesHandler",
|
|
66
|
-
"supports_spot": false,
|
|
67
|
-
"supports_ondemand": true
|
|
68
|
-
}
|
|
69
|
-
},
|
|
70
|
-
"template_defaults": {
|
|
71
|
-
"image_id": "/aws/service/ami-amazon-linux-latest/al2023-ami-kernel-6.1-x86_64",
|
|
72
|
-
"instance_type": "t2.micro",
|
|
73
|
-
"security_group_ids": [
|
|
74
|
-
"sg-12345678"
|
|
75
|
-
],
|
|
76
|
-
"subnet_ids": [
|
|
77
|
-
"subnet-12345678"
|
|
78
|
-
],
|
|
79
|
-
"key_name": "",
|
|
80
|
-
"provider_api": "EC2Fleet",
|
|
81
|
-
"price_type": "ondemand",
|
|
82
|
-
"tags": {
|
|
83
|
-
"Environment": "development",
|
|
84
|
-
"Project": "hostfactory"
|
|
85
|
-
}
|
|
86
|
-
},
|
|
87
|
-
"launch_template": {
|
|
88
|
-
"create_per_request": true,
|
|
89
|
-
"naming_strategy": "request_based",
|
|
90
|
-
"version_strategy": "incremental",
|
|
91
|
-
"reuse_existing": true,
|
|
92
|
-
"cleanup_old_versions": false,
|
|
93
|
-
"max_versions_per_template": 10
|
|
94
|
-
},
|
|
95
|
-
"extensions": {
|
|
96
|
-
"ami_resolution": {
|
|
97
|
-
"enabled": true,
|
|
98
|
-
"fallback_on_failure": true
|
|
99
|
-
},
|
|
100
|
-
"native_spec": {
|
|
101
|
-
"spec_file_base_path": "config/specs/aws"
|
|
102
|
-
},
|
|
103
|
-
"allocation_strategy": "capacityOptimized",
|
|
104
|
-
"allocation_strategy_on_demand": "lowestPrice",
|
|
105
|
-
"volume_type": "gp3",
|
|
106
|
-
"spot_fleet_request_expiry": 30,
|
|
107
|
-
"percent_on_demand": 0,
|
|
108
|
-
"root_device_volume_size": 20
|
|
109
|
-
},
|
|
110
|
-
"cleanup": {
|
|
111
|
-
"enabled": true,
|
|
112
|
-
"delete_launch_template": true,
|
|
113
|
-
"dry_run": false,
|
|
114
|
-
"resources": {
|
|
115
|
-
"asg": true,
|
|
116
|
-
"ec2_fleet": true,
|
|
117
|
-
"spot_fleet": true,
|
|
118
|
-
"run_instances": true
|
|
119
|
-
}
|
|
120
|
-
}
|
|
121
|
-
}
|
|
122
|
-
}
|
|
17
|
+
"provider_defaults": {}
|
|
123
18
|
},
|
|
124
19
|
"native_spec": {
|
|
125
20
|
"enabled": true,
|
|
@@ -181,13 +76,8 @@
|
|
|
181
76
|
"spot_fleet": "^sfr-[a-f0-9]+$",
|
|
182
77
|
"ec2_fleet": "^fleet-[a-f0-9]+$",
|
|
183
78
|
"asg": "^[a-zA-Z0-9_-]+$",
|
|
184
|
-
"ami_id": "^ami-[a-f0-9]{8,17}$",
|
|
185
|
-
"subnet": "^subnet-[a-f0-9]{8,17}$",
|
|
186
|
-
"security_group": "^sg-[a-f0-9]{8,17}$",
|
|
187
79
|
"instance_type": "^[a-z][0-9][a-z]?\\.[a-z0-9]+$",
|
|
188
80
|
"region": "^[a-z]{2}-[a-z]+-\\d$",
|
|
189
|
-
"account_id": "^\\d{12}$",
|
|
190
|
-
"launch_template": "^lt-[a-f0-9]{8,17}$",
|
|
191
81
|
"request_id": "^(req|ret)-[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$"
|
|
192
82
|
},
|
|
193
83
|
"prefixes": {
|
|
@@ -205,8 +95,7 @@
|
|
|
205
95
|
"level": "INFO",
|
|
206
96
|
"file_path": "logs/app.log",
|
|
207
97
|
"console_enabled": false,
|
|
208
|
-
"format": "%(asctime)s - %(name)s - %(levelname)s - %(message)s [%(pathname)s:%(lineno)d (%(funcName)s)]"
|
|
209
|
-
"accept_propagated_setting": false
|
|
98
|
+
"format": "%(asctime)s - %(name)s - %(levelname)s - %(message)s [%(pathname)s:%(lineno)d (%(funcName)s)]"
|
|
210
99
|
},
|
|
211
100
|
"template": {
|
|
212
101
|
"max_number": 10,
|
|
@@ -215,8 +104,7 @@
|
|
|
215
104
|
"provider_type": "{provider_type}_templates.json",
|
|
216
105
|
"generic": "templates.json"
|
|
217
106
|
},
|
|
218
|
-
"default_price_type": "ondemand"
|
|
219
|
-
"default_provider_api": "EC2Fleet"
|
|
107
|
+
"default_price_type": "ondemand"
|
|
220
108
|
},
|
|
221
109
|
"events": {
|
|
222
110
|
"enabled": true,
|
|
@@ -228,11 +116,6 @@
|
|
|
228
116
|
"default_grace_period": 300,
|
|
229
117
|
"max_machines_per_request": 100
|
|
230
118
|
},
|
|
231
|
-
"database": {
|
|
232
|
-
"connection_timeout": 30,
|
|
233
|
-
"query_timeout": 60,
|
|
234
|
-
"max_connections": 10
|
|
235
|
-
},
|
|
236
119
|
"environment": "development",
|
|
237
120
|
"debug": false,
|
|
238
121
|
"performance": {
|
|
@@ -244,24 +127,8 @@
|
|
|
244
127
|
"preload_critical": []
|
|
245
128
|
},
|
|
246
129
|
"enable_batching": true,
|
|
247
|
-
"batch_sizes": {
|
|
248
|
-
"terminate_instances": 25,
|
|
249
|
-
"create_tags": 20,
|
|
250
|
-
"describe_instances": 25,
|
|
251
|
-
"run_instances": 10,
|
|
252
|
-
"describe_spot_fleet_instances": 20,
|
|
253
|
-
"describe_auto_scaling_groups": 20,
|
|
254
|
-
"describe_launch_templates": 20,
|
|
255
|
-
"describe_spot_fleet_requests": 20,
|
|
256
|
-
"describe_ec2_fleet_instances": 20,
|
|
257
|
-
"describe_images": 15,
|
|
258
|
-
"describe_security_groups": 25,
|
|
259
|
-
"describe_subnets": 25
|
|
260
|
-
},
|
|
261
130
|
"enable_parallel": true,
|
|
262
131
|
"max_workers": 10,
|
|
263
|
-
"enable_caching": false,
|
|
264
|
-
"cache_ttl": 300,
|
|
265
132
|
"enable_adaptive_batch_sizing": true,
|
|
266
133
|
"adaptive_batch_sizing": {
|
|
267
134
|
"initial_batch_size": 10,
|
|
@@ -316,7 +183,9 @@
|
|
|
316
183
|
"requests": "requests.json",
|
|
317
184
|
"machines": "machines.json"
|
|
318
185
|
}
|
|
319
|
-
}
|
|
186
|
+
},
|
|
187
|
+
"backup_enabled": true,
|
|
188
|
+
"backup_count": 5
|
|
320
189
|
},
|
|
321
190
|
"sql_strategy": {
|
|
322
191
|
"type": "sqlite",
|
|
@@ -326,6 +195,11 @@
|
|
|
326
195
|
"pool_size": 5,
|
|
327
196
|
"max_overflow": 10,
|
|
328
197
|
"timeout": 30
|
|
198
|
+
},
|
|
199
|
+
"database": {
|
|
200
|
+
"connection_timeout": 30,
|
|
201
|
+
"query_timeout": 60,
|
|
202
|
+
"max_connections": 10
|
|
329
203
|
}
|
|
330
204
|
},
|
|
331
205
|
"server": {
|
|
@@ -345,22 +219,6 @@
|
|
|
345
219
|
"secret_key": "your-secret-key-change-in-production",
|
|
346
220
|
"algorithm": "HS256",
|
|
347
221
|
"token_expiry": 3600
|
|
348
|
-
},
|
|
349
|
-
"provider_auth": {
|
|
350
|
-
"iam": {
|
|
351
|
-
"region": "us-east-1",
|
|
352
|
-
"profile": null,
|
|
353
|
-
"required_actions": [
|
|
354
|
-
"ec2:DescribeInstances",
|
|
355
|
-
"ec2:RunInstances",
|
|
356
|
-
"ec2:TerminateInstances"
|
|
357
|
-
]
|
|
358
|
-
},
|
|
359
|
-
"cognito": {
|
|
360
|
-
"user_pool_id": "us-east-1_XXXXXXXXX",
|
|
361
|
-
"client_id": "your-cognito-client-id",
|
|
362
|
-
"region": "us-east-1"
|
|
363
|
-
}
|
|
364
222
|
}
|
|
365
223
|
},
|
|
366
224
|
"cors": {
|
|
@@ -391,8 +249,6 @@
|
|
|
391
249
|
"recovery_timeout": 60,
|
|
392
250
|
"half_open_max_calls": 3
|
|
393
251
|
},
|
|
394
|
-
"request_timeout": 300,
|
|
395
|
-
"max_machines_per_request": 100,
|
|
396
252
|
"resource": {
|
|
397
253
|
"prefixes": {
|
|
398
254
|
"default": "",
|