stigg-api-client 2.294.0__tar.gz → 2.296.1__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.294.0 → stigg_api_client-2.296.1}/PKG-INFO +1 -1
- {stigg_api_client-2.294.0 → stigg_api_client-2.296.1}/pyproject.toml +1 -1
- {stigg_api_client-2.294.0 → stigg_api_client-2.296.1}/stigg/generated/operations.py +1 -1
- {stigg_api_client-2.294.0 → stigg_api_client-2.296.1}/stigg/generated/schema.py +16 -7
- {stigg_api_client-2.294.0 → stigg_api_client-2.296.1}/LICENSE +0 -0
- {stigg_api_client-2.294.0 → stigg_api_client-2.296.1}/README.md +0 -0
- {stigg_api_client-2.294.0 → stigg_api_client-2.296.1}/stigg/__init__.py +0 -0
- {stigg_api_client-2.294.0 → stigg_api_client-2.296.1}/stigg/client.py +0 -0
- {stigg_api_client-2.294.0 → stigg_api_client-2.296.1}/stigg/generated/__init__.py +0 -0
|
@@ -1727,7 +1727,7 @@ def query_get_entitlement():
|
|
|
1727
1727
|
|
|
1728
1728
|
def query_get_products():
|
|
1729
1729
|
_op = sgqlc.operation.Operation(_schema_root.query_type, name='GetProducts')
|
|
1730
|
-
_op_products = _op.products(paging={'first':
|
|
1730
|
+
_op_products = _op.products(paging={'first': 20})
|
|
1731
1731
|
_op_products_edges = _op_products.edges()
|
|
1732
1732
|
_op_products_edges_node = _op_products_edges.node()
|
|
1733
1733
|
_op_products_edges_node.__fragment__(fragment_product_fragment())
|
|
@@ -1610,6 +1610,14 @@ class DateFieldComparisonBetween(sgqlc.types.Input):
|
|
|
1610
1610
|
upper = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name='upper')
|
|
1611
1611
|
|
|
1612
1612
|
|
|
1613
|
+
class DefaultSSORolesInput(sgqlc.types.Input):
|
|
1614
|
+
__schema__ = schema
|
|
1615
|
+
__field_names__ = ('account_role', 'non_production_role', 'production_role')
|
|
1616
|
+
account_role = sgqlc.types.Field(sgqlc.types.non_null(AccountAccessRole), graphql_name='accountRole')
|
|
1617
|
+
non_production_role = sgqlc.types.Field(sgqlc.types.non_null(EnvironmentAccessRole), graphql_name='nonProductionRole')
|
|
1618
|
+
production_role = sgqlc.types.Field(sgqlc.types.non_null(EnvironmentAccessRole), graphql_name='productionRole')
|
|
1619
|
+
|
|
1620
|
+
|
|
1613
1621
|
class DefaultTrialConfigInputDTO(sgqlc.types.Input):
|
|
1614
1622
|
__schema__ = schema
|
|
1615
1623
|
__field_names__ = ('budget', 'duration', 'trial_end_behavior', 'units')
|
|
@@ -4162,9 +4170,9 @@ class UnitTransformationInput(sgqlc.types.Input):
|
|
|
4162
4170
|
|
|
4163
4171
|
class UpdateAccountInput(sgqlc.types.Input):
|
|
4164
4172
|
__schema__ = schema
|
|
4165
|
-
__field_names__ = ('
|
|
4173
|
+
__field_names__ = ('default_ssoroles', 'display_name', 'subscription_billing_anchor', 'subscription_proration_behavior', 'timezone')
|
|
4174
|
+
default_ssoroles = sgqlc.types.Field(DefaultSSORolesInput, graphql_name='defaultSSORoles')
|
|
4166
4175
|
display_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='displayName')
|
|
4167
|
-
id = sgqlc.types.Field(String, graphql_name='id')
|
|
4168
4176
|
subscription_billing_anchor = sgqlc.types.Field(BillingAnchor, graphql_name='subscriptionBillingAnchor')
|
|
4169
4177
|
subscription_proration_behavior = sgqlc.types.Field(ProrationBehavior, graphql_name='subscriptionProrationBehavior')
|
|
4170
4178
|
timezone = sgqlc.types.Field(String, graphql_name='timezone')
|
|
@@ -4549,9 +4557,10 @@ class AccessRoles(sgqlc.types.Type):
|
|
|
4549
4557
|
|
|
4550
4558
|
class Account(sgqlc.types.Type):
|
|
4551
4559
|
__schema__ = schema
|
|
4552
|
-
__field_names__ = ('account_email_domain', 'account_status', 'display_name', 'id', 'saml_enabled', 'subscription_billing_anchor', 'subscription_proration_behavior', 'timezone')
|
|
4560
|
+
__field_names__ = ('account_email_domain', 'account_status', 'default_ssoroles', 'display_name', 'id', 'saml_enabled', 'subscription_billing_anchor', 'subscription_proration_behavior', 'timezone')
|
|
4553
4561
|
account_email_domain = sgqlc.types.Field(String, graphql_name='accountEmailDomain')
|
|
4554
4562
|
account_status = sgqlc.types.Field(AccountStatus, graphql_name='accountStatus')
|
|
4563
|
+
default_ssoroles = sgqlc.types.Field(AccessRoles, graphql_name='defaultSSORoles')
|
|
4555
4564
|
display_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='displayName')
|
|
4556
4565
|
id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='id')
|
|
4557
4566
|
saml_enabled = sgqlc.types.Field(Boolean, graphql_name='samlEnabled')
|
|
@@ -5514,7 +5523,7 @@ class CustomerSubscription(sgqlc.types.Type):
|
|
|
5514
5523
|
status = sgqlc.types.Field(sgqlc.types.non_null(SubscriptionStatus), graphql_name='status')
|
|
5515
5524
|
subscription_entitlements = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionEntitlement')), graphql_name='subscriptionEntitlements', args=sgqlc.types.ArgDict((
|
|
5516
5525
|
('filter', sgqlc.types.Arg(SubscriptionEntitlementFilter, graphql_name='filter', default={})),
|
|
5517
|
-
('sorting', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(SubscriptionEntitlementSort)), graphql_name='sorting', default=[])),
|
|
5526
|
+
('sorting', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(SubscriptionEntitlementSort)), graphql_name='sorting', default=[{'direction': 'DESC', 'field': 'createdAt'}])),
|
|
5518
5527
|
))
|
|
5519
5528
|
)
|
|
5520
5529
|
subscription_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='subscriptionId')
|
|
@@ -8658,7 +8667,7 @@ class Query(sgqlc.types.Type):
|
|
|
8658
8667
|
import_integration_tasks = sgqlc.types.Field(sgqlc.types.non_null(ImportIntegrationTaskConnection), graphql_name='importIntegrationTasks', args=sgqlc.types.ArgDict((
|
|
8659
8668
|
('filter', sgqlc.types.Arg(ImportIntegrationTaskFilter, graphql_name='filter', default={})),
|
|
8660
8669
|
('paging', sgqlc.types.Arg(CursorPaging, graphql_name='paging', default={'first': 10})),
|
|
8661
|
-
('sorting', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ImportIntegrationTaskSort)), graphql_name='sorting', default=[])),
|
|
8670
|
+
('sorting', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ImportIntegrationTaskSort)), graphql_name='sorting', default=[{'direction': 'DESC', 'field': 'createdAt'}])),
|
|
8662
8671
|
))
|
|
8663
8672
|
)
|
|
8664
8673
|
integrations = sgqlc.types.Field(sgqlc.types.non_null(IntegrationConnection), graphql_name='integrations', args=sgqlc.types.ArgDict((
|
|
@@ -8743,13 +8752,13 @@ class Query(sgqlc.types.Type):
|
|
|
8743
8752
|
subscription_entitlements = sgqlc.types.Field(sgqlc.types.non_null('SubscriptionEntitlementConnection'), graphql_name='subscriptionEntitlements', args=sgqlc.types.ArgDict((
|
|
8744
8753
|
('filter', sgqlc.types.Arg(SubscriptionEntitlementFilter, graphql_name='filter', default={})),
|
|
8745
8754
|
('paging', sgqlc.types.Arg(CursorPaging, graphql_name='paging', default={'first': 10})),
|
|
8746
|
-
('sorting', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(SubscriptionEntitlementSort)), graphql_name='sorting', default=[])),
|
|
8755
|
+
('sorting', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(SubscriptionEntitlementSort)), graphql_name='sorting', default=[{'direction': 'DESC', 'field': 'createdAt'}])),
|
|
8747
8756
|
))
|
|
8748
8757
|
)
|
|
8749
8758
|
subscription_migration_tasks = sgqlc.types.Field(sgqlc.types.non_null('SubscriptionMigrationTaskConnection'), graphql_name='subscriptionMigrationTasks', args=sgqlc.types.ArgDict((
|
|
8750
8759
|
('filter', sgqlc.types.Arg(SubscriptionMigrationTaskFilter, graphql_name='filter', default={})),
|
|
8751
8760
|
('paging', sgqlc.types.Arg(CursorPaging, graphql_name='paging', default={'first': 10})),
|
|
8752
|
-
('sorting', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(SubscriptionMigrationTaskSort)), graphql_name='sorting', default=[])),
|
|
8761
|
+
('sorting', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(SubscriptionMigrationTaskSort)), graphql_name='sorting', default=[{'direction': 'DESC', 'field': 'createdAt'}])),
|
|
8753
8762
|
))
|
|
8754
8763
|
)
|
|
8755
8764
|
test_hook_data = sgqlc.types.Field(sgqlc.types.non_null('TestHook'), graphql_name='testHookData', args=sgqlc.types.ArgDict((
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|