pycarlo 0.10.205__py3-none-any.whl → 0.10.207__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
@@ -14273,6 +14273,10 @@ class BiContainer(sgqlc.types.Type):
14273
14273
  __schema__ = schema
14274
14274
  __field_names__ = (
14275
14275
  "id",
14276
+ "created_time",
14277
+ "updated_time",
14278
+ "created_by",
14279
+ "last_update_user",
14276
14280
  "deleted_at",
14277
14281
  "account",
14278
14282
  "uuid",
@@ -14283,6 +14287,16 @@ class BiContainer(sgqlc.types.Type):
14283
14287
  )
14284
14288
  id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name="id")
14285
14289
 
14290
+ created_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="createdTime")
14291
+
14292
+ updated_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="updatedTime")
14293
+
14294
+ created_by = sgqlc.types.Field("User", graphql_name="createdBy")
14295
+ """Creator"""
14296
+
14297
+ last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
14298
+ """Last updated by"""
14299
+
14286
14300
  deleted_at = sgqlc.types.Field(DateTime, graphql_name="deletedAt")
14287
14301
 
14288
14302
  account = sgqlc.types.Field(sgqlc.types.non_null(Account), graphql_name="account")
@@ -15714,6 +15728,10 @@ class Connection(sgqlc.types.Type):
15714
15728
  __schema__ = schema
15715
15729
  __field_names__ = (
15716
15730
  "id",
15731
+ "created_time",
15732
+ "updated_time",
15733
+ "created_by",
15734
+ "last_update_user",
15717
15735
  "deleted_at",
15718
15736
  "uuid",
15719
15737
  "type",
@@ -15742,6 +15760,16 @@ class Connection(sgqlc.types.Type):
15742
15760
  )
15743
15761
  id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name="id")
15744
15762
 
15763
+ created_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="createdTime")
15764
+
15765
+ updated_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="updatedTime")
15766
+
15767
+ created_by = sgqlc.types.Field("User", graphql_name="createdBy")
15768
+ """Creator"""
15769
+
15770
+ last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
15771
+ """Last updated by"""
15772
+
15745
15773
  deleted_at = sgqlc.types.Field(DateTime, graphql_name="deletedAt")
15746
15774
 
15747
15775
  uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
@@ -20025,6 +20053,10 @@ class EtlContainer(sgqlc.types.Type):
20025
20053
  __schema__ = schema
20026
20054
  __field_names__ = (
20027
20055
  "id",
20056
+ "created_time",
20057
+ "updated_time",
20058
+ "created_by",
20059
+ "last_update_user",
20028
20060
  "deleted_at",
20029
20061
  "account",
20030
20062
  "uuid",
@@ -20051,6 +20083,16 @@ class EtlContainer(sgqlc.types.Type):
20051
20083
  )
20052
20084
  id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name="id")
20053
20085
 
20086
+ created_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="createdTime")
20087
+
20088
+ updated_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="updatedTime")
20089
+
20090
+ created_by = sgqlc.types.Field("User", graphql_name="createdBy")
20091
+ """Creator"""
20092
+
20093
+ last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
20094
+ """Last updated by"""
20095
+
20054
20096
  deleted_at = sgqlc.types.Field(DateTime, graphql_name="deletedAt")
20055
20097
 
20056
20098
  account = sgqlc.types.Field(sgqlc.types.non_null(Account), graphql_name="account")
@@ -20956,6 +20998,7 @@ class FHEvent(sgqlc.types.Type):
20956
20998
  "historical_mean",
20957
20999
  "detector_feedback",
20958
21000
  "agg_time_interval",
21001
+ "event_type",
20959
21002
  )
20960
21003
  event_uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="eventUuid")
20961
21004
  """UUID of the anomaly event"""
@@ -21014,6 +21057,9 @@ class FHEvent(sgqlc.types.Type):
21014
21057
  timecomponent of the event timestamp should be ignored.
