pycarlo 0.10.169__tar.gz → 0.10.171__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.169 → pycarlo-0.10.171}/PKG-INFO +1 -1
  2. {pycarlo-0.10.169 → pycarlo-0.10.171}/pycarlo/lib/schema.json +462 -0
  3. {pycarlo-0.10.169 → pycarlo-0.10.171}/pycarlo/lib/schema.py +242 -0
  4. {pycarlo-0.10.169 → pycarlo-0.10.171}/pycarlo.egg-info/PKG-INFO +1 -1
  5. {pycarlo-0.10.169 → pycarlo-0.10.171}/.circleci/README.md +0 -0
  6. {pycarlo-0.10.169 → pycarlo-0.10.171}/.circleci/config.yml +0 -0
  7. {pycarlo-0.10.169 → pycarlo-0.10.171}/.coveragerc +0 -0
  8. {pycarlo-0.10.169 → pycarlo-0.10.171}/.github/workflows/release.yml +0 -0
  9. {pycarlo-0.10.169 → pycarlo-0.10.171}/.gitignore +0 -0
  10. {pycarlo-0.10.169 → pycarlo-0.10.171}/.pre-commit-config.yaml +0 -0
  11. {pycarlo-0.10.169 → pycarlo-0.10.171}/LICENSE +0 -0
  12. {pycarlo-0.10.169 → pycarlo-0.10.171}/Makefile +0 -0
  13. {pycarlo-0.10.169 → pycarlo-0.10.171}/README.md +0 -0
  14. {pycarlo-0.10.169 → pycarlo-0.10.171}/examples/sample_circuit_breaker.py +0 -0
  15. {pycarlo-0.10.169 → pycarlo-0.10.171}/examples/sample_insight_upload.py +0 -0
  16. {pycarlo-0.10.169 → pycarlo-0.10.171}/pycarlo/__init__.py +0 -0
  17. {pycarlo-0.10.169 → pycarlo-0.10.171}/pycarlo/common/__init__.py +0 -0
  18. {pycarlo-0.10.169 → pycarlo-0.10.171}/pycarlo/common/errors.py +0 -0
  19. {pycarlo-0.10.169 → pycarlo-0.10.171}/pycarlo/common/files.py +0 -0
  20. {pycarlo-0.10.169 → pycarlo-0.10.171}/pycarlo/common/http.py +0 -0
  21. {pycarlo-0.10.169 → pycarlo-0.10.171}/pycarlo/common/mcon.py +0 -0
  22. {pycarlo-0.10.169 → pycarlo-0.10.171}/pycarlo/common/retries.py +0 -0
  23. {pycarlo-0.10.169 → pycarlo-0.10.171}/pycarlo/common/settings.py +0 -0
  24. {pycarlo-0.10.169 → pycarlo-0.10.171}/pycarlo/common/utils.py +0 -0
  25. {pycarlo-0.10.169 → pycarlo-0.10.171}/pycarlo/core/__init__.py +0 -0
  26. {pycarlo-0.10.169 → pycarlo-0.10.171}/pycarlo/core/client.py +0 -0
  27. {pycarlo-0.10.169 → pycarlo-0.10.171}/pycarlo/core/endpoint.py +0 -0
  28. {pycarlo-0.10.169 → pycarlo-0.10.171}/pycarlo/core/operations.py +0 -0
  29. {pycarlo-0.10.169 → pycarlo-0.10.171}/pycarlo/core/session.py +0 -0
  30. {pycarlo-0.10.169 → pycarlo-0.10.171}/pycarlo/features/__init__.py +0 -0
  31. {pycarlo-0.10.169 → pycarlo-0.10.171}/pycarlo/features/circuit_breakers/__init__.py +0 -0
  32. {pycarlo-0.10.169 → pycarlo-0.10.171}/pycarlo/features/circuit_breakers/exceptions.py +0 -0
  33. {pycarlo-0.10.169 → pycarlo-0.10.171}/pycarlo/features/circuit_breakers/service.py +0 -0
  34. {pycarlo-0.10.169 → pycarlo-0.10.171}/pycarlo/features/dbt/__init__.py +0 -0
  35. {pycarlo-0.10.169 → pycarlo-0.10.171}/pycarlo/features/dbt/dbt_importer.py +0 -0
  36. {pycarlo-0.10.169 → pycarlo-0.10.171}/pycarlo/features/dbt/queries.py +0 -0
  37. {pycarlo-0.10.169 → pycarlo-0.10.171}/pycarlo/features/exceptions.py +0 -0
  38. {pycarlo-0.10.169 → pycarlo-0.10.171}/pycarlo/features/metadata/__init__.py +0 -0
  39. {pycarlo-0.10.169 → pycarlo-0.10.171}/pycarlo/features/metadata/allow_block_list.py +0 -0
  40. {pycarlo-0.10.169 → pycarlo-0.10.171}/pycarlo/features/metadata/metadata_filters_container.py +0 -0
  41. {pycarlo-0.10.169 → pycarlo-0.10.171}/pycarlo/features/pii/__init__.py +0 -0
  42. {pycarlo-0.10.169 → pycarlo-0.10.171}/pycarlo/features/pii/constants.py +0 -0
  43. {pycarlo-0.10.169 → pycarlo-0.10.171}/pycarlo/features/pii/pii_filterer.py +0 -0
  44. {pycarlo-0.10.169 → pycarlo-0.10.171}/pycarlo/features/pii/queries.py +0 -0
  45. {pycarlo-0.10.169 → pycarlo-0.10.171}/pycarlo/features/pii/service.py +0 -0
  46. {pycarlo-0.10.169 → pycarlo-0.10.171}/pycarlo/features/user/__init__.py +0 -0
  47. {pycarlo-0.10.169 → pycarlo-0.10.171}/pycarlo/features/user/exceptions.py +0 -0
  48. {pycarlo-0.10.169 → pycarlo-0.10.171}/pycarlo/features/user/models.py +0 -0
  49. {pycarlo-0.10.169 → pycarlo-0.10.171}/pycarlo/features/user/queries.py +0 -0
  50. {pycarlo-0.10.169 → pycarlo-0.10.171}/pycarlo/features/user/service.py +0 -0
  51. {pycarlo-0.10.169 → pycarlo-0.10.171}/pycarlo/lib/README.md +0 -0
  52. {pycarlo-0.10.169 → pycarlo-0.10.171}/pycarlo/lib/__init__.py +0 -0
  53. {pycarlo-0.10.169 → pycarlo-0.10.171}/pycarlo.egg-info/SOURCES.txt +0 -0
  54. {pycarlo-0.10.169 → pycarlo-0.10.171}/pycarlo.egg-info/dependency_links.txt +0 -0
  55. {pycarlo-0.10.169 → pycarlo-0.10.171}/pycarlo.egg-info/requires.txt +0 -0
  56. {pycarlo-0.10.169 → pycarlo-0.10.171}/pycarlo.egg-info/top_level.txt +0 -0
  57. {pycarlo-0.10.169 → pycarlo-0.10.171}/pyproject.toml +0 -0
  58. {pycarlo-0.10.169 → pycarlo-0.10.171}/requirements-ci.txt +0 -0
  59. {pycarlo-0.10.169 → pycarlo-0.10.171}/requirements-dev.txt +0 -0
  60. {pycarlo-0.10.169 → pycarlo-0.10.171}/requirements.txt +0 -0
  61. {pycarlo-0.10.169 → pycarlo-0.10.171}/setup.cfg +0 -0
  62. {pycarlo-0.10.169 → pycarlo-0.10.171}/setup.py +0 -0
  63. {pycarlo-0.10.169 → pycarlo-0.10.171}/tests/__init__.py +0 -0
  64. {pycarlo-0.10.169 → pycarlo-0.10.171}/tests/common/__init__.py +0 -0
  65. {pycarlo-0.10.169 → pycarlo-0.10.171}/tests/common/data.json +0 -0
  66. {pycarlo-0.10.169 → pycarlo-0.10.171}/tests/common/test_files.py +0 -0
  67. {pycarlo-0.10.169 → pycarlo-0.10.171}/tests/common/test_http.py +0 -0
  68. {pycarlo-0.10.169 → pycarlo-0.10.171}/tests/common/test_mcon.py +0 -0
  69. {pycarlo-0.10.169 → pycarlo-0.10.171}/tests/common/test_retries.py +0 -0
  70. {pycarlo-0.10.169 → pycarlo-0.10.171}/tests/common/test_utils.py +0 -0
  71. {pycarlo-0.10.169 → pycarlo-0.10.171}/tests/features/__init__.py +0 -0
  72. {pycarlo-0.10.169 → pycarlo-0.10.171}/tests/features/circuit_breakers/__init__.py +0 -0
  73. {pycarlo-0.10.169 → pycarlo-0.10.171}/tests/features/circuit_breakers/test_service.py +0 -0
  74. {pycarlo-0.10.169 → pycarlo-0.10.171}/tests/features/dbt/__init__.py +0 -0
  75. {pycarlo-0.10.169 → pycarlo-0.10.171}/tests/features/dbt/sample_logs.txt +0 -0
  76. {pycarlo-0.10.169 → pycarlo-0.10.171}/tests/features/dbt/sample_manifest.json +0 -0
  77. {pycarlo-0.10.169 → pycarlo-0.10.171}/tests/features/dbt/sample_run_results.json +0 -0
  78. {pycarlo-0.10.169 → pycarlo-0.10.171}/tests/features/dbt/test_dbt_importer.py +0 -0
  79. {pycarlo-0.10.169 → pycarlo-0.10.171}/tests/features/metadata/test_dataset_filtering.py +0 -0
  80. {pycarlo-0.10.169 → pycarlo-0.10.171}/tests/features/pii/sample_events/sample_md_events_01.json +0 -0
  81. {pycarlo-0.10.169 → pycarlo-0.10.171}/tests/features/pii/sample_events/sample_md_events_02.json +0 -0
  82. {pycarlo-0.10.169 → pycarlo-0.10.171}/tests/features/pii/test_pii_filtering.py +0 -0
  83. {pycarlo-0.10.169 → pycarlo-0.10.171}/tests/features/user/__init__.py +0 -0
  84. {pycarlo-0.10.169 → pycarlo-0.10.171}/tests/features/user/test_user_service.py +0 -0
  85. {pycarlo-0.10.169 → pycarlo-0.10.171}/tests/test_client.py +0 -0
  86. {pycarlo-0.10.169 → pycarlo-0.10.171}/tests/test_operations.py +0 -0
  87. {pycarlo-0.10.169 → pycarlo-0.10.171}/tests/test_retry_decorator.py +0 -0
  88. {pycarlo-0.10.169 → pycarlo-0.10.171}/tests/test_session.py +0 -0
  89. {pycarlo-0.10.169 → pycarlo-0.10.171}/utils/env.sh +0 -0
  90. {pycarlo-0.10.169 → pycarlo-0.10.171}/utils/generate.py +0 -0
  91. {pycarlo-0.10.169 → pycarlo-0.10.171}/utils/sample.env +0 -0
  92. {pycarlo-0.10.169 → pycarlo-0.10.171}/utils/sanity.py +0 -0
  93. {pycarlo-0.10.169 → pycarlo-0.10.171}/utils/vars.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pycarlo
