pycarlo 0.12.332__tar.gz → 0.12.334__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.
Files changed (131) hide show
  1. {pycarlo-0.12.332 → pycarlo-0.12.334}/PKG-INFO +1 -1
  2. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/lib/schema.json +79 -6
  3. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/lib/schema.py +41 -2
  4. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo.egg-info/PKG-INFO +1 -1
  5. {pycarlo-0.12.332 → pycarlo-0.12.334}/tests/data/schema_original.py +41 -2
  6. {pycarlo-0.12.332 → pycarlo-0.12.334}/.circleci/README.md +0 -0
  7. {pycarlo-0.12.332 → pycarlo-0.12.334}/.circleci/config.yml +0 -0
  8. {pycarlo-0.12.332 → pycarlo-0.12.334}/.circleci/scripts/clean-generated-types-prs.sh +0 -0
  9. {pycarlo-0.12.332 → pycarlo-0.12.334}/.coveragerc +0 -0
  10. {pycarlo-0.12.332 → pycarlo-0.12.334}/.github/workflows/release.yml +0 -0
  11. {pycarlo-0.12.332 → pycarlo-0.12.334}/.gitignore +0 -0
  12. {pycarlo-0.12.332 → pycarlo-0.12.334}/.pre-commit-config.yaml +0 -0
  13. {pycarlo-0.12.332 → pycarlo-0.12.334}/CONTRIBUTING.md +0 -0
  14. {pycarlo-0.12.332 → pycarlo-0.12.334}/LICENSE +0 -0
  15. {pycarlo-0.12.332 → pycarlo-0.12.334}/Makefile +0 -0
  16. {pycarlo-0.12.332 → pycarlo-0.12.334}/README.md +0 -0
  17. {pycarlo-0.12.332 → pycarlo-0.12.334}/examples/sample_agent_ci_build_script.py +0 -0
  18. {pycarlo-0.12.332 → pycarlo-0.12.334}/examples/sample_circuit_breaker.py +0 -0
  19. {pycarlo-0.12.332 → pycarlo-0.12.334}/examples/sample_ingest_lineage.py +0 -0
  20. {pycarlo-0.12.332 → pycarlo-0.12.334}/examples/sample_ingest_metadata.py +0 -0
  21. {pycarlo-0.12.332 → pycarlo-0.12.334}/examples/sample_ingest_query_logs.py +0 -0
  22. {pycarlo-0.12.332 → pycarlo-0.12.334}/examples/sample_insight_upload.py +0 -0
  23. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/__init__.py +0 -0
  24. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/common/__init__.py +0 -0
  25. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/common/errors.py +0 -0
  26. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/common/files.py +0 -0
  27. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/common/http.py +0 -0
  28. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/common/mcon.py +0 -0
  29. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/common/retries.py +0 -0
  30. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/common/settings.py +0 -0
  31. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/common/utils.py +0 -0
  32. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/core/__init__.py +0 -0
  33. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/core/client.py +0 -0
  34. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/core/endpoint.py +0 -0
  35. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/core/operations.py +0 -0
  36. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/core/session.py +0 -0
  37. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/features/__init__.py +0 -0
  38. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/features/agent/__init__.py +0 -0
  39. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/features/agent/models.py +0 -0
  40. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/features/agent/queries.py +0 -0
  41. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/features/agent/service.py +0 -0
  42. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/features/circuit_breakers/__init__.py +0 -0
  43. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/features/circuit_breakers/exceptions.py +0 -0
  44. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/features/circuit_breakers/service.py +0 -0
  45. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/features/dbt/__init__.py +0 -0
  46. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/features/dbt/dbt_importer.py +0 -0
  47. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/features/dbt/queries.py +0 -0
  48. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/features/exceptions.py +0 -0
  49. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/features/ingestion/__init__.py +0 -0
  50. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/features/ingestion/exceptions.py +0 -0
  51. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/features/ingestion/models.py +0 -0
  52. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/features/ingestion/service.py +0 -0
  53. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/features/metadata/__init__.py +0 -0
  54. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/features/metadata/asset_allow_block_list.py +0 -0
  55. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/features/metadata/asset_filters_container.py +0 -0
  56. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/features/metadata/base_allow_block_list.py +0 -0
  57. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/features/metadata/metadata_allow_block_list.py +0 -0
  58. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/features/metadata/metadata_filters_container.py +0 -0
  59. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/features/monitor/__init__.py +0 -0
  60. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/features/monitor/models.py +0 -0
  61. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/features/monitor/queries.py +0 -0
  62. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/features/monitor/service.py +0 -0
  63. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/features/pii/__init__.py +0 -0
  64. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/features/pii/constants.py +0 -0
  65. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/features/pii/pii_filterer.py +0 -0
  66. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/features/pii/queries.py +0 -0
  67. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/features/pii/service.py +0 -0
  68. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/features/user/__init__.py +0 -0
  69. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/features/user/exceptions.py +0 -0
  70. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/features/user/models.py +0 -0
  71. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/features/user/queries.py +0 -0
  72. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/features/user/service.py +0 -0
  73. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/lib/README.md +0 -0
  74. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/lib/__init__.py +0 -0
  75. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo/lib/types.py +0 -0
  76. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo.egg-info/SOURCES.txt +0 -0
  77. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo.egg-info/dependency_links.txt +0 -0
  78. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo.egg-info/requires.txt +0 -0
  79. {pycarlo-0.12.332 → pycarlo-0.12.334}/pycarlo.egg-info/top_level.txt +0 -0
  80. {pycarlo-0.12.332 → pycarlo-0.12.334}/pyproject.toml +0 -0
  81. {pycarlo-0.12.332 → pycarlo-0.12.334}/requirements-ci.txt +0 -0
  82. {pycarlo-0.12.332 → pycarlo-0.12.334}/requirements-dev.txt +0 -0
  83. {pycarlo-0.12.332 → pycarlo-0.12.334}/requirements.txt +0 -0
  84. {pycarlo-0.12.332 → pycarlo-0.12.334}/setup.cfg +0 -0
  85. {pycarlo-0.12.332 → pycarlo-0.12.334}/setup.py +0 -0
  86. {pycarlo-0.12.332 → pycarlo-0.12.334}/test_agent_spans.py +0 -0
  87. {pycarlo-0.12.332 → pycarlo-0.12.334}/tests/__init__.py +0 -0
  88. {pycarlo-0.12.332 → pycarlo-0.12.334}/tests/common/__init__.py +0 -0
  89. {pycarlo-0.12.332 → pycarlo-0.12.334}/tests/common/data.json +0 -0
  90. {pycarlo-0.12.332 → pycarlo-0.12.334}/tests/common/test_files.py +0 -0
  91. {pycarlo-0.12.332 → pycarlo-0.12.334}/tests/common/test_http.py +0 -0
  92. {pycarlo-0.12.332 → pycarlo-0.12.334}/tests/common/test_mcon.py +0 -0
  93. {pycarlo-0.12.332 → pycarlo-0.12.334}/tests/common/test_retries.py +0 -0
  94. {pycarlo-0.12.332 → pycarlo-0.12.334}/tests/common/test_utils.py +0 -0
  95. {pycarlo-0.12.332 → pycarlo-0.12.334}/tests/data/README.md +0 -0
  96. {pycarlo-0.12.332 → pycarlo-0.12.334}/tests/features/__init__.py +0 -0
  97. {pycarlo-0.12.332 → pycarlo-0.12.334}/tests/features/agent/__init__.py +0 -0
  98. {pycarlo-0.12.332 → pycarlo-0.12.334}/tests/features/agent/test_service.py +0 -0
  99. {pycarlo-0.12.332 → pycarlo-0.12.334}/tests/features/circuit_breakers/__init__.py +0 -0
  100. {pycarlo-0.12.332 → pycarlo-0.12.334}/tests/features/circuit_breakers/test_service.py +0 -0
  101. {pycarlo-0.12.332 → pycarlo-0.12.334}/tests/features/dbt/__init__.py +0 -0
  102. {pycarlo-0.12.332 → pycarlo-0.12.334}/tests/features/dbt/sample_logs.txt +0 -0
  103. {pycarlo-0.12.332 → pycarlo-0.12.334}/tests/features/dbt/sample_manifest.json +0 -0
  104. {pycarlo-0.12.332 → pycarlo-0.12.334}/tests/features/dbt/sample_run_results.json +0 -0
  105. {pycarlo-0.12.332 → pycarlo-0.12.334}/tests/features/dbt/test_dbt_importer.py +0 -0
  106. {pycarlo-0.12.332 → pycarlo-0.12.334}/tests/features/ingestion/__init__.py +0 -0
  107. {pycarlo-0.12.332 → pycarlo-0.12.334}/tests/features/ingestion/test_models.py +0 -0
  108. {pycarlo-0.12.332 → pycarlo-0.12.334}/tests/features/ingestion/test_service.py +0 -0
  109. {pycarlo-0.12.332 → pycarlo-0.12.334}/tests/features/metadata/test_asset_filtering.py +0 -0
  110. {pycarlo-0.12.332 → pycarlo-0.12.334}/tests/features/metadata/test_dataset_filtering.py +0 -0
  111. {pycarlo-0.12.332 → pycarlo-0.12.334}/tests/features/monitor/__init__.py +0 -0
  112. {pycarlo-0.12.332 → pycarlo-0.12.334}/tests/features/monitor/test_service.py +0 -0
  113. {pycarlo-0.12.332 → pycarlo-0.12.334}/tests/features/pii/sample_events/sample_md_events_01.json +0 -0
  114. {pycarlo-0.12.332 → pycarlo-0.12.334}/tests/features/pii/sample_events/sample_md_events_02.json +0 -0
  115. {pycarlo-0.12.332 → pycarlo-0.12.334}/tests/features/pii/test_pii_filtering.py +0 -0
  116. {pycarlo-0.12.332 → pycarlo-0.12.334}/tests/features/user/__init__.py +0 -0
  117. {pycarlo-0.12.332 → pycarlo-0.12.334}/tests/features/user/test_user_service.py +0 -0
  118. {pycarlo-0.12.332 → pycarlo-0.12.334}/tests/lib/test_enum.py +0 -0
  119. {pycarlo-0.12.332 → pycarlo-0.12.334}/tests/lib/test_enum_integration.py +0 -0
  120. {pycarlo-0.12.332 → pycarlo-0.12.334}/tests/lib/test_schema_generation.py +0 -0
  121. {pycarlo-0.12.332 → pycarlo-0.12.334}/tests/test_client.py +0 -0
  122. {pycarlo-0.12.332 → pycarlo-0.12.334}/tests/test_forgiving_enums_published.sh +0 -0
  123. {pycarlo-0.12.332 → pycarlo-0.12.334}/tests/test_operations.py +0 -0
  124. {pycarlo-0.12.332 → pycarlo-0.12.334}/tests/test_retry_decorator.py +0 -0
  125. {pycarlo-0.12.332 → pycarlo-0.12.334}/tests/test_session.py +0 -0
  126. {pycarlo-0.12.332 → pycarlo-0.12.334}/tests/verify_forgiving_enums_published.py +0 -0
  127. {pycarlo-0.12.332 → pycarlo-0.12.334}/utils/env.sh +0 -0
  128. {pycarlo-0.12.332 → pycarlo-0.12.334}/utils/generate.py +0 -0
  129. {pycarlo-0.12.332 → pycarlo-0.12.334}/utils/sample.env +0 -0
  130. {pycarlo-0.12.332 → pycarlo-0.12.334}/utils/sanity.py +0 -0
  131. {pycarlo-0.12.332 → pycarlo-0.12.334}/utils/vars.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pycarlo