21015
21058
  """
21016
21059
 
21060
+ event_type = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="eventType")
21061
+ """Type of the event"""
21062
+
21017
21063
 
21018
21064
  class FHEvents(sgqlc.types.Type):
21019
21065
  __schema__ = schema
@@ -64707,6 +64753,8 @@ class StreamingCluster(sgqlc.types.Type):
64707
64753
  "id",
64708
64754
  "created_time",
64709
64755
  "updated_time",
64756
+ "created_by",
64757
+ "last_update_user",
64710
64758
  "deleted_at",
64711
64759
  "uuid",
64712
64760
  "external_cluster_id",
@@ -64721,6 +64769,12 @@ class StreamingCluster(sgqlc.types.Type):
64721
64769
 
64722
64770
  updated_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="updatedTime")
64723
64771
 
64772
+ created_by = sgqlc.types.Field("User", graphql_name="createdBy")
64773
+ """Creator"""
64774
+
64775
+ last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
64776
+ """Last updated by"""
64777
+
64724
64778
  deleted_at = sgqlc.types.Field(DateTime, graphql_name="deletedAt")
64725
64779
 
64726
64780
  uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
@@ -64756,6 +64810,8 @@ class StreamingSystem(sgqlc.types.Type):
64756
64810
  "id",
64757
64811
  "created_time",
64758
64812
  "updated_time",
64813
+ "created_by",
64814
+ "last_update_user",
64759
64815
  "deleted_at",
64760
64816
  "uuid",
64761
64817
  "name",
@@ -64769,6 +64825,12 @@ class StreamingSystem(sgqlc.types.Type):
64769
64825
 
64770
64826
  updated_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="updatedTime")
64771
64827
 
64828
+ created_by = sgqlc.types.Field("User", graphql_name="createdBy")
64829
+ """Creator"""
64830
+
64831
+ last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
64832
+ """Last updated by"""
64833
+
64772
64834
  deleted_at = sgqlc.types.Field(DateTime, graphql_name="deletedAt")
64773
64835
 
64774
64836
  uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
@@ -69190,6 +69252,9 @@ class Warehouse(sgqlc.types.Type):
69190
69252
  __schema__ = schema
69191
69253
  __field_names__ = (
69192
69254
  "id",
69255
+ "created_time",
69256
+ "updated_time",
69257
+ "last_update_user",
69193
69258
  "uuid",
69194
69259
  "name",
69195
69260
  "connection_type",
@@ -69242,6 +69307,13 @@ class Warehouse(sgqlc.types.Type):
69242
69307
  )
69243
69308
  id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name="id")
69244
69309
 
69310
+ created_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="createdTime")
69311
+
69312
+ updated_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="updatedTime")
69313
+
69314
+ last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
69315
+ """Last updated by"""
69316
+
69245
69317
  uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
69246
69318
 
69247
69319
  name = sgqlc.types.Field(String, graphql_name="name")
@@ -70795,6 +70867,10 @@ class AuthUser(sgqlc.types.Type, Node):
70795
70867
  "delete_reason",
70796
70868
  "invalidated_at",
70797
70869
  "persona",
70870
+ "streamingsystemmodel_created_by",
70871
+ "streamingsystemmodel_updated_by",
70872
+ "streamingclustermodel_created_by",
70873
+ "streamingclustermodel_updated_by",
70798
70874
  "monitor_labels_created",
70799
70875
  "routing_rules_created_by",
70800
70876
  "routing_rules_updated_by",
@@ -70805,6 +70881,13 @@ class AuthUser(sgqlc.types.Type, Node):
70805
70881
  "invitees",
70806
70882
  "warehouse_deleted_by",
70807
70883
  "created_warehouses",
70884
+ "warehousemodel_updated_by",
70885
+ "bicontainermodel_created_by",
70886
+ "bicontainermodel_updated_by",
70887
+ "etlcontainermodel_created_by",
70888
+ "etlcontainermodel_updated_by",
70889
+ "connectionmodel_created_by",
70890
+ "connectionmodel_updated_by",
70808
70891
  "eventmodel_set",
70809
70892
  "eventdetectorfeedbackmodel_created_by",
70810
70893
  "eventdetectorfeedbackmodel_updated_by",
@@ -70902,6 +70985,30 @@ class AuthUser(sgqlc.types.Type, Node):
70902
70985
  experience and the onboarding flow.
70903
70986
  """
70904
70987
 