3
- Version: 0.10.169
3
+ Version: 0.10.171
4
4
  Summary: Monte Carlo's Python SDK
5
5
  Home-page: https://www.montecarlodata.com/
6
6
  Author: Monte Carlo Data, Inc
@@ -29761,6 +29761,95 @@
29761
29761
  "ofType": null
29762
29762
  }
29763
29763
  },
29764
+ {
29765
+ "args": [
29766
+ {
29767
+ "defaultValue": null,
29768
+ "description": "Monitor uuid",
29769
+ "name": "monitorUuid",
29770
+ "type": {
29771
+ "kind": "NON_NULL",
29772
+ "name": null,
29773
+ "ofType": {
29774
+ "kind": "SCALAR",
29775
+ "name": "String",
29776
+ "ofType": null
29777
+ }
29778
+ }
29779
+ }
29780
+ ],
29781
+ "deprecationReason": null,
29782
+ "description": "(experimental) Collibra monitor note. Has extra debug information about table relationships if they could not be found",
29783
+ "isDeprecated": false,
29784
+ "name": "getCollibraMonitorNote",
29785
+ "type": {
29786
+ "kind": "OBJECT",
29787
+ "name": "CollibraMonitorNoteResponse",
29788
+ "ofType": null
29789
+ }
29790
+ },
29791
+ {
29792
+ "args": [
29793
+ {
29794
+ "defaultValue": null,
29795
+ "description": "Monitor uuid",
29796
+ "name": "monitorUuid",
29797
+ "type": {
29798
+ "kind": "NON_NULL",
29799
+ "name": null,
29800
+ "ofType": {
29801
+ "kind": "SCALAR",
29802
+ "name": "String",
29803
+ "ofType": null
29804
+ }
29805
+ }
29806
+ }
29807
+ ],
29808
+ "deprecationReason": null,
29809
+ "description": "(experimental) Get table search names for a monitor in Collibra format",
29810
+ "isDeprecated": false,
29811
+ "name": "getCollibraMonitorTableSearchNames",
29812
+ "type": {
29813
+ "kind": "LIST",
29814
+ "name": null,
29815
+ "ofType": {
29816
+ "kind": "SCALAR",
29817
+ "name": "String",
29818
+ "ofType": null
29819
+ }
29820
+ }
29821
+ },
29822
+ {
29823
+ "args": [
29824
+ {
29825
+ "defaultValue": null,
29826
+ "description": "Table search name in Collibra format (e.g., '>project>dataset>table')",
29827
+ "name": "tableSearchName",
29828
+ "type": {
29829
+ "kind": "NON_NULL",
29830
+ "name": null,
29831
+ "ofType": {
29832
+ "kind": "SCALAR",
29833
+ "name": "String",
29834
+ "ofType": null
29835
+ }
29836
+ }
29837
+ }
29838
+ ],
29839
+ "deprecationReason": null,
29840
+ "description": "(experimental) Get Collibra domain information for a table search name",
29841
+ "isDeprecated": false,
29842
+ "name": "getCollibraDomainsForTableSearchName",
29843
+ "type": {
29844
+ "kind": "LIST",
29845
+ "name": null,
29846
+ "ofType": {
29847
+ "kind": "OBJECT",
29848
+ "name": "CollibraDomainSearchResponse",
29849
+ "ofType": null
29850
+ }
29851
+ }
29852
+ },
29764
29853
  {
29765
29854
  "args": [
29766
29855
  {
@@ -30367,6 +30456,33 @@
30367
30456
  }
30368
30457
  }
30369
30458
  },
