pycarlo 0.10.165__tar.gz → 0.10.167__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of pycarlo might be problematic. Click here for more details.

Files changed (93) hide show
  1. {pycarlo-0.10.165 → pycarlo-0.10.167}/PKG-INFO +1 -1
  2. {pycarlo-0.10.165 → pycarlo-0.10.167}/pycarlo/lib/schema.json +177 -0
  3. {pycarlo-0.10.165 → pycarlo-0.10.167}/pycarlo/lib/schema.py +96 -2
  4. {pycarlo-0.10.165 → pycarlo-0.10.167}/pycarlo.egg-info/PKG-INFO +1 -1
  5. {pycarlo-0.10.165 → pycarlo-0.10.167}/.circleci/README.md +0 -0
  6. {pycarlo-0.10.165 → pycarlo-0.10.167}/.circleci/config.yml +0 -0
  7. {pycarlo-0.10.165 → pycarlo-0.10.167}/.coveragerc +0 -0
  8. {pycarlo-0.10.165 → pycarlo-0.10.167}/.github/workflows/release.yml +0 -0
  9. {pycarlo-0.10.165 → pycarlo-0.10.167}/.gitignore +0 -0
  10. {pycarlo-0.10.165 → pycarlo-0.10.167}/.pre-commit-config.yaml +0 -0
  11. {pycarlo-0.10.165 → pycarlo-0.10.167}/LICENSE +0 -0
  12. {pycarlo-0.10.165 → pycarlo-0.10.167}/Makefile +0 -0
  13. {pycarlo-0.10.165 → pycarlo-0.10.167}/README.md +0 -0
  14. {pycarlo-0.10.165 → pycarlo-0.10.167}/examples/sample_circuit_breaker.py +0 -0
  15. {pycarlo-0.10.165 → pycarlo-0.10.167}/examples/sample_insight_upload.py +0 -0
  16. {pycarlo-0.10.165 → pycarlo-0.10.167}/pycarlo/__init__.py +0 -0
  17. {pycarlo-0.10.165 → pycarlo-0.10.167}/pycarlo/common/__init__.py +0 -0
  18. {pycarlo-0.10.165 → pycarlo-0.10.167}/pycarlo/common/errors.py +0 -0
  19. {pycarlo-0.10.165 → pycarlo-0.10.167}/pycarlo/common/files.py +0 -0
  20. {pycarlo-0.10.165 → pycarlo-0.10.167}/pycarlo/common/http.py +0 -0
  21. {pycarlo-0.10.165 → pycarlo-0.10.167}/pycarlo/common/mcon.py +0 -0
  22. {pycarlo-0.10.165 → pycarlo-0.10.167}/pycarlo/common/retries.py +0 -0
  23. {pycarlo-0.10.165 → pycarlo-0.10.167}/pycarlo/common/settings.py +0 -0
  24. {pycarlo-0.10.165 → pycarlo-0.10.167}/pycarlo/common/utils.py +0 -0
  25. {pycarlo-0.10.165 → pycarlo-0.10.167}/pycarlo/core/__init__.py +0 -0
  26. {pycarlo-0.10.165 → pycarlo-0.10.167}/pycarlo/core/client.py +0 -0
  27. {pycarlo-0.10.165 → pycarlo-0.10.167}/pycarlo/core/endpoint.py +0 -0
  28. {pycarlo-0.10.165 → pycarlo-0.10.167}/pycarlo/core/operations.py +0 -0
  29. {pycarlo-0.10.165 → pycarlo-0.10.167}/pycarlo/core/session.py +0 -0
  30. {pycarlo-0.10.165 → pycarlo-0.10.167}/pycarlo/features/__init__.py +0 -0
  31. {pycarlo-0.10.165 → pycarlo-0.10.167}/pycarlo/features/circuit_breakers/__init__.py +0 -0
  32. {pycarlo-0.10.165 → pycarlo-0.10.167}/pycarlo/features/circuit_breakers/exceptions.py +0 -0
  33. {pycarlo-0.10.165 → pycarlo-0.10.167}/pycarlo/features/circuit_breakers/service.py +0 -0
  34. {pycarlo-0.10.165 → pycarlo-0.10.167}/pycarlo/features/dbt/__init__.py +0 -0
  35. {pycarlo-0.10.165 → pycarlo-0.10.167}/pycarlo/features/dbt/dbt_importer.py +0 -0
  36. {pycarlo-0.10.165 → pycarlo-0.10.167}/pycarlo/features/dbt/queries.py +0 -0
  37. {pycarlo-0.10.165 → pycarlo-0.10.167}/pycarlo/features/exceptions.py +0 -0
  38. {pycarlo-0.10.165 → pycarlo-0.10.167}/pycarlo/features/metadata/__init__.py +0 -0
  39. {pycarlo-0.10.165 → pycarlo-0.10.167}/pycarlo/features/metadata/allow_block_list.py +0 -0
  40. {pycarlo-0.10.165 → pycarlo-0.10.167}/pycarlo/features/metadata/metadata_filters_container.py +0 -0
  41. {pycarlo-0.10.165 → pycarlo-0.10.167}/pycarlo/features/pii/__init__.py +0 -0
  42. {pycarlo-0.10.165 → pycarlo-0.10.167}/pycarlo/features/pii/constants.py +0 -0
  43. {pycarlo-0.10.165 → pycarlo-0.10.167}/pycarlo/features/pii/pii_filterer.py +0 -0
  44. {pycarlo-0.10.165 → pycarlo-0.10.167}/pycarlo/features/pii/queries.py +0 -0
  45. {pycarlo-0.10.165 → pycarlo-0.10.167}/pycarlo/features/pii/service.py +0 -0
  46. {pycarlo-0.10.165 → pycarlo-0.10.167}/pycarlo/features/user/__init__.py +0 -0
  47. {pycarlo-0.10.165 → pycarlo-0.10.167}/pycarlo/features/user/exceptions.py +0 -0
  48. {pycarlo-0.10.165 → pycarlo-0.10.167}/pycarlo/features/user/models.py +0 -0
  49. {pycarlo-0.10.165 → pycarlo-0.10.167}/pycarlo/features/user/queries.py +0 -0
  50. {pycarlo-0.10.165 → pycarlo-0.10.167}/pycarlo/features/user/service.py +0 -0
  51. {pycarlo-0.10.165 → pycarlo-0.10.167}/pycarlo/lib/README.md +0 -0
  52. {pycarlo-0.10.165 → pycarlo-0.10.167}/pycarlo/lib/__init__.py +0 -0
  53. {pycarlo-0.10.165 → pycarlo-0.10.167}/pycarlo.egg-info/SOURCES.txt +0 -0
  54. {pycarlo-0.10.165 → pycarlo-0.10.167}/pycarlo.egg-info/dependency_links.txt +0 -0
  55. {pycarlo-0.10.165 → pycarlo-0.10.167}/pycarlo.egg-info/requires.txt +0 -0
  56. {pycarlo-0.10.165 → pycarlo-0.10.167}/pycarlo.egg-info/top_level.txt +0 -0
  57. {pycarlo-0.10.165 → pycarlo-0.10.167}/pyproject.toml +0 -0
  58. {pycarlo-0.10.165 → pycarlo-0.10.167}/requirements-ci.txt +0 -0
  59. {pycarlo-0.10.165 → pycarlo-0.10.167}/requirements-dev.txt +0 -0
  60. {pycarlo-0.10.165 → pycarlo-0.10.167}/requirements.txt +0 -0
  61. {pycarlo-0.10.165 → pycarlo-0.10.167}/setup.cfg +0 -0
  62. {pycarlo-0.10.165 → pycarlo-0.10.167}/setup.py +0 -0
  63. {pycarlo-0.10.165 → pycarlo-0.10.167}/tests/__init__.py +0 -0
  64. {pycarlo-0.10.165 → pycarlo-0.10.167}/tests/common/__init__.py +0 -0
  65. {pycarlo-0.10.165 → pycarlo-0.10.167}/tests/common/data.json +0 -0
  66. {pycarlo-0.10.165 → pycarlo-0.10.167}/tests/common/test_files.py +0 -0
  67. {pycarlo-0.10.165 → pycarlo-0.10.167}/tests/common/test_http.py +0 -0
  68. {pycarlo-0.10.165 → pycarlo-0.10.167}/tests/common/test_mcon.py +0 -0
  69. {pycarlo-0.10.165 → pycarlo-0.10.167}/tests/common/test_retries.py +0 -0
  70. {pycarlo-0.10.165 → pycarlo-0.10.167}/tests/common/test_utils.py +0 -0
  71. {pycarlo-0.10.165 → pycarlo-0.10.167}/tests/features/__init__.py +0 -0
  72. {pycarlo-0.10.165 → pycarlo-0.10.167}/tests/features/circuit_breakers/__init__.py +0 -0
  73. {pycarlo-0.10.165 → pycarlo-0.10.167}/tests/features/circuit_breakers/test_service.py +0 -0
  74. {pycarlo-0.10.165 → pycarlo-0.10.167}/tests/features/dbt/__init__.py +0 -0
  75. {pycarlo-0.10.165 → pycarlo-0.10.167}/tests/features/dbt/sample_logs.txt +0 -0
  76. {pycarlo-0.10.165 → pycarlo-0.10.167}/tests/features/dbt/sample_manifest.json +0 -0
  77. {pycarlo-0.10.165 → pycarlo-0.10.167}/tests/features/dbt/sample_run_results.json +0 -0
  78. {pycarlo-0.10.165 → pycarlo-0.10.167}/tests/features/dbt/test_dbt_importer.py +0 -0
  79. {pycarlo-0.10.165 → pycarlo-0.10.167}/tests/features/metadata/test_dataset_filtering.py +0 -0
  80. {pycarlo-0.10.165 → pycarlo-0.10.167}/tests/features/pii/sample_events/sample_md_events_01.json +0 -0
  81. {pycarlo-0.10.165 → pycarlo-0.10.167}/tests/features/pii/sample_events/sample_md_events_02.json +0 -0
  82. {pycarlo-0.10.165 → pycarlo-0.10.167}/tests/features/pii/test_pii_filtering.py +0 -0
  83. {pycarlo-0.10.165 → pycarlo-0.10.167}/tests/features/user/__init__.py +0 -0
  84. {pycarlo-0.10.165 → pycarlo-0.10.167}/tests/features/user/test_user_service.py +0 -0
  85. {pycarlo-0.10.165 → pycarlo-0.10.167}/tests/test_client.py +0 -0
  86. {pycarlo-0.10.165 → pycarlo-0.10.167}/tests/test_operations.py +0 -0
  87. {pycarlo-0.10.165 → pycarlo-0.10.167}/tests/test_retry_decorator.py +0 -0
  88. {pycarlo-0.10.165 → pycarlo-0.10.167}/tests/test_session.py +0 -0
  89. {pycarlo-0.10.165 → pycarlo-0.10.167}/utils/env.sh +0 -0
  90. {pycarlo-0.10.165 → pycarlo-0.10.167}/utils/generate.py +0 -0
  91. {pycarlo-0.10.165 → pycarlo-0.10.167}/utils/sample.env +0 -0
  92. {pycarlo-0.10.165 → pycarlo-0.10.167}/utils/sanity.py +0 -0
  93. {pycarlo-0.10.165 → pycarlo-0.10.167}/utils/vars.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pycarlo
