stigg-api-client 2.472.0__tar.gz → 2.475.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.472.0 → stigg_api_client-2.475.0}/PKG-INFO +1 -1
- {stigg_api_client-2.472.0 → stigg_api_client-2.475.0}/pyproject.toml +1 -1
- {stigg_api_client-2.472.0 → stigg_api_client-2.475.0}/stigg/generated/operations.py +2 -0
- {stigg_api_client-2.472.0 → stigg_api_client-2.475.0}/stigg/generated/schema.py +12 -6
- {stigg_api_client-2.472.0 → stigg_api_client-2.475.0}/LICENSE +0 -0
- {stigg_api_client-2.472.0 → stigg_api_client-2.475.0}/README.md +0 -0
- {stigg_api_client-2.472.0 → stigg_api_client-2.475.0}/stigg/__init__.py +0 -0
- {stigg_api_client-2.472.0 → stigg_api_client-2.475.0}/stigg/client.py +0 -0
- {stigg_api_client-2.472.0 → stigg_api_client-2.475.0}/stigg/generated/__init__.py +0 -0
|
@@ -811,6 +811,8 @@ def fragment_entitlement_fragment():
|
|
|
811
811
|
_frag.has_soft_limit()
|
|
812
812
|
_frag.current_usage()
|
|
813
813
|
_frag.requested_usage()
|
|
814
|
+
_frag.requested_values()
|
|
815
|
+
_frag.enum_values()
|
|
814
816
|
_frag.entitlement_updated_at()
|
|
815
817
|
_frag.usage_updated_at()
|
|
816
818
|
_frag.usage_period_anchor()
|
|
@@ -17,7 +17,7 @@ schema -= sgqlc.types.relay.PageInfo
|
|
|
17
17
|
########################################################################
|
|
18
18
|
class AccessDeniedReason(sgqlc.types.Enum):
|
|
19
19
|
__schema__ = schema
|
|
20
|
-
__choices__ = ('BudgetExceeded', 'CustomerIsArchived', 'CustomerNotFound', 'CustomerResourceNotFound', 'FeatureNotFound', 'FeatureTypeMismatch', 'NoActiveSubscription', 'NoFeatureEntitlementInSubscription', 'RequestedUsageExceedingLimit', 'Unknown')
|
|
20
|
+
__choices__ = ('BudgetExceeded', 'CustomerIsArchived', 'CustomerNotFound', 'CustomerResourceNotFound', 'FeatureNotFound', 'FeatureTypeMismatch', 'NoActiveSubscription', 'NoFeatureEntitlementInSubscription', 'RequestedUsageExceedingLimit', 'RequestedValuesMismatch', 'Unknown')
|
|
21
21
|
|
|
22
22
|
|
|
23
23
|
class AccountAccessMethod(sgqlc.types.Enum):
|
|
@@ -1825,26 +1825,29 @@ class EditPackageGroupDetailsInput(sgqlc.types.Input):
|
|
|
1825
1825
|
|
|
1826
1826
|
class EntitlementCheckRequested(sgqlc.types.Input):
|
|
1827
1827
|
__schema__ = schema
|
|
1828
|
-
__field_names__ = ('customer_id', 'entitlement_check_result', 'environment_id', 'feature_id', 'requested_usage', 'resource_id')
|
|
1828
|
+
__field_names__ = ('customer_id', 'entitlement_check_result', 'environment_id', 'feature_id', 'requested_usage', 'requested_values', 'resource_id')
|
|
1829
1829
|
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
1830
1830
|
entitlement_check_result = sgqlc.types.Field(sgqlc.types.non_null('EntitlementCheckResult'), graphql_name='entitlementCheckResult')
|
|
1831
1831
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
1832
1832
|
feature_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='featureId')
|
|
1833
1833
|
requested_usage = sgqlc.types.Field(Float, graphql_name='requestedUsage')
|
|
1834
|
+
requested_values = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='requestedValues')
|
|
1834
1835
|
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
1835
1836
|
|
|
1836
1837
|
|
|
1837
1838
|
class EntitlementCheckResult(sgqlc.types.Input):
|
|
1838
1839
|
__schema__ = schema
|
|
1839
|
-
__field_names__ = ('access_denied_reason', 'current_usage', 'has_access', 'has_soft_limit', 'has_unlimited_usage', 'monthly_reset_period_configuration', 'next_reset_date', 'requested_usage', 'reset_period', 'usage_limit', 'weekly_reset_period_configuration', 'yearly_reset_period_configuration')
|
|
1840
|
+
__field_names__ = ('access_denied_reason', 'current_usage', 'enum_values', 'has_access', 'has_soft_limit', 'has_unlimited_usage', 'monthly_reset_period_configuration', 'next_reset_date', 'requested_usage', 'requested_values', 'reset_period', 'usage_limit', 'weekly_reset_period_configuration', 'yearly_reset_period_configuration')
|
|
1840
1841
|
access_denied_reason = sgqlc.types.Field(AccessDeniedReason, graphql_name='accessDeniedReason')
|
|
1841
1842
|
current_usage = sgqlc.types.Field(Float, graphql_name='currentUsage')
|
|
1843
|
+
enum_values = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='enumValues')
|
|
1842
1844
|
has_access = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='hasAccess')
|
|
1843
1845
|
has_soft_limit = sgqlc.types.Field(Boolean, graphql_name='hasSoftLimit')
|
|
1844
1846
|
has_unlimited_usage = sgqlc.types.Field(Boolean, graphql_name='hasUnlimitedUsage')
|
|
1845
1847
|
monthly_reset_period_configuration = sgqlc.types.Field('MonthlyResetPeriodConfigInput', graphql_name='monthlyResetPeriodConfiguration')
|
|
1846
1848
|
next_reset_date = sgqlc.types.Field(DateTime, graphql_name='nextResetDate')
|
|
1847
1849
|
requested_usage = sgqlc.types.Field(Float, graphql_name='requestedUsage')
|
|
1850
|
+
requested_values = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='requestedValues')
|
|
1848
1851
|
reset_period = sgqlc.types.Field(EntitlementResetPeriod, graphql_name='resetPeriod')
|
|
1849
1852
|
usage_limit = sgqlc.types.Field(Float, graphql_name='usageLimit')
|
|
1850
1853
|
weekly_reset_period_configuration = sgqlc.types.Field('WeeklyResetPeriodConfigInput', graphql_name='weeklyResetPeriodConfiguration')
|
|
@@ -1853,8 +1856,9 @@ class EntitlementCheckResult(sgqlc.types.Input):
|
|
|
1853
1856
|
|
|
1854
1857
|
class EntitlementOptions(sgqlc.types.Input):
|
|
1855
1858
|
__schema__ = schema
|
|
1856
|
-
__field_names__ = ('requested_usage', 'should_track')
|
|
1859
|
+
__field_names__ = ('requested_usage', 'requested_values', 'should_track')
|
|
1857
1860
|
requested_usage = sgqlc.types.Field(Float, graphql_name='requestedUsage')
|
|
1861
|
+
requested_values = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='requestedValues')
|
|
1858
1862
|
should_track = sgqlc.types.Field(Boolean, graphql_name='shouldTrack')
|
|
1859
1863
|
|
|
1860
1864
|
|
|
@@ -6011,7 +6015,7 @@ class EligibleForTrial(sgqlc.types.Type):
|
|
|
6011
6015
|
|
|
6012
6016
|
class Entitlement(sgqlc.types.Type):
|
|
6013
6017
|
__schema__ = schema
|
|
6014
|
-
__field_names__ = ('access_denied_reason', 'current_usage', 'customer_id', 'display_name_override', 'entitlement_updated_at', 'enum_values', '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')
|
|
6018
|
+
__field_names__ = ('access_denied_reason', 'current_usage', 'customer_id', 'display_name_override', 'entitlement_updated_at', 'enum_values', 'feature', 'has_soft_limit', 'has_unlimited_usage', 'hidden_from_widgets', 'is_granted', 'meter_id', 'next_reset_date', 'requested_usage', 'requested_values', 'reset_period', 'reset_period_configuration', 'resource_id', 'usage_limit', 'usage_period_anchor', 'usage_period_end', 'usage_period_start', 'usage_updated_at')
|
|
6015
6019
|
access_denied_reason = sgqlc.types.Field(AccessDeniedReason, graphql_name='accessDeniedReason')
|
|
6016
6020
|
current_usage = sgqlc.types.Field(Float, graphql_name='currentUsage')
|
|
6017
6021
|
customer_id = sgqlc.types.Field(String, graphql_name='customerId')
|
|
@@ -6026,6 +6030,7 @@ class Entitlement(sgqlc.types.Type):
|
|
|
6026
6030
|
meter_id = sgqlc.types.Field(String, graphql_name='meterId')
|
|
6027
6031
|
next_reset_date = sgqlc.types.Field(DateTime, graphql_name='nextResetDate')
|
|
6028
6032
|
requested_usage = sgqlc.types.Field(Float, graphql_name='requestedUsage')
|
|
6033
|
+
requested_values = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='requestedValues')
|
|
6029
6034
|
reset_period = sgqlc.types.Field(EntitlementResetPeriod, graphql_name='resetPeriod')
|
|
6030
6035
|
reset_period_configuration = sgqlc.types.Field('ResetPeriodConfiguration', graphql_name='resetPeriodConfiguration')
|
|
6031
6036
|
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
@@ -6075,7 +6080,7 @@ class EntitlementSummary(sgqlc.types.Type):
|
|
|
6075
6080
|
|
|
6076
6081
|
class EntitlementWithSummary(sgqlc.types.Type):
|
|
6077
6082
|
__schema__ = schema
|
|
6078
|
-
__field_names__ = ('access_denied_reason', 'current_usage', 'customer_id', 'display_name_override', 'entitlement_updated_at', 'enum_values', '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')
|
|
6083
|
+
__field_names__ = ('access_denied_reason', 'current_usage', 'customer_id', 'display_name_override', 'entitlement_updated_at', 'enum_values', 'feature', 'has_soft_limit', 'has_unlimited_usage', 'hidden_from_widgets', 'is_granted', 'meter_id', 'next_reset_date', 'requested_usage', 'requested_values', 'reset_period', 'reset_period_configuration', 'resource_id', 'summaries', 'usage_limit', 'usage_period_anchor', 'usage_period_end', 'usage_period_start', 'usage_updated_at')
|
|
6079
6084
|
access_denied_reason = sgqlc.types.Field(AccessDeniedReason, graphql_name='accessDeniedReason')
|
|
6080
6085
|
current_usage = sgqlc.types.Field(Float, graphql_name='currentUsage')
|
|
6081
6086
|
customer_id = sgqlc.types.Field(String, graphql_name='customerId')
|
|
@@ -6090,6 +6095,7 @@ class EntitlementWithSummary(sgqlc.types.Type):
|
|
|
6090
6095
|
meter_id = sgqlc.types.Field(String, graphql_name='meterId')
|
|
6091
6096
|
next_reset_date = sgqlc.types.Field(DateTime, graphql_name='nextResetDate')
|
|
6092
6097
|
requested_usage = sgqlc.types.Field(Float, graphql_name='requestedUsage')
|
|
6098
|
+
requested_values = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='requestedValues')
|
|
6093
6099
|
reset_period = sgqlc.types.Field(EntitlementResetPeriod, graphql_name='resetPeriod')
|
|
6094
6100
|
reset_period_configuration = sgqlc.types.Field('ResetPeriodConfiguration', graphql_name='resetPeriodConfiguration')
|
|
6095
6101
|
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|