stigg-api-client 1.124.0__py3-none-any.whl → 1.126.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 +29 -4
- {stigg_api_client-1.124.0.dist-info → stigg_api_client-1.126.0.dist-info}/METADATA +1 -1
- {stigg_api_client-1.124.0.dist-info → stigg_api_client-1.126.0.dist-info}/RECORD +5 -5
- {stigg_api_client-1.124.0.dist-info → stigg_api_client-1.126.0.dist-info}/LICENSE +0 -0
- {stigg_api_client-1.124.0.dist-info → stigg_api_client-1.126.0.dist-info}/WHEEL +0 -0
stigg/generated/schema.py
CHANGED
|
@@ -17,7 +17,7 @@ schema -= sgqlc.types.relay.PageInfo
|
|
|
17
17
|
########################################################################
|
|
18
18
|
class AccessDeniedReason(sgqlc.types.Enum):
|
|
19
19
|
__schema__ = schema
|
|
20
|
-
__choices__ = ('CustomerIsArchived', 'CustomerNotFound', 'CustomerResourceNotFound', 'FeatureNotFound', 'NoActiveSubscription', 'NoFeatureEntitlementInSubscription', 'RequestedUsageExceedingLimit', 'Unknown')
|
|
20
|
+
__choices__ = ('BudgetExceeded', 'CustomerIsArchived', 'CustomerNotFound', 'CustomerResourceNotFound', 'FeatureNotFound', 'NoActiveSubscription', 'NoFeatureEntitlementInSubscription', 'RequestedUsageExceedingLimit', 'Unknown')
|
|
21
21
|
|
|
22
22
|
|
|
23
23
|
class AccountStatus(sgqlc.types.Enum):
|
|
@@ -2205,6 +2205,13 @@ class MeterTypeFilterComparison(sgqlc.types.Input):
|
|
|
2205
2205
|
not_like = sgqlc.types.Field(MeterType, graphql_name='notLike')
|
|
2206
2206
|
|
|
2207
2207
|
|
|
2208
|
+
class MinimumSpendInput(sgqlc.types.Input):
|
|
2209
|
+
__schema__ = schema
|
|
2210
|
+
__field_names__ = ('billing_period', 'minimum')
|
|
2211
|
+
billing_period = sgqlc.types.Field(sgqlc.types.non_null(BillingPeriod), graphql_name='billingPeriod')
|
|
2212
|
+
minimum = sgqlc.types.Field('MoneyInputDTO', graphql_name='minimum')
|
|
2213
|
+
|
|
2214
|
+
|
|
2208
2215
|
class MoneyInputDTO(sgqlc.types.Input):
|
|
2209
2216
|
__schema__ = schema
|
|
2210
2217
|
__field_names__ = ('amount', 'currency')
|
|
@@ -2457,8 +2464,9 @@ class PackageGroupStatusFilterComparison(sgqlc.types.Input):
|
|
|
2457
2464
|
|
|
2458
2465
|
class PackagePricingInput(sgqlc.types.Input):
|
|
2459
2466
|
__schema__ = schema
|
|
2460
|
-
__field_names__ = ('environment_id', 'overage_billing_period', 'overage_pricing_models', 'package_id', 'pricing_model', 'pricing_models', 'pricing_type')
|
|
2467
|
+
__field_names__ = ('environment_id', 'minimum_spend', 'overage_billing_period', 'overage_pricing_models', 'package_id', 'pricing_model', 'pricing_models', 'pricing_type')
|
|
2461
2468
|
environment_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='environmentId')
|
|
2469
|
+
minimum_spend = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(MinimumSpendInput)), graphql_name='minimumSpend')
|
|
2462
2470
|
overage_billing_period = sgqlc.types.Field(OverageBillingPeriod, graphql_name='overageBillingPeriod')
|
|
2463
2471
|
overage_pricing_models = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(OveragePricingModelCreateInput)), graphql_name='overagePricingModels')
|
|
2464
2472
|
package_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='packageId')
|
|
@@ -6224,6 +6232,21 @@ class MeteringNotAvailableForFeatureTypeError(sgqlc.types.Type):
|
|
|
6224
6232
|
is_validation_error = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='isValidationError')
|
|
6225
6233
|
|
|
6226
6234
|
|
|
6235
|
+
class MinimumSpend(sgqlc.types.Type):
|
|
6236
|
+
__schema__ = schema
|
|
6237
|
+
__field_names__ = ('billing_period', 'minimum')
|
|
6238
|
+
billing_period = sgqlc.types.Field(sgqlc.types.non_null(BillingPeriod), graphql_name='billingPeriod')
|
|
6239
|
+
minimum = sgqlc.types.Field(sgqlc.types.non_null('Money'), graphql_name='minimum')
|
|
6240
|
+
|
|
6241
|
+
|
|
6242
|
+
class MinimumSpendChange(sgqlc.types.Type):
|
|
6243
|
+
__schema__ = schema
|
|
6244
|
+
__field_names__ = ('after', 'before', 'change_type')
|
|
6245
|
+
after = sgqlc.types.Field(MinimumSpend, graphql_name='after')
|
|
6246
|
+
before = sgqlc.types.Field(MinimumSpend, graphql_name='before')
|
|
6247
|
+
change_type = sgqlc.types.Field(ChangeType, graphql_name='changeType')
|
|
6248
|
+
|
|
6249
|
+
|
|
6227
6250
|
class MockPaywall(sgqlc.types.Type):
|
|
6228
6251
|
__schema__ = schema
|
|
6229
6252
|
__field_names__ = ('configuration', 'plans')
|
|
@@ -6751,7 +6774,7 @@ class PackageAlreadyPublishedError(sgqlc.types.Type):
|
|
|
6751
6774
|
|
|
6752
6775
|
class PackageChanges(sgqlc.types.Type):
|
|
6753
6776
|
__schema__ = schema
|
|
6754
|
-
__field_names__ = ('additional_meta_data', 'base_plan', 'compatible_addons', 'compatible_package_groups', 'default_trial_config', 'dependencies', 'description', 'display_name', 'entitlements', 'hidden_from_widgets', 'max_quantity', 'overage_prices', 'prices', 'pricing_type', 'total_changes')
|
|
6777
|
+
__field_names__ = ('additional_meta_data', 'base_plan', 'compatible_addons', 'compatible_package_groups', 'default_trial_config', 'dependencies', 'description', 'display_name', 'entitlements', 'hidden_from_widgets', 'max_quantity', 'minimum_spend', 'overage_prices', 'prices', 'pricing_type', 'total_changes')
|
|
6755
6778
|
additional_meta_data = sgqlc.types.Field(AdditionalMetaDataChange, graphql_name='additionalMetaData')
|
|
6756
6779
|
base_plan = sgqlc.types.Field(BasePlanChange, graphql_name='basePlan')
|
|
6757
6780
|
compatible_addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PlanCompatibleAddonChange')), graphql_name='compatibleAddons')
|
|
@@ -6763,6 +6786,7 @@ class PackageChanges(sgqlc.types.Type):
|
|
|
6763
6786
|
entitlements = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('PackageEntitlementChange'))), graphql_name='entitlements')
|
|
6764
6787
|
hidden_from_widgets = sgqlc.types.Field(HiddenFromWidgetsChange, graphql_name='hiddenFromWidgets')
|
|
6765
6788
|
max_quantity = sgqlc.types.Field(NumberChange, graphql_name='maxQuantity')
|
|
6789
|
+
minimum_spend = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(MinimumSpendChange)), graphql_name='minimumSpend')
|
|
6766
6790
|
overage_prices = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('PackagePriceChange'))), graphql_name='overagePrices')
|
|
6767
6791
|
prices = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('PackagePriceChange'))), graphql_name='prices')
|
|
6768
6792
|
pricing_type = sgqlc.types.Field('PricingTypeChange', graphql_name='pricingType')
|
|
@@ -7216,7 +7240,7 @@ class PaywallProduct(sgqlc.types.Type):
|
|
|
7216
7240
|
|
|
7217
7241
|
class Plan(sgqlc.types.Type):
|
|
7218
7242
|
__schema__ = schema
|
|
7219
|
-
__field_names__ = ('additional_meta_data', 'aws_marketplace_plan_dimension', 'base_plan', 'billing_id', 'billing_link_url', 'compatible_addons', 'compatible_package_groups', 'created_at', 'default_trial_config', 'description', 'display_name', 'draft_details', 'draft_summary', 'entitlements', 'environment', 'environment_id', 'hidden_from_widgets', 'id', 'inherited_entitlements', 'is_latest', 'is_parent', 'overage_billing_period', 'overage_prices', 'prices', 'pricing_type', 'product', 'product_id', 'ref_id', 'status', 'sync_states', 'type', 'updated_at', 'version_number')
|
|
7243
|
+
__field_names__ = ('additional_meta_data', 'aws_marketplace_plan_dimension', 'base_plan', 'billing_id', 'billing_link_url', 'compatible_addons', 'compatible_package_groups', 'created_at', 'default_trial_config', 'description', 'display_name', 'draft_details', 'draft_summary', 'entitlements', 'environment', 'environment_id', 'hidden_from_widgets', 'id', 'inherited_entitlements', 'is_latest', 'is_parent', 'minimum_spend', 'overage_billing_period', 'overage_prices', 'prices', 'pricing_type', 'product', 'product_id', 'ref_id', 'status', 'sync_states', 'type', 'updated_at', 'version_number')
|
|
7220
7244
|
additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
|
|
7221
7245
|
aws_marketplace_plan_dimension = sgqlc.types.Field(String, graphql_name='awsMarketplacePlanDimension')
|
|
7222
7246
|
base_plan = sgqlc.types.Field('Plan', graphql_name='basePlan')
|
|
@@ -7245,6 +7269,7 @@ class Plan(sgqlc.types.Type):
|
|
|
7245
7269
|
)
|
|
7246
7270
|
is_latest = sgqlc.types.Field(Boolean, graphql_name='isLatest')
|
|
7247
7271
|
is_parent = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='isParent')
|
|
7272
|
+
minimum_spend = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(MinimumSpend)), graphql_name='minimumSpend')
|
|
7248
7273
|
overage_billing_period = sgqlc.types.Field(OverageBillingPeriod, graphql_name='overageBillingPeriod')
|
|
7249
7274
|
overage_prices = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('Price')), graphql_name='overagePrices')
|
|
7250
7275
|
prices = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('Price')), graphql_name='prices')
|
|
@@ -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=YYFd__FKVvXq8EWFFQj7_uhGyoQWRkKeUEa-cqME1TA,68704
|
|
5
|
-
stigg/generated/schema.py,sha256=
|
|
6
|
-
stigg_api_client-1.
|
|
7
|
-
stigg_api_client-1.
|
|
8
|
-
stigg_api_client-1.
|
|
9
|
-
stigg_api_client-1.
|
|
5
|
+
stigg/generated/schema.py,sha256=Z-7LVLXSUyucLLWJvhzRIFe2nYF9ZqFhTii8ki9SPyA,577928
|
|
6
|
+
stigg_api_client-1.126.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
7
|
+
stigg_api_client-1.126.0.dist-info/METADATA,sha256=j3ReGjz7HhHs0vKO4vxHO2zn5888RQtiKkoHaC2Edfk,3198
|
|
8
|
+
stigg_api_client-1.126.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
9
|
+
stigg_api_client-1.126.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|