3
- Version: 0.10.165
3
+ Version: 0.10.167
4
4
  Summary: Monte Carlo's Python SDK
5
5
  Home-page: https://www.montecarlodata.com/
6
6
  Author: Monte Carlo Data, Inc
@@ -172462,6 +172462,57 @@
172462
172462
  "ofType": null
172463
172463
  }
172464
172464
  },
172465
+ {
172466
+ "args": [
172467
+ {
172468
+ "defaultValue": null,
172469
+ "description": "Connection parameters.",
172470
+ "name": "connectionDetails",
172471
+ "type": {
172472
+ "kind": "NON_NULL",
172473
+ "name": null,
172474
+ "ofType": {
172475
+ "kind": "INPUT_OBJECT",
172476
+ "name": "DbtCloudConnectionDetails",
172477
+ "ofType": null
172478
+ }
172479
+ }
172480
+ },
172481
+ {
172482
+ "defaultValue": null,
172483
+ "description": "Common options for integration tests.",
172484
+ "name": "connectionOptions",
172485
+ "type": {
172486
+ "kind": "INPUT_OBJECT",
172487
+ "name": "ConnectionTestOptions",
172488
+ "ofType": null
172489
+ }
172490
+ },
172491
+ {
172492
+ "defaultValue": null,
172493
+ "description": "Name of the validation test that should be run.",
172494
+ "name": "validationName",
172495
+ "type": {
172496
+ "kind": "NON_NULL",
172497
+ "name": null,
172498
+ "ofType": {
172499
+ "kind": "SCALAR",
172500
+ "name": "String",
172501
+ "ofType": null
172502
+ }
172503
+ }
172504
+ }
172505
+ ],
172506
+ "deprecationReason": null,
172507
+ "description": "(experimental) Test dbt Cloud credentials",
172508
+ "isDeprecated": false,
172509
+ "name": "testDbtCloudCredentialsV2",
172510
+ "type": {
172511
+ "kind": "OBJECT",
172512
+ "name": "TestDbtCloudCredentialsV2",
172513
+ "ofType": null
172514
+ }
172515
+ },
172465
172516
  {
172466
172517
  "args": [
172467
172518
  {
@@ -178820,6 +178871,18 @@
178820
178871
  "name": "String",
178821
178872
  "ofType": null
178822
178873
  }
178874
+ },
178875
+ {
178876
+ "args": [],
178877
+ "deprecationReason": null,
178878
+ "description": "Data share organization identifier",
178879
+ "isDeprecated": false,
178880
+ "name": "organization",
178881
+ "type": {
178882
+ "kind": "SCALAR",
178883
+ "name": "String",
178884
+ "ofType": null
178885
+ }
178823
178886
  }
178824
178887
  ],
