qontract-reconcile 0.10.1rc913__py3-none-any.whl → 0.10.1rc914__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: qontract-reconcile
3
- Version: 0.10.1rc913
3
+ Version: 0.10.1rc914
4
4
  Summary: Collection of tools to reconcile services with their desired state as defined in the app-interface DB.
5
5
  Home-page: https://github.com/app-sre/qontract-reconcile
6
6
  Author: Red Hat App-SRE Team
@@ -213,7 +213,7 @@ reconcile/gql_definitions/advanced_upgrade_service/aus_organization.py,sha256=zU
213
213
  reconcile/gql_definitions/app_interface_metrics_exporter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
214
214
  reconcile/gql_definitions/app_interface_metrics_exporter/onboarding_status.py,sha256=uVEEqU6YYmKsNTo6EWlFnoVmqha2rvBDx-wiD64VmG0,1679
215
215
  reconcile/gql_definitions/aws_account_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
216
- reconcile/gql_definitions/aws_account_manager/aws_accounts.py,sha256=GVRRBlj_OOw3rh-IQFsMs0WYDNy2gA4xdUciO7NJlDo,4777
216
+ reconcile/gql_definitions/aws_account_manager/aws_accounts.py,sha256=JdqtE3gMpeodymPJST-aFVkYP_MO--_CcwjF070R5Cs,4883
217
217
  reconcile/gql_definitions/aws_ami_cleanup/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
218
218
  reconcile/gql_definitions/aws_ami_cleanup/asg_namespaces.py,sha256=OJmeTu7uirLGAysZ3IQTtRXqMyL8noi_QZxPuWYxxmI,3678
219
219
  reconcile/gql_definitions/aws_saml_idp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -844,8 +844,8 @@ tools/test/test_qontract_cli.py,sha256=_D61RFGAN5x44CY1tYbouhlGXXABwYfxKSWSQx3Jr
844
844
  tools/test/test_saas_promotion_state.py,sha256=dy4kkSSAQ7bC0Xp2CociETGN-2aABEfL6FU5D9Jl00Y,6056
845
845
  tools/test/test_sd_app_sre_alert_report.py,sha256=v363r9zM7__0kR5K6mvJoGFcM9BvE33fWAayrqkpojA,2116
846
846
  tools/test/test_sre_checkpoints.py,sha256=SKqPPTl9ua0RFdSSofnoQX-JZE6dFLO3LRhfQzqtfh8,2607
847
- qontract_reconcile-0.10.1rc913.dist-info/METADATA,sha256=_Z85T5zVc8ot621q16JjZ2OTEpfrUsmf3g_bCxtz_l0,2273
848
- qontract_reconcile-0.10.1rc913.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
849
- qontract_reconcile-0.10.1rc913.dist-info/entry_points.txt,sha256=GKQqCl2j2X1BJQ69een6rHcR26PmnxnONLNOQB-nRjY,491
850
- qontract_reconcile-0.10.1rc913.dist-info/top_level.txt,sha256=l5ISPoXzt0SdR4jVdkfa7RPSKNc8zAHYWAnR-Dw8Ey8,24
851
- qontract_reconcile-0.10.1rc913.dist-info/RECORD,,
847
+ qontract_reconcile-0.10.1rc914.dist-info/METADATA,sha256=fhmsnD8MxH5KL6pAfaMn_pKyScPbkweGectQCRDTy7s,2273
848
+ qontract_reconcile-0.10.1rc914.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
849
+ qontract_reconcile-0.10.1rc914.dist-info/entry_points.txt,sha256=GKQqCl2j2X1BJQ69een6rHcR26PmnxnONLNOQB-nRjY,491
850
+ qontract_reconcile-0.10.1rc914.dist-info/top_level.txt,sha256=l5ISPoXzt0SdR4jVdkfa7RPSKNc8zAHYWAnR-Dw8Ey8,24
851
+ qontract_reconcile-0.10.1rc914.dist-info/RECORD,,
@@ -89,6 +89,7 @@ query AWSAccountManagerAccounts {
89
89
  resourcesDefaultRegion
90
90
  supportedDeploymentRegions
91
91
  uid
92
+ additionalFeatures
92
93
  }
93
94
  organization_accounts {
94
95
  ... AWSAccountManaged
@@ -141,6 +142,7 @@ class AWSAccountRequestV1(ConfiguredBaseModel):
141
142
  resources_default_region: str = Field(..., alias="resourcesDefaultRegion")
142
143
  supported_deployment_regions: Optional[list[str]] = Field(..., alias="supportedDeploymentRegions")
143
144
  uid: Optional[str] = Field(..., alias="uid")
145
+ additional_features: Optional[Json] = Field(..., alias="additionalFeatures")
144
146
 
145
147
 
146
148
  class AWSAccountV1(AWSAccountManaged):