pycarlo 0.10.210__py3-none-any.whl → 0.10.211__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.

Potentially problematic release.


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

pycarlo/lib/schema.py CHANGED
@@ -14069,7 +14069,15 @@ class AzureDevOpsIntegrationOutput(sgqlc.types.Type):
14069
14069
  """Output type for Azure DevOps integration."""
14070
14070
 
14071
14071
  __schema__ = schema
14072
- __field_names__ = ("integration_id", "integration_name", "organization")
14072
+ __field_names__ = (
14073
+ "integration_id",
14074
+ "integration_name",
14075
+ "organization",
14076
+ "created_time",
14077
+ "updated_time",
14078
+ "created_by",
14079
+ "last_update_user",
14080
+ )
14073
14081
  integration_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="integrationId")
14074
14082
  """The integration ID"""
14075
14083
 
@@ -14081,6 +14089,18 @@ class AzureDevOpsIntegrationOutput(sgqlc.types.Type):
14081
14089
  organization = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="organization")
14082
14090
  """Azure DevOps organization name"""
14083
14091
 
14092
+ created_time = sgqlc.types.Field(DateTime, graphql_name="createdTime")
14093
+ """When the integration was created"""
14094
+
14095
+ updated_time = sgqlc.types.Field(DateTime, graphql_name="updatedTime")
14096
+ """When the integration was last updated"""
14097
+
14098
+ created_by = sgqlc.types.Field("User", graphql_name="createdBy")
14099
+ """Who created the integration"""
14100
+
14101
+ last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
14102
+ """Who last updated the integration"""
14103
+
14084
14104
 
14085
14105
  class AzureDevOpsProjectOutput(sgqlc.types.Type):
14086
14106
  """Output type for Azure DevOps project."""
@@ -18495,7 +18515,16 @@ class DatadogIntegrationOutput(sgqlc.types.Type):
18495
18515
  """A Datadog integration"""
18496
18516
 
18497
18517
  __schema__ = schema
18498
- __field_names__ = ("integration_id", "integration_name", "site", "default_incident_fields")
18518
+ __field_names__ = (
18519
+ "integration_id",
18520
+ "integration_name",
18521
+ "site",
18522
+ "default_incident_fields",
18523
+ "created_time",
18524
+ "updated_time",
18525
+ "created_by",
18526
+ "last_update_user",
18527
+ )
18499
18528
  integration_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="integrationId")
18500
18529
  """The integration ID"""
18501
18530
 
@@ -18510,6 +18539,18 @@ class DatadogIntegrationOutput(sgqlc.types.Type):
18510
18539
  default_incident_fields = sgqlc.types.Field(JSONString, graphql_name="defaultIncidentFields")
18511
18540
  """Default values for Datadog incident fields"""
18512
18541
 
18542
+ created_time = sgqlc.types.Field(DateTime, graphql_name="createdTime")
18543
+ """When the integration was created"""
18544
+
18545
+ updated_time = sgqlc.types.Field(DateTime, graphql_name="updatedTime")
18546
+ """When the integration was last updated"""
18547
+
18548
+ created_by = sgqlc.types.Field("User", graphql_name="createdBy")
18549
+ """Who created the integration"""
18550
+
18551
+ last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
18552
+ """Who last updated the integration"""
18553
+
18513
18554
 
18514
18555
  class DatadogServiceOutput(sgqlc.types.Type):
18515
18556
  """A Datadog incident service"""
@@ -22779,6 +22820,10 @@ class JiraIntegrationOutput(sgqlc.types.Type):
22779
22820
  "is_token_auth",
22780
22821
  "webhook_secret_defined",
22781
22822
  "webhook_secret_mismatch_detected",
22823
+ "created_time",
22824
+ "updated_time",
22825
+ "created_by",
22826
+ "last_updated_by",
22782
22827
  )
22783
22828
  integration_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="integrationId")
22784
22829
  """The integration ID"""
@@ -22823,6 +22868,18 @@ class JiraIntegrationOutput(sgqlc.types.Type):
22823
22868
  the received payloads