3
- Version: 0.12.332
3
+ Version: 0.12.334
4
4
  Summary: Monte Carlo's Python SDK
5
5
  Home-page: https://www.montecarlodata.com/
6
6
  Author: Monte Carlo Data, Inc
@@ -6349,6 +6349,24 @@
6349
6349
  }
6350
6350
  }
6351
6351
  }
6352
+ },
6353
+ {
6354
+ "defaultValue": null,
6355
+ "description": "Domain types to include. Defaults to metadata-only. Pass `AGENTIC` alongside `METADATA` to surface agentic (include-all-assets) domains as synthetic per-warehouse pairs.",
6356
+ "name": "domainTypes",
6357
+ "type": {
6358
+ "kind": "LIST",
6359
+ "name": null,
6360
+ "ofType": {
6361
+ "kind": "NON_NULL",
6362
+ "name": null,
6363
+ "ofType": {
6364
+ "kind": "ENUM",
6365
+ "name": "DomainType",
6366
+ "ofType": null
6367
+ }
6368
+ }
6369
+ }
6352
6370
  }
6353
6371
  ],
6354
6372
  "deprecationReason": null,
@@ -26348,6 +26366,24 @@
26348
26366
  "name": "Int",
26349
26367
  "ofType": null
26350
26368
  }
