stigg-api-client 2.293.0__py3-none-any.whl → 2.296.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 CHANGED
@@ -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')
@@ -1701,8 +1709,9 @@ class DoesFeatureExist(sgqlc.types.Input):
1701
1709
 
1702
1710
  class DumpEnvironmentForForMergeComparisonInput(sgqlc.types.Input):
1703
1711
  __schema__ = schema
1704
- __field_names__ = ('destination_environment_slug', 'source_environment_slug')
1712
+ __field_names__ = ('destination_environment_slug', 'merge_configuration', 'source_environment_slug')
1705
1713
  destination_environment_slug = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='destinationEnvironmentSlug')
1714
+ merge_configuration = sgqlc.types.Field('EnvironmentMergeConfigurationInput', graphql_name='mergeConfiguration')
1706
1715
  source_environment_slug = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='sourceEnvironmentSlug')
1707
1716
 
1708
1717
 
@@ -1788,6 +1797,12 @@ class EnvironmentInput(sgqlc.types.Input):
1788
1797
  provision_status = sgqlc.types.Field(EnvironmentProvisionStatus, graphql_name='provisionStatus')
1789
1798
 
1790
1799
 
1800
+ class EnvironmentMergeConfigurationInput(sgqlc.types.Input):
1801
+ __schema__ = schema
1802
+ __field_names__ = ('include_coupons',)
1803
+ include_coupons = sgqlc.types.Field(Boolean, graphql_name='includeCoupons')
1804
+
1805
+
1791
1806
  class EnvironmentSort(sgqlc.types.Input):
1792
1807
  __schema__ = schema
1793
1808
  __field_names__ = ('direction', 'field', 'nulls')
@@ -2429,10 +2444,11 @@ class MemberSort(sgqlc.types.Input):
2429
2444
 
2430
2445
  class MergeEnvironmentInput(sgqlc.types.Input):
2431
2446
  __schema__ = schema
2432
- __field_names__ = ('destination_environment_name', 'destination_environment_slug', 'destination_environment_type', 'migration_type', 'source_environment_slug', 'source_template')
2447
+ __field_names__ = ('destination_environment_name', 'destination_environment_slug', 'destination_environment_type', 'merge_configuration', 'migration_type', 'source_environment_slug', 'source_template')
2433
2448
  destination_environment_name = sgqlc.types.Field(String, graphql_name='destinationEnvironmentName')
2434
2449
  destination_environment_slug = sgqlc.types.Field(String, graphql_name='destinationEnvironmentSlug')
2435
2450
  destination_environment_type = sgqlc.types.Field(EnvironmentType, graphql_name='destinationEnvironmentType')
2451
+ merge_configuration = sgqlc.types.Field(EnvironmentMergeConfigurationInput, graphql_name='mergeConfiguration')
2436
2452
  migration_type = sgqlc.types.Field(PublishMigrationType, graphql_name='migrationType')
2437
2453
  source_environment_slug = sgqlc.types.Field(String, graphql_name='sourceEnvironmentSlug')
2438
2454
  source_template = sgqlc.types.Field(JSON, graphql_name='sourceTemplate')
@@ -4154,9 +4170,9 @@ class UnitTransformationInput(sgqlc.types.Input):
4154
4170
 
4155
4171
  class UpdateAccountInput(sgqlc.types.Input):
4156
4172
  __schema__ = schema
4157
- __field_names__ = ('display_name', 'id', 'subscription_billing_anchor', 'subscription_proration_behavior', 'timezone')
4173
+ __field_names__ = ('default_ssoroles', 'display_name', 'subscription_billing_anchor', 'subscription_proration_behavior', 'timezone')
4174
+ default_ssoroles = sgqlc.types.Field(DefaultSSORolesInput, graphql_name='defaultSSORoles')
4158
4175
  display_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='displayName')
4159
- id = sgqlc.types.Field(String, graphql_name='id')
4160
4176
  subscription_billing_anchor = sgqlc.types.Field(BillingAnchor, graphql_name='subscriptionBillingAnchor')
4161
4177
  subscription_proration_behavior = sgqlc.types.Field(ProrationBehavior, graphql_name='subscriptionProrationBehavior')
4162
4178
  timezone = sgqlc.types.Field(String, graphql_name='timezone')
@@ -4471,8 +4487,9 @@ class UsageMeasurementSort(sgqlc.types.Input):
4471
4487
 
4472
4488
  class ValidateMergeEnvironmentInput(sgqlc.types.Input):
4473
4489
  __schema__ = schema
4474
- __field_names__ = ('destination_environment_slug', 'source_environment_slug')
4490
+ __field_names__ = ('destination_environment_slug', 'merge_configuration', 'source_environment_slug')
4475
4491
  destination_environment_slug = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='destinationEnvironmentSlug')
4492
+ merge_configuration = sgqlc.types.Field(EnvironmentMergeConfigurationInput, graphql_name='mergeConfiguration')
4476
4493
  source_environment_slug = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='sourceEnvironmentSlug')
4477
4494
 
4478
4495
 
@@ -4540,9 +4557,10 @@ class AccessRoles(sgqlc.types.Type):
4540
4557
 
4541
4558
  class Account(sgqlc.types.Type):
4542
4559
  __schema__ = schema
4543
- __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')
4544
4561
  account_email_domain = sgqlc.types.Field(String, graphql_name='accountEmailDomain')
4545
4562
  account_status = sgqlc.types.Field(AccountStatus, graphql_name='accountStatus')
4563
+ default_ssoroles = sgqlc.types.Field(AccessRoles, graphql_name='defaultSSORoles')
4546
4564
  display_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='displayName')
4547
4565
  id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='id')
4548
4566
  saml_enabled = sgqlc.types.Field(Boolean, graphql_name='samlEnabled')
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: stigg-api-client
3
- Version: 2.293.0
3
+ Version: 2.296.0
4
4
  Summary:
5
5
  License: STIGG SDK LICENSE
6
6
  Author: Stigg
@@ -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=XZTc9QY2zvADVjW_5oUBsp7X1S5bwUTi_lfFPSKG5rs,79480
5
- stigg/generated/schema.py,sha256=G1HGZWqKn4rcVrE4-5U2_rgcPWe0MWaAvuP3oWBT2zA,633364
6
- stigg_api_client-2.293.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
7
- stigg_api_client-2.293.0.dist-info/METADATA,sha256=TJmx5Ja8a-b8eYfuCZKcrJlJT5iNq_EVMw9uHHGBxss,3198
8
- stigg_api_client-2.293.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
9
- stigg_api_client-2.293.0.dist-info/RECORD,,
5
+ stigg/generated/schema.py,sha256=Vs2OdrbwmnDbLo9JLOzFQb2V1-YOEAqyblsKAwBeQvA,634650
6
+ stigg_api_client-2.296.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
7
+ stigg_api_client-2.296.0.dist-info/METADATA,sha256=1w-g7e0Vnkb-zPGuPedQq_EOPqcHI0RZx922OQfupcs,3198
8
+ stigg_api_client-2.296.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
9
+ stigg_api_client-2.296.0.dist-info/RECORD,,