pycarlo 0.10.182__py3-none-any.whl → 0.10.184__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
@@ -79437,6 +79437,22 @@
79437
79437
  }
79438
79438
  }
79439
79439
  },
79440
+ {
79441
+ "args": [],
79442
+ "deprecationReason": null,
79443
+ "description": "Short text to describe the integration",
79444
+ "isDeprecated": false,
79445
+ "name": "integrationName",
79446
+ "type": {
79447
+ "kind": "NON_NULL",
79448
+ "name": null,
79449
+ "ofType": {
79450
+ "kind": "SCALAR",
79451
+ "name": "String",
79452
+ "ofType": null
79453
+ }
79454
+ }
79455
+ },
79440
79456
  {
79441
79457
  "args": [],
79442
79458
  "deprecationReason": null,
@@ -79985,6 +80001,22 @@
79985
80001
  }
79986
80002
  }
79987
80003
  },
80004
+ {
80005
+ "args": [],
80006
+ "deprecationReason": null,
80007
+ "description": "Short text to describe the integration",
80008
+ "isDeprecated": false,
80009
+ "name": "integrationName",
80010
+ "type": {
80011
+ "kind": "NON_NULL",
80012
+ "name": null,
80013
+ "ofType": {
80014
+ "kind": "SCALAR",
80015
+ "name": "String",
80016
+ "ofType": null
80017
+ }
80018
+ }
80019
+ },
79988
80020
  {
79989
80021
  "args": [],
79990
80022
  "deprecationReason": null,
@@ -115080,6 +115112,18 @@
115080
115112
  "ofType": null
115081
115113
  }
115082
115114
  },
115115
+ {
115116
+ "args": [],
115117
+ "deprecationReason": null,
115118
+ "description": "",
115119
+ "isDeprecated": false,
115120
+ "name": "timeSeriesUuid",
115121
+ "type": {
115122
+ "kind": "SCALAR",
115123
+ "name": "UUID",
115124
+ "ofType": null
115125
+ }
115126
+ },
115083
115127
  {
115084
115128
  "args": [],
115085
115129
  "deprecationReason": null,
@@ -150933,9 +150977,9 @@
150933
150977
  },
150934
150978
  {
150935
150979
  "args": [],
150936
- "deprecationReason": null,
150980
+ "deprecationReason": "Refreshing now handled internally.",
150937
150981
  "description": null,
150938
- "isDeprecated": false,
150982
+ "isDeprecated": true,
150939
150983
  "name": "refreshEntitlements",
150940
150984
  "type": {
150941
150985
  "kind": "OBJECT",
@@ -174234,6 +174278,16 @@
174234
174278
  "ofType": null
174235
174279
  }
174236
174280
  },
174281
+ {
174282
+ "defaultValue": null,
174283
+ "description": "Short text to describe the integration",
174284
+ "name": "integrationName",
174285
+ "type": {
174286
+ "kind": "SCALAR",
174287
+ "name": "String",
174288
+ "ofType": null
174289
+ }
174290
+ },
174237
174291
  {
174238
174292
  "defaultValue": null,
174239
174293
  "description": "The integration to update",
@@ -174375,6 +174429,16 @@
174375
174429
  "ofType": null
174376
174430
  }
174377
174431
  },
174432
+ {
174433
+ "defaultValue": null,
174434
+ "description": "Short text to describe the integration",
174435
+ "name": "integrationName",
174436
+ "type": {
174437
+ "kind": "SCALAR",
174438
+ "name": "String",
174439
+ "ofType": null
174440
+ }
174441
+ },
174378
174442
  {
174379
174443
  "defaultValue": null,
174380
174444
  "description": "The integration to update",
pycarlo/lib/schema.py CHANGED
@@ -17644,6 +17644,7 @@ class DataMaintenanceEntry(sgqlc.types.Type):
17644
17644
  "dataset",
17645
17645
  "full_table_id",
17646
17646
  "monitor_id",
17647
+ "time_series_uuid",
17647
17648
  "maintenance_type",
17648
17649
  "start_time",
17649
17650
  "end_time",
@@ -17668,6 +17669,8 @@ class DataMaintenanceEntry(sgqlc.types.Type):
17668
17669
 
17669
17670
  monitor_id = sgqlc.types.Field(UUID, graphql_name="monitorId")
17670
17671
 
17672
+ time_series_uuid = sgqlc.types.Field(UUID, graphql_name="timeSeriesUuid")
17673
+
17671
17674
  maintenance_type = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name="maintenanceType")
17672
17675
 
17673
17676
  start_time = sgqlc.types.Field(DateTime, graphql_name="startTime")
@@ -42057,6 +42060,10 @@ class Mutation(sgqlc.types.Type):
42057
42060
  sgqlc.types.Arg(Boolean, graphql_name="automaticSyncDisabled", default=None),