26369
+ },
26370
+ {
26371
+ "defaultValue": null,
26372
+ "description": "Domain types to include. Defaults to metadata-only. Include `AGENTIC` to also match include-all-assets domains \u2014 every deduped tag matches every agentic domain the caller has access to, because agentic domains logically contain every asset.",
26373
+ "name": "domainTypes",
26374
+ "type": {
26375
+ "kind": "LIST",
26376
+ "name": null,
26377
+ "ofType": {
26378
+ "kind": "NON_NULL",
26379
+ "name": null,
26380
+ "ofType": {
26381
+ "kind": "ENUM",
26382
+ "name": "DomainType",
26383
+ "ofType": null
26384
+ }
26385
+ }
26386
+ }
26351
26387
  }
26352
26388
  ],
26353
26389
  "deprecationReason": null,
@@ -127596,6 +127632,35 @@
127596
127632
  "name": "WarehouseDomain",
127597
127633
  "possibleTypes": null
127598
127634
  },
127635
+ {
127636
+ "description": "Category of a domain. Values mirror ``DomainModel.DOMAIN_TYPE_*``.",
127637
+ "enumValues": [
127638
+ {
127639
+ "deprecationReason": null,
127640
+ "description": null,
127641
+ "isDeprecated": false,
127642
+ "name": "METADATA"
127643
+ },
127644
+ {
127645
+ "deprecationReason": null,
127646
+ "description": null,
127647
+ "isDeprecated": false,
127648
+ "name": "AGENTIC"
127649
+ },
127650
+ {
127651
+ "deprecationReason": null,
127652
+ "description": null,
127653
+ "isDeprecated": false,
127654
+ "name": "SAMPLING"
127655
+ }
127656
+ ],
127657
+ "fields": null,
127658
+ "inputFields": null,
127659
+ "interfaces": null,
127660
+ "kind": "ENUM",
127661
+ "name": "DomainType",
127662
+ "possibleTypes": null
127663
+ },
127599
127664
  {
127600
127665
  "description": null,
127601
127666
  "enumValues": null,
@@ -231882,9 +231947,13 @@
231882
231947
  "description": "manifest file name",
231883
231948
  "name": "manifest",
231884
231949
  "type": {
231885
- "kind": "SCALAR",
231886
- "name": "String",
231887
- "ofType": null
231950
+ "kind": "NON_NULL",
231951
+ "name": null,
231952
+ "ofType": {
231953
+ "kind": "SCALAR",
231954
+ "name": "String",
231955
+ "ofType": null
231956
+ }
231888
231957
  }
231889
231958
  },
