pycarlo 0.10.206__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")
@@ -64711,6 +64753,8 @@ class StreamingCluster(sgqlc.types.Type):
64711
64753
  "id",
64712
64754
  "created_time",
64713
64755
  "updated_time",
64756
+ "created_by",
64757
+ "last_update_user",
64714
64758
  "deleted_at",
64715
64759
  "uuid",
64716
64760
  "external_cluster_id",
@@ -64725,6 +64769,12 @@ class StreamingCluster(sgqlc.types.Type):
64725
64769
 
64726
64770
  updated_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="updatedTime")
64727
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
+
64728
64778
  deleted_at = sgqlc.types.Field(DateTime, graphql_name="deletedAt")
64729
64779
 
64730
64780
  uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
@@ -64760,6 +64810,8 @@ class StreamingSystem(sgqlc.types.Type):
64760
64810
  "id",
64761
64811
  "created_time",
64762
64812
  "updated_time",
64813
+ "created_by",
64814
+ "last_update_user",
64763
64815
  "deleted_at",
64764
64816
  "uuid",
64765
64817
  "name",
@@ -64773,6 +64825,12 @@ class StreamingSystem(sgqlc.types.Type):
64773
64825
 
64774
64826
  updated_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="updatedTime")
64775
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
+
64776
64834
  deleted_at = sgqlc.types.Field(DateTime, graphql_name="deletedAt")
64777
64835
 
64778
64836
  uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
@@ -69194,6 +69252,9 @@ class Warehouse(sgqlc.types.Type):
69194
69252
  __schema__ = schema
69195
69253
  __field_names__ = (
69196
69254
  "id",
69255
+ "created_time",
69256
+ "updated_time",
69257
+ "last_update_user",
69197
69258
  "uuid",
69198
69259
  "name",
69199
69260
  "connection_type",
@@ -69246,6 +69307,13 @@ class Warehouse(sgqlc.types.Type):
69246
69307
  )
69247
69308
  id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name="id")
69248
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
+
69249
69317
  uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
69250
69318
 
69251
69319
  name = sgqlc.types.Field(String, graphql_name="name")
@@ -70799,6 +70867,10 @@ class AuthUser(sgqlc.types.Type, Node):
70799
70867
  "delete_reason",
70800
70868
  "invalidated_at",
70801
70869
  "persona",
70870
+ "streamingsystemmodel_created_by",
70871
+ "streamingsystemmodel_updated_by",
70872
+ "streamingclustermodel_created_by",
70873
+ "streamingclustermodel_updated_by",
70802
70874
  "monitor_labels_created",
70803
70875
  "routing_rules_created_by",
70804
70876
  "routing_rules_updated_by",
@@ -70809,6 +70881,13 @@ class AuthUser(sgqlc.types.Type, Node):
70809
70881
  "invitees",
70810
70882
  "warehouse_deleted_by",
70811
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",
70812
70891
  "eventmodel_set",
70813
70892
  "eventdetectorfeedbackmodel_created_by",
70814
70893
  "eventdetectorfeedbackmodel_updated_by",
@@ -70906,6 +70985,30 @@ class AuthUser(sgqlc.types.Type, Node):
70906
70985
  experience and the onboarding flow.
70907
70986
  """
70908
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
+
70909
71012
  monitor_labels_created = sgqlc.types.Field(
70910
71013
  sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(MonitorLabelObject))),
70911
71014
  graphql_name="monitorLabelsCreated",
@@ -71025,6 +71128,48 @@ class AuthUser(sgqlc.types.Type, Node):
71025
71128
  )
71026
71129
  """User who created this warehouse"""
71027
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
+
71028
71173
  eventmodel_set = sgqlc.types.Field(
71029
71174
  sgqlc.types.non_null(EventConnection),
71030
71175
  graphql_name="eventmodelSet",
@@ -76908,6 +77053,10 @@ class User(sgqlc.types.Type, Node):
76908
77053
  "delete_reason",
76909
77054
  "invalidated_at",
76910
77055
  "persona",
77056
+ "streamingsystemmodel_created_by",
77057
+ "streamingsystemmodel_updated_by",
77058
+ "streamingclustermodel_created_by",
77059
+ "streamingclustermodel_updated_by",
76911
77060
  "monitor_labels_created",
76912
77061
  "routing_rules_created_by",
76913
77062
  "routing_rules_updated_by",
@@ -76918,6 +77067,13 @@ class User(sgqlc.types.Type, Node):
76918
77067
  "invitees",
76919
77068
  "warehouse_deleted_by",
76920
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",
76921
77077
  "eventmodel_set",
76922
77078
  "eventdetectorfeedbackmodel_created_by",
76923
77079
  "eventdetectorfeedbackmodel_updated_by",
@@ -77018,6 +77174,30 @@ class User(sgqlc.types.Type, Node):
77018
77174
  experience and the onboarding flow.
77019
77175
  """
77020
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
+
77021
77201
  monitor_labels_created = sgqlc.types.Field(
77022
77202
  sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(MonitorLabelObject))),
77023
77203
  graphql_name="monitorLabelsCreated",
@@ -77137,6 +77317,48 @@ class User(sgqlc.types.Type, Node):
77137
77317
  )
77138
77318
  """User who created this warehouse"""
77139
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
+
77140
77362
  eventmodel_set = sgqlc.types.Field(
77141
77363
  sgqlc.types.non_null(EventConnection),
77142
77364
  graphql_name="eventmodelSet",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pycarlo
3
- Version: 0.10.206
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=bpE96qnIwdvM7QdDGtQBOiqoyi9z8SthxY8e-kk4nGc,6348758
39
- pycarlo/lib/schema.py,sha256=87DjeiKWLdUKPRF1xxPcnBMuZufU_DeaOMqy1TsXwaU,2764951
40
- pycarlo-0.10.206.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
- pycarlo-0.10.206.dist-info/METADATA,sha256=1Px1z03KKkVGcUyuj98dlvvMVOazi7yPTlHKblOfsv8,8742
42
- pycarlo-0.10.206.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
- pycarlo-0.10.206.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
- pycarlo-0.10.206.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,,