stigg-api-client 2.234.0__tar.gz → 2.235.0__tar.gz
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 stigg-api-client might be problematic. Click here for more details.
- {stigg_api_client-2.234.0 → stigg_api_client-2.235.0}/PKG-INFO +1 -1
- {stigg_api_client-2.234.0 → stigg_api_client-2.235.0}/pyproject.toml +1 -1
- {stigg_api_client-2.234.0 → stigg_api_client-2.235.0}/stigg/generated/operations.py +25 -0
- {stigg_api_client-2.234.0 → stigg_api_client-2.235.0}/LICENSE +0 -0
- {stigg_api_client-2.234.0 → stigg_api_client-2.235.0}/README.md +0 -0
- {stigg_api_client-2.234.0 → stigg_api_client-2.235.0}/stigg/__init__.py +0 -0
- {stigg_api_client-2.234.0 → stigg_api_client-2.235.0}/stigg/client.py +0 -0
- {stigg_api_client-2.234.0 → stigg_api_client-2.235.0}/stigg/generated/__init__.py +0 -0
- {stigg_api_client-2.234.0 → stigg_api_client-2.235.0}/stigg/generated/schema.py +0 -0
|
@@ -1258,6 +1258,22 @@ def fragment_usage_history_fragment():
|
|
|
1258
1258
|
return _frag
|
|
1259
1259
|
|
|
1260
1260
|
|
|
1261
|
+
def fragment_usage_history_v2_fragment():
|
|
1262
|
+
_frag = sgqlc.operation.Fragment(_schema.UsageHistoryV2, 'UsageHistoryV2Fragment')
|
|
1263
|
+
_frag_markers = _frag.markers()
|
|
1264
|
+
_frag_markers.type()
|
|
1265
|
+
_frag_markers.timestamp()
|
|
1266
|
+
_frag_series = _frag.series()
|
|
1267
|
+
_frag_series_tags = _frag_series.tags()
|
|
1268
|
+
_frag_series_tags.key()
|
|
1269
|
+
_frag_series_tags.value()
|
|
1270
|
+
_frag_series_points = _frag_series.points()
|
|
1271
|
+
_frag_series_points.timestamp()
|
|
1272
|
+
_frag_series_points.value()
|
|
1273
|
+
_frag_series_points.is_reset_point()
|
|
1274
|
+
return _frag
|
|
1275
|
+
|
|
1276
|
+
|
|
1261
1277
|
def fragment_provision_customer_fragment():
|
|
1262
1278
|
_frag = sgqlc.operation.Fragment(_schema.ProvisionedCustomer, 'ProvisionCustomerFragment')
|
|
1263
1279
|
_frag_customer = _frag.customer()
|
|
@@ -1418,6 +1434,7 @@ class Fragment:
|
|
|
1418
1434
|
total_price_fragment = fragment_total_price_fragment()
|
|
1419
1435
|
typography_configuration_fragment = fragment_typography_configuration_fragment()
|
|
1420
1436
|
usage_history_fragment = fragment_usage_history_fragment()
|
|
1437
|
+
usage_history_v2_fragment = fragment_usage_history_v2_fragment()
|
|
1421
1438
|
usage_updated_fragment = fragment_usage_updated_fragment()
|
|
1422
1439
|
|
|
1423
1440
|
|
|
@@ -1756,6 +1773,13 @@ def query_get_usage_history():
|
|
|
1756
1773
|
return _op
|
|
1757
1774
|
|
|
1758
1775
|
|
|
1776
|
+
def query_get_usage_history_v2():
|
|
1777
|
+
_op = sgqlc.operation.Operation(_schema_root.query_type, name='GetUsageHistoryV2', variables=dict(input=sgqlc.types.Arg(sgqlc.types.non_null(_schema.UsageHistoryV2Input))))
|
|
1778
|
+
_op_usage_history_v2 = _op.usage_history_v2(input=sgqlc.types.Variable('input'))
|
|
1779
|
+
_op_usage_history_v2.__fragment__(fragment_usage_history_v2_fragment())
|
|
1780
|
+
return _op
|
|
1781
|
+
|
|
1782
|
+
|
|
1759
1783
|
class Query:
|
|
1760
1784
|
get_active_subscriptions = query_get_active_subscriptions()
|
|
1761
1785
|
get_active_subscriptions_list = query_get_active_subscriptions_list()
|
|
@@ -1772,6 +1796,7 @@ class Query:
|
|
|
1772
1796
|
get_sdk_configuration = query_get_sdk_configuration()
|
|
1773
1797
|
get_subscription = query_get_subscription()
|
|
1774
1798
|
get_usage_history = query_get_usage_history()
|
|
1799
|
+
get_usage_history_v2 = query_get_usage_history_v2()
|
|
1775
1800
|
|
|
1776
1801
|
|
|
1777
1802
|
def subscription_on_entitlements_updated():
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|