231890
231959
  {
@@ -231892,9 +231961,13 @@
231892
231961
  "description": "run results file name",
231893
231962
  "name": "runResults",
231894
231963
  "type": {
231895
- "kind": "SCALAR",
231896
- "name": "String",
231897
- "ofType": null
231964
+ "kind": "NON_NULL",
231965
+ "name": null,
231966
+ "ofType": {
231967
+ "kind": "SCALAR",
231968
+ "name": "String",
231969
+ "ofType": null
231970
+ }
231898
231971
  }
231899
231972
  },
231900
231973
  {
@@ -2275,6 +2275,20 @@ class DomainModelDomainType(pycarlo.lib.types.Enum):
2275
2275
  __choices__ = ("AGENTIC", "METADATA", "SAMPLING")
2276
2276
 
2277
2277
 
2278
+ class DomainType(pycarlo.lib.types.Enum):
2279
+ """Category of a domain. Values mirror ``DomainModel.DOMAIN_TYPE_*``.
2280
+
2281
+ Enumeration Choices:
2282
+
2283
+ * `AGENTIC`None
2284
+ * `METADATA`None
2285
+ * `SAMPLING`None
2286
+ """
2287
+
2288
+ __schema__ = schema
2289
+ __choices__ = ("AGENTIC", "METADATA", "SAMPLING")
2290
+
2291
+
2278
2292
  class EdgeType(pycarlo.lib.types.Enum):
2279
2293
  """Enumeration Choices:
2280
2294
 
@@ -9202,10 +9216,10 @@ class DbtArtifactsInput(sgqlc.types.Input):
9202
9216
 
9203
9217
  __schema__ = schema
9204
9218
  __field_names__ = ("manifest", "run_results", "logs")
9205
- manifest = sgqlc.types.Field(String, graphql_name="manifest")
9219
+ manifest = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="manifest")
9206
9220
  """manifest file name"""
9207
9221
 
9208
- run_results = sgqlc.types.Field(String, graphql_name="runResults")
9222
+ run_results = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="runResults")
9209
9223
  """run results file name"""
9210
9224
 
9211
9225
  logs = sgqlc.types.Field(String, graphql_name="logs")
@@ -60412,6 +60426,14 @@ class Query(sgqlc.types.Type):
60412
60426
  default=None,
60413
60427
  ),
60414
60428
  ),
60429
+ (
60430
+ "domain_types",
60431
+ sgqlc.types.Arg(
60432
+ sgqlc.types.list_of(sgqlc.types.non_null(DomainType)),
60433
+ graphql_name="domainTypes",
60434
+ default=None,
60435
+ ),
60436
+ ),
60415
60437
  )
60416
60438
  ),
60417
60439
  )
@@ -60423,6 +60445,10 @@ class Query(sgqlc.types.Type):
60423
60445
 
60424
60446
  * `mcons` (`[String!]!`): List of MCONs to look up domain
60425
60447
  assignments for (max 250)
60448
+ * `domain_types` (`[DomainType!]`): Domain types to include.
60449
+ Defaults to metadata-only. Pass `AGENTIC` alongside `METADATA`
60450
+ to surface agentic (include-all-assets) domains as synthetic
60451
+ per-warehouse pairs.
60426
60452
  """
60427
60453
 
60428
60454
  get_data_product_dry_run_counts = sgqlc.types.Field(
@@ -71345,6 +71371,14 @@ class Query(sgqlc.types.Type):
71345
71371
  ),
71346
71372
  ("limit", sgqlc.types.Arg(Int, graphql_name="limit", default=None)),
71347
71373
  ("offset", sgqlc.types.Arg(Int, graphql_name="offset", default=None)),
71374
+ (
71375
+ "domain_types",
71376
+ sgqlc.types.Arg(
71377
+ sgqlc.types.list_of(sgqlc.types.non_null(DomainType)),
71378
+ graphql_name="domainTypes",
71379
+ default=None,
71380
+ ),
71381
+ ),
71348
71382
  )
