qontract-reconcile 0.10.1rc600__py3-none-any.whl → 0.10.1rc601__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.1rc600
3
+ Version: 0.10.1rc601
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
@@ -693,7 +693,7 @@ tools/app_interface_metrics_exporter.py,sha256=zkwkxdAUAxjdc-pzx2_oJXG25fo0Fnyd5
693
693
  tools/app_interface_reporter.py,sha256=upA-J-n-HXHKVDINRuMR7vTt-iJvQORKUVi9D3leQto,17738
694
694
  tools/glitchtip_access_reporter.py,sha256=oPBnk_YoDuljU3v0FaChzOwwnk4vap1xEE67QEjzdqs,2948
695
695
  tools/glitchtip_access_revalidation.py,sha256=8kbBJk04mkq28kWoRDDkfCGIF3GRg3pJrFAh1sW0dbk,2821
696
- tools/qontract_cli.py,sha256=O1ZqncWMnl_H8SReAT51hQYs3z8TA4wkT9dG-Edl5gY,110787
696
+ tools/qontract_cli.py,sha256=cnZLJJS-FRUQFUAD90ivt-WEv8NfaemqBvZ9CaFV_kI,110957
697
697
  tools/sd_app_sre_alert_report.py,sha256=e9vAdyenUz2f5c8-z-5WY0wv-SJ9aePKDH2r4IwB6pc,5063
698
698
  tools/cli_commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
699
699
  tools/cli_commands/gpg_encrypt.py,sha256=w8hl4jIEWk5wKbEFN6fVEOwUJGmdlvOqYodW3XSN7mU,4978
@@ -704,8 +704,8 @@ tools/test/test_app_interface_metrics_exporter.py,sha256=SX7qL3D1SIRKFo95FoQztvf
704
704
  tools/test/test_qontract_cli.py,sha256=OvalpVRfY4pNmpMaWHHYqBjV68b1eGQjX8SCyTAXb1w,3501
705
705
  tools/test/test_sd_app_sre_alert_report.py,sha256=v363r9zM7__0kR5K6mvJoGFcM9BvE33fWAayrqkpojA,2116
706
706
  tools/test/test_sre_checkpoints.py,sha256=SKqPPTl9ua0RFdSSofnoQX-JZE6dFLO3LRhfQzqtfh8,2607
707
- qontract_reconcile-0.10.1rc600.dist-info/METADATA,sha256=gL-JMUnFj5XD7ZFTZIJXIwlndAcnvBqOPwuwNdLq7lE,2349
708
- qontract_reconcile-0.10.1rc600.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
709
- qontract_reconcile-0.10.1rc600.dist-info/entry_points.txt,sha256=rTjAv28I_CHLM8ID3OPqMI_suoQ9s7tFbim4aYjn9kk,376
710
- qontract_reconcile-0.10.1rc600.dist-info/top_level.txt,sha256=l5ISPoXzt0SdR4jVdkfa7RPSKNc8zAHYWAnR-Dw8Ey8,24
711
- qontract_reconcile-0.10.1rc600.dist-info/RECORD,,
707
+ qontract_reconcile-0.10.1rc601.dist-info/METADATA,sha256=xTaPAHRbNj68qwYjL7rWiII4D89lyuJWpmOg4fiBP_g,2349
708
+ qontract_reconcile-0.10.1rc601.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
709
+ qontract_reconcile-0.10.1rc601.dist-info/entry_points.txt,sha256=rTjAv28I_CHLM8ID3OPqMI_suoQ9s7tFbim4aYjn9kk,376
710
+ qontract_reconcile-0.10.1rc601.dist-info/top_level.txt,sha256=l5ISPoXzt0SdR4jVdkfa7RPSKNc8zAHYWAnR-Dw8Ey8,24
711
+ qontract_reconcile-0.10.1rc601.dist-info/RECORD,,
tools/qontract_cli.py CHANGED
@@ -1510,7 +1510,7 @@ def rds_region(
1510
1510
  overrides: dict[str, str],
1511
1511
  defaults: dict[str, str],
1512
1512
  accounts: dict[str, Any],
1513
- ):
1513
+ ) -> str | None:
1514
1514
  return (
1515
1515
  spec.resource.get("region")
1516
1516
  or rds_attr("region", overrides, defaults)
@@ -1542,6 +1542,7 @@ def rds(ctx):
1542
1542
  item = {
1543
1543
  "identifier": spec.identifier,
1544
1544
  "account": spec.provisioner_name,
1545
+ "account_uid": accounts[spec.provisioner_name]["uid"],
1545
1546
  "region": rds_region(spec, overrides, defaults, accounts),
1546
1547
  "engine": rds_attr("engine", overrides, defaults),
1547
1548
  "engine_version": rds_attr("engine_version", overrides, defaults),
@@ -1555,6 +1556,7 @@ def rds(ctx):
1555
1556
  "fields": [
1556
1557
  {"key": "identifier", "sortable": True},
1557
1558
  {"key": "account", "sortable": True},
1559
+ {"key": "account_uid", "sortable": True},
1558
1560
  {"key": "region", "sortable": True},
1559
1561
  {"key": "engine", "sortable": True},
1560
1562
  {"key": "engine_version", "sortable": True},
@@ -1578,6 +1580,7 @@ You can view the source of this Markdown to extract the JSON data.
1578
1580
  columns = [
1579
1581
  "identifier",
1580
1582
  "account",
1583
+ "account_uid",
1581
1584
  "region",
1582
1585
  "engine",
1583
1586
  "engine_version",