42058
42061
  ),
42059
42062
  ("domain_uuid", sgqlc.types.Arg(UUID, graphql_name="domainUuid", default=None)),
42063
+ (
42064
+ "integration_name",
42065
+ sgqlc.types.Arg(String, graphql_name="integrationName", default=None),
42066
+ ),
42060
42067
  (
42061
42068
  "integration_uuid",
42062
42069
  sgqlc.types.Arg(UUID, graphql_name="integrationUuid", default=None),
@@ -42081,6 +42088,8 @@ class Mutation(sgqlc.types.Type):
42081
42088
  full sync are disabled for monitors in this account',)
42082
42089
  * `domain_uuid` (`UUID`): Domain uuid in Collibra where monitors
42083
42090
  will be syncronized. Can only be set once during creation
42091
+ * `integration_name` (`String`): Short text to describe the
42092
+ integration
42084
42093
  * `integration_uuid` (`UUID`): The integration to update
42085
42094
  * `password` (`String`): ('The Collibra service account password
42086
42095
  for authentication; if not provided, previous value will be
@@ -42150,6 +42159,10 @@ class Mutation(sgqlc.types.Type):
42150
42159
  "disable_ssl_verification",
42151
42160
  sgqlc.types.Arg(Boolean, graphql_name="disableSslVerification", default=False),
42152
42161
  ),
42162
+ (
42163
+ "integration_name",
42164
+ sgqlc.types.Arg(String, graphql_name="integrationName", default=None),
42165
+ ),
42153
42166
  (
42154
42167
  "integration_uuid",
42155
42168
  sgqlc.types.Arg(UUID, graphql_name="integrationUuid", default=None),
@@ -42184,6 +42197,8 @@ class Mutation(sgqlc.types.Type):
42184
42197
  instance via the data collector (default: `false`)
42185
42198
  * `disable_ssl_verification` (`Boolean`): Whether to disable SSL
42186
42199
  when proxying requests via the data collector (default: `false`)
42200
+ * `integration_name` (`String`): Short text to describe the
42201
+ integration
42187
42202
  * `integration_uuid` (`UUID`): The integration to update
42188
42203
  * `password` (`String`): ('The Alation service account password
42189
42204
  for authentication; if not provided, previous value will be
@@ -69592,6 +69607,7 @@ class AlationIntegration(sgqlc.types.Type, Node):
69592
69607
  "created_by",
69593
69608
  "last_update_user",
69594
69609
  "uuid",
69610
+ "integration_name",
69595
69611
  "server_url",
69596
69612
  "username",
69597
69613
  "user_id",
@@ -69612,6 +69628,11 @@ class AlationIntegration(sgqlc.types.Type, Node):
69612
69628
  uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
69613
69629
  """Integration external ID"""
69614
69630
 
69631
+ integration_name = sgqlc.types.Field(
69632
+ sgqlc.types.non_null(String), graphql_name="integrationName"
69633
+ )
69634
+ """Short text to describe the integration"""
69635
+
69615
69636
  server_url = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="serverUrl")
69616
69637
  """Alation server URL"""
69617
69638
 
@@ -71192,6 +71213,7 @@ class CollibraIntegration(sgqlc.types.Type, Node):
71192
71213
  __schema__ = schema
71193
71214
  __field_names__ = (
71194
71215
  "uuid",
71216
+ "integration_name",
71195
71217
  "server_url",
71196
71218
  "username",
71197
71219
  "created_time",
@@ -71203,6 +71225,11 @@ class CollibraIntegration(sgqlc.types.Type, Node):
71203
71225
  uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
71204
71226
  """Integration external ID"""
71205
71227
 
71228
+ integration_name = sgqlc.types.Field(
71229
+ sgqlc.types.non_null(String), graphql_name="integrationName"
71230
+ )
71231
+ """Short text to describe the integration"""
71232
+
71206
71233
  server_url = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="serverUrl")
71207
71234
  """Collibra server URL"""
71208
71235
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pycarlo
3
- Version: 0.10.182
3
+ Version: 0.10.184
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=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,,
38
+ pycarlo/lib/schema.json,sha256=41E1z3m3582CCHWTVF-EWYmJ2g-a4N2aIoTOA28nl5A,6284569
39
+ pycarlo/lib/schema.py,sha256=rWS8bpjShwapY1kamLgEuJYSR4Wt-VREYTF4ekrsBsc,2732824
40
+ pycarlo-0.10.184.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
+ pycarlo-0.10.184.dist-info/METADATA,sha256=UsTddBdSO8Swrr0qnOSS_bFYFJg8dJVIKnUdTrm9YUg,8742
42
+ pycarlo-0.10.184.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
+ pycarlo-0.10.184.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
+ pycarlo-0.10.184.dist-info/RECORD,,