pycarlo 0.10.166__py3-none-any.whl → 0.10.168__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
@@ -33365,6 +33365,18 @@
33365
33365
  }
33366
33366
  }
33367
33367
  },
33368
+ {
33369
+ "args": [],
33370
+ "deprecationReason": null,
33371
+ "description": "Type of storage encryption for the data store",
33372
+ "isDeprecated": false,
33373
+ "name": "dataStoreEncryption",
33374
+ "type": {
33375
+ "kind": "ENUM",
33376
+ "name": "StorageEncryptionType",
33377
+ "ofType": null
33378
+ }
33379
+ },
33368
33380
  {
33369
33381
  "args": [],
33370
33382
  "deprecationReason": null,
@@ -33448,6 +33460,29 @@
33448
33460
  "name": "PlatformServicePlatform",
33449
33461
  "possibleTypes": null
33450
33462
  },
33463
+ {
33464
+ "description": null,
33465
+ "enumValues": [
33466
+ {
33467
+ "deprecationReason": null,
33468
+ "description": null,
33469
+ "isDeprecated": false,
33470
+ "name": "MONTE_CARLO_KMS"
33471
+ },
33472
+ {
33473
+ "deprecationReason": null,
33474
+ "description": null,
33475
+ "isDeprecated": false,
33476
+ "name": "AMAZON_S3_SSE"
33477
+ }
33478
+ ],
33479
+ "fields": null,
33480
+ "inputFields": null,
33481
+ "interfaces": null,
33482
+ "kind": "ENUM",
33483
+ "name": "StorageEncryptionType",
33484
+ "possibleTypes": null
33485
+ },
33451
33486
  {
33452
33487
  "description": "Platform service agent information",
33453
33488
  "enumValues": null,
@@ -149849,6 +149884,43 @@
149849
149884
  "ofType": null
149850
149885
  }
149851
149886
  },
149887
+ {
149888
+ "args": [
149889
+ {
149890
+ "defaultValue": "\"AMAZON_S3_SSE\"",
149891
+ "description": "Type of storage encryption (default: 'AMAZON_S3_SSE')",
149892
+ "name": "encryptionType",
149893
+ "type": {
149894
+ "kind": "ENUM",
149895
+ "name": "StorageEncryptionType",
149896
+ "ofType": null
149897
+ }
149898
+ },
149899
+ {
149900
+ "defaultValue": null,
149901
+ "description": "Platform Service UUID. To disambiguate accounts with multiple services",
149902
+ "name": "serviceUuid",
149903
+ "type": {
149904
+ "kind": "NON_NULL",
149905
+ "name": null,
149906
+ "ofType": {
149907
+ "kind": "SCALAR",
149908
+ "name": "UUID",
149909
+ "ofType": null
149910
+ }
149911
+ }
149912
+ }
149913
+ ],
149914
+ "deprecationReason": null,
149915
+ "description": "(experimental) Sets the collection storage encryption",
149916
+ "isDeprecated": false,
149917
+ "name": "caasUpdateCollectionStorageEncryption",
149918
+ "type": {
149919
+ "kind": "OBJECT",
149920
+ "name": "CaasUpdateCollectionStorageEncryption",
149921
+ "ofType": null
149922
+ }
149923
+ },
149852
149924
  {
149853
149925
  "args": [],
149854
149926
  "deprecationReason": null,
@@ -175024,6 +175096,29 @@
175024
175096
  "name": "CaasUpdateCollectionStorageLink",
175025
175097
  "possibleTypes": null
175026
175098
  },
175099
+ {
175100
+ "description": "Sets the collection storage encryption",
175101
+ "enumValues": null,
175102
+ "fields": [
175103
+ {
175104
+ "args": [],
175105
+ "deprecationReason": null,
175106
+ "description": "Boolean indicating if the operation was successful",
175107
+ "isDeprecated": false,
175108
+ "name": "ok",
175109
+ "type": {
175110
+ "kind": "SCALAR",
175111
+ "name": "Boolean",
175112
+ "ofType": null
175113
+ }
175114
+ }
175115
+ ],
175116
+ "inputFields": null,
175117
+ "interfaces": [],
175118
+ "kind": "OBJECT",
175119
+ "name": "CaasUpdateCollectionStorageEncryption",
175120
+ "possibleTypes": null
175121
+ },
175027
175122
  {
175028
175123
  "description": null,
175029
175124
  "enumValues": null,
@@ -178871,6 +178966,18 @@
178871
178966
  "name": "String",
178872
178967
  "ofType": null
178873
178968
  }