178825
178888
  "inputFields": null,
@@ -178925,6 +178988,16 @@
178925
178988
  "name": "String",
178926
178989
  "ofType": null
178927
178990
  }
178991
+ },
178992
+ {
178993
+ "defaultValue": null,
178994
+ "description": "Organization identifier",
178995
+ "name": "organization",
178996
+ "type": {
178997
+ "kind": "SCALAR",
178998
+ "name": "String",
178999
+ "ofType": null
179000
+ }
178928
179001
  }
178929
179002
  ],
178930
179003
  "interfaces": null,
@@ -193666,6 +193739,110 @@
193666
193739
  "name": "DecryptionServiceTypeEnum",
193667
193740
  "possibleTypes": null
193668
193741
  },
193742
+ {
193743
+ "description": "Test a dbt Cloud connection.",
193744
+ "enumValues": null,
193745
+ "fields": [
193746
+ {
193747
+ "args": [],
193748
+ "deprecationReason": null,
193749
+ "description": "Path to key for adding a connection. This key is only generated when calling the SAVE_CREDENTIALS validation.",
193750
+ "isDeprecated": false,
193751
+ "name": "key",
193752
+ "type": {
193753
+ "kind": "SCALAR",
193754
+ "name": "String",
193755
+ "ofType": null
193756
+ }
193757
+ },
193758
+ {
193759
+ "args": [],
193760
+ "deprecationReason": null,
193761
+ "description": "Result of the validation.",
193762
+ "isDeprecated": false,
193763
+ "name": "validationResult",
193764
+ "type": {
193765
+ "kind": "OBJECT",
193766
+ "name": "TestCredentialsV2Response",
193767
+ "ofType": null
193768
+ }
193769
+ }
193770
+ ],
193771
+ "inputFields": null,
193772
+ "interfaces": [],
193773
+ "kind": "OBJECT",
193774
+ "name": "TestDbtCloudCredentialsV2",
193775
+ "possibleTypes": null
193776
+ },
193777
+ {
193778
+ "description": null,
193779
+ "enumValues": null,
193780
+ "fields": null,
193781
+ "inputFields": [
193782
+ {
193783
+ "defaultValue": null,
193784
+ "description": "dbt Cloud API token",
193785
+ "name": "dbtCloudApiToken",
193786
+ "type": {
193787
+ "kind": "NON_NULL",
193788
+ "name": null,
193789
+ "ofType": {
193790
+ "kind": "SCALAR",
193791
+ "name": "String",
193792
+ "ofType": null
193793
+ }
193794
+ }
193795
+ },
193796
+ {
193797
+ "defaultValue": null,
193798
+ "description": "dbt Cloud account ID",
193799
+ "name": "dbtCloudAccountId",
193800
+ "type": {
193801
+ "kind": "NON_NULL",
193802
+ "name": null,
193803
+ "ofType": {
193804
+ "kind": "SCALAR",
193805
+ "name": "String",
193806
+ "ofType": null
193807
+ }
193808
+ }
193809
+ },
193810
+ {
193811
+ "defaultValue": null,
193812
+ "description": "dbt Cloud base URL",
193813
+ "name": "dbtCloudBaseUrl",
193814
+ "type": {
193815
+ "kind": "SCALAR",
193816
+ "name": "String",
193817
+ "ofType": null
193818
+ }
193819
+ },
193820
+ {
193821
+ "defaultValue": null,
193822
+ "description": "dbt Cloud webhook HMAC secret",
193823
+ "name": "dbtCloudWebhookHmacSecret",
193824
+ "type": {
193825
+ "kind": "SCALAR",
193826
+ "name": "String",
193827
+ "ofType": null
193828
+ }
193829
+ },
193830
+ {
193831
+ "defaultValue": null,
193832
+ "description": "dbt Cloud webhook ID",
193833
+ "name": "dbtCloudWebhookId",
193834
+ "type": {
193835
+ "kind": "SCALAR",
193836
+ "name": "String",
193837
+ "ofType": null
193838
+ }
193839
+ }
193840
+ ],
193841
+ "interfaces": null,
193842
+ "kind": "INPUT_OBJECT",
193843
+ "name": "DbtCloudConnectionDetails",
193844
+ "possibleTypes": null
193845
+ },
193669
193846
  {
193670
193847
  "description": "Uploads the result for a DAG run.",
193671
193848
  "enumValues": null,
@@ -6791,7 +6791,7 @@ class DataProfilerWidgetDataInput(sgqlc.types.Input):
6791
6791
 
6792
6792
  class DataShareInput(sgqlc.types.Input):
6793
6793
  __schema__ = schema
6794
- __field_names__ = ("type", "account", "region")
6794
+ __field_names__ = ("type", "account", "region", "organization")
6795
6795
  type = sgqlc.types.Field(DataShareType, graphql_name="type")
6796
6796
  """Type of data share (default: 'snowflake')"""
6797
6797
 
@@ -6801,6 +6801,9 @@ class DataShareInput(sgqlc.types.Input):
6801
6801
  region = sgqlc.types.Field(String, graphql_name="region")
6802
6802
  """Data share region (optional if account has only one)"""
6803
6803
 
6804
+ organization = sgqlc.types.Field(String, graphql_name="organization")
6805
+ """Organization identifier"""
6806
+
6804
6807
 
6805
6808
  class DataSourceSchemaInput(sgqlc.types.Input):
6806
6809
  __schema__ = schema
@@ -6972,6 +6975,37 @@ class DbtArtifactsInput(sgqlc.types.Input):
6972
6975
  """logs file name"""
6973
6976
 
6974
6977
 
6978
+ class DbtCloudConnectionDetails(sgqlc.types.Input):
6979
+ __schema__ = schema
6980
+ __field_names__ = (
6981
+ "dbt_cloud_api_token",
6982
+ "dbt_cloud_account_id",
6983
+ "dbt_cloud_base_url",
6984
+ "dbt_cloud_webhook_hmac_secret",
6985
+ "dbt_cloud_webhook_id",
6986
+ )
6987
+ dbt_cloud_api_token = sgqlc.types.Field(
6988
+ sgqlc.types.non_null(String), graphql_name="dbtCloudApiToken"
6989
+ )
6990
+ """dbt Cloud API token"""
6991
+
6992
+ dbt_cloud_account_id = sgqlc.types.Field(
6993
+ sgqlc.types.non_null(String), graphql_name="dbtCloudAccountId"
6994
+ )
6995
+ """dbt Cloud account ID"""
6996
+
6997
+ dbt_cloud_base_url = sgqlc.types.Field(String, graphql_name="dbtCloudBaseUrl")
6998
+ """dbt Cloud base URL"""
6999
+
7000
+ dbt_cloud_webhook_hmac_secret = sgqlc.types.Field(
7001
+ String, graphql_name="dbtCloudWebhookHmacSecret"
7002
+ )
7003
+ """dbt Cloud webhook HMAC secret"""
7004
+
7005
+ dbt_cloud_webhook_id = sgqlc.types.Field(String, graphql_name="dbtCloudWebhookId")
7006
+ """dbt Cloud webhook ID"""
7007
+
7008
+
6975
7009
  class DbtCloudUpdateConnectionDetails(sgqlc.types.Input):
6976
7010
  __schema__ = schema
6977
7011
  __field_names__ = (
@@ -17826,7 +17860,7 @@ class DataShareOutput(sgqlc.types.Type):
17826
17860
  """Data share configuration details"""
17827
17861
 
17828
17862
  __schema__ = schema
17829
- __field_names__ = ("type", "account", "region")
17863
+ __field_names__ = ("type", "account", "region", "organization")
17830
17864
  type = sgqlc.types.Field(String, graphql_name="type")
17831
17865
  """Type of data share (e.g., 'snowflake')"""
17832
17866
 
@@ -17836,6 +17870,9 @@ class DataShareOutput(sgqlc.types.Type):
17836
17870
  region = sgqlc.types.Field(String, graphql_name="region")
17837
17871
  """Data share region"""
17838
17872
 
17873
+ organization = sgqlc.types.Field(String, graphql_name="organization")
17874
+ """Data share organization identifier"""
17875
+
17839
17876
 
17840
17877
  class DataSourceEvaluationResult(sgqlc.types.Type):
17841
17878
  __schema__ = schema
@@ -25458,6 +25495,7 @@ class Mutation(sgqlc.types.Type):
25458
25495
  "test_informatica_credentials",
25459
25496
  "test_azure_data_factory_credentials",
25460
25497
  "test_self_hosted_credentials_v2",
25498
+ "test_dbt_cloud_credentials_v2",
25461
25499
  "upload_airflow_dag_result",
25462
25500
  "upload_airflow_task_result",
25463
25501
  "upload_airflow_sla_misses",
@@ -41336,6 +41374,46 @@ class Mutation(sgqlc.types.Type):
41336
41374
  should be run.
41337
41375
  """
41338
41376
 
41377
+ test_dbt_cloud_credentials_v2 = sgqlc.types.Field(
41378
+ "TestDbtCloudCredentialsV2",
41379
+ graphql_name="testDbtCloudCredentialsV2",
41380
+ args=sgqlc.types.ArgDict(
41381
+ (
41382
+ (
41383
+ "connection_details",
41384
+ sgqlc.types.Arg(
41385
+ sgqlc.types.non_null(DbtCloudConnectionDetails),
41386
+ graphql_name="connectionDetails",
41387
+ default=None,
41388
+ ),
41389
+ ),
41390
+ (
41391
+ "connection_options",
41392
+ sgqlc.types.Arg(
41393
+ ConnectionTestOptions, graphql_name="connectionOptions", default=None
41394
+ ),
41395
+ ),
41396
+ (
41397
+ "validation_name",
41398
+ sgqlc.types.Arg(
41399
+ sgqlc.types.non_null(String), graphql_name="validationName", default=None
41400
+ ),
41401
+ ),
41402
+ )
41403
+ ),
41404
+ )
41405
+ """(experimental) Test dbt Cloud credentials
41406
+
41407
+ Arguments:
41408
+
41409
+ * `connection_details` (`DbtCloudConnectionDetails!`): Connection
41410
+ parameters.
41411
+ * `connection_options` (`ConnectionTestOptions`): Common options
41412
+ for integration tests.
41413
+ * `validation_name` (`String!`): Name of the validation test that
41414
+ should be run.
41415
+ """
41416
+
41339
41417
  upload_airflow_dag_result = sgqlc.types.Field(
41340
41418
  "UploadAirflowDagResult",
41341
41419
  graphql_name="uploadAirflowDagResult",
@@ -65068,6 +65146,22 @@ class TestDbtCloudCredentials(sgqlc.types.Type):
65068
65146
  """Indicates whether the operation was completed successfully"""
65069
65147
 
65070
65148
 
65149
+ class TestDbtCloudCredentialsV2(sgqlc.types.Type):
65150
+ """Test a dbt Cloud connection."""
65151
+
65152
+ __schema__ = schema
65153
+ __field_names__ = ("key", "validation_result")
65154
+ key = sgqlc.types.Field(String, graphql_name="key")
65155
+ """Path to key for adding a connection. This key is only generated
65156
+ when calling the SAVE_CREDENTIALS validation.
65157
+ """
65158
+
65159
+ validation_result = sgqlc.types.Field(
65160
+ TestCredentialsV2Response, graphql_name="validationResult"
65161
+ )
65162
+ """Result of the validation."""
65163
+
65164
+
65071
65165
  class TestFivetranCredentials(sgqlc.types.Type):
65072
65166
  """Test a Fivetran connection"""
65073
65167
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pycarlo
3
- Version: 0.10.165
3
+ Version: 0.10.167
4
4
  Summary: Monte Carlo's Python SDK
5
5
  Home-page: https://www.montecarlodata.com/
6
6
  Author: Monte Carlo Data, Inc
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes