frogml-core 0.0.48__py3-none-any.whl → 0.0.50__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 +1 -1
- {frogml_core-0.0.48.dist-info → frogml_core-0.0.50.dist-info}/METADATA +1 -1
- {frogml_core-0.0.48.dist-info → frogml_core-0.0.50.dist-info}/RECORD +54 -12
- frogml_proto/qwak/administration/account/v1/account_pb2.py +10 -10
- frogml_proto/qwak/administration/account/v1/account_pb2.pyi +6 -6
- frogml_proto/qwak/administration/account/v1/jfrog_tenant_details_pb2.py +18 -18
- frogml_proto/qwak/administration/account/v1/jfrog_tenant_details_pb2.pyi +12 -0
- frogml_proto/qwak/administration/runtime_configuration/v0/auth_pb2.py +36 -0
- frogml_proto/qwak/administration/runtime_configuration/v0/auth_pb2.pyi +36 -0
- frogml_proto/qwak/administration/runtime_configuration/v0/auth_pb2_grpc.py +4 -0
- frogml_proto/qwak/administration/runtime_configuration/v0/data_catalog_config_pb2.py +55 -0
- frogml_proto/qwak/administration/runtime_configuration/v0/data_catalog_config_pb2.pyi +68 -0
- frogml_proto/qwak/administration/runtime_configuration/v0/data_catalog_config_pb2_grpc.py +4 -0
- frogml_proto/qwak/administration/runtime_configuration/v0/external/elasticsearch_config_pb2.py +36 -0
- frogml_proto/qwak/administration/runtime_configuration/v0/external/elasticsearch_config_pb2.pyi +39 -0
- frogml_proto/qwak/administration/runtime_configuration/v0/external/elasticsearch_config_pb2_grpc.py +4 -0
- frogml_proto/qwak/administration/runtime_configuration/v0/external/kafka_config_pb2.py +66 -0
- frogml_proto/qwak/administration/runtime_configuration/v0/external/kafka_config_pb2.pyi +79 -0
- frogml_proto/qwak/administration/runtime_configuration/v0/external/kafka_config_pb2_grpc.py +4 -0
- frogml_proto/qwak/administration/runtime_configuration/v0/external/redis_config_pb2.py +36 -0
- frogml_proto/qwak/administration/runtime_configuration/v0/external/redis_config_pb2.pyi +39 -0
- frogml_proto/qwak/administration/runtime_configuration/v0/external/redis_config_pb2_grpc.py +4 -0
- frogml_proto/qwak/administration/runtime_configuration/v0/feature_store_config_pb2.py +57 -0
- frogml_proto/qwak/administration/runtime_configuration/v0/feature_store_config_pb2.pyi +66 -0
- frogml_proto/qwak/administration/runtime_configuration/v0/feature_store_config_pb2_grpc.py +4 -0
- frogml_proto/qwak/administration/runtime_configuration/v0/hosting_config_pb2.py +76 -0
- frogml_proto/qwak/administration/runtime_configuration/v0/hosting_config_pb2.pyi +114 -0
- frogml_proto/qwak/administration/runtime_configuration/v0/hosting_config_pb2_grpc.py +4 -0
- frogml_proto/qwak/administration/runtime_configuration/v0/logs_storage_config_pb2.py +37 -0
- frogml_proto/qwak/administration/runtime_configuration/v0/logs_storage_config_pb2.pyi +33 -0
- frogml_proto/qwak/administration/runtime_configuration/v0/logs_storage_config_pb2_grpc.py +4 -0
- frogml_proto/qwak/administration/runtime_configuration/v0/model_analytics_storage_config_pb2.py +37 -0
- frogml_proto/qwak/administration/runtime_configuration/v0/model_analytics_storage_config_pb2.pyi +33 -0
- frogml_proto/qwak/administration/runtime_configuration/v0/model_analytics_storage_config_pb2_grpc.py +4 -0
- frogml_proto/qwak/administration/runtime_configuration/v0/network_config_pb2.py +76 -0
- frogml_proto/qwak/administration/runtime_configuration/v0/network_config_pb2.pyi +107 -0
- frogml_proto/qwak/administration/runtime_configuration/v0/network_config_pb2_grpc.py +4 -0
- frogml_proto/qwak/administration/runtime_configuration/v0/object_storage_config_pb2.py +55 -0
- frogml_proto/qwak/administration/runtime_configuration/v0/object_storage_config_pb2.pyi +70 -0
- frogml_proto/qwak/administration/runtime_configuration/v0/object_storage_config_pb2_grpc.py +4 -0
- frogml_proto/qwak/administration/runtime_configuration/v0/runtime_config_pb2.py +42 -0
- frogml_proto/qwak/administration/runtime_configuration/v0/runtime_config_pb2.pyi +62 -0
- frogml_proto/qwak/administration/runtime_configuration/v0/runtime_config_pb2_grpc.py +4 -0
- frogml_proto/qwak/administration/runtime_configuration/v0/secret_pb2.py +45 -0
- frogml_proto/qwak/administration/runtime_configuration/v0/secret_pb2.pyi +49 -0
- frogml_proto/qwak/administration/runtime_configuration/v0/secret_pb2_grpc.py +4 -0
- frogml_proto/qwak/administration/runtime_configuration/v0/sql_engine_config_pb2.py +55 -0
- frogml_proto/qwak/administration/runtime_configuration/v0/sql_engine_config_pb2.pyi +62 -0
- frogml_proto/qwak/administration/runtime_configuration/v0/sql_engine_config_pb2_grpc.py +4 -0
- frogml_proto/qwak/administration/v0/environments/configuration_pb2.py +27 -15
- frogml_proto/qwak/administration/v0/environments/configuration_pb2.pyi +22 -0
- frogml_proto/qwak/administration/v0/environments/environment_pb2.py +8 -8
- frogml_proto/qwak/administration/v0/environments/environment_pb2.pyi +9 -2
- {frogml_core-0.0.48.dist-info → frogml_core-0.0.50.dist-info}/WHEEL +0 -0
frogml_core/__init__.py
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
frogml_core/__init__.py,sha256=
|
1
|
+
frogml_core/__init__.py,sha256=I4nuM3WARLAiCxXuux4e3qcWfMin8PnCnk6aeQASMf4,777
|
2
2
|
frogml_core/automations/__init__.py,sha256=j2gD15MN-xVWhI5rAFsDwhL0CIyICLNT0scXsKvNBkU,1547
|
3
3
|
frogml_core/automations/automation_executions.py,sha256=xpOb9Dq8gPPGNQDJTvBBZbNz4woZDRZY0HqnLSu7pwU,3230
|
4
4
|
frogml_core/automations/automations.py,sha256=GKEQyQMi8sxX5oZn62PaxPi0zD8IaJRjBkhczRJxHNs,13070
|
@@ -455,14 +455,14 @@ frogml_proto/jfml/model_version/v1/model_version_manager_service_pb2_grpc.py,sha
|
|
455
455
|
frogml_proto/jfml/model_version/v1/model_version_pb2.py,sha256=zkCh-RMWDRj9F-oHEbO7MdjIzIP06HXSnTZ2K3HXImw,11256
|
456
456
|
frogml_proto/jfml/model_version/v1/model_version_pb2.pyi,sha256=ZrCORULWRYimwMQf62Mcf6LcJ2tF1wTttY_f9X-y9Ow,12055
|
457
457
|
frogml_proto/jfml/model_version/v1/model_version_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
458
|
-
frogml_proto/qwak/administration/account/v1/account_pb2.py,sha256
|
459
|
-
frogml_proto/qwak/administration/account/v1/account_pb2.pyi,sha256=
|
458
|
+
frogml_proto/qwak/administration/account/v1/account_pb2.py,sha256=G6uadcwSBiQb3on34RiWB8LVoVSU9Vvf3p6dRzXdras,8245
|
459
|
+
frogml_proto/qwak/administration/account/v1/account_pb2.pyi,sha256=CsqJdDILBMpE0wczPFW4NtZ3RHrF6dxLYLwUdClflws,11975
|
460
460
|
frogml_proto/qwak/administration/account/v1/account_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
461
461
|
frogml_proto/qwak/administration/account/v1/account_service_pb2.py,sha256=d4iRyH2hJ0BqQglE_XVioS2XLx6pOY_epJJZOB94iy4,16745
|
462
462
|
frogml_proto/qwak/administration/account/v1/account_service_pb2.pyi,sha256=fen6z2AGluIHzkbet9ilLz7arngEj4eEM9AY4XS53Uc,15731
|
463
463
|
frogml_proto/qwak/administration/account/v1/account_service_pb2_grpc.py,sha256=YNK_XNZQW078YXqqKP7nbvjRZHn6W6WgW9v1ZB6D6RU,18748
|
464
|
-
frogml_proto/qwak/administration/account/v1/jfrog_tenant_details_pb2.py,sha256=
|
465
|
-
frogml_proto/qwak/administration/account/v1/jfrog_tenant_details_pb2.pyi,sha256=
|
464
|
+
frogml_proto/qwak/administration/account/v1/jfrog_tenant_details_pb2.py,sha256=5Aj0MhHoXBPKsvHuIWGIL5p-o39pR8XxnjyQFFSDZf0,8933
|
465
|
+
frogml_proto/qwak/administration/account/v1/jfrog_tenant_details_pb2.pyi,sha256=7LlzwNxFDMEAi6NuY2NxPgYs7IYPhJJ6E5Rq2OafjUk,8680
|
466
466
|
frogml_proto/qwak/administration/account/v1/jfrog_tenant_details_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
467
467
|
frogml_proto/qwak/administration/account/v1/personalization_pb2.py,sha256=mdnzpaf_gZTONW4viUlajbK0Z-IMSr8WykRba_qxnEM,2403
|
468
468
|
frogml_proto/qwak/administration/account/v1/personalization_pb2.pyi,sha256=sfLQNbqTtVl62YyeUdRDL6_yeCWo1k6JMAWYCiWp2KQ,1475
|
@@ -482,14 +482,56 @@ frogml_proto/qwak/administration/authenticated_user/v1/credentials_pb2_grpc.py,s
|
|
482
482
|
frogml_proto/qwak/administration/authenticated_user/v1/details_pb2.py,sha256=Z1uqfnR7zXHhPaOojmX7FmXK_1nuv7bO9aUA01AZEng,4914
|
483
483
|
frogml_proto/qwak/administration/authenticated_user/v1/details_pb2.pyi,sha256=zdQqQF0o1uv-II_bCMMsm3h-Em_RN1HKmrHcjjszkeE,5995
|
484
484
|
frogml_proto/qwak/administration/authenticated_user/v1/details_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
485
|
+
frogml_proto/qwak/administration/runtime_configuration/v0/auth_pb2.py,sha256=76SOi8smZpfNyz3yJ21F2hfrPkbUain0cDL6vrTDfG8,2300
|
486
|
+
frogml_proto/qwak/administration/runtime_configuration/v0/auth_pb2.pyi,sha256=8K_-2JcRznuh8vlKDoUWtR1m42JxOBtxcnCkb8TZtNc,1428
|
487
|
+
frogml_proto/qwak/administration/runtime_configuration/v0/auth_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
488
|
+
frogml_proto/qwak/administration/runtime_configuration/v0/data_catalog_config_pb2.py,sha256=mMxcfMvaX6e06kAhB9XWDBqDLHQVAxt6UmjObqSysfo,3804
|
489
|
+
frogml_proto/qwak/administration/runtime_configuration/v0/data_catalog_config_pb2.pyi,sha256=AVYGl9yfWtc89UdTOjnWG0qTJOPPZI4_BGWd8Qf27Nk,2530
|
490
|
+
frogml_proto/qwak/administration/runtime_configuration/v0/data_catalog_config_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
491
|
+
frogml_proto/qwak/administration/runtime_configuration/v0/external/elasticsearch_config_pb2.py,sha256=g3LzWU_KCIlrYsNy5RzUFlNvmRAmcd0FGiaS3-_UfoQ,2634
|
492
|
+
frogml_proto/qwak/administration/runtime_configuration/v0/external/elasticsearch_config_pb2.pyi,sha256=UY7WRLte3WUuY9HIfdbTDdQsldUzwaAJw_uDmSnpnKU,1546
|
493
|
+
frogml_proto/qwak/administration/runtime_configuration/v0/external/elasticsearch_config_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
494
|
+
frogml_proto/qwak/administration/runtime_configuration/v0/external/kafka_config_pb2.py,sha256=tHpiwf9Jnn2oSbVdYnMMsG3Io5YD1O0IdzTdBVPPU7c,5142
|
495
|
+
frogml_proto/qwak/administration/runtime_configuration/v0/external/kafka_config_pb2.pyi,sha256=cyRb4ZxZicpVIlfPUtfHalTAVwAHSnnIwVvjsE7DWV0,3475
|
496
|
+
frogml_proto/qwak/administration/runtime_configuration/v0/external/kafka_config_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
497
|
+
frogml_proto/qwak/administration/runtime_configuration/v0/external/redis_config_pb2.py,sha256=s5cbPfi4dglM0VJbYjFmGS6e_c3XRnws_-ALloymTB8,2498
|
498
|
+
frogml_proto/qwak/administration/runtime_configuration/v0/external/redis_config_pb2.pyi,sha256=U-cpK-mKlWb2XI5QSVepaPWqLSvyZDACTEAPu3FF5bc,1522
|
499
|
+
frogml_proto/qwak/administration/runtime_configuration/v0/external/redis_config_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
500
|
+
frogml_proto/qwak/administration/runtime_configuration/v0/feature_store_config_pb2.py,sha256=5kG-ffKs4g6S7N9x3cQY2EMOW-D1w9ronkeulaaPdTg,4452
|
501
|
+
frogml_proto/qwak/administration/runtime_configuration/v0/feature_store_config_pb2.pyi,sha256=A5OXe8GQmk3Rw60CpOvBqbiO56rPQv46-HdJCKfhQAk,3008
|
502
|
+
frogml_proto/qwak/administration/runtime_configuration/v0/feature_store_config_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
503
|
+
frogml_proto/qwak/administration/runtime_configuration/v0/hosting_config_pb2.py,sha256=fH2liesavhAmzkq9LLfyuAGm93j0omMBOsu7xaTLVv8,5781
|
504
|
+
frogml_proto/qwak/administration/runtime_configuration/v0/hosting_config_pb2.pyi,sha256=GkBkkBUXukoPWmLpDsKGz0JygUDxl8EiSjpZo_xTYY8,5338
|
505
|
+
frogml_proto/qwak/administration/runtime_configuration/v0/hosting_config_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
506
|
+
frogml_proto/qwak/administration/runtime_configuration/v0/logs_storage_config_pb2.py,sha256=0jRN5iu_pP4-pOjl3XTAhxWbvb_pw-oBh37ExMtvqgw,2798
|
507
|
+
frogml_proto/qwak/administration/runtime_configuration/v0/logs_storage_config_pb2.pyi,sha256=9GXb76R5pgb1cU1VApbkB-flyMUCobUFUde_7ivUnNs,1448
|
508
|
+
frogml_proto/qwak/administration/runtime_configuration/v0/logs_storage_config_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
509
|
+
frogml_proto/qwak/administration/runtime_configuration/v0/model_analytics_storage_config_pb2.py,sha256=X_bXcJdVYgfxqnZCYgQdL0C5CyMXH4QQKL2v5jyYfSs,2929
|
510
|
+
frogml_proto/qwak/administration/runtime_configuration/v0/model_analytics_storage_config_pb2.pyi,sha256=f9TRM2IiIXRHMrnoh_mZHRf1_ySXMXiEgHYTi7irKXk,1422
|
511
|
+
frogml_proto/qwak/administration/runtime_configuration/v0/model_analytics_storage_config_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
512
|
+
frogml_proto/qwak/administration/runtime_configuration/v0/network_config_pb2.py,sha256=excQVW10eyPsiDeS7ZGsKNwGLQKuXizqR8PcpdwRmfM,5624
|
513
|
+
frogml_proto/qwak/administration/runtime_configuration/v0/network_config_pb2.pyi,sha256=VHVMzv1hXIbrmgr-KmK7onESzoQRzaomHEdXxz6zwAM,4494
|
514
|
+
frogml_proto/qwak/administration/runtime_configuration/v0/network_config_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
515
|
+
frogml_proto/qwak/administration/runtime_configuration/v0/object_storage_config_pb2.py,sha256=Z00BGr6n_jftB9wDbFrZY8VTyFnescPn8HvbCIGExd0,3644
|
516
|
+
frogml_proto/qwak/administration/runtime_configuration/v0/object_storage_config_pb2.pyi,sha256=I5lypi84OoePvdpz7FtuzVq8J2PRyU--mqV680WlNzc,2562
|
517
|
+
frogml_proto/qwak/administration/runtime_configuration/v0/object_storage_config_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
518
|
+
frogml_proto/qwak/administration/runtime_configuration/v0/runtime_config_pb2.py,sha256=0ZZb2sg_0WaZO7VLbo7OBIqI2awGrU-AYS-AviCqy_g,4942
|
519
|
+
frogml_proto/qwak/administration/runtime_configuration/v0/runtime_config_pb2.pyi,sha256=QLTmYD45iyIZFPj4ozOVR7foK6To8UC0RY_TPCy8Mp4,4979
|
520
|
+
frogml_proto/qwak/administration/runtime_configuration/v0/runtime_config_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
521
|
+
frogml_proto/qwak/administration/runtime_configuration/v0/secret_pb2.py,sha256=HS0-Cp5OgGqoEysqwZ0cYXZC6JKqu56-8I8btbujar4,2740
|
522
|
+
frogml_proto/qwak/administration/runtime_configuration/v0/secret_pb2.pyi,sha256=e8WL8VLVMlRwtmweoGJKDPM6gVqmrZuO-btU-TLOa0I,1766
|
523
|
+
frogml_proto/qwak/administration/runtime_configuration/v0/secret_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
524
|
+
frogml_proto/qwak/administration/runtime_configuration/v0/sql_engine_config_pb2.py,sha256=QGo7auysD-Yeyx3UA2TzbIzDUllQ2YJicT93gxaAQBo,3785
|
525
|
+
frogml_proto/qwak/administration/runtime_configuration/v0/sql_engine_config_pb2.pyi,sha256=86lYyaMcsIOIxqx3J0q9DKA6HdVQzFpzq_guhJcgV9s,2588
|
526
|
+
frogml_proto/qwak/administration/runtime_configuration/v0/sql_engine_config_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
485
527
|
frogml_proto/qwak/administration/v0/authentication/authentication_service_pb2.py,sha256=TB_RvTOQRAlnD6OML2tH51Ms4NrXTnfUAhbyEdpzfuA,4648
|
486
528
|
frogml_proto/qwak/administration/v0/authentication/authentication_service_pb2.pyi,sha256=jAAqlBaE5GmqYVzmYzJ37rS06-4gma5X9x1ZB8GvAqU,3664
|
487
529
|
frogml_proto/qwak/administration/v0/authentication/authentication_service_pb2_grpc.py,sha256=QX3NOsb1EwPrw-cVl-qoTbbrYrPO0mgXxT1kAi3n7xk,3168
|
488
|
-
frogml_proto/qwak/administration/v0/environments/configuration_pb2.py,sha256=
|
489
|
-
frogml_proto/qwak/administration/v0/environments/configuration_pb2.pyi,sha256=
|
530
|
+
frogml_proto/qwak/administration/v0/environments/configuration_pb2.py,sha256=yOmyLrL9LtkuYTkEjXSOIv5s7Jc043PN6EQEMtOKVso,8824
|
531
|
+
frogml_proto/qwak/administration/v0/environments/configuration_pb2.pyi,sha256=rMOcGZSQEP0syFTzGxeSODMgM-OezDzFhFDUaT5KHGY,13383
|
490
532
|
frogml_proto/qwak/administration/v0/environments/configuration_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
491
|
-
frogml_proto/qwak/administration/v0/environments/environment_pb2.py,sha256=
|
492
|
-
frogml_proto/qwak/administration/v0/environments/environment_pb2.pyi,sha256=
|
533
|
+
frogml_proto/qwak/administration/v0/environments/environment_pb2.py,sha256=1p9AmcEZrNJIwYfHa9s4FH5PLLTzZiwdxnbfCz9VEEQ,5294
|
534
|
+
frogml_proto/qwak/administration/v0/environments/environment_pb2.pyi,sha256=HsPyKAq-Hgjz5pI3e_KNDoELsZSdSZBtJqbCA9MfDOM,8385
|
493
535
|
frogml_proto/qwak/administration/v0/environments/environment_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
494
536
|
frogml_proto/qwak/administration/v0/environments/environment_service_pb2.py,sha256=0QtzNpknYTFvzoFjx1I2AcsaCrR73poLCr2XHL_pfH4,16017
|
495
537
|
frogml_proto/qwak/administration/v0/environments/environment_service_pb2.pyi,sha256=W7ndMyiPkDz1_uUqaFvr8qeA0QzXrDI5FYzjfRzBhfM,12660
|
@@ -1025,6 +1067,6 @@ frogml_services_mock/mocks/workspace_manager_service_mock.py,sha256=WbOiWgOyr-xT
|
|
1025
1067
|
frogml_services_mock/services_mock.py,sha256=_34z6rFCHFwcSni-9eyJlrH264xsL_QDNmG-EBv0zMc,20281
|
1026
1068
|
frogml_services_mock/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1027
1069
|
frogml_services_mock/utils/service_utils.py,sha256=ZlB0CnB1J6oBn6_m7fQO2U8tKoboHdUa6ljjkRMYNXU,265
|
1028
|
-
frogml_core-0.0.
|
1029
|
-
frogml_core-0.0.
|
1030
|
-
frogml_core-0.0.
|
1070
|
+
frogml_core-0.0.50.dist-info/METADATA,sha256=5-su_JPo9W_TQvpAcajhi7e-FLhDPW9AYogaPs4LL7o,2004
|
1071
|
+
frogml_core-0.0.50.dist-info/WHEEL,sha256=IYZQI976HJqqOpQU6PHkJ8fb3tMNBFjg-Cn-pwAbaFM,88
|
1072
|
+
frogml_core-0.0.50.dist-info/RECORD,,
|
@@ -19,7 +19,7 @@ from frogml_proto.qwak.administration.account.v1 import terms_pb2 as qwak_dot_ad
|
|
19
19
|
from frogml_proto.qwak.administration.account.v1 import jfrog_tenant_details_pb2 as qwak_dot_administration_dot_account_dot_v1_dot_jfrog__tenant__details__pb2
|
20
20
|
|
21
21
|
|
22
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n,qwak/administration/account/v1/account.proto\x12\x1eqwak.administration.account.v1\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x30qwak/administration/account/v1/preferences.proto\x1a*qwak/administration/account/v1/terms.proto\x1a\x39qwak/administration/account/v1/jfrog_tenant_details.proto\"\xc9\x04\n\x07\x41\x63\x63ount\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x45\n\x06status\x18\x04 \x01(\x0e\x32\x35.qwak.administration.account.v1.AccountActivityStatus\x12\x44\n\x0bpreferences\x18\x07 \x01(\x0b\x32/.qwak.administration.account.AccountPreferences\x12\x1e\n\x16\x64\x65\x66\x61ult_environment_id\x18\x08 \x01(\t\x12.\n\ncreated_at\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x34\n\x10last_modified_at\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x39\n\x04type\x18\t \x01(\x0e\x32+.qwak.administration.account.v1.AccountType\x12\x39\n\x04tier\x18\n \x01(\x0e\x32+.qwak.administration.account.v1.AccountTier\x12I\n\x0e\x61\x63\x63\x65pted_terms\x18\x0b \x01(\x0b\x32\x31.qwak.administration.account.AccountAcceptedTerms\x12P\n\x14jfrog_tenant_details\x18\x0c \x01(\x0b\x32\x32.qwak.administration.account.v1.JfrogTenantDetails\"c\n\x11ListAccountFilter\x12N\n\x0f\x61\x63tivity_status\x18\x01 \x01(\x0e\x32\x35.qwak.administration.account.v1.AccountActivityStatus\"_\n\x12\x41utoBindingAccount\x12\n\n\x02id\x18\x01 \x01(\t\x12=\n\x04rule\x18\x02 \x01(\x0b\x32/.qwak.administration.account.v1.AutoBindingRule\")\n\x0f\x41utoBindingRule\x12\x16\n\x0e\x65mail_hostname\x18\x01 \x01(\t\"\
|
22
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n,qwak/administration/account/v1/account.proto\x12\x1eqwak.administration.account.v1\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x30qwak/administration/account/v1/preferences.proto\x1a*qwak/administration/account/v1/terms.proto\x1a\x39qwak/administration/account/v1/jfrog_tenant_details.proto\"\xc9\x04\n\x07\x41\x63\x63ount\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x45\n\x06status\x18\x04 \x01(\x0e\x32\x35.qwak.administration.account.v1.AccountActivityStatus\x12\x44\n\x0bpreferences\x18\x07 \x01(\x0b\x32/.qwak.administration.account.AccountPreferences\x12\x1e\n\x16\x64\x65\x66\x61ult_environment_id\x18\x08 \x01(\t\x12.\n\ncreated_at\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x34\n\x10last_modified_at\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x39\n\x04type\x18\t \x01(\x0e\x32+.qwak.administration.account.v1.AccountType\x12\x39\n\x04tier\x18\n \x01(\x0e\x32+.qwak.administration.account.v1.AccountTier\x12I\n\x0e\x61\x63\x63\x65pted_terms\x18\x0b \x01(\x0b\x32\x31.qwak.administration.account.AccountAcceptedTerms\x12P\n\x14jfrog_tenant_details\x18\x0c \x01(\x0b\x32\x32.qwak.administration.account.v1.JfrogTenantDetails\"c\n\x11ListAccountFilter\x12N\n\x0f\x61\x63tivity_status\x18\x01 \x01(\x0e\x32\x35.qwak.administration.account.v1.AccountActivityStatus\"_\n\x12\x41utoBindingAccount\x12\n\n\x02id\x18\x01 \x01(\t\x12=\n\x04rule\x18\x02 \x01(\x0b\x32/.qwak.administration.account.v1.AutoBindingRule\")\n\x0f\x41utoBindingRule\x12\x16\n\x0e\x65mail_hostname\x18\x01 \x01(\t\"\xb1\x02\n\x0c\x41\x63\x63ountBrief\x12\x12\n\naccount_id\x18\x01 \x01(\t\x12\x19\n\x0fjfrog_tenant_id\x18\x02 \x01(\tH\x00\x12\x1b\n\x0f\x65nvironment_ids\x18\x03 \x03(\tB\x02\x18\x01\x12\x16\n\x0e\x64\x65\x66\x61ult_env_id\x18\x04 \x01(\t\x12L\n\x12\x65nvironment_briefs\x18\x05 \x03(\x0b\x32\x30.qwak.administration.account.v1.EnvironmentBrief\x12\x41\n\x0bjpd_details\x18\x06 \x01(\x0b\x32*.qwak.administration.account.v1.JPDDetailsH\x01\x42\x14\n\x12optional_tenant_idB\x16\n\x14optional_jpd_details\"B\n\x10\x45nvironmentBrief\x12\x16\n\x0e\x65nvironment_id\x18\x01 \x01(\t\x12\x16\n\x0estorage_bucket\x18\x02 \x01(\t*k\n\x15\x41\x63\x63ountActivityStatus\x12\x1a\n\x16\x41\x43\x43OUNT_STATUS_INVALID\x10\x00\x12\x19\n\x15\x41\x43\x43OUNT_STATUS_ACTIVE\x10\x01\x12\x1b\n\x17\x41\x43\x43OUNT_STATUS_DISABLED\x10\x02*=\n\x0b\x41\x63\x63ountType\x12\x18\n\x14\x41\x43\x43OUNT_TYPE_INVALID\x10\x00\x12\n\n\x06HYBRID\x10\x01\x12\x08\n\x04SAAS\x10\x02*L\n\x0b\x41\x63\x63ountTier\x12\x18\n\x14\x41\x43\x43OUNT_TIER_INVALID\x10\x00\x12\x08\n\x04\x46REE\x10\x01\x12\r\n\tVALIDATED\x10\x02\x12\n\n\x06PAYING\x10\x03\x42\xb4\x01\n)com.qwak.ai.administration.api.account.v1P\x01Z\x84\x01github.com/qwak-ai/qwak-platform/services/core/java/user-management/user-management-api/pb/qwak/administration/account/v1;account_v0b\x06proto3')
|
23
23
|
|
24
24
|
_ACCOUNTACTIVITYSTATUS = DESCRIPTOR.enum_types_by_name['AccountActivityStatus']
|
25
25
|
AccountActivityStatus = enum_type_wrapper.EnumTypeWrapper(_ACCOUNTACTIVITYSTATUS)
|
@@ -93,12 +93,12 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
93
93
|
DESCRIPTOR._serialized_options = b'\n)com.qwak.ai.administration.api.account.v1P\001Z\204\001github.com/qwak-ai/qwak-platform/services/core/java/user-management/user-management-api/pb/qwak/administration/account/v1;account_v0'
|
94
94
|
_ACCOUNTBRIEF.fields_by_name['environment_ids']._options = None
|
95
95
|
_ACCOUNTBRIEF.fields_by_name['environment_ids']._serialized_options = b'\030\001'
|
96
|
-
_ACCOUNTACTIVITYSTATUS._serialized_start=
|
97
|
-
_ACCOUNTACTIVITYSTATUS._serialized_end=
|
98
|
-
_ACCOUNTTYPE._serialized_start=
|
99
|
-
_ACCOUNTTYPE._serialized_end=
|
100
|
-
_ACCOUNTTIER._serialized_start=
|
101
|
-
_ACCOUNTTIER._serialized_end=
|
96
|
+
_ACCOUNTACTIVITYSTATUS._serialized_start=1471
|
97
|
+
_ACCOUNTACTIVITYSTATUS._serialized_end=1578
|
98
|
+
_ACCOUNTTYPE._serialized_start=1580
|
99
|
+
_ACCOUNTTYPE._serialized_end=1641
|
100
|
+
_ACCOUNTTIER._serialized_start=1643
|
101
|
+
_ACCOUNTTIER._serialized_end=1719
|
102
102
|
_ACCOUNT._serialized_start=267
|
103
103
|
_ACCOUNT._serialized_end=852
|
104
104
|
_LISTACCOUNTFILTER._serialized_start=854
|
@@ -108,7 +108,7 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
108
108
|
_AUTOBINDINGRULE._serialized_start=1052
|
109
109
|
_AUTOBINDINGRULE._serialized_end=1093
|
110
110
|
_ACCOUNTBRIEF._serialized_start=1096
|
111
|
-
_ACCOUNTBRIEF._serialized_end=
|
112
|
-
_ENVIRONMENTBRIEF._serialized_start=
|
113
|
-
_ENVIRONMENTBRIEF._serialized_end=
|
111
|
+
_ACCOUNTBRIEF._serialized_end=1401
|
112
|
+
_ENVIRONMENTBRIEF._serialized_start=1403
|
113
|
+
_ENVIRONMENTBRIEF._serialized_end=1469
|
114
114
|
# @@protoc_insertion_point(module_scope)
|
@@ -219,7 +219,7 @@ class AccountBrief(google.protobuf.message.Message):
|
|
219
219
|
ENVIRONMENT_IDS_FIELD_NUMBER: builtins.int
|
220
220
|
DEFAULT_ENV_ID_FIELD_NUMBER: builtins.int
|
221
221
|
ENVIRONMENT_BRIEFS_FIELD_NUMBER: builtins.int
|
222
|
-
|
222
|
+
JPD_DETAILS_FIELD_NUMBER: builtins.int
|
223
223
|
account_id: builtins.str
|
224
224
|
jfrog_tenant_id: builtins.str
|
225
225
|
@property
|
@@ -228,7 +228,7 @@ class AccountBrief(google.protobuf.message.Message):
|
|
228
228
|
@property
|
229
229
|
def environment_briefs(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___EnvironmentBrief]: ...
|
230
230
|
@property
|
231
|
-
def
|
231
|
+
def jpd_details(self) -> frogml_proto.qwak.administration.account.v1.jfrog_tenant_details_pb2.JPDDetails: ...
|
232
232
|
def __init__(
|
233
233
|
self,
|
234
234
|
*,
|
@@ -237,12 +237,12 @@ class AccountBrief(google.protobuf.message.Message):
|
|
237
237
|
environment_ids: collections.abc.Iterable[builtins.str] | None = ...,
|
238
238
|
default_env_id: builtins.str = ...,
|
239
239
|
environment_briefs: collections.abc.Iterable[global___EnvironmentBrief] | None = ...,
|
240
|
-
|
240
|
+
jpd_details: frogml_proto.qwak.administration.account.v1.jfrog_tenant_details_pb2.JPDDetails | None = ...,
|
241
241
|
) -> None: ...
|
242
|
-
def HasField(self, field_name: typing_extensions.Literal["
|
243
|
-
def ClearField(self, field_name: typing_extensions.Literal["account_id", b"account_id", "default_env_id", b"default_env_id", "environment_briefs", b"environment_briefs", "environment_ids", b"environment_ids", "
|
242
|
+
def HasField(self, field_name: typing_extensions.Literal["jfrog_tenant_id", b"jfrog_tenant_id", "jpd_details", b"jpd_details", "optional_jpd_details", b"optional_jpd_details", "optional_tenant_id", b"optional_tenant_id"]) -> builtins.bool: ...
|
243
|
+
def ClearField(self, field_name: typing_extensions.Literal["account_id", b"account_id", "default_env_id", b"default_env_id", "environment_briefs", b"environment_briefs", "environment_ids", b"environment_ids", "jfrog_tenant_id", b"jfrog_tenant_id", "jpd_details", b"jpd_details", "optional_jpd_details", b"optional_jpd_details", "optional_tenant_id", b"optional_tenant_id"]) -> None: ...
|
244
244
|
@typing.overload
|
245
|
-
def WhichOneof(self, oneof_group: typing_extensions.Literal["optional_jpd_details", b"optional_jpd_details"]) -> typing_extensions.Literal["
|
245
|
+
def WhichOneof(self, oneof_group: typing_extensions.Literal["optional_jpd_details", b"optional_jpd_details"]) -> typing_extensions.Literal["jpd_details"] | None: ...
|
246
246
|
@typing.overload
|
247
247
|
def WhichOneof(self, oneof_group: typing_extensions.Literal["optional_tenant_id", b"optional_tenant_id"]) -> typing_extensions.Literal["jfrog_tenant_id"] | None: ...
|
248
248
|
|
@@ -14,7 +14,7 @@ _sym_db = _symbol_database.Default()
|
|
14
14
|
|
15
15
|
|
16
16
|
|
17
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n9qwak/administration/account/v1/jfrog_tenant_details.proto\x12\x1eqwak.administration.account.v1\"\xa6\x02\n\x12JfrogTenantDetails\x12\x11\n\ttenant_id\x18\x01 \x01(\t\x12^\n\x1d\x64\x65\x66\x61ult_jfrog_project_details\x18\x02 \x01(\x0b\x32\x33.qwak.administration.account.v1.JfrogProjectDetailsB\x02\x18\x01\x12\\\n\x1ajfrog_tenant_configuration\x18\x03 \x01(\x0b\x32\x38.qwak.administration.account.v1.JFrogTenantConfiguration\x12?\n\x0bjpd_details\x18\x04 \x01(\x0b\x32*.qwak.administration.account.v1.JPDDetails\"\xb0\x01\n\nJPDDetails\x12N\n\x0esh_jpd_details\x18\x01 \x01(\x0b\x32\x34.qwak.administration.account.v1.SelfHostedJPDDetailsH\x00\x12J\n\x10saas_jpd_details\x18\x02 \x01(\x0b\x32..qwak.administration.account.v1.SAASJPDDetailsH\x00\x42\x06\n\x04type\"\
|
17
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n9qwak/administration/account/v1/jfrog_tenant_details.proto\x12\x1eqwak.administration.account.v1\"\xa6\x02\n\x12JfrogTenantDetails\x12\x11\n\ttenant_id\x18\x01 \x01(\t\x12^\n\x1d\x64\x65\x66\x61ult_jfrog_project_details\x18\x02 \x01(\x0b\x32\x33.qwak.administration.account.v1.JfrogProjectDetailsB\x02\x18\x01\x12\\\n\x1ajfrog_tenant_configuration\x18\x03 \x01(\x0b\x32\x38.qwak.administration.account.v1.JFrogTenantConfiguration\x12?\n\x0bjpd_details\x18\x04 \x01(\x0b\x32*.qwak.administration.account.v1.JPDDetails\"\xb0\x01\n\nJPDDetails\x12N\n\x0esh_jpd_details\x18\x01 \x01(\x0b\x32\x34.qwak.administration.account.v1.SelfHostedJPDDetailsH\x00\x12J\n\x10saas_jpd_details\x18\x02 \x01(\x0b\x32..qwak.administration.account.v1.SAASJPDDetailsH\x00\x42\x06\n\x04type\"(\n\x14SelfHostedJPDDetails\x12\x10\n\x08\x62\x61se_url\x18\x01 \x01(\t\"\x10\n\x0eSAASJPDDetails\"v\n\x18JFrogTenantConfiguration\x12Z\n\x1d\x64\x65\x66\x61ult_jfrog_project_details\x18\x01 \x01(\x0b\x32\x33.qwak.administration.account.v1.JfrogProjectDetails\"*\n\x13JfrogProjectDetails\x12\x13\n\x0bproject_key\x18\x01 \x01(\t\"\xbe\x01\n\x0fJfrogTenantSpec\x12\x11\n\ttenant_id\x18\x01 \x01(\t\x12N\n\x14\x64\x65\x66\x61ult_project_spec\x18\x02 \x01(\x0b\x32\x30.qwak.administration.account.v1.JfrogProjectSpec\x12H\n\x10jpd_details_spec\x18\x03 \x01(\x0b\x32..qwak.administration.account.v1.JPDDetailsSpec\"\xc6\x01\n\x0eJPDDetailsSpec\x12W\n\x13sh_jpd_details_spec\x18\x01 \x01(\x0b\x32\x38.qwak.administration.account.v1.SelfHostedJPDDetailsSpecH\x00\x12S\n\x15saas_jpd_details_spec\x18\x02 \x01(\x0b\x32\x32.qwak.administration.account.v1.SAASJPDDetailsSpecH\x00\x42\x06\n\x04type\",\n\x18SelfHostedJPDDetailsSpec\x12\x10\n\x08\x62\x61se_url\x18\x01 \x01(\t\"\x14\n\x12SAASJPDDetailsSpec\"\'\n\x10JfrogProjectSpec\x12\x13\n\x0bproject_key\x18\x01 \x01(\tB\xb4\x01\n)com.qwak.ai.administration.api.account.v1P\x01Z\x84\x01github.com/qwak-ai/qwak-platform/services/core/java/user-management/user-management-api/pb/qwak/administration/account/v1;account_v0b\x06proto3')
|
18
18
|
|
19
19
|
|
20
20
|
|
@@ -117,21 +117,21 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
117
117
|
_JPDDETAILS._serialized_start=391
|
118
118
|
_JPDDETAILS._serialized_end=567
|
119
119
|
_SELFHOSTEDJPDDETAILS._serialized_start=569
|
120
|
-
_SELFHOSTEDJPDDETAILS._serialized_end=
|
121
|
-
_SAASJPDDETAILS._serialized_start=
|
122
|
-
_SAASJPDDETAILS._serialized_end=
|
123
|
-
_JFROGTENANTCONFIGURATION._serialized_start=
|
124
|
-
_JFROGTENANTCONFIGURATION._serialized_end=
|
125
|
-
_JFROGPROJECTDETAILS._serialized_start=
|
126
|
-
_JFROGPROJECTDETAILS._serialized_end=
|
127
|
-
_JFROGTENANTSPEC._serialized_start=
|
128
|
-
_JFROGTENANTSPEC._serialized_end=
|
129
|
-
_JPDDETAILSSPEC._serialized_start=
|
130
|
-
_JPDDETAILSSPEC._serialized_end=
|
131
|
-
_SELFHOSTEDJPDDETAILSSPEC._serialized_start=
|
132
|
-
_SELFHOSTEDJPDDETAILSSPEC._serialized_end=
|
133
|
-
_SAASJPDDETAILSSPEC._serialized_start=
|
134
|
-
_SAASJPDDETAILSSPEC._serialized_end=
|
135
|
-
_JFROGPROJECTSPEC._serialized_start=
|
136
|
-
_JFROGPROJECTSPEC._serialized_end=
|
120
|
+
_SELFHOSTEDJPDDETAILS._serialized_end=609
|
121
|
+
_SAASJPDDETAILS._serialized_start=611
|
122
|
+
_SAASJPDDETAILS._serialized_end=627
|
123
|
+
_JFROGTENANTCONFIGURATION._serialized_start=629
|
124
|
+
_JFROGTENANTCONFIGURATION._serialized_end=747
|
125
|
+
_JFROGPROJECTDETAILS._serialized_start=749
|
126
|
+
_JFROGPROJECTDETAILS._serialized_end=791
|
127
|
+
_JFROGTENANTSPEC._serialized_start=794
|
128
|
+
_JFROGTENANTSPEC._serialized_end=984
|
129
|
+
_JPDDETAILSSPEC._serialized_start=987
|
130
|
+
_JPDDETAILSSPEC._serialized_end=1185
|
131
|
+
_SELFHOSTEDJPDDETAILSSPEC._serialized_start=1187
|
132
|
+
_SELFHOSTEDJPDDETAILSSPEC._serialized_end=1231
|
133
|
+
_SAASJPDDETAILSSPEC._serialized_start=1233
|
134
|
+
_SAASJPDDETAILSSPEC._serialized_end=1253
|
135
|
+
_JFROGPROJECTSPEC._serialized_start=1255
|
136
|
+
_JFROGPROJECTSPEC._serialized_end=1294
|
137
137
|
# @@protoc_insertion_point(module_scope)
|
@@ -69,9 +69,15 @@ global___JPDDetails = JPDDetails
|
|
69
69
|
class SelfHostedJPDDetails(google.protobuf.message.Message):
|
70
70
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
71
71
|
|
72
|
+
BASE_URL_FIELD_NUMBER: builtins.int
|
73
|
+
base_url: builtins.str
|
74
|
+
"""The JPD base url, reachable from data planes"""
|
72
75
|
def __init__(
|
73
76
|
self,
|
77
|
+
*,
|
78
|
+
base_url: builtins.str = ...,
|
74
79
|
) -> None: ...
|
80
|
+
def ClearField(self, field_name: typing_extensions.Literal["base_url", b"base_url"]) -> None: ...
|
75
81
|
|
76
82
|
global___SelfHostedJPDDetails = SelfHostedJPDDetails
|
77
83
|
|
@@ -166,9 +172,15 @@ global___JPDDetailsSpec = JPDDetailsSpec
|
|
166
172
|
class SelfHostedJPDDetailsSpec(google.protobuf.message.Message):
|
167
173
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
168
174
|
|
175
|
+
BASE_URL_FIELD_NUMBER: builtins.int
|
176
|
+
base_url: builtins.str
|
177
|
+
"""The JPD base url, reachable from data planes"""
|
169
178
|
def __init__(
|
170
179
|
self,
|
180
|
+
*,
|
181
|
+
base_url: builtins.str = ...,
|
171
182
|
) -> None: ...
|
183
|
+
def ClearField(self, field_name: typing_extensions.Literal["base_url", b"base_url"]) -> None: ...
|
172
184
|
|
173
185
|
global___SelfHostedJPDDetailsSpec = SelfHostedJPDDetailsSpec
|
174
186
|
|
@@ -0,0 +1,36 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
3
|
+
# source: frogml_proto.qwak.administration/runtime_configuration/v0/auth.proto
|
4
|
+
"""Generated protocol buffer code."""
|
5
|
+
from google.protobuf import descriptor as _descriptor
|
6
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
7
|
+
from google.protobuf import message as _message
|
8
|
+
from google.protobuf import reflection as _reflection
|
9
|
+
from google.protobuf import symbol_database as _symbol_database
|
10
|
+
# @@protoc_insertion_point(imports)
|
11
|
+
|
12
|
+
_sym_db = _symbol_database.Default()
|
13
|
+
|
14
|
+
|
15
|
+
from frogml_proto.qwak.administration.runtime_configuration.v0 import secret_pb2 as qwak_dot_administration_dot_runtime__configuration_dot_v0_dot_secret__pb2
|
16
|
+
|
17
|
+
|
18
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n7qwak/administration/runtime_configuration/v0/auth.proto\x12\x31qwak.administration.runtime_configuration.v0.auth\x1a\x39qwak/administration/runtime_configuration/v0/secret.proto\"\xb5\x01\n\tBasicAuth\x12S\n\x08username\x18\x01 \x01(\x0b\x32\x41.qwak.administration.runtime_configuration.v0.secret.SecretKeyRef\x12S\n\x08password\x18\x02 \x01(\x0b\x32\x41.qwak.administration.runtime_configuration.v0.secret.SecretKeyRefB\xda\x01\n*com.jfrog.ml.runtime_configuration.v0.authP\x01Z\xa9\x01github.com/qwak-ai/qwak-platform/services/core/java/user-management/user-management-api/pb/qwak/administration/runtime_configuration/v0/external;runtime_configuration_v0b\x06proto3')
|
19
|
+
|
20
|
+
|
21
|
+
|
22
|
+
_BASICAUTH = DESCRIPTOR.message_types_by_name['BasicAuth']
|
23
|
+
BasicAuth = _reflection.GeneratedProtocolMessageType('BasicAuth', (_message.Message,), {
|
24
|
+
'DESCRIPTOR' : _BASICAUTH,
|
25
|
+
'__module__' : 'qwak.administration.runtime_configuration.v0.auth_pb2'
|
26
|
+
# @@protoc_insertion_point(class_scope:qwak.administration.runtime_configuration.v0.auth.BasicAuth)
|
27
|
+
})
|
28
|
+
_sym_db.RegisterMessage(BasicAuth)
|
29
|
+
|
30
|
+
if _descriptor._USE_C_DESCRIPTORS == False:
|
31
|
+
|
32
|
+
DESCRIPTOR._options = None
|
33
|
+
DESCRIPTOR._serialized_options = b'\n*com.jfrog.ml.runtime_configuration.v0.authP\001Z\251\001github.com/qwak-ai/qwak-platform/services/core/java/user-management/user-management-api/pb/qwak/administration/runtime_configuration/v0/external;runtime_configuration_v0'
|
34
|
+
_BASICAUTH._serialized_start=170
|
35
|
+
_BASICAUTH._serialized_end=351
|
36
|
+
# @@protoc_insertion_point(module_scope)
|
@@ -0,0 +1,36 @@
|
|
1
|
+
"""
|
2
|
+
@generated by mypy-protobuf. Do not edit manually!
|
3
|
+
isort:skip_file
|
4
|
+
"""
|
5
|
+
import builtins
|
6
|
+
import google.protobuf.descriptor
|
7
|
+
import google.protobuf.message
|
8
|
+
import frogml_proto.qwak.administration.runtime_configuration.v0.secret_pb2
|
9
|
+
import sys
|
10
|
+
|
11
|
+
if sys.version_info >= (3, 8):
|
12
|
+
import typing as typing_extensions
|
13
|
+
else:
|
14
|
+
import typing_extensions
|
15
|
+
|
16
|
+
DESCRIPTOR: google.protobuf.descriptor.FileDescriptor
|
17
|
+
|
18
|
+
class BasicAuth(google.protobuf.message.Message):
|
19
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
20
|
+
|
21
|
+
USERNAME_FIELD_NUMBER: builtins.int
|
22
|
+
PASSWORD_FIELD_NUMBER: builtins.int
|
23
|
+
@property
|
24
|
+
def username(self) -> frogml_proto.qwak.administration.runtime_configuration.v0.secret_pb2.SecretKeyRef: ...
|
25
|
+
@property
|
26
|
+
def password(self) -> frogml_proto.qwak.administration.runtime_configuration.v0.secret_pb2.SecretKeyRef: ...
|
27
|
+
def __init__(
|
28
|
+
self,
|
29
|
+
*,
|
30
|
+
username: frogml_proto.qwak.administration.runtime_configuration.v0.secret_pb2.SecretKeyRef | None = ...,
|
31
|
+
password: frogml_proto.qwak.administration.runtime_configuration.v0.secret_pb2.SecretKeyRef | None = ...,
|
32
|
+
) -> None: ...
|
33
|
+
def HasField(self, field_name: typing_extensions.Literal["password", b"password", "username", b"username"]) -> builtins.bool: ...
|
34
|
+
def ClearField(self, field_name: typing_extensions.Literal["password", b"password", "username", b"username"]) -> None: ...
|
35
|
+
|
36
|
+
global___BasicAuth = BasicAuth
|
@@ -0,0 +1,55 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
3
|
+
# source: frogml_proto.qwak.administration/runtime_configuration/v0/data_catalog_config.proto
|
4
|
+
"""Generated protocol buffer code."""
|
5
|
+
from google.protobuf import descriptor as _descriptor
|
6
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
7
|
+
from google.protobuf import message as _message
|
8
|
+
from google.protobuf import reflection as _reflection
|
9
|
+
from google.protobuf import symbol_database as _symbol_database
|
10
|
+
# @@protoc_insertion_point(imports)
|
11
|
+
|
12
|
+
_sym_db = _symbol_database.Default()
|
13
|
+
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\nFqwak/administration/runtime_configuration/v0/data_catalog_config.proto\x12@qwak.administration.runtime_configuration.v0.data_catalog_config\"\xf3\x01\n\x18\x44\x61taCatalogConfiguration\x12\x63\n\x04glue\x18\x01 \x01(\x0b\x32S.qwak.administration.runtime_configuration.v0.data_catalog_config.GlueConfigurationH\x00\x12j\n\x08\x62ig_lake\x18\x02 \x01(\x0b\x32V.qwak.administration.runtime_configuration.v0.data_catalog_config.BigLakeConfigurationH\x00\x42\x06\n\x04type\"}\n\x14\x42igLakeConfiguration\x12\x12\n\nproject_id\x18\x01 \x01(\t\x12 \n\x18\x62ig_lake_connection_name\x18\x02 \x01(\t\x12\x19\n\x11\x62ig_lake_location\x18\x03 \x01(\t\x12\x14\n\x0c\x63\x61talog_name\x18\x04 \x01(\t\"\x13\n\x11GlueConfigurationB\xe9\x01\n9com.jfrog.ml.runtime_configuration.v0.data_catalog_configP\x01Z\xa9\x01github.com/qwak-ai/qwak-platform/services/core/java/user-management/user-management-api/pb/qwak/administration/runtime_configuration/v0/external;runtime_configuration_v0b\x06proto3')
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
_DATACATALOGCONFIGURATION = DESCRIPTOR.message_types_by_name['DataCatalogConfiguration']
|
22
|
+
_BIGLAKECONFIGURATION = DESCRIPTOR.message_types_by_name['BigLakeConfiguration']
|
23
|
+
_GLUECONFIGURATION = DESCRIPTOR.message_types_by_name['GlueConfiguration']
|
24
|
+
DataCatalogConfiguration = _reflection.GeneratedProtocolMessageType('DataCatalogConfiguration', (_message.Message,), {
|
25
|
+
'DESCRIPTOR' : _DATACATALOGCONFIGURATION,
|
26
|
+
'__module__' : 'qwak.administration.runtime_configuration.v0.data_catalog_config_pb2'
|
27
|
+
# @@protoc_insertion_point(class_scope:qwak.administration.runtime_configuration.v0.data_catalog_config.DataCatalogConfiguration)
|
28
|
+
})
|
29
|
+
_sym_db.RegisterMessage(DataCatalogConfiguration)
|
30
|
+
|
31
|
+
BigLakeConfiguration = _reflection.GeneratedProtocolMessageType('BigLakeConfiguration', (_message.Message,), {
|
32
|
+
'DESCRIPTOR' : _BIGLAKECONFIGURATION,
|
33
|
+
'__module__' : 'qwak.administration.runtime_configuration.v0.data_catalog_config_pb2'
|
34
|
+
# @@protoc_insertion_point(class_scope:qwak.administration.runtime_configuration.v0.data_catalog_config.BigLakeConfiguration)
|
35
|
+
})
|
36
|
+
_sym_db.RegisterMessage(BigLakeConfiguration)
|
37
|
+
|
38
|
+
GlueConfiguration = _reflection.GeneratedProtocolMessageType('GlueConfiguration', (_message.Message,), {
|
39
|
+
'DESCRIPTOR' : _GLUECONFIGURATION,
|
40
|
+
'__module__' : 'qwak.administration.runtime_configuration.v0.data_catalog_config_pb2'
|
41
|
+
# @@protoc_insertion_point(class_scope:qwak.administration.runtime_configuration.v0.data_catalog_config.GlueConfiguration)
|
42
|
+
})
|
43
|
+
_sym_db.RegisterMessage(GlueConfiguration)
|
44
|
+
|
45
|
+
if _descriptor._USE_C_DESCRIPTORS == False:
|
46
|
+
|
47
|
+
DESCRIPTOR._options = None
|
48
|
+
DESCRIPTOR._serialized_options = b'\n9com.jfrog.ml.runtime_configuration.v0.data_catalog_configP\001Z\251\001github.com/qwak-ai/qwak-platform/services/core/java/user-management/user-management-api/pb/qwak/administration/runtime_configuration/v0/external;runtime_configuration_v0'
|
49
|
+
_DATACATALOGCONFIGURATION._serialized_start=141
|
50
|
+
_DATACATALOGCONFIGURATION._serialized_end=384
|
51
|
+
_BIGLAKECONFIGURATION._serialized_start=386
|
52
|
+
_BIGLAKECONFIGURATION._serialized_end=511
|
53
|
+
_GLUECONFIGURATION._serialized_start=513
|
54
|
+
_GLUECONFIGURATION._serialized_end=532
|
55
|
+
# @@protoc_insertion_point(module_scope)
|
@@ -0,0 +1,68 @@
|
|
1
|
+
"""
|
2
|
+
@generated by mypy-protobuf. Do not edit manually!
|
3
|
+
isort:skip_file
|
4
|
+
"""
|
5
|
+
import builtins
|
6
|
+
import google.protobuf.descriptor
|
7
|
+
import google.protobuf.message
|
8
|
+
import sys
|
9
|
+
|
10
|
+
if sys.version_info >= (3, 8):
|
11
|
+
import typing as typing_extensions
|
12
|
+
else:
|
13
|
+
import typing_extensions
|
14
|
+
|
15
|
+
DESCRIPTOR: google.protobuf.descriptor.FileDescriptor
|
16
|
+
|
17
|
+
class DataCatalogConfiguration(google.protobuf.message.Message):
|
18
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
19
|
+
|
20
|
+
GLUE_FIELD_NUMBER: builtins.int
|
21
|
+
BIG_LAKE_FIELD_NUMBER: builtins.int
|
22
|
+
@property
|
23
|
+
def glue(self) -> global___GlueConfiguration: ...
|
24
|
+
@property
|
25
|
+
def big_lake(self) -> global___BigLakeConfiguration: ...
|
26
|
+
def __init__(
|
27
|
+
self,
|
28
|
+
*,
|
29
|
+
glue: global___GlueConfiguration | None = ...,
|
30
|
+
big_lake: global___BigLakeConfiguration | None = ...,
|
31
|
+
) -> None: ...
|
32
|
+
def HasField(self, field_name: typing_extensions.Literal["big_lake", b"big_lake", "glue", b"glue", "type", b"type"]) -> builtins.bool: ...
|
33
|
+
def ClearField(self, field_name: typing_extensions.Literal["big_lake", b"big_lake", "glue", b"glue", "type", b"type"]) -> None: ...
|
34
|
+
def WhichOneof(self, oneof_group: typing_extensions.Literal["type", b"type"]) -> typing_extensions.Literal["glue", "big_lake"] | None: ...
|
35
|
+
|
36
|
+
global___DataCatalogConfiguration = DataCatalogConfiguration
|
37
|
+
|
38
|
+
class BigLakeConfiguration(google.protobuf.message.Message):
|
39
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
40
|
+
|
41
|
+
PROJECT_ID_FIELD_NUMBER: builtins.int
|
42
|
+
BIG_LAKE_CONNECTION_NAME_FIELD_NUMBER: builtins.int
|
43
|
+
BIG_LAKE_LOCATION_FIELD_NUMBER: builtins.int
|
44
|
+
CATALOG_NAME_FIELD_NUMBER: builtins.int
|
45
|
+
project_id: builtins.str
|
46
|
+
big_lake_connection_name: builtins.str
|
47
|
+
big_lake_location: builtins.str
|
48
|
+
catalog_name: builtins.str
|
49
|
+
def __init__(
|
50
|
+
self,
|
51
|
+
*,
|
52
|
+
project_id: builtins.str = ...,
|
53
|
+
big_lake_connection_name: builtins.str = ...,
|
54
|
+
big_lake_location: builtins.str = ...,
|
55
|
+
catalog_name: builtins.str = ...,
|
56
|
+
) -> None: ...
|
57
|
+
def ClearField(self, field_name: typing_extensions.Literal["big_lake_connection_name", b"big_lake_connection_name", "big_lake_location", b"big_lake_location", "catalog_name", b"catalog_name", "project_id", b"project_id"]) -> None: ...
|
58
|
+
|
59
|
+
global___BigLakeConfiguration = BigLakeConfiguration
|
60
|
+
|
61
|
+
class GlueConfiguration(google.protobuf.message.Message):
|
62
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
63
|
+
|
64
|
+
def __init__(
|
65
|
+
self,
|
66
|
+
) -> None: ...
|
67
|
+
|
68
|
+
global___GlueConfiguration = GlueConfiguration
|
frogml_proto/qwak/administration/runtime_configuration/v0/external/elasticsearch_config_pb2.py
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
3
|
+
# source: frogml_proto.qwak.administration/runtime_configuration/v0/external/elasticsearch_config.proto
|
4
|
+
"""Generated protocol buffer code."""
|
5
|
+
from google.protobuf import descriptor as _descriptor
|
6
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
7
|
+
from google.protobuf import message as _message
|
8
|
+
from google.protobuf import reflection as _reflection
|
9
|
+
from google.protobuf import symbol_database as _symbol_database
|
10
|
+
# @@protoc_insertion_point(imports)
|
11
|
+
|
12
|
+
_sym_db = _symbol_database.Default()
|
13
|
+
|
14
|
+
|
15
|
+
from frogml_proto.qwak.administration.runtime_configuration.v0 import auth_pb2 as qwak_dot_administration_dot_runtime__configuration_dot_v0_dot_auth__pb2
|
16
|
+
|
17
|
+
|
18
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\nPqwak/administration/runtime_configuration/v0/external/elasticsearch_config.proto\x12Jqwak.administration.runtime_configuration.v0.external.elasticsearch_config\x1a\x37qwak/administration/runtime_configuration/v0/auth.proto\"\x97\x01\n\x1a\x45lasticsearchConfiguration\x12M\n\x05\x62\x61sic\x18\x01 \x01(\x0b\x32<.qwak.administration.runtime_configuration.v0.auth.BasicAuthH\x00\x12\x0f\n\x07\x61\x64\x64ress\x18\x02 \x01(\t\x12\x0c\n\x04port\x18\x03 \x01(\x05\x42\x0b\n\tauth_typeB\xf3\x01\nCcom.jfrog.ml.runtime_configuration.v0.external.elasticsearch_configP\x01Z\xa9\x01github.com/qwak-ai/qwak-platform/services/core/java/user-management/user-management-api/pb/qwak/administration/runtime_configuration/v0/external;runtime_configuration_v0b\x06proto3')
|
19
|
+
|
20
|
+
|
21
|
+
|
22
|
+
_ELASTICSEARCHCONFIGURATION = DESCRIPTOR.message_types_by_name['ElasticsearchConfiguration']
|
23
|
+
ElasticsearchConfiguration = _reflection.GeneratedProtocolMessageType('ElasticsearchConfiguration', (_message.Message,), {
|
24
|
+
'DESCRIPTOR' : _ELASTICSEARCHCONFIGURATION,
|
25
|
+
'__module__' : 'qwak.administration.runtime_configuration.v0.external.elasticsearch_config_pb2'
|
26
|
+
# @@protoc_insertion_point(class_scope:qwak.administration.runtime_configuration.v0.external.elasticsearch_config.ElasticsearchConfiguration)
|
27
|
+
})
|
28
|
+
_sym_db.RegisterMessage(ElasticsearchConfiguration)
|
29
|
+
|
30
|
+
if _descriptor._USE_C_DESCRIPTORS == False:
|
31
|
+
|
32
|
+
DESCRIPTOR._options = None
|
33
|
+
DESCRIPTOR._serialized_options = b'\nCcom.jfrog.ml.runtime_configuration.v0.external.elasticsearch_configP\001Z\251\001github.com/qwak-ai/qwak-platform/services/core/java/user-management/user-management-api/pb/qwak/administration/runtime_configuration/v0/external;runtime_configuration_v0'
|
34
|
+
_ELASTICSEARCHCONFIGURATION._serialized_start=218
|
35
|
+
_ELASTICSEARCHCONFIGURATION._serialized_end=369
|
36
|
+
# @@protoc_insertion_point(module_scope)
|
frogml_proto/qwak/administration/runtime_configuration/v0/external/elasticsearch_config_pb2.pyi
ADDED
@@ -0,0 +1,39 @@
|
|
1
|
+
"""
|
2
|
+
@generated by mypy-protobuf. Do not edit manually!
|
3
|
+
isort:skip_file
|
4
|
+
"""
|
5
|
+
import builtins
|
6
|
+
import google.protobuf.descriptor
|
7
|
+
import google.protobuf.message
|
8
|
+
import frogml_proto.qwak.administration.runtime_configuration.v0.auth_pb2
|
9
|
+
import sys
|
10
|
+
|
11
|
+
if sys.version_info >= (3, 8):
|
12
|
+
import typing as typing_extensions
|
13
|
+
else:
|
14
|
+
import typing_extensions
|
15
|
+
|
16
|
+
DESCRIPTOR: google.protobuf.descriptor.FileDescriptor
|
17
|
+
|
18
|
+
class ElasticsearchConfiguration(google.protobuf.message.Message):
|
19
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
20
|
+
|
21
|
+
BASIC_FIELD_NUMBER: builtins.int
|
22
|
+
ADDRESS_FIELD_NUMBER: builtins.int
|
23
|
+
PORT_FIELD_NUMBER: builtins.int
|
24
|
+
@property
|
25
|
+
def basic(self) -> frogml_proto.qwak.administration.runtime_configuration.v0.auth_pb2.BasicAuth: ...
|
26
|
+
address: builtins.str
|
27
|
+
port: builtins.int
|
28
|
+
def __init__(
|
29
|
+
self,
|
30
|
+
*,
|
31
|
+
basic: frogml_proto.qwak.administration.runtime_configuration.v0.auth_pb2.BasicAuth | None = ...,
|
32
|
+
address: builtins.str = ...,
|
33
|
+
port: builtins.int = ...,
|
34
|
+
) -> None: ...
|
35
|
+
def HasField(self, field_name: typing_extensions.Literal["auth_type", b"auth_type", "basic", b"basic"]) -> builtins.bool: ...
|
36
|
+
def ClearField(self, field_name: typing_extensions.Literal["address", b"address", "auth_type", b"auth_type", "basic", b"basic", "port", b"port"]) -> None: ...
|
37
|
+
def WhichOneof(self, oneof_group: typing_extensions.Literal["auth_type", b"auth_type"]) -> typing_extensions.Literal["basic"] | None: ...
|
38
|
+
|
39
|
+
global___ElasticsearchConfiguration = ElasticsearchConfiguration
|