frogml 1.2.49__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.
- {frogml-1.2.49 → frogml-2.0.0}/PKG-INFO +1 -1
- {frogml-1.2.49 → frogml-2.0.0}/frogml/__init__.py +1 -1
- frogml-2.0.0/frogml/core/clients/batch_job_management/client.py +604 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/batch_job_management/executions_config.py +10 -3
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/build_orchestrator/build_model_request_getter.py +7 -1
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/build_orchestrator/client.py +108 -67
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/build_orchestrator/internal_client.py +42 -38
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/feature_store/management_client.py +58 -39
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/feature_store/operator_client.py +6 -4
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/model_group_management/client.py +5 -2
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/model_management/client.py +25 -8
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/model_version_manager/build_model_version_dto.py +4 -1
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/model_version_manager/client.py +67 -68
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/exceptions/__init__.py +20 -2
- frogml-2.0.0/frogml/core/exceptions/frogml_exception.py +37 -0
- frogml-2.0.0/frogml/core/exceptions/frogml_general_build_exception.py +21 -0
- frogml-2.0.0/frogml/core/exceptions/frogml_grpc_address_exception.py +20 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/exceptions/frogml_http_exception.py +3 -1
- frogml-2.0.0/frogml/core/exceptions/frogml_login_exception.py +19 -0
- frogml-2.0.0/frogml/core/exceptions/frogml_not_found_exception.py +19 -0
- frogml-2.0.0/frogml/core/exceptions/frogml_remote_build_failed.py +5 -0
- frogml-2.0.0/frogml/core/exceptions/frogml_token_exception.py +19 -0
- frogml-2.0.0/frogml/core/exceptions/grpc_status_mapping.py +43 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/strategy/git/git_strategy.py +10 -2
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/build_logic/phases/phase_010_fetch_model/pre_fetch_validation_step.py +3 -2
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/build_logic/phases/phase_020_remote_register_frogml_build/upload_step.py +13 -10
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/build_logic/run_handlers/programmatic_phase_run_handler.py +8 -3
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/build_logic/tools/files.py +1 -2
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/model_loggers_utils.py +21 -8
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/tool/auth/auth_client.py +1 -1
- frogml-2.0.0/frogml/core/inner/tool/grpc/grpc_try_wrapping.py +129 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/tool/protobuf_factory.py +8 -2
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/frogml_client/client.py +29 -10
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/adapters/input_adapters/numpy_input_adapter.py +6 -1
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/adapters/output_adapters/numpy_output_adapter.py +4 -1
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/decorators/api.py +6 -1
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/tools/adapters/output.py +6 -2
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/catboost/__init__.py +4 -1
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/huggingface/__init__.py +4 -1
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/model_loggers/catboost_model_version_manager.py +4 -1
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/model_loggers/huggingface_model_version_manager.py +10 -2
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/model_loggers/onnx_model_version_manager.py +4 -1
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/model_loggers/pytorch_model_version_manager.py +4 -1
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/model_loggers/scikit_learn_model_version_manager.py +4 -1
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/onnx/__init__.py +4 -1
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/pytorch/__init__.py +4 -1
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/scikit_learn/__init__.py +4 -1
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/utils/jml/customer_client.py +1 -1
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/utils/storage.py +4 -1
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/utils/validations.py +10 -2
- {frogml-1.2.49 → frogml-2.0.0}/frogml_services_mock/mocks/batch_job_manager_service.py +11 -9
- {frogml-1.2.49 → frogml-2.0.0}/frogml_services_mock/mocks/build_orchestrator_service_api.py +4 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml_services_mock/mocks/ecosystem_service_api.py +1 -2
- {frogml-1.2.49 → frogml-2.0.0}/frogml_services_mock/mocks/model_group_management_service.py +20 -9
- {frogml-1.2.49 → frogml-2.0.0}/frogml_services_mock/mocks/model_version_manager_service.py +3 -1
- {frogml-1.2.49 → frogml-2.0.0}/frogml_services_mock/mocks/project_manager_service.py +6 -2
- {frogml-1.2.49 → frogml-2.0.0}/pyproject.toml +1 -1
- frogml-1.2.49/frogml/core/clients/batch_job_management/client.py +0 -592
- frogml-1.2.49/frogml/core/exceptions/frogml_decode_exception.py +0 -7
- frogml-1.2.49/frogml/core/exceptions/frogml_exception.py +0 -7
- frogml-1.2.49/frogml/core/exceptions/frogml_external_exception.py +0 -11
- frogml-1.2.49/frogml/core/exceptions/frogml_general_build_exception.py +0 -13
- frogml-1.2.49/frogml/core/exceptions/frogml_grpc_address_exception.py +0 -9
- frogml-1.2.49/frogml/core/exceptions/frogml_load_model_failed_exception.py +0 -10
- frogml-1.2.49/frogml/core/exceptions/frogml_login_exception.py +0 -8
- frogml-1.2.49/frogml/core/exceptions/frogml_not_found_exception.py +0 -6
- frogml-1.2.49/frogml/core/exceptions/frogml_remote_build_failed.py +0 -5
- frogml-1.2.49/frogml/core/exceptions/frogml_token_exception.py +0 -7
- frogml-1.2.49/frogml/core/exceptions/quiet_error.py +0 -22
- frogml-1.2.49/frogml/core/inner/tool/grpc/grpc_try_wrapping.py +0 -150
- {frogml-1.2.49 → frogml-2.0.0}/README.md +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/com/jfrog/ml/model/deployment/v1/auto_scaling_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/com/jfrog/ml/model/deployment/v1/auto_scaling_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/com/jfrog/ml/model/deployment/v1/auto_scaling_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/com/jfrog/ml/model/deployment/v1/deployment_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/com/jfrog/ml/model/deployment/v1/deployment_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/com/jfrog/ml/model/deployment/v1/deployment_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/com/jfrog/ml/model/deployment/v1/deployment_service_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/com/jfrog/ml/model/deployment/v1/deployment_service_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/com/jfrog/ml/model/deployment/v1/deployment_service_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/com/jfrog/ml/model/deployment/v1/environment_variables_configuration_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/com/jfrog/ml/model/deployment/v1/environment_variables_configuration_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/com/jfrog/ml/model/deployment/v1/environment_variables_configuration_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/com/jfrog/ml/model/deployment/v1/model_artifact_identifier_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/com/jfrog/ml/model/deployment/v1/model_artifact_identifier_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/com/jfrog/ml/model/deployment/v1/model_artifact_identifier_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/com/jfrog/ml/model/deployment/v1/model_deployment_brief_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/com/jfrog/ml/model/deployment/v1/model_deployment_brief_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/com/jfrog/ml/model/deployment/v1/model_deployment_brief_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/com/jfrog/ml/model/deployment/v1/model_deployment_filter_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/com/jfrog/ml/model/deployment/v1/model_deployment_filter_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/com/jfrog/ml/model/deployment/v1/model_deployment_filter_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/com/jfrog/ml/model/deployment/v1/probes_configuration_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/com/jfrog/ml/model/deployment/v1/probes_configuration_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/com/jfrog/ml/model/deployment/v1/probes_configuration_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/com/jfrog/ml/model/deployment/v1/realtime_deployment_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/com/jfrog/ml/model/deployment/v1/realtime_deployment_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/com/jfrog/ml/model/deployment/v1/realtime_deployment_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/com/jfrog/ml/model/deployment/v1/resource_configuration_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/com/jfrog/ml/model/deployment/v1/resource_configuration_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/com/jfrog/ml/model/deployment/v1/resource_configuration_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/jfml/hosting_gateway/v1/build_upload_url_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/jfml/hosting_gateway/v1/build_upload_url_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/jfml/hosting_gateway/v1/build_upload_url_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/jfml/hosting_gateway/v1/hosting_gateway_service_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/jfml/hosting_gateway/v1/hosting_gateway_service_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/jfml/hosting_gateway/v1/hosting_gateway_service_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/jfml/model_version/v1/artifact_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/jfml/model_version/v1/artifact_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/jfml/model_version/v1/artifact_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/jfml/model_version/v1/build_spec_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/jfml/model_version/v1/build_spec_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/jfml/model_version/v1/build_spec_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/jfml/model_version/v1/model_repository_spec_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/jfml/model_version/v1/model_repository_spec_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/jfml/model_version/v1/model_repository_spec_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/jfml/model_version/v1/model_version_framework_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/jfml/model_version/v1/model_version_framework_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/jfml/model_version/v1/model_version_framework_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/jfml/model_version/v1/model_version_manager_service_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/jfml/model_version/v1/model_version_manager_service_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/jfml/model_version/v1/model_version_manager_service_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/jfml/model_version/v1/model_version_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/jfml/model_version/v1/model_version_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/jfml/model_version/v1/model_version_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/account/v1/account_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/account/v1/account_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/account/v1/account_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/account/v1/account_service_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/account/v1/account_service_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/account/v1/account_service_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/account/v1/jfrog_tenant_details_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/account/v1/jfrog_tenant_details_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/account/v1/jfrog_tenant_details_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/account/v1/personalization_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/account/v1/personalization_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/account/v1/personalization_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/account/v1/preferences_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/account/v1/preferences_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/account/v1/preferences_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/account/v1/terms_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/account/v1/terms_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/account/v1/terms_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/authenticated_user/v1/authenticated_user_service_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/authenticated_user/v1/authenticated_user_service_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/authenticated_user/v1/authenticated_user_service_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/authenticated_user/v1/credentials_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/authenticated_user/v1/credentials_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/authenticated_user/v1/credentials_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/authenticated_user/v1/details_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/authenticated_user/v1/details_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/authenticated_user/v1/details_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/cluster/v2/cluster_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/cluster/v2/cluster_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/cluster/v2/cluster_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/cluster/v2/cluster_service_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/cluster/v2/cluster_service_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/cluster/v2/cluster_service_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/container_registry_config_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/container_registry_config_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/container_registry_config_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/creds/auth_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/creds/auth_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/creds/auth_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/creds/secret_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/creds/secret_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/creds/secret_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/data_catalog_config_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/data_catalog_config_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/data_catalog_config_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/external/databricks/auth_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/external/databricks/auth_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/external/databricks/auth_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/external/elasticsearch_config_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/external/elasticsearch_config_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/external/elasticsearch_config_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/external/kafka_config_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/external/kafka_config_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/external/kafka_config_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/external/prometheus_config_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/external/prometheus_config_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/external/prometheus_config_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/external/redis_config_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/external/redis_config_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/external/redis_config_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/external/victoriametrics_config_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/external/victoriametrics_config_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/external/victoriametrics_config_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/feature_store_config_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/feature_store_config_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/feature_store_config_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/hosting/aws/auth_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/hosting/aws/auth_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/hosting/aws/auth_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/hosting/azure/auth_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/hosting/azure/auth_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/hosting/azure/auth_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/hosting_config_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/hosting_config_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/hosting_config_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/logs_storage_config_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/logs_storage_config_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/logs_storage_config_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/model_analytics_storage_config_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/model_analytics_storage_config_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/model_analytics_storage_config_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/network_config_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/network_config_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/network_config_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/object_storage_config_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/object_storage_config_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/object_storage_config_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/observability_config_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/observability_config_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/observability_config_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/runtime_config_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/runtime_config_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/runtime_config_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/sql_engine_config_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/sql_engine_config_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/runtime_configuration/v0/sql_engine_config_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/v0/authentication/authentication_service_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/v0/authentication/authentication_service_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/v0/authentication/authentication_service_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/v0/environments/configuration_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/v0/environments/configuration_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/v0/environments/configuration_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/v0/environments/environment_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/v0/environments/environment_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/v0/environments/environment_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/v0/environments/environment_service_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/v0/environments/environment_service_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/v0/environments/environment_service_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/v0/environments/personalization_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/v0/environments/personalization_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/v0/environments/personalization_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/v0/users/user_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/v0/users/user_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/v0/users/user_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/v1/environments/environment_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/v1/environments/environment_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/v1/environments/environment_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/v1/environments/environment_service_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/v1/environments/environment_service_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/administration/v1/environments/environment_service_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/admiral/secret/v0/account_secret_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/admiral/secret/v0/account_secret_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/admiral/secret/v0/account_secret_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/admiral/secret/v0/secret_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/admiral/secret/v0/secret_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/admiral/secret/v0/secret_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/admiral/secret/v0/secret_service_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/admiral/secret/v0/secret_service_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/admiral/secret/v0/secret_service_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/admiral/secret/v0/system_secret_service_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/admiral/secret/v0/system_secret_service_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/admiral/secret/v0/system_secret_service_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/admiral/user_application_instance/v0/user_application_instance_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/admiral/user_application_instance/v0/user_application_instance_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/admiral/user_application_instance/v0/user_application_instance_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/admiral/user_application_instance/v0/user_application_instance_service_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/admiral/user_application_instance/v0/user_application_instance_service_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/admiral/user_application_instance/v0/user_application_instance_service_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/analytics/analytics_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/analytics/analytics_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/analytics/analytics_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/analytics/analytics_service_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/analytics/analytics_service_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/analytics/analytics_service_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/artifactory_settings/artifactory_settings_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/artifactory_settings/artifactory_settings_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/artifactory_settings/artifactory_settings_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/audience/v1/audience_api_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/audience/v1/audience_api_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/audience/v1/audience_api_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/audience/v1/audience_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/audience/v1/audience_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/audience/v1/audience_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/auto_scaling/v1/auto_scaling_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/auto_scaling/v1/auto_scaling_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/auto_scaling/v1/auto_scaling_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/auto_scaling/v1/auto_scaling_service_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/auto_scaling/v1/auto_scaling_service_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/auto_scaling/v1/auto_scaling_service_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/automation/v1/action_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/automation/v1/action_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/automation/v1/action_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/automation/v1/auto_scaling_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/automation/v1/auto_scaling_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/automation/v1/auto_scaling_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/automation/v1/automation_execution_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/automation/v1/automation_execution_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/automation/v1/automation_execution_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/automation/v1/automation_management_service_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/automation/v1/automation_management_service_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/automation/v1/automation_management_service_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/automation/v1/automation_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/automation/v1/automation_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/automation/v1/automation_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/automation/v1/common_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/automation/v1/common_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/automation/v1/common_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/automation/v1/notification_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/automation/v1/notification_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/automation/v1/notification_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/automation/v1/trigger_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/automation/v1/trigger_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/automation/v1/trigger_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/batch_job/v1/batch_job_events_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/batch_job/v1/batch_job_events_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/batch_job/v1/batch_job_events_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/batch_job/v1/batch_job_resources_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/batch_job/v1/batch_job_resources_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/batch_job/v1/batch_job_resources_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/batch_job/v1/batch_job_service_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/batch_job/v1/batch_job_service_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/batch_job/v1/batch_job_service_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/build/v1/build_api_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/build/v1/build_api_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/build/v1/build_api_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/build/v1/build_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/build/v1/build_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/build/v1/build_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/build_settings/build_settings_api_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/build_settings/build_settings_api_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/build_settings/build_settings_api_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/build_settings/build_settings_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/build_settings/build_settings_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/build_settings/build_settings_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/builds/build_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/builds/build_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/builds/build_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/builds/build_url_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/builds/build_url_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/builds/build_url_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/builds/build_values_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/builds/build_values_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/builds/build_values_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/builds/builds_orchestrator_service_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/builds/builds_orchestrator_service_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/builds/builds_orchestrator_service_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/builds/builds_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/builds/builds_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/builds/builds_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/builds/internal_builds_orchestrator_service_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/builds/internal_builds_orchestrator_service_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/builds/internal_builds_orchestrator_service_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/data_versioning/data_versioning_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/data_versioning/data_versioning_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/data_versioning/data_versioning_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/data_versioning/data_versioning_service_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/data_versioning/data_versioning_service_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/data_versioning/data_versioning_service_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/deployment/alert_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/deployment/alert_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/deployment/alert_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/deployment/alert_service_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/deployment/alert_service_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/deployment/alert_service_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/deployment/deployment_messages_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/deployment/deployment_messages_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/deployment/deployment_messages_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/deployment/deployment_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/deployment/deployment_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/deployment/deployment_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/deployment/deployment_service_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/deployment/deployment_service_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/deployment/deployment_service_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/ecosystem/jfrog/v0/jfrog_tenant_info_service_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/ecosystem/jfrog/v0/jfrog_tenant_info_service_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/ecosystem/jfrog/v0/jfrog_tenant_info_service_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/ecosystem/jfrog/v0/jfrog_tenant_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/ecosystem/jfrog/v0/jfrog_tenant_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/ecosystem/jfrog/v0/jfrog_tenant_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/ecosystem/jfrog/v0/token_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/ecosystem/jfrog/v0/token_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/ecosystem/jfrog/v0/token_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/ecosystem/jfrog/v0/token_service_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/ecosystem/jfrog/v0/token_service_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/ecosystem/jfrog/v0/token_service_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/ecosystem/v0/auth_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/ecosystem/v0/auth_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/ecosystem/v0/auth_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/ecosystem/v0/azure_credentials_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/ecosystem/v0/azure_credentials_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/ecosystem/v0/azure_credentials_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/ecosystem/v0/credentials_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/ecosystem/v0/credentials_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/ecosystem/v0/credentials_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/ecosystem/v0/ecosystem_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/ecosystem/v0/ecosystem_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/ecosystem/v0/ecosystem_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/ecosystem/v0/ecosystem_runtime_service_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/ecosystem/v0/ecosystem_runtime_service_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/ecosystem/v0/ecosystem_runtime_service_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/execution/v1/backfill_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/execution/v1/backfill_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/execution/v1/backfill_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/execution/v1/batch_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/execution/v1/batch_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/execution/v1/batch_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/execution/v1/deletion_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/execution/v1/deletion_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/execution/v1/deletion_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/execution/v1/execution_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/execution/v1/execution_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/execution/v1/execution_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/execution/v1/execution_service_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/execution/v1/execution_service_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/execution/v1/execution_service_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/execution/v1/internal/deployment/platform_details_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/execution/v1/internal/deployment/platform_details_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/execution/v1/internal/deployment/platform_details_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/execution/v1/jobs/job_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/execution/v1/jobs/job_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/execution/v1/jobs/job_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/execution/v1/jobs/job_service_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/execution/v1/jobs/job_service_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/execution/v1/jobs/job_service_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/execution/v1/jobs/reports/report_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/execution/v1/jobs/reports/report_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/execution/v1/jobs/reports/report_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/execution/v1/state/execution_state_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/execution/v1/state/execution_state_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/execution/v1/state/execution_state_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/execution/v1/state/execution_state_service_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/execution/v1/state/execution_state_service_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/execution/v1/state/execution_state_service_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/execution/v1/state/featureset_state_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/execution/v1/state/featureset_state_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/execution/v1/state/featureset_state_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/execution/v1/state/spark_execution_state_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/execution/v1/state/spark_execution_state_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/execution/v1/state/spark_execution_state_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/execution/v1/streaming_aggregation_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/execution/v1/streaming_aggregation_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/execution/v1/streaming_aggregation_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/execution/v1/streaming_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/execution/v1/streaming_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/execution/v1/streaming_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/entities/entity_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/entities/entity_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/entities/entity_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/entities/entity_service_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/entities/entity_service_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/entities/entity_service_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/features/aggregation_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/features/aggregation_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/features/aggregation_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/features/deployment_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/features/deployment_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/features/deployment_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/features/deployment_service_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/features/deployment_service_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/features/deployment_service_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/features/execution_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/features/execution_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/features/execution_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/features/feature_set_attribute_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/features/feature_set_attribute_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/features/feature_set_attribute_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/features/feature_set_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/features/feature_set_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/features/feature_set_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/features/feature_set_service_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/features/feature_set_service_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/features/feature_set_service_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/features/feature_set_state_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/features/feature_set_state_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/features/feature_set_state_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/features/feature_set_state_service_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/features/feature_set_state_service_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/features/feature_set_state_service_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/features/feature_set_types_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/features/feature_set_types_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/features/feature_set_types_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/features/monitoring_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/features/monitoring_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/features/monitoring_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/features/real_time_feature_extractor_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/features/real_time_feature_extractor_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/features/real_time_feature_extractor_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/jobs/job_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/jobs/job_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/jobs/job_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/jobs/job_service_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/jobs/job_service_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/jobs/job_service_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/jobs/v1/job_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/jobs/v1/job_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/jobs/v1/job_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/jobs/v1/job_service_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/jobs/v1/job_service_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/jobs/v1/job_service_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/platform/platform_details_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/platform/platform_details_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/platform/platform_details_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/reports/report_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/reports/report_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/reports/report_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/repository/common/platform_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/repository/common/platform_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/repository/common/platform_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/serving/management_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/serving/management_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/serving/management_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/serving/metadata_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/serving/metadata_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/serving/metadata_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/serving/serving_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/serving/serving_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/serving/serving_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/serving/v1/value_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/serving/v1/value_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/serving/v1/value_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/sinks/sink_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/sinks/sink_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/sinks/sink_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/sources/batch_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/sources/batch_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/sources/batch_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/sources/data_source_attribute_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/sources/data_source_attribute_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/sources/data_source_attribute_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/sources/data_source_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/sources/data_source_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/sources/data_source_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/sources/data_source_service_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/sources/data_source_service_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/sources/data_source_service_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/sources/streaming_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/sources/streaming_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/sources/streaming_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/v1/common/jfrog_artifact/jfrog_artifact_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/v1/common/jfrog_artifact/jfrog_artifact_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/v1/common/jfrog_artifact/jfrog_artifact_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/v1/common/source_code/source_code_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/v1/common/source_code/source_code_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/v1/common/source_code/source_code_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/v1/internal/data_source/data_source_service_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/v1/internal/data_source/data_source_service_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/v1/internal/data_source/data_source_service_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/v1/internal/featureset/featureset_token_service_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/v1/internal/featureset/featureset_token_service_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/feature_store/v1/internal/featureset/featureset_token_service_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/features_operator/v1/features_operator_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/features_operator/v1/features_operator_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/features_operator/v1/features_operator_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/features_operator/v1/features_operator_service_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/features_operator/v1/features_operator_service_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/features_operator/v1/features_operator_service_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/features_operator/v2/features_operator_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/features_operator/v2/features_operator_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/features_operator/v2/features_operator_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/features_operator/v2/features_operator_service_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/features_operator/v2/features_operator_service_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/features_operator/v2/features_operator_service_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/features_operator/v3/features_operator_async_service_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/features_operator/v3/features_operator_async_service_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/features_operator/v3/features_operator_async_service_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/features_operator/v3/features_operator_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/features_operator/v3/features_operator_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/features_operator/v3/features_operator_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/file_versioning/file_versioning_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/file_versioning/file_versioning_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/file_versioning/file_versioning_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/file_versioning/file_versioning_service_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/file_versioning/file_versioning_service_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/file_versioning/file_versioning_service_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/fitness_service/constructs_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/fitness_service/constructs_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/fitness_service/constructs_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/fitness_service/fitness_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/fitness_service/fitness_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/fitness_service/fitness_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/fitness_service/status_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/fitness_service/status_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/fitness_service/status_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/inference/feedback/feedback_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/inference/feedback/feedback_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/inference/feedback/feedback_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/instance_template/instance_template_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/instance_template/instance_template_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/instance_template/instance_template_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/instance_template/instance_template_service_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/instance_template/instance_template_service_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/instance_template/instance_template_service_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/integration/hugging_face_integration_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/integration/hugging_face_integration_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/integration/hugging_face_integration_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/integration/integration_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/integration/integration_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/integration/integration_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/integration/integration_service_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/integration/integration_service_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/integration/integration_service_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/integration/open_a_i_integration_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/integration/open_a_i_integration_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/integration/open_a_i_integration_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/integration/opsgenie_integration_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/integration/opsgenie_integration_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/integration/opsgenie_integration_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/integration/pagerduty_integration_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/integration/pagerduty_integration_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/integration/pagerduty_integration_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/integration/slack_app_integration_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/integration/slack_app_integration_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/integration/slack_app_integration_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/jfrog/gateway/v0/repository_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/jfrog/gateway/v0/repository_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/jfrog/gateway/v0/repository_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/jfrog/gateway/v0/repository_service_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/jfrog/gateway/v0/repository_service_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/jfrog/gateway/v0/repository_service_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/kube_deployment_captain/alert_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/kube_deployment_captain/alert_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/kube_deployment_captain/alert_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/kube_deployment_captain/alerting_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/kube_deployment_captain/alerting_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/kube_deployment_captain/alerting_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/kube_deployment_captain/batch_job_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/kube_deployment_captain/batch_job_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/kube_deployment_captain/batch_job_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/kube_deployment_captain/deployment_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/kube_deployment_captain/deployment_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/kube_deployment_captain/deployment_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/kube_deployment_captain/feature_set_deployment_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/kube_deployment_captain/feature_set_deployment_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/kube_deployment_captain/feature_set_deployment_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/kube_deployment_captain/kube_deployment_captain_service_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/kube_deployment_captain/kube_deployment_captain_service_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/kube_deployment_captain/kube_deployment_captain_service_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/kube_deployment_captain/traffic_mapping_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/kube_deployment_captain/traffic_mapping_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/kube_deployment_captain/traffic_mapping_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/logging/log_filter_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/logging/log_filter_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/logging/log_filter_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/logging/log_line_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/logging/log_line_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/logging/log_line_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/logging/log_reader_service_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/logging/log_reader_service_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/logging/log_reader_service_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/logging/log_source_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/logging/log_source_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/logging/log_source_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/model_descriptor/open_ai_descriptor_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/model_descriptor/open_ai_descriptor_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/model_descriptor/open_ai_descriptor_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/model_group/model_group_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/model_group/model_group_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/model_group/model_group_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/model_group/model_group_repository_details_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/model_group/model_group_repository_details_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/model_group/model_group_repository_details_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/models/models_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/models/models_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/models/models_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/models/models_query_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/models/models_query_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/models/models_query_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/monitoring/v0/alerting_channel_management_service_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/monitoring/v0/alerting_channel_management_service_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/monitoring/v0/alerting_channel_management_service_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/monitoring/v0/alerting_channel_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/monitoring/v0/alerting_channel_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/monitoring/v0/alerting_channel_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/monitoring/v0/alerting_channel_sync_service_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/monitoring/v0/alerting_channel_sync_service_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/monitoring/v0/alerting_channel_sync_service_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/offline/serving/v1/feature_values_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/offline/serving/v1/feature_values_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/offline/serving/v1/feature_values_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/offline/serving/v1/offline_serving_async_service_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/offline/serving/v1/offline_serving_async_service_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/offline/serving/v1/offline_serving_async_service_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/offline/serving/v1/options_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/offline/serving/v1/options_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/offline/serving/v1/options_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/offline/serving/v1/population_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/offline/serving/v1/population_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/offline/serving/v1/population_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/projects/jfrog_project_spec_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/projects/jfrog_project_spec_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/projects/jfrog_project_spec_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/projects/projects_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/projects/projects_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/projects/projects_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/secret_service/secret_service_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/secret_service/secret_service_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/secret_service/secret_service_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/self_service/account/v0/account_membership_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/self_service/account/v0/account_membership_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/self_service/account/v0/account_membership_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/self_service/account/v0/account_membership_service_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/self_service/account/v0/account_membership_service_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/self_service/account/v0/account_membership_service_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/self_service/account/v0/account_status_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/self_service/account/v0/account_status_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/self_service/account/v0/account_status_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/self_service/account/v0/managing_account_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/self_service/account/v0/managing_account_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/self_service/account/v0/managing_account_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/self_service/account/v0/managing_account_service_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/self_service/account/v0/managing_account_service_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/self_service/account/v0/managing_account_service_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/self_service/user/v1/api_key_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/self_service/user/v1/api_key_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/self_service/user/v1/api_key_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/self_service/user/v1/user_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/self_service/user/v1/user_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/self_service/user/v1/user_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/self_service/user/v1/user_service_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/self_service/user/v1/user_service_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/self_service/user/v1/user_service_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/service_discovery/service_discovery_location_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/service_discovery/service_discovery_location_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/service_discovery/service_discovery_location_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/service_discovery/service_discovery_location_service_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/service_discovery/service_discovery_location_service_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/service_discovery/service_discovery_location_service_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/traffic/v1/traffic_api_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/traffic/v1/traffic_api_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/traffic/v1/traffic_api_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/traffic/v1/traffic_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/traffic/v1/traffic_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/traffic/v1/traffic_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/user_application/common/v0/resources_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/user_application/common/v0/resources_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/user_application/common/v0/resources_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/user_application/v0/user_application_pb2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/user_application/v0/user_application_pb2.pyi +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/_proto/qwak/user_application/v0/user_application_pb2_grpc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/automations/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/automations/automation_executions.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/automations/automations.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/automations/batch_execution_action.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/automations/build_and_deploy_action.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/automations/common.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/_inner/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/_inner/edge_communications.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/administration/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/administration/authenticated_user/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/administration/authenticated_user/client.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/administration/authentication/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/administration/authentication/client.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/administration/cluster_v2/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/administration/cluster_v2/client.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/administration/eco_system/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/administration/eco_system/client.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/administration/eco_system/eco_system_utils.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/administration/environment/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/administration/environment/client.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/administration/environment_v1/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/administration/environment_v1/client.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/administration/self_service/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/administration/self_service/client.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/alert_management/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/alert_management/client.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/alerts_registry/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/alerts_registry/channel.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/alerts_registry/client.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/analytics/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/analytics/client.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/audience/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/audience/client.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/automation_management/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/automation_management/client.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/autoscaling/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/autoscaling/client.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/batch_job_management/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/batch_job_management/results.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/build_orchestrator/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/data_versioning/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/data_versioning/client.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/data_versioning/data_tag_filter.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/deployment/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/deployment/client.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/feature_store/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/feature_store/execution_management_client.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/feature_store/job_registry_client.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/feature_store/offline_serving_client.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/file_versioning/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/file_versioning/client.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/file_versioning/file_tag_filter.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/instance_template/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/instance_template/client.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/integration_management/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/integration_management/integration_manager_client.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/integration_management/integration_utils.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/integration_management/openai/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/integration_management/openai/openai_system_secret.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/jfrog_gateway/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/jfrog_gateway/client.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/kube_deployment_captain/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/kube_deployment_captain/client.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/location_discovery/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/location_discovery/client.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/logging_client/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/logging_client/client.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/model_deployment_manager/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/model_deployment_manager/client.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/model_group_management/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/model_management/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/model_version_manager/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/model_version_manager/build_model_version_request_mapper.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/model_version_manager/const.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/secret_service/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/secret_service/client.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/system_secret/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/system_secret/system_secret_client.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/user_application_instance/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/user_application_instance/client.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/exceptions/frogml_inference_exception.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/exceptions/frogml_load_configuration_exception.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/exceptions/frogml_mock_http_exception.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/exceptions/frogml_model_initialization_exception.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/exceptions/frogml_suggestion_exception.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/feature_store/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/feature_store/_common/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/feature_store/_common/functions.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/feature_store/_common/source_code_spec.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/feature_store/_common/value.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/feature_store/data_sources/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/feature_store/data_sources/attributes.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/feature_store/data_sources/source_authentication.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/feature_store/data_sources/time_partition_columns.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/feature_store/entities/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/feature_store/entities/entity.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/feature_store/execution/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/feature_store/execution/backfill.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/feature_store/execution/execution.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/feature_store/execution/execution_query.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/feature_store/execution/streaming_backfill.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/feature_store/feature_sets/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/feature_store/feature_sets/_utils/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/feature_store/feature_sets/_utils/_featureset_utils.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/feature_store/feature_sets/backfill.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/feature_store/feature_sets/context.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/feature_store/feature_sets/execution_spec.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/feature_store/feature_sets/metadata.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/feature_store/feature_sets/read_policies.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/feature_store/feature_sets/transformations/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/feature_store/feature_sets/transformations/aggregations/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/feature_store/feature_sets/transformations/aggregations/aggregations.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/feature_store/feature_sets/transformations/aggregations/windows.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/feature_store/feature_sets/transformations/functions/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/feature_store/feature_sets/transformations/functions/frogml_pandas.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/feature_store/feature_sets/transformations/functions/schema.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/feature_store/feature_sets/transformations/transformations.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/feature_store/feature_sets/transformations/validations/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/feature_store/feature_sets/transformations/validations/validations_util.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/feature_store/offline/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/feature_store/offline/_offline_serving_validations.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/feature_store/offline/feature_set_features.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/feature_store/online/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/feature_store/online/endpoint_utils.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/feature_store/sinks/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/feature_store/sinks/base.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/feature_store/sinks/streaming/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/feature_store/sinks/streaming/attachment.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/feature_store/validations/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/feature_store/validations/validation_decorators.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/feature_store/validations/validation_options.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/feature_store/validations/validation_response.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/build_config/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/build_config/build_config_v1.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/build_logic/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/build_logic/build_loggers/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/build_logic/build_loggers/trigger_build_logger.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/build_logic/constants/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/build_logic/constants/dependencies.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/build_logic/constants/host_resource.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/build_logic/constants/messages.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/build_logic/constants/temp_dir.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/build_logic/constants/upload_tag.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/build_logic/dependency_manager_type.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/build_logic/execute_build_pipeline.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/build_logic/interface/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/build_logic/interface/build_logger_interface.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/build_logic/interface/build_phase.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/build_logic/interface/context_interface.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/build_logic/interface/phase_run_handler.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/build_logic/interface/step_inteface.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/build_logic/interface/time_source.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/build_logic/phases/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/build_logic/phases/phase_010_fetch_model/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/build_logic/phases/phase_010_fetch_model/fetch_model_step.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/common.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/fetch_strategy_manager.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/strategy/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/strategy/folder/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/strategy/folder/folder_strategy.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/strategy/git/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/strategy/strategy.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/strategy/zip/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/strategy/zip/zip_strategy.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/build_logic/phases/phase_010_fetch_model/post_fetch_validation_step.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/build_logic/phases/phase_010_fetch_model/set_version_step.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/build_logic/phases/phase_020_remote_register_frogml_build/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/build_logic/phases/phase_020_remote_register_frogml_build/cleanup_step.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/build_logic/phases/phase_020_remote_register_frogml_build/start_remote_build_step.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/build_logic/phases/phases_pipeline.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/build_logic/run_handlers/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/build_logic/tools/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/build_logic/tools/dependencies_tools.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/build_logic/tools/ignore_files.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/build_logic/tools/text.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/build_logic/trigger_build_context.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/const.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/di_configuration/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/di_configuration/account.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/di_configuration/config.yml +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/di_configuration/containers.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/di_configuration/dependency_wiring.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/instance_template/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/instance_template/verify_template_id.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/provider.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/singleton_meta.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/tool/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/tool/auth/TOKEN_ROTATION.md +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/tool/auth/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/tool/auth/token_maintainer.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/tool/grpc/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/tool/grpc/grpc_auth.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/tool/grpc/grpc_tools.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/tool/retry_utils.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/tool/run_config/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/tool/run_config/base.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/inner/tool/run_config/utils.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/model_loggers/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/model_loggers/artifact_logger.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/model_loggers/data_logger.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/testing/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/testing/fixtures.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/tools/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/tools/logger/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/tools/logger/logger.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/tools/logger/logging.yml +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/utils/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/utils/datetime_utils.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/utils/dict_utils.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/utils/model_utils.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/core/utils/proto_utils.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/feature_store/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/feature_store/_common/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/feature_store/_common/artifact_utils.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/feature_store/_common/feature_set_utils.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/feature_store/_common/featureset_asterisk_handler.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/feature_store/_common/packaging.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/feature_store/_common/source_code_spec_factory.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/feature_store/data_sources/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/feature_store/data_sources/base.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/feature_store/data_sources/batch/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/feature_store/data_sources/batch/_batch.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/feature_store/data_sources/batch/_jdbc.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/feature_store/data_sources/batch/athena.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/feature_store/data_sources/batch/big_query.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/feature_store/data_sources/batch/clickhouse.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/feature_store/data_sources/batch/csv.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/feature_store/data_sources/batch/elastic_search.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/feature_store/data_sources/batch/filesystem/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/feature_store/data_sources/batch/filesystem/aws.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/feature_store/data_sources/batch/filesystem/base_config.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/feature_store/data_sources/batch/filesystem/gcp.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/feature_store/data_sources/batch/filesystem/utils.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/feature_store/data_sources/batch/mongodb.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/feature_store/data_sources/batch/mysql.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/feature_store/data_sources/batch/parquet.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/feature_store/data_sources/batch/postgres.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/feature_store/data_sources/batch/redshift.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/feature_store/data_sources/batch/snowflake.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/feature_store/data_sources/batch/unity_catalog.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/feature_store/data_sources/batch/vertica.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/feature_store/data_sources/streaming/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/feature_store/data_sources/streaming/_streaming.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/feature_store/data_sources/streaming/kafka/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/feature_store/data_sources/streaming/kafka/authentication.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/feature_store/data_sources/streaming/kafka/deserialization.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/feature_store/data_sources/streaming/kafka/kafka.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/feature_store/feature_sets/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/feature_store/feature_sets/base_feature_set.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/feature_store/feature_sets/batch.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/feature_store/feature_sets/streaming.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/feature_store/feature_sets/streaming_backfill.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/feature_store/offline/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/feature_store/offline/client_v2.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/feature_store/online/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/feature_store/online/client.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/feature_store/sinks/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/feature_store/sinks/kafka.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/feature_store/sinks/streaming/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/feature_store/sinks/streaming/factory.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/feature_store/validations/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/feature_store/validations/validator.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/frogml_client/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/frogml_client/batch_jobs/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/frogml_client/batch_jobs/execution.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/frogml_client/batch_jobs/task.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/frogml_client/build_api_helpers/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/frogml_client/build_api_helpers/build_api_steps.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/frogml_client/build_api_helpers/messages.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/frogml_client/build_api_helpers/trigger_build_api.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/frogml_client/builds/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/frogml_client/builds/build.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/frogml_client/builds/filters/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/frogml_client/builds/filters/metric_filter.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/frogml_client/builds/filters/parameter_filter.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/frogml_client/data_versioning/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/frogml_client/data_versioning/data_tag.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/frogml_client/deployments/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/frogml_client/deployments/deployment.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/frogml_client/file_versioning/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/frogml_client/file_versioning/file_tag.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/frogml_client/models/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/frogml_client/models/model.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/frogml_client/models/model_metadata.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/inner/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/inner/runtime_di/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/inner/runtime_di/containers.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/_entity_extraction.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/adapters/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/adapters/input_adapters/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/adapters/input_adapters/base_input_adapter.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/adapters/input_adapters/dataframe_input_adapter.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/adapters/input_adapters/file_input_adapter.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/adapters/input_adapters/image_input_adapter.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/adapters/input_adapters/json_input_adapter.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/adapters/input_adapters/multi_input_adapter.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/adapters/input_adapters/proto_input_adapter.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/adapters/input_adapters/string_input_adapter.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/adapters/input_adapters/tf_tensor_input_adapter.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/adapters/output_adapters/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/adapters/output_adapters/base_output_adapter.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/adapters/output_adapters/dataframe_output_adapter.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/adapters/output_adapters/default_output_adapter.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/adapters/output_adapters/frogml_with_default_fallback.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/adapters/output_adapters/json_output_adapter.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/adapters/output_adapters/proto_output_adapter.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/adapters/output_adapters/tf_tensor_output_adapter.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/analytics_logging.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/base.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/decorators/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/decorators/impl/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/decorators/impl/api_implementation.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/decorators/impl/timer_implementation.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/decorators/timer.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/fs_info_mapping_retriever.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/model_version_tracking.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/schema.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/schema_entities.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/tools/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/tools/adapters/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/tools/adapters/encoders.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/tools/adapters/input.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/tools/adapters/input_adapters/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/tools/adapters/input_adapters/base_input.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/tools/adapters/input_adapters/dataframe_input.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/tools/adapters/input_adapters/file_input.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/tools/adapters/input_adapters/image_input.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/tools/adapters/input_adapters/json_input.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/tools/adapters/input_adapters/string_input.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/tools/adapters/input_adapters/tf_tensor_input.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/tools/adapters/output_adapters/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/tools/adapters/output_adapters/base_output.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/tools/adapters/output_adapters/dataframe_output.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/tools/adapters/output_adapters/default_output.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/tools/adapters/output_adapters/json_output.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/tools/adapters/output_adapters/tf_tensor_output.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/tools/run_model_locally.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/utils/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/utils/extract_wrapped_function.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model/utils/feature_utils.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_loggers/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_loggers/model_logger.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/catboost/template_files/build_dir/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/catboost/template_files/build_dir/model.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/catboost/template_files/build_dir/requirements.txt +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/catboost/template_files/predict_dir/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/catboost/template_files/predict_dir/model.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/constants.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/files/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/files/template_files/build_dir/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/files/template_files/build_dir/model.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/files/template_files/build_dir/requirements.txt +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/files/template_files/predict_dir/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/files/template_files/predict_dir/model.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/finders/frogml_model_class_finder.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/finders/model_class_info.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/finders/model_finder.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/huggingface/template_files/build_dir/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/huggingface/template_files/build_dir/model.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/huggingface/template_files/build_dir/requirements.txt +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/huggingface/template_files/predict_dir/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/huggingface/template_files/predict_dir/model.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/model_loggers/base_model_version_manager.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/model_loggers/files_model_version_manager.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/modifiers/model_modifier.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/onnx/template_files/build_dir/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/onnx/template_files/build_dir/model.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/onnx/template_files/build_dir/requirements.txt +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/onnx/template_files/predict_dir/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/onnx/template_files/predict_dir/model.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/pytorch/pickle_module.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/pytorch/template_files/build_dir/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/pytorch/template_files/build_dir/model.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/pytorch/template_files/build_dir/requirements.txt +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/pytorch/template_files/predict_dir/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/pytorch/template_files/predict_dir/model.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/scikit_learn/template_files/build_dir/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/scikit_learn/template_files/build_dir/model.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/scikit_learn/template_files/build_dir/requirements.txt +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/scikit_learn/template_files/predict_dir/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/scikit_learn/template_files/predict_dir/model.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/transformers/initialize_model_transformer.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/utils/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/utils/dependencies_tools.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/utils/files_tools.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/utils/log_model_helper.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/utils/model_log_config.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/sdk/model_version/utils/storage_helper.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/storage/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/storage/_environment.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/storage/artifactory/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/storage/artifactory/_artifactory_api.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/storage/authentication/login/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/storage/authentication/login/_login_cli.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/storage/authentication/login/_login_command.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/storage/authentication/models/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/storage/authentication/models/_auth.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/storage/authentication/models/_auth_config.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/storage/authentication/models/_login.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/storage/authentication/utils/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/storage/authentication/utils/_authentication_utils.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/storage/authentication/utils/_login_checks_utils.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/storage/base_storage.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/storage/constants.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/storage/exceptions/checksum_verification_error.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/storage/exceptions/validation_error.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/storage/frog_ml.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/storage/http/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/storage/http/http_client.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/storage/logging/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/storage/logging/_log_config.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/storage/logging/log_utils.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/storage/models/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/storage/models/_download_context.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/storage/models/dataset_manifest.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/storage/models/entity_manifest.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/storage/models/frogml_dataset_version.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/storage/models/frogml_entity_type_info.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/storage/models/frogml_entity_version.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/storage/models/frogml_model_version.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/storage/models/model_manifest.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/storage/models/serialization_metadata.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/storage/utils/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/storage/utils/_input_checks_utility.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/storage/utils/_storage_utils.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml/storage/utils/_url_utils.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml_services_mock/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml_services_mock/mocks/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml_services_mock/mocks/alert_manager_service_api.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml_services_mock/mocks/alert_registry_service_api.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml_services_mock/mocks/analytics_api.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml_services_mock/mocks/audience_service_api.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml_services_mock/mocks/authentication_service.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml_services_mock/mocks/automation_management_service.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml_services_mock/mocks/autoscaling_service_api.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml_services_mock/mocks/build_orchestrator_build_api.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml_services_mock/mocks/build_orchestrator_build_settings_api.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml_services_mock/mocks/cluster_v2_service.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml_services_mock/mocks/data_versioning_service.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml_services_mock/mocks/deployment_management_service.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml_services_mock/mocks/environment_v0_service.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml_services_mock/mocks/environment_v1_service.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml_services_mock/mocks/execution_management_service.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml_services_mock/mocks/feature_store_data_sources_manager_api.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml_services_mock/mocks/feature_store_entities_manager_api.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml_services_mock/mocks/feature_store_feature_set_manager_api.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml_services_mock/mocks/features_online_serving_api.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml_services_mock/mocks/features_operator_v3_service.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml_services_mock/mocks/features_set_state_service_api.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml_services_mock/mocks/feedback_service.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml_services_mock/mocks/file_versioning_service.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml_services_mock/mocks/frogml_mocks.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml_services_mock/mocks/fs_offline_serving_service.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml_services_mock/mocks/instance_template_management_service.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml_services_mock/mocks/integration_management_service.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml_services_mock/mocks/internal_build_orchestrator_service.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml_services_mock/mocks/jfrog_tenant_info_service_mock.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml_services_mock/mocks/job_registry_service_api.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml_services_mock/mocks/kube_captain_service_api.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml_services_mock/mocks/location_discovery_service_api.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml_services_mock/mocks/logging_service.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml_services_mock/mocks/model_deployment_manager_service_mock.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml_services_mock/mocks/model_management_service.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml_services_mock/mocks/repository_service_mock.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml_services_mock/mocks/secret_service.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml_services_mock/mocks/self_service_user_service.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml_services_mock/mocks/system_secret_service.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml_services_mock/mocks/user_application_instance_service_api.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml_services_mock/mocks/utils/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml_services_mock/mocks/utils/exception_handlers.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml_services_mock/services_mock.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml_services_mock/utils/__init__.py +0 -0
- {frogml-1.2.49 → frogml-2.0.0}/frogml_services_mock/utils/service_utils.py +0 -0
|
@@ -0,0 +1,604 @@
|
|
|
1
|
+
from typing import Optional
|
|
2
|
+
|
|
3
|
+
from dependency_injector.wiring import Provide
|
|
4
|
+
|
|
5
|
+
from frogml._proto.qwak.batch_job.v1.batch_job_service_pb2 import (
|
|
6
|
+
AdvancedDeploymentOptions,
|
|
7
|
+
BatchJobDataDetails,
|
|
8
|
+
BatchJobDeploymentSize,
|
|
9
|
+
BatchJobDestinationPath,
|
|
10
|
+
BatchJobExecutionDetails,
|
|
11
|
+
BatchJobModelDetails,
|
|
12
|
+
BatchJobParameter,
|
|
13
|
+
BatchJobRequest,
|
|
14
|
+
BatchJobSourcePath,
|
|
15
|
+
BatchJobStatusMessage,
|
|
16
|
+
CancelBatchJobRequest,
|
|
17
|
+
CancelBatchJobResponse,
|
|
18
|
+
CancelWarmupJobRequest,
|
|
19
|
+
CancelWarmupJobResponse,
|
|
20
|
+
GetBatchJobDetailsRequest,
|
|
21
|
+
GetBatchJobDetailsResponse,
|
|
22
|
+
GetBatchJobDownloadDetailsRequest,
|
|
23
|
+
GetBatchJobDownloadDetailsResponse,
|
|
24
|
+
GetBatchJobPreSignedDownloadUrlRequest,
|
|
25
|
+
GetBatchJobPreSignedDownloadUrlResponse,
|
|
26
|
+
GetBatchJobPreSignedUploadUrlRequest,
|
|
27
|
+
GetBatchJobPreSignedUploadUrlResponse,
|
|
28
|
+
GetBatchJobReportRequest,
|
|
29
|
+
GetBatchJobReportResponse,
|
|
30
|
+
GetBatchJobStatusRequest,
|
|
31
|
+
GetBatchJobStatusResponse,
|
|
32
|
+
GetBatchJobUploadDetailsRequest,
|
|
33
|
+
GetBatchJobUploadDetailsResponse,
|
|
34
|
+
ListBatchJobsRequest,
|
|
35
|
+
ListBatchJobsResponse,
|
|
36
|
+
StartBatchJobRequest,
|
|
37
|
+
StartBatchJobResponse,
|
|
38
|
+
StartWarmupJobRequest,
|
|
39
|
+
StartWarmupJobResponse,
|
|
40
|
+
UpdateTasksDetailsRequest,
|
|
41
|
+
BatchTaskDetails,
|
|
42
|
+
InputFileDetails,
|
|
43
|
+
)
|
|
44
|
+
from frogml._proto.qwak.batch_job.v1.batch_job_service_pb2_grpc import (
|
|
45
|
+
BatchJobManagementServiceStub,
|
|
46
|
+
)
|
|
47
|
+
from frogml._proto.qwak.deployment.deployment_pb2 import MemoryUnit
|
|
48
|
+
from frogml._proto.qwak.logging.log_reader_service_pb2 import ReadLogsResponse
|
|
49
|
+
from frogml._proto.qwak.user_application.common.v0.resources_pb2 import (
|
|
50
|
+
ClientPodComputeResources,
|
|
51
|
+
CpuResources,
|
|
52
|
+
GpuResources,
|
|
53
|
+
PodComputeResourceTemplateSpec,
|
|
54
|
+
)
|
|
55
|
+
from frogml.core.clients.logging_client import LoggingClient
|
|
56
|
+
from frogml.core.clients.model_management import ModelsManagementClient
|
|
57
|
+
from frogml.core.exceptions import FrogmlException
|
|
58
|
+
from frogml.core.inner.di_configuration import FrogmlContainer
|
|
59
|
+
from frogml.core.inner.tool.grpc.grpc_try_wrapping import grpc_try_catch_wrapper
|
|
60
|
+
|
|
61
|
+
from .executions_config import (
|
|
62
|
+
INPUT_FORMATTERS_MAP,
|
|
63
|
+
OUTPUT_FORMATTERS_MAP,
|
|
64
|
+
PURCHASE_OPTION_SET,
|
|
65
|
+
ExecutionConfig,
|
|
66
|
+
)
|
|
67
|
+
from .results import (
|
|
68
|
+
CancelExecutionResult,
|
|
69
|
+
ExecutionStatusResult,
|
|
70
|
+
GetBatchJobPreSignedDownloadUrlResult,
|
|
71
|
+
GetBatchJobPreSignedUploadUrlResult,
|
|
72
|
+
GetExecutionReportResult,
|
|
73
|
+
StartExecutionResult,
|
|
74
|
+
)
|
|
75
|
+
|
|
76
|
+
CLIENT_TIMEOUT = 180 # Seconds
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
class BatchJobManagerClient:
|
|
80
|
+
def __init__(
|
|
81
|
+
self,
|
|
82
|
+
grpc_channel=Provide[FrogmlContainer.core_grpc_channel],
|
|
83
|
+
logging_client: Optional[LoggingClient] = None,
|
|
84
|
+
):
|
|
85
|
+
self.batch_job_management = BatchJobManagementServiceStub(grpc_channel)
|
|
86
|
+
self.logging_client = logging_client
|
|
87
|
+
|
|
88
|
+
def start_execution(
|
|
89
|
+
self,
|
|
90
|
+
execution_config: ExecutionConfig,
|
|
91
|
+
) -> StartExecutionResult:
|
|
92
|
+
"""
|
|
93
|
+
|
|
94
|
+
Args:
|
|
95
|
+
execution_config: The configuration that hold details for the batch execution (cloud locations, concurrency,
|
|
96
|
+
etc...
|
|
97
|
+
|
|
98
|
+
Returns:
|
|
99
|
+
The response received from the api. On successful start of execution a batch job id is returned
|
|
100
|
+
"""
|
|
101
|
+
job_size: BatchJobDeploymentSize = (
|
|
102
|
+
self.get_batch_deployment_size_from_resources(execution_config)
|
|
103
|
+
)
|
|
104
|
+
|
|
105
|
+
user_raw_input_format: str = execution_config.execution.input_file_type.upper()
|
|
106
|
+
user_raw_output_format: str = (
|
|
107
|
+
execution_config.execution.output_file_type.upper()
|
|
108
|
+
)
|
|
109
|
+
|
|
110
|
+
if user_raw_input_format not in INPUT_FORMATTERS_MAP:
|
|
111
|
+
raise ValueError(
|
|
112
|
+
f"Invalid input format - please choose one of {list(INPUT_FORMATTERS_MAP.keys())}"
|
|
113
|
+
)
|
|
114
|
+
|
|
115
|
+
if user_raw_output_format not in OUTPUT_FORMATTERS_MAP:
|
|
116
|
+
raise ValueError(
|
|
117
|
+
f"Invalid output format - please choose one of {list(OUTPUT_FORMATTERS_MAP.keys())}"
|
|
118
|
+
)
|
|
119
|
+
|
|
120
|
+
user_purchase_option: Optional[str] = (
|
|
121
|
+
execution_config.advanced_options.purchase_option
|
|
122
|
+
)
|
|
123
|
+
if user_purchase_option is not None:
|
|
124
|
+
if user_purchase_option not in PURCHASE_OPTION_SET:
|
|
125
|
+
raise ValueError(
|
|
126
|
+
f"Invalid purchase option - please choose one of {list(PURCHASE_OPTION_SET)}"
|
|
127
|
+
)
|
|
128
|
+
user_purchase_option = user_purchase_option.replace("-", "")
|
|
129
|
+
|
|
130
|
+
start_job_result: StartBatchJobResponse = self._start_batch_job(
|
|
131
|
+
batch_job_request=BatchJobRequest(
|
|
132
|
+
model_details=BatchJobModelDetails(
|
|
133
|
+
model_id=execution_config.execution.model_id,
|
|
134
|
+
build_id=execution_config.execution.build_id,
|
|
135
|
+
),
|
|
136
|
+
data_details=BatchJobDataDetails(
|
|
137
|
+
source_path=BatchJobSourcePath(
|
|
138
|
+
source_folder=execution_config.execution.source_folder,
|
|
139
|
+
source_bucket=execution_config.execution.source_bucket,
|
|
140
|
+
input_file_type=INPUT_FORMATTERS_MAP.get(user_raw_input_format),
|
|
141
|
+
),
|
|
142
|
+
destination_path=BatchJobDestinationPath(
|
|
143
|
+
destination_bucket=execution_config.execution.destination_bucket,
|
|
144
|
+
destination_folder=execution_config.execution.destination_folder,
|
|
145
|
+
output_file_type=OUTPUT_FORMATTERS_MAP.get(
|
|
146
|
+
user_raw_output_format
|
|
147
|
+
),
|
|
148
|
+
),
|
|
149
|
+
token_secret=execution_config.execution.access_token_name,
|
|
150
|
+
secret_secret=execution_config.execution.access_secret_name,
|
|
151
|
+
session_token=execution_config.execution.session_token,
|
|
152
|
+
service_account_json_key_secret=execution_config.execution.service_account_key_secret_name,
|
|
153
|
+
),
|
|
154
|
+
execution_details=BatchJobExecutionDetails(
|
|
155
|
+
job_timeout=execution_config.execution.job_timeout,
|
|
156
|
+
task_timeout=execution_config.execution.file_timeout,
|
|
157
|
+
batch_job_deployment_size=job_size,
|
|
158
|
+
advanced_deployment_options=AdvancedDeploymentOptions(
|
|
159
|
+
custom_iam_role_arn=execution_config.advanced_options.custom_iam_role_arn,
|
|
160
|
+
purchase_option=user_purchase_option,
|
|
161
|
+
service_account_key_secret_name=execution_config.advanced_options.service_account_key_secret_name,
|
|
162
|
+
),
|
|
163
|
+
parameters=BatchJobManagerClient._batch_job_parameters_as_list(
|
|
164
|
+
execution_config.execution.parameters
|
|
165
|
+
),
|
|
166
|
+
),
|
|
167
|
+
)
|
|
168
|
+
)
|
|
169
|
+
|
|
170
|
+
return StartExecutionResult(
|
|
171
|
+
success=start_job_result.success,
|
|
172
|
+
execution_id=start_job_result.batch_id,
|
|
173
|
+
failure_message=start_job_result.failure_message,
|
|
174
|
+
)
|
|
175
|
+
|
|
176
|
+
@staticmethod
|
|
177
|
+
def get_batch_deployment_size_from_resources(execution_config):
|
|
178
|
+
if execution_config.resources.instance_size:
|
|
179
|
+
return BatchJobDeploymentSize(
|
|
180
|
+
number_of_pods=execution_config.resources.pods,
|
|
181
|
+
client_pod_compute_resources=ClientPodComputeResources(
|
|
182
|
+
template_spec=PodComputeResourceTemplateSpec(
|
|
183
|
+
template_id=execution_config.resources.instance_size,
|
|
184
|
+
)
|
|
185
|
+
),
|
|
186
|
+
)
|
|
187
|
+
|
|
188
|
+
if execution_config.resources.gpu_amount > 0:
|
|
189
|
+
return BatchJobDeploymentSize(
|
|
190
|
+
number_of_pods=execution_config.resources.pods,
|
|
191
|
+
client_pod_compute_resources=ClientPodComputeResources(
|
|
192
|
+
gpu_resources=GpuResources(
|
|
193
|
+
gpu_type=execution_config.resources.gpu_type,
|
|
194
|
+
gpu_amount=execution_config.resources.gpu_amount,
|
|
195
|
+
)
|
|
196
|
+
),
|
|
197
|
+
)
|
|
198
|
+
|
|
199
|
+
return BatchJobDeploymentSize(
|
|
200
|
+
number_of_pods=execution_config.resources.pods,
|
|
201
|
+
client_pod_compute_resources=ClientPodComputeResources(
|
|
202
|
+
cpu_resources=CpuResources(
|
|
203
|
+
cpu=execution_config.resources.cpus,
|
|
204
|
+
memory_amount=execution_config.resources.memory,
|
|
205
|
+
memory_units=MemoryUnit.MIB,
|
|
206
|
+
)
|
|
207
|
+
),
|
|
208
|
+
)
|
|
209
|
+
|
|
210
|
+
@grpc_try_catch_wrapper(
|
|
211
|
+
error_message="Failed to start execution", operation="Start Batch Execution"
|
|
212
|
+
)
|
|
213
|
+
def _start_batch_job(
|
|
214
|
+
self,
|
|
215
|
+
batch_job_request: BatchJobRequest,
|
|
216
|
+
) -> StartBatchJobResponse:
|
|
217
|
+
"""
|
|
218
|
+
|
|
219
|
+
Args:
|
|
220
|
+
batch_job_request: The Api for batch job request
|
|
221
|
+
|
|
222
|
+
Returns:
|
|
223
|
+
The response received from the api. On successful start of execution a batch job id is returned
|
|
224
|
+
"""
|
|
225
|
+
return self.batch_job_management.StartBatchJob(
|
|
226
|
+
StartBatchJobRequest(batch_job_request=batch_job_request),
|
|
227
|
+
timeout=CLIENT_TIMEOUT,
|
|
228
|
+
)
|
|
229
|
+
|
|
230
|
+
@staticmethod
|
|
231
|
+
def _batch_job_parameters_as_list(params: dict):
|
|
232
|
+
return [
|
|
233
|
+
BatchJobParameter(key=key, value=value) for (key, value) in params.items()
|
|
234
|
+
]
|
|
235
|
+
|
|
236
|
+
def start_warmup_job(
|
|
237
|
+
self, execution_config: ExecutionConfig
|
|
238
|
+
) -> StartWarmupJobResponse:
|
|
239
|
+
"""
|
|
240
|
+
|
|
241
|
+
Args:
|
|
242
|
+
execution_config: The configuration that hold details for the batch execution (resources, concurrency,
|
|
243
|
+
etc...
|
|
244
|
+
|
|
245
|
+
Returns:
|
|
246
|
+
The response received from the api. On successful start of execution a batch job id is returned
|
|
247
|
+
"""
|
|
248
|
+
job_size = self.get_batch_deployment_size_from_resources(execution_config)
|
|
249
|
+
|
|
250
|
+
start_warmup_job_result: StartWarmupJobResponse = self._start_warmup_job(
|
|
251
|
+
StartWarmupJobRequest(
|
|
252
|
+
model_id=execution_config.execution.model_id,
|
|
253
|
+
build_id=execution_config.execution.build_id,
|
|
254
|
+
branch_id=ModelsManagementClient().get_model_uuid(
|
|
255
|
+
execution_config.execution.model_id,
|
|
256
|
+
),
|
|
257
|
+
warmup_timeout=execution_config.warmup.timeout,
|
|
258
|
+
batch_job_deployment_size=job_size,
|
|
259
|
+
)
|
|
260
|
+
)
|
|
261
|
+
|
|
262
|
+
return StartWarmupJobResponse(
|
|
263
|
+
success=start_warmup_job_result.success,
|
|
264
|
+
failure_message=start_warmup_job_result.failure_message,
|
|
265
|
+
)
|
|
266
|
+
|
|
267
|
+
@grpc_try_catch_wrapper(
|
|
268
|
+
error_message="Failed to start warmup", operation="Start Batch Warmup Job"
|
|
269
|
+
)
|
|
270
|
+
def _start_warmup_job(
|
|
271
|
+
self, request: StartWarmupJobRequest
|
|
272
|
+
) -> StartWarmupJobResponse:
|
|
273
|
+
return self.batch_job_management.StartWarmupJob(request, timeout=CLIENT_TIMEOUT)
|
|
274
|
+
|
|
275
|
+
def get_execution_status(self, execution_id: str) -> ExecutionStatusResult:
|
|
276
|
+
"""
|
|
277
|
+
|
|
278
|
+
Args:
|
|
279
|
+
execution_id: the batch execution id to get the current status of
|
|
280
|
+
|
|
281
|
+
Returns:
|
|
282
|
+
the status of the execution
|
|
283
|
+
|
|
284
|
+
"""
|
|
285
|
+
batch_job_status: GetBatchJobStatusResponse = self._get_batch_job_status(
|
|
286
|
+
execution_id
|
|
287
|
+
)
|
|
288
|
+
|
|
289
|
+
return ExecutionStatusResult(
|
|
290
|
+
success=batch_job_status.success,
|
|
291
|
+
status=BatchJobStatusMessage.Name(batch_job_status.job_status),
|
|
292
|
+
finished_files=batch_job_status.finished_files,
|
|
293
|
+
total_files=batch_job_status.total_files,
|
|
294
|
+
failure_message=batch_job_status.failure_message,
|
|
295
|
+
)
|
|
296
|
+
|
|
297
|
+
@grpc_try_catch_wrapper(
|
|
298
|
+
error_message="Failed to get execution status for execution '{execution_id}'",
|
|
299
|
+
operation="Get Batch Execution Status",
|
|
300
|
+
)
|
|
301
|
+
def _get_batch_job_status(self, execution_id: str) -> GetBatchJobStatusResponse:
|
|
302
|
+
return self.batch_job_management.GetBatchJobStatus(
|
|
303
|
+
GetBatchJobStatusRequest(batch_id=execution_id)
|
|
304
|
+
)
|
|
305
|
+
|
|
306
|
+
def cancel_warmup(
|
|
307
|
+
self, execution_config: ExecutionConfig
|
|
308
|
+
) -> CancelWarmupJobResponse:
|
|
309
|
+
"""
|
|
310
|
+
|
|
311
|
+
Args:
|
|
312
|
+
execution_config: The configuration that hold details for the batch execution (resources, concurrency,
|
|
313
|
+
etc...
|
|
314
|
+
|
|
315
|
+
Returns:
|
|
316
|
+
The response received from the api. On successful start of execution a batch job id is returned
|
|
317
|
+
"""
|
|
318
|
+
cancel_warmup_job_response: CancelWarmupJobResponse = self._cancel_warmup_job(
|
|
319
|
+
CancelWarmupJobRequest(
|
|
320
|
+
model_id=execution_config.execution.model_id,
|
|
321
|
+
build_id=execution_config.execution.build_id,
|
|
322
|
+
branch_id=ModelsManagementClient().get_model_uuid(
|
|
323
|
+
execution_config.execution.model_id,
|
|
324
|
+
),
|
|
325
|
+
)
|
|
326
|
+
)
|
|
327
|
+
|
|
328
|
+
return CancelWarmupJobResponse(
|
|
329
|
+
success=cancel_warmup_job_response.success,
|
|
330
|
+
failure_message=cancel_warmup_job_response.failure_message,
|
|
331
|
+
)
|
|
332
|
+
|
|
333
|
+
@grpc_try_catch_wrapper(
|
|
334
|
+
error_message="Failed to cancel warmup", operation="Cancel Batch Warmup"
|
|
335
|
+
)
|
|
336
|
+
def _cancel_warmup_job(
|
|
337
|
+
self, request: CancelWarmupJobRequest
|
|
338
|
+
) -> CancelWarmupJobResponse:
|
|
339
|
+
return self.batch_job_management.CancelWarmupJob(
|
|
340
|
+
request, timeout=CLIENT_TIMEOUT
|
|
341
|
+
)
|
|
342
|
+
|
|
343
|
+
def cancel_execution(self, execution_id: str) -> CancelExecutionResult:
|
|
344
|
+
"""
|
|
345
|
+
|
|
346
|
+
Args:
|
|
347
|
+
execution_id: the batch execution id to get the current status of
|
|
348
|
+
|
|
349
|
+
Returns:
|
|
350
|
+
A successful response or failure of the cancel process
|
|
351
|
+
|
|
352
|
+
"""
|
|
353
|
+
cancel_batch_job_response: CancelBatchJobResponse = self._cancel_batch_job(
|
|
354
|
+
execution_id
|
|
355
|
+
)
|
|
356
|
+
|
|
357
|
+
return CancelExecutionResult(
|
|
358
|
+
success=cancel_batch_job_response.success,
|
|
359
|
+
failure_message=cancel_batch_job_response.failure_message,
|
|
360
|
+
)
|
|
361
|
+
|
|
362
|
+
@grpc_try_catch_wrapper(
|
|
363
|
+
error_message="Failed to cancel execution '{execution_id}'",
|
|
364
|
+
operation="Cancel Batch Execution",
|
|
365
|
+
)
|
|
366
|
+
def _cancel_batch_job(self, execution_id: str) -> CancelBatchJobResponse:
|
|
367
|
+
return self.batch_job_management.CancelBatchJob(
|
|
368
|
+
CancelBatchJobRequest(batch_id=execution_id), timeout=CLIENT_TIMEOUT
|
|
369
|
+
)
|
|
370
|
+
|
|
371
|
+
def get_execution_report(
|
|
372
|
+
self,
|
|
373
|
+
execution_id: str,
|
|
374
|
+
model_id: Optional[str] = None,
|
|
375
|
+
model_group_name: Optional[str] = None,
|
|
376
|
+
) -> GetExecutionReportResult:
|
|
377
|
+
"""
|
|
378
|
+
|
|
379
|
+
Args:
|
|
380
|
+
execution_id: The batch execution id to get the report for.
|
|
381
|
+
model_id: The model ID. This is the display name(identifier), not the UUID.
|
|
382
|
+
model_group_name: The model group name.
|
|
383
|
+
|
|
384
|
+
Returns:
|
|
385
|
+
A full report of all the events that occurred as part of the execution job.
|
|
386
|
+
"""
|
|
387
|
+
self.logging_client = (
|
|
388
|
+
self.logging_client if self.logging_client else LoggingClient()
|
|
389
|
+
)
|
|
390
|
+
|
|
391
|
+
batch_job_report: GetBatchJobReportResponse = self._get_batch_job_report(
|
|
392
|
+
execution_id
|
|
393
|
+
)
|
|
394
|
+
|
|
395
|
+
try:
|
|
396
|
+
execution_log_response: ReadLogsResponse = (
|
|
397
|
+
self.logging_client.read_execution_models_logs(
|
|
398
|
+
execution_id=execution_id,
|
|
399
|
+
model_id=model_id,
|
|
400
|
+
model_group_name=model_group_name,
|
|
401
|
+
)
|
|
402
|
+
)
|
|
403
|
+
execution_logs = execution_log_response.log_line
|
|
404
|
+
execution_logs.sort(key=lambda line: line.ingested_iso_timestamp)
|
|
405
|
+
execution_logs_msgs = [line.text for line in execution_logs]
|
|
406
|
+
except FrogmlException as e:
|
|
407
|
+
execution_logs_msgs = [
|
|
408
|
+
f"Error reading the execution model run logs due to: {e.error_message}"
|
|
409
|
+
]
|
|
410
|
+
|
|
411
|
+
return GetExecutionReportResult(
|
|
412
|
+
success=batch_job_report.successful,
|
|
413
|
+
failure_message=batch_job_report.failure_message,
|
|
414
|
+
records=batch_job_report.report_messages,
|
|
415
|
+
model_logs=execution_logs_msgs,
|
|
416
|
+
)
|
|
417
|
+
|
|
418
|
+
@grpc_try_catch_wrapper(
|
|
419
|
+
error_message="Failed to get report for execution '{execution_id}'",
|
|
420
|
+
operation="Get Batch Execution Report",
|
|
421
|
+
)
|
|
422
|
+
def _get_batch_job_report(self, execution_id: str) -> GetBatchJobReportResponse:
|
|
423
|
+
return self.batch_job_management.GetBatchJobReport(
|
|
424
|
+
GetBatchJobReportRequest(batch_id=execution_id), timeout=CLIENT_TIMEOUT
|
|
425
|
+
)
|
|
426
|
+
|
|
427
|
+
def get_pre_signed_upload_urls_details(
|
|
428
|
+
self, model_id: str, number_of_batches: int, file_type: str = "csv"
|
|
429
|
+
) -> GetBatchJobPreSignedUploadUrlResult:
|
|
430
|
+
"""
|
|
431
|
+
Get pre signed upload urls details in order to start a job using FrogML cloud bucket
|
|
432
|
+
Args:
|
|
433
|
+
model_id: The model id for the execution
|
|
434
|
+
number_of_batches: The number of pre-signed urls to request
|
|
435
|
+
file_type: The file type that will be uploaded
|
|
436
|
+
|
|
437
|
+
Returns: GetBatchJobPreSignedUploadUrlResult which contains the input/output path, the bucket, and the pre-signed urls
|
|
438
|
+
"""
|
|
439
|
+
response: GetBatchJobPreSignedUploadUrlResponse = (
|
|
440
|
+
self._get_pre_signed_upload_url(
|
|
441
|
+
GetBatchJobPreSignedUploadUrlRequest(
|
|
442
|
+
model_id=model_id,
|
|
443
|
+
number_of_files=number_of_batches,
|
|
444
|
+
file_type=file_type,
|
|
445
|
+
)
|
|
446
|
+
)
|
|
447
|
+
)
|
|
448
|
+
|
|
449
|
+
return GetBatchJobPreSignedUploadUrlResult(
|
|
450
|
+
success=response.success,
|
|
451
|
+
failure_message=response.failure_message,
|
|
452
|
+
input_path=response.input_path,
|
|
453
|
+
output_path=response.output_path,
|
|
454
|
+
bucket=response.bucket,
|
|
455
|
+
urls=response.urls,
|
|
456
|
+
)
|
|
457
|
+
|
|
458
|
+
@grpc_try_catch_wrapper(
|
|
459
|
+
error_message="Failed to get pre signed urls for execution",
|
|
460
|
+
operation="Get Batch Pre-Signed Upload URLs",
|
|
461
|
+
)
|
|
462
|
+
def _get_pre_signed_upload_url(
|
|
463
|
+
self, request: GetBatchJobPreSignedUploadUrlRequest
|
|
464
|
+
) -> GetBatchJobPreSignedUploadUrlResponse:
|
|
465
|
+
return self.batch_job_management.GetBatchJobPreSignedUploadUrl(
|
|
466
|
+
request, timeout=CLIENT_TIMEOUT
|
|
467
|
+
)
|
|
468
|
+
|
|
469
|
+
def get_pre_signed_download_urls_details(
|
|
470
|
+
self, execution_id: str
|
|
471
|
+
) -> GetBatchJobPreSignedDownloadUrlResult:
|
|
472
|
+
"""
|
|
473
|
+
Get pre signed urls links in order to download files using FrogML cloud bucket
|
|
474
|
+
Args:
|
|
475
|
+
execution_id: The execution id of the files
|
|
476
|
+
|
|
477
|
+
Returns: GetBatchJobPreSignedDownloadUrlResult which contains the pre-signed urls of the output files
|
|
478
|
+
|
|
479
|
+
"""
|
|
480
|
+
response: GetBatchJobPreSignedDownloadUrlResponse = (
|
|
481
|
+
self._get_pre_signed_download_url(execution_id)
|
|
482
|
+
)
|
|
483
|
+
|
|
484
|
+
return GetBatchJobPreSignedDownloadUrlResult(
|
|
485
|
+
success=response.success,
|
|
486
|
+
failure_message=response.failure_message,
|
|
487
|
+
urls=response.urls,
|
|
488
|
+
)
|
|
489
|
+
|
|
490
|
+
@grpc_try_catch_wrapper(
|
|
491
|
+
error_message="Failed to get pre signed download urls for execution '{execution_id}'",
|
|
492
|
+
operation="Get Batch Pre-Signed Download URLs",
|
|
493
|
+
)
|
|
494
|
+
def _get_pre_signed_download_url(
|
|
495
|
+
self, execution_id: str
|
|
496
|
+
) -> GetBatchJobPreSignedDownloadUrlResponse:
|
|
497
|
+
return self.batch_job_management.GetBatchJobPreSignedDownloadUrl(
|
|
498
|
+
GetBatchJobPreSignedDownloadUrlRequest(job_id=execution_id),
|
|
499
|
+
timeout=CLIENT_TIMEOUT,
|
|
500
|
+
)
|
|
501
|
+
|
|
502
|
+
@grpc_try_catch_wrapper(
|
|
503
|
+
error_message="Failed to get upload details",
|
|
504
|
+
operation="Get Batch Upload Details",
|
|
505
|
+
)
|
|
506
|
+
def get_upload_details(self, model_id: str) -> GetBatchJobUploadDetailsResponse:
|
|
507
|
+
"""
|
|
508
|
+
Get upload details in order to start a job using FrogML cloud bucket
|
|
509
|
+
Args:
|
|
510
|
+
model_id: The model id for the execution
|
|
511
|
+
|
|
512
|
+
Returns: GetBatchJobPreSignedUploadUrlResult which contains the input/output path, the bucket, and temporary credentials
|
|
513
|
+
"""
|
|
514
|
+
return self.batch_job_management.GetBatchJobUploadDetails(
|
|
515
|
+
GetBatchJobUploadDetailsRequest(
|
|
516
|
+
model_id=model_id,
|
|
517
|
+
),
|
|
518
|
+
timeout=CLIENT_TIMEOUT,
|
|
519
|
+
)
|
|
520
|
+
|
|
521
|
+
@grpc_try_catch_wrapper(
|
|
522
|
+
error_message="Failed to get download details",
|
|
523
|
+
operation="Get Batch Download Details",
|
|
524
|
+
)
|
|
525
|
+
def get_download_details(
|
|
526
|
+
self, execution_id: str
|
|
527
|
+
) -> GetBatchJobDownloadDetailsResponse:
|
|
528
|
+
"""
|
|
529
|
+
Get download details in order to download files using FrogML cloud bucket
|
|
530
|
+
Args:
|
|
531
|
+
execution_id: The execution id of the files
|
|
532
|
+
|
|
533
|
+
Returns: GetBatchJobDownloadDetailsResponse which contains the keys the bucket, and temporary credentials
|
|
534
|
+
"""
|
|
535
|
+
return self.batch_job_management.GetBatchJobDownloadDetails(
|
|
536
|
+
GetBatchJobDownloadDetailsRequest(
|
|
537
|
+
job_id=execution_id,
|
|
538
|
+
),
|
|
539
|
+
timeout=CLIENT_TIMEOUT,
|
|
540
|
+
)
|
|
541
|
+
|
|
542
|
+
@grpc_try_catch_wrapper(
|
|
543
|
+
error_message="Failed to list batch jobs", operation="List Batch Jobs"
|
|
544
|
+
)
|
|
545
|
+
def list_batch_jobs(self, model_id: str, build_id: str) -> ListBatchJobsResponse:
|
|
546
|
+
"""
|
|
547
|
+
List batch jobs by its model ID
|
|
548
|
+
Args:
|
|
549
|
+
model_id (str): The model ID
|
|
550
|
+
build_id (str): The build ID - optional.
|
|
551
|
+
|
|
552
|
+
Returns: ListBatchJobsResponse which contains list of batch jobs details
|
|
553
|
+
"""
|
|
554
|
+
return self.batch_job_management.ListBatchJobs(
|
|
555
|
+
ListBatchJobsRequest(model_id=model_id, build_id=build_id),
|
|
556
|
+
timeout=CLIENT_TIMEOUT,
|
|
557
|
+
)
|
|
558
|
+
|
|
559
|
+
@grpc_try_catch_wrapper(
|
|
560
|
+
error_message="Failed to get batch job details",
|
|
561
|
+
operation="Get Batch Job Details",
|
|
562
|
+
)
|
|
563
|
+
def get_batch_job_details(self, job_id: str) -> GetBatchJobDetailsResponse:
|
|
564
|
+
"""
|
|
565
|
+
Get batch jos by its job ID
|
|
566
|
+
Args:
|
|
567
|
+
job_id: The job ID
|
|
568
|
+
|
|
569
|
+
Returns: GetBatchJobDetailsResponse which contains list of task execution details
|
|
570
|
+
"""
|
|
571
|
+
return self.batch_job_management.GetBatchJobDetails(
|
|
572
|
+
GetBatchJobDetailsRequest(job_id=job_id),
|
|
573
|
+
timeout=CLIENT_TIMEOUT,
|
|
574
|
+
)
|
|
575
|
+
|
|
576
|
+
@grpc_try_catch_wrapper(
|
|
577
|
+
error_message="Failed to update task details for task '{task_id}'",
|
|
578
|
+
operation="Update Batch Task Details",
|
|
579
|
+
)
|
|
580
|
+
def update_task_details(self, task_id: str, input_file_paths: list[str]):
|
|
581
|
+
"""
|
|
582
|
+
Update task details for a specific task using the provided list of input file paths.
|
|
583
|
+
|
|
584
|
+
Args:
|
|
585
|
+
task_id: The ID of the task to update.
|
|
586
|
+
input_file_paths: A list of paths for the input files associated with the task.
|
|
587
|
+
"""
|
|
588
|
+
# Create InputFileDetails messages for each input file path
|
|
589
|
+
input_files_details = [
|
|
590
|
+
InputFileDetails(path=file_path) for file_path in input_file_paths
|
|
591
|
+
]
|
|
592
|
+
|
|
593
|
+
# Create BatchTaskDetails message for the single task
|
|
594
|
+
batch_task_details = BatchTaskDetails(
|
|
595
|
+
task_id=task_id, input_files_details=input_files_details
|
|
596
|
+
)
|
|
597
|
+
|
|
598
|
+
update_request = UpdateTasksDetailsRequest(
|
|
599
|
+
tasks_details=[batch_task_details] # Wrap in a list
|
|
600
|
+
)
|
|
601
|
+
|
|
602
|
+
return self.batch_job_management.UpdateTasksDetails(
|
|
603
|
+
update_request, timeout=CLIENT_TIMEOUT
|
|
604
|
+
)
|
{frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/batch_job_management/executions_config.py
RENAMED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
from collections import defaultdict
|
|
2
2
|
from dataclasses import dataclass, field
|
|
3
|
+
from http import HTTPStatus
|
|
3
4
|
from typing import Dict, List, Tuple, Union
|
|
4
5
|
|
|
5
6
|
from frogml._proto.qwak.batch_job.v1.batch_job_resources_pb2 import (
|
|
@@ -127,11 +128,15 @@ class ExecutionConfig(YamlConfigMixin, FrogmlConfigBase):
|
|
|
127
128
|
|
|
128
129
|
if not self.execution.source_bucket:
|
|
129
130
|
raise FrogmlException(
|
|
130
|
-
"Must supply either --bucket or --source-bucket parameter"
|
|
131
|
+
error_message="Must supply either --bucket or --source-bucket parameter",
|
|
132
|
+
status_code=HTTPStatus.BAD_REQUEST,
|
|
133
|
+
operation="Validate Batch Execution Config",
|
|
131
134
|
)
|
|
132
135
|
if not self.execution.destination_bucket:
|
|
133
136
|
raise FrogmlException(
|
|
134
|
-
"Must supply either --bucket or --destination-bucket parameter"
|
|
137
|
+
error_message="Must supply either --bucket or --destination-bucket parameter",
|
|
138
|
+
status_code=HTTPStatus.BAD_REQUEST,
|
|
139
|
+
operation="Validate Batch Execution Config",
|
|
135
140
|
)
|
|
136
141
|
|
|
137
142
|
@property
|
|
@@ -195,7 +200,9 @@ def dictify_params(parameters: Union[Dict[str, str], List[str], Tuple[str]]):
|
|
|
195
200
|
for param in parameters:
|
|
196
201
|
if "=" not in param:
|
|
197
202
|
raise FrogmlException(
|
|
198
|
-
f'The parameter definition passed {param} is invalid. Format is "KEY=VALUE"'
|
|
203
|
+
error_message=f'The parameter definition passed {param} is invalid. Format is "KEY=VALUE"',
|
|
204
|
+
status_code=HTTPStatus.BAD_REQUEST,
|
|
205
|
+
operation="Parse Batch Parameters",
|
|
199
206
|
)
|
|
200
207
|
split_param = param.split("=")
|
|
201
208
|
result[split_param[0]] = split_param[1]
|
{frogml-1.2.49 → frogml-2.0.0}/frogml/core/clients/build_orchestrator/build_model_request_getter.py
RENAMED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import json
|
|
2
2
|
import re
|
|
3
|
+
from http import HTTPStatus
|
|
3
4
|
from typing import List, Optional, TYPE_CHECKING
|
|
4
5
|
|
|
5
6
|
import yaml
|
|
@@ -23,6 +24,7 @@ from frogml._proto.qwak.user_application.common.v0.resources_pb2 import (
|
|
|
23
24
|
)
|
|
24
25
|
from frogml.core.exceptions import FrogmlException
|
|
25
26
|
|
|
27
|
+
BUILD_MODEL_OPERATION = "Build Model"
|
|
26
28
|
|
|
27
29
|
if TYPE_CHECKING:
|
|
28
30
|
from frogml.core.inner.build_config.build_config_v1 import BuildConfigV1
|
|
@@ -139,4 +141,8 @@ def _purchase_option_to_enum(purchase_option: Optional[str]) -> PurchaseOption:
|
|
|
139
141
|
elif purchase_option == "spot":
|
|
140
142
|
return PurchaseOption.SPOT_PURCHASE_OPTION
|
|
141
143
|
else:
|
|
142
|
-
raise FrogmlException(
|
|
144
|
+
raise FrogmlException(
|
|
145
|
+
error_message="Purchase option must be either 'ondemand' or 'spot'",
|
|
146
|
+
status_code=HTTPStatus.BAD_REQUEST,
|
|
147
|
+
operation=BUILD_MODEL_OPERATION,
|
|
148
|
+
)
|