stigg-api-client 2.131.2__py3-none-any.whl → 2.150.0__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 stigg-api-client might be problematic. Click here for more details.
- stigg/generated/schema.py +17 -5
- {stigg_api_client-2.131.2.dist-info → stigg_api_client-2.150.0.dist-info}/METADATA +1 -1
- {stigg_api_client-2.131.2.dist-info → stigg_api_client-2.150.0.dist-info}/RECORD +5 -5
- {stigg_api_client-2.131.2.dist-info → stigg_api_client-2.150.0.dist-info}/LICENSE +0 -0
- {stigg_api_client-2.131.2.dist-info → stigg_api_client-2.150.0.dist-info}/WHEEL +0 -0
stigg/generated/schema.py
CHANGED
|
@@ -5544,7 +5544,7 @@ class EligibleForTrial(sgqlc.types.Type):
|
|
|
5544
5544
|
|
|
5545
5545
|
class Entitlement(sgqlc.types.Type):
|
|
5546
5546
|
__schema__ = schema
|
|
5547
|
-
__field_names__ = ('access_denied_reason', 'current_usage', 'customer_id', 'display_name_override', 'entitlement_updated_at', 'feature', 'has_soft_limit', 'has_unlimited_usage', 'hidden_from_widgets', 'is_granted', 'meter_id', 'next_reset_date', 'requested_usage', 'reset_period', 'reset_period_configuration', 'resource_id', 'usage_limit', 'usage_updated_at')
|
|
5547
|
+
__field_names__ = ('access_denied_reason', 'current_usage', 'customer_id', 'display_name_override', 'entitlement_updated_at', 'feature', 'has_soft_limit', 'has_unlimited_usage', 'hidden_from_widgets', 'is_granted', 'meter_id', 'next_reset_date', 'requested_usage', 'reset_period', 'reset_period_configuration', 'resource_id', 'usage_limit', 'usage_period_anchor', 'usage_period_end', 'usage_period_start', 'usage_updated_at')
|
|
5548
5548
|
access_denied_reason = sgqlc.types.Field(AccessDeniedReason, graphql_name='accessDeniedReason')
|
|
5549
5549
|
current_usage = sgqlc.types.Field(Float, graphql_name='currentUsage')
|
|
5550
5550
|
customer_id = sgqlc.types.Field(String, graphql_name='customerId')
|
|
@@ -5562,6 +5562,9 @@ class Entitlement(sgqlc.types.Type):
|
|
|
5562
5562
|
reset_period_configuration = sgqlc.types.Field('ResetPeriodConfiguration', graphql_name='resetPeriodConfiguration')
|
|
5563
5563
|
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
5564
5564
|
usage_limit = sgqlc.types.Field(Float, graphql_name='usageLimit')
|
|
5565
|
+
usage_period_anchor = sgqlc.types.Field(DateTime, graphql_name='usagePeriodAnchor')
|
|
5566
|
+
usage_period_end = sgqlc.types.Field(DateTime, graphql_name='usagePeriodEnd')
|
|
5567
|
+
usage_period_start = sgqlc.types.Field(DateTime, graphql_name='usagePeriodStart')
|
|
5565
5568
|
usage_updated_at = sgqlc.types.Field(DateTime, graphql_name='usageUpdatedAt')
|
|
5566
5569
|
|
|
5567
5570
|
|
|
@@ -5603,7 +5606,7 @@ class EntitlementSummary(sgqlc.types.Type):
|
|
|
5603
5606
|
|
|
5604
5607
|
class EntitlementWithSummary(sgqlc.types.Type):
|
|
5605
5608
|
__schema__ = schema
|
|
5606
|
-
__field_names__ = ('access_denied_reason', 'current_usage', 'customer_id', 'display_name_override', 'entitlement_updated_at', 'feature', 'has_soft_limit', 'has_unlimited_usage', 'hidden_from_widgets', 'is_granted', 'meter_id', 'next_reset_date', 'requested_usage', 'reset_period', 'reset_period_configuration', 'resource_id', 'summaries', 'usage_limit', 'usage_updated_at')
|
|
5609
|
+
__field_names__ = ('access_denied_reason', 'current_usage', 'customer_id', 'display_name_override', 'entitlement_updated_at', 'feature', 'has_soft_limit', 'has_unlimited_usage', 'hidden_from_widgets', 'is_granted', 'meter_id', 'next_reset_date', 'requested_usage', 'reset_period', 'reset_period_configuration', 'resource_id', 'summaries', 'usage_limit', 'usage_period_anchor', 'usage_period_end', 'usage_period_start', 'usage_updated_at')
|
|
5607
5610
|
access_denied_reason = sgqlc.types.Field(AccessDeniedReason, graphql_name='accessDeniedReason')
|
|
5608
5611
|
current_usage = sgqlc.types.Field(Float, graphql_name='currentUsage')
|
|
5609
5612
|
customer_id = sgqlc.types.Field(String, graphql_name='customerId')
|
|
@@ -5622,6 +5625,9 @@ class EntitlementWithSummary(sgqlc.types.Type):
|
|
|
5622
5625
|
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
5623
5626
|
summaries = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(EntitlementSummary)), graphql_name='summaries')
|
|
5624
5627
|
usage_limit = sgqlc.types.Field(Float, graphql_name='usageLimit')
|
|
5628
|
+
usage_period_anchor = sgqlc.types.Field(DateTime, graphql_name='usagePeriodAnchor')
|
|
5629
|
+
usage_period_end = sgqlc.types.Field(DateTime, graphql_name='usagePeriodEnd')
|
|
5630
|
+
usage_period_start = sgqlc.types.Field(DateTime, graphql_name='usagePeriodStart')
|
|
5625
5631
|
usage_updated_at = sgqlc.types.Field(DateTime, graphql_name='usageUpdatedAt')
|
|
5626
5632
|
|
|
5627
5633
|
|
|
@@ -5805,7 +5811,9 @@ class EventLogMinAggregate(sgqlc.types.Type):
|
|
|
5805
5811
|
|
|
5806
5812
|
class EventRequest(sgqlc.types.Type):
|
|
5807
5813
|
__schema__ = schema
|
|
5808
|
-
__field_names__ = ('trace_id'
|
|
5814
|
+
__field_names__ = ('body', 'response', 'trace_id')
|
|
5815
|
+
body = sgqlc.types.Field(JSON, graphql_name='body')
|
|
5816
|
+
response = sgqlc.types.Field(JSON, graphql_name='response')
|
|
5809
5817
|
trace_id = sgqlc.types.Field(String, graphql_name='traceId')
|
|
5810
5818
|
|
|
5811
5819
|
|
|
@@ -9477,7 +9485,7 @@ class UsageMeasurementSumAggregate(sgqlc.types.Type):
|
|
|
9477
9485
|
|
|
9478
9486
|
class UsageMeasurementUpdated(sgqlc.types.Type):
|
|
9479
9487
|
__schema__ = schema
|
|
9480
|
-
__field_names__ = ('account_id', 'current_usage', 'customer_id', 'environment_id', 'feature_id', 'next_reset_date', 'resource_id')
|
|
9488
|
+
__field_names__ = ('account_id', 'current_usage', 'customer_id', 'environment_id', 'feature_id', 'next_reset_date', 'resource_id', 'usage_period_end', 'usage_period_start')
|
|
9481
9489
|
account_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='accountId')
|
|
9482
9490
|
current_usage = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='currentUsage')
|
|
9483
9491
|
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
@@ -9485,11 +9493,13 @@ class UsageMeasurementUpdated(sgqlc.types.Type):
|
|
|
9485
9493
|
feature_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='featureId')
|
|
9486
9494
|
next_reset_date = sgqlc.types.Field(Float, graphql_name='nextResetDate')
|
|
9487
9495
|
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
9496
|
+
usage_period_end = sgqlc.types.Field(Float, graphql_name='usagePeriodEnd')
|
|
9497
|
+
usage_period_start = sgqlc.types.Field(Float, graphql_name='usagePeriodStart')
|
|
9488
9498
|
|
|
9489
9499
|
|
|
9490
9500
|
class UsageMeasurementWithCurrentUsage(sgqlc.types.Type):
|
|
9491
9501
|
__schema__ = schema
|
|
9492
|
-
__field_names__ = ('created_at', 'current_usage', 'customer_id', 'environment_id', 'feature_id', 'id', 'next_reset_date', 'resource_id', 'timestamp', 'value')
|
|
9502
|
+
__field_names__ = ('created_at', 'current_usage', 'customer_id', 'environment_id', 'feature_id', 'id', 'next_reset_date', 'resource_id', 'timestamp', 'usage_period_end', 'usage_period_start', 'value')
|
|
9493
9503
|
created_at = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name='createdAt')
|
|
9494
9504
|
current_usage = sgqlc.types.Field(Float, graphql_name='currentUsage')
|
|
9495
9505
|
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
@@ -9499,6 +9509,8 @@ class UsageMeasurementWithCurrentUsage(sgqlc.types.Type):
|
|
|
9499
9509
|
next_reset_date = sgqlc.types.Field(DateTime, graphql_name='nextResetDate')
|
|
9500
9510
|
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
9501
9511
|
timestamp = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name='timestamp')
|
|
9512
|
+
usage_period_end = sgqlc.types.Field(DateTime, graphql_name='usagePeriodEnd')
|
|
9513
|
+
usage_period_start = sgqlc.types.Field(DateTime, graphql_name='usagePeriodStart')
|
|
9502
9514
|
value = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='value')
|
|
9503
9515
|
|
|
9504
9516
|
|
|
@@ -2,8 +2,8 @@ stigg/__init__.py,sha256=uQeM3YjvH1X56xOPknIEQezw0yjNNS-m9gi3B0XlSOM,44
|
|
|
2
2
|
stigg/client.py,sha256=z9u5SptafEM-tN_K0o_zGKYDy6VVS9LWvkH0ZBMO4jc,3721
|
|
3
3
|
stigg/generated/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
stigg/generated/operations.py,sha256=0HK09HSloqZStMs627RVHO2qCyyfcoJPgfe-Pq_sJTU,74825
|
|
5
|
-
stigg/generated/schema.py,sha256=
|
|
6
|
-
stigg_api_client-2.
|
|
7
|
-
stigg_api_client-2.
|
|
8
|
-
stigg_api_client-2.
|
|
9
|
-
stigg_api_client-2.
|
|
5
|
+
stigg/generated/schema.py,sha256=0MpJ3jzH4fY6gNwZNdi8XR2j_t1L9La1iwprbdAbXPc,615310
|
|
6
|
+
stigg_api_client-2.150.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
7
|
+
stigg_api_client-2.150.0.dist-info/METADATA,sha256=ZUKVkmWrOF6m5L_T3kL5K6asCc7Nts5ULx19KsKfz74,3198
|
|
8
|
+
stigg_api_client-2.150.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
9
|
+
stigg_api_client-2.150.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|