pycarlo 0.10.188__py3-none-any.whl → 0.10.190__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
@@ -10636,6 +10636,16 @@
10636
10636
  }
10637
10637
  }
10638
10638
  },
10639
+ {
10640
+ "defaultValue": null,
10641
+ "description": "Only return windows for a specific time series UUID",
10642
+ "name": "timeSeriesUuid",
10643
+ "type": {
10644
+ "kind": "SCALAR",
10645
+ "name": "UUID",
10646
+ "ofType": null
10647
+ }
10648
+ },
10639
10649
  {
10640
10650
  "defaultValue": null,
10641
10651
  "description": "Start time of maintenance period",
@@ -10954,19 +10964,15 @@
10954
10964
  "description": "Filter by agent span fields (agent, workflow, task, span_name)",
10955
10965
  "name": "agentSpanFilters",
10956
10966
  "type": {
10957
- "kind": "NON_NULL",
10967
+ "kind": "LIST",
10958
10968
  "name": null,
10959
10969
  "ofType": {
10960
- "kind": "LIST",
10970
+ "kind": "NON_NULL",
10961
10971
  "name": null,
10962
10972
  "ofType": {
10963
- "kind": "NON_NULL",
10964
- "name": null,
10965
- "ofType": {
10966
- "kind": "INPUT_OBJECT",
10967
- "name": "AgentSpanFilterInput",
10968
- "ofType": null
10969
- }
10973
+ "kind": "INPUT_OBJECT",
10974
+ "name": "AgentSpanFilterInput",
10975
+ "ofType": null
10970
10976
  }
10971
10977
  }
10972
10978
  }
@@ -161045,6 +161051,16 @@
161045
161051
  "name": "DateTime",
161046
161052
  "ofType": null
161047
161053
  }
161054
+ },
161055
+ {
161056
+ "defaultValue": null,
161057
+ "description": "Time series UUID to set maintenance period for. If set, the maintenance windows will only apply to the given time series. Used for Monitor related windows only.",
161058
+ "name": "timeSeriesUuid",
161059
+ "type": {
161060
+ "kind": "SCALAR",
161061
+ "name": "UUID",
161062
+ "ofType": null
161063
+ }
161048
161064
  }
161049
161065
  ],
161050
161066
  "deprecationReason": null,
pycarlo/lib/schema.py CHANGED
@@ -33608,6 +33608,10 @@ class Mutation(sgqlc.types.Type):
33608
33608
  ),
33609
33609
  ),
33610
33610
  ("start_time", sgqlc.types.Arg(DateTime, graphql_name="startTime", default=None)),
33611
+ (
33612
+ "time_series_uuid",
33613
+ sgqlc.types.Arg(UUID, graphql_name="timeSeriesUuid", default=None),
33614
+ ),
33611
33615
  )
33612
33616
  ),
33613
33617
  )
@@ -33641,6 +33645,9 @@ class Mutation(sgqlc.types.Type):
33641
33645
  maintenance window
33642
33646
  * `start_time` (`DateTime`): Start period of data maintenance. If
33643
33647
  not set, all previous data will be ignored.
33648
+ * `time_series_uuid` (`UUID`): Time series UUID to set maintenance
33649
+ period for. If set, the maintenance windows will only apply to
33650
+ the given time series. Used for Monitor related windows only.
33644
33651
  """
33645
33652
 
33646
33653
  create_data_maintenance_window_from_holidays = sgqlc.types.Field(
@@ -50901,6 +50908,10 @@ class Query(sgqlc.types.Type):
50901
50908
  sgqlc.types.non_null(UUID), graphql_name="monitorId", default=None
50902
50909
  ),
50903
50910
  ),
50911
+ (
50912
+ "time_series_uuid",
50913
+ sgqlc.types.Arg(UUID, graphql_name="timeSeriesUuid", default=None),
50914
+ ),
50904
50915
  ("start_time", sgqlc.types.Arg(DateTime, graphql_name="startTime", default=None)),
50905
50916
  ("end_time", sgqlc.types.Arg(DateTime, graphql_name="endTime", default=None)),
50906
50917
  )
@@ -50911,6 +50922,8 @@ class Query(sgqlc.types.Type):
50911
50922
  Arguments:
50912
50923
 
50913
50924
  * `monitor_id` (`UUID!`): Monitor UUID
50925
+ * `time_series_uuid` (`UUID`): Only return windows for a specific
50926
+ time series UUID
50914
50927
  * `start_time` (`DateTime`): Start time of maintenance period
50915
50928
  * `end_time` (`DateTime`): End time of maintenance period
50916
50929
  """
@@ -51077,9 +51090,7 @@ class Query(sgqlc.types.Type):
51077
51090
  (
51078
51091
  "agent_span_filters",
51079
51092
  sgqlc.types.Arg(
51080
- sgqlc.types.non_null(
51081
- sgqlc.types.list_of(sgqlc.types.non_null(AgentSpanFilterInput))
51082
- ),
51093
+ sgqlc.types.list_of(sgqlc.types.non_null(AgentSpanFilterInput)),
51083
51094
  graphql_name="agentSpanFilters",
51084
51095
  default=None,
51085
51096
  ),
@@ -51130,7 +51141,7 @@ class Query(sgqlc.types.Type):
51130
51141
 
51131
51142
  * `mcon` (`String!`): MCON of the table with agent observability
51132
51143
  traces
51133
- * `agent_span_filters` (`[AgentSpanFilterInput!]!`): Filter by
51144
+ * `agent_span_filters` (`[AgentSpanFilterInput!]`): Filter by
51134
51145
  agent span fields (agent, workflow, task, span_name)
51135
51146
  * `filters` (`FilterGroupInput`): Structured SQL filtering
51136
51147
  conditions to apply to query
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pycarlo
3
- Version: 0.10.188
3
+ Version: 0.10.190
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=wf9D_vrZkyxGWAXIifZhFdTi6o10MoKQQFtpy5yawEc,6331963
39
- pycarlo/lib/schema.py,sha256=g5eUMX8uLc2Ngcdnp4nKtSu40ABHWjYdEw5tHU9xteY,2757204
40
- pycarlo-0.10.188.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
- pycarlo-0.10.188.dist-info/METADATA,sha256=qv_rwX1G6Cx4XgwCF8W7zWd--HdS6wfy9WcGrvMNerc,8742
42
- pycarlo-0.10.188.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
- pycarlo-0.10.188.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
- pycarlo-0.10.188.dist-info/RECORD,,
38
+ pycarlo/lib/schema.json,sha256=mdwZO-ZuAeLi4XRQ030NHWz_FfAgTsd1pIvGz8cCFHQ,6332654
39
+ pycarlo/lib/schema.py,sha256=0phx3n9GWX3elEE6wLv0LYoKU2uBAgVoI4b4HoLtmuE,2757758
40
+ pycarlo-0.10.190.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
+ pycarlo-0.10.190.dist-info/METADATA,sha256=iKGGSkKPJSCZiXGE90IRCkk1ZcczhrmtI_7QiJgjcVQ,8742
42
+ pycarlo-0.10.190.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
+ pycarlo-0.10.190.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
+ pycarlo-0.10.190.dist-info/RECORD,,