178969
+ },
178970
+ {
178971
+ "args": [],
178972
+ "deprecationReason": null,
178973
+ "description": "Data share organization identifier",
178974
+ "isDeprecated": false,
178975
+ "name": "organization",
178976
+ "type": {
178977
+ "kind": "SCALAR",
178978
+ "name": "String",
178979
+ "ofType": null
178980
+ }
178874
178981
  }
178875
178982
  ],
178876
178983
  "inputFields": null,
@@ -178976,6 +179083,16 @@
178976
179083
  "name": "String",
178977
179084
  "ofType": null
178978
179085
  }
179086
+ },
179087
+ {
179088
+ "defaultValue": null,
179089
+ "description": "Organization identifier",
179090
+ "name": "organization",
179091
+ "type": {
179092
+ "kind": "SCALAR",
179093
+ "name": "String",
179094
+ "ofType": null
179095
+ }
178979
179096
  }
178980
179097
  ],
178981
179098
  "interfaces": null,
pycarlo/lib/schema.py CHANGED
@@ -4812,6 +4812,17 @@ class Status(sgqlc.types.Enum):
4812
4812
  __choices__ = ("NOTIFIED", "PENDING")
4813
4813
 
4814
4814
 
4815
+ class StorageEncryptionType(sgqlc.types.Enum):
4816
+ """Enumeration Choices:
4817
+
4818
+ * `AMAZON_S3_SSE`None
4819
+ * `MONTE_CARLO_KMS`None
4820
+ """
4821
+
4822
+ __schema__ = schema
4823
+ __choices__ = ("AMAZON_S3_SSE", "MONTE_CARLO_KMS")
4824
+
4825
+
4815
4826
  class StorageTypeEnum(sgqlc.types.Enum):
4816
4827
  """Enumeration Choices:
4817
4828
 
@@ -6791,7 +6802,7 @@ class DataProfilerWidgetDataInput(sgqlc.types.Input):
6791
6802
 
6792
6803
  class DataShareInput(sgqlc.types.Input):
6793
6804
  __schema__ = schema
6794
- __field_names__ = ("type", "account", "region")
6805
+ __field_names__ = ("type", "account", "region", "organization")
6795
6806
  type = sgqlc.types.Field(DataShareType, graphql_name="type")
6796
6807
  """Type of data share (default: 'snowflake')"""
6797
6808
 
@@ -6801,6 +6812,9 @@ class DataShareInput(sgqlc.types.Input):
6801
6812
  region = sgqlc.types.Field(String, graphql_name="region")
6802
6813
  """Data share region (optional if account has only one)"""
6803
6814
 
6815
+ organization = sgqlc.types.Field(String, graphql_name="organization")
6816
+ """Organization identifier"""
6817
+
6804
6818
 
6805
6819
  class DataSourceSchemaInput(sgqlc.types.Input):
6806
6820
  __schema__ = schema
@@ -14743,6 +14757,15 @@ class CaasUpdateCollectionNodeVersion(sgqlc.types.Type):
14743
14757
  """Boolean indicating if the operation was successful"""
14744
14758
 
14745
14759
 
14760
+ class CaasUpdateCollectionStorageEncryption(sgqlc.types.Type):
14761
+ """Sets the collection storage encryption"""
14762
+
14763
+ __schema__ = schema
14764
+ __field_names__ = ("ok",)
14765
+ ok = sgqlc.types.Field(Boolean, graphql_name="ok")
14766
+ """Boolean indicating if the operation was successful"""
14767
+
14768
+
14746
14769
  class CaasUpdateCollectionStorageLink(sgqlc.types.Type):
14747
14770
  """If there's an agent associated to the service, it makes sure the
14748
14771
  link to the CaaS storage is deleted.
@@ -17857,7 +17880,7 @@ class DataShareOutput(sgqlc.types.Type):
17857
17880
  """Data share configuration details"""
17858
17881
 
17859
17882
  __schema__ = schema
17860
- __field_names__ = ("type", "account", "region")
17883
+ __field_names__ = ("type", "account", "region", "organization")
17861
17884
  type = sgqlc.types.Field(String, graphql_name="type")
17862
17885
  """Type of data share (e.g., 'snowflake')"""
17863
17886
 
@@ -17867,6 +17890,9 @@ class DataShareOutput(sgqlc.types.Type):
17867
17890
  region = sgqlc.types.Field(String, graphql_name="region")
17868
17891
  """Data share region"""
17869
17892
 
17893
+ organization = sgqlc.types.Field(String, graphql_name="organization")
17894
+ """Data share organization identifier"""
17895
+
17870
17896
 
17871
17897
  class DataSourceEvaluationResult(sgqlc.types.Type):