22824
22869
  """
22825
22870
 
22871
+ created_time = sgqlc.types.Field(DateTime, graphql_name="createdTime")
22872
+ """When the integration was created"""
22873
+
22874
+ updated_time = sgqlc.types.Field(DateTime, graphql_name="updatedTime")
22875
+ """When the integration was last updated"""
22876
+
22877
+ created_by = sgqlc.types.Field("User", graphql_name="createdBy")
22878
+ """Who created the integration"""
22879
+
22880
+ last_updated_by = sgqlc.types.Field("User", graphql_name="lastUpdatedBy")
22881
+ """Who last updated the integration"""
22882
+
22826
22883
 
22827
22884
  class JiraIssueTypeFieldAllowedValueOutput(sgqlc.types.Type):
22828
22885
  __schema__ = schema
@@ -24258,6 +24315,10 @@ class LogsIntegrationOutput(sgqlc.types.Type):
24258
24315
  "webhook_url",
24259
24316
  "integration_type",
24260
24317
  "headers",
24318
+ "created_time",
24319
+ "updated_time",
24320
+ "created_by",
24321
+ "last_update_user",
24261
24322
  )
24262
24323
  integration_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="integrationId")
24263
24324
  """The integration ID"""
@@ -24276,6 +24337,18 @@ class LogsIntegrationOutput(sgqlc.types.Type):
24276
24337
  headers = sgqlc.types.Field(sgqlc.types.list_of("WebhookHeader"), graphql_name="headers")
24277
24338
  """Header key/value to use when sending webhook request"""
24278
24339
 
24340
+ created_time = sgqlc.types.Field(DateTime, graphql_name="createdTime")
24341
+ """When the integration was created"""
24342
+
24343
+ updated_time = sgqlc.types.Field(DateTime, graphql_name="updatedTime")
24344
+ """When the integration was last updated"""
24345
+
24346
+ created_by = sgqlc.types.Field("User", graphql_name="createdBy")
24347
+ """Who created the integration"""
24348
+
24349
+ last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
24350
+ """Who last updated the integration"""
24351
+
24279
24352
 
24280
24353
  class LookerDashboardTileRef(sgqlc.types.Type):
24281
24354
  __schema__ = schema
@@ -43913,6 +43986,10 @@ class PagerDutyServiceIntegrationOutput(sgqlc.types.Type):
43913
43986
  "webhook_enabled",
43914
43987
  "webhook_url",
43915
43988
  "webhook_secret_defined",
43989
+ "created_time",
43990
+ "updated_time",
43991
+ "created_by",
43992
+ "last_update_user",
43916
43993
  "webhook_secret_mismatch_detected",
43917
43994
  )
43918
43995
  integration_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="integrationId")
@@ -43939,6 +44016,18 @@ class PagerDutyServiceIntegrationOutput(sgqlc.types.Type):
43939
44016
  of webhook payloads sent by PagerDuty
43940
44017
  """
43941
44018
 
44019
+ created_time = sgqlc.types.Field(DateTime, graphql_name="createdTime")
44020
+ """When the integration was created"""
44021
+
44022
+ updated_time = sgqlc.types.Field(DateTime, graphql_name="updatedTime")
44023
+ """When the integration was last updated"""
44024
+
44025
+ created_by = sgqlc.types.Field("User", graphql_name="createdBy")
44026
+ """Who created the integration"""
44027
+
44028
+ last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
44029
+ """Who last updated the integration"""
44030
+
43942
44031
  webhook_secret_mismatch_detected = sgqlc.types.Field(
43943
44032
  Boolean, graphql_name="webhookSecretMismatchDetected"
43944
44033
  )
@@ -63805,6 +63894,10 @@ class ServiceNowIntegrationOutput(sgqlc.types.Type):
63805
63894
  "webhook_url",
63806
63895
  "webhook_config",
63807
63896
  "options",
63897
+ "created_time",
63898
+ "updated_time",
63899
+ "created_by",
63900
+ "last_update_user",
63808
63901
  )
63809
63902
  integration_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="integrationId")
63810
63903
  """The integration ID"""
@@ -63849,6 +63942,18 @@ class ServiceNowIntegrationOutput(sgqlc.types.Type):
63849
63942
  options = sgqlc.types.Field(ServiceNowIntegrationOptions, graphql_name="options")
63850
63943
  """Options for ServiceNow integration"""
63851
63944
 
63945
+ created_time = sgqlc.types.Field(DateTime, graphql_name="createdTime")
63946
+ """When the integration was created"""
63947
+
63948
+ updated_time = sgqlc.types.Field(DateTime, graphql_name="updatedTime")
63949
+ """When the integration was last updated"""
63950
+
63951
+ created_by = sgqlc.types.Field("User", graphql_name="createdBy")
63952
+ """Who created the integration"""
63953
+
63954
+ last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
63955
+ """Who last updated the integration"""
63956
+
63852
63957
 
63853
63958
  class ServiceNowStateMappingOutput(sgqlc.types.Type):