70988
+ streamingsystemmodel_created_by = sgqlc.types.Field(
70989
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(StreamingSystem))),
70990
+ graphql_name="streamingsystemmodelCreatedBy",
70991
+ )
70992
+ """Creator"""
70993
+
70994
+ streamingsystemmodel_updated_by = sgqlc.types.Field(
70995
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(StreamingSystem))),
70996
+ graphql_name="streamingsystemmodelUpdatedBy",
70997
+ )
70998
+ """Last updated by"""
70999
+
71000
+ streamingclustermodel_created_by = sgqlc.types.Field(
71001
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(StreamingCluster))),
71002
+ graphql_name="streamingclustermodelCreatedBy",
71003
+ )
71004
+ """Creator"""
71005
+
71006
+ streamingclustermodel_updated_by = sgqlc.types.Field(
71007
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(StreamingCluster))),
71008
+ graphql_name="streamingclustermodelUpdatedBy",
71009
+ )
71010
+ """Last updated by"""
71011
+
70905
71012
  monitor_labels_created = sgqlc.types.Field(
70906
71013
  sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(MonitorLabelObject))),
70907
71014
  graphql_name="monitorLabelsCreated",
@@ -71021,6 +71128,48 @@ class AuthUser(sgqlc.types.Type, Node):
71021
71128
  )
71022
71129
  """User who created this warehouse"""
71023
71130
 