71349
71383
  ),
71350
71384
  )
@@ -71361,6 +71395,11 @@ class Query(sgqlc.types.Type):
71361
71395
  * `limit` (`Int`): Max (tag, domain) matches per page (default
71362
71396
  100, capped at 500).
71363
71397
  * `offset` (`Int`): Offset into the match list. Default 0.
71398
+ * `domain_types` (`[DomainType!]`): Domain types to include.
71399
+ Defaults to metadata-only. Include `AGENTIC` to also match
71400
+ include-all-assets domains — every deduped tag matches every
71401
+ agentic domain the caller has access to, because agentic domains
71402
+ logically contain every asset.
71364
71403
  """
71365
71404
 
71366
71405
  get_iamresource_definitions = sgqlc.types.Field(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pycarlo
3
- Version: 0.12.332
3
+ Version: 0.12.334
4
4
  Summary: Monte Carlo's Python SDK
5
5
  Home-page: https://www.montecarlodata.com/
6
6
  Author: Monte Carlo Data, Inc
@@ -2274,6 +2274,20 @@ class DomainModelDomainType(sgqlc.types.Enum):
2274
2274
  __choices__ = ("AGENTIC", "METADATA", "SAMPLING")
2275
2275
 
2276
2276
 
2277
+ class DomainType(sgqlc.types.Enum):
2278
+ """Category of a domain. Values mirror ``DomainModel.DOMAIN_TYPE_*``.
2279
+
2280
+ Enumeration Choices:
2281
+
2282
+ * `AGENTIC`None
2283
+ * `METADATA`None
2284
+ * `SAMPLING`None
2285
+ """
2286
+
2287
+ __schema__ = schema
2288
+ __choices__ = ("AGENTIC", "METADATA", "SAMPLING")
2289
+
2290
+
2277
2291
  class EdgeType(sgqlc.types.Enum):
2278
2292
  """Enumeration Choices:
2279
2293
 
@@ -9201,10 +9215,10 @@ class DbtArtifactsInput(sgqlc.types.Input):
9201
9215
 
9202
9216
  __schema__ = schema
9203
9217
  __field_names__ = ("manifest", "run_results", "logs")
9204
- manifest = sgqlc.types.Field(String, graphql_name="manifest")
9218
+ manifest = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="manifest")
9205
9219
  """manifest file name"""
9206
9220
 
9207
- run_results = sgqlc.types.Field(String, graphql_name="runResults")
9221
+ run_results = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="runResults")
9208
9222
  """run results file name"""
9209
9223
 
9210
9224
  logs = sgqlc.types.Field(String, graphql_name="logs")
@@ -60411,6 +60425,14 @@ class Query(sgqlc.types.Type):
60411
60425
  default=None,
60412
60426
  ),
60413
60427
  ),
60428
+ (
60429
+ "domain_types",
60430
+ sgqlc.types.Arg(
60431
+ sgqlc.types.list_of(sgqlc.types.non_null(DomainType)),
60432
+ graphql_name="domainTypes",
60433
+ default=None,
60434
+ ),
60435
+ ),
60414
60436
  )
60415
60437
  ),
60416
60438
  )
@@ -60422,6 +60444,10 @@ class Query(sgqlc.types.Type):
60422
60444
 
60423
60445
  * `mcons` (`[String!]!`): List of MCONs to look up domain
60424
60446
  assignments for (max 250)
60447
+ * `domain_types` (`[DomainType!]`): Domain types to include.
60448
+ Defaults to metadata-only. Pass `AGENTIC` alongside `METADATA`
60449
+ to surface agentic (include-all-assets) domains as synthetic
60450
+ per-warehouse pairs.
60425
60451
  """
60426
60452
 
60427
60453
  get_data_product_dry_run_counts = sgqlc.types.Field(
@@ -71344,6 +71370,14 @@ class Query(sgqlc.types.Type):
71344
71370
  ),
71345
71371
  ("limit", sgqlc.types.Arg(Int, graphql_name="limit", default=None)),
71346
71372
  ("offset", sgqlc.types.Arg(Int, graphql_name="offset", default=None)),
71373
+ (
71374
+ "domain_types",
71375
+ sgqlc.types.Arg(
71376
+ sgqlc.types.list_of(sgqlc.types.non_null(DomainType)),
71377
+ graphql_name="domainTypes",
71378
+ default=None,
71379
+ ),
71380
+ ),
71347
71381
  )
71348
71382
  ),
71349
71383
  )
@@ -71360,6 +71394,11 @@ class Query(sgqlc.types.Type):
71360
71394
  * `limit` (`Int`): Max (tag, domain) matches per page (default
71361
71395
  100, capped at 500).
71362
71396
  * `offset` (`Int`): Offset into the match list. Default 0.
71397
+ * `domain_types` (`[DomainType!]`): Domain types to include.
71398
+ Defaults to metadata-only. Include `AGENTIC` to also match
71399
+ include-all-assets domains — every deduped tag matches every
71400
+ agentic domain the caller has access to, because agentic domains
71401
+ logically contain every asset.
71363
71402
  """
71364
71403
 
71365
71404
  get_iamresource_definitions = sgqlc.types.Field(
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
File without changes