63854
63959
  __schema__ = schema
@@ -69752,7 +69857,14 @@ class WebexIntegrationOutput(sgqlc.types.Type):
69752
69857
  """A Webex integration"""
69753
69858
 
69754
69859
  __schema__ = schema
69755
- __field_names__ = ("integration_id", "integration_name")
69860
+ __field_names__ = (
69861
+ "integration_id",
69862
+ "integration_name",
69863
+ "created_time",
69864
+ "updated_time",
69865
+ "created_by",
69866
+ "last_update_user",
69867
+ )
69756
69868
  integration_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="integrationId")
69757
69869
  """The integration ID"""
69758
69870
 
@@ -69761,6 +69873,18 @@ class WebexIntegrationOutput(sgqlc.types.Type):
69761
69873
  )
69762
69874
  """A short name to identify the integration"""
69763
69875
 
69876
+ created_time = sgqlc.types.Field(DateTime, graphql_name="createdTime")
69877
+ """When the integration was created"""
69878
+
69879
+ updated_time = sgqlc.types.Field(DateTime, graphql_name="updatedTime")
69880
+ """When the integration was last updated"""
69881
+
69882
+ created_by = sgqlc.types.Field("User", graphql_name="createdBy")
69883
+ """Who created the integration"""
69884
+
69885
+ last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
69886
+ """Who last updated the integration"""
69887
+
69764
69888
 
69765
69889
  class WebexTestCredentialsOutput(sgqlc.types.Type):
69766
69890
  """A Webex test credentials result"""
@@ -72283,6 +72407,7 @@ class CollectionBlock(sgqlc.types.Type, CollectionPreferenceNode):
72283
72407
  class CollibraIntegration(sgqlc.types.Type, Node):
72284
72408
  __schema__ = schema
72285
72409
  __field_names__ = (
72410
+ "last_update_user",
72286
72411
  "uuid",
72287
72412
  "integration_name",
72288
72413
  "server_url",
@@ -72293,6 +72418,9 @@ class CollibraIntegration(sgqlc.types.Type, Node):
72293
72418
  "created_by",
72294
72419
  "warehouse_domain_mapping",
72295
72420
  )
72421
+ last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
72422
+ """Last updated by"""
72423
+
72296
72424
  uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
72297
72425
  """Integration external ID"""
72298
72426
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pycarlo
3
- Version: 0.10.210
3
+ Version: 0.10.211
4
4
  Summary: Monte Carlo's Python SDK
5
5
  Home-page: https://www.montecarlodata.com/
6
6
  Author: Monte Carlo Data, Inc
@@ -35,10 +35,10 @@ pycarlo/features/user/queries.py,sha256=m97RvM0oiBlrU5xmOwe_JJ5N0G0NG5hIOeyQqN2O
35
35
  pycarlo/features/user/service.py,sha256=DHkhuonySaHro07NTd0YNe3cNkDk62CiRTY77dhVaMs,2890
36
36
  pycarlo/lib/README.md,sha256=QGNeUefPzLKGyZqn5aITpcFgkC9WQTNS292BGisRFHk,139
37
37
  pycarlo/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
38
- pycarlo/lib/schema.json,sha256=utuH3FtlT9OiCejVLlB_wth_CgtQYOwxgWSJxEPsXgo,6375610
39
- pycarlo/lib/schema.py,sha256=HxQ6axrKZLvy9P2IW0e-R9ZK9v5SykYzq7jRQuqa2Uk,2774069
40
- pycarlo-0.10.210.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
- pycarlo-0.10.210.dist-info/METADATA,sha256=GcSERHK6Ru2fnMWWRNsNX3c-m0ql10ft8PixYyxinbc,8742
42
- pycarlo-0.10.210.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
- pycarlo-0.10.210.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
- pycarlo-0.10.210.dist-info/RECORD,,
38
+ pycarlo/lib/schema.json,sha256=C3naPBiRBpAY7eA5etghP1Vl3RCIze-ZzDFyW_jpVYc,6386446
39
+ pycarlo/lib/schema.py,sha256=pijSkPCxPisyjLgLKCucNDxQrNQ0bqHHr58_SYD9RFI,2778305
40
+ pycarlo-0.10.211.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
+ pycarlo-0.10.211.dist-info/METADATA,sha256=ZnjmczeptIG43UVe2KWKa9r5-yfINkOm_ZrL8CCYZqM,8742
42
+ pycarlo-0.10.211.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
+ pycarlo-0.10.211.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
+ pycarlo-0.10.211.dist-info/RECORD,,