71131
+ warehousemodel_updated_by = sgqlc.types.Field(
71132
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Warehouse))),
71133
+ graphql_name="warehousemodelUpdatedBy",
71134
+ )
71135
+ """Last updated by"""
71136
+
71137
+ bicontainermodel_created_by = sgqlc.types.Field(
71138
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(BiContainer))),
71139
+ graphql_name="bicontainermodelCreatedBy",
71140
+ )
71141
+ """Creator"""
71142
+
71143
+ bicontainermodel_updated_by = sgqlc.types.Field(
71144
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(BiContainer))),
71145
+ graphql_name="bicontainermodelUpdatedBy",
71146
+ )
71147
+ """Last updated by"""
71148
+
71149
+ etlcontainermodel_created_by = sgqlc.types.Field(
71150
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(EtlContainer))),
71151
+ graphql_name="etlcontainermodelCreatedBy",
71152
+ )
71153
+ """Creator"""
71154
+
71155
+ etlcontainermodel_updated_by = sgqlc.types.Field(
71156
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(EtlContainer))),
71157
+ graphql_name="etlcontainermodelUpdatedBy",
71158
+ )
71159
+ """Last updated by"""
71160
+
71161
+ connectionmodel_created_by = sgqlc.types.Field(
71162
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Connection))),
71163
+ graphql_name="connectionmodelCreatedBy",
71164
+ )
71165
+ """Creator"""
71166
+
71167
+ connectionmodel_updated_by = sgqlc.types.Field(
71168
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Connection))),
71169
+ graphql_name="connectionmodelUpdatedBy",
71170
+ )
71171
+ """Last updated by"""
71172
+
71024
71173
  eventmodel_set = sgqlc.types.Field(
71025
71174
  sgqlc.types.non_null(EventConnection),
71026
71175
  graphql_name="eventmodelSet",
@@ -76904,6 +77053,10 @@ class User(sgqlc.types.Type, Node):
76904
77053
  "delete_reason",
76905
77054
  "invalidated_at",
76906
77055
  "persona",
77056
+ "streamingsystemmodel_created_by",
77057
+ "streamingsystemmodel_updated_by",
77058
+ "streamingclustermodel_created_by",
77059
+ "streamingclustermodel_updated_by",
76907
77060
  "monitor_labels_created",
76908
77061
  "routing_rules_created_by",
76909
77062
  "routing_rules_updated_by",
@@ -76914,6 +77067,13 @@ class User(sgqlc.types.Type, Node):
76914
77067
  "invitees",
76915
77068
  "warehouse_deleted_by",
76916
77069
  "created_warehouses",
77070
+ "warehousemodel_updated_by",
77071
+ "bicontainermodel_created_by",
77072
+ "bicontainermodel_updated_by",
77073
+ "etlcontainermodel_created_by",
77074
+ "etlcontainermodel_updated_by",
77075
+ "connectionmodel_created_by",
77076
+ "connectionmodel_updated_by",
76917
77077
  "eventmodel_set",
76918
77078
  "eventdetectorfeedbackmodel_created_by",
76919
77079
  "eventdetectorfeedbackmodel_updated_by",
@@ -77014,6 +77174,30 @@ class User(sgqlc.types.Type, Node):
77014
77174
  experience and the onboarding flow.
77015
77175
  """
77016
77176
 
77177
+ streamingsystemmodel_created_by = sgqlc.types.Field(
77178
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(StreamingSystem))),
77179
+ graphql_name="streamingsystemmodelCreatedBy",
77180
+ )
77181
+ """Creator"""
77182
+
77183
+ streamingsystemmodel_updated_by = sgqlc.types.Field(
77184
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(StreamingSystem))),
77185
+ graphql_name="streamingsystemmodelUpdatedBy",
77186
+ )
77187
+ """Last updated by"""
77188
+
77189
+ streamingclustermodel_created_by = sgqlc.types.Field(
77190
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(StreamingCluster))),
77191
+ graphql_name="streamingclustermodelCreatedBy",
77192
+ )
77193
+ """Creator"""
77194
+
77195
+ streamingclustermodel_updated_by = sgqlc.types.Field(
77196
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(StreamingCluster))),
77197
+ graphql_name="streamingclustermodelUpdatedBy",
77198
+ )
77199
+ """Last updated by"""
77200
+
77017
77201
  monitor_labels_created = sgqlc.types.Field(
77018
77202
  sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(MonitorLabelObject))),
77019
77203
  graphql_name="monitorLabelsCreated",
@@ -77133,6 +77317,48 @@ class User(sgqlc.types.Type, Node):
77133
77317
  )
77134
77318
  """User who created this warehouse"""
77135
77319
 
77320
+ warehousemodel_updated_by = sgqlc.types.Field(
77321
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Warehouse))),
77322
+ graphql_name="warehousemodelUpdatedBy",
77323
+ )
77324
+ """Last updated by"""
77325
+
77326
+ bicontainermodel_created_by = sgqlc.types.Field(
77327
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(BiContainer))),
77328
+ graphql_name="bicontainermodelCreatedBy",
77329
+ )
77330
+ """Creator"""
77331
+
77332
+ bicontainermodel_updated_by = sgqlc.types.Field(
77333
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(BiContainer))),
77334
+ graphql_name="bicontainermodelUpdatedBy",
77335
+ )
77336
+ """Last updated by"""
77337
+
77338
+ etlcontainermodel_created_by = sgqlc.types.Field(
77339
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(EtlContainer))),
77340
+ graphql_name="etlcontainermodelCreatedBy",
77341
+ )
77342
+ """Creator"""
77343
+
77344
+ etlcontainermodel_updated_by = sgqlc.types.Field(
77345
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(EtlContainer))),
77346
+ graphql_name="etlcontainermodelUpdatedBy",
77347
+ )
77348
+ """Last updated by"""
77349
+
77350
+ connectionmodel_created_by = sgqlc.types.Field(
77351
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Connection))),
77352
+ graphql_name="connectionmodelCreatedBy",
77353
+ )
77354
+ """Creator"""
77355
+
77356
+ connectionmodel_updated_by = sgqlc.types.Field(
77357
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Connection))),
77358
+ graphql_name="connectionmodelUpdatedBy",
77359
+ )
77360
+ """Last updated by"""
77361
+
77136
77362
  eventmodel_set = sgqlc.types.Field(
77137
77363
  sgqlc.types.non_null(EventConnection),
77138
77364
  graphql_name="eventmodelSet",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pycarlo
3
- Version: 0.10.205
3
+ Version: 0.10.207
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=ZfgzsXhgDIZMDK3wCH5n0jMK4I3kMi4FO_RZwNBpKCg,6348283
39
- pycarlo/lib/schema.py,sha256=RSY13ysD80vbmEOr0ryZET19GZFe_snoZmZ3CsGYfU0,2764809
40
- pycarlo-0.10.205.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
- pycarlo-0.10.205.dist-info/METADATA,sha256=25PSgyu_AY4Sw4PWQezkyBVybDZQP_yuOf-k-8ceIcQ,8742
42
- pycarlo-0.10.205.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
- pycarlo-0.10.205.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
- pycarlo-0.10.205.dist-info/RECORD,,
38
+ pycarlo/lib/schema.json,sha256=hKMOtcbz7qafpgLub3hN60ybQbBlD5wqYmPsYepW1eI,6372811
39
+ pycarlo/lib/schema.py,sha256=vPpgiLdNoA8NjNFAV1W3JJJzDfLBKMUUjnlr7wriwns,2773077
40
+ pycarlo-0.10.207.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
+ pycarlo-0.10.207.dist-info/METADATA,sha256=y3V7765Lr09ETGkINqdhBlYa8EXOu7tf5Z10jIQ-NlI,8742
42
+ pycarlo-0.10.207.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
+ pycarlo-0.10.207.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
+ pycarlo-0.10.207.dist-info/RECORD,,