pycarlo 0.10.210__py3-none-any.whl → 0.10.212__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.json +34218 -33846
- pycarlo/lib/schema.py +139 -3
- {pycarlo-0.10.210.dist-info → pycarlo-0.10.212.dist-info}/METADATA +1 -1
- {pycarlo-0.10.210.dist-info → pycarlo-0.10.212.dist-info}/RECORD +7 -7
- {pycarlo-0.10.210.dist-info → pycarlo-0.10.212.dist-info}/LICENSE +0 -0
- {pycarlo-0.10.210.dist-info → pycarlo-0.10.212.dist-info}/WHEEL +0 -0
- {pycarlo-0.10.210.dist-info → pycarlo-0.10.212.dist-info}/top_level.txt +0 -0
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__ = (
|
|
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__ = (
|
|
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"""
|
|
@@ -21014,6 +21055,8 @@ class FHEvent(sgqlc.types.Type):
|
|
|
21014
21055
|
"detector_feedback",
|
|
21015
21056
|
"agg_time_interval",
|
|
21016
21057
|
"event_type",
|
|
21058
|
+
"time_series_uuid",
|
|
21059
|
+
"parent_time_series_uuid",
|
|
21017
21060
|
)
|
|
21018
21061
|
event_uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="eventUuid")
|
|
21019
21062
|
"""UUID of the anomaly event"""
|
|
@@ -21075,6 +21118,12 @@ class FHEvent(sgqlc.types.Type):
|
|
|
21075
21118
|
event_type = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="eventType")
|
|
21076
21119
|
"""Type of the event"""
|
|
21077
21120
|
|
|
21121
|
+
time_series_uuid = sgqlc.types.Field(UUID, graphql_name="timeSeriesUuid")
|
|
21122
|
+
"""Time series UUID"""
|
|
21123
|
+
|
|
21124
|
+
parent_time_series_uuid = sgqlc.types.Field(UUID, graphql_name="parentTimeSeriesUuid")
|
|
21125
|
+
"""Parent time series UUID"""
|
|
21126
|
+
|
|
21078
21127
|
|
|
21079
21128
|
class FHEvents(sgqlc.types.Type):
|
|
21080
21129
|
__schema__ = schema
|
|
@@ -22779,6 +22828,10 @@ class JiraIntegrationOutput(sgqlc.types.Type):
|
|
|
22779
22828
|
"is_token_auth",
|
|
22780
22829
|
"webhook_secret_defined",
|
|
22781
22830
|
"webhook_secret_mismatch_detected",
|
|
22831
|
+
"created_time",
|
|
22832
|
+
"updated_time",
|
|
22833
|
+
"created_by",
|
|
22834
|
+
"last_updated_by",
|
|
22782
22835
|
)
|
|
22783
22836
|
integration_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="integrationId")
|
|
22784
22837
|
"""The integration ID"""
|
|
@@ -22823,6 +22876,18 @@ class JiraIntegrationOutput(sgqlc.types.Type):
|
|
|
22823
22876
|
the received payloads
|
|
22824
22877
|
"""
|
|
22825
22878
|
|
|
22879
|
+
created_time = sgqlc.types.Field(DateTime, graphql_name="createdTime")
|
|
22880
|
+
"""When the integration was created"""
|
|
22881
|
+
|
|
22882
|
+
updated_time = sgqlc.types.Field(DateTime, graphql_name="updatedTime")
|
|
22883
|
+
"""When the integration was last updated"""
|
|
22884
|
+
|
|
22885
|
+
created_by = sgqlc.types.Field("User", graphql_name="createdBy")
|
|
22886
|
+
"""Who created the integration"""
|
|
22887
|
+
|
|
22888
|
+
last_updated_by = sgqlc.types.Field("User", graphql_name="lastUpdatedBy")
|
|
22889
|
+
"""Who last updated the integration"""
|
|
22890
|
+
|
|
22826
22891
|
|
|
22827
22892
|
class JiraIssueTypeFieldAllowedValueOutput(sgqlc.types.Type):
|
|
22828
22893
|
__schema__ = schema
|
|
@@ -24258,6 +24323,10 @@ class LogsIntegrationOutput(sgqlc.types.Type):
|
|
|
24258
24323
|
"webhook_url",
|
|
24259
24324
|
"integration_type",
|
|
24260
24325
|
"headers",
|
|
24326
|
+
"created_time",
|
|
24327
|
+
"updated_time",
|
|
24328
|
+
"created_by",
|
|
24329
|
+
"last_update_user",
|
|
24261
24330
|
)
|
|
24262
24331
|
integration_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="integrationId")
|
|
24263
24332
|
"""The integration ID"""
|
|
@@ -24276,6 +24345,18 @@ class LogsIntegrationOutput(sgqlc.types.Type):
|
|
|
24276
24345
|
headers = sgqlc.types.Field(sgqlc.types.list_of("WebhookHeader"), graphql_name="headers")
|
|
24277
24346
|
"""Header key/value to use when sending webhook request"""
|
|
24278
24347
|
|
|
24348
|
+
created_time = sgqlc.types.Field(DateTime, graphql_name="createdTime")
|
|
24349
|
+
"""When the integration was created"""
|
|
24350
|
+
|
|
24351
|
+
updated_time = sgqlc.types.Field(DateTime, graphql_name="updatedTime")
|
|
24352
|
+
"""When the integration was last updated"""
|
|
24353
|
+
|
|
24354
|
+
created_by = sgqlc.types.Field("User", graphql_name="createdBy")
|
|
24355
|
+
"""Who created the integration"""
|
|
24356
|
+
|
|
24357
|
+
last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
|
|
24358
|
+
"""Who last updated the integration"""
|
|
24359
|
+
|
|
24279
24360
|
|
|
24280
24361
|
class LookerDashboardTileRef(sgqlc.types.Type):
|
|
24281
24362
|
__schema__ = schema
|
|
@@ -43913,6 +43994,10 @@ class PagerDutyServiceIntegrationOutput(sgqlc.types.Type):
|
|
|
43913
43994
|
"webhook_enabled",
|
|
43914
43995
|
"webhook_url",
|
|
43915
43996
|
"webhook_secret_defined",
|
|
43997
|
+
"created_time",
|
|
43998
|
+
"updated_time",
|
|
43999
|
+
"created_by",
|
|
44000
|
+
"last_update_user",
|
|
43916
44001
|
"webhook_secret_mismatch_detected",
|
|
43917
44002
|
)
|
|
43918
44003
|
integration_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="integrationId")
|
|
@@ -43939,6 +44024,18 @@ class PagerDutyServiceIntegrationOutput(sgqlc.types.Type):
|
|
|
43939
44024
|
of webhook payloads sent by PagerDuty
|
|
43940
44025
|
"""
|
|
43941
44026
|
|
|
44027
|
+
created_time = sgqlc.types.Field(DateTime, graphql_name="createdTime")
|
|
44028
|
+
"""When the integration was created"""
|
|
44029
|
+
|
|
44030
|
+
updated_time = sgqlc.types.Field(DateTime, graphql_name="updatedTime")
|
|
44031
|
+
"""When the integration was last updated"""
|
|
44032
|
+
|
|
44033
|
+
created_by = sgqlc.types.Field("User", graphql_name="createdBy")
|
|
44034
|
+
"""Who created the integration"""
|
|
44035
|
+
|
|
44036
|
+
last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
|
|
44037
|
+
"""Who last updated the integration"""
|
|
44038
|
+
|
|
43942
44039
|
webhook_secret_mismatch_detected = sgqlc.types.Field(
|
|
43943
44040
|
Boolean, graphql_name="webhookSecretMismatchDetected"
|
|
43944
44041
|
)
|
|
@@ -63805,6 +63902,10 @@ class ServiceNowIntegrationOutput(sgqlc.types.Type):
|
|
|
63805
63902
|
"webhook_url",
|
|
63806
63903
|
"webhook_config",
|
|
63807
63904
|
"options",
|
|
63905
|
+
"created_time",
|
|
63906
|
+
"updated_time",
|
|
63907
|
+
"created_by",
|
|
63908
|
+
"last_update_user",
|
|
63808
63909
|
)
|
|
63809
63910
|
integration_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="integrationId")
|
|
63810
63911
|
"""The integration ID"""
|
|
@@ -63849,6 +63950,18 @@ class ServiceNowIntegrationOutput(sgqlc.types.Type):
|
|
|
63849
63950
|
options = sgqlc.types.Field(ServiceNowIntegrationOptions, graphql_name="options")
|
|
63850
63951
|
"""Options for ServiceNow integration"""
|
|
63851
63952
|
|
|
63953
|
+
created_time = sgqlc.types.Field(DateTime, graphql_name="createdTime")
|
|
63954
|
+
"""When the integration was created"""
|
|
63955
|
+
|
|
63956
|
+
updated_time = sgqlc.types.Field(DateTime, graphql_name="updatedTime")
|
|
63957
|
+
"""When the integration was last updated"""
|
|
63958
|
+
|
|
63959
|
+
created_by = sgqlc.types.Field("User", graphql_name="createdBy")
|
|
63960
|
+
"""Who created the integration"""
|
|
63961
|
+
|
|
63962
|
+
last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
|
|
63963
|
+
"""Who last updated the integration"""
|
|
63964
|
+
|
|
63852
63965
|
|
|
63853
63966
|
class ServiceNowStateMappingOutput(sgqlc.types.Type):
|
|
63854
63967
|
__schema__ = schema
|
|
@@ -69752,7 +69865,14 @@ class WebexIntegrationOutput(sgqlc.types.Type):
|
|
|
69752
69865
|
"""A Webex integration"""
|
|
69753
69866
|
|
|
69754
69867
|
__schema__ = schema
|
|
69755
|
-
__field_names__ = (
|
|
69868
|
+
__field_names__ = (
|
|
69869
|
+
"integration_id",
|
|
69870
|
+
"integration_name",
|
|
69871
|
+
"created_time",
|
|
69872
|
+
"updated_time",
|
|
69873
|
+
"created_by",
|
|
69874
|
+
"last_update_user",
|
|
69875
|
+
)
|
|
69756
69876
|
integration_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="integrationId")
|
|
69757
69877
|
"""The integration ID"""
|
|
69758
69878
|
|
|
@@ -69761,6 +69881,18 @@ class WebexIntegrationOutput(sgqlc.types.Type):
|
|
|
69761
69881
|
)
|
|
69762
69882
|
"""A short name to identify the integration"""
|
|
69763
69883
|
|
|
69884
|
+
created_time = sgqlc.types.Field(DateTime, graphql_name="createdTime")
|
|
69885
|
+
"""When the integration was created"""
|
|
69886
|
+
|
|
69887
|
+
updated_time = sgqlc.types.Field(DateTime, graphql_name="updatedTime")
|
|
69888
|
+
"""When the integration was last updated"""
|
|
69889
|
+
|
|
69890
|
+
created_by = sgqlc.types.Field("User", graphql_name="createdBy")
|
|
69891
|
+
"""Who created the integration"""
|
|
69892
|
+
|
|
69893
|
+
last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
|
|
69894
|
+
"""Who last updated the integration"""
|
|
69895
|
+
|
|
69764
69896
|
|
|
69765
69897
|
class WebexTestCredentialsOutput(sgqlc.types.Type):
|
|
69766
69898
|
"""A Webex test credentials result"""
|
|
@@ -72283,6 +72415,7 @@ class CollectionBlock(sgqlc.types.Type, CollectionPreferenceNode):
|
|
|
72283
72415
|
class CollibraIntegration(sgqlc.types.Type, Node):
|
|
72284
72416
|
__schema__ = schema
|
|
72285
72417
|
__field_names__ = (
|
|
72418
|
+
"last_update_user",
|
|
72286
72419
|
"uuid",
|
|
72287
72420
|
"integration_name",
|
|
72288
72421
|
"server_url",
|
|
@@ -72293,6 +72426,9 @@ class CollibraIntegration(sgqlc.types.Type, Node):
|
|
|
72293
72426
|
"created_by",
|
|
72294
72427
|
"warehouse_domain_mapping",
|
|
72295
72428
|
)
|
|
72429
|
+
last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
|
|
72430
|
+
"""Last updated by"""
|
|
72431
|
+
|
|
72296
72432
|
uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
|
|
72297
72433
|
"""Integration external ID"""
|
|
72298
72434
|
|
|
@@ -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=
|
|
39
|
-
pycarlo/lib/schema.py,sha256=
|
|
40
|
-
pycarlo-0.10.
|
|
41
|
-
pycarlo-0.10.
|
|
42
|
-
pycarlo-0.10.
|
|
43
|
-
pycarlo-0.10.
|
|
44
|
-
pycarlo-0.10.
|
|
38
|
+
pycarlo/lib/schema.json,sha256=wOcTuWUTukT7BI4HHisvFeqjT4pTQXTR7ySLo0sQHyA,6387177
|
|
39
|
+
pycarlo/lib/schema.py,sha256=U90TzQz2QdNbqWzu4kCgkxhZ709hLxQ1554-fuvAWKw,2778600
|
|
40
|
+
pycarlo-0.10.212.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
41
|
+
pycarlo-0.10.212.dist-info/METADATA,sha256=IgU1cqrQnbbYWe8paIs-TpyRw79w15YAqSPty7InTSM,8742
|
|
42
|
+
pycarlo-0.10.212.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
43
|
+
pycarlo-0.10.212.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
|
|
44
|
+
pycarlo-0.10.212.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|