pycarlo 0.10.180__py3-none-any.whl → 0.10.181__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
@@ -150427,6 +150427,47 @@
150427
150427
  "ofType": null
150428
150428
  }
150429
150429
  },
150430
+ {
150431
+ "args": [
150432
+ {
150433
+ "defaultValue": null,
150434
+ "description": "Platform Service UUID. To disambiguate accounts with multiple services",
150435
+ "name": "serviceUuid",
150436
+ "type": {
150437
+ "kind": "NON_NULL",
150438
+ "name": null,
150439
+ "ofType": {
150440
+ "kind": "SCALAR",
150441
+ "name": "UUID",
150442
+ "ofType": null
150443
+ }
150444
+ }
150445
+ },
150446
+ {
150447
+ "defaultValue": null,
150448
+ "description": "Template version to upgrade to",
150449
+ "name": "templateVersion",
150450
+ "type": {
150451
+ "kind": "NON_NULL",
150452
+ "name": null,
150453
+ "ofType": {
150454
+ "kind": "SCALAR",
150455
+ "name": "Int",
150456
+ "ofType": null
150457
+ }
150458
+ }
150459
+ }
150460
+ ],
150461
+ "deprecationReason": null,
150462
+ "description": "(experimental) Updates the collection storage template version associated to a DC.",
150463
+ "isDeprecated": false,
150464
+ "name": "caasUpdateCollectionStorageVersion",
150465
+ "type": {
150466
+ "kind": "OBJECT",
150467
+ "name": "CaasUpdateCollectionStorageVersion",
150468
+ "ofType": null
150469
+ }
150470
+ },
150430
150471
  {
150431
150472
  "args": [
150432
150473
  {
@@ -175932,6 +175973,29 @@
175932
175973
  "name": "CaasUpdateCollectionStorageParameters",
175933
175974
  "possibleTypes": null
175934
175975
  },
175976
+ {
175977
+ "description": "Updates the collection storage template version associated to the specified DC.",
175978
+ "enumValues": null,
175979
+ "fields": [
175980
+ {
175981
+ "args": [],
175982
+ "deprecationReason": null,
175983
+ "description": "Boolean indicating if the operation was successful",
175984
+ "isDeprecated": false,
175985
+ "name": "ok",
175986
+ "type": {
175987
+ "kind": "SCALAR",
175988
+ "name": "Boolean",
175989
+ "ofType": null
175990
+ }
175991
+ }
175992
+ ],
175993
+ "inputFields": null,
175994
+ "interfaces": [],
175995
+ "kind": "OBJECT",
175996
+ "name": "CaasUpdateCollectionStorageVersion",
175997
+ "possibleTypes": null
175998
+ },
175935
175999
  {
175936
176000
  "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
176001
  "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",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pycarlo
3
- Version: 0.10.180
3
+ Version: 0.10.181
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=ZZTR7Lc_2V38NKzI89l4xv1YvxCrB6H5z5KjYnMl4sY,6282136
39
+ pycarlo/lib/schema.py,sha256=Fn4Zzwnr_teN_lT-vZApxtIXxJqCFGW197f6QWzBFFk,2731720
40
+ pycarlo-0.10.181.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
+ pycarlo-0.10.181.dist-info/METADATA,sha256=o7ZsZe4P_cJeCJ2I9U_7Tji25UMPLqh2LZKOAYnXhqY,8742
42
+ pycarlo-0.10.181.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
+ pycarlo-0.10.181.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
+ pycarlo-0.10.181.dist-info/RECORD,,