pycarlo 0.10.180__py3-none-any.whl → 0.10.182__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 CHANGED
@@ -65160,6 +65160,18 @@
65160
65160
  "name": "String",
65161
65161
  "ofType": null
65162
65162
  }
65163
+ },
65164
+ {
65165
+ "args": [],
65166
+ "deprecationReason": null,
65167
+ "description": "",
65168
+ "isDeprecated": false,
65169
+ "name": "timeSeriesUuid",
65170
+ "type": {
65171
+ "kind": "SCALAR",
65172
+ "name": "UUID",
65173
+ "ofType": null
65174
+ }
65163
65175
  }
65164
65176
  ],
65165
65177
  "inputFields": null,
@@ -150427,6 +150439,47 @@
150427
150439
  "ofType": null
150428
150440
  }
150429
150441
  },
150442
+ {
150443
+ "args": [
150444
+ {
150445
+ "defaultValue": null,
150446
+ "description": "Platform Service UUID. To disambiguate accounts with multiple services",
150447
+ "name": "serviceUuid",
150448
+ "type": {
150449
+ "kind": "NON_NULL",
150450
+ "name": null,
150451
+ "ofType": {
150452
+ "kind": "SCALAR",
150453
+ "name": "UUID",
150454
+ "ofType": null
150455
+ }
150456
+ }
150457
+ },
150458
+ {
150459
+ "defaultValue": null,
150460
+ "description": "Template version to upgrade to",
150461
+ "name": "templateVersion",
150462
+ "type": {
150463
+ "kind": "NON_NULL",
150464
+ "name": null,
150465
+ "ofType": {
150466
+ "kind": "SCALAR",
150467
+ "name": "Int",
150468
+ "ofType": null
150469
+ }
150470
+ }
150471
+ }
150472
+ ],
150473
+ "deprecationReason": null,
150474
+ "description": "(experimental) Updates the collection storage template version associated to a DC.",
150475
+ "isDeprecated": false,
150476
+ "name": "caasUpdateCollectionStorageVersion",
150477
+ "type": {
150478
+ "kind": "OBJECT",
150479
+ "name": "CaasUpdateCollectionStorageVersion",
150480
+ "ofType": null
150481
+ }
150482
+ },
150430
150483
  {
150431
150484
  "args": [
150432
150485
  {
@@ -175932,6 +175985,29 @@
175932
175985
  "name": "CaasUpdateCollectionStorageParameters",
175933
175986
  "possibleTypes": null
175934
175987
  },
175988
+ {
175989
+ "description": "Updates the collection storage template version associated to the specified DC.",
175990
+ "enumValues": null,
175991
+ "fields": [
175992
+ {
175993
+ "args": [],
175994
+ "deprecationReason": null,
175995
+ "description": "Boolean indicating if the operation was successful",
175996
+ "isDeprecated": false,
175997
+ "name": "ok",
175998
+ "type": {
175999
+ "kind": "SCALAR",
176000
+ "name": "Boolean",
176001
+ "ofType": null
176002
+ }
176003
+ }
176004
+ ],
176005
+ "inputFields": null,
176006
+ "interfaces": [],
176007
+ "kind": "OBJECT",
176008
+ "name": "CaasUpdateCollectionStorageVersion",
176009
+ "possibleTypes": null
176010
+ },
175935
176011
  {
175936
176012
  "description": "Updates the collection node associated to the specified DC to the specified version.If no version is provided, the node is upgraded to latest version.",
175937
176013
  "enumValues": null,
pycarlo/lib/schema.py CHANGED
@@ -14822,6 +14822,17 @@ class CaasUpdateCollectionStorageParameters(sgqlc.types.Type):
14822
14822
  """Boolean indicating if the operation was successful"""
14823
14823
 
14824
14824
 
14825
+ class CaasUpdateCollectionStorageVersion(sgqlc.types.Type):
14826
+ """Updates the collection storage template version associated to the
14827
+ specified DC.
14828
+ """
14829
+
14830
+ __schema__ = schema
14831
+ __field_names__ = ("ok",)
14832
+ ok = sgqlc.types.Field(Boolean, graphql_name="ok")
14833
+ """Boolean indicating if the operation was successful"""
14834
+
14835
+
14825
14836
  class CatalogMapping(sgqlc.types.Type):
14826
14837
  __schema__ = schema
14827
14838
  __field_names__ = ("from_name", "to_name")
@@ -25274,6 +25285,7 @@ class Mutation(sgqlc.types.Type):
25274
25285
  "caas_update_collection_node_parameters",
25275
25286
  "caas_update_collection_node_env",
25276
25287
  "caas_update_collection_storage_parameters",
25288
+ "caas_update_collection_storage_version",
25277
25289
  "caas_update_collection_node_version",
25278
25290
  "trigger_platform_migration",
25279
25291
  "trigger_platform_migration_test",
@@ -26749,6 +26761,36 @@ class Mutation(sgqlc.types.Type):
26749
26761
  containing the values to update
26750
26762
  """
26751
26763
 
26764
+ caas_update_collection_storage_version = sgqlc.types.Field(
26765
+ CaasUpdateCollectionStorageVersion,
26766
+ graphql_name="caasUpdateCollectionStorageVersion",
26767
+ args=sgqlc.types.ArgDict(
26768
+ (
26769
+ (
26770
+ "service_uuid",
26771
+ sgqlc.types.Arg(
26772
+ sgqlc.types.non_null(UUID), graphql_name="serviceUuid", default=None
26773
+ ),
26774
+ ),
26775
+ (
26776
+ "template_version",
26777
+ sgqlc.types.Arg(
26778
+ sgqlc.types.non_null(Int), graphql_name="templateVersion", default=None
26779
+ ),
26780
+ ),
26781
+ )
26782
+ ),
26783
+ )
26784
+ """(experimental) Updates the collection storage template version
26785
+ associated to a DC.
26786
+
26787
+ Arguments:
26788
+
26789
+ * `service_uuid` (`UUID!`): Platform Service UUID. To disambiguate
26790
+ accounts with multiple services
26791
+ * `template_version` (`Int!`): Template version to upgrade to
26792
+ """
26793
+
26752
26794
  caas_update_collection_node_version = sgqlc.types.Field(
26753
26795
  CaasUpdateCollectionNodeVersion,
26754
26796
  graphql_name="caasUpdateCollectionNodeVersion",
@@ -73954,6 +73996,7 @@ class EventDetectorFeedback(sgqlc.types.Type, Node):
73954
73996
  "metric",
73955
73997
  "field",
73956
73998
  "where_condition",
73999
+ "time_series_uuid",
73957
74000
  )
73958
74001
  created_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="createdTime")
73959
74002
 
@@ -73975,6 +74018,8 @@ class EventDetectorFeedback(sgqlc.types.Type, Node):
73975
74018
 
73976
74019
  where_condition = sgqlc.types.Field(String, graphql_name="whereCondition")
73977
74020
 
74021
+ time_series_uuid = sgqlc.types.Field(UUID, graphql_name="timeSeriesUuid")
74022
+
73978
74023
 
73979
74024
  class FailedDataRca(sgqlc.types.Type, IBaseRca, IQueryRca):
73980
74025
  __schema__ = schema
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pycarlo
3
- Version: 0.10.180
3
+ Version: 0.10.182
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=slY2M_tCZ9nc1cSQroFe3Pw58i-oTiH2yrQLcJdqwe4,6279900
39
- pycarlo/lib/schema.py,sha256=HamoeW13LMK7FBmMUK4hIPtUMH9BSOeuptnMoceZpD0,2730338
40
- pycarlo-0.10.180.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
- pycarlo-0.10.180.dist-info/METADATA,sha256=r3G5sIT6MnOsfCedH3fjvpTEW8Ousz2Ok2JjVwO7pQc,8742
42
- pycarlo-0.10.180.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
- pycarlo-0.10.180.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
- pycarlo-0.10.180.dist-info/RECORD,,
38
+ pycarlo/lib/schema.json,sha256=5Atsb2Tt7wB4K70hEDfS63ZIGWdp7qrdoDQd5PSu600,6282479
39
+ pycarlo/lib/schema.py,sha256=iVTQg32eINeSezinNORb1QEaVbfDajOGPmgWwRoFh6c,2731827
40
+ pycarlo-0.10.182.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
+ pycarlo-0.10.182.dist-info/METADATA,sha256=fHluFSS1xwUop7x-M5calrFXHptsXYO5TTMh4hu3HQM,8742
42
+ pycarlo-0.10.182.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
+ pycarlo-0.10.182.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
+ pycarlo-0.10.182.dist-info/RECORD,,