17872
17898
  __schema__ = schema
@@ -25102,6 +25128,7 @@ class Mutation(sgqlc.types.Type):
25102
25128
  "connect_platform_service_to_existing_bucket",
25103
25129
  "connect_platform_to_existing_agent",
25104
25130
  "caas_update_collection_storage_link",
25131
+ "caas_update_collection_storage_encryption",
25105
25132
  "refresh_entitlements",
25106
25133
  "run_table_monitor_validation",
25107
25134
  "test_updated_credentials_v2",
@@ -26843,6 +26870,39 @@ class Mutation(sgqlc.types.Type):
26843
26870
  accounts with multiple services
26844
26871
  """
26845
26872
 
26873
+ caas_update_collection_storage_encryption = sgqlc.types.Field(
26874
+ CaasUpdateCollectionStorageEncryption,
26875
+ graphql_name="caasUpdateCollectionStorageEncryption",
26876
+ args=sgqlc.types.ArgDict(
26877
+ (
26878
+ (
26879
+ "encryption_type",
26880
+ sgqlc.types.Arg(
26881
+ StorageEncryptionType,
26882
+ graphql_name="encryptionType",
26883
+ default="AMAZON_S3_SSE",
26884
+ ),
26885
+ ),
26886
+ (
26887
+ "service_uuid",
26888
+ sgqlc.types.Arg(
26889
+ sgqlc.types.non_null(UUID), graphql_name="serviceUuid", default=None
26890
+ ),
26891
+ ),
26892
+ )
26893
+ ),
26894
+ )
26895
+ """(experimental) Sets the collection storage encryption
26896
+
26897
+ Arguments:
26898
+
26899
+ * `encryption_type` (`StorageEncryptionType`): Type of storage
26900
+ encryption (default: 'AMAZON_S3_SSE') (default:
26901
+ `"AMAZON_S3_SSE"`)
26902
+ * `service_uuid` (`UUID!`): Platform Service UUID. To disambiguate
26903
+ accounts with multiple services
26904
+ """
26905
+
26846
26906
  refresh_entitlements = sgqlc.types.Field(
26847
26907
  "RefreshEntitlements", graphql_name="refreshEntitlements"
26848
26908
  )
@@ -43365,6 +43425,7 @@ class PlatformServicePlatform(sgqlc.types.Type):
43365
43425
  __field_names__ = (
43366
43426
  "resources",
43367
43427
  "ip_addresses",
43428
+ "data_store_encryption",
43368
43429
  "created_on",
43369
43430
  "last_updated_on",
43370
43431
  "assigned_on",
@@ -43378,6 +43439,11 @@ class PlatformServicePlatform(sgqlc.types.Type):
43378
43439
  ip_addresses = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name="ipAddresses")
43379
43440
  """Platform IP addresses"""
43380
43441
 
43442
+ data_store_encryption = sgqlc.types.Field(
43443
+ StorageEncryptionType, graphql_name="dataStoreEncryption"
43444
+ )
43445
+ """Type of storage encryption for the data store"""
43446
+
43381
43447
  created_on = sgqlc.types.Field(DateTime, graphql_name="createdOn")
43382
43448
  """Service creation date"""
43383
43449
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pycarlo
3
- Version: 0.10.166
3
+ Version: 0.10.168
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=H0oqNoY4rsQxmHFpXqKl_9XU3lCO2iMM89bfcpsjp1s,6239983
39
- pycarlo/lib/schema.py,sha256=JFdYpxBdV1zfwHPyvdXMSI4INU_ejSRGaVUjnKxfqvE,2710799
40
- pycarlo-0.10.166.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
- pycarlo-0.10.166.dist-info/METADATA,sha256=S7QQNRY_XGrnZx6Bks4KxheGkZpJliCPSPLYwkpIhDE,8742
42
- pycarlo-0.10.166.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
- pycarlo-0.10.166.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
- pycarlo-0.10.166.dist-info/RECORD,,
38
+ pycarlo/lib/schema.json,sha256=2fgHIEleLsCd7TqIXqhiEaDmryOC3gR-oAIrBzaesAo,6243800
39
+ pycarlo/lib/schema.py,sha256=xgaRFYMF4XURQs8ODoOxNiy27x1Hf0_h3GyVyxp9T-Y,2712937
40
+ pycarlo-0.10.168.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
+ pycarlo-0.10.168.dist-info/METADATA,sha256=_Tu0lG4o0TMPgotpuyN1FtZa557SexksarjuW5hbBqE,8742
42
+ pycarlo-0.10.168.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
+ pycarlo-0.10.168.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
+ pycarlo-0.10.168.dist-info/RECORD,,