30459
+ {
30460
+ "args": [
30461
+ {
30462
+ "defaultValue": null,
30463
+ "description": "Type of AI agent to retrieve configuration for",
30464
+ "name": "agentType",
30465
+ "type": {
30466
+ "kind": "NON_NULL",
30467
+ "name": null,
30468
+ "ofType": {
30469
+ "kind": "ENUM",
30470
+ "name": "AiAgentType",
30471
+ "ofType": null
30472
+ }
30473
+ }
30474
+ }
30475
+ ],
30476
+ "deprecationReason": null,
30477
+ "description": "(experimental) Get AI agent configuration for the account",
30478
+ "isDeprecated": false,
30479
+ "name": "getAiAgentConfig",
30480
+ "type": {
30481
+ "kind": "OBJECT",
30482
+ "name": "AiAgent",
30483
+ "ofType": null
30484
+ }
30485
+ },
30370
30486
  {
30371
30487
  "args": [
30372
30488
  {
@@ -146986,6 +147102,124 @@
146986
147102
  "name": "CollibraPingResponse",
146987
147103
  "possibleTypes": null
146988
147104
  },
147105
+ {
147106
+ "description": "Collibra monitor note response. ",
147107
+ "enumValues": null,
147108
+ "fields": [
147109
+ {
147110
+ "args": [],
147111
+ "deprecationReason": null,
147112
+ "description": "Monitor uuid",
147113
+ "isDeprecated": false,
147114
+ "name": "monitorUuid",
147115
+ "type": {
147116
+ "kind": "NON_NULL",
147117
+ "name": null,
147118
+ "ofType": {
147119
+ "kind": "SCALAR",
147120
+ "name": "String",
147121
+ "ofType": null
147122
+ }
147123
+ }
147124
+ },
147125
+ {
147126
+ "args": [],
147127
+ "deprecationReason": null,
147128
+ "description": "Collibra note",
147129
+ "isDeprecated": false,
147130
+ "name": "collibraNote",
147131
+ "type": {
147132
+ "kind": "SCALAR",
147133
+ "name": "String",
147134
+ "ofType": null
147135
+ }
147136
+ }
147137
+ ],
147138
+ "inputFields": null,
147139
+ "interfaces": [],
147140
+ "kind": "OBJECT",
147141
+ "name": "CollibraMonitorNoteResponse",
147142
+ "possibleTypes": null
147143
+ },
147144
+ {
147145
+ "description": "Collibra domain search response for table search name",
147146
+ "enumValues": null,
147147
+ "fields": [
147148
+ {
147149
+ "args": [],
147150
+ "deprecationReason": null,
147151
+ "description": "Collibra table asset ID",
147152
+ "isDeprecated": false,
147153
+ "name": "collibraTableAssetId",
147154
+ "type": {
147155
+ "kind": "NON_NULL",
147156
+ "name": null,
147157
+ "ofType": {
147158
+ "kind": "SCALAR",
147159
+ "name": "String",
147160
+ "ofType": null
147161
+ }
147162
+ }
147163
+ },
147164
+ {
147165
+ "args": [],
147166
+ "deprecationReason": null,
147167
+ "description": "Collibra table asset domain ID",
147168
+ "isDeprecated": false,
147169
+ "name": "collibraTableAssetDomainId",
147170
+ "type": {
147171
+ "kind": "NON_NULL",
147172
+ "name": null,
147173
+ "ofType": {
147174
+ "kind": "SCALAR",
147175
+ "name": "String",
147176
+ "ofType": null
147177
+ }
147178
+ }
147179
+ },
147180
+ {
147181
+ "args": [],
147182
+ "deprecationReason": null,
147183
+ "description": "Collibra schema asset ID",
147184
+ "isDeprecated": false,
147185
+ "name": "collibraSchemaAssetId",
147186
+ "type": {
147187
+ "kind": "SCALAR",
147188
+ "name": "String",
147189
+ "ofType": null
147190
+ }
147191
+ },
147192
+ {
147193
+ "args": [],
147194
+ "deprecationReason": null,
147195
+ "description": "Collibra database asset ID",
147196
+ "isDeprecated": false,
147197
+ "name": "collibraDatabaseAssetId",
147198
+ "type": {
147199
+ "kind": "SCALAR",
147200
+ "name": "String",
147201
+ "ofType": null
147202
+ }
147203
+ },
147204
+ {
147205
+ "args": [],
147206
+ "deprecationReason": null,
147207
+ "description": "Collibra database asset domain ID",
147208
+ "isDeprecated": false,
147209
+ "name": "collibraDatabaseAssetDomainId",
147210
+ "type": {
147211
+ "kind": "SCALAR",
147212
+ "name": "String",
147213
+ "ofType": null
147214
+ }
147215
+ }
147216
+ ],
147217
+ "inputFields": null,
147218
+ "interfaces": [],
147219
+ "kind": "OBJECT",
147220
+ "name": "CollibraDomainSearchResponse",
147221
+ "possibleTypes": null
147222
+ },
146989
147223
  {
146990
147224
  "description": null,
146991
147225
  "enumValues": null,
@@ -147520,6 +147754,94 @@
147520
147754
  "name": "AirflowCapabilitiesResponse",
147521
147755
  "possibleTypes": null
147522
147756
  },
147757
+ {
147758
+ "description": "AI Agent configuration for an account.",
147759
+ "enumValues": null,
147760
+ "fields": [
147761
+ {
147762
+ "args": [],
147763
+ "deprecationReason": null,
147764
+ "description": "",
147765
+ "isDeprecated": false,
147766
+ "name": "createdTime",
147767
+ "type": {
147768
+ "kind": "NON_NULL",
147769
+ "name": null,
147770
+ "ofType": {
147771
+ "kind": "SCALAR",
147772
+ "name": "DateTime",
147773
+ "ofType": null
147774
+ }
147775
+ }
147776
+ },
147777
+ {
147778
+ "args": [],
147779
+ "deprecationReason": null,
147780
+ "description": "",
147781
+ "isDeprecated": false,
147782
+ "name": "updatedTime",
147783
+ "type": {
147784
+ "kind": "NON_NULL",
147785
+ "name": null,
147786
+ "ofType": {
147787
+ "kind": "SCALAR",
147788
+ "name": "DateTime",
147789
+ "ofType": null
147790
+ }
147791
+ }
147792
+ },
147793
+ {
147794
+ "args": [],
147795
+ "deprecationReason": null,
147796
+ "description": null,
147797
+ "isDeprecated": false,
147798
+ "name": "agentType",
147799
+ "type": {
147800
+ "kind": "NON_NULL",
147801
+ "name": null,
147802
+ "ofType": {
147803
+ "kind": "ENUM",
147804
+ "name": "AiAgentType",
147805
+ "ofType": null
147806
+ }
147807
+ }
147808
+ },
147809
+ {
147810
+ "args": [],
147811
+ "deprecationReason": null,
147812
+ "description": "Custom context prompt for the AI agent",
147813
+ "isDeprecated": false,
147814
+ "name": "contextPrompt",
147815
+ "type": {
147816
+ "kind": "SCALAR",
147817
+ "name": "String",
147818
+ "ofType": null
147819
+ }
147820
+ }
147821
+ ],
147822
+ "inputFields": null,
147823
+ "interfaces": [],
147824
+ "kind": "OBJECT",
147825
+ "name": "AiAgent",
147826
+ "possibleTypes": null
147827
+ },
147828
+ {
147829
+ "description": "Types of AI agents available in the system.",
147830
+ "enumValues": [
147831
+ {
147832
+ "deprecationReason": null,
147833
+ "description": null,
147834
+ "isDeprecated": false,
147835
+ "name": "TROUBLESHOOTING"
147836
+ }
147837
+ ],
147838
+ "fields": null,
147839
+ "inputFields": null,
147840
+ "interfaces": null,
147841
+ "kind": "ENUM",
147842
+ "name": "AiAgentType",
147843
+ "possibleTypes": null
147844
+ },
147523
147845
  {
147524
147846
  "description": null,
147525
147847
  "enumValues": null,
@@ -166095,6 +166417,47 @@
166095
166417
  "ofType": null
166096
166418
  }
166097
166419
  },
166420
+ {
166421
+ "args": [
166422
+ {
166423
+ "defaultValue": null,
166424
+ "description": "The alert's UUID",
166425
+ "name": "alertId",
166426
+ "type": {
166427
+ "kind": "NON_NULL",
166428
+ "name": null,
166429
+ "ofType": {
166430
+ "kind": "SCALAR",
166431
+ "name": "UUID",
166432
+ "ofType": null
166433
+ }
166434
+ }
166435
+ },
166436
+ {
166437
+ "defaultValue": null,
166438
+ "description": "Invitee's email",
166439
+ "name": "email",
166440
+ "type": {
166441
+ "kind": "NON_NULL",
166442
+ "name": null,
166443
+ "ofType": {
166444
+ "kind": "SCALAR",
166445
+ "name": "String",
166446
+ "ofType": null
166447
+ }
166448
+ }
166449
+ }
166450
+ ],
166451
+ "deprecationReason": null,
166452
+ "description": "(experimental) Send an invitation to a non-user for an alert",
166453
+ "isDeprecated": false,
166454
+ "name": "sendAlertInvite",
166455
+ "type": {
166456
+ "kind": "OBJECT",
166457
+ "name": "SendAlertInvite",
166458
+ "ofType": null
166459
+ }
166460
+ },
166098
166461
  {
166099
166462
  "args": [
166100
166463
  {
@@ -173968,6 +174331,43 @@
173968
174331
  "ofType": null
173969
174332
  }
173970
174333
  },
174334
+ {
174335
+ "args": [
174336
+ {
174337
+ "defaultValue": null,
174338
+ "description": "Type of AI agent to configure",
174339
+ "name": "agentType",
174340
+ "type": {
174341
+ "kind": "NON_NULL",
174342
+ "name": null,
174343
+ "ofType": {
174344
+ "kind": "ENUM",
174345
+ "name": "AiAgentType",
174346
+ "ofType": null
174347
+ }
174348
+ }
174349
+ },
174350
+ {
174351
+ "defaultValue": null,
174352
+ "description": "Custom context prompt for the agent. Pass null to clear.",
174353
+ "name": "contextPrompt",
174354
+ "type": {
174355
+ "kind": "SCALAR",
174356
+ "name": "String",
174357
+ "ofType": null
174358
+ }
174359
+ }
174360
+ ],
174361
+ "deprecationReason": null,
174362
+ "description": "(experimental) Configure the context prompt for an AI agent",
174363
+ "isDeprecated": false,
174364
+ "name": "configureAiAgentPrompt",
174365
+ "type": {
174366
+ "kind": "OBJECT",
174367
+ "name": "ConfigureAiAgentPrompt",
174368
+ "ofType": null
174369
+ }
174370
+ },
173971
174371
  {
173972
174372
  "args": [
173973
174373
  {
@@ -187356,6 +187756,29 @@
187356
187756
  "name": "AlertStatusInput",
187357
187757
  "possibleTypes": null
187358
187758
  },
187759
+ {
187760
+ "description": "Send an invitation to a non-user for an existing alert",
187761
+ "enumValues": null,
187762
+ "fields": [
187763
+ {
187764
+ "args": [],
187765
+ "deprecationReason": null,
187766
+ "description": null,
187767
+ "isDeprecated": false,
187768
+ "name": "success",
187769
+ "type": {
187770
+ "kind": "SCALAR",
187771
+ "name": "Boolean",
187772
+ "ofType": null
187773
+ }
187774
+ }
187775
+ ],
187776
+ "inputFields": null,
187777
+ "interfaces": [],
187778
+ "kind": "OBJECT",
187779
+ "name": "SendAlertInvite",
187780
+ "possibleTypes": null
187781
+ },
187359
187782
  {
187360
187783
  "description": "Create or update a domain",
187361
187784
  "enumValues": null,
@@ -194775,6 +195198,45 @@
194775
195198
  "name": "BulkSetEtlJobGeneratesAlerts",
194776
195199
  "possibleTypes": null
194777
195200
  },
195201
+ {
195202
+ "description": "Configure or update the context prompt for an AI agent type",
195203
+ "enumValues": null,
195204
+ "fields": [
195205
+ {
195206
+ "args": [],
195207
+ "deprecationReason": null,
195208
+ "description": "The configured AI agent",
195209
+ "isDeprecated": false,
195210
+ "name": "aiAgent",
195211
+ "type": {
195212
+ "kind": "OBJECT",
195213
+ "name": "AiAgent",
195214
+ "ofType": null
195215
+ }
195216
+ },
195217
+ {
195218
+ "args": [],
195219
+ "deprecationReason": null,
195220
+ "description": "Whether the operation succeeded",
195221
+ "isDeprecated": false,
195222
+ "name": "success",
195223
+ "type": {
195224
+ "kind": "NON_NULL",
195225
+ "name": null,
195226
+ "ofType": {
195227
+ "kind": "SCALAR",
195228
+ "name": "Boolean",
195229
+ "ofType": null
195230
+ }
195231
+ }
195232
+ }
195233
+ ],
195234
+ "inputFields": null,
195235
+ "interfaces": [],
195236
+ "kind": "OBJECT",
195237
+ "name": "ConfigureAiAgentPrompt",
195238
+ "possibleTypes": null
195239
+ },
194778
195240
  {
194779
195241
  "description": "Create an account secret",
194780
195242
  "enumValues": null,
@@ -302,6 +302,18 @@ class AggregationFunction(sgqlc.types.Enum):
302
302
  __choices__ = ("AVG", "MAX", "MEDIAN", "MIN")
303
303
 
304
304
 
305
+ class AiAgentType(sgqlc.types.Enum):
306
+ """Types of AI agents available in the system.
307
+
308
+ Enumeration Choices:
309
+
310
+ * `TROUBLESHOOTING`None
311
+ """
312
+
313
+ __schema__ = schema
314
+ __choices__ = ("TROUBLESHOOTING",)
315
+
316
+
305
317
  class AirflowRunState(sgqlc.types.Enum):
306
318
  """Enumeration Choices:
307
319
 
@@ -12730,6 +12742,21 @@ class AggregatedQueryResults(sgqlc.types.Type):
12730
12742
  """Data necessary to paginate aggregated queries"""
12731
12743
 
12732
12744
 
12745
+ class AiAgent(sgqlc.types.Type):
12746
+ """AI Agent configuration for an account."""
12747
+
12748
+ __schema__ = schema
12749
+ __field_names__ = ("created_time", "updated_time", "agent_type", "context_prompt")
12750
+ created_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="createdTime")
12751
+
12752
+ updated_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="updatedTime")
12753
+
12754
+ agent_type = sgqlc.types.Field(sgqlc.types.non_null(AiAgentType), graphql_name="agentType")
12755
+
12756
+ context_prompt = sgqlc.types.Field(String, graphql_name="contextPrompt")
12757
+ """Custom context prompt for the AI agent"""
12758
+
12759
+
12733
12760
  class AirflowCapabilitiesResponse(sgqlc.types.Type):
12734
12761
  """Airflow capabilities information"""
12735
12762
 
@@ -15244,6 +15271,39 @@ class CollectionStorage(sgqlc.types.Type):
15244
15271
  """Storage resources"""
15245
15272
 
15246
15273
 
15274
+ class CollibraDomainSearchResponse(sgqlc.types.Type):
15275
+ """Collibra domain search response for table search name"""
15276
+
15277
+ __schema__ = schema
15278
+ __field_names__ = (
15279
+ "collibra_table_asset_id",
15280
+ "collibra_table_asset_domain_id",
15281
+ "collibra_schema_asset_id",
15282
+ "collibra_database_asset_id",
15283
+ "collibra_database_asset_domain_id",
15284
+ )
15285
+ collibra_table_asset_id = sgqlc.types.Field(
15286
+ sgqlc.types.non_null(String), graphql_name="collibraTableAssetId"
15287
+ )
15288
+ """Collibra table asset ID"""
15289
+
15290
+ collibra_table_asset_domain_id = sgqlc.types.Field(
15291
+ sgqlc.types.non_null(String), graphql_name="collibraTableAssetDomainId"
15292
+ )
15293
+ """Collibra table asset domain ID"""
15294
+
15295
+ collibra_schema_asset_id = sgqlc.types.Field(String, graphql_name="collibraSchemaAssetId")
15296
+ """Collibra schema asset ID"""
15297
+
15298
+ collibra_database_asset_id = sgqlc.types.Field(String, graphql_name="collibraDatabaseAssetId")
15299
+ """Collibra database asset ID"""
15300
+
15301
+ collibra_database_asset_domain_id = sgqlc.types.Field(
15302
+ String, graphql_name="collibraDatabaseAssetDomainId"
15303
+ )
15304
+ """Collibra database asset domain ID"""
15305
+
15306
+
15247
15307
  class CollibraIntegrationConnection(sgqlc.types.relay.Connection):
15248
15308
  __schema__ = schema
15249
15309
  __field_names__ = ("page_info", "edges")
@@ -15268,6 +15328,18 @@ class CollibraIntegrationEdge(sgqlc.types.Type):
15268
15328
  """A cursor for use in pagination"""
15269
15329
 
15270
15330
 
15331
+ class CollibraMonitorNoteResponse(sgqlc.types.Type):
15332
+ """Collibra monitor note response."""
15333
+
15334
+ __schema__ = schema
15335
+ __field_names__ = ("monitor_uuid", "collibra_note")
15336
+ monitor_uuid = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="monitorUuid")
15337
+ """Monitor uuid"""
15338
+
15339
+ collibra_note = sgqlc.types.Field(String, graphql_name="collibraNote")
15340
+ """Collibra note"""
15341
+
15342
+
15271
15343
  class CollibraPingResponse(sgqlc.types.Type):
15272
15344
  """Collibra ping information"""
15273
15345
 
@@ -15382,6 +15454,18 @@ class ComparisonMonitorResponseEdge(sgqlc.types.Type):
15382
15454
  """A cursor for use in pagination"""
15383
15455
 
15384
15456
 
15457
+ class ConfigureAiAgentPrompt(sgqlc.types.Type):
15458
+ """Configure or update the context prompt for an AI agent type"""
15459
+
15460
+ __schema__ = schema
15461
+ __field_names__ = ("ai_agent", "success")
15462
+ ai_agent = sgqlc.types.Field(AiAgent, graphql_name="aiAgent")
15463
+ """The configured AI agent"""
15464
+
15465
+ success = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name="success")
15466
+ """Whether the operation succeeded"""
15467
+
15468
+
15385
15469
  class ConfigureMetadataEvents(sgqlc.types.Type):
15386
15470
  """Configure collection of metadata via S3 events"""
15387
15471
 
@@ -25426,6 +25510,7 @@ class Mutation(sgqlc.types.Type):
25426
25510
  "bulk_update_incidents",
25427
25511
  "bulk_update_alerts",
25428
25512
  "update_alert",
25513
+ "send_alert_invite",
25429
25514
  "create_or_update_domain",
25430
25515
  "delete_domain",
25431
25516
  "create_or_update_authorization_group",
@@ -25580,6 +25665,7 @@ class Mutation(sgqlc.types.Type):
25580
25665
  "set_etl_job_generates_incidents",
25581
25666
  "set_etl_job_generates_alerts",
25582
25667
  "bulk_set_etl_job_generates_alerts",
25668
+ "configure_ai_agent_prompt",
25583
25669
  "create_account_secret",
25584
25670
  "update_account_secret",
25585
25671
  "delete_account_secret",
@@ -37006,6 +37092,34 @@ class Mutation(sgqlc.types.Type):
37006
37092
  * `uuid` (`UUID!`): UUID of the alert to update
37007
37093
  """
37008
37094
 
37095
+ send_alert_invite = sgqlc.types.Field(
37096
+ "SendAlertInvite",
37097
+ graphql_name="sendAlertInvite",
37098
+ args=sgqlc.types.ArgDict(
37099
+ (
37100
+ (
37101
+ "alert_id",
37102
+ sgqlc.types.Arg(
37103
+ sgqlc.types.non_null(UUID), graphql_name="alertId", default=None
37104
+ ),
37105
+ ),
37106
+ (
37107
+ "email",
37108
+ sgqlc.types.Arg(
37109
+ sgqlc.types.non_null(String), graphql_name="email", default=None
37110
+ ),
37111
+ ),
37112
+ )
37113
+ ),
37114
+ )
37115
+ """(experimental) Send an invitation to a non-user for an alert
37116
+
37117
+ Arguments:
37118
+
37119
+ * `alert_id` (`UUID!`): The alert's UUID
37120
+ * `email` (`String!`): Invitee's email
37121
+ """
37122
+
37009
37123
  create_or_update_domain = sgqlc.types.Field(
37010
37124
  CreateOrUpdateDomain,
37011
37125
  graphql_name="createOrUpdateDomain",
@@ -42148,6 +42262,33 @@ class Mutation(sgqlc.types.Type):
42148
42262
  * `mcons` (`[String]!`): MCONs of jobs to set generate alerts for
42149
42263
  """
42150
42264
 
42265
+ configure_ai_agent_prompt = sgqlc.types.Field(
42266
+ ConfigureAiAgentPrompt,
42267
+ graphql_name="configureAiAgentPrompt",
42268
+ args=sgqlc.types.ArgDict(
42269
+ (
42270
+ (
42271
+ "agent_type",
42272
+ sgqlc.types.Arg(
42273
+ sgqlc.types.non_null(AiAgentType), graphql_name="agentType", default=None
42274
+ ),
42275
+ ),
42276
+ (
42277
+ "context_prompt",
42278
+ sgqlc.types.Arg(String, graphql_name="contextPrompt", default=None),
42279
+ ),
42280
+ )
42281
+ ),
42282
+ )
42283
+ """(experimental) Configure the context prompt for an AI agent
42284
+
42285
+ Arguments:
42286
+
42287
+ * `agent_type` (`AiAgentType!`): Type of AI agent to configure
42288
+ * `context_prompt` (`String`): Custom context prompt for the
42289
+ agent. Pass null to clear.
42290
+ """
42291
+
42151
42292
  create_account_secret = sgqlc.types.Field(
42152
42293
  CreateAccountSecret,
42153
42294
  graphql_name="createAccountSecret",
@@ -44225,12 +44366,16 @@ class Query(sgqlc.types.Type):
44225
44366
  "get_alerts_count_by_date",
44226
44367
  "get_alert_access_request",
44227
44368
  "get_collibra_ping",
44369
+ "get_collibra_monitor_note",
44370
+ "get_collibra_monitor_table_search_names",
44371
+ "get_collibra_domains_for_table_search_name",
44228
44372
  "get_alation_table_flags",
44229
44373
  "get_airflow_task_results",
44230
44374
  "get_airflow_task_stats",
44231
44375
  "get_airflow_tasks_for_source_and_destination_tables",
44232
44376
  "get_airflow_dag_runs",
44233
44377
  "get_airflow_capabilities",
44378
+ "get_ai_agent_config",
44234
44379
  "fix_sql_query",
44235
44380
  "create_sql_query",
44236
44381
  "get_agent_operation_logs",
@@ -60259,6 +60404,73 @@ class Query(sgqlc.types.Type):
60259
60404
  existing integration
60260
60405
  """
60261
60406
 
60407
+ get_collibra_monitor_note = sgqlc.types.Field(
60408
+ CollibraMonitorNoteResponse,
60409
+ graphql_name="getCollibraMonitorNote",
60410
+ args=sgqlc.types.ArgDict(
60411
+ (
60412
+ (
60413
+ "monitor_uuid",
60414
+ sgqlc.types.Arg(
60415
+ sgqlc.types.non_null(String), graphql_name="monitorUuid", default=None
60416
+ ),
60417
+ ),
60418
+ )
60419
+ ),
60420
+ )
60421
+ """(experimental) Collibra monitor note. Has extra debug information
60422
+ about table relationships if they could not be found
60423
+
60424
+ Arguments:
60425
+
60426
+ * `monitor_uuid` (`String!`): Monitor uuid
60427
+ """
60428
+
60429
+ get_collibra_monitor_table_search_names = sgqlc.types.Field(
60430
+ sgqlc.types.list_of(String),
60431
+ graphql_name="getCollibraMonitorTableSearchNames",
60432
+ args=sgqlc.types.ArgDict(
60433
+ (
60434
+ (
60435
+ "monitor_uuid",
60436
+ sgqlc.types.Arg(
60437
+ sgqlc.types.non_null(String), graphql_name="monitorUuid", default=None
60438
+ ),
60439
+ ),
60440
+ )
60441
+ ),
60442
+ )
60443
+ """(experimental) Get table search names for a monitor in Collibra
60444
+ format
60445
+
60446
+ Arguments:
60447
+
60448
+ * `monitor_uuid` (`String!`): Monitor uuid
60449
+ """
60450
+
60451
+ get_collibra_domains_for_table_search_name = sgqlc.types.Field(
60452
+ sgqlc.types.list_of(CollibraDomainSearchResponse),
60453
+ graphql_name="getCollibraDomainsForTableSearchName",
60454
+ args=sgqlc.types.ArgDict(
60455
+ (
60456
+ (
60457
+ "table_search_name",
60458
+ sgqlc.types.Arg(
60459
+ sgqlc.types.non_null(String), graphql_name="tableSearchName", default=None
60460
+ ),
60461
+ ),
60462
+ )
60463
+ ),
60464
+ )
60465
+ """(experimental) Get Collibra domain information for a table search
60466
+ name
60467
+
60468
+ Arguments:
60469
+
60470
+ * `table_search_name` (`String!`): Table search name in Collibra
60471
+ format (e.g., '>project>dataset>table')
60472
+ """
60473
+
60262
60474
  get_alation_table_flags = sgqlc.types.Field(
60263
60475
  sgqlc.types.list_of(GetAlationTableFlags),
60264
60476
  graphql_name="getAlationTableFlags",
@@ -60509,6 +60721,28 @@ class Query(sgqlc.types.Type):
60509
60721
  * `etl_container_uuid` (`UUID`): UUID of ETL Container
60510
60722
  """
60511
60723
 
60724
+ get_ai_agent_config = sgqlc.types.Field(
60725
+ AiAgent,
60726
+ graphql_name="getAiAgentConfig",
60727
+ args=sgqlc.types.ArgDict(
60728
+ (
60729
+ (
60730
+ "agent_type",
60731
+ sgqlc.types.Arg(
60732
+ sgqlc.types.non_null(AiAgentType), graphql_name="agentType", default=None
60733
+ ),
60734
+ ),
60735
+ )
60736
+ ),
60737
+ )
60738
+ """(experimental) Get AI agent configuration for the account
60739
+
60740
+ Arguments:
60741
+
60742
+ * `agent_type` (`AiAgentType!`): Type of AI agent to retrieve
60743
+ configuration for
60744
+ """
60745
+
60512
60746
  fix_sql_query = sgqlc.types.Field(
60513
60747
  AIMessageOutput,
60514
60748
  graphql_name="fixSqlQuery",
@@ -62333,6 +62567,14 @@ class SelectGitlabProjects(sgqlc.types.Type):
62333
62567
  success = sgqlc.types.Field(Boolean, graphql_name="success")
62334
62568
 
62335
62569
 
62570
+ class SendAlertInvite(sgqlc.types.Type):
62571
+ """Send an invitation to a non-user for an existing alert"""
62572
+
62573
+ __schema__ = schema
62574
+ __field_names__ = ("success",)
62575
+ success = sgqlc.types.Field(Boolean, graphql_name="success")
62576
+
62577
+
62336
62578
  class SendDbtArtifactsEvent(sgqlc.types.Type):
62337
62579
  """Publish a Dbt artifacts event to Kinesis stream"""
62338
62580
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pycarlo
3
- Version: 0.10.169
3
+ Version: 0.10.171
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