LICENSE
MANIFEST.in
README.md
pyproject.toml
config/aws_templates.json
config/config.example.json
config/default_config.json
config/specs/aws/examples/asg-basic.json
config/specs/aws/examples/complete-default.json
config/specs/aws/examples/ec2fleet-attribute-based.json
config/specs/aws/examples/ec2fleet-capacity-optimized-prioritized.json
config/specs/aws/examples/ec2fleet-hpc-spot-diversified.json
config/specs/aws/examples/ec2fleet-price-capacity-optimized.json
config/specs/aws/examples/gpu-compute-cluster.json
config/specs/aws/examples/launch-template-advanced.json
config/specs/aws/examples/launch-template-basic.json
config/specs/aws/examples/launch-template-complete-default.json
config/specs/aws/examples/multi-tier-architecture.json
config/specs/aws/examples/runinstances-basic.json
config/specs/aws/examples/spotfleet-price-capacity-optimized.json
src/orb/__init__.py
src/orb/__main__.py
src/orb/_package.py
src/orb/run.py
src/orb/api/__init__.py
src/orb/api/dependencies.py
src/orb/api/py.typed
src/orb/api/server.py
src/orb/api/validation.py
src/orb/api/documentation/__init__.py
src/orb/api/documentation/examples.py
src/orb/api/documentation/openapi_config.py
src/orb/api/documentation/py.typed
src/orb/api/documentation/security_schemes.py
src/orb/api/middleware/__init__.py
src/orb/api/middleware/auth_middleware.py
src/orb/api/middleware/logging_middleware.py
src/orb/api/middleware/py.typed
src/orb/api/models/__init__.py
src/orb/api/models/base.py
src/orb/api/models/py.typed
src/orb/api/models/requests.py
src/orb/api/models/responses.py
src/orb/api/models/templates.py
src/orb/api/routers/__init__.py
src/orb/api/routers/machines.py
src/orb/api/routers/py.typed
src/orb/api/routers/requests.py
src/orb/api/routers/templates.py
src/orb/application/__init__.py
src/orb/application/decorators.py
src/orb/application/py.typed
src/orb/application/base/__init__.py
src/orb/application/base/command_handler.py
src/orb/application/base/event_handlers.py
src/orb/application/base/handlers.py
src/orb/application/base/provider_handlers.py
src/orb/application/base/py.typed
src/orb/application/commands/__init__.py
src/orb/application/commands/cleanup_handlers.py
src/orb/application/commands/machine_handlers.py
src/orb/application/commands/provider_handlers.py
src/orb/application/commands/py.typed
src/orb/application/commands/request_creation_handlers.py
src/orb/application/commands/request_handlers.py
src/orb/application/commands/request_lifecycle_handlers.py
src/orb/application/commands/request_sync_handlers.py
src/orb/application/commands/system.py
src/orb/application/commands/system_handlers.py
src/orb/application/commands/template_handlers.py
src/orb/application/dto/__init__.py
src/orb/application/dto/base.py
src/orb/application/dto/bulk_queries.py
src/orb/application/dto/bulk_responses.py
src/orb/application/dto/commands.py
src/orb/application/dto/interface_response.py
src/orb/application/dto/paginated_responses.py
src/orb/application/dto/py.typed
src/orb/application/dto/queries.py
src/orb/application/dto/responses.py
src/orb/application/dto/system.py
src/orb/application/dto/template_generation_dto.py
src/orb/application/events/__init__.py
src/orb/application/events/decorators.py
src/orb/application/events/py.typed
src/orb/application/events/base/__init__.py
src/orb/application/events/base/action_event_handler.py
src/orb/application/events/base/event_handler.py
src/orb/application/events/base/logging_event_handler.py
src/orb/application/events/base/py.typed
src/orb/application/events/bus/__init__.py
src/orb/application/events/bus/event_bus.py
src/orb/application/events/bus/py.typed
src/orb/application/events/handlers/__init__.py
src/orb/application/events/handlers/infrastructure_handlers.py
src/orb/application/events/handlers/machine_handlers.py
src/orb/application/events/handlers/metrics_event_handler.py
src/orb/application/events/handlers/py.typed
src/orb/application/events/handlers/request_handlers.py
src/orb/application/events/handlers/system_handlers.py
src/orb/application/events/handlers/template_handlers.py
src/orb/application/factories/__init__.py
src/orb/application/factories/request_dto_factory.py
src/orb/application/interfaces/__init__.py
src/orb/application/interfaces/command_handler.py
src/orb/application/interfaces/command_query.py
src/orb/application/interfaces/event_handler.py
src/orb/application/interfaces/infrastructure_handler.py
src/orb/application/interfaces/provider_handler.py
src/orb/application/interfaces/py.typed
src/orb/application/machine/__init__.py
src/orb/application/machine/commands.py
src/orb/application/machine/dto.py
src/orb/application/machine/py.typed
src/orb/application/machine/queries.py
src/orb/application/ports/__init__.py
src/orb/application/ports/cache_service_port.py
src/orb/application/ports/command_bus_port.py
src/orb/application/ports/error_response_port.py
src/orb/application/ports/query_bus_port.py
src/orb/application/ports/registry_port.py
src/orb/application/ports/scheduler_port.py
src/orb/application/ports/template_dto_port.py
src/orb/application/provider/__init__.py
src/orb/application/provider/commands.py
src/orb/application/provider/py.typed
src/orb/application/provider/queries.py
src/orb/application/queries/__init__.py
src/orb/application/queries/bulk_handlers.py
src/orb/application/queries/cleanup_query_handlers.py
src/orb/application/queries/machine_query_handlers.py
src/orb/application/queries/provider_handlers.py
src/orb/application/queries/py.typed
src/orb/application/queries/request_query_handlers.py
src/orb/application/queries/scheduler.py
src/orb/application/queries/scheduler_handlers.py
src/orb/application/queries/specialized_handlers.py
src/orb/application/queries/storage.py
src/orb/application/queries/storage_handlers.py
src/orb/application/queries/system.py
src/orb/application/queries/system_handlers.py
src/orb/application/queries/template_query_handlers.py
src/orb/application/request/__init__.py
src/orb/application/request/dto.py
src/orb/application/request/py.typed
src/orb/application/request/queries.py
src/orb/application/services/base_query_service.py
src/orb/application/services/deprovisioning_orchestrator.py
src/orb/application/services/event_publishing_service.py
src/orb/application/services/machine_grouping_service.py
src/orb/application/services/machine_sync_service.py
src/orb/application/services/native_spec_service.py
src/orb/application/services/provider_name_service.py
src/orb/application/services/provider_registry_service.py
src/orb/application/services/provider_validation_service.py
src/orb/application/services/provisioning_orchestration_service.py
src/orb/application/services/request_creation_service.py
src/orb/application/services/request_query_service.py
src/orb/application/services/request_status_management_service.py
src/orb/application/services/request_status_service.py
src/orb/application/services/scheduler_registry_service.py
src/orb/application/services/storage_registry_service.py
src/orb/application/services/template_defaults_service.py
src/orb/application/services/template_generation_service.py
src/orb/application/services/template_validation_service.py
src/orb/application/services/orchestration/__init__.py
src/orb/application/services/orchestration/acquire_machines.py
src/orb/application/services/orchestration/base.py
src/orb/application/services/orchestration/cancel_request.py
src/orb/application/services/orchestration/create_template.py
src/orb/application/services/orchestration/delete_template.py
src/orb/application/services/orchestration/dtos.py
src/orb/application/services/orchestration/get_machine.py
src/orb/application/services/orchestration/get_provider_config.py
src/orb/application/services/orchestration/get_provider_health.py
src/orb/application/services/orchestration/get_provider_metrics.py
src/orb/application/services/orchestration/get_request_status.py
src/orb/application/services/orchestration/get_scheduler_config.py
src/orb/application/services/orchestration/get_storage_config.py
src/orb/application/services/orchestration/get_template.py
src/orb/application/services/orchestration/list_machines.py
src/orb/application/services/orchestration/list_providers.py
src/orb/application/services/orchestration/list_requests.py
src/orb/application/services/orchestration/list_return_requests.py
src/orb/application/services/orchestration/list_scheduler_strategies.py
src/orb/application/services/orchestration/list_storage_strategies.py
src/orb/application/services/orchestration/list_templates.py
src/orb/application/services/orchestration/refresh_templates.py
src/orb/application/services/orchestration/return_machines.py
src/orb/application/services/orchestration/start_machines.py
src/orb/application/services/orchestration/stop_machines.py
src/orb/application/services/orchestration/update_template.py
src/orb/application/services/orchestration/validate_template.py
src/orb/application/template/__init__.py
src/orb/application/template/commands.py
src/orb/application/template/py.typed
src/orb/application/value_objects/__init__.py
src/orb/application/value_objects/batching_policy.py
src/orb/bootstrap/__init__.py
src/orb/bootstrap/core_services.py
src/orb/bootstrap/domain_services.py
src/orb/bootstrap/infrastructure_services.py
src/orb/bootstrap/monitoring_services.py
src/orb/bootstrap/orchestrator_registry.py
src/orb/bootstrap/port_registrations.py
src/orb/bootstrap/provider_services.py
src/orb/bootstrap/registry_services.py
src/orb/bootstrap/server_services.py
src/orb/bootstrap/services.py
src/orb/bootstrap/storage_services.py
src/orb/cli/__init__.py
src/orb/cli/args.py
src/orb/cli/args_extractor.py
src/orb/cli/completion.py
src/orb/cli/console.py
src/orb/cli/field_mapping.py
src/orb/cli/formatters.py
src/orb/cli/help_utils.py
src/orb/cli/main.py
src/orb/cli/py.typed
src/orb/cli/registry.py
src/orb/cli/response_formatter.py
src/orb/cli/router.py
src/orb/cli/factories/__init__.py
src/orb/cli/factories/cli_command_factory_orchestrator.py
src/orb/cli/factories/machine_command_factory.py
src/orb/cli/factories/provider_command_factory.py
src/orb/cli/factories/request_command_factory.py
src/orb/cli/factories/scheduler_command_factory.py
src/orb/cli/factories/storage_command_factory.py
src/orb/cli/factories/system_command_factory.py
src/orb/cli/factories/template_command_factory.py
src/orb/cli/factories/utility_command_factory.py
src/orb/config/__init__.py
src/orb/config/constants.py
src/orb/config/default_config.json
src/orb/config/installation_detector.py
src/orb/config/loader.py
src/orb/config/manager.py
src/orb/config/platform_dirs.py
src/orb/config/py.typed
src/orb/config/managers/__init__.py
src/orb/config/managers/cache_manager.py
src/orb/config/managers/configuration_manager.py
src/orb/config/managers/path_resolver.py
src/orb/config/managers/provider_manager.py
src/orb/config/managers/py.typed
src/orb/config/managers/type_converter.py
src/orb/config/schemas/__init__.py
src/orb/config/schemas/app_schema.py
src/orb/config/schemas/base_config.py
src/orb/config/schemas/cleanup_schema.py
src/orb/config/schemas/common_schema.py
src/orb/config/schemas/logging_schema.py
src/orb/config/schemas/metrics_schema.py
src/orb/config/schemas/native_spec_schema.py
src/orb/config/schemas/performance_schema.py
src/orb/config/schemas/provider_settings_registry.py
src/orb/config/schemas/provider_strategy_schema.py
src/orb/config/schemas/py.typed
src/orb/config/schemas/scheduler_schema.py
src/orb/config/schemas/server_schema.py
src/orb/config/schemas/storage_schema.py
src/orb/config/schemas/template_schema.py
src/orb/config/services/__init__.py
src/orb/config/services/config_loader_service.py
src/orb/config/services/path_resolution_service.py
src/orb/config/utils/__init__.py
src/orb/config/utils/env_expansion.py
src/orb/config/utils/py.typed
src/orb/config/validators/__init__.py
src/orb/config/validators/config_validator.py
src/orb/config/validators/py.typed
src/orb/domain/__init__.py
src/orb/domain/constants.py
src/orb/domain/py.typed
src/orb/domain/base/__init__.py
src/orb/domain/base/configuration_service.py
src/orb/domain/base/decorators.py
src/orb/domain/base/dependency_injection.py
src/orb/domain/base/di_contracts.py
src/orb/domain/base/domain_exceptions.py
src/orb/domain/base/domain_interfaces.py
src/orb/domain/base/entity.py
src/orb/domain/base/entity_pure.py
src/orb/domain/base/error.py
src/orb/domain/base/exceptions.py
src/orb/domain/base/operations.py
src/orb/domain/base/provider_interfaces.py
src/orb/domain/base/py.typed
src/orb/domain/base/results.py
src/orb/domain/base/utils.py
src/orb/domain/base/value_objects.py
src/orb/domain/base/value_objects_pure.py
src/orb/domain/base/contracts/template_contract.py
src/orb/domain/base/events/__init__.py
src/orb/domain/base/events/base_events.py
src/orb/domain/base/events/base_events_pure.py
src/orb/domain/base/events/domain_events.py
src/orb/domain/base/events/provider_events.py
src/orb/domain/base/events/py.typed
src/orb/domain/base/ports/__init__.py
src/orb/domain/base/ports/configuration_port.py
src/orb/domain/base/ports/console_port.py
src/orb/domain/base/ports/container_port.py
src/orb/domain/base/ports/error_handling_port.py
src/orb/domain/base/ports/event_publisher_port.py
src/orb/domain/base/ports/health_check_port.py
src/orb/domain/base/ports/logging_port.py
src/orb/domain/base/ports/path_resolution_port.py
src/orb/domain/base/ports/provider_cli_spec_port.py
src/orb/domain/base/ports/provider_config_port.py
src/orb/domain/base/ports/provider_discovery_port.py
src/orb/domain/base/ports/provider_monitoring_port.py
src/orb/domain/base/ports/provider_name_port.py
src/orb/domain/base/ports/provider_port.py
src/orb/domain/base/ports/provider_provisioning_port.py
src/orb/domain/base/ports/provider_registry_port.py
src/orb/domain/base/ports/provider_selection_port.py
src/orb/domain/base/ports/provider_template_port.py
src/orb/domain/base/ports/provider_validation_port.py
src/orb/domain/base/ports/provisioning_orchestration_port.py
src/orb/domain/base/ports/py.typed
src/orb/domain/base/ports/request_creation_port.py
src/orb/domain/base/ports/request_status_management_port.py
src/orb/domain/base/ports/spec_rendering_port.py
src/orb/domain/base/ports/storage_lifecycle_port.py
src/orb/domain/base/ports/storage_port.py
src/orb/domain/base/ports/storage_reader_port.py
src/orb/domain/base/ports/storage_writer_port.py
src/orb/domain/base/ports/template_adapter_port.py
src/orb/domain/base/ports/template_configuration_port.py
src/orb/domain/base/ports/template_example_generator_port.py
src/orb/domain/exceptions/image_resolution_error.py
src/orb/domain/machine/__init__.py
src/orb/domain/machine/aggregate.py
src/orb/domain/machine/exceptions.py
src/orb/domain/machine/machine_identifiers.py
src/orb/domain/machine/machine_metadata.py
src/orb/domain/machine/machine_status.py
src/orb/domain/machine/py.typed
src/orb/domain/machine/repository.py
src/orb/domain/machine/value_objects.py
src/orb/domain/request/__init__.py
src/orb/domain/request/aggregate.py
src/orb/domain/request/exceptions.py
src/orb/domain/request/py.typed
src/orb/domain/request/repository.py
src/orb/domain/request/request_identifiers.py
src/orb/domain/request/request_metadata.py
src/orb/domain/request/request_types.py
src/orb/domain/request/value_objects.py
src/orb/domain/services/filter_service.py
src/orb/domain/services/generic_filter_service.py
src/orb/domain/services/image_cache.py
src/orb/domain/services/image_resolution_service.py
src/orb/domain/services/template_validation_domain_service.py
src/orb/domain/services/timestamp_service.py
src/orb/domain/template/__init__.py
src/orb/domain/template/exceptions.py
src/orb/domain/template/extensions.py
src/orb/domain/template/factory.py
src/orb/domain/template/image_resolver.py
src/orb/domain/template/py.typed
src/orb/domain/template/repository.py
src/orb/domain/template/template_aggregate.py
src/orb/domain/template/value_objects.py
src/orb/domain/template/ports/template_defaults_port.py
src/orb/infrastructure/__init__.py
src/orb/infrastructure/constants.py
src/orb/infrastructure/lifecycle.py
src/orb/infrastructure/py.typed
src/orb/infrastructure/adapters/__init__.py
src/orb/infrastructure/adapters/cache_adapter.py
src/orb/infrastructure/adapters/configuration_adapter.py
src/orb/infrastructure/adapters/console_adapter.py
src/orb/infrastructure/adapters/container_adapter.py
src/orb/infrastructure/adapters/error_handling_adapter.py
src/orb/infrastructure/adapters/logging_adapter.py
src/orb/infrastructure/adapters/null_console_adapter.py
src/orb/infrastructure/adapters/path_resolution_adapter.py
src/orb/infrastructure/adapters/provider_discovery_adapter.py
src/orb/infrastructure/adapters/provider_selection_adapter.py
src/orb/infrastructure/adapters/py.typed
src/orb/infrastructure/adapters/storage_adapter.py
src/orb/infrastructure/adapters/template_configuration_adapter.py
src/orb/infrastructure/adapters/factories/__init__.py
src/orb/infrastructure/adapters/factories/container_adapter_factory.py
src/orb/infrastructure/adapters/factories/py.typed
src/orb/infrastructure/adapters/ports/__init__.py
src/orb/infrastructure/adapters/ports/py.typed
src/orb/infrastructure/adapters/ports/request_adapter_port.py
src/orb/infrastructure/adapters/ports/resource_provisioning_port.py
src/orb/infrastructure/adapters/ports/auth/__init__.py
src/orb/infrastructure/adapters/ports/auth/auth_port.py
src/orb/infrastructure/adapters/ports/auth/py.typed
src/orb/infrastructure/adapters/ports/auth/token_port.py
src/orb/infrastructure/adapters/ports/auth/user_port.py
src/orb/infrastructure/auth/__init__.py
src/orb/infrastructure/auth/py.typed
src/orb/infrastructure/auth/registry.py
src/orb/infrastructure/auth/strategy/__init__.py
src/orb/infrastructure/auth/strategy/bearer_token_strategy.py
src/orb/infrastructure/auth/strategy/bearer_token_strategy_enhanced.py
src/orb/infrastructure/auth/strategy/no_auth_strategy.py
src/orb/infrastructure/auth/strategy/py.typed
src/orb/infrastructure/auth/token_blacklist/__init__.py
src/orb/infrastructure/auth/token_blacklist/blacklist_port.py
src/orb/infrastructure/auth/token_blacklist/in_memory_blacklist.py
src/orb/infrastructure/auth/token_blacklist/redis_blacklist.py
src/orb/infrastructure/caching/__init__.py
src/orb/infrastructure/caching/ami_cache_service.py
src/orb/infrastructure/caching/in_memory_cache_service.py
src/orb/infrastructure/caching/py.typed
src/orb/infrastructure/caching/request_cache_service.py
src/orb/infrastructure/di/__init__.py
src/orb/infrastructure/di/buses.py
src/orb/infrastructure/di/container.py
src/orb/infrastructure/di/decorators.py
src/orb/infrastructure/di/exceptions.py
src/orb/infrastructure/di/handler_discovery.py
src/orb/infrastructure/di/lazy_config.py
src/orb/infrastructure/di/py.typed
src/orb/infrastructure/di/components/__init__.py
src/orb/infrastructure/di/components/cqrs_registry.py
src/orb/infrastructure/di/components/dependency_resolver.py
src/orb/infrastructure/di/components/py.typed
src/orb/infrastructure/di/components/service_registry.py
src/orb/infrastructure/error/__init__.py
src/orb/infrastructure/error/categories.py
src/orb/infrastructure/error/context.py
src/orb/infrastructure/error/decorators.py
src/orb/infrastructure/error/error_middleware.py
src/orb/infrastructure/error/exception_handler.py
src/orb/infrastructure/error/exception_type_mapper.py
src/orb/infrastructure/error/http_response_handler.py
src/orb/infrastructure/error/py.typed
src/orb/infrastructure/error/responses.py
src/orb/infrastructure/error/utilities.py
src/orb/infrastructure/events/__init__.py
src/orb/infrastructure/events/infrastructure_events.py
src/orb/infrastructure/events/publisher.py
src/orb/infrastructure/events/py.typed
src/orb/infrastructure/events/storage_events.py
src/orb/infrastructure/events/system_events.py
src/orb/infrastructure/handlers/__init__.py
src/orb/infrastructure/handlers/py.typed
src/orb/infrastructure/handlers/base/__init__.py
src/orb/infrastructure/handlers/base/base_handler.py
src/orb/infrastructure/handlers/base/py.typed
src/orb/infrastructure/interfaces/__init__.py
src/orb/infrastructure/interfaces/provider.py
src/orb/infrastructure/interfaces/py.typed
src/orb/infrastructure/logging/__init__.py
src/orb/infrastructure/logging/logger.py
src/orb/infrastructure/logging/logger_singleton.py
src/orb/infrastructure/logging/py.typed
src/orb/infrastructure/mocking/__init__.py
src/orb/infrastructure/mocking/dry_run_context.py
src/orb/infrastructure/mocking/py.typed
src/orb/infrastructure/patterns/__init__.py
src/orb/infrastructure/patterns/lazy_import.py
src/orb/infrastructure/patterns/py.typed
src/orb/infrastructure/patterns/singleton_access.py
src/orb/infrastructure/patterns/singleton_registry.py
src/orb/infrastructure/performance/performance_monitor.py
src/orb/infrastructure/registry/__init__.py
src/orb/infrastructure/registry/base_registry.py
src/orb/infrastructure/registry/py.typed
src/orb/infrastructure/registry/registry_factory.py
src/orb/infrastructure/resilience/__init__.py
src/orb/infrastructure/resilience/config.py
src/orb/infrastructure/resilience/exceptions.py
src/orb/infrastructure/resilience/py.typed
src/orb/infrastructure/resilience/retry_decorator.py
src/orb/infrastructure/resilience/strategy/__init__.py
src/orb/infrastructure/resilience/strategy/base.py
src/orb/infrastructure/resilience/strategy/circuit_breaker.py
src/orb/infrastructure/resilience/strategy/exponential.py
src/orb/infrastructure/resilience/strategy/py.typed
src/orb/infrastructure/scheduler/__init__.py
src/orb/infrastructure/scheduler/factory.py
src/orb/infrastructure/scheduler/py.typed
src/orb/infrastructure/scheduler/registration.py
src/orb/infrastructure/scheduler/registry.py
src/orb/infrastructure/scheduler/base/__init__.py
src/orb/infrastructure/scheduler/base/field_mapper.py
src/orb/infrastructure/scheduler/base/py.typed
src/orb/infrastructure/scheduler/base/strategy.py
src/orb/infrastructure/scheduler/default/__init__.py
src/orb/infrastructure/scheduler/default/default_strategy.py
src/orb/infrastructure/scheduler/default/field_mapper.py
src/orb/infrastructure/scheduler/default/py.typed
src/orb/infrastructure/scheduler/hostfactory/__init__.py
src/orb/infrastructure/scheduler/hostfactory/field_mapper.py
src/orb/infrastructure/scheduler/hostfactory/field_mappings.py
src/orb/infrastructure/scheduler/hostfactory/hostfactory_strategy.py
src/orb/infrastructure/scheduler/hostfactory/py.typed
src/orb/infrastructure/scheduler/hostfactory/response_formatter.py
src/orb/infrastructure/scheduler/hostfactory/transformations.py
src/orb/infrastructure/scheduler/hostfactory/scripts/getAvailableTemplates.bat
src/orb/infrastructure/scheduler/hostfactory/scripts/getAvailableTemplates.sh
src/orb/infrastructure/scheduler/hostfactory/scripts/getRequestStatus.bat
src/orb/infrastructure/scheduler/hostfactory/scripts/getRequestStatus.sh
src/orb/infrastructure/scheduler/hostfactory/scripts/getReturnRequests.bat
src/orb/infrastructure/scheduler/hostfactory/scripts/getReturnRequests.sh
src/orb/infrastructure/scheduler/hostfactory/scripts/invoke_provider.bat
src/orb/infrastructure/scheduler/hostfactory/scripts/invoke_provider.sh
src/orb/infrastructure/scheduler/hostfactory/scripts/requestMachines.bat
src/orb/infrastructure/scheduler/hostfactory/scripts/requestMachines.sh
src/orb/infrastructure/scheduler/hostfactory/scripts/requestReturnMachines.bat
src/orb/infrastructure/scheduler/hostfactory/scripts/requestReturnMachines.sh
src/orb/infrastructure/scheduler/hostfactory/scripts/templateWizard.bat
src/orb/infrastructure/scheduler/hostfactory/scripts/templateWizard.sh
src/orb/infrastructure/serialization/__init__.py
src/orb/infrastructure/serialization/encoders.py
src/orb/infrastructure/serialization/py.typed
src/orb/infrastructure/services/iso_timestamp_service.py
src/orb/infrastructure/services/machine_filter_service.py
src/orb/infrastructure/storage/__init__.py
src/orb/infrastructure/storage/concurrency.py
src/orb/infrastructure/storage/constants.py
src/orb/infrastructure/storage/exceptions.py
src/orb/infrastructure/storage/factory.py
src/orb/infrastructure/storage/metrics_decorators.py
src/orb/infrastructure/storage/py.typed
src/orb/infrastructure/storage/registration.py
src/orb/infrastructure/storage/registry.py
src/orb/infrastructure/storage/adapters/strategy_adapter.py
src/orb/infrastructure/storage/base/__init__.py
src/orb/infrastructure/storage/base/py.typed
src/orb/infrastructure/storage/base/repository.py
src/orb/infrastructure/storage/base/repository_mixin.py
src/orb/infrastructure/storage/base/strategy.py
src/orb/infrastructure/storage/base/unit_of_work.py
src/orb/infrastructure/storage/components/__init__.py
src/orb/infrastructure/storage/components/entity_cache.py
src/orb/infrastructure/storage/components/entity_serializer.py
src/orb/infrastructure/storage/components/event_publisher.py
src/orb/infrastructure/storage/components/file_manager.py
src/orb/infrastructure/storage/components/generic_serializer.py
src/orb/infrastructure/storage/components/lock_manager.py
src/orb/infrastructure/storage/components/py.typed
src/orb/infrastructure/storage/components/resource_manager.py
src/orb/infrastructure/storage/components/serialization_manager.py
src/orb/infrastructure/storage/components/sql_connection_manager.py
src/orb/infrastructure/storage/components/sql_query_builder.py
src/orb/infrastructure/storage/components/sql_serializer.py
src/orb/infrastructure/storage/components/transaction_manager.py
src/orb/infrastructure/storage/components/version_manager.py
src/orb/infrastructure/storage/factories/__init__.py
src/orb/infrastructure/storage/factories/machine_storage_factory.py
src/orb/infrastructure/storage/factories/request_storage_factory.py
src/orb/infrastructure/storage/factories/storage_factory_orchestrator.py
src/orb/infrastructure/storage/factories/template_storage_factory.py
src/orb/infrastructure/storage/interfaces/__init__.py
src/orb/infrastructure/storage/interfaces/batch_storage.py
src/orb/infrastructure/storage/interfaces/storage_reader.py
src/orb/infrastructure/storage/interfaces/storage_writer.py
src/orb/infrastructure/storage/interfaces/transactional_storage.py
src/orb/infrastructure/storage/json/__init__.py
src/orb/infrastructure/storage/json/py.typed
src/orb/infrastructure/storage/json/registration.py
src/orb/infrastructure/storage/json/strategy.py
src/orb/infrastructure/storage/json/template.py
src/orb/infrastructure/storage/json/unit_of_work.py
src/orb/infrastructure/storage/repositories/__init__.py
src/orb/infrastructure/storage/repositories/machine_repository.py
src/orb/infrastructure/storage/repositories/py.typed
src/orb/infrastructure/storage/repositories/request_repository.py
src/orb/infrastructure/storage/repositories/template_repository.py
src/orb/infrastructure/storage/sql/__init__.py
src/orb/infrastructure/storage/sql/models.py
src/orb/infrastructure/storage/sql/py.typed
src/orb/infrastructure/storage/sql/registration.py
src/orb/infrastructure/storage/sql/strategy.py
src/orb/infrastructure/storage/sql/unit_of_work.py
src/orb/infrastructure/template/__init__.py
src/orb/infrastructure/template/configuration_manager.py
src/orb/infrastructure/template/dtos.py
src/orb/infrastructure/template/jinja_spec_renderer.py
src/orb/infrastructure/template/py.typed
src/orb/infrastructure/template/template_cache_service.py
src/orb/infrastructure/template/template_repository_impl.py
src/orb/infrastructure/template/services/template_storage_service.py
src/orb/infrastructure/utilities/__init__.py
src/orb/infrastructure/utilities/config_utils.py
src/orb/infrastructure/utilities/json_utils.py
src/orb/infrastructure/utilities/network_utils.py
src/orb/infrastructure/utilities/py.typed
src/orb/infrastructure/utilities/common/__init__.py
src/orb/infrastructure/utilities/common/date_utils.py
src/orb/infrastructure/utilities/common/deep_merge.py
src/orb/infrastructure/utilities/common/file_operations.py
src/orb/infrastructure/utilities/common/file_utils.py
src/orb/infrastructure/utilities/common/py.typed
src/orb/infrastructure/utilities/common/resource_naming.py
src/orb/infrastructure/utilities/common/serialization.py
src/orb/infrastructure/utilities/common/string_utils.py
src/orb/infrastructure/utilities/common/collections/__init__.py
src/orb/infrastructure/utilities/common/collections/filtering.py
src/orb/infrastructure/utilities/common/collections/grouping.py
src/orb/infrastructure/utilities/common/collections/py.typed
src/orb/infrastructure/utilities/common/collections/transforming.py
src/orb/infrastructure/utilities/common/collections/validation.py
src/orb/infrastructure/utilities/factories/__init__.py
src/orb/infrastructure/utilities/factories/py.typed
src/orb/infrastructure/utilities/factories/repository_factory.py
src/orb/infrastructure/utilities/factories/sql_engine_factory.py
src/orb/infrastructure/utilities/file/__init__.py
src/orb/infrastructure/utilities/file/binary_utils.py
src/orb/infrastructure/utilities/file/directory_utils.py
src/orb/infrastructure/utilities/file/file_operations.py
src/orb/infrastructure/utilities/file/json_utils.py
src/orb/infrastructure/utilities/file/py.typed
src/orb/infrastructure/utilities/file/text_utils.py
src/orb/infrastructure/utilities/file/yaml_utils.py
src/orb/infrastructure/validation/__init__.py
src/orb/infrastructure/validation/input_validator.py
src/orb/infrastructure/validation/secure_input.py
src/orb/infrastructure/validation/startup_validator.py
src/orb/interface/__init__.py
src/orb/interface/command_handlers.py
src/orb/interface/config_command_handlers.py
src/orb/interface/health_command_handler.py
src/orb/interface/infrastructure_command_handler.py
src/orb/interface/init_command_handler.py
src/orb/interface/machine_command_handlers.py
src/orb/interface/mcp_command_handlers.py
src/orb/interface/provider_config_handler.py
src/orb/interface/py.typed
src/orb/interface/request_command_handlers.py
src/orb/interface/response_formatting_service.py
src/orb/interface/scheduler_command_handlers.py
src/orb/interface/serve_command_handler.py
src/orb/interface/storage_command_handlers.py
src/orb/interface/system_command_handlers.py
src/orb/interface/template_command_handlers.py
src/orb/interface/templates_generate_handler.py
src/orb/interface/mcp/server/core.py
src/orb/interface/mcp/server/handler.py
src/orb/mcp/__init__.py
src/orb/mcp/discovery.py
src/orb/mcp/py.typed
src/orb/mcp/tools.py
src/orb/monitoring/__init__.py
src/orb/monitoring/health.py
src/orb/monitoring/metrics.py
src/orb/monitoring/py.typed
src/orb/providers/__init__.py
src/orb/providers/config_builder.py
src/orb/providers/config_validator.py
src/orb/providers/py.typed
src/orb/providers/registration.py
src/orb/providers/results.py
src/orb/providers/aws/__init__.py
src/orb/providers/aws/health.py
src/orb/providers/aws/profile_discovery.py
src/orb/providers/aws/py.typed
src/orb/providers/aws/registration.py
src/orb/providers/aws/session_factory.py
src/orb/providers/aws/adapters/__init__.py
src/orb/providers/aws/adapters/template_example_generator_adapter.py
src/orb/providers/aws/application/__init__.py
src/orb/providers/aws/application/py.typed
src/orb/providers/aws/application/events/__init__.py
src/orb/providers/aws/application/events/aws_handlers.py
src/orb/providers/aws/application/events/py.typed
src/orb/providers/aws/application/machine/__init__.py
src/orb/providers/aws/application/machine/py.typed
src/orb/providers/aws/application/request/__init__.py
src/orb/providers/aws/application/request/py.typed
src/orb/providers/aws/application/template/__init__.py
src/orb/providers/aws/application/template/py.typed
src/orb/providers/aws/auth/__init__.py
src/orb/providers/aws/auth/cognito_strategy.py
src/orb/providers/aws/auth/iam_strategy.py
src/orb/providers/aws/auth/py.typed
src/orb/providers/aws/cli/__init__.py
src/orb/providers/aws/cli/aws_cli_spec.py
src/orb/providers/aws/config/__init__.py
src/orb/providers/aws/config/aws_defaults.json
src/orb/providers/aws/configuration/__init__.py
src/orb/providers/aws/configuration/batch_sizes_config.py
src/orb/providers/aws/configuration/cleanup_config.py
src/orb/providers/aws/configuration/config.py
src/orb/providers/aws/configuration/naming_config.py
src/orb/providers/aws/configuration/py.typed
src/orb/providers/aws/configuration/template_extension.py
src/orb/providers/aws/configuration/validator.py
src/orb/providers/aws/domain/__init__.py
src/orb/providers/aws/domain/py.typed
src/orb/providers/aws/domain/machine/__init__.py
src/orb/providers/aws/domain/machine/py.typed
src/orb/providers/aws/domain/machine/value_objects.py
src/orb/providers/aws/domain/request/__init__.py
src/orb/providers/aws/domain/request/py.typed
src/orb/providers/aws/domain/request/value_objects.py
src/orb/providers/aws/domain/services/ami_resolver.py
src/orb/providers/aws/domain/template/__init__.py
src/orb/providers/aws/domain/template/aws_template_aggregate.py
src/orb/providers/aws/domain/template/py.typed
src/orb/providers/aws/domain/template/value_objects.py
src/orb/providers/aws/exceptions/__init__.py
src/orb/providers/aws/exceptions/aws_exceptions.py
src/orb/providers/aws/exceptions/py.typed
src/orb/providers/aws/infrastructure/__init__.py
src/orb/providers/aws/infrastructure/aws_client.py
src/orb/providers/aws/infrastructure/aws_client_factory.py
src/orb/providers/aws/infrastructure/aws_handler_factory.py
src/orb/providers/aws/infrastructure/dry_run_adapter.py
src/orb/providers/aws/infrastructure/py.typed
src/orb/providers/aws/infrastructure/tags.py
src/orb/providers/aws/infrastructure/utils.py
src/orb/providers/aws/infrastructure/adapters/__init__.py
src/orb/providers/aws/infrastructure/adapters/aws_provisioning_adapter.py
src/orb/providers/aws/infrastructure/adapters/aws_validation_adapter.py
src/orb/providers/aws/infrastructure/adapters/machine_adapter.py
src/orb/providers/aws/infrastructure/adapters/py.typed
src/orb/providers/aws/infrastructure/adapters/request_adapter.py
src/orb/providers/aws/infrastructure/adapters/template_adapter.py
src/orb/providers/aws/infrastructure/caching/aws_image_cache.py
src/orb/providers/aws/infrastructure/handlers/__init__.py
src/orb/providers/aws/infrastructure/handlers/base_handler.py
src/orb/providers/aws/infrastructure/handlers/fleet_release_policy.py
src/orb/providers/aws/infrastructure/handlers/py.typed
src/orb/providers/aws/infrastructure/handlers/asg/__init__.py
src/orb/providers/aws/infrastructure/handlers/asg/capacity_manager.py
src/orb/providers/aws/infrastructure/handlers/asg/config_builder.py
src/orb/providers/aws/infrastructure/handlers/asg/handler.py
src/orb/providers/aws/infrastructure/handlers/components/__init__.py
src/orb/providers/aws/infrastructure/handlers/components/py.typed
src/orb/providers/aws/infrastructure/handlers/ec2_fleet/__init__.py
src/orb/providers/aws/infrastructure/handlers/ec2_fleet/config_builder.py
src/orb/providers/aws/infrastructure/handlers/ec2_fleet/handler.py
src/orb/providers/aws/infrastructure/handlers/ec2_fleet/release_manager.py
src/orb/providers/aws/infrastructure/handlers/run_instances/__init__.py
src/orb/providers/aws/infrastructure/handlers/run_instances/handler.py
src/orb/providers/aws/infrastructure/handlers/shared/__init__.py
src/orb/providers/aws/infrastructure/handlers/shared/base_config_builder.py
src/orb/providers/aws/infrastructure/handlers/shared/base_context_mixin.py
src/orb/providers/aws/infrastructure/handlers/shared/fleet_grouping_mixin.py
src/orb/providers/aws/infrastructure/handlers/shared/fleet_override_builder.py
src/orb/providers/aws/infrastructure/handlers/shared/instance_override_builder.py
src/orb/providers/aws/infrastructure/handlers/spot_fleet/__init__.py
src/orb/providers/aws/infrastructure/handlers/spot_fleet/config_builder.py
src/orb/providers/aws/infrastructure/handlers/spot_fleet/handler.py
src/orb/providers/aws/infrastructure/handlers/spot_fleet/release_manager.py
src/orb/providers/aws/infrastructure/handlers/spot_fleet/validator.py
src/orb/providers/aws/infrastructure/instrumentation/__init__.py
src/orb/providers/aws/infrastructure/instrumentation/botocore_metrics.py
src/orb/providers/aws/infrastructure/launch_template/__init__.py
src/orb/providers/aws/infrastructure/launch_template/manager.py
src/orb/providers/aws/infrastructure/launch_template/py.typed
src/orb/providers/aws/infrastructure/services/aws_image_resolution_service.py
src/orb/providers/aws/infrastructure/services/aws_native_spec_service.py
src/orb/providers/aws/infrastructure/template/__init__.py
src/orb/providers/aws/infrastructure/template/ami_cache.py
src/orb/providers/aws/infrastructure/template/py.typed
src/orb/providers/aws/models/infrastructure_models.py
src/orb/providers/aws/persistence/__init__.py
src/orb/providers/aws/persistence/py.typed
src/orb/providers/aws/resilience/__init__.py
src/orb/providers/aws/resilience/aws_retry_config.py
src/orb/providers/aws/resilience/aws_retry_errors.py
src/orb/providers/aws/resilience/aws_retry_strategy.py
src/orb/providers/aws/resilience/py.typed
src/orb/providers/aws/services/capability_service.py
src/orb/providers/aws/services/ec2_fleet_management_service.py
src/orb/providers/aws/services/handler_registry.py
src/orb/providers/aws/services/health_check_service.py
src/orb/providers/aws/services/infrastructure_discovery_service.py
src/orb/providers/aws/services/instance_operation_service.py
src/orb/providers/aws/services/template_validation_service.py
src/orb/providers/aws/storage/__init__.py
src/orb/providers/aws/storage/config.py
src/orb/providers/aws/storage/py.typed
src/orb/providers/aws/storage/registration.py
src/orb/providers/aws/storage/strategy.py
src/orb/providers/aws/storage/unit_of_work.py
src/orb/providers/aws/storage/components/__init__.py
src/orb/providers/aws/storage/components/dynamodb_client_manager.py
src/orb/providers/aws/storage/components/dynamodb_converter.py
src/orb/providers/aws/storage/components/dynamodb_transaction_manager.py
src/orb/providers/aws/storage/components/py.typed
src/orb/providers/aws/strategy/__init__.py
src/orb/providers/aws/strategy/aws_provider_adapter.py
src/orb/providers/aws/strategy/aws_provider_strategy.py
src/orb/providers/aws/strategy/py.typed
src/orb/providers/aws/utilities/__init__.py
src/orb/providers/aws/utilities/aws_operations.py
src/orb/providers/aws/utilities/py.typed
src/orb/providers/aws/utilities/ssm_utils.py
src/orb/providers/aws/utilities/ec2/__init__.py
src/orb/providers/aws/utilities/ec2/instances.py
src/orb/providers/aws/utilities/ec2/py.typed
src/orb/providers/aws/validation/__init__.py
src/orb/providers/aws/validation/region_validator.py
src/orb/providers/base/__init__.py
src/orb/providers/base/py.typed
src/orb/providers/base/strategy/__init__.py
src/orb/providers/base/strategy/base_provider_strategy.py
src/orb/providers/base/strategy/composite_strategy.py
src/orb/providers/base/strategy/fallback_strategy.py
src/orb/providers/base/strategy/load_balancing_strategy.py
src/orb/providers/base/strategy/provider_selector.py
src/orb/providers/base/strategy/provider_strategy.py
src/orb/providers/base/strategy/py.typed
src/orb/providers/base/strategy/selector_utils.py
src/orb/providers/base/strategy/load_balancing/__init__.py
src/orb/providers/base/strategy/load_balancing/algorithms.py
src/orb/providers/base/strategy/load_balancing/config.py
src/orb/providers/base/strategy/load_balancing/py.typed
src/orb/providers/base/strategy/load_balancing/stats.py
src/orb/providers/base/strategy/load_balancing/strategy.py
src/orb/providers/registry/__init__.py
src/orb/providers/registry/provider_registry.py
src/orb/providers/registry/types.py
src/orb/providers/services/provider_execution_service.py
src/orb/sdk/__init__.py
src/orb/sdk/client.py
src/orb/sdk/config.py
src/orb/sdk/discovery.py
src/orb/sdk/exceptions.py
src/orb/sdk/middleware.py
src/orb/sdk/parameter_mapping.py
src/orb/sdk/protocols.py
src/orb/sdk/py.typed
src/orb_py.egg-info/PKG-INFO
src/orb_py.egg-info/SOURCES.txt
src/orb_py.egg-info/dependency_links.txt
src/orb_py.egg-info/entry_points.txt
src/orb_py.egg-info/requires.txt
src/orb_py.egg-info/top_level.txt