frogml-core 0.0.1__py3-none-any.whl → 0.0.2__py3-none-any.whl
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_core/__init__.py +25 -0
- frogml_core/automations/__init__.py +70 -0
- frogml_core/automations/automation_executions.py +99 -0
- frogml_core/automations/automations.py +396 -0
- frogml_core/automations/batch_execution_action.py +336 -0
- frogml_core/automations/build_and_deploy_action.py +840 -0
- frogml_core/automations/common.py +106 -0
- frogml_core/clients/_inner/edge_communications.py +24 -0
- frogml_core/clients/administration/authenticated_user/client.py +41 -0
- frogml_core/clients/administration/authentication/client.py +34 -0
- frogml_core/clients/administration/eco_system/client.py +152 -0
- frogml_core/clients/administration/eco_system/eco_system_utils.py +15 -0
- frogml_core/clients/administration/environment/client.py +77 -0
- frogml_core/clients/administration/self_service/client.py +73 -0
- frogml_core/clients/alert_management/client.py +64 -0
- frogml_core/clients/alerts_registry/channel.py +132 -0
- frogml_core/clients/alerts_registry/client.py +137 -0
- frogml_core/clients/analytics/client.py +82 -0
- frogml_core/clients/audience/client.py +53 -0
- frogml_core/clients/automation_management/client.py +274 -0
- frogml_core/clients/autoscaling/client.py +34 -0
- frogml_core/clients/batch_job_management/client.py +544 -0
- frogml_core/clients/batch_job_management/executions_config.py +201 -0
- frogml_core/clients/build_management/client.py +115 -0
- frogml_core/clients/build_orchestrator/build_model_request_getter.py +138 -0
- frogml_core/clients/build_orchestrator/client.py +456 -0
- frogml_core/clients/build_orchestrator/internal_client.py +114 -0
- frogml_core/clients/data_versioning/client.py +76 -0
- frogml_core/clients/data_versioning/data_tag_filter.py +32 -0
- frogml_core/clients/deployment/client.py +191 -0
- frogml_core/clients/feature_store/execution_management_client.py +102 -0
- frogml_core/clients/feature_store/job_registry_client.py +71 -0
- frogml_core/clients/feature_store/management_client.py +570 -0
- frogml_core/clients/feature_store/offline_serving_client.py +249 -0
- frogml_core/clients/feature_store/operator_client.py +164 -0
- frogml_core/clients/file_versioning/client.py +77 -0
- frogml_core/clients/file_versioning/file_tag_filter.py +32 -0
- frogml_core/clients/instance_template/client.py +67 -0
- frogml_core/clients/integration_management/integration_manager_client.py +35 -0
- frogml_core/clients/integration_management/integration_utils.py +27 -0
- frogml_core/clients/integration_management/openai/openai_system_secret.py +58 -0
- frogml_core/clients/jfrog_gateway/client.py +41 -0
- frogml_core/clients/kube_deployment_captain/client.py +233 -0
- frogml_core/clients/logging_client/client.py +148 -0
- frogml_core/clients/model_management/client.py +128 -0
- frogml_core/clients/model_version_manager/client.py +111 -0
- frogml_core/clients/project/client.py +60 -0
- frogml_core/clients/prompt_manager/model_descriptor_mapper.py +196 -0
- frogml_core/clients/prompt_manager/prompt_manager_client.py +190 -0
- frogml_core/clients/prompt_manager/prompt_proto_mapper.py +264 -0
- frogml_core/clients/secret_service/client.py +96 -0
- frogml_core/clients/system_secret/system_secret_client.py +31 -0
- frogml_core/clients/user_application_instance/client.py +177 -0
- frogml_core/clients/vector_store/management_client.py +127 -0
- frogml_core/clients/vector_store/serving_client.py +157 -0
- frogml_core/clients/workspace_manager/client.py +224 -0
- frogml_core/exceptions/frogml_external_exception.py +11 -0
- frogml_core/feature_store/_common/artifact_utils.py +57 -0
- frogml_core/feature_store/_common/feature_set_utils.py +261 -0
- frogml_core/feature_store/_common/featureset_asterisk_handler.py +115 -0
- frogml_core/feature_store/_common/packaging.py +244 -0
- frogml_core/feature_store/_common/source_code_spec.py +62 -0
- frogml_core/feature_store/_common/source_code_spec_factory.py +54 -0
- frogml_core/feature_store/data_sources/__init__.py +67 -0
- frogml_core/feature_store/data_sources/attributes.py +25 -0
- frogml_core/feature_store/data_sources/base.py +128 -0
- frogml_core/feature_store/data_sources/batch/_batch.py +9 -0
- frogml_core/feature_store/data_sources/batch/_jdbc.py +22 -0
- frogml_core/feature_store/data_sources/batch/athena.py +272 -0
- frogml_core/feature_store/data_sources/batch/big_query.py +80 -0
- frogml_core/feature_store/data_sources/batch/clickhouse.py +60 -0
- frogml_core/feature_store/data_sources/batch/csv.py +62 -0
- frogml_core/feature_store/data_sources/batch/elastic_search.py +61 -0
- frogml_core/feature_store/data_sources/batch/filesystem/aws.py +93 -0
- frogml_core/feature_store/data_sources/batch/filesystem/gcp.py +54 -0
- frogml_core/feature_store/data_sources/batch/filesystem/utils.py +59 -0
- frogml_core/feature_store/data_sources/batch/mongodb.py +58 -0
- frogml_core/feature_store/data_sources/batch/mysql.py +50 -0
- frogml_core/feature_store/data_sources/batch/parquet.py +57 -0
- frogml_core/feature_store/data_sources/batch/postgres.py +50 -0
- frogml_core/feature_store/data_sources/batch/redshift.py +85 -0
- frogml_core/feature_store/data_sources/batch/snowflake.py +77 -0
- frogml_core/feature_store/data_sources/batch/vertica.py +58 -0
- frogml_core/feature_store/data_sources/source_authentication.py +35 -0
- frogml_core/feature_store/data_sources/streaming/_streaming.py +9 -0
- frogml_core/feature_store/data_sources/streaming/kafka/__init__.py +25 -0
- frogml_core/feature_store/data_sources/streaming/kafka/authentication.py +124 -0
- frogml_core/feature_store/data_sources/streaming/kafka/deserialization.py +115 -0
- frogml_core/feature_store/data_sources/streaming/kafka/kafka.py +123 -0
- frogml_core/feature_store/data_sources/time_partition_columns.py +178 -0
- frogml_core/feature_store/entities/entity.py +73 -0
- frogml_core/feature_store/execution/backfill.py +197 -0
- frogml_core/feature_store/execution/execution.py +595 -0
- frogml_core/feature_store/execution/execution_query.py +91 -0
- frogml_core/feature_store/feature_sets/_utils/_featureset_utils.py +45 -0
- frogml_core/feature_store/feature_sets/backfill.py +72 -0
- frogml_core/feature_store/feature_sets/base_feature_set.py +150 -0
- frogml_core/feature_store/feature_sets/batch.py +480 -0
- frogml_core/feature_store/feature_sets/execution_spec.py +75 -0
- frogml_core/feature_store/feature_sets/metadata.py +75 -0
- frogml_core/feature_store/feature_sets/read_policies.py +245 -0
- frogml_core/feature_store/feature_sets/streaming.py +640 -0
- frogml_core/feature_store/feature_sets/streaming_backfill.py +271 -0
- frogml_core/feature_store/feature_sets/transformations/__init__.py +35 -0
- frogml_core/feature_store/feature_sets/transformations/aggregations/aggregations.py +443 -0
- frogml_core/feature_store/feature_sets/transformations/aggregations/windows.py +70 -0
- frogml_core/feature_store/feature_sets/transformations/functions/__init__.py +10 -0
- frogml_core/feature_store/feature_sets/transformations/functions/frogml_pandas.py +66 -0
- frogml_core/feature_store/feature_sets/transformations/transformations.py +467 -0
- frogml_core/feature_store/feature_sets/transformations/validations/validations_util.py +78 -0
- frogml_core/feature_store/offline/__init__.py +4 -0
- frogml_core/feature_store/offline/_offline_serving_validations.py +32 -0
- frogml_core/feature_store/offline/athena/athena_query_engine.py +154 -0
- frogml_core/feature_store/offline/client.py +721 -0
- frogml_core/feature_store/offline/client_v2.py +340 -0
- frogml_core/feature_store/offline/feature_set_features.py +25 -0
- frogml_core/feature_store/online/client.py +352 -0
- frogml_core/feature_store/online/endpoint_utils.py +65 -0
- frogml_core/feature_store/sinks/base.py +18 -0
- frogml_core/feature_store/sinks/kafka.py +61 -0
- frogml_core/feature_store/sinks/streaming/attachment.py +34 -0
- frogml_core/feature_store/sinks/streaming/factory.py +60 -0
- frogml_core/feature_store/validations/validation_options.py +82 -0
- frogml_core/feature_store/validations/validation_response.py +121 -0
- frogml_core/feature_store/validations/validator.py +106 -0
- frogml_core/frogml_client/batch_jobs/execution.py +49 -0
- frogml_core/frogml_client/batch_jobs/task.py +43 -0
- frogml_core/frogml_client/build_api_helpers/build_api_steps.py +53 -0
- frogml_core/frogml_client/build_api_helpers/trigger_build_api.py +67 -0
- frogml_core/frogml_client/builds/build.py +97 -0
- frogml_core/frogml_client/builds/filters/metric_filter.py +38 -0
- frogml_core/frogml_client/builds/filters/parameter_filter.py +36 -0
- frogml_core/frogml_client/client.py +876 -0
- frogml_core/frogml_client/data_versioning/data_tag.py +24 -0
- frogml_core/frogml_client/deployments/deployment.py +409 -0
- frogml_core/frogml_client/file_versioning/file_tag.py +24 -0
- frogml_core/frogml_client/models/model.py +52 -0
- frogml_core/frogml_client/models/model_metadata.py +31 -0
- frogml_core/frogml_client/projects/project.py +56 -0
- frogml_core/inner/build_config/build_config_v1.py +315 -0
- frogml_core/inner/build_logic/build_loggers/trigger_build_logger.py +50 -0
- frogml_core/inner/build_logic/execute_build_pipeline.py +64 -0
- frogml_core/inner/build_logic/interface/context_interface.py +58 -0
- frogml_core/inner/build_logic/interface/phase_run_handler.py +71 -0
- frogml_core/inner/build_logic/interface/step_inteface.py +26 -0
- frogml_core/inner/build_logic/phases/phase_010_fetch_model/fetch_model_step.py +41 -0
- frogml_core/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/common.py +32 -0
- frogml_core/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/fetch_strategy_manager.py +62 -0
- frogml_core/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/strategy/folder/folder_strategy.py +131 -0
- frogml_core/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/strategy/git/git_strategy.py +184 -0
- frogml_core/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/strategy/strategy.py +50 -0
- frogml_core/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/strategy/zip/zip_strategy.py +64 -0
- frogml_core/inner/build_logic/phases/phase_010_fetch_model/post_fetch_validation_step.py +139 -0
- frogml_core/inner/build_logic/phases/phase_010_fetch_model/pre_fetch_validation_step.py +263 -0
- frogml_core/inner/build_logic/phases/phase_010_fetch_model/set_version_step.py +33 -0
- frogml_core/inner/build_logic/phases/phase_020_remote_register_frogml_build/cleanup_step.py +20 -0
- frogml_core/inner/build_logic/phases/phase_020_remote_register_frogml_build/start_remote_build_step.py +42 -0
- frogml_core/inner/build_logic/phases/phase_020_remote_register_frogml_build/upload_step.py +259 -0
- frogml_core/inner/build_logic/phases/phases_pipeline.py +44 -0
- frogml_core/inner/build_logic/run_handlers/programmatic_phase_run_handler.py +101 -0
- frogml_core/inner/build_logic/tools/dependencies_tools.py +68 -0
- frogml_core/inner/build_logic/tools/files.py +237 -0
- frogml_core/inner/build_logic/tools/ignore_files.py +20 -0
- frogml_core/inner/build_logic/trigger_build_context.py +10 -0
- frogml_core/inner/di_configuration/__init__.py +75 -0
- frogml_core/inner/di_configuration/account.py +106 -0
- frogml_core/inner/di_configuration/containers.py +40 -0
- frogml_core/inner/instance_template/verify_template_id.py +50 -0
- frogml_core/inner/model_loggers_utils.py +110 -0
- frogml_core/inner/runtime_di/__init__.py +16 -0
- frogml_core/inner/runtime_di/containers.py +19 -0
- frogml_core/inner/tool/__init__.py +1 -0
- frogml_core/inner/tool/auth.py +70 -0
- frogml_core/inner/tool/grpc/grpc_auth.py +42 -0
- frogml_core/inner/tool/grpc/grpc_tools.py +209 -0
- frogml_core/inner/tool/grpc/grpc_try_wrapping.py +16 -0
- frogml_core/inner/tool/protobuf_factory.py +45 -0
- frogml_core/inner/tool/run_config/base.py +127 -0
- frogml_core/llmops/generation/_steaming.py +78 -0
- frogml_core/llmops/generation/chat/openai/types/chat/chat_completion.py +88 -0
- frogml_core/llmops/generation/chat/openai/types/chat/chat_completion_chunk.py +153 -0
- frogml_core/llmops/generation/streaming.py +26 -0
- frogml_core/llmops/model/descriptor.py +40 -0
- frogml_core/llmops/prompt/base.py +136 -0
- frogml_core/llmops/prompt/chat/message.py +24 -0
- frogml_core/llmops/prompt/chat/template.py +113 -0
- frogml_core/llmops/prompt/chat/value.py +10 -0
- frogml_core/llmops/prompt/manager.py +138 -0
- frogml_core/llmops/prompt/template.py +24 -0
- frogml_core/llmops/provider/chat.py +44 -0
- frogml_core/llmops/provider/openai/client.py +126 -0
- frogml_core/llmops/provider/openai/provider.py +93 -0
- frogml_core/model/_entity_extraction.py +116 -0
- frogml_core/model/adapters/input_adapters/numpy_input_adapter.py +100 -0
- frogml_core/model/adapters/output_adapters/numpy_output_adapter.py +32 -0
- frogml_core/model/analytics_logging.py +14 -0
- frogml_core/model/base.py +86 -0
- frogml_core/model/decorators/api.py +66 -0
- frogml_core/model/decorators/impl/api_implementation.py +29 -0
- frogml_core/model/decorators/timer.py +20 -0
- frogml_core/model/fs_info_mapping_retriever.py +63 -0
- frogml_core/model/model_version_tracking.py +57 -0
- frogml_core/model/schema.py +52 -0
- frogml_core/model/schema_entities.py +107 -0
- frogml_core/model/tools/__init__.py +24 -0
- frogml_core/model/tools/adapters/input.py +66 -0
- frogml_core/model/tools/adapters/input_adapters/dataframe_input.py +48 -0
- frogml_core/model/tools/adapters/input_adapters/image_input.py +45 -0
- frogml_core/model/tools/adapters/input_adapters/json_input.py +20 -0
- frogml_core/model/tools/adapters/input_adapters/tf_tensor_input.py +44 -0
- frogml_core/model/tools/adapters/output.py +75 -0
- frogml_core/model/tools/adapters/output_adapters/dataframe_output.py +30 -0
- frogml_core/model/tools/adapters/output_adapters/json_output.py +17 -0
- frogml_core/model/tools/adapters/output_adapters/tf_tensor_output.py +41 -0
- frogml_core/model/tools/run_model_locally.py +68 -0
- frogml_core/model/utils/feature_utils.py +71 -0
- frogml_core/model_loggers/artifact_logger.py +95 -0
- frogml_core/model_loggers/data_logger.py +172 -0
- frogml_core/model_loggers/model_logger.py +30 -0
- frogml_core/tools/logger/logger.py +287 -0
- frogml_core/vector_store/client.py +151 -0
- frogml_core/vector_store/collection.py +429 -0
- frogml_core/vector_store/filters.py +359 -0
- frogml_core/vector_store/inference_client.py +105 -0
- frogml_core/vector_store/rest_helpers.py +81 -0
- frogml_core/vector_store/utils/filter_utils.py +23 -0
- frogml_core/vector_store/utils/upsert_utils.py +218 -0
- frogml_core-0.0.2.dist-info/METADATA +49 -0
- frogml_core-0.0.2.dist-info/RECORD +1013 -0
- frogml_proto/jfml/model_version/v1/model_repository_spec_pb2.py +35 -0
- frogml_proto/jfml/model_version/v1/model_version_framework_pb2.py +45 -0
- frogml_proto/jfml/model_version/v1/model_version_manager_service_pb2.py +151 -0
- frogml_proto/jfml/model_version/v1/model_version_manager_service_pb2.pyi +230 -0
- frogml_proto/jfml/model_version/v1/model_version_manager_service_pb2_grpc.py +237 -0
- frogml_proto/jfml/model_version/v1/model_version_pb2.py +88 -0
- frogml_proto/jfml/model_version/v1/model_version_pb2.pyi +133 -0
- frogml_proto/qwak/administration/account/v1/account_pb2.py +114 -0
- frogml_proto/qwak/administration/account/v1/account_pb2.pyi +257 -0
- frogml_proto/qwak/administration/account/v1/account_service_pb2.py +212 -0
- frogml_proto/qwak/administration/account/v1/account_service_pb2.pyi +344 -0
- frogml_proto/qwak/administration/account/v1/account_service_pb2_grpc.py +338 -0
- frogml_proto/qwak/administration/account/v1/jfrog_tenant_details_pb2.py +77 -0
- frogml_proto/qwak/administration/account/v1/personalization_pb2.py +45 -0
- frogml_proto/qwak/administration/account/v1/preferences_pb2.py +36 -0
- frogml_proto/qwak/administration/account/v1/preferences_pb2.pyi +35 -0
- frogml_proto/qwak/administration/account/v1/terms_pb2.py +75 -0
- frogml_proto/qwak/administration/authenticated_user/v1/authenticated_user_service_pb2.py +91 -0
- frogml_proto/qwak/administration/authenticated_user/v1/authenticated_user_service_pb2.pyi +108 -0
- frogml_proto/qwak/administration/authenticated_user/v1/authenticated_user_service_pb2_grpc.py +135 -0
- frogml_proto/qwak/administration/authenticated_user/v1/credentials_pb2.py +46 -0
- frogml_proto/qwak/administration/authenticated_user/v1/details_pb2.py +75 -0
- frogml_proto/qwak/administration/v0/authentication/authentication_service_pb2.py +69 -0
- frogml_proto/qwak/administration/v0/authentication/authentication_service_pb2_grpc.py +67 -0
- frogml_proto/qwak/administration/v0/environments/configuration_pb2.py +93 -0
- frogml_proto/qwak/administration/v0/environments/environment_pb2.py +66 -0
- frogml_proto/qwak/administration/v0/environments/environment_pb2.pyi +156 -0
- frogml_proto/qwak/administration/v0/environments/environment_service_pb2.py +184 -0
- frogml_proto/qwak/administration/v0/environments/environment_service_pb2.pyi +274 -0
- frogml_proto/qwak/administration/v0/environments/environment_service_pb2_grpc.py +272 -0
- frogml_proto/qwak/administration/v0/environments/personalization_pb2.py +45 -0
- frogml_proto/qwak/administration/v0/users/user_pb2.py +97 -0
- frogml_proto/qwak/admiral/secret/v0/secret_pb2.py +140 -0
- frogml_proto/qwak/admiral/secret/v0/secret_service_pb2.py +89 -0
- frogml_proto/qwak/admiral/secret/v0/secret_service_pb2.pyi +93 -0
- frogml_proto/qwak/admiral/secret/v0/secret_service_pb2_grpc.py +135 -0
- frogml_proto/qwak/admiral/secret/v0/system_secret_service_pb2.py +89 -0
- frogml_proto/qwak/admiral/secret/v0/system_secret_service_pb2.pyi +101 -0
- frogml_proto/qwak/admiral/secret/v0/system_secret_service_pb2_grpc.py +135 -0
- frogml_proto/qwak/admiral/user_application_instance/v0/user_application_instance_pb2.py +198 -0
- frogml_proto/qwak/admiral/user_application_instance/v0/user_application_instance_pb2.pyi +431 -0
- frogml_proto/qwak/admiral/user_application_instance/v0/user_application_instance_service_pb2.py +109 -0
- frogml_proto/qwak/admiral/user_application_instance/v0/user_application_instance_service_pb2.pyi +128 -0
- frogml_proto/qwak/admiral/user_application_instance/v0/user_application_instance_service_pb2_grpc.py +169 -0
- frogml_proto/qwak/analytics/analytics_pb2.py +142 -0
- frogml_proto/qwak/analytics/analytics_service_pb2.py +229 -0
- frogml_proto/qwak/analytics/analytics_service_pb2.pyi +339 -0
- frogml_proto/qwak/analytics/analytics_service_pb2_grpc.py +370 -0
- frogml_proto/qwak/audience/v1/audience_api_pb2.py +149 -0
- frogml_proto/qwak/audience/v1/audience_api_pb2.pyi +176 -0
- frogml_proto/qwak/audience/v1/audience_api_pb2_grpc.py +240 -0
- frogml_proto/qwak/audience/v1/audience_pb2.py +137 -0
- frogml_proto/qwak/auto_scaling/v1/auto_scaling_pb2.py +100 -0
- frogml_proto/qwak/auto_scaling/v1/auto_scaling_service_pb2.py +49 -0
- frogml_proto/qwak/auto_scaling/v1/auto_scaling_service_pb2.pyi +55 -0
- frogml_proto/qwak/auto_scaling/v1/auto_scaling_service_pb2_grpc.py +67 -0
- frogml_proto/qwak/automation/v1/action_pb2.py +220 -0
- frogml_proto/qwak/automation/v1/action_pb2.pyi +513 -0
- frogml_proto/qwak/automation/v1/auto_scaling_pb2.py +97 -0
- frogml_proto/qwak/automation/v1/automation_execution_pb2.py +65 -0
- frogml_proto/qwak/automation/v1/automation_management_service_pb2.py +283 -0
- frogml_proto/qwak/automation/v1/automation_management_service_pb2.pyi +386 -0
- frogml_proto/qwak/automation/v1/automation_management_service_pb2_grpc.py +429 -0
- frogml_proto/qwak/automation/v1/automation_pb2.py +59 -0
- frogml_proto/qwak/automation/v1/automation_pb2.pyi +121 -0
- frogml_proto/qwak/automation/v1/common_pb2.py +56 -0
- frogml_proto/qwak/automation/v1/notification_pb2.py +93 -0
- frogml_proto/qwak/automation/v1/trigger_pb2.py +76 -0
- frogml_proto/qwak/automation/v1/trigger_pb2.pyi +112 -0
- frogml_proto/qwak/batch_job/v1/batch_job_events_pb2.py +148 -0
- frogml_proto/qwak/batch_job/v1/batch_job_events_pb2.pyi +307 -0
- frogml_proto/qwak/batch_job/v1/batch_job_resources_pb2.py +47 -0
- frogml_proto/qwak/batch_job/v1/batch_job_service_pb2.py +570 -0
- frogml_proto/qwak/batch_job/v1/batch_job_service_pb2.pyi +1328 -0
- frogml_proto/qwak/batch_job/v1/batch_job_service_pb2_grpc.py +574 -0
- frogml_proto/qwak/build/v1/build_api_pb2.py +446 -0
- frogml_proto/qwak/build/v1/build_api_pb2.pyi +682 -0
- frogml_proto/qwak/build/v1/build_api_pb2_grpc.py +594 -0
- frogml_proto/qwak/build/v1/build_pb2.py +575 -0
- frogml_proto/qwak/build/v1/build_pb2.pyi +1328 -0
- frogml_proto/qwak/build_settings/build_settings_api_pb2.py +89 -0
- frogml_proto/qwak/build_settings/build_settings_api_pb2.pyi +106 -0
- frogml_proto/qwak/build_settings/build_settings_api_pb2_grpc.py +132 -0
- frogml_proto/qwak/build_settings/build_settings_pb2.py +95 -0
- frogml_proto/qwak/builds/build_pb2.py +233 -0
- frogml_proto/qwak/builds/build_pb2.pyi +582 -0
- frogml_proto/qwak/builds/build_url_pb2.py +86 -0
- frogml_proto/qwak/builds/builds_orchestrator_service_pb2.py +212 -0
- frogml_proto/qwak/builds/builds_orchestrator_service_pb2.pyi +322 -0
- frogml_proto/qwak/builds/builds_orchestrator_service_pb2_grpc.py +306 -0
- frogml_proto/qwak/builds/builds_pb2.py +556 -0
- frogml_proto/qwak/builds/builds_pb2.pyi +1271 -0
- frogml_proto/qwak/builds/builds_pb2_grpc.py +237 -0
- frogml_proto/qwak/builds/internal_builds_orchestrator_service_pb2.py +59 -0
- frogml_proto/qwak/builds/internal_builds_orchestrator_service_pb2.pyi +64 -0
- frogml_proto/qwak/builds/internal_builds_orchestrator_service_pb2_grpc.py +67 -0
- frogml_proto/qwak/data_versioning/data_versioning_pb2.py +45 -0
- frogml_proto/qwak/data_versioning/data_versioning_service_pb2.py +69 -0
- frogml_proto/qwak/data_versioning/data_versioning_service_pb2.pyi +83 -0
- frogml_proto/qwak/data_versioning/data_versioning_service_pb2_grpc.py +101 -0
- frogml_proto/qwak/deployment/alert_pb2.py +131 -0
- frogml_proto/qwak/deployment/alert_service_pb2.py +153 -0
- frogml_proto/qwak/deployment/alert_service_pb2.pyi +218 -0
- frogml_proto/qwak/deployment/alert_service_pb2_grpc.py +237 -0
- frogml_proto/qwak/deployment/deployment_messages_pb2.py +36 -0
- frogml_proto/qwak/deployment/deployment_messages_pb2.pyi +61 -0
- frogml_proto/qwak/deployment/deployment_pb2.py +644 -0
- frogml_proto/qwak/deployment/deployment_pb2.pyi +1582 -0
- frogml_proto/qwak/deployment/deployment_service_pb2.py +520 -0
- frogml_proto/qwak/deployment/deployment_service_pb2.pyi +817 -0
- frogml_proto/qwak/deployment/deployment_service_pb2_grpc.py +509 -0
- frogml_proto/qwak/ecosystem/v0/credentials_pb2.py +56 -0
- frogml_proto/qwak/ecosystem/v0/ecosystem_pb2.py +173 -0
- frogml_proto/qwak/ecosystem/v0/ecosystem_pb2.pyi +332 -0
- frogml_proto/qwak/ecosystem/v0/ecosystem_runtime_service_pb2.py +264 -0
- frogml_proto/qwak/ecosystem/v0/ecosystem_runtime_service_pb2.pyi +434 -0
- frogml_proto/qwak/ecosystem/v0/ecosystem_runtime_service_pb2_grpc.py +238 -0
- frogml_proto/qwak/execution/v1/backfill_pb2.py +97 -0
- frogml_proto/qwak/execution/v1/backfill_pb2.pyi +167 -0
- frogml_proto/qwak/execution/v1/batch_pb2.py +56 -0
- frogml_proto/qwak/execution/v1/deletion_pb2.py +65 -0
- frogml_proto/qwak/execution/v1/execution_pb2.py +96 -0
- frogml_proto/qwak/execution/v1/execution_pb2.pyi +201 -0
- frogml_proto/qwak/execution/v1/execution_service_pb2.py +294 -0
- frogml_proto/qwak/execution/v1/execution_service_pb2.pyi +431 -0
- frogml_proto/qwak/execution/v1/execution_service_pb2_grpc.py +467 -0
- frogml_proto/qwak/execution/v1/jobs/job_pb2.py +101 -0
- frogml_proto/qwak/execution/v1/jobs/job_pb2.pyi +282 -0
- frogml_proto/qwak/execution/v1/jobs/job_service_pb2.py +270 -0
- frogml_proto/qwak/execution/v1/jobs/job_service_pb2.pyi +469 -0
- frogml_proto/qwak/execution/v1/jobs/job_service_pb2_grpc.py +396 -0
- frogml_proto/qwak/execution/v1/jobs/reports/report_pb2.py +109 -0
- frogml_proto/qwak/execution/v1/jobs/reports/report_pb2.pyi +266 -0
- frogml_proto/qwak/execution/v1/state/execution_state_pb2.py +36 -0
- frogml_proto/qwak/execution/v1/state/execution_state_pb2.pyi +45 -0
- frogml_proto/qwak/execution/v1/state/execution_state_service_pb2.py +150 -0
- frogml_proto/qwak/execution/v1/state/execution_state_service_pb2.pyi +192 -0
- frogml_proto/qwak/execution/v1/state/execution_state_service_pb2_grpc.py +237 -0
- frogml_proto/qwak/execution/v1/state/featureset_state_pb2.py +35 -0
- frogml_proto/qwak/execution/v1/state/spark_execution_state_pb2.py +91 -0
- frogml_proto/qwak/execution/v1/streaming_aggregation_pb2.py +75 -0
- frogml_proto/qwak/execution/v1/streaming_pb2.py +65 -0
- frogml_proto/qwak/feature_store/entities/entity_pb2.py +79 -0
- frogml_proto/qwak/feature_store/entities/entity_service_pb2.py +149 -0
- frogml_proto/qwak/feature_store/entities/entity_service_pb2.pyi +203 -0
- frogml_proto/qwak/feature_store/entities/entity_service_pb2_grpc.py +237 -0
- frogml_proto/qwak/feature_store/features/aggregation_pb2.py +196 -0
- frogml_proto/qwak/feature_store/features/deployment_pb2.py +189 -0
- frogml_proto/qwak/feature_store/features/deployment_service_pb2.py +49 -0
- frogml_proto/qwak/feature_store/features/deployment_service_pb2.pyi +45 -0
- frogml_proto/qwak/feature_store/features/deployment_service_pb2_grpc.py +67 -0
- frogml_proto/qwak/feature_store/features/execution_pb2.py +77 -0
- frogml_proto/qwak/feature_store/features/feature_set_attribute_pb2.py +36 -0
- frogml_proto/qwak/feature_store/features/feature_set_attribute_pb2.pyi +33 -0
- frogml_proto/qwak/feature_store/features/feature_set_pb2.py +198 -0
- frogml_proto/qwak/feature_store/features/feature_set_pb2.pyi +443 -0
- frogml_proto/qwak/feature_store/features/feature_set_service_pb2.py +467 -0
- frogml_proto/qwak/feature_store/features/feature_set_service_pb2.pyi +663 -0
- frogml_proto/qwak/feature_store/features/feature_set_service_pb2_grpc.py +746 -0
- frogml_proto/qwak/feature_store/features/feature_set_state_pb2.py +203 -0
- frogml_proto/qwak/feature_store/features/feature_set_state_service_pb2.py +129 -0
- frogml_proto/qwak/feature_store/features/feature_set_state_service_pb2.pyi +175 -0
- frogml_proto/qwak/feature_store/features/feature_set_state_service_pb2_grpc.py +203 -0
- frogml_proto/qwak/feature_store/features/feature_set_types_pb2.py +381 -0
- frogml_proto/qwak/feature_store/features/feature_set_types_pb2.pyi +862 -0
- frogml_proto/qwak/feature_store/features/monitoring_pb2.py +55 -0
- frogml_proto/qwak/feature_store/features/real_time_feature_extractor_pb2.py +167 -0
- frogml_proto/qwak/feature_store/features/real_time_feature_extractor_pb2.pyi +359 -0
- frogml_proto/qwak/feature_store/jobs/job_pb2.py +68 -0
- frogml_proto/qwak/feature_store/jobs/job_service_pb2.py +149 -0
- frogml_proto/qwak/feature_store/jobs/job_service_pb2.pyi +237 -0
- frogml_proto/qwak/feature_store/jobs/job_service_pb2_grpc.py +237 -0
- frogml_proto/qwak/feature_store/jobs/v1/job_pb2.py +67 -0
- frogml_proto/qwak/feature_store/jobs/v1/job_service_pb2.py +210 -0
- frogml_proto/qwak/feature_store/jobs/v1/job_service_pb2.pyi +349 -0
- frogml_proto/qwak/feature_store/jobs/v1/job_service_pb2_grpc.py +338 -0
- frogml_proto/qwak/feature_store/platform/platform_details_pb2.py +46 -0
- frogml_proto/qwak/feature_store/platform/platform_details_pb2.pyi +54 -0
- frogml_proto/qwak/feature_store/reports/report_pb2.py +75 -0
- frogml_proto/qwak/feature_store/repository/common/platform_pb2.py +55 -0
- frogml_proto/qwak/feature_store/serving/management_pb2.py +69 -0
- frogml_proto/qwak/feature_store/serving/management_pb2.pyi +72 -0
- frogml_proto/qwak/feature_store/serving/management_pb2_grpc.py +101 -0
- frogml_proto/qwak/feature_store/serving/metadata_pb2.py +67 -0
- frogml_proto/qwak/feature_store/serving/metadata_pb2.pyi +158 -0
- frogml_proto/qwak/feature_store/serving/serving_pb2.py +254 -0
- frogml_proto/qwak/feature_store/serving/serving_pb2_grpc.py +101 -0
- frogml_proto/qwak/feature_store/serving/v1/value_pb2.py +46 -0
- frogml_proto/qwak/feature_store/sinks/sink_pb2.py +76 -0
- frogml_proto/qwak/feature_store/sinks/sink_pb2.pyi +137 -0
- frogml_proto/qwak/feature_store/sources/batch_pb2.py +362 -0
- frogml_proto/qwak/feature_store/sources/data_source_attribute_pb2.py +36 -0
- frogml_proto/qwak/feature_store/sources/data_source_attribute_pb2.pyi +33 -0
- frogml_proto/qwak/feature_store/sources/data_source_pb2.py +84 -0
- frogml_proto/qwak/feature_store/sources/data_source_pb2.pyi +169 -0
- frogml_proto/qwak/feature_store/sources/data_source_service_pb2.py +169 -0
- frogml_proto/qwak/feature_store/sources/data_source_service_pb2.pyi +237 -0
- frogml_proto/qwak/feature_store/sources/data_source_service_pb2_grpc.py +305 -0
- frogml_proto/qwak/feature_store/sources/streaming_pb2.py +175 -0
- frogml_proto/qwak/feature_store/v1/common/source_code/source_code_pb2.py +55 -0
- frogml_proto/qwak/feature_store/v1/internal/data_source/data_source_service_pb2.py +68 -0
- frogml_proto/qwak/feature_store/v1/internal/data_source/data_source_service_pb2_grpc.py +99 -0
- frogml_proto/qwak/feature_store/v1/internal/featureset/featureset_token_service_pb2.py +48 -0
- frogml_proto/qwak/feature_store/v1/internal/featureset/featureset_token_service_pb2_grpc.py +66 -0
- frogml_proto/qwak/features_operator/v1/features_operator_pb2.py +76 -0
- frogml_proto/qwak/features_operator/v1/features_operator_service_pb2.py +69 -0
- frogml_proto/qwak/features_operator/v1/features_operator_service_pb2.pyi +98 -0
- frogml_proto/qwak/features_operator/v1/features_operator_service_pb2_grpc.py +99 -0
- frogml_proto/qwak/features_operator/v2/features_operator_pb2.py +86 -0
- frogml_proto/qwak/features_operator/v2/features_operator_service_pb2.py +61 -0
- frogml_proto/qwak/features_operator/v2/features_operator_service_pb2.pyi +89 -0
- frogml_proto/qwak/features_operator/v2/features_operator_service_pb2_grpc.py +99 -0
- frogml_proto/qwak/features_operator/v3/features_operator_async_service_pb2.py +132 -0
- frogml_proto/qwak/features_operator/v3/features_operator_async_service_pb2.pyi +218 -0
- frogml_proto/qwak/features_operator/v3/features_operator_async_service_pb2_grpc.py +165 -0
- frogml_proto/qwak/features_operator/v3/features_operator_pb2.py +86 -0
- frogml_proto/qwak/file_versioning/file_versioning_pb2.py +56 -0
- frogml_proto/qwak/file_versioning/file_versioning_service_pb2.py +69 -0
- frogml_proto/qwak/file_versioning/file_versioning_service_pb2.pyi +83 -0
- frogml_proto/qwak/file_versioning/file_versioning_service_pb2_grpc.py +101 -0
- frogml_proto/qwak/fitness_service/constructs_pb2.py +120 -0
- frogml_proto/qwak/fitness_service/fitness_pb2.py +54 -0
- frogml_proto/qwak/fitness_service/fitness_pb2.pyi +126 -0
- frogml_proto/qwak/fitness_service/fitness_service_pb2.py +110 -0
- frogml_proto/qwak/fitness_service/fitness_service_pb2.pyi +121 -0
- frogml_proto/qwak/fitness_service/fitness_service_pb2_grpc.py +169 -0
- frogml_proto/qwak/fitness_service/status_pb2.py +128 -0
- frogml_proto/qwak/inference/feedback/feedback_pb2.py +118 -0
- frogml_proto/qwak/inference/feedback/feedback_pb2_grpc.py +100 -0
- frogml_proto/qwak/instance_template/instance_template_pb2.py +62 -0
- frogml_proto/qwak/instance_template/instance_template_pb2.pyi +108 -0
- frogml_proto/qwak/instance_template/instance_template_service_pb2.py +69 -0
- frogml_proto/qwak/instance_template/instance_template_service_pb2.pyi +79 -0
- frogml_proto/qwak/instance_template/instance_template_service_pb2_grpc.py +101 -0
- frogml_proto/qwak/integration/hugging_face_integration_pb2.py +85 -0
- frogml_proto/qwak/integration/integration_pb2.py +153 -0
- frogml_proto/qwak/integration/integration_pb2.pyi +357 -0
- frogml_proto/qwak/integration/integration_service_pb2.py +169 -0
- frogml_proto/qwak/integration/integration_service_pb2.pyi +234 -0
- frogml_proto/qwak/integration/integration_service_pb2_grpc.py +271 -0
- frogml_proto/qwak/integration/open_a_i_integration_pb2.py +85 -0
- frogml_proto/qwak/integration/opsgenie_integration_pb2.py +105 -0
- frogml_proto/qwak/integration/pagerduty_integration_pb2.py +127 -0
- frogml_proto/qwak/integration/slack_app_integration_pb2.py +127 -0
- frogml_proto/qwak/jfrog/gateway/v0/repository_pb2.py +95 -0
- frogml_proto/qwak/jfrog/gateway/v0/repository_service_pb2.py +69 -0
- frogml_proto/qwak/jfrog/gateway/v0/repository_service_pb2.pyi +71 -0
- frogml_proto/qwak/jfrog/gateway/v0/repository_service_pb2_grpc.py +101 -0
- frogml_proto/qwak/kube_deployment_captain/alert_pb2.py +120 -0
- frogml_proto/qwak/kube_deployment_captain/alerting_pb2.py +65 -0
- frogml_proto/qwak/kube_deployment_captain/batch_job_pb2.py +357 -0
- frogml_proto/qwak/kube_deployment_captain/deployment_pb2.py +182 -0
- frogml_proto/qwak/kube_deployment_captain/feature_set_deployment_pb2.py +172 -0
- frogml_proto/qwak/kube_deployment_captain/feature_set_deployment_pb2.pyi +370 -0
- frogml_proto/qwak/kube_deployment_captain/kube_deployment_captain_service_pb2.py +562 -0
- frogml_proto/qwak/kube_deployment_captain/kube_deployment_captain_service_pb2.pyi +924 -0
- frogml_proto/qwak/kube_deployment_captain/kube_deployment_captain_service_pb2_grpc.py +1226 -0
- frogml_proto/qwak/kube_deployment_captain/traffic_mapping_pb2.py +45 -0
- frogml_proto/qwak/logging/log_filter_pb2.py +66 -0
- frogml_proto/qwak/logging/log_line_pb2.py +48 -0
- frogml_proto/qwak/logging/log_reader_service_pb2.py +51 -0
- frogml_proto/qwak/logging/log_reader_service_pb2.pyi +83 -0
- frogml_proto/qwak/logging/log_reader_service_pb2_grpc.py +67 -0
- frogml_proto/qwak/logging/log_source_pb2.py +155 -0
- frogml_proto/qwak/model_descriptor/open_ai_descriptor_pb2.py +96 -0
- frogml_proto/qwak/models/models_pb2.py +427 -0
- frogml_proto/qwak/models/models_pb2.pyi +851 -0
- frogml_proto/qwak/models/models_pb2_grpc.py +402 -0
- frogml_proto/qwak/monitoring/v0/alerting_channel_management_service_pb2.py +149 -0
- frogml_proto/qwak/monitoring/v0/alerting_channel_management_service_pb2.pyi +183 -0
- frogml_proto/qwak/monitoring/v0/alerting_channel_management_service_pb2_grpc.py +237 -0
- frogml_proto/qwak/monitoring/v0/alerting_channel_pb2.py +175 -0
- frogml_proto/qwak/monitoring/v0/alerting_channel_sync_service_pb2.py +70 -0
- frogml_proto/qwak/monitoring/v0/alerting_channel_sync_service_pb2.pyi +85 -0
- frogml_proto/qwak/monitoring/v0/alerting_channel_sync_service_pb2_grpc.py +101 -0
- frogml_proto/qwak/offline/serving/v1/feature_values_pb2.py +35 -0
- frogml_proto/qwak/offline/serving/v1/offline_serving_async_service_pb2.py +148 -0
- frogml_proto/qwak/offline/serving/v1/offline_serving_async_service_pb2.pyi +279 -0
- frogml_proto/qwak/offline/serving/v1/offline_serving_async_service_pb2_grpc.py +165 -0
- frogml_proto/qwak/offline/serving/v1/options_pb2.py +35 -0
- frogml_proto/qwak/offline/serving/v1/population_pb2.py +75 -0
- frogml_proto/qwak/projects/projects_pb2.py +225 -0
- frogml_proto/qwak/projects/projects_pb2.pyi +436 -0
- frogml_proto/qwak/projects/projects_pb2_grpc.py +203 -0
- frogml_proto/qwak/prompt/v1/prompt/prompt_manager_service_pb2.py +270 -0
- frogml_proto/qwak/prompt/v1/prompt/prompt_manager_service_pb2.pyi +417 -0
- frogml_proto/qwak/prompt/v1/prompt/prompt_manager_service_pb2_grpc.py +441 -0
- frogml_proto/qwak/prompt/v1/prompt/prompt_pb2.py +237 -0
- frogml_proto/qwak/prompt/v1/prompt/prompt_pb2.pyi +415 -0
- frogml_proto/qwak/secret_service/secret_service_pb2.py +88 -0
- frogml_proto/qwak/secret_service/secret_service_pb2_grpc.py +135 -0
- frogml_proto/qwak/self_service/account/v0/account_membership_pb2.py +134 -0
- frogml_proto/qwak/self_service/account/v0/account_membership_pb2.pyi +274 -0
- frogml_proto/qwak/self_service/account/v0/account_membership_service_pb2.py +251 -0
- frogml_proto/qwak/self_service/account/v0/account_membership_service_pb2.pyi +337 -0
- frogml_proto/qwak/self_service/account/v0/account_membership_service_pb2_grpc.py +407 -0
- frogml_proto/qwak/self_service/account/v0/account_status_pb2.py +93 -0
- frogml_proto/qwak/self_service/account/v0/account_status_pb2.pyi +169 -0
- frogml_proto/qwak/self_service/account/v0/managing_account_pb2.py +155 -0
- frogml_proto/qwak/self_service/account/v0/managing_account_service_pb2.py +110 -0
- frogml_proto/qwak/self_service/account/v0/managing_account_service_pb2.pyi +136 -0
- frogml_proto/qwak/self_service/account/v0/managing_account_service_pb2_grpc.py +169 -0
- frogml_proto/qwak/self_service/user/v1/api_key_pb2.py +35 -0
- frogml_proto/qwak/self_service/user/v1/user_pb2.py +37 -0
- frogml_proto/qwak/self_service/user/v1/user_pb2.pyi +62 -0
- frogml_proto/qwak/self_service/user/v1/user_service_pb2.py +146 -0
- frogml_proto/qwak/self_service/user/v1/user_service_pb2.pyi +209 -0
- frogml_proto/qwak/self_service/user/v1/user_service_pb2_grpc.py +203 -0
- frogml_proto/qwak/traffic/v1/traffic_api_pb2.py +109 -0
- frogml_proto/qwak/traffic/v1/traffic_api_pb2.pyi +137 -0
- frogml_proto/qwak/traffic/v1/traffic_api_pb2_grpc.py +169 -0
- frogml_proto/qwak/traffic/v1/traffic_pb2.py +134 -0
- frogml_proto/qwak/user_application/common/v0/resources_pb2.py +159 -0
- frogml_proto/qwak/user_application/v0/user_application_pb2.py +69 -0
- frogml_proto/qwak/vectors/v1/collection/collection_pb2.py +128 -0
- frogml_proto/qwak/vectors/v1/collection/collection_service_pb2.py +189 -0
- frogml_proto/qwak/vectors/v1/collection/collection_service_pb2.pyi +258 -0
- frogml_proto/qwak/vectors/v1/collection/collection_service_pb2_grpc.py +304 -0
- frogml_proto/qwak/vectors/v1/collection/event/collection_event_pb2.py +36 -0
- frogml_proto/qwak/vectors/v1/filters_pb2.py +156 -0
- frogml_proto/qwak/vectors/v1/vector_pb2.py +78 -0
- frogml_proto/qwak/vectors/v1/vector_service_pb2.py +134 -0
- frogml_proto/qwak/vectors/v1/vector_service_pb2.pyi +243 -0
- frogml_proto/qwak/vectors/v1/vector_service_pb2_grpc.py +201 -0
- frogml_proto/qwak/workspace/workspace_pb2.py +135 -0
- frogml_proto/qwak/workspace/workspace_pb2.pyi +331 -0
- frogml_proto/qwak/workspace/workspace_service_pb2.py +309 -0
- frogml_proto/qwak/workspace/workspace_service_pb2.pyi +393 -0
- frogml_proto/qwak/workspace/workspace_service_pb2_grpc.py +507 -0
- frogml_services_mock/mocks/alert_manager_service_api.py +2 -2
- frogml_services_mock/mocks/alert_registry_service_api.py +3 -3
- frogml_services_mock/mocks/analytics_api.py +3 -3
- frogml_services_mock/mocks/audience_service_api.py +3 -3
- frogml_services_mock/mocks/authentication_service.py +3 -3
- frogml_services_mock/mocks/automation_management_service.py +4 -4
- frogml_services_mock/mocks/autoscaling_service_api.py +2 -2
- frogml_services_mock/mocks/batch_job_manager_service.py +6 -6
- frogml_services_mock/mocks/build_management.py +2 -2
- frogml_services_mock/mocks/build_orchestrator_build_api.py +4 -4
- frogml_services_mock/mocks/build_orchestrator_build_settings_api.py +3 -3
- frogml_services_mock/mocks/build_orchestrator_service_api.py +4 -4
- frogml_services_mock/mocks/data_versioning_service.py +3 -3
- frogml_services_mock/mocks/deployment_management_service.py +19 -21
- frogml_services_mock/mocks/ecosystem_service_api.py +3 -3
- frogml_services_mock/mocks/execution_management_service.py +2 -2
- frogml_services_mock/mocks/feature_store_data_sources_manager_api.py +3 -3
- frogml_services_mock/mocks/feature_store_entities_manager_api.py +3 -3
- frogml_services_mock/mocks/feature_store_feature_set_manager_api.py +18 -18
- frogml_services_mock/mocks/features_online_serving_api.py +3 -3
- frogml_services_mock/mocks/features_operator_v3_service.py +2 -2
- frogml_services_mock/mocks/features_set_state_service_api.py +3 -3
- frogml_services_mock/mocks/feedback_service.py +2 -2
- frogml_services_mock/mocks/file_versioning_service.py +3 -3
- frogml_services_mock/mocks/fs_offline_serving_service.py +3 -3
- frogml_services_mock/mocks/instance_template_management_service.py +5 -5
- frogml_services_mock/mocks/integration_management_service.py +4 -4
- frogml_services_mock/mocks/internal_build_orchestrator_service.py +2 -2
- frogml_services_mock/mocks/job_registry_service_api.py +3 -3
- frogml_services_mock/mocks/kube_captain_service_api.py +2 -2
- frogml_services_mock/mocks/logging_service.py +4 -4
- frogml_services_mock/mocks/model_management_service.py +2 -2
- frogml_services_mock/mocks/model_version_manager_service.py +5 -5
- frogml_services_mock/mocks/project_manager_service.py +2 -2
- frogml_services_mock/mocks/prompt_manager_service.py +26 -26
- frogml_services_mock/mocks/repository_service_mock.py +4 -4
- frogml_services_mock/mocks/secret_service.py +2 -2
- frogml_services_mock/mocks/self_service_user_service.py +2 -2
- frogml_services_mock/mocks/system_secret_service.py +3 -3
- frogml_services_mock/mocks/user_application_instance_service_api.py +3 -3
- frogml_services_mock/mocks/vector_serving_api.py +3 -3
- frogml_services_mock/mocks/vectors_management_api.py +3 -3
- frogml_services_mock/mocks/workspace_manager_service_mock.py +4 -4
- frogml_services_mock/services_mock.py +55 -49
- _frogml_proto/jfml/model_version/v1/model_repository_spec_pb2.py +0 -35
- _frogml_proto/jfml/model_version/v1/model_version_framework_pb2.py +0 -45
- _frogml_proto/jfml/model_version/v1/model_version_manager_service_pb2.py +0 -151
- _frogml_proto/jfml/model_version/v1/model_version_manager_service_pb2.pyi +0 -230
- _frogml_proto/jfml/model_version/v1/model_version_manager_service_pb2_grpc.py +0 -237
- _frogml_proto/jfml/model_version/v1/model_version_pb2.py +0 -88
- _frogml_proto/jfml/model_version/v1/model_version_pb2.pyi +0 -133
- _frogml_proto/qwak/administration/account/v1/account_pb2.py +0 -114
- _frogml_proto/qwak/administration/account/v1/account_pb2.pyi +0 -257
- _frogml_proto/qwak/administration/account/v1/account_service_pb2.py +0 -212
- _frogml_proto/qwak/administration/account/v1/account_service_pb2.pyi +0 -344
- _frogml_proto/qwak/administration/account/v1/account_service_pb2_grpc.py +0 -338
- _frogml_proto/qwak/administration/account/v1/jfrog_tenant_details_pb2.py +0 -77
- _frogml_proto/qwak/administration/account/v1/personalization_pb2.py +0 -45
- _frogml_proto/qwak/administration/account/v1/preferences_pb2.py +0 -36
- _frogml_proto/qwak/administration/account/v1/preferences_pb2.pyi +0 -35
- _frogml_proto/qwak/administration/account/v1/terms_pb2.py +0 -75
- _frogml_proto/qwak/administration/authenticated_user/v1/authenticated_user_service_pb2.py +0 -91
- _frogml_proto/qwak/administration/authenticated_user/v1/authenticated_user_service_pb2.pyi +0 -108
- _frogml_proto/qwak/administration/authenticated_user/v1/authenticated_user_service_pb2_grpc.py +0 -135
- _frogml_proto/qwak/administration/authenticated_user/v1/credentials_pb2.py +0 -46
- _frogml_proto/qwak/administration/authenticated_user/v1/details_pb2.py +0 -75
- _frogml_proto/qwak/administration/v0/authentication/authentication_service_pb2.py +0 -69
- _frogml_proto/qwak/administration/v0/authentication/authentication_service_pb2_grpc.py +0 -67
- _frogml_proto/qwak/administration/v0/environments/configuration_pb2.py +0 -93
- _frogml_proto/qwak/administration/v0/environments/environment_pb2.py +0 -66
- _frogml_proto/qwak/administration/v0/environments/environment_pb2.pyi +0 -156
- _frogml_proto/qwak/administration/v0/environments/environment_service_pb2.py +0 -184
- _frogml_proto/qwak/administration/v0/environments/environment_service_pb2.pyi +0 -274
- _frogml_proto/qwak/administration/v0/environments/environment_service_pb2_grpc.py +0 -272
- _frogml_proto/qwak/administration/v0/environments/personalization_pb2.py +0 -45
- _frogml_proto/qwak/administration/v0/users/user_pb2.py +0 -97
- _frogml_proto/qwak/admiral/secret/v0/secret_pb2.py +0 -140
- _frogml_proto/qwak/admiral/secret/v0/secret_service_pb2.py +0 -89
- _frogml_proto/qwak/admiral/secret/v0/secret_service_pb2.pyi +0 -93
- _frogml_proto/qwak/admiral/secret/v0/secret_service_pb2_grpc.py +0 -135
- _frogml_proto/qwak/admiral/secret/v0/system_secret_service_pb2.py +0 -89
- _frogml_proto/qwak/admiral/secret/v0/system_secret_service_pb2.pyi +0 -101
- _frogml_proto/qwak/admiral/secret/v0/system_secret_service_pb2_grpc.py +0 -135
- _frogml_proto/qwak/admiral/user_application_instance/v0/user_application_instance_pb2.py +0 -198
- _frogml_proto/qwak/admiral/user_application_instance/v0/user_application_instance_pb2.pyi +0 -431
- _frogml_proto/qwak/admiral/user_application_instance/v0/user_application_instance_service_pb2.py +0 -109
- _frogml_proto/qwak/admiral/user_application_instance/v0/user_application_instance_service_pb2.pyi +0 -128
- _frogml_proto/qwak/admiral/user_application_instance/v0/user_application_instance_service_pb2_grpc.py +0 -169
- _frogml_proto/qwak/analytics/analytics_pb2.py +0 -142
- _frogml_proto/qwak/analytics/analytics_service_pb2.py +0 -229
- _frogml_proto/qwak/analytics/analytics_service_pb2.pyi +0 -339
- _frogml_proto/qwak/analytics/analytics_service_pb2_grpc.py +0 -370
- _frogml_proto/qwak/audience/v1/audience_api_pb2.py +0 -149
- _frogml_proto/qwak/audience/v1/audience_api_pb2.pyi +0 -176
- _frogml_proto/qwak/audience/v1/audience_api_pb2_grpc.py +0 -240
- _frogml_proto/qwak/audience/v1/audience_pb2.py +0 -137
- _frogml_proto/qwak/auto_scaling/v1/auto_scaling_pb2.py +0 -100
- _frogml_proto/qwak/auto_scaling/v1/auto_scaling_service_pb2.py +0 -49
- _frogml_proto/qwak/auto_scaling/v1/auto_scaling_service_pb2.pyi +0 -55
- _frogml_proto/qwak/auto_scaling/v1/auto_scaling_service_pb2_grpc.py +0 -67
- _frogml_proto/qwak/automation/v1/action_pb2.py +0 -220
- _frogml_proto/qwak/automation/v1/action_pb2.pyi +0 -513
- _frogml_proto/qwak/automation/v1/auto_scaling_pb2.py +0 -97
- _frogml_proto/qwak/automation/v1/automation_execution_pb2.py +0 -65
- _frogml_proto/qwak/automation/v1/automation_management_service_pb2.py +0 -283
- _frogml_proto/qwak/automation/v1/automation_management_service_pb2.pyi +0 -386
- _frogml_proto/qwak/automation/v1/automation_management_service_pb2_grpc.py +0 -429
- _frogml_proto/qwak/automation/v1/automation_pb2.py +0 -59
- _frogml_proto/qwak/automation/v1/automation_pb2.pyi +0 -121
- _frogml_proto/qwak/automation/v1/common_pb2.py +0 -56
- _frogml_proto/qwak/automation/v1/notification_pb2.py +0 -93
- _frogml_proto/qwak/automation/v1/trigger_pb2.py +0 -76
- _frogml_proto/qwak/automation/v1/trigger_pb2.pyi +0 -112
- _frogml_proto/qwak/batch_job/v1/batch_job_events_pb2.py +0 -148
- _frogml_proto/qwak/batch_job/v1/batch_job_events_pb2.pyi +0 -307
- _frogml_proto/qwak/batch_job/v1/batch_job_resources_pb2.py +0 -47
- _frogml_proto/qwak/batch_job/v1/batch_job_service_pb2.py +0 -570
- _frogml_proto/qwak/batch_job/v1/batch_job_service_pb2.pyi +0 -1328
- _frogml_proto/qwak/batch_job/v1/batch_job_service_pb2_grpc.py +0 -574
- _frogml_proto/qwak/build/v1/build_api_pb2.py +0 -446
- _frogml_proto/qwak/build/v1/build_api_pb2.pyi +0 -682
- _frogml_proto/qwak/build/v1/build_api_pb2_grpc.py +0 -594
- _frogml_proto/qwak/build/v1/build_pb2.py +0 -575
- _frogml_proto/qwak/build/v1/build_pb2.pyi +0 -1328
- _frogml_proto/qwak/build_settings/build_settings_api_pb2.py +0 -89
- _frogml_proto/qwak/build_settings/build_settings_api_pb2.pyi +0 -106
- _frogml_proto/qwak/build_settings/build_settings_api_pb2_grpc.py +0 -132
- _frogml_proto/qwak/build_settings/build_settings_pb2.py +0 -95
- _frogml_proto/qwak/builds/build_pb2.py +0 -233
- _frogml_proto/qwak/builds/build_pb2.pyi +0 -582
- _frogml_proto/qwak/builds/build_url_pb2.py +0 -86
- _frogml_proto/qwak/builds/builds_orchestrator_service_pb2.py +0 -212
- _frogml_proto/qwak/builds/builds_orchestrator_service_pb2.pyi +0 -322
- _frogml_proto/qwak/builds/builds_orchestrator_service_pb2_grpc.py +0 -306
- _frogml_proto/qwak/builds/builds_pb2.py +0 -556
- _frogml_proto/qwak/builds/builds_pb2.pyi +0 -1271
- _frogml_proto/qwak/builds/builds_pb2_grpc.py +0 -237
- _frogml_proto/qwak/builds/internal_builds_orchestrator_service_pb2.py +0 -59
- _frogml_proto/qwak/builds/internal_builds_orchestrator_service_pb2.pyi +0 -64
- _frogml_proto/qwak/builds/internal_builds_orchestrator_service_pb2_grpc.py +0 -67
- _frogml_proto/qwak/data_versioning/data_versioning_pb2.py +0 -45
- _frogml_proto/qwak/data_versioning/data_versioning_service_pb2.py +0 -69
- _frogml_proto/qwak/data_versioning/data_versioning_service_pb2.pyi +0 -83
- _frogml_proto/qwak/data_versioning/data_versioning_service_pb2_grpc.py +0 -101
- _frogml_proto/qwak/deployment/alert_pb2.py +0 -131
- _frogml_proto/qwak/deployment/alert_service_pb2.py +0 -153
- _frogml_proto/qwak/deployment/alert_service_pb2.pyi +0 -218
- _frogml_proto/qwak/deployment/alert_service_pb2_grpc.py +0 -237
- _frogml_proto/qwak/deployment/deployment_messages_pb2.py +0 -36
- _frogml_proto/qwak/deployment/deployment_messages_pb2.pyi +0 -61
- _frogml_proto/qwak/deployment/deployment_pb2.py +0 -644
- _frogml_proto/qwak/deployment/deployment_pb2.pyi +0 -1582
- _frogml_proto/qwak/deployment/deployment_service_pb2.py +0 -520
- _frogml_proto/qwak/deployment/deployment_service_pb2.pyi +0 -817
- _frogml_proto/qwak/deployment/deployment_service_pb2_grpc.py +0 -509
- _frogml_proto/qwak/ecosystem/v0/credentials_pb2.py +0 -56
- _frogml_proto/qwak/ecosystem/v0/ecosystem_pb2.py +0 -173
- _frogml_proto/qwak/ecosystem/v0/ecosystem_pb2.pyi +0 -332
- _frogml_proto/qwak/ecosystem/v0/ecosystem_runtime_service_pb2.py +0 -264
- _frogml_proto/qwak/ecosystem/v0/ecosystem_runtime_service_pb2.pyi +0 -434
- _frogml_proto/qwak/ecosystem/v0/ecosystem_runtime_service_pb2_grpc.py +0 -238
- _frogml_proto/qwak/execution/v1/backfill_pb2.py +0 -97
- _frogml_proto/qwak/execution/v1/backfill_pb2.pyi +0 -167
- _frogml_proto/qwak/execution/v1/batch_pb2.py +0 -56
- _frogml_proto/qwak/execution/v1/deletion_pb2.py +0 -65
- _frogml_proto/qwak/execution/v1/execution_pb2.py +0 -96
- _frogml_proto/qwak/execution/v1/execution_pb2.pyi +0 -201
- _frogml_proto/qwak/execution/v1/execution_service_pb2.py +0 -294
- _frogml_proto/qwak/execution/v1/execution_service_pb2.pyi +0 -431
- _frogml_proto/qwak/execution/v1/execution_service_pb2_grpc.py +0 -467
- _frogml_proto/qwak/execution/v1/jobs/job_pb2.py +0 -101
- _frogml_proto/qwak/execution/v1/jobs/job_pb2.pyi +0 -282
- _frogml_proto/qwak/execution/v1/jobs/job_service_pb2.py +0 -270
- _frogml_proto/qwak/execution/v1/jobs/job_service_pb2.pyi +0 -469
- _frogml_proto/qwak/execution/v1/jobs/job_service_pb2_grpc.py +0 -396
- _frogml_proto/qwak/execution/v1/jobs/reports/report_pb2.py +0 -109
- _frogml_proto/qwak/execution/v1/jobs/reports/report_pb2.pyi +0 -266
- _frogml_proto/qwak/execution/v1/state/execution_state_pb2.py +0 -36
- _frogml_proto/qwak/execution/v1/state/execution_state_pb2.pyi +0 -45
- _frogml_proto/qwak/execution/v1/state/execution_state_service_pb2.py +0 -150
- _frogml_proto/qwak/execution/v1/state/execution_state_service_pb2.pyi +0 -192
- _frogml_proto/qwak/execution/v1/state/execution_state_service_pb2_grpc.py +0 -237
- _frogml_proto/qwak/execution/v1/state/featureset_state_pb2.py +0 -35
- _frogml_proto/qwak/execution/v1/state/spark_execution_state_pb2.py +0 -91
- _frogml_proto/qwak/execution/v1/streaming_aggregation_pb2.py +0 -75
- _frogml_proto/qwak/execution/v1/streaming_pb2.py +0 -65
- _frogml_proto/qwak/feature_store/entities/entity_pb2.py +0 -79
- _frogml_proto/qwak/feature_store/entities/entity_service_pb2.py +0 -149
- _frogml_proto/qwak/feature_store/entities/entity_service_pb2.pyi +0 -203
- _frogml_proto/qwak/feature_store/entities/entity_service_pb2_grpc.py +0 -237
- _frogml_proto/qwak/feature_store/features/aggregation_pb2.py +0 -196
- _frogml_proto/qwak/feature_store/features/deployment_pb2.py +0 -189
- _frogml_proto/qwak/feature_store/features/deployment_service_pb2.py +0 -49
- _frogml_proto/qwak/feature_store/features/deployment_service_pb2.pyi +0 -45
- _frogml_proto/qwak/feature_store/features/deployment_service_pb2_grpc.py +0 -67
- _frogml_proto/qwak/feature_store/features/execution_pb2.py +0 -77
- _frogml_proto/qwak/feature_store/features/feature_set_attribute_pb2.py +0 -36
- _frogml_proto/qwak/feature_store/features/feature_set_attribute_pb2.pyi +0 -33
- _frogml_proto/qwak/feature_store/features/feature_set_pb2.py +0 -198
- _frogml_proto/qwak/feature_store/features/feature_set_pb2.pyi +0 -443
- _frogml_proto/qwak/feature_store/features/feature_set_service_pb2.py +0 -467
- _frogml_proto/qwak/feature_store/features/feature_set_service_pb2.pyi +0 -663
- _frogml_proto/qwak/feature_store/features/feature_set_service_pb2_grpc.py +0 -746
- _frogml_proto/qwak/feature_store/features/feature_set_state_pb2.py +0 -203
- _frogml_proto/qwak/feature_store/features/feature_set_state_service_pb2.py +0 -129
- _frogml_proto/qwak/feature_store/features/feature_set_state_service_pb2.pyi +0 -175
- _frogml_proto/qwak/feature_store/features/feature_set_state_service_pb2_grpc.py +0 -203
- _frogml_proto/qwak/feature_store/features/feature_set_types_pb2.py +0 -381
- _frogml_proto/qwak/feature_store/features/feature_set_types_pb2.pyi +0 -862
- _frogml_proto/qwak/feature_store/features/monitoring_pb2.py +0 -55
- _frogml_proto/qwak/feature_store/features/real_time_feature_extractor_pb2.py +0 -167
- _frogml_proto/qwak/feature_store/features/real_time_feature_extractor_pb2.pyi +0 -359
- _frogml_proto/qwak/feature_store/jobs/job_pb2.py +0 -68
- _frogml_proto/qwak/feature_store/jobs/job_service_pb2.py +0 -149
- _frogml_proto/qwak/feature_store/jobs/job_service_pb2.pyi +0 -237
- _frogml_proto/qwak/feature_store/jobs/job_service_pb2_grpc.py +0 -237
- _frogml_proto/qwak/feature_store/jobs/v1/job_pb2.py +0 -67
- _frogml_proto/qwak/feature_store/jobs/v1/job_service_pb2.py +0 -210
- _frogml_proto/qwak/feature_store/jobs/v1/job_service_pb2.pyi +0 -349
- _frogml_proto/qwak/feature_store/jobs/v1/job_service_pb2_grpc.py +0 -338
- _frogml_proto/qwak/feature_store/platform/platform_details_pb2.py +0 -46
- _frogml_proto/qwak/feature_store/platform/platform_details_pb2.pyi +0 -54
- _frogml_proto/qwak/feature_store/reports/report_pb2.py +0 -75
- _frogml_proto/qwak/feature_store/repository/common/platform_pb2.py +0 -55
- _frogml_proto/qwak/feature_store/serving/management_pb2.py +0 -69
- _frogml_proto/qwak/feature_store/serving/management_pb2.pyi +0 -72
- _frogml_proto/qwak/feature_store/serving/management_pb2_grpc.py +0 -101
- _frogml_proto/qwak/feature_store/serving/metadata_pb2.py +0 -67
- _frogml_proto/qwak/feature_store/serving/metadata_pb2.pyi +0 -158
- _frogml_proto/qwak/feature_store/serving/serving_pb2.py +0 -254
- _frogml_proto/qwak/feature_store/serving/serving_pb2_grpc.py +0 -101
- _frogml_proto/qwak/feature_store/serving/v1/value_pb2.py +0 -46
- _frogml_proto/qwak/feature_store/sinks/sink_pb2.py +0 -76
- _frogml_proto/qwak/feature_store/sinks/sink_pb2.pyi +0 -137
- _frogml_proto/qwak/feature_store/sources/batch_pb2.py +0 -362
- _frogml_proto/qwak/feature_store/sources/data_source_attribute_pb2.py +0 -36
- _frogml_proto/qwak/feature_store/sources/data_source_attribute_pb2.pyi +0 -33
- _frogml_proto/qwak/feature_store/sources/data_source_pb2.py +0 -84
- _frogml_proto/qwak/feature_store/sources/data_source_pb2.pyi +0 -169
- _frogml_proto/qwak/feature_store/sources/data_source_service_pb2.py +0 -169
- _frogml_proto/qwak/feature_store/sources/data_source_service_pb2.pyi +0 -237
- _frogml_proto/qwak/feature_store/sources/data_source_service_pb2_grpc.py +0 -305
- _frogml_proto/qwak/feature_store/sources/streaming_pb2.py +0 -175
- _frogml_proto/qwak/feature_store/v1/common/source_code/source_code_pb2.py +0 -55
- _frogml_proto/qwak/feature_store/v1/internal/data_source/data_source_service_pb2.py +0 -68
- _frogml_proto/qwak/feature_store/v1/internal/data_source/data_source_service_pb2_grpc.py +0 -99
- _frogml_proto/qwak/feature_store/v1/internal/featureset/featureset_token_service_pb2.py +0 -48
- _frogml_proto/qwak/feature_store/v1/internal/featureset/featureset_token_service_pb2_grpc.py +0 -66
- _frogml_proto/qwak/features_operator/v1/features_operator_pb2.py +0 -76
- _frogml_proto/qwak/features_operator/v1/features_operator_service_pb2.py +0 -69
- _frogml_proto/qwak/features_operator/v1/features_operator_service_pb2.pyi +0 -98
- _frogml_proto/qwak/features_operator/v1/features_operator_service_pb2_grpc.py +0 -99
- _frogml_proto/qwak/features_operator/v2/features_operator_pb2.py +0 -86
- _frogml_proto/qwak/features_operator/v2/features_operator_service_pb2.py +0 -61
- _frogml_proto/qwak/features_operator/v2/features_operator_service_pb2.pyi +0 -89
- _frogml_proto/qwak/features_operator/v2/features_operator_service_pb2_grpc.py +0 -99
- _frogml_proto/qwak/features_operator/v3/features_operator_async_service_pb2.py +0 -132
- _frogml_proto/qwak/features_operator/v3/features_operator_async_service_pb2.pyi +0 -218
- _frogml_proto/qwak/features_operator/v3/features_operator_async_service_pb2_grpc.py +0 -165
- _frogml_proto/qwak/features_operator/v3/features_operator_pb2.py +0 -86
- _frogml_proto/qwak/file_versioning/file_versioning_pb2.py +0 -56
- _frogml_proto/qwak/file_versioning/file_versioning_service_pb2.py +0 -69
- _frogml_proto/qwak/file_versioning/file_versioning_service_pb2.pyi +0 -83
- _frogml_proto/qwak/file_versioning/file_versioning_service_pb2_grpc.py +0 -101
- _frogml_proto/qwak/fitness_service/constructs_pb2.py +0 -120
- _frogml_proto/qwak/fitness_service/fitness_pb2.py +0 -54
- _frogml_proto/qwak/fitness_service/fitness_pb2.pyi +0 -126
- _frogml_proto/qwak/fitness_service/fitness_service_pb2.py +0 -110
- _frogml_proto/qwak/fitness_service/fitness_service_pb2.pyi +0 -121
- _frogml_proto/qwak/fitness_service/fitness_service_pb2_grpc.py +0 -169
- _frogml_proto/qwak/fitness_service/status_pb2.py +0 -128
- _frogml_proto/qwak/inference/feedback/feedback_pb2.py +0 -118
- _frogml_proto/qwak/inference/feedback/feedback_pb2_grpc.py +0 -100
- _frogml_proto/qwak/instance_template/instance_template_pb2.py +0 -62
- _frogml_proto/qwak/instance_template/instance_template_pb2.pyi +0 -108
- _frogml_proto/qwak/instance_template/instance_template_service_pb2.py +0 -69
- _frogml_proto/qwak/instance_template/instance_template_service_pb2.pyi +0 -79
- _frogml_proto/qwak/instance_template/instance_template_service_pb2_grpc.py +0 -101
- _frogml_proto/qwak/integration/hugging_face_integration_pb2.py +0 -85
- _frogml_proto/qwak/integration/integration_pb2.py +0 -153
- _frogml_proto/qwak/integration/integration_pb2.pyi +0 -357
- _frogml_proto/qwak/integration/integration_service_pb2.py +0 -169
- _frogml_proto/qwak/integration/integration_service_pb2.pyi +0 -234
- _frogml_proto/qwak/integration/integration_service_pb2_grpc.py +0 -271
- _frogml_proto/qwak/integration/open_a_i_integration_pb2.py +0 -85
- _frogml_proto/qwak/integration/opsgenie_integration_pb2.py +0 -105
- _frogml_proto/qwak/integration/pagerduty_integration_pb2.py +0 -127
- _frogml_proto/qwak/integration/slack_app_integration_pb2.py +0 -127
- _frogml_proto/qwak/jfrog/gateway/v0/repository_pb2.py +0 -95
- _frogml_proto/qwak/jfrog/gateway/v0/repository_service_pb2.py +0 -69
- _frogml_proto/qwak/jfrog/gateway/v0/repository_service_pb2.pyi +0 -71
- _frogml_proto/qwak/jfrog/gateway/v0/repository_service_pb2_grpc.py +0 -101
- _frogml_proto/qwak/kube_deployment_captain/alert_pb2.py +0 -120
- _frogml_proto/qwak/kube_deployment_captain/alerting_pb2.py +0 -65
- _frogml_proto/qwak/kube_deployment_captain/batch_job_pb2.py +0 -357
- _frogml_proto/qwak/kube_deployment_captain/deployment_pb2.py +0 -182
- _frogml_proto/qwak/kube_deployment_captain/feature_set_deployment_pb2.py +0 -172
- _frogml_proto/qwak/kube_deployment_captain/feature_set_deployment_pb2.pyi +0 -370
- _frogml_proto/qwak/kube_deployment_captain/kube_deployment_captain_service_pb2.py +0 -562
- _frogml_proto/qwak/kube_deployment_captain/kube_deployment_captain_service_pb2.pyi +0 -924
- _frogml_proto/qwak/kube_deployment_captain/kube_deployment_captain_service_pb2_grpc.py +0 -1226
- _frogml_proto/qwak/kube_deployment_captain/traffic_mapping_pb2.py +0 -45
- _frogml_proto/qwak/logging/log_filter_pb2.py +0 -66
- _frogml_proto/qwak/logging/log_line_pb2.py +0 -48
- _frogml_proto/qwak/logging/log_reader_service_pb2.py +0 -51
- _frogml_proto/qwak/logging/log_reader_service_pb2.pyi +0 -83
- _frogml_proto/qwak/logging/log_reader_service_pb2_grpc.py +0 -67
- _frogml_proto/qwak/logging/log_source_pb2.py +0 -155
- _frogml_proto/qwak/model_descriptor/open_ai_descriptor_pb2.py +0 -96
- _frogml_proto/qwak/models/models_pb2.py +0 -427
- _frogml_proto/qwak/models/models_pb2.pyi +0 -851
- _frogml_proto/qwak/models/models_pb2_grpc.py +0 -402
- _frogml_proto/qwak/monitoring/v0/alerting_channel_management_service_pb2.py +0 -149
- _frogml_proto/qwak/monitoring/v0/alerting_channel_management_service_pb2.pyi +0 -183
- _frogml_proto/qwak/monitoring/v0/alerting_channel_management_service_pb2_grpc.py +0 -237
- _frogml_proto/qwak/monitoring/v0/alerting_channel_pb2.py +0 -175
- _frogml_proto/qwak/monitoring/v0/alerting_channel_sync_service_pb2.py +0 -70
- _frogml_proto/qwak/monitoring/v0/alerting_channel_sync_service_pb2.pyi +0 -85
- _frogml_proto/qwak/monitoring/v0/alerting_channel_sync_service_pb2_grpc.py +0 -101
- _frogml_proto/qwak/offline/serving/v1/feature_values_pb2.py +0 -35
- _frogml_proto/qwak/offline/serving/v1/offline_serving_async_service_pb2.py +0 -148
- _frogml_proto/qwak/offline/serving/v1/offline_serving_async_service_pb2.pyi +0 -279
- _frogml_proto/qwak/offline/serving/v1/offline_serving_async_service_pb2_grpc.py +0 -165
- _frogml_proto/qwak/offline/serving/v1/options_pb2.py +0 -35
- _frogml_proto/qwak/offline/serving/v1/population_pb2.py +0 -75
- _frogml_proto/qwak/projects/projects_pb2.py +0 -225
- _frogml_proto/qwak/projects/projects_pb2.pyi +0 -436
- _frogml_proto/qwak/projects/projects_pb2_grpc.py +0 -203
- _frogml_proto/qwak/prompt/v1/prompt/prompt_manager_service_pb2.py +0 -270
- _frogml_proto/qwak/prompt/v1/prompt/prompt_manager_service_pb2.pyi +0 -417
- _frogml_proto/qwak/prompt/v1/prompt/prompt_manager_service_pb2_grpc.py +0 -441
- _frogml_proto/qwak/prompt/v1/prompt/prompt_pb2.py +0 -237
- _frogml_proto/qwak/prompt/v1/prompt/prompt_pb2.pyi +0 -415
- _frogml_proto/qwak/secret_service/secret_service_pb2.py +0 -88
- _frogml_proto/qwak/secret_service/secret_service_pb2_grpc.py +0 -135
- _frogml_proto/qwak/self_service/account/v0/account_membership_pb2.py +0 -134
- _frogml_proto/qwak/self_service/account/v0/account_membership_pb2.pyi +0 -274
- _frogml_proto/qwak/self_service/account/v0/account_membership_service_pb2.py +0 -251
- _frogml_proto/qwak/self_service/account/v0/account_membership_service_pb2.pyi +0 -337
- _frogml_proto/qwak/self_service/account/v0/account_membership_service_pb2_grpc.py +0 -407
- _frogml_proto/qwak/self_service/account/v0/account_status_pb2.py +0 -93
- _frogml_proto/qwak/self_service/account/v0/account_status_pb2.pyi +0 -169
- _frogml_proto/qwak/self_service/account/v0/managing_account_pb2.py +0 -155
- _frogml_proto/qwak/self_service/account/v0/managing_account_service_pb2.py +0 -110
- _frogml_proto/qwak/self_service/account/v0/managing_account_service_pb2.pyi +0 -136
- _frogml_proto/qwak/self_service/account/v0/managing_account_service_pb2_grpc.py +0 -169
- _frogml_proto/qwak/self_service/user/v1/api_key_pb2.py +0 -35
- _frogml_proto/qwak/self_service/user/v1/user_pb2.py +0 -37
- _frogml_proto/qwak/self_service/user/v1/user_pb2.pyi +0 -62
- _frogml_proto/qwak/self_service/user/v1/user_service_pb2.py +0 -146
- _frogml_proto/qwak/self_service/user/v1/user_service_pb2.pyi +0 -209
- _frogml_proto/qwak/self_service/user/v1/user_service_pb2_grpc.py +0 -203
- _frogml_proto/qwak/traffic/v1/traffic_api_pb2.py +0 -109
- _frogml_proto/qwak/traffic/v1/traffic_api_pb2.pyi +0 -137
- _frogml_proto/qwak/traffic/v1/traffic_api_pb2_grpc.py +0 -169
- _frogml_proto/qwak/traffic/v1/traffic_pb2.py +0 -134
- _frogml_proto/qwak/user_application/common/v0/resources_pb2.py +0 -159
- _frogml_proto/qwak/user_application/v0/user_application_pb2.py +0 -69
- _frogml_proto/qwak/vectors/v1/collection/collection_pb2.py +0 -128
- _frogml_proto/qwak/vectors/v1/collection/collection_service_pb2.py +0 -189
- _frogml_proto/qwak/vectors/v1/collection/collection_service_pb2.pyi +0 -258
- _frogml_proto/qwak/vectors/v1/collection/collection_service_pb2_grpc.py +0 -304
- _frogml_proto/qwak/vectors/v1/collection/event/collection_event_pb2.py +0 -36
- _frogml_proto/qwak/vectors/v1/filters_pb2.py +0 -156
- _frogml_proto/qwak/vectors/v1/vector_pb2.py +0 -78
- _frogml_proto/qwak/vectors/v1/vector_service_pb2.py +0 -134
- _frogml_proto/qwak/vectors/v1/vector_service_pb2.pyi +0 -243
- _frogml_proto/qwak/vectors/v1/vector_service_pb2_grpc.py +0 -201
- _frogml_proto/qwak/workspace/workspace_pb2.py +0 -135
- _frogml_proto/qwak/workspace/workspace_pb2.pyi +0 -331
- _frogml_proto/qwak/workspace/workspace_service_pb2.py +0 -309
- _frogml_proto/qwak/workspace/workspace_service_pb2.pyi +0 -393
- _frogml_proto/qwak/workspace/workspace_service_pb2_grpc.py +0 -507
- frogml/__init__.py +0 -16
- frogml/automations/__init__.py +0 -70
- frogml/automations/automation_executions.py +0 -99
- frogml/automations/automations.py +0 -396
- frogml/automations/batch_execution_action.py +0 -336
- frogml/automations/build_and_deploy_action.py +0 -840
- frogml/automations/common.py +0 -106
- frogml/clients/_inner/edge_communications.py +0 -24
- frogml/clients/administration/authenticated_user/client.py +0 -41
- frogml/clients/administration/authentication/client.py +0 -34
- frogml/clients/administration/eco_system/client.py +0 -152
- frogml/clients/administration/eco_system/eco_system_utils.py +0 -15
- frogml/clients/administration/environment/client.py +0 -77
- frogml/clients/administration/self_service/client.py +0 -73
- frogml/clients/alert_management/client.py +0 -64
- frogml/clients/alerts_registry/channel.py +0 -132
- frogml/clients/alerts_registry/client.py +0 -137
- frogml/clients/analytics/client.py +0 -82
- frogml/clients/audience/client.py +0 -53
- frogml/clients/automation_management/client.py +0 -274
- frogml/clients/autoscaling/client.py +0 -34
- frogml/clients/batch_job_management/client.py +0 -544
- frogml/clients/batch_job_management/executions_config.py +0 -201
- frogml/clients/build_management/client.py +0 -115
- frogml/clients/build_orchestrator/build_model_request_getter.py +0 -138
- frogml/clients/build_orchestrator/client.py +0 -456
- frogml/clients/build_orchestrator/internal_client.py +0 -114
- frogml/clients/data_versioning/client.py +0 -76
- frogml/clients/data_versioning/data_tag_filter.py +0 -32
- frogml/clients/deployment/client.py +0 -191
- frogml/clients/feature_store/execution_management_client.py +0 -102
- frogml/clients/feature_store/job_registry_client.py +0 -71
- frogml/clients/feature_store/management_client.py +0 -570
- frogml/clients/feature_store/offline_serving_client.py +0 -249
- frogml/clients/feature_store/operator_client.py +0 -164
- frogml/clients/file_versioning/client.py +0 -77
- frogml/clients/file_versioning/file_tag_filter.py +0 -32
- frogml/clients/instance_template/client.py +0 -67
- frogml/clients/integration_management/integration_manager_client.py +0 -35
- frogml/clients/integration_management/integration_utils.py +0 -27
- frogml/clients/integration_management/openai/openai_system_secret.py +0 -56
- frogml/clients/jfrog_gateway/client.py +0 -42
- frogml/clients/kube_deployment_captain/client.py +0 -233
- frogml/clients/logging_client/client.py +0 -148
- frogml/clients/model_management/client.py +0 -128
- frogml/clients/model_version_manager/client.py +0 -108
- frogml/clients/project/client.py +0 -60
- frogml/clients/prompt_manager/model_descriptor_mapper.py +0 -196
- frogml/clients/prompt_manager/prompt_manager_client.py +0 -190
- frogml/clients/prompt_manager/prompt_proto_mapper.py +0 -262
- frogml/clients/secret_service/client.py +0 -96
- frogml/clients/system_secret/system_secret_client.py +0 -31
- frogml/clients/user_application_instance/client.py +0 -177
- frogml/clients/vector_store/management_client.py +0 -127
- frogml/clients/vector_store/serving_client.py +0 -157
- frogml/clients/workspace_manager/client.py +0 -224
- frogml/exceptions/frogml_external_exception.py +0 -11
- frogml/feature_store/_common/artifact_utils.py +0 -57
- frogml/feature_store/_common/feature_set_utils.py +0 -261
- frogml/feature_store/_common/featureset_asterisk_handler.py +0 -115
- frogml/feature_store/_common/packaging.py +0 -244
- frogml/feature_store/_common/source_code_spec.py +0 -62
- frogml/feature_store/_common/source_code_spec_factory.py +0 -51
- frogml/feature_store/data_sources/__init__.py +0 -65
- frogml/feature_store/data_sources/attributes.py +0 -25
- frogml/feature_store/data_sources/base.py +0 -121
- frogml/feature_store/data_sources/batch/_batch.py +0 -9
- frogml/feature_store/data_sources/batch/_jdbc.py +0 -22
- frogml/feature_store/data_sources/batch/athena.py +0 -272
- frogml/feature_store/data_sources/batch/big_query.py +0 -80
- frogml/feature_store/data_sources/batch/clickhouse.py +0 -60
- frogml/feature_store/data_sources/batch/csv.py +0 -62
- frogml/feature_store/data_sources/batch/elastic_search.py +0 -61
- frogml/feature_store/data_sources/batch/filesystem/aws.py +0 -93
- frogml/feature_store/data_sources/batch/filesystem/gcp.py +0 -54
- frogml/feature_store/data_sources/batch/filesystem/utils.py +0 -59
- frogml/feature_store/data_sources/batch/mongodb.py +0 -58
- frogml/feature_store/data_sources/batch/mysql.py +0 -50
- frogml/feature_store/data_sources/batch/parquet.py +0 -57
- frogml/feature_store/data_sources/batch/postgres.py +0 -50
- frogml/feature_store/data_sources/batch/redshift.py +0 -85
- frogml/feature_store/data_sources/batch/snowflake.py +0 -77
- frogml/feature_store/data_sources/batch/vertica.py +0 -58
- frogml/feature_store/data_sources/source_authentication.py +0 -35
- frogml/feature_store/data_sources/streaming/_streaming.py +0 -9
- frogml/feature_store/data_sources/streaming/kafka/__init__.py +0 -25
- frogml/feature_store/data_sources/streaming/kafka/authentication.py +0 -124
- frogml/feature_store/data_sources/streaming/kafka/deserialization.py +0 -115
- frogml/feature_store/data_sources/streaming/kafka/kafka.py +0 -121
- frogml/feature_store/data_sources/time_partition_columns.py +0 -178
- frogml/feature_store/entities/entity.py +0 -73
- frogml/feature_store/execution/backfill.py +0 -197
- frogml/feature_store/execution/execution.py +0 -595
- frogml/feature_store/execution/execution_query.py +0 -91
- frogml/feature_store/feature_sets/_utils/_featureset_utils.py +0 -45
- frogml/feature_store/feature_sets/backfill.py +0 -72
- frogml/feature_store/feature_sets/base_feature_set.py +0 -148
- frogml/feature_store/feature_sets/batch.py +0 -472
- frogml/feature_store/feature_sets/execution_spec.py +0 -75
- frogml/feature_store/feature_sets/metadata.py +0 -75
- frogml/feature_store/feature_sets/read_policies.py +0 -245
- frogml/feature_store/feature_sets/streaming.py +0 -635
- frogml/feature_store/feature_sets/streaming_backfill.py +0 -266
- frogml/feature_store/feature_sets/transformations/__init__.py +0 -35
- frogml/feature_store/feature_sets/transformations/aggregations/aggregations.py +0 -443
- frogml/feature_store/feature_sets/transformations/aggregations/windows.py +0 -70
- frogml/feature_store/feature_sets/transformations/functions/__init__.py +0 -10
- frogml/feature_store/feature_sets/transformations/functions/frogml_pandas.py +0 -64
- frogml/feature_store/feature_sets/transformations/transformations.py +0 -467
- frogml/feature_store/feature_sets/transformations/validations/validations_util.py +0 -78
- frogml/feature_store/offline/__init__.py +0 -4
- frogml/feature_store/offline/_offline_serving_validations.py +0 -32
- frogml/feature_store/offline/athena/athena_query_engine.py +0 -154
- frogml/feature_store/offline/client.py +0 -719
- frogml/feature_store/offline/client_v2.py +0 -338
- frogml/feature_store/offline/feature_set_features.py +0 -25
- frogml/feature_store/online/client.py +0 -352
- frogml/feature_store/online/endpoint_utils.py +0 -65
- frogml/feature_store/sinks/base.py +0 -18
- frogml/feature_store/sinks/kafka.py +0 -59
- frogml/feature_store/sinks/streaming/attachment.py +0 -34
- frogml/feature_store/sinks/streaming/factory.py +0 -60
- frogml/feature_store/validations/validation_options.py +0 -82
- frogml/feature_store/validations/validation_response.py +0 -121
- frogml/feature_store/validations/validator.py +0 -106
- frogml/frogml_client/batch_jobs/execution.py +0 -49
- frogml/frogml_client/batch_jobs/task.py +0 -43
- frogml/frogml_client/build_api_helpers/build_api_steps.py +0 -53
- frogml/frogml_client/build_api_helpers/trigger_build_api.py +0 -65
- frogml/frogml_client/builds/build.py +0 -97
- frogml/frogml_client/builds/filters/metric_filter.py +0 -38
- frogml/frogml_client/builds/filters/parameter_filter.py +0 -36
- frogml/frogml_client/client.py +0 -874
- frogml/frogml_client/data_versioning/data_tag.py +0 -24
- frogml/frogml_client/deployments/deployment.py +0 -409
- frogml/frogml_client/file_versioning/file_tag.py +0 -24
- frogml/frogml_client/models/model.py +0 -52
- frogml/frogml_client/models/model_metadata.py +0 -31
- frogml/frogml_client/projects/project.py +0 -56
- frogml/inner/build_config/build_config_v1.py +0 -313
- frogml/inner/build_logic/build_loggers/trigger_build_logger.py +0 -50
- frogml/inner/build_logic/execute_build_pipeline.py +0 -64
- frogml/inner/build_logic/interface/context_interface.py +0 -56
- frogml/inner/build_logic/interface/phase_run_handler.py +0 -71
- frogml/inner/build_logic/interface/step_inteface.py +0 -26
- frogml/inner/build_logic/phases/phase_010_fetch_model/fetch_model_step.py +0 -41
- frogml/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/common.py +0 -32
- frogml/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/fetch_strategy_manager.py +0 -62
- frogml/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/strategy/folder/folder_strategy.py +0 -131
- frogml/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/strategy/git/git_strategy.py +0 -184
- frogml/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/strategy/strategy.py +0 -48
- frogml/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/strategy/zip/zip_strategy.py +0 -64
- frogml/inner/build_logic/phases/phase_010_fetch_model/post_fetch_validation_step.py +0 -139
- frogml/inner/build_logic/phases/phase_010_fetch_model/pre_fetch_validation_step.py +0 -263
- frogml/inner/build_logic/phases/phase_010_fetch_model/set_version_step.py +0 -33
- frogml/inner/build_logic/phases/phase_020_remote_register_frogml_build/cleanup_step.py +0 -20
- frogml/inner/build_logic/phases/phase_020_remote_register_frogml_build/start_remote_build_step.py +0 -42
- frogml/inner/build_logic/phases/phase_020_remote_register_frogml_build/upload_step.py +0 -257
- frogml/inner/build_logic/phases/phases_pipeline.py +0 -44
- frogml/inner/build_logic/run_handlers/programmatic_phase_run_handler.py +0 -101
- frogml/inner/build_logic/tools/dependencies_tools.py +0 -68
- frogml/inner/build_logic/tools/files.py +0 -237
- frogml/inner/build_logic/tools/ignore_files.py +0 -20
- frogml/inner/build_logic/trigger_build_context.py +0 -10
- frogml/inner/di_configuration/__init__.py +0 -73
- frogml/inner/di_configuration/account.py +0 -106
- frogml/inner/di_configuration/containers.py +0 -40
- frogml/inner/instance_template/verify_template_id.py +0 -48
- frogml/inner/model_loggers_utils.py +0 -110
- frogml/inner/runtime_di/__init__.py +0 -13
- frogml/inner/runtime_di/containers.py +0 -17
- frogml/inner/tool/__init__.py +0 -2
- frogml/inner/tool/auth.py +0 -70
- frogml/inner/tool/grpc/grpc_auth.py +0 -42
- frogml/inner/tool/grpc/grpc_tools.py +0 -209
- frogml/inner/tool/grpc/grpc_try_wrapping.py +0 -16
- frogml/inner/tool/protobuf_factory.py +0 -45
- frogml/inner/tool/run_config/base.py +0 -127
- frogml/llmops/generation/_steaming.py +0 -78
- frogml/llmops/generation/chat/openai/types/chat/chat_completion.py +0 -88
- frogml/llmops/generation/chat/openai/types/chat/chat_completion_chunk.py +0 -153
- frogml/llmops/generation/streaming.py +0 -26
- frogml/llmops/model/descriptor.py +0 -40
- frogml/llmops/prompt/base.py +0 -136
- frogml/llmops/prompt/chat/message.py +0 -24
- frogml/llmops/prompt/chat/template.py +0 -113
- frogml/llmops/prompt/chat/value.py +0 -10
- frogml/llmops/prompt/manager.py +0 -138
- frogml/llmops/prompt/template.py +0 -24
- frogml/llmops/provider/chat.py +0 -44
- frogml/llmops/provider/openai/client.py +0 -126
- frogml/llmops/provider/openai/provider.py +0 -91
- frogml/model/_entity_extraction.py +0 -116
- frogml/model/adapters/input_adapters/numpy_input_adapter.py +0 -100
- frogml/model/adapters/output_adapters/numpy_output_adapter.py +0 -32
- frogml/model/analytics_logging.py +0 -14
- frogml/model/base.py +0 -86
- frogml/model/decorators/api.py +0 -62
- frogml/model/decorators/impl/api_implementation.py +0 -29
- frogml/model/decorators/timer.py +0 -20
- frogml/model/fs_info_mapping_retriever.py +0 -58
- frogml/model/model_version_tracking.py +0 -57
- frogml/model/schema.py +0 -52
- frogml/model/schema_entities.py +0 -107
- frogml/model/tools/__init__.py +0 -24
- frogml/model/tools/adapters/input.py +0 -66
- frogml/model/tools/adapters/input_adapters/dataframe_input.py +0 -48
- frogml/model/tools/adapters/input_adapters/image_input.py +0 -45
- frogml/model/tools/adapters/input_adapters/json_input.py +0 -20
- frogml/model/tools/adapters/input_adapters/tf_tensor_input.py +0 -44
- frogml/model/tools/adapters/output.py +0 -75
- frogml/model/tools/adapters/output_adapters/dataframe_output.py +0 -30
- frogml/model/tools/adapters/output_adapters/json_output.py +0 -17
- frogml/model/tools/adapters/output_adapters/tf_tensor_output.py +0 -41
- frogml/model/tools/run_model_locally.py +0 -68
- frogml/model/utils/feature_utils.py +0 -69
- frogml/model_loggers/artifact_logger.py +0 -95
- frogml/model_loggers/data_logger.py +0 -172
- frogml/model_loggers/model_logger.py +0 -30
- frogml/tools/logger/logger.py +0 -287
- frogml/vector_store/client.py +0 -151
- frogml/vector_store/collection.py +0 -429
- frogml/vector_store/filters.py +0 -359
- frogml/vector_store/inference_client.py +0 -105
- frogml/vector_store/rest_helpers.py +0 -81
- frogml/vector_store/utils/filter_utils.py +0 -23
- frogml/vector_store/utils/upsert_utils.py +0 -218
- frogml_core-0.0.1.dist-info/METADATA +0 -49
- frogml_core-0.0.1.dist-info/RECORD +0 -1013
- {_frogml_proto → frogml_core/clients}/__init__.py +0 -0
- {frogml/clients → frogml_core/clients/_inner}/__init__.py +0 -0
- {frogml → frogml_core}/clients/administration/__init__.py +0 -0
- {frogml/clients/_inner → frogml_core/clients/administration/authenticated_user}/__init__.py +0 -0
- {frogml/clients/administration/authenticated_user → frogml_core/clients/administration/authentication}/__init__.py +0 -0
- {frogml/clients/administration/authentication → frogml_core/clients/administration/eco_system}/__init__.py +0 -0
- {frogml/clients/administration/eco_system → frogml_core/clients/administration/environment}/__init__.py +0 -0
- {frogml/clients/administration/environment → frogml_core/clients/administration/self_service}/__init__.py +0 -0
- {frogml → frogml_core}/clients/alert_management/__init__.py +0 -0
- {frogml → frogml_core}/clients/alerts_registry/__init__.py +0 -0
- {frogml → frogml_core}/clients/analytics/__init__.py +0 -0
- {frogml → frogml_core}/clients/audience/__init__.py +0 -0
- {frogml/clients/administration/self_service → frogml_core/clients/automation_management}/__init__.py +0 -0
- {frogml → frogml_core}/clients/autoscaling/__init__.py +0 -0
- {frogml → frogml_core}/clients/batch_job_management/__init__.py +0 -0
- {frogml → frogml_core}/clients/batch_job_management/results.py +0 -0
- {frogml → frogml_core}/clients/build_management/__init__.py +0 -0
- {frogml → frogml_core}/clients/build_orchestrator/__init__.py +0 -0
- {frogml/clients/automation_management → frogml_core/clients/data_versioning}/__init__.py +0 -0
- {frogml/clients/data_versioning → frogml_core/clients/deployment}/__init__.py +0 -0
- {frogml → frogml_core}/clients/feature_store/__init__.py +0 -0
- {frogml/clients/deployment → frogml_core/clients/file_versioning}/__init__.py +0 -0
- {frogml/clients/file_versioning → frogml_core/clients/instance_template}/__init__.py +0 -0
- {frogml/clients/instance_template → frogml_core/clients/integration_management}/__init__.py +0 -0
- {frogml/clients/integration_management → frogml_core/clients/integration_management/openai}/__init__.py +0 -0
- {frogml → frogml_core}/clients/jfrog_gateway/__init__.py +0 -0
- {frogml → frogml_core}/clients/kube_deployment_captain/__init__.py +0 -0
- {frogml → frogml_core}/clients/logging_client/__init__.py +0 -0
- {frogml → frogml_core}/clients/model_management/__init__.py +0 -0
- {frogml → frogml_core}/clients/model_version_manager/__init__.py +0 -0
- {frogml/clients/integration_management/openai → frogml_core/clients/project}/__init__.py +0 -0
- {frogml/clients/project → frogml_core/clients/prompt_manager}/__init__.py +0 -0
- {frogml → frogml_core}/clients/secret_service/__init__.py +0 -0
- {frogml/clients/prompt_manager → frogml_core/clients/system_secret}/__init__.py +0 -0
- {frogml → frogml_core}/clients/user_application_instance/__init__.py +0 -0
- {frogml → frogml_core}/clients/vector_store/__init__.py +0 -0
- {frogml → frogml_core}/clients/workspace_manager/__init__.py +0 -0
- {frogml → frogml_core}/exceptions/__init__.py +0 -0
- {frogml → frogml_core}/exceptions/frogml_decode_exception.py +0 -0
- {frogml → frogml_core}/exceptions/frogml_exception.py +0 -0
- {frogml → frogml_core}/exceptions/frogml_general_build_exception.py +0 -0
- {frogml → frogml_core}/exceptions/frogml_http_exception.py +0 -0
- {frogml → frogml_core}/exceptions/frogml_inference_exception.py +0 -0
- {frogml → frogml_core}/exceptions/frogml_load_configuration_exception.py +0 -0
- {frogml → frogml_core}/exceptions/frogml_load_model_failed_exception.py +0 -0
- {frogml → frogml_core}/exceptions/frogml_login_exception.py +0 -0
- {frogml → frogml_core}/exceptions/frogml_mock_http_exception.py +0 -0
- {frogml → frogml_core}/exceptions/frogml_model_initialization_exception.py +0 -0
- {frogml → frogml_core}/exceptions/frogml_not_found_exception.py +0 -0
- {frogml → frogml_core}/exceptions/frogml_remote_build_failed.py +0 -0
- {frogml → frogml_core}/exceptions/frogml_suggestion_exception.py +0 -0
- {frogml → frogml_core}/exceptions/quiet_error.py +0 -0
- {frogml/clients/system_secret → frogml_core/feature_store}/__init__.py +0 -0
- {frogml/feature_store → frogml_core/feature_store/_common}/__init__.py +0 -0
- {frogml → frogml_core}/feature_store/_common/functions.py +0 -0
- {frogml → frogml_core}/feature_store/_common/value.py +0 -0
- {frogml/feature_store/_common → frogml_core/feature_store/data_sources/batch}/__init__.py +0 -0
- {frogml/feature_store/data_sources/batch → frogml_core/feature_store/data_sources/batch/filesystem}/__init__.py +0 -0
- {frogml → frogml_core}/feature_store/data_sources/batch/filesystem/base_config.py +0 -0
- {frogml/feature_store/data_sources/batch/filesystem → frogml_core/feature_store/data_sources/streaming}/__init__.py +0 -0
- {frogml/feature_store/data_sources/streaming → frogml_core/feature_store/entities}/__init__.py +0 -0
- {frogml/feature_store/entities → frogml_core/feature_store/execution}/__init__.py +0 -0
- {frogml/feature_store/execution → frogml_core/feature_store/feature_sets}/__init__.py +0 -0
- {frogml → frogml_core}/feature_store/feature_sets/context.py +0 -0
- {frogml/feature_store/feature_sets → frogml_core/feature_store/feature_sets/transformations/aggregations}/__init__.py +0 -0
- {frogml → frogml_core}/feature_store/feature_sets/transformations/functions/schema.py +0 -0
- {frogml → frogml_core}/feature_store/offline/_query_engine.py +0 -0
- {frogml/feature_store/feature_sets/transformations/aggregations → frogml_core/feature_store/offline/athena}/__init__.py +0 -0
- {frogml/feature_store/offline/athena → frogml_core/feature_store/online}/__init__.py +0 -0
- {frogml/feature_store/online → frogml_core/feature_store/sinks}/__init__.py +0 -0
- {frogml/feature_store/sinks → frogml_core/feature_store/sinks/streaming}/__init__.py +0 -0
- {frogml/feature_store/sinks/streaming → frogml_core/feature_store/validations}/__init__.py +0 -0
- {frogml/feature_store/validations → frogml_core/frogml_client}/__init__.py +0 -0
- {frogml/frogml_client → frogml_core/frogml_client/build_api_helpers}/__init__.py +0 -0
- {frogml → frogml_core}/frogml_client/build_api_helpers/messages.py +0 -0
- {frogml/frogml_client/build_api_helpers → frogml_core/frogml_client/builds}/__init__.py +0 -0
- {frogml/frogml_client/builds → frogml_core/frogml_client/builds/filters}/__init__.py +0 -0
- {frogml/frogml_client/builds/filters → frogml_core/frogml_client/data_versioning}/__init__.py +0 -0
- {frogml/frogml_client/data_versioning → frogml_core/frogml_client/deployments}/__init__.py +0 -0
- {frogml/frogml_client/deployments → frogml_core/frogml_client/file_versioning}/__init__.py +0 -0
- {frogml/frogml_client/file_versioning → frogml_core/frogml_client/models}/__init__.py +0 -0
- {frogml/frogml_client/models → frogml_core/frogml_client/projects}/__init__.py +0 -0
- {frogml → frogml_core}/inner/__init__.py +0 -0
- {frogml/frogml_client/projects → frogml_core/inner/build_config}/__init__.py +0 -0
- {frogml/inner/build_config → frogml_core/inner/build_logic}/__init__.py +0 -0
- {frogml/inner/build_logic → frogml_core/inner/build_logic/build_loggers}/__init__.py +0 -0
- {frogml/inner/build_logic/build_loggers → frogml_core/inner/build_logic/constants}/__init__.py +0 -0
- {frogml → frogml_core}/inner/build_logic/constants/dependencies.py +0 -0
- {frogml → frogml_core}/inner/build_logic/constants/host_resource.py +0 -0
- {frogml → frogml_core}/inner/build_logic/constants/messages.py +0 -0
- {frogml → frogml_core}/inner/build_logic/constants/temp_dir.py +0 -0
- {frogml → frogml_core}/inner/build_logic/constants/upload_tag.py +0 -0
- {frogml → frogml_core}/inner/build_logic/dependency_manager_type.py +0 -0
- {frogml/inner/build_logic/constants → frogml_core/inner/build_logic/interface}/__init__.py +0 -0
- {frogml → frogml_core}/inner/build_logic/interface/build_logger_interface.py +0 -0
- {frogml → frogml_core}/inner/build_logic/interface/build_phase.py +0 -0
- {frogml → frogml_core}/inner/build_logic/interface/time_source.py +0 -0
- {frogml/inner/build_logic/interface → frogml_core/inner/build_logic/phases}/__init__.py +0 -0
- {frogml/inner/build_logic/phases → frogml_core/inner/build_logic/phases/phase_010_fetch_model}/__init__.py +0 -0
- {frogml/inner/build_logic/phases/phase_010_fetch_model → frogml_core/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager}/__init__.py +0 -0
- {frogml/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager → frogml_core/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/strategy}/__init__.py +0 -0
- {frogml/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/strategy → frogml_core/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/strategy/folder}/__init__.py +0 -0
- {frogml/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/strategy/folder → frogml_core/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/strategy/git}/__init__.py +0 -0
- {frogml/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/strategy/git → frogml_core/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/strategy/zip}/__init__.py +0 -0
- {frogml/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/strategy/zip → frogml_core/inner/build_logic/phases/phase_020_remote_register_frogml_build}/__init__.py +0 -0
- {frogml/inner/build_logic/phases/phase_020_remote_register_frogml_build → frogml_core/inner/build_logic/run_handlers}/__init__.py +0 -0
- {frogml/inner/build_logic/run_handlers → frogml_core/inner/build_logic/tools}/__init__.py +0 -0
- {frogml → frogml_core}/inner/build_logic/tools/text.py +0 -0
- {frogml → frogml_core}/inner/const.py +0 -0
- {frogml → frogml_core}/inner/di_configuration/config.yml +0 -0
- {frogml/inner/build_logic/tools → frogml_core/inner/instance_template}/__init__.py +0 -0
- {frogml → frogml_core}/inner/provider.py +0 -0
- {frogml → frogml_core}/inner/singleton_meta.py +0 -0
- {frogml/inner/instance_template → frogml_core/inner/tool/grpc}/__init__.py +0 -0
- {frogml → frogml_core}/inner/tool/retry_utils.py +0 -0
- {frogml → frogml_core}/inner/tool/run_config/__init__.py +0 -0
- {frogml → frogml_core}/inner/tool/run_config/utils.py +0 -0
- {frogml/inner/tool/grpc → frogml_core/llmops}/__init__.py +0 -0
- {frogml/llmops → frogml_core/llmops/generation}/__init__.py +0 -0
- {frogml → frogml_core}/llmops/generation/base.py +0 -0
- {frogml/llmops/generation → frogml_core/llmops/generation/chat}/__init__.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/LICENSE.txt +0 -0
- {frogml/llmops/generation/chat → frogml_core/llmops/generation/chat/openai/types}/__init__.py +0 -0
- {frogml/llmops/generation/chat/openai/types → frogml_core/llmops/generation/chat/openai/types/chat}/__init__.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/chat/chat_completion_assistant_message_param.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/chat/chat_completion_content_part_text_param.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/chat/chat_completion_function_call_option_param.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/chat/chat_completion_function_message_param.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/chat/chat_completion_message.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/chat/chat_completion_message_param.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/chat/chat_completion_message_tool_call.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/chat/chat_completion_message_tool_call_param.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/chat/chat_completion_named_tool_choice_param.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/chat/chat_completion_role.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/chat/chat_completion_system_message_param.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/chat/chat_completion_token_logprob.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/chat/chat_completion_tool_choice_option_param.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/chat/chat_completion_tool_message_param.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/chat/chat_completion_tool_param.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/chat/chat_completion_user_message_param.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/chat/completion_create_params.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/completion_choice.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/completion_create_params.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/completion_usage.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/model.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/shared/__init__.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/shared/error_object.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/shared/function_definition.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/shared/function_parameters.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/shared_params/__init__.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/shared_params/function_definition.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/shared_params/function_parameters.py +0 -0
- {frogml/llmops/generation/chat/openai/types/chat → frogml_core/llmops/model}/__init__.py +0 -0
- {frogml/llmops/model → frogml_core/llmops/prompt}/__init__.py +0 -0
- {frogml/llmops/prompt → frogml_core/llmops/prompt/chat}/__init__.py +0 -0
- {frogml → frogml_core}/llmops/prompt/value.py +0 -0
- {frogml/llmops/prompt/chat → frogml_core/llmops/provider}/__init__.py +0 -0
- {frogml/llmops/provider → frogml_core/llmops/provider/openai}/__init__.py +0 -0
- {frogml/llmops/provider/openai → frogml_core/model}/__init__.py +0 -0
- {frogml → frogml_core}/model/adapters/__init__.py +0 -0
- {frogml/model → frogml_core/model/adapters/input_adapters}/__init__.py +0 -0
- {frogml → frogml_core}/model/adapters/input_adapters/base_input_adapter.py +0 -0
- {frogml → frogml_core}/model/adapters/input_adapters/dataframe_input_adapter.py +0 -0
- {frogml → frogml_core}/model/adapters/input_adapters/file_input_adapter.py +0 -0
- {frogml → frogml_core}/model/adapters/input_adapters/image_input_adapter.py +0 -0
- {frogml → frogml_core}/model/adapters/input_adapters/json_input_adapter.py +0 -0
- {frogml → frogml_core}/model/adapters/input_adapters/multi_input_adapter.py +0 -0
- {frogml → frogml_core}/model/adapters/input_adapters/proto_input_adapter.py +0 -0
- {frogml → frogml_core}/model/adapters/input_adapters/string_input_adapter.py +0 -0
- {frogml → frogml_core}/model/adapters/input_adapters/tf_tensor_input_adapter.py +0 -0
- {frogml/model/adapters/input_adapters → frogml_core/model/adapters/output_adapters}/__init__.py +0 -0
- {frogml → frogml_core}/model/adapters/output_adapters/base_output_adapter.py +0 -0
- {frogml → frogml_core}/model/adapters/output_adapters/dataframe_output_adapter.py +0 -0
- {frogml → frogml_core}/model/adapters/output_adapters/default_output_adapter.py +0 -0
- {frogml → frogml_core}/model/adapters/output_adapters/json_output_adapter.py +0 -0
- {frogml → frogml_core}/model/adapters/output_adapters/proto_output_adapter.py +0 -0
- {frogml → frogml_core}/model/adapters/output_adapters/qwak_with_default_fallback.py +0 -0
- {frogml → frogml_core}/model/adapters/output_adapters/tf_tensor_output_adapter.py +0 -0
- {frogml/model/adapters/output_adapters → frogml_core/model/decorators}/__init__.py +0 -0
- {frogml/model/decorators → frogml_core/model/decorators/impl}/__init__.py +0 -0
- {frogml → frogml_core}/model/decorators/impl/timer_implementation.py +0 -0
- {frogml/model/decorators/impl → frogml_core/model/tools/adapters}/__init__.py +0 -0
- {frogml → frogml_core}/model/tools/adapters/encoders.py +0 -0
- {frogml/model/tools/adapters → frogml_core/model/tools/adapters/input_adapters}/__init__.py +0 -0
- {frogml → frogml_core}/model/tools/adapters/input_adapters/base_input.py +0 -0
- {frogml → frogml_core}/model/tools/adapters/input_adapters/file_input.py +0 -0
- {frogml → frogml_core}/model/tools/adapters/input_adapters/string_input.py +0 -0
- {frogml/model/tools/adapters/input_adapters → frogml_core/model/tools/adapters/output_adapters}/__init__.py +0 -0
- {frogml → frogml_core}/model/tools/adapters/output_adapters/base_output.py +0 -0
- {frogml → frogml_core}/model/tools/adapters/output_adapters/default_output.py +0 -0
- {frogml/model/tools/adapters/output_adapters → frogml_core/model/utils}/__init__.py +0 -0
- {frogml → frogml_core}/model/utils/extract_wrapped_function.py +0 -0
- {frogml/model/utils → frogml_core/model_loggers}/__init__.py +0 -0
- {frogml/model_loggers → frogml_core/testing}/__init__.py +0 -0
- {frogml → frogml_core}/testing/fixtures.py +0 -0
- {frogml/testing → frogml_core/tools}/__init__.py +0 -0
- {frogml → frogml_core}/tools/logger/__init__.py +0 -0
- {frogml → frogml_core}/tools/logger/logging.yml +0 -0
- {frogml/tools → frogml_core/utils}/__init__.py +0 -0
- {frogml → frogml_core}/utils/datetime_utils.py +0 -0
- {frogml → frogml_core}/utils/dict_utils.py +0 -0
- {frogml → frogml_core}/vector_store/__init__.py +0 -0
- {frogml → frogml_core/vector_store}/utils/__init__.py +0 -0
- {frogml_core-0.0.1.dist-info → frogml_core-0.0.2.dist-info}/WHEEL +0 -0
- {frogml/vector_store/utils → frogml_proto}/__init__.py +0 -0
- {_frogml_proto → frogml_proto}/jfml/model_version/v1/model_repository_spec_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/jfml/model_version/v1/model_repository_spec_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/jfml/model_version/v1/model_version_framework_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/jfml/model_version/v1/model_version_framework_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/jfml/model_version/v1/model_version_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/administration/account/v1/account_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/administration/account/v1/jfrog_tenant_details_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/administration/account/v1/jfrog_tenant_details_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/administration/account/v1/personalization_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/administration/account/v1/personalization_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/administration/account/v1/preferences_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/administration/account/v1/terms_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/administration/account/v1/terms_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/administration/authenticated_user/v1/credentials_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/administration/authenticated_user/v1/credentials_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/administration/authenticated_user/v1/details_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/administration/authenticated_user/v1/details_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/administration/v0/authentication/authentication_service_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/administration/v0/environments/configuration_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/administration/v0/environments/configuration_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/administration/v0/environments/environment_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/administration/v0/environments/personalization_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/administration/v0/environments/personalization_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/administration/v0/users/user_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/administration/v0/users/user_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/admiral/secret/v0/secret_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/admiral/secret/v0/secret_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/admiral/user_application_instance/v0/user_application_instance_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/analytics/analytics_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/analytics/analytics_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/audience/v1/audience_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/audience/v1/audience_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/auto_scaling/v1/auto_scaling_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/auto_scaling/v1/auto_scaling_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/automation/v1/action_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/automation/v1/auto_scaling_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/automation/v1/auto_scaling_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/automation/v1/automation_execution_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/automation/v1/automation_execution_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/automation/v1/automation_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/automation/v1/common_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/automation/v1/common_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/automation/v1/notification_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/automation/v1/notification_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/automation/v1/trigger_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/batch_job/v1/batch_job_events_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/batch_job/v1/batch_job_resources_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/batch_job/v1/batch_job_resources_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/build/v1/build_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/build_settings/build_settings_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/build_settings/build_settings_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/builds/build_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/builds/build_url_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/builds/build_url_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/data_versioning/data_versioning_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/data_versioning/data_versioning_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/deployment/alert_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/deployment/alert_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/deployment/deployment_messages_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/deployment/deployment_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/ecosystem/v0/credentials_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/ecosystem/v0/credentials_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/ecosystem/v0/ecosystem_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/execution/v1/backfill_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/execution/v1/batch_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/execution/v1/batch_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/execution/v1/deletion_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/execution/v1/deletion_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/execution/v1/execution_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/execution/v1/jobs/job_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/execution/v1/jobs/reports/report_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/execution/v1/state/execution_state_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/execution/v1/state/featureset_state_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/execution/v1/state/featureset_state_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/execution/v1/state/spark_execution_state_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/execution/v1/state/spark_execution_state_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/execution/v1/streaming_aggregation_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/execution/v1/streaming_aggregation_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/execution/v1/streaming_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/execution/v1/streaming_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/entities/entity_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/entities/entity_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/features/aggregation_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/features/aggregation_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/features/deployment_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/features/deployment_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/features/execution_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/features/execution_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/features/feature_set_attribute_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/features/feature_set_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/features/feature_set_state_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/features/feature_set_state_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/features/feature_set_types_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/features/monitoring_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/features/monitoring_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/features/real_time_feature_extractor_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/jobs/job_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/jobs/job_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/jobs/v1/job_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/jobs/v1/job_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/platform/platform_details_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/reports/report_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/reports/report_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/repository/common/platform_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/repository/common/platform_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/serving/metadata_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/serving/serving_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/serving/v1/value_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/serving/v1/value_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/sinks/sink_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/sources/batch_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/sources/batch_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/sources/data_source_attribute_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/sources/data_source_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/sources/streaming_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/sources/streaming_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/v1/common/source_code/source_code_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/v1/common/source_code/source_code_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/v1/internal/data_source/data_source_service_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/v1/internal/featureset/featureset_token_service_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/features_operator/v1/features_operator_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/features_operator/v1/features_operator_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/features_operator/v2/features_operator_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/features_operator/v2/features_operator_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/features_operator/v3/features_operator_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/features_operator/v3/features_operator_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/file_versioning/file_versioning_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/file_versioning/file_versioning_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/fitness_service/constructs_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/fitness_service/constructs_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/fitness_service/fitness_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/fitness_service/status_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/fitness_service/status_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/inference/feedback/feedback_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/instance_template/instance_template_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/integration/hugging_face_integration_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/integration/hugging_face_integration_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/integration/integration_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/integration/open_a_i_integration_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/integration/open_a_i_integration_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/integration/opsgenie_integration_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/integration/opsgenie_integration_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/integration/pagerduty_integration_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/integration/pagerduty_integration_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/integration/slack_app_integration_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/integration/slack_app_integration_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/jfrog/gateway/v0/repository_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/jfrog/gateway/v0/repository_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/kube_deployment_captain/alert_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/kube_deployment_captain/alert_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/kube_deployment_captain/alerting_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/kube_deployment_captain/alerting_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/kube_deployment_captain/batch_job_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/kube_deployment_captain/batch_job_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/kube_deployment_captain/deployment_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/kube_deployment_captain/deployment_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/kube_deployment_captain/feature_set_deployment_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/kube_deployment_captain/traffic_mapping_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/kube_deployment_captain/traffic_mapping_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/logging/log_filter_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/logging/log_filter_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/logging/log_line_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/logging/log_line_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/logging/log_source_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/logging/log_source_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/model_descriptor/open_ai_descriptor_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/model_descriptor/open_ai_descriptor_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/monitoring/v0/alerting_channel_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/monitoring/v0/alerting_channel_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/offline/serving/v1/feature_values_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/offline/serving/v1/feature_values_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/offline/serving/v1/options_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/offline/serving/v1/options_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/offline/serving/v1/population_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/offline/serving/v1/population_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/prompt/v1/prompt/prompt_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/secret_service/secret_service_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/self_service/account/v0/account_membership_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/self_service/account/v0/account_status_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/self_service/account/v0/managing_account_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/self_service/account/v0/managing_account_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/self_service/user/v1/api_key_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/self_service/user/v1/api_key_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/self_service/user/v1/user_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/traffic/v1/traffic_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/traffic/v1/traffic_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/user_application/common/v0/resources_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/user_application/common/v0/resources_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/user_application/v0/user_application_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/user_application/v0/user_application_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/vectors/v1/collection/collection_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/vectors/v1/collection/collection_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/vectors/v1/collection/event/collection_event_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/vectors/v1/collection/event/collection_event_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/vectors/v1/filters_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/vectors/v1/filters_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/vectors/v1/vector_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/vectors/v1/vector_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/workspace/workspace_pb2_grpc.py +0 -0
@@ -0,0 +1,1582 @@
|
|
1
|
+
"""
|
2
|
+
@generated by mypy-protobuf. Do not edit manually!
|
3
|
+
isort:skip_file
|
4
|
+
"""
|
5
|
+
import builtins
|
6
|
+
import collections.abc
|
7
|
+
import google.protobuf.descriptor
|
8
|
+
import google.protobuf.internal.containers
|
9
|
+
import google.protobuf.internal.enum_type_wrapper
|
10
|
+
import google.protobuf.message
|
11
|
+
import google.protobuf.timestamp_pb2
|
12
|
+
import google.protobuf.wrappers_pb2
|
13
|
+
import frogml_proto.qwak.audience.v1.audience_pb2
|
14
|
+
import frogml_proto.qwak.auto_scaling.v1.auto_scaling_pb2
|
15
|
+
import frogml_proto.qwak.user_application.common.v0.resources_pb2
|
16
|
+
import sys
|
17
|
+
import typing
|
18
|
+
|
19
|
+
if sys.version_info >= (3, 10):
|
20
|
+
import typing as typing_extensions
|
21
|
+
else:
|
22
|
+
import typing_extensions
|
23
|
+
|
24
|
+
DESCRIPTOR: google.protobuf.descriptor.FileDescriptor
|
25
|
+
|
26
|
+
class _ModelDeploymentStatus:
|
27
|
+
ValueType = typing.NewType("ValueType", builtins.int)
|
28
|
+
V: typing_extensions.TypeAlias = ValueType
|
29
|
+
|
30
|
+
class _ModelDeploymentStatusEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[_ModelDeploymentStatus.ValueType], builtins.type): # noqa: F821
|
31
|
+
DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
|
32
|
+
INVALID_DEPLOYMENT: _ModelDeploymentStatus.ValueType # 0
|
33
|
+
"""Invalid deployment status"""
|
34
|
+
INITIATING_DEPLOYMENT: _ModelDeploymentStatus.ValueType # 1
|
35
|
+
"""Deployment is initiating"""
|
36
|
+
FAILED_INITIATING_DEPLOYMENT: _ModelDeploymentStatus.ValueType # 8
|
37
|
+
"""Failed to initiate a deployment process"""
|
38
|
+
PENDING_DEPLOYMENT: _ModelDeploymentStatus.ValueType # 2
|
39
|
+
"""Deployment is in progress"""
|
40
|
+
SUCCESSFUL_DEPLOYMENT: _ModelDeploymentStatus.ValueType # 3
|
41
|
+
"""Deployment has finished successfully"""
|
42
|
+
FAILED_DEPLOYMENT: _ModelDeploymentStatus.ValueType # 4
|
43
|
+
"""Deployment has failed"""
|
44
|
+
INITIATING_UNDEPLOYMENT: _ModelDeploymentStatus.ValueType # 9
|
45
|
+
"""Undeployment is initiating"""
|
46
|
+
PENDING_UNDEPLOYMENT: _ModelDeploymentStatus.ValueType # 10
|
47
|
+
"""Undeployment is in progress"""
|
48
|
+
SUCCESSFUL_UNDEPLOYMENT: _ModelDeploymentStatus.ValueType # 5
|
49
|
+
"""Model is undeployed"""
|
50
|
+
FAILED_UNDEPLOYMENT: _ModelDeploymentStatus.ValueType # 6
|
51
|
+
"""Undeployment has failed"""
|
52
|
+
UNSET: _ModelDeploymentStatus.ValueType # 7
|
53
|
+
"""TODO Or - Migration code - to be remove
|
54
|
+
Deployment is unset
|
55
|
+
"""
|
56
|
+
ALL_BUILDS_UNDEPLOYED: _ModelDeploymentStatus.ValueType # 11
|
57
|
+
"""All builds in a model are undeployed"""
|
58
|
+
CANCELLED_DEPLOYMENT: _ModelDeploymentStatus.ValueType # 12
|
59
|
+
"""Deployment Cancel"""
|
60
|
+
INITIATING_CANCEL_DEPLOYMENT: _ModelDeploymentStatus.ValueType # 13
|
61
|
+
"""deployment marked for cancel"""
|
62
|
+
|
63
|
+
class ModelDeploymentStatus(_ModelDeploymentStatus, metaclass=_ModelDeploymentStatusEnumTypeWrapper): ...
|
64
|
+
|
65
|
+
INVALID_DEPLOYMENT: ModelDeploymentStatus.ValueType # 0
|
66
|
+
"""Invalid deployment status"""
|
67
|
+
INITIATING_DEPLOYMENT: ModelDeploymentStatus.ValueType # 1
|
68
|
+
"""Deployment is initiating"""
|
69
|
+
FAILED_INITIATING_DEPLOYMENT: ModelDeploymentStatus.ValueType # 8
|
70
|
+
"""Failed to initiate a deployment process"""
|
71
|
+
PENDING_DEPLOYMENT: ModelDeploymentStatus.ValueType # 2
|
72
|
+
"""Deployment is in progress"""
|
73
|
+
SUCCESSFUL_DEPLOYMENT: ModelDeploymentStatus.ValueType # 3
|
74
|
+
"""Deployment has finished successfully"""
|
75
|
+
FAILED_DEPLOYMENT: ModelDeploymentStatus.ValueType # 4
|
76
|
+
"""Deployment has failed"""
|
77
|
+
INITIATING_UNDEPLOYMENT: ModelDeploymentStatus.ValueType # 9
|
78
|
+
"""Undeployment is initiating"""
|
79
|
+
PENDING_UNDEPLOYMENT: ModelDeploymentStatus.ValueType # 10
|
80
|
+
"""Undeployment is in progress"""
|
81
|
+
SUCCESSFUL_UNDEPLOYMENT: ModelDeploymentStatus.ValueType # 5
|
82
|
+
"""Model is undeployed"""
|
83
|
+
FAILED_UNDEPLOYMENT: ModelDeploymentStatus.ValueType # 6
|
84
|
+
"""Undeployment has failed"""
|
85
|
+
UNSET: ModelDeploymentStatus.ValueType # 7
|
86
|
+
"""TODO Or - Migration code - to be remove
|
87
|
+
Deployment is unset
|
88
|
+
"""
|
89
|
+
ALL_BUILDS_UNDEPLOYED: ModelDeploymentStatus.ValueType # 11
|
90
|
+
"""All builds in a model are undeployed"""
|
91
|
+
CANCELLED_DEPLOYMENT: ModelDeploymentStatus.ValueType # 12
|
92
|
+
"""Deployment Cancel"""
|
93
|
+
INITIATING_CANCEL_DEPLOYMENT: ModelDeploymentStatus.ValueType # 13
|
94
|
+
"""deployment marked for cancel"""
|
95
|
+
global___ModelDeploymentStatus = ModelDeploymentStatus
|
96
|
+
|
97
|
+
class _DeploymentHostingServiceType:
|
98
|
+
ValueType = typing.NewType("ValueType", builtins.int)
|
99
|
+
V: typing_extensions.TypeAlias = ValueType
|
100
|
+
|
101
|
+
class _DeploymentHostingServiceTypeEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[_DeploymentHostingServiceType.ValueType], builtins.type): # noqa: F821
|
102
|
+
DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
|
103
|
+
INVALID: _DeploymentHostingServiceType.ValueType # 0
|
104
|
+
SAGEMAKER: _DeploymentHostingServiceType.ValueType # 1
|
105
|
+
KUBE_DEPLOYMENT: _DeploymentHostingServiceType.ValueType # 2
|
106
|
+
|
107
|
+
class DeploymentHostingServiceType(_DeploymentHostingServiceType, metaclass=_DeploymentHostingServiceTypeEnumTypeWrapper): ...
|
108
|
+
|
109
|
+
INVALID: DeploymentHostingServiceType.ValueType # 0
|
110
|
+
SAGEMAKER: DeploymentHostingServiceType.ValueType # 1
|
111
|
+
KUBE_DEPLOYMENT: DeploymentHostingServiceType.ValueType # 2
|
112
|
+
global___DeploymentHostingServiceType = DeploymentHostingServiceType
|
113
|
+
|
114
|
+
class _KubeDeploymentType:
|
115
|
+
ValueType = typing.NewType("ValueType", builtins.int)
|
116
|
+
V: typing_extensions.TypeAlias = ValueType
|
117
|
+
|
118
|
+
class _KubeDeploymentTypeEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[_KubeDeploymentType.ValueType], builtins.type): # noqa: F821
|
119
|
+
DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
|
120
|
+
UNDEFINED: _KubeDeploymentType.ValueType # 0
|
121
|
+
ONLINE: _KubeDeploymentType.ValueType # 1
|
122
|
+
STREAM: _KubeDeploymentType.ValueType # 2
|
123
|
+
BATCH: _KubeDeploymentType.ValueType # 3
|
124
|
+
|
125
|
+
class KubeDeploymentType(_KubeDeploymentType, metaclass=_KubeDeploymentTypeEnumTypeWrapper): ...
|
126
|
+
|
127
|
+
UNDEFINED: KubeDeploymentType.ValueType # 0
|
128
|
+
ONLINE: KubeDeploymentType.ValueType # 1
|
129
|
+
STREAM: KubeDeploymentType.ValueType # 2
|
130
|
+
BATCH: KubeDeploymentType.ValueType # 3
|
131
|
+
global___KubeDeploymentType = KubeDeploymentType
|
132
|
+
|
133
|
+
class _GpuType:
|
134
|
+
ValueType = typing.NewType("ValueType", builtins.int)
|
135
|
+
V: typing_extensions.TypeAlias = ValueType
|
136
|
+
|
137
|
+
class _GpuTypeEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[_GpuType.ValueType], builtins.type): # noqa: F821
|
138
|
+
DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
|
139
|
+
INVALID_GPU: _GpuType.ValueType # 0
|
140
|
+
NVIDIA_K80: _GpuType.ValueType # 1
|
141
|
+
NVIDIA_V100: _GpuType.ValueType # 2
|
142
|
+
NVIDIA_A100: _GpuType.ValueType # 3
|
143
|
+
NVIDIA_T4: _GpuType.ValueType # 4
|
144
|
+
NVIDIA_A10G: _GpuType.ValueType # 5
|
145
|
+
NVIDIA_L4: _GpuType.ValueType # 6
|
146
|
+
|
147
|
+
class GpuType(_GpuType, metaclass=_GpuTypeEnumTypeWrapper): ...
|
148
|
+
|
149
|
+
INVALID_GPU: GpuType.ValueType # 0
|
150
|
+
NVIDIA_K80: GpuType.ValueType # 1
|
151
|
+
NVIDIA_V100: GpuType.ValueType # 2
|
152
|
+
NVIDIA_A100: GpuType.ValueType # 3
|
153
|
+
NVIDIA_T4: GpuType.ValueType # 4
|
154
|
+
NVIDIA_A10G: GpuType.ValueType # 5
|
155
|
+
NVIDIA_L4: GpuType.ValueType # 6
|
156
|
+
global___GpuType = GpuType
|
157
|
+
|
158
|
+
class _MemoryUnit:
|
159
|
+
ValueType = typing.NewType("ValueType", builtins.int)
|
160
|
+
V: typing_extensions.TypeAlias = ValueType
|
161
|
+
|
162
|
+
class _MemoryUnitEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[_MemoryUnit.ValueType], builtins.type): # noqa: F821
|
163
|
+
DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
|
164
|
+
UNKNOWN: _MemoryUnit.ValueType # 0
|
165
|
+
MIB: _MemoryUnit.ValueType # 1
|
166
|
+
GIB: _MemoryUnit.ValueType # 2
|
167
|
+
|
168
|
+
class MemoryUnit(_MemoryUnit, metaclass=_MemoryUnitEnumTypeWrapper): ...
|
169
|
+
|
170
|
+
UNKNOWN: MemoryUnit.ValueType # 0
|
171
|
+
MIB: MemoryUnit.ValueType # 1
|
172
|
+
GIB: MemoryUnit.ValueType # 2
|
173
|
+
global___MemoryUnit = MemoryUnit
|
174
|
+
|
175
|
+
class _DeploymentManagedBy:
|
176
|
+
ValueType = typing.NewType("ValueType", builtins.int)
|
177
|
+
V: typing_extensions.TypeAlias = ValueType
|
178
|
+
|
179
|
+
class _DeploymentManagedByEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[_DeploymentManagedBy.ValueType], builtins.type): # noqa: F821
|
180
|
+
DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
|
181
|
+
DEPLOYMENT_MANAGED_BY_INVALID: _DeploymentManagedBy.ValueType # 0
|
182
|
+
DEPLOYMENT_MANAGED_BY_KUBE_CAPTAIN: _DeploymentManagedBy.ValueType # 1
|
183
|
+
DEPLOYMENT_MANAGED_BY_ADMIRAL: _DeploymentManagedBy.ValueType # 2
|
184
|
+
|
185
|
+
class DeploymentManagedBy(_DeploymentManagedBy, metaclass=_DeploymentManagedByEnumTypeWrapper): ...
|
186
|
+
|
187
|
+
DEPLOYMENT_MANAGED_BY_INVALID: DeploymentManagedBy.ValueType # 0
|
188
|
+
DEPLOYMENT_MANAGED_BY_KUBE_CAPTAIN: DeploymentManagedBy.ValueType # 1
|
189
|
+
DEPLOYMENT_MANAGED_BY_ADMIRAL: DeploymentManagedBy.ValueType # 2
|
190
|
+
global___DeploymentManagedBy = DeploymentManagedBy
|
191
|
+
|
192
|
+
class _DeploymentFailureReasonCode:
|
193
|
+
ValueType = typing.NewType("ValueType", builtins.int)
|
194
|
+
V: typing_extensions.TypeAlias = ValueType
|
195
|
+
|
196
|
+
class _DeploymentFailureReasonCodeEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[_DeploymentFailureReasonCode.ValueType], builtins.type): # noqa: F821
|
197
|
+
DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
|
198
|
+
INVALID_FAILURE_CODE: _DeploymentFailureReasonCode.ValueType # 0
|
199
|
+
"""Invalid failure reason"""
|
200
|
+
UNKNOWN_REASON: _DeploymentFailureReasonCode.ValueType # 1
|
201
|
+
"""Unknown failure reason"""
|
202
|
+
NO_REPLICA_SETS_PODS_FOUND: _DeploymentFailureReasonCode.ValueType # 2
|
203
|
+
"""No replica sets pods found reason"""
|
204
|
+
MODEL_CONTAINER_NOT_FOUND: _DeploymentFailureReasonCode.ValueType # 3
|
205
|
+
"""Model container not found reason"""
|
206
|
+
UNSCHEDULABLE: _DeploymentFailureReasonCode.ValueType # 4
|
207
|
+
"""Unschedulable reason"""
|
208
|
+
DOCKER_IMAGE_NOT_FOUND: _DeploymentFailureReasonCode.ValueType # 5
|
209
|
+
"""Docker image not found reason"""
|
210
|
+
MEMORY_LIMIT_EXCEEDED: _DeploymentFailureReasonCode.ValueType # 6
|
211
|
+
"""Memory limit exceeded reason"""
|
212
|
+
CRASH_LOOP: _DeploymentFailureReasonCode.ValueType # 7
|
213
|
+
"""Crash loop reason"""
|
214
|
+
CONTAINER_FAIL_TO_LOAD_FOR_UNKNOWN_REASON: _DeploymentFailureReasonCode.ValueType # 8
|
215
|
+
"""Container fail to load for unknown reason"""
|
216
|
+
|
217
|
+
class DeploymentFailureReasonCode(_DeploymentFailureReasonCode, metaclass=_DeploymentFailureReasonCodeEnumTypeWrapper): ...
|
218
|
+
|
219
|
+
INVALID_FAILURE_CODE: DeploymentFailureReasonCode.ValueType # 0
|
220
|
+
"""Invalid failure reason"""
|
221
|
+
UNKNOWN_REASON: DeploymentFailureReasonCode.ValueType # 1
|
222
|
+
"""Unknown failure reason"""
|
223
|
+
NO_REPLICA_SETS_PODS_FOUND: DeploymentFailureReasonCode.ValueType # 2
|
224
|
+
"""No replica sets pods found reason"""
|
225
|
+
MODEL_CONTAINER_NOT_FOUND: DeploymentFailureReasonCode.ValueType # 3
|
226
|
+
"""Model container not found reason"""
|
227
|
+
UNSCHEDULABLE: DeploymentFailureReasonCode.ValueType # 4
|
228
|
+
"""Unschedulable reason"""
|
229
|
+
DOCKER_IMAGE_NOT_FOUND: DeploymentFailureReasonCode.ValueType # 5
|
230
|
+
"""Docker image not found reason"""
|
231
|
+
MEMORY_LIMIT_EXCEEDED: DeploymentFailureReasonCode.ValueType # 6
|
232
|
+
"""Memory limit exceeded reason"""
|
233
|
+
CRASH_LOOP: DeploymentFailureReasonCode.ValueType # 7
|
234
|
+
"""Crash loop reason"""
|
235
|
+
CONTAINER_FAIL_TO_LOAD_FOR_UNKNOWN_REASON: DeploymentFailureReasonCode.ValueType # 8
|
236
|
+
"""Container fail to load for unknown reason"""
|
237
|
+
global___DeploymentFailureReasonCode = DeploymentFailureReasonCode
|
238
|
+
|
239
|
+
class _ModelPodPhase:
|
240
|
+
ValueType = typing.NewType("ValueType", builtins.int)
|
241
|
+
V: typing_extensions.TypeAlias = ValueType
|
242
|
+
|
243
|
+
class _ModelPodPhaseEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[_ModelPodPhase.ValueType], builtins.type): # noqa: F821
|
244
|
+
DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
|
245
|
+
INVALID_POD_PHASE: _ModelPodPhase.ValueType # 0
|
246
|
+
MODEL_POD_PHASE_PROVISIONING_INSTANCE: _ModelPodPhase.ValueType # 1
|
247
|
+
MODEL_POD_PHASE_PULLING_IMAGE: _ModelPodPhase.ValueType # 2
|
248
|
+
MODEL_POD_PHASE_INITIALIZING_MODEL: _ModelPodPhase.ValueType # 3
|
249
|
+
MODEL_POD_PHASE_READY: _ModelPodPhase.ValueType # 4
|
250
|
+
|
251
|
+
class ModelPodPhase(_ModelPodPhase, metaclass=_ModelPodPhaseEnumTypeWrapper): ...
|
252
|
+
|
253
|
+
INVALID_POD_PHASE: ModelPodPhase.ValueType # 0
|
254
|
+
MODEL_POD_PHASE_PROVISIONING_INSTANCE: ModelPodPhase.ValueType # 1
|
255
|
+
MODEL_POD_PHASE_PULLING_IMAGE: ModelPodPhase.ValueType # 2
|
256
|
+
MODEL_POD_PHASE_INITIALIZING_MODEL: ModelPodPhase.ValueType # 3
|
257
|
+
MODEL_POD_PHASE_READY: ModelPodPhase.ValueType # 4
|
258
|
+
global___ModelPodPhase = ModelPodPhase
|
259
|
+
|
260
|
+
class _DeploymentPhaseType:
|
261
|
+
ValueType = typing.NewType("ValueType", builtins.int)
|
262
|
+
V: typing_extensions.TypeAlias = ValueType
|
263
|
+
|
264
|
+
class _DeploymentPhaseTypeEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[_DeploymentPhaseType.ValueType], builtins.type): # noqa: F821
|
265
|
+
DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
|
266
|
+
INVALID_DEPLOYMENT_PHASE: _DeploymentPhaseType.ValueType # 0
|
267
|
+
DEPLOYMENT_PHASE_PROVISIONING_INSTANCE: _DeploymentPhaseType.ValueType # 1
|
268
|
+
DEPLOYMENT_PHASE_PULLING_IMAGE: _DeploymentPhaseType.ValueType # 2
|
269
|
+
DEPLOYMENT_PHASE_INITIALIZING_MODEL: _DeploymentPhaseType.ValueType # 3
|
270
|
+
|
271
|
+
class DeploymentPhaseType(_DeploymentPhaseType, metaclass=_DeploymentPhaseTypeEnumTypeWrapper): ...
|
272
|
+
|
273
|
+
INVALID_DEPLOYMENT_PHASE: DeploymentPhaseType.ValueType # 0
|
274
|
+
DEPLOYMENT_PHASE_PROVISIONING_INSTANCE: DeploymentPhaseType.ValueType # 1
|
275
|
+
DEPLOYMENT_PHASE_PULLING_IMAGE: DeploymentPhaseType.ValueType # 2
|
276
|
+
DEPLOYMENT_PHASE_INITIALIZING_MODEL: DeploymentPhaseType.ValueType # 3
|
277
|
+
global___DeploymentPhaseType = DeploymentPhaseType
|
278
|
+
|
279
|
+
class _DeploymentPhaseStatus:
|
280
|
+
ValueType = typing.NewType("ValueType", builtins.int)
|
281
|
+
V: typing_extensions.TypeAlias = ValueType
|
282
|
+
|
283
|
+
class _DeploymentPhaseStatusEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[_DeploymentPhaseStatus.ValueType], builtins.type): # noqa: F821
|
284
|
+
DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
|
285
|
+
INVALID_DEPLOYMENT_PHASE_STATUS: _DeploymentPhaseStatus.ValueType # 0
|
286
|
+
DEPLOYMENT_PHASE_NOT_STARTED: _DeploymentPhaseStatus.ValueType # 1
|
287
|
+
DEPLOYMENT_PHASE_STARTED: _DeploymentPhaseStatus.ValueType # 2
|
288
|
+
DEPLOYMENT_PHASE_FINISHED: _DeploymentPhaseStatus.ValueType # 3
|
289
|
+
DEPLOYMENT_PHASE_CANCELED: _DeploymentPhaseStatus.ValueType # 4
|
290
|
+
DEPLOYMENT_PHASE_FAILED: _DeploymentPhaseStatus.ValueType # 5
|
291
|
+
DEPLOYMENT_PHASE_ABORTED: _DeploymentPhaseStatus.ValueType # 6
|
292
|
+
|
293
|
+
class DeploymentPhaseStatus(_DeploymentPhaseStatus, metaclass=_DeploymentPhaseStatusEnumTypeWrapper): ...
|
294
|
+
|
295
|
+
INVALID_DEPLOYMENT_PHASE_STATUS: DeploymentPhaseStatus.ValueType # 0
|
296
|
+
DEPLOYMENT_PHASE_NOT_STARTED: DeploymentPhaseStatus.ValueType # 1
|
297
|
+
DEPLOYMENT_PHASE_STARTED: DeploymentPhaseStatus.ValueType # 2
|
298
|
+
DEPLOYMENT_PHASE_FINISHED: DeploymentPhaseStatus.ValueType # 3
|
299
|
+
DEPLOYMENT_PHASE_CANCELED: DeploymentPhaseStatus.ValueType # 4
|
300
|
+
DEPLOYMENT_PHASE_FAILED: DeploymentPhaseStatus.ValueType # 5
|
301
|
+
DEPLOYMENT_PHASE_ABORTED: DeploymentPhaseStatus.ValueType # 6
|
302
|
+
global___DeploymentPhaseStatus = DeploymentPhaseStatus
|
303
|
+
|
304
|
+
class QwakModeRegistryIdentifier(google.protobuf.message.Message):
|
305
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
306
|
+
|
307
|
+
ID_FIELD_NUMBER: builtins.int
|
308
|
+
id: builtins.str
|
309
|
+
"""The model registry id"""
|
310
|
+
def __init__(
|
311
|
+
self,
|
312
|
+
*,
|
313
|
+
id: builtins.str = ...,
|
314
|
+
) -> None: ...
|
315
|
+
def ClearField(self, field_name: typing_extensions.Literal["id", b"id"]) -> None: ...
|
316
|
+
|
317
|
+
global___QwakModeRegistryIdentifier = QwakModeRegistryIdentifier
|
318
|
+
|
319
|
+
class HostingService(google.protobuf.message.Message):
|
320
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
321
|
+
|
322
|
+
SAGEMAKER_FIELD_NUMBER: builtins.int
|
323
|
+
KUBE_DEPLOYMENT_FIELD_NUMBER: builtins.int
|
324
|
+
@property
|
325
|
+
def sagemaker(self) -> global___SageMaker: ...
|
326
|
+
@property
|
327
|
+
def kube_deployment(self) -> global___KubeDeployment: ...
|
328
|
+
def __init__(
|
329
|
+
self,
|
330
|
+
*,
|
331
|
+
sagemaker: global___SageMaker | None = ...,
|
332
|
+
kube_deployment: global___KubeDeployment | None = ...,
|
333
|
+
) -> None: ...
|
334
|
+
def HasField(self, field_name: typing_extensions.Literal["kube_deployment", b"kube_deployment", "sagemaker", b"sagemaker", "val", b"val"]) -> builtins.bool: ...
|
335
|
+
def ClearField(self, field_name: typing_extensions.Literal["kube_deployment", b"kube_deployment", "sagemaker", b"sagemaker", "val", b"val"]) -> None: ...
|
336
|
+
def WhichOneof(self, oneof_group: typing_extensions.Literal["val", b"val"]) -> typing_extensions.Literal["sagemaker", "kube_deployment"] | None: ...
|
337
|
+
|
338
|
+
global___HostingService = HostingService
|
339
|
+
|
340
|
+
class KubeDeployment(google.protobuf.message.Message):
|
341
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
342
|
+
|
343
|
+
class EnvironmentVariablesEntry(google.protobuf.message.Message):
|
344
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
345
|
+
|
346
|
+
KEY_FIELD_NUMBER: builtins.int
|
347
|
+
VALUE_FIELD_NUMBER: builtins.int
|
348
|
+
key: builtins.str
|
349
|
+
value: builtins.str
|
350
|
+
def __init__(
|
351
|
+
self,
|
352
|
+
*,
|
353
|
+
key: builtins.str = ...,
|
354
|
+
value: builtins.str = ...,
|
355
|
+
) -> None: ...
|
356
|
+
def ClearField(self, field_name: typing_extensions.Literal["key", b"key", "value", b"value"]) -> None: ...
|
357
|
+
|
358
|
+
POD_COUNT_FIELD_NUMBER: builtins.int
|
359
|
+
DEPLOYMENT_SIZE_FIELD_NUMBER: builtins.int
|
360
|
+
ADVANCED_DEPLOYMENT_OPTIONS_FIELD_NUMBER: builtins.int
|
361
|
+
KUBE_DEPLOYMENT_TYPE_FIELD_NUMBER: builtins.int
|
362
|
+
SERVING_STRATEGY_FIELD_NUMBER: builtins.int
|
363
|
+
ENVIRONMENT_VARIABLES_FIELD_NUMBER: builtins.int
|
364
|
+
pod_count: builtins.int
|
365
|
+
"""Count of pods to deploy."""
|
366
|
+
@property
|
367
|
+
def deployment_size(self) -> global___DeploymentSize:
|
368
|
+
"""Size of deployments"""
|
369
|
+
@property
|
370
|
+
def advanced_deployment_options(self) -> global___AdvancedDeploymentOptions:
|
371
|
+
"""Advanced deployment options"""
|
372
|
+
kube_deployment_type: global___KubeDeploymentType.ValueType
|
373
|
+
@property
|
374
|
+
def serving_strategy(self) -> global___ServingStrategy: ...
|
375
|
+
@property
|
376
|
+
def environment_variables(self) -> google.protobuf.internal.containers.ScalarMap[builtins.str, builtins.str]: ...
|
377
|
+
def __init__(
|
378
|
+
self,
|
379
|
+
*,
|
380
|
+
pod_count: builtins.int = ...,
|
381
|
+
deployment_size: global___DeploymentSize | None = ...,
|
382
|
+
advanced_deployment_options: global___AdvancedDeploymentOptions | None = ...,
|
383
|
+
kube_deployment_type: global___KubeDeploymentType.ValueType = ...,
|
384
|
+
serving_strategy: global___ServingStrategy | None = ...,
|
385
|
+
environment_variables: collections.abc.Mapping[builtins.str, builtins.str] | None = ...,
|
386
|
+
) -> None: ...
|
387
|
+
def HasField(self, field_name: typing_extensions.Literal["advanced_deployment_options", b"advanced_deployment_options", "deployment_size", b"deployment_size", "serving_strategy", b"serving_strategy"]) -> builtins.bool: ...
|
388
|
+
def ClearField(self, field_name: typing_extensions.Literal["advanced_deployment_options", b"advanced_deployment_options", "deployment_size", b"deployment_size", "environment_variables", b"environment_variables", "kube_deployment_type", b"kube_deployment_type", "pod_count", b"pod_count", "serving_strategy", b"serving_strategy"]) -> None: ...
|
389
|
+
|
390
|
+
global___KubeDeployment = KubeDeployment
|
391
|
+
|
392
|
+
class ServingStrategy(google.protobuf.message.Message):
|
393
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
394
|
+
|
395
|
+
REALTIME_CONFIG_FIELD_NUMBER: builtins.int
|
396
|
+
STREAM_CONFIG_FIELD_NUMBER: builtins.int
|
397
|
+
BATCH_CONFIG_FIELD_NUMBER: builtins.int
|
398
|
+
@property
|
399
|
+
def realtime_config(self) -> global___RealTimeConfig: ...
|
400
|
+
@property
|
401
|
+
def stream_config(self) -> global___StreamConfig: ...
|
402
|
+
@property
|
403
|
+
def batch_config(self) -> global___BatchConfig: ...
|
404
|
+
def __init__(
|
405
|
+
self,
|
406
|
+
*,
|
407
|
+
realtime_config: global___RealTimeConfig | None = ...,
|
408
|
+
stream_config: global___StreamConfig | None = ...,
|
409
|
+
batch_config: global___BatchConfig | None = ...,
|
410
|
+
) -> None: ...
|
411
|
+
def HasField(self, field_name: typing_extensions.Literal["Strategy", b"Strategy", "batch_config", b"batch_config", "realtime_config", b"realtime_config", "stream_config", b"stream_config"]) -> builtins.bool: ...
|
412
|
+
def ClearField(self, field_name: typing_extensions.Literal["Strategy", b"Strategy", "batch_config", b"batch_config", "realtime_config", b"realtime_config", "stream_config", b"stream_config"]) -> None: ...
|
413
|
+
def WhichOneof(self, oneof_group: typing_extensions.Literal["Strategy", b"Strategy"]) -> typing_extensions.Literal["realtime_config", "stream_config", "batch_config"] | None: ...
|
414
|
+
|
415
|
+
global___ServingStrategy = ServingStrategy
|
416
|
+
|
417
|
+
class RealTimeConfig(google.protobuf.message.Message):
|
418
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
419
|
+
|
420
|
+
TRAFFIC_CONFIG_FIELD_NUMBER: builtins.int
|
421
|
+
AUTO_SCALING_CONFIG_FIELD_NUMBER: builtins.int
|
422
|
+
@property
|
423
|
+
def traffic_config(self) -> global___TrafficConfig: ...
|
424
|
+
@property
|
425
|
+
def auto_scaling_config(self) -> frogml_proto.qwak.auto_scaling.v1.auto_scaling_pb2.AutoScalingConfig:
|
426
|
+
"""Auto scaling config"""
|
427
|
+
def __init__(
|
428
|
+
self,
|
429
|
+
*,
|
430
|
+
traffic_config: global___TrafficConfig | None = ...,
|
431
|
+
auto_scaling_config: frogml_proto.qwak.auto_scaling.v1.auto_scaling_pb2.AutoScalingConfig | None = ...,
|
432
|
+
) -> None: ...
|
433
|
+
def HasField(self, field_name: typing_extensions.Literal["auto_scaling_config", b"auto_scaling_config", "traffic_config", b"traffic_config"]) -> builtins.bool: ...
|
434
|
+
def ClearField(self, field_name: typing_extensions.Literal["auto_scaling_config", b"auto_scaling_config", "traffic_config", b"traffic_config"]) -> None: ...
|
435
|
+
|
436
|
+
global___RealTimeConfig = RealTimeConfig
|
437
|
+
|
438
|
+
class TrafficConfig(google.protobuf.message.Message):
|
439
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
440
|
+
|
441
|
+
SELECTED_VARIATION_NAME_FIELD_NUMBER: builtins.int
|
442
|
+
VARIATIONS_FIELD_NUMBER: builtins.int
|
443
|
+
AUDIENCE_ROUTES_ENTRIES_FIELD_NUMBER: builtins.int
|
444
|
+
FALLBACK_VARIATION_FIELD_NUMBER: builtins.int
|
445
|
+
SELECTED_VARIATION_PROTECT_STATE_FIELD_NUMBER: builtins.int
|
446
|
+
selected_variation_name: builtins.str
|
447
|
+
"""Variation name"""
|
448
|
+
@property
|
449
|
+
def variations(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___Variation]:
|
450
|
+
"""The variations config"""
|
451
|
+
@property
|
452
|
+
def audience_routes_entries(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[qwak.audience.v1.audience_pb2.AudienceRoutesEntry]:
|
453
|
+
"""Audiences Routes."""
|
454
|
+
fallback_variation: builtins.str
|
455
|
+
selected_variation_protect_state: builtins.bool
|
456
|
+
def __init__(
|
457
|
+
self,
|
458
|
+
*,
|
459
|
+
selected_variation_name: builtins.str = ...,
|
460
|
+
variations: collections.abc.Iterable[global___Variation] | None = ...,
|
461
|
+
audience_routes_entries: collections.abc.Iterable[qwak.audience.v1.audience_pb2.AudienceRoutesEntry] | None = ...,
|
462
|
+
fallback_variation: builtins.str = ...,
|
463
|
+
selected_variation_protect_state: builtins.bool = ...,
|
464
|
+
) -> None: ...
|
465
|
+
def ClearField(self, field_name: typing_extensions.Literal["audience_routes_entries", b"audience_routes_entries", "fallback_variation", b"fallback_variation", "selected_variation_name", b"selected_variation_name", "selected_variation_protect_state", b"selected_variation_protect_state", "variations", b"variations"]) -> None: ...
|
466
|
+
|
467
|
+
global___TrafficConfig = TrafficConfig
|
468
|
+
|
469
|
+
class StreamConfig(google.protobuf.message.Message):
|
470
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
471
|
+
|
472
|
+
KAFKA_FIELD_NUMBER: builtins.int
|
473
|
+
@property
|
474
|
+
def kafka(self) -> global___KafkaConfig: ...
|
475
|
+
def __init__(
|
476
|
+
self,
|
477
|
+
*,
|
478
|
+
kafka: global___KafkaConfig | None = ...,
|
479
|
+
) -> None: ...
|
480
|
+
def HasField(self, field_name: typing_extensions.Literal["kafka", b"kafka"]) -> builtins.bool: ...
|
481
|
+
def ClearField(self, field_name: typing_extensions.Literal["kafka", b"kafka"]) -> None: ...
|
482
|
+
|
483
|
+
global___StreamConfig = StreamConfig
|
484
|
+
|
485
|
+
class BatchConfig(google.protobuf.message.Message):
|
486
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
487
|
+
|
488
|
+
def __init__(
|
489
|
+
self,
|
490
|
+
) -> None: ...
|
491
|
+
|
492
|
+
global___BatchConfig = BatchConfig
|
493
|
+
|
494
|
+
class KafkaConfig(google.protobuf.message.Message):
|
495
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
496
|
+
|
497
|
+
class Consumer(google.protobuf.message.Message):
|
498
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
499
|
+
|
500
|
+
class _AutoOffSetType:
|
501
|
+
ValueType = typing.NewType("ValueType", builtins.int)
|
502
|
+
V: typing_extensions.TypeAlias = ValueType
|
503
|
+
|
504
|
+
class _AutoOffSetTypeEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[KafkaConfig.Consumer._AutoOffSetType.ValueType], builtins.type): # noqa: F821
|
505
|
+
DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
|
506
|
+
UNKNOWN: KafkaConfig.Consumer._AutoOffSetType.ValueType # 0
|
507
|
+
EARLIEST: KafkaConfig.Consumer._AutoOffSetType.ValueType # 1
|
508
|
+
LATEST: KafkaConfig.Consumer._AutoOffSetType.ValueType # 2
|
509
|
+
|
510
|
+
class AutoOffSetType(_AutoOffSetType, metaclass=_AutoOffSetTypeEnumTypeWrapper): ...
|
511
|
+
UNKNOWN: KafkaConfig.Consumer.AutoOffSetType.ValueType # 0
|
512
|
+
EARLIEST: KafkaConfig.Consumer.AutoOffSetType.ValueType # 1
|
513
|
+
LATEST: KafkaConfig.Consumer.AutoOffSetType.ValueType # 2
|
514
|
+
|
515
|
+
BOOTSTRAP_SERVER_FIELD_NUMBER: builtins.int
|
516
|
+
TOPIC_FIELD_NUMBER: builtins.int
|
517
|
+
GROUP_FIELD_NUMBER: builtins.int
|
518
|
+
TIMEOUT_FIELD_NUMBER: builtins.int
|
519
|
+
AUTO_OFFSET_TYPE_FIELD_NUMBER: builtins.int
|
520
|
+
MAX_BATCH_SIZE_FIELD_NUMBER: builtins.int
|
521
|
+
MAX_POLL_LATENCY_FIELD_NUMBER: builtins.int
|
522
|
+
@property
|
523
|
+
def bootstrap_server(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.str]: ...
|
524
|
+
topic: builtins.str
|
525
|
+
group: builtins.str
|
526
|
+
timeout: builtins.int
|
527
|
+
auto_offset_type: global___KafkaConfig.Consumer.AutoOffSetType.ValueType
|
528
|
+
max_batch_size: builtins.int
|
529
|
+
max_poll_latency: builtins.float
|
530
|
+
def __init__(
|
531
|
+
self,
|
532
|
+
*,
|
533
|
+
bootstrap_server: collections.abc.Iterable[builtins.str] | None = ...,
|
534
|
+
topic: builtins.str = ...,
|
535
|
+
group: builtins.str = ...,
|
536
|
+
timeout: builtins.int = ...,
|
537
|
+
auto_offset_type: global___KafkaConfig.Consumer.AutoOffSetType.ValueType = ...,
|
538
|
+
max_batch_size: builtins.int = ...,
|
539
|
+
max_poll_latency: builtins.float = ...,
|
540
|
+
) -> None: ...
|
541
|
+
def ClearField(self, field_name: typing_extensions.Literal["auto_offset_type", b"auto_offset_type", "bootstrap_server", b"bootstrap_server", "group", b"group", "max_batch_size", b"max_batch_size", "max_poll_latency", b"max_poll_latency", "timeout", b"timeout", "topic", b"topic"]) -> None: ...
|
542
|
+
|
543
|
+
class Producer(google.protobuf.message.Message):
|
544
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
545
|
+
|
546
|
+
class _CompressionType:
|
547
|
+
ValueType = typing.NewType("ValueType", builtins.int)
|
548
|
+
V: typing_extensions.TypeAlias = ValueType
|
549
|
+
|
550
|
+
class _CompressionTypeEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[KafkaConfig.Producer._CompressionType.ValueType], builtins.type): # noqa: F821
|
551
|
+
DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
|
552
|
+
UNKNOWN: KafkaConfig.Producer._CompressionType.ValueType # 0
|
553
|
+
UNCOMPRESSED: KafkaConfig.Producer._CompressionType.ValueType # 1
|
554
|
+
GZIP: KafkaConfig.Producer._CompressionType.ValueType # 2
|
555
|
+
SNAPPY: KafkaConfig.Producer._CompressionType.ValueType # 3
|
556
|
+
LZ4: KafkaConfig.Producer._CompressionType.ValueType # 4
|
557
|
+
ZSTD: KafkaConfig.Producer._CompressionType.ValueType # 5
|
558
|
+
|
559
|
+
class CompressionType(_CompressionType, metaclass=_CompressionTypeEnumTypeWrapper): ...
|
560
|
+
UNKNOWN: KafkaConfig.Producer.CompressionType.ValueType # 0
|
561
|
+
UNCOMPRESSED: KafkaConfig.Producer.CompressionType.ValueType # 1
|
562
|
+
GZIP: KafkaConfig.Producer.CompressionType.ValueType # 2
|
563
|
+
SNAPPY: KafkaConfig.Producer.CompressionType.ValueType # 3
|
564
|
+
LZ4: KafkaConfig.Producer.CompressionType.ValueType # 4
|
565
|
+
ZSTD: KafkaConfig.Producer.CompressionType.ValueType # 5
|
566
|
+
|
567
|
+
BOOTSTRAP_SERVER_FIELD_NUMBER: builtins.int
|
568
|
+
TOPIC_FIELD_NUMBER: builtins.int
|
569
|
+
COMPRESSION_TYPE_FIELD_NUMBER: builtins.int
|
570
|
+
@property
|
571
|
+
def bootstrap_server(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.str]: ...
|
572
|
+
topic: builtins.str
|
573
|
+
compression_type: global___KafkaConfig.Producer.CompressionType.ValueType
|
574
|
+
def __init__(
|
575
|
+
self,
|
576
|
+
*,
|
577
|
+
bootstrap_server: collections.abc.Iterable[builtins.str] | None = ...,
|
578
|
+
topic: builtins.str = ...,
|
579
|
+
compression_type: global___KafkaConfig.Producer.CompressionType.ValueType = ...,
|
580
|
+
) -> None: ...
|
581
|
+
def ClearField(self, field_name: typing_extensions.Literal["bootstrap_server", b"bootstrap_server", "compression_type", b"compression_type", "topic", b"topic"]) -> None: ...
|
582
|
+
|
583
|
+
CONSUMER_FIELD_NUMBER: builtins.int
|
584
|
+
PRODUCER_FIELD_NUMBER: builtins.int
|
585
|
+
WORKERS_FIELD_NUMBER: builtins.int
|
586
|
+
@property
|
587
|
+
def consumer(self) -> global___KafkaConfig.Consumer: ...
|
588
|
+
@property
|
589
|
+
def producer(self) -> global___KafkaConfig.Producer: ...
|
590
|
+
workers: builtins.int
|
591
|
+
def __init__(
|
592
|
+
self,
|
593
|
+
*,
|
594
|
+
consumer: global___KafkaConfig.Consumer | None = ...,
|
595
|
+
producer: global___KafkaConfig.Producer | None = ...,
|
596
|
+
workers: builtins.int = ...,
|
597
|
+
) -> None: ...
|
598
|
+
def HasField(self, field_name: typing_extensions.Literal["consumer", b"consumer", "producer", b"producer"]) -> builtins.bool: ...
|
599
|
+
def ClearField(self, field_name: typing_extensions.Literal["consumer", b"consumer", "producer", b"producer", "workers", b"workers"]) -> None: ...
|
600
|
+
|
601
|
+
global___KafkaConfig = KafkaConfig
|
602
|
+
|
603
|
+
class SageMaker(google.protobuf.message.Message):
|
604
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
605
|
+
|
606
|
+
INSTANCE_COUNT_FIELD_NUMBER: builtins.int
|
607
|
+
INSTANCE_TYPE_FIELD_NUMBER: builtins.int
|
608
|
+
instance_count: builtins.int
|
609
|
+
"""Count of instances to deploy."""
|
610
|
+
instance_type: builtins.str
|
611
|
+
"""Machine type which the model will be hosted on, supported by AWS Sagemaker
|
612
|
+
More information can be found here - https://aws.amazon.com/sagemaker/pricing/
|
613
|
+
"""
|
614
|
+
def __init__(
|
615
|
+
self,
|
616
|
+
*,
|
617
|
+
instance_count: builtins.int = ...,
|
618
|
+
instance_type: builtins.str = ...,
|
619
|
+
) -> None: ...
|
620
|
+
def ClearField(self, field_name: typing_extensions.Literal["instance_count", b"instance_count", "instance_type", b"instance_type"]) -> None: ...
|
621
|
+
|
622
|
+
global___SageMaker = SageMaker
|
623
|
+
|
624
|
+
class DeploymentSize(google.protobuf.message.Message):
|
625
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
626
|
+
|
627
|
+
NUMBER_OF_PODS_FIELD_NUMBER: builtins.int
|
628
|
+
CPU_FIELD_NUMBER: builtins.int
|
629
|
+
MEMORY_AMOUNT_FIELD_NUMBER: builtins.int
|
630
|
+
MEMORY_UNITS_FIELD_NUMBER: builtins.int
|
631
|
+
GPU_RESOURCES_FIELD_NUMBER: builtins.int
|
632
|
+
CLIENT_POD_COMPUTE_RESOURCES_FIELD_NUMBER: builtins.int
|
633
|
+
number_of_pods: builtins.int
|
634
|
+
"""Count of pods to deploy."""
|
635
|
+
cpu: builtins.float
|
636
|
+
"""Amount of CPU cores"""
|
637
|
+
memory_amount: builtins.int
|
638
|
+
"""Amount of memory"""
|
639
|
+
memory_units: global___MemoryUnit.ValueType
|
640
|
+
"""Units type of memory"""
|
641
|
+
@property
|
642
|
+
def gpu_resources(self) -> frogml_proto.qwak.user_application.common.v0.resources_pb2.GpuResources:
|
643
|
+
"""GPU Resource for deployed model"""
|
644
|
+
@property
|
645
|
+
def client_pod_compute_resources(self) -> frogml_proto.qwak.user_application.common.v0.resources_pb2.ClientPodComputeResources:
|
646
|
+
"""Deployment pod compute resources"""
|
647
|
+
def __init__(
|
648
|
+
self,
|
649
|
+
*,
|
650
|
+
number_of_pods: builtins.int = ...,
|
651
|
+
cpu: builtins.float = ...,
|
652
|
+
memory_amount: builtins.int = ...,
|
653
|
+
memory_units: global___MemoryUnit.ValueType = ...,
|
654
|
+
gpu_resources: frogml_proto.qwak.user_application.common.v0.resources_pb2.GpuResources | None = ...,
|
655
|
+
client_pod_compute_resources: frogml_proto.qwak.user_application.common.v0.resources_pb2.ClientPodComputeResources | None = ...,
|
656
|
+
) -> None: ...
|
657
|
+
def HasField(self, field_name: typing_extensions.Literal["client_pod_compute_resources", b"client_pod_compute_resources", "gpu_resources", b"gpu_resources"]) -> builtins.bool: ...
|
658
|
+
def ClearField(self, field_name: typing_extensions.Literal["client_pod_compute_resources", b"client_pod_compute_resources", "cpu", b"cpu", "gpu_resources", b"gpu_resources", "memory_amount", b"memory_amount", "memory_units", b"memory_units", "number_of_pods", b"number_of_pods"]) -> None: ...
|
659
|
+
|
660
|
+
global___DeploymentSize = DeploymentSize
|
661
|
+
|
662
|
+
class GpuResources(google.protobuf.message.Message):
|
663
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
664
|
+
|
665
|
+
GPU_TYPE_FIELD_NUMBER: builtins.int
|
666
|
+
GPU_AMOUNT_FIELD_NUMBER: builtins.int
|
667
|
+
gpu_type: global___GpuType.ValueType
|
668
|
+
"""The type of the GPU"""
|
669
|
+
gpu_amount: builtins.int
|
670
|
+
"""Amount of GPUs"""
|
671
|
+
def __init__(
|
672
|
+
self,
|
673
|
+
*,
|
674
|
+
gpu_type: global___GpuType.ValueType = ...,
|
675
|
+
gpu_amount: builtins.int = ...,
|
676
|
+
) -> None: ...
|
677
|
+
def ClearField(self, field_name: typing_extensions.Literal["gpu_amount", b"gpu_amount", "gpu_type", b"gpu_type"]) -> None: ...
|
678
|
+
|
679
|
+
global___GpuResources = GpuResources
|
680
|
+
|
681
|
+
class AdvancedDeploymentOptions(google.protobuf.message.Message):
|
682
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
683
|
+
|
684
|
+
NUMBER_OF_HTTP_SERVER_WORKERS_FIELD_NUMBER: builtins.int
|
685
|
+
HTTP_REQUEST_TIMEOUT_MS_FIELD_NUMBER: builtins.int
|
686
|
+
DAEMON_MODE_FIELD_NUMBER: builtins.int
|
687
|
+
CUSTOM_IAM_ROLE_ARN_FIELD_NUMBER: builtins.int
|
688
|
+
MAX_BATCH_SIZE_FIELD_NUMBER: builtins.int
|
689
|
+
DEPLOYMENT_PROCESS_TIMEOUT_LIMIT_FIELD_NUMBER: builtins.int
|
690
|
+
PURCHASE_OPTION_FIELD_NUMBER: builtins.int
|
691
|
+
SERVICE_ACCOUNT_KEY_SECRET_NAME_FIELD_NUMBER: builtins.int
|
692
|
+
number_of_http_server_workers: builtins.int
|
693
|
+
"""Amount of http server workers"""
|
694
|
+
http_request_timeout_ms: builtins.int
|
695
|
+
"""Http request timeout in ms"""
|
696
|
+
@property
|
697
|
+
def daemon_mode(self) -> google.protobuf.wrappers_pb2.BoolValue:
|
698
|
+
"""Serve model container in daemon mode"""
|
699
|
+
custom_iam_role_arn: builtins.str
|
700
|
+
"""Custom IAM Role ARN"""
|
701
|
+
max_batch_size: builtins.int
|
702
|
+
"""Max batch size of records"""
|
703
|
+
deployment_process_timeout_limit: builtins.int
|
704
|
+
"""The timeout for the deployment (in seconds)"""
|
705
|
+
purchase_option: builtins.str
|
706
|
+
"""Whether it is spot/ondemand (default - spot)"""
|
707
|
+
service_account_key_secret_name: builtins.str
|
708
|
+
"""Service account key secret name for gcp"""
|
709
|
+
def __init__(
|
710
|
+
self,
|
711
|
+
*,
|
712
|
+
number_of_http_server_workers: builtins.int = ...,
|
713
|
+
http_request_timeout_ms: builtins.int = ...,
|
714
|
+
daemon_mode: google.protobuf.wrappers_pb2.BoolValue | None = ...,
|
715
|
+
custom_iam_role_arn: builtins.str = ...,
|
716
|
+
max_batch_size: builtins.int = ...,
|
717
|
+
deployment_process_timeout_limit: builtins.int = ...,
|
718
|
+
purchase_option: builtins.str = ...,
|
719
|
+
service_account_key_secret_name: builtins.str = ...,
|
720
|
+
) -> None: ...
|
721
|
+
def HasField(self, field_name: typing_extensions.Literal["daemon_mode", b"daemon_mode"]) -> builtins.bool: ...
|
722
|
+
def ClearField(self, field_name: typing_extensions.Literal["custom_iam_role_arn", b"custom_iam_role_arn", "daemon_mode", b"daemon_mode", "deployment_process_timeout_limit", b"deployment_process_timeout_limit", "http_request_timeout_ms", b"http_request_timeout_ms", "max_batch_size", b"max_batch_size", "number_of_http_server_workers", b"number_of_http_server_workers", "purchase_option", b"purchase_option", "service_account_key_secret_name", b"service_account_key_secret_name"]) -> None: ...
|
723
|
+
|
724
|
+
global___AdvancedDeploymentOptions = AdvancedDeploymentOptions
|
725
|
+
|
726
|
+
class DeploymentDetails(google.protobuf.message.Message):
|
727
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
728
|
+
|
729
|
+
class EnvironmentVariablesEntry(google.protobuf.message.Message):
|
730
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
731
|
+
|
732
|
+
KEY_FIELD_NUMBER: builtins.int
|
733
|
+
VALUE_FIELD_NUMBER: builtins.int
|
734
|
+
key: builtins.str
|
735
|
+
value: builtins.str
|
736
|
+
def __init__(
|
737
|
+
self,
|
738
|
+
*,
|
739
|
+
key: builtins.str = ...,
|
740
|
+
value: builtins.str = ...,
|
741
|
+
) -> None: ...
|
742
|
+
def ClearField(self, field_name: typing_extensions.Literal["key", b"key", "value", b"value"]) -> None: ...
|
743
|
+
|
744
|
+
LAST_DEPLOYED_FIELD_NUMBER: builtins.int
|
745
|
+
BUILD_ID_FIELD_NUMBER: builtins.int
|
746
|
+
QWAK_MODEL_REGISTRY_IDENTIFIER_FIELD_NUMBER: builtins.int
|
747
|
+
NUMBER_OF_PODS_FIELD_NUMBER: builtins.int
|
748
|
+
CPU_FRACTION_FIELD_NUMBER: builtins.int
|
749
|
+
MEMORY_AMOUNT_FIELD_NUMBER: builtins.int
|
750
|
+
MEMORY_UNITS_FIELD_NUMBER: builtins.int
|
751
|
+
NUMBER_OF_WORKERS_FIELD_NUMBER: builtins.int
|
752
|
+
HTTP_REQUEST_TIMEOUT_MS_FIELD_NUMBER: builtins.int
|
753
|
+
KUBE_DEPLOYMENT_TYPE_FIELD_NUMBER: builtins.int
|
754
|
+
SERVING_STRATEGY_FIELD_NUMBER: builtins.int
|
755
|
+
VARIATION_FIELD_NUMBER: builtins.int
|
756
|
+
CUSTOM_IAM_ROLE_ARN_FIELD_NUMBER: builtins.int
|
757
|
+
MAX_BATCH_SIZE_FIELD_NUMBER: builtins.int
|
758
|
+
GPU_TYPE_FIELD_NUMBER: builtins.int
|
759
|
+
GPU_AMOUNT_FIELD_NUMBER: builtins.int
|
760
|
+
ENVIRONMENT_ID_FIELD_NUMBER: builtins.int
|
761
|
+
AVAILABLE_REPLICAS_FIELD_NUMBER: builtins.int
|
762
|
+
DAEMON_MODE_FIELD_NUMBER: builtins.int
|
763
|
+
DEPLOYMENT_PROCESS_TIMEOUT_LIMIT_FIELD_NUMBER: builtins.int
|
764
|
+
PURCHASE_OPTION_FIELD_NUMBER: builtins.int
|
765
|
+
ENVIRONMENT_VARIABLES_FIELD_NUMBER: builtins.int
|
766
|
+
UNDEPLOYMENT_TIME_FIELD_NUMBER: builtins.int
|
767
|
+
STATUS_FIELD_NUMBER: builtins.int
|
768
|
+
DEPLOYMENT_ID_FIELD_NUMBER: builtins.int
|
769
|
+
FAILURE_DETAILS_FIELD_NUMBER: builtins.int
|
770
|
+
SERVICE_ACCOUNT_KEY_SECRET_NAME_FIELD_NUMBER: builtins.int
|
771
|
+
@property
|
772
|
+
def last_deployed(self) -> google.protobuf.timestamp_pb2.Timestamp:
|
773
|
+
"""Deployed date"""
|
774
|
+
build_id: builtins.str
|
775
|
+
"""The build id that deployed"""
|
776
|
+
@property
|
777
|
+
def qwak_model_registry_identifier(self) -> global___QwakModeRegistryIdentifier: ...
|
778
|
+
number_of_pods: builtins.int
|
779
|
+
"""Number of pods to deploy"""
|
780
|
+
cpu_fraction: builtins.float
|
781
|
+
"""Cpu"""
|
782
|
+
memory_amount: builtins.int
|
783
|
+
"""Amount of memory"""
|
784
|
+
memory_units: global___MemoryUnit.ValueType
|
785
|
+
"""Units type of memory"""
|
786
|
+
number_of_workers: builtins.int
|
787
|
+
"""Number of workers"""
|
788
|
+
http_request_timeout_ms: builtins.int
|
789
|
+
"""Timeout for request timeout"""
|
790
|
+
kube_deployment_type: global___KubeDeploymentType.ValueType
|
791
|
+
"""Kube deployment type"""
|
792
|
+
@property
|
793
|
+
def serving_strategy(self) -> global___ServingStrategy:
|
794
|
+
"""Serving strategy"""
|
795
|
+
@property
|
796
|
+
def variation(self) -> global___Variation:
|
797
|
+
"""Variation details"""
|
798
|
+
custom_iam_role_arn: builtins.str
|
799
|
+
"""Custom IAM Role"""
|
800
|
+
max_batch_size: builtins.int
|
801
|
+
"""Max batch size"""
|
802
|
+
gpu_type: frogml_proto.qwak.user_application.common.v0.resources_pb2.GpuType.ValueType
|
803
|
+
"""The type of the GPU"""
|
804
|
+
gpu_amount: builtins.int
|
805
|
+
"""Amount of GPUs"""
|
806
|
+
environment_id: builtins.str
|
807
|
+
"""The environment the deployment is on"""
|
808
|
+
available_replicas: builtins.int
|
809
|
+
"""Amount of available replicas"""
|
810
|
+
@property
|
811
|
+
def daemon_mode(self) -> google.protobuf.wrappers_pb2.BoolValue:
|
812
|
+
"""Serve model container in daemon mode"""
|
813
|
+
deployment_process_timeout_limit: builtins.int
|
814
|
+
"""The timeout for the deployment (in seconds)"""
|
815
|
+
purchase_option: builtins.str
|
816
|
+
"""Whether it is spot/ondemand (default - spot)"""
|
817
|
+
@property
|
818
|
+
def environment_variables(self) -> google.protobuf.internal.containers.ScalarMap[builtins.str, builtins.str]:
|
819
|
+
"""Environment variables"""
|
820
|
+
@property
|
821
|
+
def undeployment_time(self) -> google.protobuf.timestamp_pb2.Timestamp:
|
822
|
+
"""Time that the deployment was changed."""
|
823
|
+
status: global___ModelDeploymentStatus.ValueType
|
824
|
+
"""The status of the deployment"""
|
825
|
+
deployment_id: builtins.str
|
826
|
+
"""Deployment id"""
|
827
|
+
@property
|
828
|
+
def failure_details(self) -> global___DeploymentFailureDetails: ...
|
829
|
+
service_account_key_secret_name: builtins.str
|
830
|
+
"""Service account key secret name for gcp"""
|
831
|
+
def __init__(
|
832
|
+
self,
|
833
|
+
*,
|
834
|
+
last_deployed: google.protobuf.timestamp_pb2.Timestamp | None = ...,
|
835
|
+
build_id: builtins.str = ...,
|
836
|
+
qwak_model_registry_identifier: global___QwakModeRegistryIdentifier | None = ...,
|
837
|
+
number_of_pods: builtins.int = ...,
|
838
|
+
cpu_fraction: builtins.float = ...,
|
839
|
+
memory_amount: builtins.int = ...,
|
840
|
+
memory_units: global___MemoryUnit.ValueType = ...,
|
841
|
+
number_of_workers: builtins.int = ...,
|
842
|
+
http_request_timeout_ms: builtins.int = ...,
|
843
|
+
kube_deployment_type: global___KubeDeploymentType.ValueType = ...,
|
844
|
+
serving_strategy: global___ServingStrategy | None = ...,
|
845
|
+
variation: global___Variation | None = ...,
|
846
|
+
custom_iam_role_arn: builtins.str = ...,
|
847
|
+
max_batch_size: builtins.int = ...,
|
848
|
+
gpu_type: frogml_proto.qwak.user_application.common.v0.resources_pb2.GpuType.ValueType = ...,
|
849
|
+
gpu_amount: builtins.int = ...,
|
850
|
+
environment_id: builtins.str = ...,
|
851
|
+
available_replicas: builtins.int = ...,
|
852
|
+
daemon_mode: google.protobuf.wrappers_pb2.BoolValue | None = ...,
|
853
|
+
deployment_process_timeout_limit: builtins.int = ...,
|
854
|
+
purchase_option: builtins.str = ...,
|
855
|
+
environment_variables: collections.abc.Mapping[builtins.str, builtins.str] | None = ...,
|
856
|
+
undeployment_time: google.protobuf.timestamp_pb2.Timestamp | None = ...,
|
857
|
+
status: global___ModelDeploymentStatus.ValueType = ...,
|
858
|
+
deployment_id: builtins.str = ...,
|
859
|
+
failure_details: global___DeploymentFailureDetails | None = ...,
|
860
|
+
service_account_key_secret_name: builtins.str = ...,
|
861
|
+
) -> None: ...
|
862
|
+
def HasField(self, field_name: typing_extensions.Literal["build_id", b"build_id", "daemon_mode", b"daemon_mode", "failure_details", b"failure_details", "image_identifier", b"image_identifier", "last_deployed", b"last_deployed", "qwak_model_registry_identifier", b"qwak_model_registry_identifier", "serving_strategy", b"serving_strategy", "undeployment_time", b"undeployment_time", "variation", b"variation"]) -> builtins.bool: ...
|
863
|
+
def ClearField(self, field_name: typing_extensions.Literal["available_replicas", b"available_replicas", "build_id", b"build_id", "cpu_fraction", b"cpu_fraction", "custom_iam_role_arn", b"custom_iam_role_arn", "daemon_mode", b"daemon_mode", "deployment_id", b"deployment_id", "deployment_process_timeout_limit", b"deployment_process_timeout_limit", "environment_id", b"environment_id", "environment_variables", b"environment_variables", "failure_details", b"failure_details", "gpu_amount", b"gpu_amount", "gpu_type", b"gpu_type", "http_request_timeout_ms", b"http_request_timeout_ms", "image_identifier", b"image_identifier", "kube_deployment_type", b"kube_deployment_type", "last_deployed", b"last_deployed", "max_batch_size", b"max_batch_size", "memory_amount", b"memory_amount", "memory_units", b"memory_units", "number_of_pods", b"number_of_pods", "number_of_workers", b"number_of_workers", "purchase_option", b"purchase_option", "qwak_model_registry_identifier", b"qwak_model_registry_identifier", "service_account_key_secret_name", b"service_account_key_secret_name", "serving_strategy", b"serving_strategy", "status", b"status", "undeployment_time", b"undeployment_time", "variation", b"variation"]) -> None: ...
|
864
|
+
def WhichOneof(self, oneof_group: typing_extensions.Literal["image_identifier", b"image_identifier"]) -> typing_extensions.Literal["build_id", "qwak_model_registry_identifier"] | None: ...
|
865
|
+
|
866
|
+
global___DeploymentDetails = DeploymentDetails
|
867
|
+
|
868
|
+
class DeploymentFailureDetails(google.protobuf.message.Message):
|
869
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
870
|
+
|
871
|
+
FAILURE_MESSAGE_FIELD_NUMBER: builtins.int
|
872
|
+
failure_message: builtins.str
|
873
|
+
"""User friendly message about the failure if deployment failed"""
|
874
|
+
def __init__(
|
875
|
+
self,
|
876
|
+
*,
|
877
|
+
failure_message: builtins.str = ...,
|
878
|
+
) -> None: ...
|
879
|
+
def ClearField(self, field_name: typing_extensions.Literal["failure_message", b"failure_message"]) -> None: ...
|
880
|
+
|
881
|
+
global___DeploymentFailureDetails = DeploymentFailureDetails
|
882
|
+
|
883
|
+
class RuntimeDeploymentSettings(google.protobuf.message.Message):
|
884
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
885
|
+
|
886
|
+
class _LogLevel:
|
887
|
+
ValueType = typing.NewType("ValueType", builtins.int)
|
888
|
+
V: typing_extensions.TypeAlias = ValueType
|
889
|
+
|
890
|
+
class _LogLevelEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[RuntimeDeploymentSettings._LogLevel.ValueType], builtins.type): # noqa: F821
|
891
|
+
DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
|
892
|
+
NOT_SET: RuntimeDeploymentSettings._LogLevel.ValueType # 0
|
893
|
+
ERROR: RuntimeDeploymentSettings._LogLevel.ValueType # 1
|
894
|
+
WARN: RuntimeDeploymentSettings._LogLevel.ValueType # 2
|
895
|
+
INFO: RuntimeDeploymentSettings._LogLevel.ValueType # 3
|
896
|
+
DEBUG: RuntimeDeploymentSettings._LogLevel.ValueType # 4
|
897
|
+
|
898
|
+
class LogLevel(_LogLevel, metaclass=_LogLevelEnumTypeWrapper): ...
|
899
|
+
NOT_SET: RuntimeDeploymentSettings.LogLevel.ValueType # 0
|
900
|
+
ERROR: RuntimeDeploymentSettings.LogLevel.ValueType # 1
|
901
|
+
WARN: RuntimeDeploymentSettings.LogLevel.ValueType # 2
|
902
|
+
INFO: RuntimeDeploymentSettings.LogLevel.ValueType # 3
|
903
|
+
DEBUG: RuntimeDeploymentSettings.LogLevel.ValueType # 4
|
904
|
+
|
905
|
+
ROOT_LOGGER_LEVEL_FIELD_NUMBER: builtins.int
|
906
|
+
root_logger_level: global___RuntimeDeploymentSettings.LogLevel.ValueType
|
907
|
+
"""Set a log level"""
|
908
|
+
def __init__(
|
909
|
+
self,
|
910
|
+
*,
|
911
|
+
root_logger_level: global___RuntimeDeploymentSettings.LogLevel.ValueType = ...,
|
912
|
+
) -> None: ...
|
913
|
+
def ClearField(self, field_name: typing_extensions.Literal["root_logger_level", b"root_logger_level"]) -> None: ...
|
914
|
+
|
915
|
+
global___RuntimeDeploymentSettings = RuntimeDeploymentSettings
|
916
|
+
|
917
|
+
class DeploymentBrief(google.protobuf.message.Message):
|
918
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
919
|
+
|
920
|
+
BUILD_ID_FIELD_NUMBER: builtins.int
|
921
|
+
QWAK_MODEL_REGISTRY_IDENTIFIER_FIELD_NUMBER: builtins.int
|
922
|
+
STATUS_FIELD_NUMBER: builtins.int
|
923
|
+
DEPLOYED_BY_FIELD_NUMBER: builtins.int
|
924
|
+
FAILURE_REASON_CODE_FIELD_NUMBER: builtins.int
|
925
|
+
FAILURE_MESSAGE_FIELD_NUMBER: builtins.int
|
926
|
+
TECHNICAL_DETAILS_FIELD_NUMBER: builtins.int
|
927
|
+
DEPLOYMENT_TIMESTAMP_FIELD_NUMBER: builtins.int
|
928
|
+
ENVIRONMENT_ID_FIELD_NUMBER: builtins.int
|
929
|
+
VARIATION_NAME_FIELD_NUMBER: builtins.int
|
930
|
+
VARIATION_PROTECT_STATE_FIELD_NUMBER: builtins.int
|
931
|
+
DEPLOYMENT_ID_FIELD_NUMBER: builtins.int
|
932
|
+
build_id: builtins.str
|
933
|
+
"""the deployed build id"""
|
934
|
+
@property
|
935
|
+
def qwak_model_registry_identifier(self) -> global___QwakModeRegistryIdentifier: ...
|
936
|
+
status: global___ModelDeploymentStatus.ValueType
|
937
|
+
"""The Deployment status - SUCCESSFUL_DEPLOYMENT or FAILED_DEPLOYMENT"""
|
938
|
+
deployed_by: builtins.str
|
939
|
+
"""The user id that did the deployment"""
|
940
|
+
failure_reason_code: builtins.str
|
941
|
+
"""The failure reason code if deployment failed"""
|
942
|
+
failure_message: builtins.str
|
943
|
+
"""User friendly message about the failure if deployment failed"""
|
944
|
+
technical_details: builtins.str
|
945
|
+
"""Technical Details about the failure details."""
|
946
|
+
@property
|
947
|
+
def deployment_timestamp(self) -> google.protobuf.timestamp_pb2.Timestamp:
|
948
|
+
"""The deployment date"""
|
949
|
+
environment_id: builtins.str
|
950
|
+
"""The deployment environment id"""
|
951
|
+
variation_name: builtins.str
|
952
|
+
"""Variation Name"""
|
953
|
+
variation_protect_state: builtins.bool
|
954
|
+
"""If this Variation is protected"""
|
955
|
+
deployment_id: builtins.str
|
956
|
+
def __init__(
|
957
|
+
self,
|
958
|
+
*,
|
959
|
+
build_id: builtins.str = ...,
|
960
|
+
qwak_model_registry_identifier: global___QwakModeRegistryIdentifier | None = ...,
|
961
|
+
status: global___ModelDeploymentStatus.ValueType = ...,
|
962
|
+
deployed_by: builtins.str = ...,
|
963
|
+
failure_reason_code: builtins.str = ...,
|
964
|
+
failure_message: builtins.str = ...,
|
965
|
+
technical_details: builtins.str = ...,
|
966
|
+
deployment_timestamp: google.protobuf.timestamp_pb2.Timestamp | None = ...,
|
967
|
+
environment_id: builtins.str = ...,
|
968
|
+
variation_name: builtins.str = ...,
|
969
|
+
variation_protect_state: builtins.bool = ...,
|
970
|
+
deployment_id: builtins.str = ...,
|
971
|
+
) -> None: ...
|
972
|
+
def HasField(self, field_name: typing_extensions.Literal["build_id", b"build_id", "deployment_timestamp", b"deployment_timestamp", "image_identifier", b"image_identifier", "qwak_model_registry_identifier", b"qwak_model_registry_identifier"]) -> builtins.bool: ...
|
973
|
+
def ClearField(self, field_name: typing_extensions.Literal["build_id", b"build_id", "deployed_by", b"deployed_by", "deployment_id", b"deployment_id", "deployment_timestamp", b"deployment_timestamp", "environment_id", b"environment_id", "failure_message", b"failure_message", "failure_reason_code", b"failure_reason_code", "image_identifier", b"image_identifier", "qwak_model_registry_identifier", b"qwak_model_registry_identifier", "status", b"status", "technical_details", b"technical_details", "variation_name", b"variation_name", "variation_protect_state", b"variation_protect_state"]) -> None: ...
|
974
|
+
def WhichOneof(self, oneof_group: typing_extensions.Literal["image_identifier", b"image_identifier"]) -> typing_extensions.Literal["build_id", "qwak_model_registry_identifier"] | None: ...
|
975
|
+
|
976
|
+
global___DeploymentBrief = DeploymentBrief
|
977
|
+
|
978
|
+
class KubernetesModelDeploymentState(google.protobuf.message.Message):
|
979
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
980
|
+
|
981
|
+
MODEL_ID_FIELD_NUMBER: builtins.int
|
982
|
+
BRANCH_ID_FIELD_NUMBER: builtins.int
|
983
|
+
STATUS_FIELD_NUMBER: builtins.int
|
984
|
+
STATUS_DETAILS_FIELD_NUMBER: builtins.int
|
985
|
+
VARIATION_NAME_FIELD_NUMBER: builtins.int
|
986
|
+
DEPLOYMENT_ID_FIELD_NUMBER: builtins.int
|
987
|
+
MODEL_UUID_FIELD_NUMBER: builtins.int
|
988
|
+
MANAGED_BY_FIELD_NUMBER: builtins.int
|
989
|
+
model_id: builtins.str
|
990
|
+
"""The ID of the model to deploy"""
|
991
|
+
branch_id: builtins.str
|
992
|
+
"""Branch ID to deploy the model under"""
|
993
|
+
status: global___ModelDeploymentStatus.ValueType
|
994
|
+
"""The Model status"""
|
995
|
+
@property
|
996
|
+
def status_details(self) -> global___StatusDetails:
|
997
|
+
"""Status details of the Kubernetes current state"""
|
998
|
+
variation_name: builtins.str
|
999
|
+
deployment_id: builtins.str
|
1000
|
+
model_uuid: builtins.str
|
1001
|
+
managed_by: global___DeploymentManagedBy.ValueType
|
1002
|
+
def __init__(
|
1003
|
+
self,
|
1004
|
+
*,
|
1005
|
+
model_id: builtins.str = ...,
|
1006
|
+
branch_id: builtins.str = ...,
|
1007
|
+
status: global___ModelDeploymentStatus.ValueType = ...,
|
1008
|
+
status_details: global___StatusDetails | None = ...,
|
1009
|
+
variation_name: builtins.str = ...,
|
1010
|
+
deployment_id: builtins.str = ...,
|
1011
|
+
model_uuid: builtins.str = ...,
|
1012
|
+
managed_by: global___DeploymentManagedBy.ValueType = ...,
|
1013
|
+
) -> None: ...
|
1014
|
+
def HasField(self, field_name: typing_extensions.Literal["status_details", b"status_details"]) -> builtins.bool: ...
|
1015
|
+
def ClearField(self, field_name: typing_extensions.Literal["branch_id", b"branch_id", "deployment_id", b"deployment_id", "managed_by", b"managed_by", "model_id", b"model_id", "model_uuid", b"model_uuid", "status", b"status", "status_details", b"status_details", "variation_name", b"variation_name"]) -> None: ...
|
1016
|
+
|
1017
|
+
global___KubernetesModelDeploymentState = KubernetesModelDeploymentState
|
1018
|
+
|
1019
|
+
class StatusDetails(google.protobuf.message.Message):
|
1020
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
1021
|
+
|
1022
|
+
PENDING_STATUS_DETAILS_FIELD_NUMBER: builtins.int
|
1023
|
+
SUCCESS_STATUS_DETAILS_FIELD_NUMBER: builtins.int
|
1024
|
+
FAILED_STATUS_DETAILS_FIELD_NUMBER: builtins.int
|
1025
|
+
@property
|
1026
|
+
def pending_status_details(self) -> global___PendingStatusDetails:
|
1027
|
+
"""Detailed information about the Kubernetes pending status"""
|
1028
|
+
@property
|
1029
|
+
def success_status_details(self) -> global___SuccessfulStatusDetails:
|
1030
|
+
"""Detailed information about the Kubernetes successful status"""
|
1031
|
+
@property
|
1032
|
+
def failed_status_details(self) -> global___FailedStatusDetails:
|
1033
|
+
"""Detailed information about the Kubernetes failed status"""
|
1034
|
+
def __init__(
|
1035
|
+
self,
|
1036
|
+
*,
|
1037
|
+
pending_status_details: global___PendingStatusDetails | None = ...,
|
1038
|
+
success_status_details: global___SuccessfulStatusDetails | None = ...,
|
1039
|
+
failed_status_details: global___FailedStatusDetails | None = ...,
|
1040
|
+
) -> None: ...
|
1041
|
+
def HasField(self, field_name: typing_extensions.Literal["failed_status_details", b"failed_status_details", "pending_status_details", b"pending_status_details", "status_details", b"status_details", "success_status_details", b"success_status_details"]) -> builtins.bool: ...
|
1042
|
+
def ClearField(self, field_name: typing_extensions.Literal["failed_status_details", b"failed_status_details", "pending_status_details", b"pending_status_details", "status_details", b"status_details", "success_status_details", b"success_status_details"]) -> None: ...
|
1043
|
+
def WhichOneof(self, oneof_group: typing_extensions.Literal["status_details", b"status_details"]) -> typing_extensions.Literal["pending_status_details", "success_status_details", "failed_status_details"] | None: ...
|
1044
|
+
|
1045
|
+
global___StatusDetails = StatusDetails
|
1046
|
+
|
1047
|
+
class PendingStatusDetails(google.protobuf.message.Message):
|
1048
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
1049
|
+
|
1050
|
+
OLD_INSTANCE_FIELD_NUMBER: builtins.int
|
1051
|
+
NEW_INSTANCE_FIELD_NUMBER: builtins.int
|
1052
|
+
@property
|
1053
|
+
def old_instance(self) -> global___InstanceDetails:
|
1054
|
+
"""Detailed information about the Kubernetes old instance"""
|
1055
|
+
@property
|
1056
|
+
def new_instance(self) -> global___InstanceDetails:
|
1057
|
+
"""Detailed information about the Kubernetes new instance"""
|
1058
|
+
def __init__(
|
1059
|
+
self,
|
1060
|
+
*,
|
1061
|
+
old_instance: global___InstanceDetails | None = ...,
|
1062
|
+
new_instance: global___InstanceDetails | None = ...,
|
1063
|
+
) -> None: ...
|
1064
|
+
def HasField(self, field_name: typing_extensions.Literal["new_instance", b"new_instance", "old_instance", b"old_instance"]) -> builtins.bool: ...
|
1065
|
+
def ClearField(self, field_name: typing_extensions.Literal["new_instance", b"new_instance", "old_instance", b"old_instance"]) -> None: ...
|
1066
|
+
|
1067
|
+
global___PendingStatusDetails = PendingStatusDetails
|
1068
|
+
|
1069
|
+
class SuccessfulStatusDetails(google.protobuf.message.Message):
|
1070
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
1071
|
+
|
1072
|
+
RUNNING_INSTANCE_FIELD_NUMBER: builtins.int
|
1073
|
+
@property
|
1074
|
+
def running_instance(self) -> global___InstanceDetails:
|
1075
|
+
"""Detailed information about the Kubernetes running instance"""
|
1076
|
+
def __init__(
|
1077
|
+
self,
|
1078
|
+
*,
|
1079
|
+
running_instance: global___InstanceDetails | None = ...,
|
1080
|
+
) -> None: ...
|
1081
|
+
def HasField(self, field_name: typing_extensions.Literal["running_instance", b"running_instance"]) -> builtins.bool: ...
|
1082
|
+
def ClearField(self, field_name: typing_extensions.Literal["running_instance", b"running_instance"]) -> None: ...
|
1083
|
+
|
1084
|
+
global___SuccessfulStatusDetails = SuccessfulStatusDetails
|
1085
|
+
|
1086
|
+
class FailedStatusDetails(google.protobuf.message.Message):
|
1087
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
1088
|
+
|
1089
|
+
FAILURE_DETAILS_FIELD_NUMBER: builtins.int
|
1090
|
+
OLD_INSTANCE_FIELD_NUMBER: builtins.int
|
1091
|
+
FAILED_INSTANCE_FIELD_NUMBER: builtins.int
|
1092
|
+
@property
|
1093
|
+
def failure_details(self) -> global___FailureDetails:
|
1094
|
+
"""Detailed information about the Kubernetes failure status"""
|
1095
|
+
@property
|
1096
|
+
def old_instance(self) -> global___InstanceDetails:
|
1097
|
+
"""Detailed information about the Kubernetes old instance"""
|
1098
|
+
@property
|
1099
|
+
def failed_instance(self) -> global___InstanceDetails:
|
1100
|
+
"""Detailed information about the Kubernetes failed instance"""
|
1101
|
+
def __init__(
|
1102
|
+
self,
|
1103
|
+
*,
|
1104
|
+
failure_details: global___FailureDetails | None = ...,
|
1105
|
+
old_instance: global___InstanceDetails | None = ...,
|
1106
|
+
failed_instance: global___InstanceDetails | None = ...,
|
1107
|
+
) -> None: ...
|
1108
|
+
def HasField(self, field_name: typing_extensions.Literal["failed_instance", b"failed_instance", "failure_details", b"failure_details", "old_instance", b"old_instance"]) -> builtins.bool: ...
|
1109
|
+
def ClearField(self, field_name: typing_extensions.Literal["failed_instance", b"failed_instance", "failure_details", b"failure_details", "old_instance", b"old_instance"]) -> None: ...
|
1110
|
+
|
1111
|
+
global___FailedStatusDetails = FailedStatusDetails
|
1112
|
+
|
1113
|
+
class FailureDetails(google.protobuf.message.Message):
|
1114
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
1115
|
+
|
1116
|
+
DEPLOYMENT_FAILURE_REASON_CODE_FIELD_NUMBER: builtins.int
|
1117
|
+
FAILURE_REASON_DETAILS_FIELD_NUMBER: builtins.int
|
1118
|
+
deployment_failure_reason_code: global___DeploymentFailureReasonCode.ValueType
|
1119
|
+
"""The failure reason - Machine-readable"""
|
1120
|
+
failure_reason_details: builtins.str
|
1121
|
+
"""The message describing the reason"""
|
1122
|
+
def __init__(
|
1123
|
+
self,
|
1124
|
+
*,
|
1125
|
+
deployment_failure_reason_code: global___DeploymentFailureReasonCode.ValueType = ...,
|
1126
|
+
failure_reason_details: builtins.str = ...,
|
1127
|
+
) -> None: ...
|
1128
|
+
def ClearField(self, field_name: typing_extensions.Literal["deployment_failure_reason_code", b"deployment_failure_reason_code", "failure_reason_details", b"failure_reason_details"]) -> None: ...
|
1129
|
+
|
1130
|
+
global___FailureDetails = FailureDetails
|
1131
|
+
|
1132
|
+
class InstanceDetails(google.protobuf.message.Message):
|
1133
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
1134
|
+
|
1135
|
+
DEPLOYMENT_ID_FIELD_NUMBER: builtins.int
|
1136
|
+
BUILD_ID_FIELD_NUMBER: builtins.int
|
1137
|
+
AVAILABLE_REPLICAS_FIELD_NUMBER: builtins.int
|
1138
|
+
PODS_FIELD_NUMBER: builtins.int
|
1139
|
+
deployment_id: builtins.str
|
1140
|
+
"""The deployment ID"""
|
1141
|
+
build_id: builtins.str
|
1142
|
+
"""Build ID to deploy"""
|
1143
|
+
available_replicas: builtins.int
|
1144
|
+
"""Available replicas"""
|
1145
|
+
@property
|
1146
|
+
def pods(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[global___ModelPodPhase.ValueType]:
|
1147
|
+
"""The available pods"""
|
1148
|
+
def __init__(
|
1149
|
+
self,
|
1150
|
+
*,
|
1151
|
+
deployment_id: builtins.str = ...,
|
1152
|
+
build_id: builtins.str = ...,
|
1153
|
+
available_replicas: builtins.int = ...,
|
1154
|
+
pods: collections.abc.Iterable[global___ModelPodPhase.ValueType] | None = ...,
|
1155
|
+
) -> None: ...
|
1156
|
+
def ClearField(self, field_name: typing_extensions.Literal["available_replicas", b"available_replicas", "build_id", b"build_id", "deployment_id", b"deployment_id", "pods", b"pods"]) -> None: ...
|
1157
|
+
|
1158
|
+
global___InstanceDetails = InstanceDetails
|
1159
|
+
|
1160
|
+
class DeploymentPhasesDetails(google.protobuf.message.Message):
|
1161
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
1162
|
+
|
1163
|
+
DEPLOYMENT_PHASES_FIELD_NUMBER: builtins.int
|
1164
|
+
@property
|
1165
|
+
def deployment_phases(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___DeploymentPhase]: ...
|
1166
|
+
def __init__(
|
1167
|
+
self,
|
1168
|
+
*,
|
1169
|
+
deployment_phases: collections.abc.Iterable[global___DeploymentPhase] | None = ...,
|
1170
|
+
) -> None: ...
|
1171
|
+
def ClearField(self, field_name: typing_extensions.Literal["deployment_phases", b"deployment_phases"]) -> None: ...
|
1172
|
+
|
1173
|
+
global___DeploymentPhasesDetails = DeploymentPhasesDetails
|
1174
|
+
|
1175
|
+
class DeploymentPhase(google.protobuf.message.Message):
|
1176
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
1177
|
+
|
1178
|
+
DEPLOYMENT_PHASE_TYPE_FIELD_NUMBER: builtins.int
|
1179
|
+
DEPLOYMENT_PHASE_STATUS_FIELD_NUMBER: builtins.int
|
1180
|
+
PHASE_DURATION_IN_SECONDS_FIELD_NUMBER: builtins.int
|
1181
|
+
STARTED_AT_FIELD_NUMBER: builtins.int
|
1182
|
+
LAST_MODIFIED_AT_FIELD_NUMBER: builtins.int
|
1183
|
+
DISPLAY_MESSAGE_FIELD_NUMBER: builtins.int
|
1184
|
+
deployment_phase_type: global___DeploymentPhaseType.ValueType
|
1185
|
+
"""The deployment phase type"""
|
1186
|
+
deployment_phase_status: global___DeploymentPhaseStatus.ValueType
|
1187
|
+
"""The deployment phase status"""
|
1188
|
+
phase_duration_in_seconds: builtins.int
|
1189
|
+
"""The time the phase is running"""
|
1190
|
+
@property
|
1191
|
+
def started_at(self) -> google.protobuf.timestamp_pb2.Timestamp:
|
1192
|
+
"""The time the phase started at"""
|
1193
|
+
@property
|
1194
|
+
def last_modified_at(self) -> google.protobuf.timestamp_pb2.Timestamp:
|
1195
|
+
"""When The phase last modified at"""
|
1196
|
+
display_message: builtins.str
|
1197
|
+
"""The message to display about the phase."""
|
1198
|
+
def __init__(
|
1199
|
+
self,
|
1200
|
+
*,
|
1201
|
+
deployment_phase_type: global___DeploymentPhaseType.ValueType = ...,
|
1202
|
+
deployment_phase_status: global___DeploymentPhaseStatus.ValueType = ...,
|
1203
|
+
phase_duration_in_seconds: builtins.int = ...,
|
1204
|
+
started_at: google.protobuf.timestamp_pb2.Timestamp | None = ...,
|
1205
|
+
last_modified_at: google.protobuf.timestamp_pb2.Timestamp | None = ...,
|
1206
|
+
display_message: builtins.str = ...,
|
1207
|
+
) -> None: ...
|
1208
|
+
def HasField(self, field_name: typing_extensions.Literal["last_modified_at", b"last_modified_at", "started_at", b"started_at"]) -> builtins.bool: ...
|
1209
|
+
def ClearField(self, field_name: typing_extensions.Literal["deployment_phase_status", b"deployment_phase_status", "deployment_phase_type", b"deployment_phase_type", "display_message", b"display_message", "last_modified_at", b"last_modified_at", "phase_duration_in_seconds", b"phase_duration_in_seconds", "started_at", b"started_at"]) -> None: ...
|
1210
|
+
|
1211
|
+
global___DeploymentPhase = DeploymentPhase
|
1212
|
+
|
1213
|
+
class Variation(google.protobuf.message.Message):
|
1214
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
1215
|
+
|
1216
|
+
NAME_FIELD_NUMBER: builtins.int
|
1217
|
+
ENVIRONMENT_ID_FIELD_NUMBER: builtins.int
|
1218
|
+
TRAFFIC_FIELD_NUMBER: builtins.int
|
1219
|
+
PROTECTED_FIELD_NUMBER: builtins.int
|
1220
|
+
name: builtins.str
|
1221
|
+
"""The variation name"""
|
1222
|
+
environment_id: builtins.str
|
1223
|
+
"""The environment the variation is deployed on"""
|
1224
|
+
@property
|
1225
|
+
def traffic(self) -> global___TrafficSpec:
|
1226
|
+
"""Network traffic based spec"""
|
1227
|
+
protected: builtins.bool
|
1228
|
+
def __init__(
|
1229
|
+
self,
|
1230
|
+
*,
|
1231
|
+
name: builtins.str = ...,
|
1232
|
+
environment_id: builtins.str = ...,
|
1233
|
+
traffic: global___TrafficSpec | None = ...,
|
1234
|
+
protected: builtins.bool = ...,
|
1235
|
+
) -> None: ...
|
1236
|
+
def HasField(self, field_name: typing_extensions.Literal["spec", b"spec", "traffic", b"traffic"]) -> builtins.bool: ...
|
1237
|
+
def ClearField(self, field_name: typing_extensions.Literal["environment_id", b"environment_id", "name", b"name", "protected", b"protected", "spec", b"spec", "traffic", b"traffic"]) -> None: ...
|
1238
|
+
def WhichOneof(self, oneof_group: typing_extensions.Literal["spec", b"spec"]) -> typing_extensions.Literal["traffic"] | None: ...
|
1239
|
+
|
1240
|
+
global___Variation = Variation
|
1241
|
+
|
1242
|
+
class TrafficSpec(google.protobuf.message.Message):
|
1243
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
1244
|
+
|
1245
|
+
PERCENTAGE_FIELD_NUMBER: builtins.int
|
1246
|
+
IS_SHADOW_FIELD_NUMBER: builtins.int
|
1247
|
+
percentage: builtins.int
|
1248
|
+
"""The percentage of network requests to take"""
|
1249
|
+
is_shadow: builtins.bool
|
1250
|
+
"""Is the traffic of shadow type"""
|
1251
|
+
def __init__(
|
1252
|
+
self,
|
1253
|
+
*,
|
1254
|
+
percentage: builtins.int = ...,
|
1255
|
+
is_shadow: builtins.bool = ...,
|
1256
|
+
) -> None: ...
|
1257
|
+
def ClearField(self, field_name: typing_extensions.Literal["is_shadow", b"is_shadow", "percentage", b"percentage"]) -> None: ...
|
1258
|
+
|
1259
|
+
global___TrafficSpec = TrafficSpec
|
1260
|
+
|
1261
|
+
class FutureDeploymentSettings(google.protobuf.message.Message):
|
1262
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
1263
|
+
|
1264
|
+
TRAFFIC_CONFIG_FIELD_NUMBER: builtins.int
|
1265
|
+
@property
|
1266
|
+
def traffic_config(self) -> global___TrafficConfig:
|
1267
|
+
"""The traffic config"""
|
1268
|
+
def __init__(
|
1269
|
+
self,
|
1270
|
+
*,
|
1271
|
+
traffic_config: global___TrafficConfig | None = ...,
|
1272
|
+
) -> None: ...
|
1273
|
+
def HasField(self, field_name: typing_extensions.Literal["traffic_config", b"traffic_config"]) -> builtins.bool: ...
|
1274
|
+
def ClearField(self, field_name: typing_extensions.Literal["traffic_config", b"traffic_config"]) -> None: ...
|
1275
|
+
|
1276
|
+
global___FutureDeploymentSettings = FutureDeploymentSettings
|
1277
|
+
|
1278
|
+
class EnvironmentDeploymentMessage(google.protobuf.message.Message):
|
1279
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
1280
|
+
|
1281
|
+
MODEL_ID_FIELD_NUMBER: builtins.int
|
1282
|
+
BRANCH_ID_FIELD_NUMBER: builtins.int
|
1283
|
+
BUILD_ID_FIELD_NUMBER: builtins.int
|
1284
|
+
QWAK_MODEL_REGISTRY_IDENTIFIER_FIELD_NUMBER: builtins.int
|
1285
|
+
HOSTING_SERVICE_FIELD_NUMBER: builtins.int
|
1286
|
+
MODEL_UUID_FIELD_NUMBER: builtins.int
|
1287
|
+
model_id: builtins.str
|
1288
|
+
"""Model named ID, which will be used as a routing key for the model"""
|
1289
|
+
branch_id: builtins.str
|
1290
|
+
"""Branch ID to deploy the model under"""
|
1291
|
+
build_id: builtins.str
|
1292
|
+
"""Build ID (which must be successful) to deploy"""
|
1293
|
+
@property
|
1294
|
+
def qwak_model_registry_identifier(self) -> global___QwakModeRegistryIdentifier: ...
|
1295
|
+
@property
|
1296
|
+
def hosting_service(self) -> global___HostingService:
|
1297
|
+
"""Downstream hosting service that will serve the Qwak model"""
|
1298
|
+
model_uuid: builtins.str
|
1299
|
+
def __init__(
|
1300
|
+
self,
|
1301
|
+
*,
|
1302
|
+
model_id: builtins.str = ...,
|
1303
|
+
branch_id: builtins.str = ...,
|
1304
|
+
build_id: builtins.str = ...,
|
1305
|
+
qwak_model_registry_identifier: global___QwakModeRegistryIdentifier | None = ...,
|
1306
|
+
hosting_service: global___HostingService | None = ...,
|
1307
|
+
model_uuid: builtins.str = ...,
|
1308
|
+
) -> None: ...
|
1309
|
+
def HasField(self, field_name: typing_extensions.Literal["build_id", b"build_id", "hosting_service", b"hosting_service", "image_identifier", b"image_identifier", "qwak_model_registry_identifier", b"qwak_model_registry_identifier"]) -> builtins.bool: ...
|
1310
|
+
def ClearField(self, field_name: typing_extensions.Literal["branch_id", b"branch_id", "build_id", b"build_id", "hosting_service", b"hosting_service", "image_identifier", b"image_identifier", "model_id", b"model_id", "model_uuid", b"model_uuid", "qwak_model_registry_identifier", b"qwak_model_registry_identifier"]) -> None: ...
|
1311
|
+
def WhichOneof(self, oneof_group: typing_extensions.Literal["image_identifier", b"image_identifier"]) -> typing_extensions.Literal["build_id", "qwak_model_registry_identifier"] | None: ...
|
1312
|
+
|
1313
|
+
global___EnvironmentDeploymentMessage = EnvironmentDeploymentMessage
|
1314
|
+
|
1315
|
+
class EnvironmentDeploymentResultMessage(google.protobuf.message.Message):
|
1316
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
1317
|
+
|
1318
|
+
DEPLOYMENT_NAMED_ID_FIELD_NUMBER: builtins.int
|
1319
|
+
STATUS_FIELD_NUMBER: builtins.int
|
1320
|
+
INFO_FIELD_NUMBER: builtins.int
|
1321
|
+
deployment_named_id: builtins.str
|
1322
|
+
"""ID of deployment - in order to check up on status changes"""
|
1323
|
+
status: global___ModelDeploymentStatus.ValueType
|
1324
|
+
"""Status of deployment"""
|
1325
|
+
info: builtins.str
|
1326
|
+
"""Additional info on the deployment"""
|
1327
|
+
def __init__(
|
1328
|
+
self,
|
1329
|
+
*,
|
1330
|
+
deployment_named_id: builtins.str = ...,
|
1331
|
+
status: global___ModelDeploymentStatus.ValueType = ...,
|
1332
|
+
info: builtins.str = ...,
|
1333
|
+
) -> None: ...
|
1334
|
+
def ClearField(self, field_name: typing_extensions.Literal["deployment_named_id", b"deployment_named_id", "info", b"info", "status", b"status"]) -> None: ...
|
1335
|
+
|
1336
|
+
global___EnvironmentDeploymentResultMessage = EnvironmentDeploymentResultMessage
|
1337
|
+
|
1338
|
+
class EnvironmentUndeploymentMessage(google.protobuf.message.Message):
|
1339
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
1340
|
+
|
1341
|
+
MODEL_ID_FIELD_NUMBER: builtins.int
|
1342
|
+
BRANCH_ID_FIELD_NUMBER: builtins.int
|
1343
|
+
HOSTING_SERVICE_TYPE_FIELD_NUMBER: builtins.int
|
1344
|
+
TRAFFIC_CONFIG_FIELD_NUMBER: builtins.int
|
1345
|
+
VARIATION_NAME_FIELD_NUMBER: builtins.int
|
1346
|
+
MODEL_UUID_FIELD_NUMBER: builtins.int
|
1347
|
+
model_id: builtins.str
|
1348
|
+
"""Model named ID to undeploy"""
|
1349
|
+
branch_id: builtins.str
|
1350
|
+
"""Branch ID to undeploy from"""
|
1351
|
+
hosting_service_type: global___DeploymentHostingServiceType.ValueType
|
1352
|
+
"""The Hosting service to undeploy from"""
|
1353
|
+
@property
|
1354
|
+
def traffic_config(self) -> global___TrafficConfig:
|
1355
|
+
"""Traffic Config"""
|
1356
|
+
variation_name: builtins.str
|
1357
|
+
"""Deployment variation name"""
|
1358
|
+
model_uuid: builtins.str
|
1359
|
+
def __init__(
|
1360
|
+
self,
|
1361
|
+
*,
|
1362
|
+
model_id: builtins.str = ...,
|
1363
|
+
branch_id: builtins.str = ...,
|
1364
|
+
hosting_service_type: global___DeploymentHostingServiceType.ValueType = ...,
|
1365
|
+
traffic_config: global___TrafficConfig | None = ...,
|
1366
|
+
variation_name: builtins.str = ...,
|
1367
|
+
model_uuid: builtins.str = ...,
|
1368
|
+
) -> None: ...
|
1369
|
+
def HasField(self, field_name: typing_extensions.Literal["traffic_config", b"traffic_config"]) -> builtins.bool: ...
|
1370
|
+
def ClearField(self, field_name: typing_extensions.Literal["branch_id", b"branch_id", "hosting_service_type", b"hosting_service_type", "model_id", b"model_id", "model_uuid", b"model_uuid", "traffic_config", b"traffic_config", "variation_name", b"variation_name"]) -> None: ...
|
1371
|
+
|
1372
|
+
global___EnvironmentUndeploymentMessage = EnvironmentUndeploymentMessage
|
1373
|
+
|
1374
|
+
class EnvironmentUndeploymentResultMessage(google.protobuf.message.Message):
|
1375
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
1376
|
+
|
1377
|
+
STATUS_FIELD_NUMBER: builtins.int
|
1378
|
+
INFO_FIELD_NUMBER: builtins.int
|
1379
|
+
status: global___ModelDeploymentStatus.ValueType
|
1380
|
+
"""Status of un-deployment"""
|
1381
|
+
info: builtins.str
|
1382
|
+
"""Additional info on the undeployment"""
|
1383
|
+
def __init__(
|
1384
|
+
self,
|
1385
|
+
*,
|
1386
|
+
status: global___ModelDeploymentStatus.ValueType = ...,
|
1387
|
+
info: builtins.str = ...,
|
1388
|
+
) -> None: ...
|
1389
|
+
def ClearField(self, field_name: typing_extensions.Literal["info", b"info", "status", b"status"]) -> None: ...
|
1390
|
+
|
1391
|
+
global___EnvironmentUndeploymentResultMessage = EnvironmentUndeploymentResultMessage
|
1392
|
+
|
1393
|
+
class EnvironmentRuntimeDeploymentSettingsMessage(google.protobuf.message.Message):
|
1394
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
1395
|
+
|
1396
|
+
MODEL_ID_FIELD_NUMBER: builtins.int
|
1397
|
+
BRANCH_ID_FIELD_NUMBER: builtins.int
|
1398
|
+
DEPLOYMENT_SETTINGS_FIELD_NUMBER: builtins.int
|
1399
|
+
VARIATION_NAME_FIELD_NUMBER: builtins.int
|
1400
|
+
MODEL_UUID_FIELD_NUMBER: builtins.int
|
1401
|
+
model_id: builtins.str
|
1402
|
+
"""Model named ID, which will be used as a routing key for the model"""
|
1403
|
+
branch_id: builtins.str
|
1404
|
+
"""Branch ID which the model was deployed under"""
|
1405
|
+
@property
|
1406
|
+
def deployment_settings(self) -> global___RuntimeDeploymentSettings:
|
1407
|
+
"""The new deployment settings"""
|
1408
|
+
variation_name: builtins.str
|
1409
|
+
"""Variation name"""
|
1410
|
+
model_uuid: builtins.str
|
1411
|
+
def __init__(
|
1412
|
+
self,
|
1413
|
+
*,
|
1414
|
+
model_id: builtins.str = ...,
|
1415
|
+
branch_id: builtins.str = ...,
|
1416
|
+
deployment_settings: global___RuntimeDeploymentSettings | None = ...,
|
1417
|
+
variation_name: builtins.str = ...,
|
1418
|
+
model_uuid: builtins.str = ...,
|
1419
|
+
) -> None: ...
|
1420
|
+
def HasField(self, field_name: typing_extensions.Literal["deployment_settings", b"deployment_settings"]) -> builtins.bool: ...
|
1421
|
+
def ClearField(self, field_name: typing_extensions.Literal["branch_id", b"branch_id", "deployment_settings", b"deployment_settings", "model_id", b"model_id", "model_uuid", b"model_uuid", "variation_name", b"variation_name"]) -> None: ...
|
1422
|
+
|
1423
|
+
global___EnvironmentRuntimeDeploymentSettingsMessage = EnvironmentRuntimeDeploymentSettingsMessage
|
1424
|
+
|
1425
|
+
class EnvironmentRuntimeDeploymentSettingsResultMessage(google.protobuf.message.Message):
|
1426
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
1427
|
+
|
1428
|
+
ERROR_INFO_FIELD_NUMBER: builtins.int
|
1429
|
+
error_info: builtins.str
|
1430
|
+
"""Additional info"""
|
1431
|
+
def __init__(
|
1432
|
+
self,
|
1433
|
+
*,
|
1434
|
+
error_info: builtins.str = ...,
|
1435
|
+
) -> None: ...
|
1436
|
+
def ClearField(self, field_name: typing_extensions.Literal["error_info", b"error_info"]) -> None: ...
|
1437
|
+
|
1438
|
+
global___EnvironmentRuntimeDeploymentSettingsResultMessage = EnvironmentRuntimeDeploymentSettingsResultMessage
|
1439
|
+
|
1440
|
+
class EnvironmentApplyModelTrafficResponse(google.protobuf.message.Message):
|
1441
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
1442
|
+
|
1443
|
+
INFO_FIELD_NUMBER: builtins.int
|
1444
|
+
info: builtins.str
|
1445
|
+
"""Additional info"""
|
1446
|
+
def __init__(
|
1447
|
+
self,
|
1448
|
+
*,
|
1449
|
+
info: builtins.str = ...,
|
1450
|
+
) -> None: ...
|
1451
|
+
def ClearField(self, field_name: typing_extensions.Literal["info", b"info"]) -> None: ...
|
1452
|
+
|
1453
|
+
global___EnvironmentApplyModelTrafficResponse = EnvironmentApplyModelTrafficResponse
|
1454
|
+
|
1455
|
+
class EnvironmentDeploymentDetailsMessage(google.protobuf.message.Message):
|
1456
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
1457
|
+
|
1458
|
+
DEPLOYMENTS_DETAILS_FIELD_NUMBER: builtins.int
|
1459
|
+
AUDIENCES_ROUTES_FIELD_NUMBER: builtins.int
|
1460
|
+
FALLBACK_VARIATION_FIELD_NUMBER: builtins.int
|
1461
|
+
@property
|
1462
|
+
def deployments_details(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___DeploymentDetails]:
|
1463
|
+
"""The current active deployments details"""
|
1464
|
+
@property
|
1465
|
+
def audiences_routes(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[qwak.audience.v1.audience_pb2.AudienceRoutesEntry]:
|
1466
|
+
"""audiences in the environment."""
|
1467
|
+
fallback_variation: builtins.str
|
1468
|
+
"""fallback Variation saved for the model."""
|
1469
|
+
def __init__(
|
1470
|
+
self,
|
1471
|
+
*,
|
1472
|
+
deployments_details: collections.abc.Iterable[global___DeploymentDetails] | None = ...,
|
1473
|
+
audiences_routes: collections.abc.Iterable[qwak.audience.v1.audience_pb2.AudienceRoutesEntry] | None = ...,
|
1474
|
+
fallback_variation: builtins.str = ...,
|
1475
|
+
) -> None: ...
|
1476
|
+
def ClearField(self, field_name: typing_extensions.Literal["audiences_routes", b"audiences_routes", "deployments_details", b"deployments_details", "fallback_variation", b"fallback_variation"]) -> None: ...
|
1477
|
+
|
1478
|
+
global___EnvironmentDeploymentDetailsMessage = EnvironmentDeploymentDetailsMessage
|
1479
|
+
|
1480
|
+
class EnvironmentDeploymentHistoryMessage(google.protobuf.message.Message):
|
1481
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
1482
|
+
|
1483
|
+
DEPLOYMENTS_FIELD_NUMBER: builtins.int
|
1484
|
+
@property
|
1485
|
+
def deployments(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___DeploymentBrief]:
|
1486
|
+
"""All finalized deployments for specific branch"""
|
1487
|
+
def __init__(
|
1488
|
+
self,
|
1489
|
+
*,
|
1490
|
+
deployments: collections.abc.Iterable[global___DeploymentBrief] | None = ...,
|
1491
|
+
) -> None: ...
|
1492
|
+
def ClearField(self, field_name: typing_extensions.Literal["deployments", b"deployments"]) -> None: ...
|
1493
|
+
|
1494
|
+
global___EnvironmentDeploymentHistoryMessage = EnvironmentDeploymentHistoryMessage
|
1495
|
+
|
1496
|
+
class EnvironmentTrafficMessage(google.protobuf.message.Message):
|
1497
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
1498
|
+
|
1499
|
+
VARIATIONS_FIELD_NUMBER: builtins.int
|
1500
|
+
@property
|
1501
|
+
def variations(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___Variation]:
|
1502
|
+
"""The variations config"""
|
1503
|
+
def __init__(
|
1504
|
+
self,
|
1505
|
+
*,
|
1506
|
+
variations: collections.abc.Iterable[global___Variation] | None = ...,
|
1507
|
+
) -> None: ...
|
1508
|
+
def ClearField(self, field_name: typing_extensions.Literal["variations", b"variations"]) -> None: ...
|
1509
|
+
|
1510
|
+
global___EnvironmentTrafficMessage = EnvironmentTrafficMessage
|
1511
|
+
|
1512
|
+
class BuildDeploymentEnvironmentStatus(google.protobuf.message.Message):
|
1513
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
1514
|
+
|
1515
|
+
class EnvironmentToDeploymentBriefEntry(google.protobuf.message.Message):
|
1516
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
1517
|
+
|
1518
|
+
KEY_FIELD_NUMBER: builtins.int
|
1519
|
+
VALUE_FIELD_NUMBER: builtins.int
|
1520
|
+
key: builtins.str
|
1521
|
+
@property
|
1522
|
+
def value(self) -> global___DeploymentBrief: ...
|
1523
|
+
def __init__(
|
1524
|
+
self,
|
1525
|
+
*,
|
1526
|
+
key: builtins.str = ...,
|
1527
|
+
value: global___DeploymentBrief | None = ...,
|
1528
|
+
) -> None: ...
|
1529
|
+
def HasField(self, field_name: typing_extensions.Literal["value", b"value"]) -> builtins.bool: ...
|
1530
|
+
def ClearField(self, field_name: typing_extensions.Literal["key", b"key", "value", b"value"]) -> None: ...
|
1531
|
+
|
1532
|
+
ENVIRONMENT_TO_DEPLOYMENT_BRIEF_FIELD_NUMBER: builtins.int
|
1533
|
+
@property
|
1534
|
+
def environment_to_deployment_brief(self) -> google.protobuf.internal.containers.MessageMap[builtins.str, global___DeploymentBrief]:
|
1535
|
+
"""Environment id to deployment brief"""
|
1536
|
+
def __init__(
|
1537
|
+
self,
|
1538
|
+
*,
|
1539
|
+
environment_to_deployment_brief: collections.abc.Mapping[builtins.str, global___DeploymentBrief] | None = ...,
|
1540
|
+
) -> None: ...
|
1541
|
+
def ClearField(self, field_name: typing_extensions.Literal["environment_to_deployment_brief", b"environment_to_deployment_brief"]) -> None: ...
|
1542
|
+
|
1543
|
+
global___BuildDeploymentEnvironmentStatus = BuildDeploymentEnvironmentStatus
|
1544
|
+
|
1545
|
+
class BuildDeploymentStatus(google.protobuf.message.Message):
|
1546
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
1547
|
+
|
1548
|
+
BUILD_UUID_FIELD_NUMBER: builtins.int
|
1549
|
+
IS_DEPLOYED_FIELD_NUMBER: builtins.int
|
1550
|
+
IS_IN_USE_FIELD_NUMBER: builtins.int
|
1551
|
+
build_uuid: builtins.str
|
1552
|
+
is_deployed: builtins.bool
|
1553
|
+
is_in_use: builtins.bool
|
1554
|
+
def __init__(
|
1555
|
+
self,
|
1556
|
+
*,
|
1557
|
+
build_uuid: builtins.str = ...,
|
1558
|
+
is_deployed: builtins.bool = ...,
|
1559
|
+
is_in_use: builtins.bool = ...,
|
1560
|
+
) -> None: ...
|
1561
|
+
def ClearField(self, field_name: typing_extensions.Literal["build_uuid", b"build_uuid", "is_deployed", b"is_deployed", "is_in_use", b"is_in_use"]) -> None: ...
|
1562
|
+
|
1563
|
+
global___BuildDeploymentStatus = BuildDeploymentStatus
|
1564
|
+
|
1565
|
+
class CancelDeploymentRequestStatus(google.protobuf.message.Message):
|
1566
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
1567
|
+
|
1568
|
+
CANCEL_REQUESTED_SUCCESSFULLY_FIELD_NUMBER: builtins.int
|
1569
|
+
ERROR_MESSAGE_FIELD_NUMBER: builtins.int
|
1570
|
+
cancel_requested_successfully: builtins.bool
|
1571
|
+
"""Is requested successfully"""
|
1572
|
+
error_message: builtins.str
|
1573
|
+
"""The error message"""
|
1574
|
+
def __init__(
|
1575
|
+
self,
|
1576
|
+
*,
|
1577
|
+
cancel_requested_successfully: builtins.bool = ...,
|
1578
|
+
error_message: builtins.str = ...,
|
1579
|
+
) -> None: ...
|
1580
|
+
def ClearField(self, field_name: typing_extensions.Literal["cancel_requested_successfully", b"cancel_requested_successfully", "error_message", b"error_message"]) -> None: ...
|
1581
|
+
|
1582
|
+
global___CancelDeploymentRequestStatus = CancelDeploymentRequestStatus
|