qontract-reconcile 0.10.1rc820__py3-none-any.whl → 0.10.1rc821__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.1rc820
3
+ Version: 0.10.1rc821
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
@@ -784,7 +784,7 @@ tools/app_interface_metrics_exporter.py,sha256=zkwkxdAUAxjdc-pzx2_oJXG25fo0Fnyd5
784
784
  tools/app_interface_reporter.py,sha256=upA-J-n-HXHKVDINRuMR7vTt-iJvQORKUVi9D3leQto,17738
785
785
  tools/glitchtip_access_reporter.py,sha256=oPBnk_YoDuljU3v0FaChzOwwnk4vap1xEE67QEjzdqs,2948
786
786
  tools/glitchtip_access_revalidation.py,sha256=8kbBJk04mkq28kWoRDDkfCGIF3GRg3pJrFAh1sW0dbk,2821
787
- tools/qontract_cli.py,sha256=jMndQ_f4yhdQ3AKpKj6sErfE4tLyGqZNTmGonC-AWiA,116937
787
+ tools/qontract_cli.py,sha256=_hap0giaBiU0o7SbHRmFsZ3yqXq7ULjK_omuifKBUqo,117165
788
788
  tools/sd_app_sre_alert_report.py,sha256=e9vAdyenUz2f5c8-z-5WY0wv-SJ9aePKDH2r4IwB6pc,5063
789
789
  tools/template_validation.py,sha256=-U-lTGeLaci8yWPEblCJeev2DOlY1jM9QOOh-O1zts8,3376
790
790
  tools/cli_commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -811,8 +811,8 @@ tools/test/test_app_interface_metrics_exporter.py,sha256=SX7qL3D1SIRKFo95FoQztvf
811
811
  tools/test/test_qontract_cli.py,sha256=_D61RFGAN5x44CY1tYbouhlGXXABwYfxKSWSQx3Jrss,4941
812
812
  tools/test/test_sd_app_sre_alert_report.py,sha256=v363r9zM7__0kR5K6mvJoGFcM9BvE33fWAayrqkpojA,2116
813
813
  tools/test/test_sre_checkpoints.py,sha256=SKqPPTl9ua0RFdSSofnoQX-JZE6dFLO3LRhfQzqtfh8,2607
814
- qontract_reconcile-0.10.1rc820.dist-info/METADATA,sha256=0SSAIYRL8YgFeAFQEuhUY7J9sL8PraugUiJb9BaRWgU,2314
815
- qontract_reconcile-0.10.1rc820.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
816
- qontract_reconcile-0.10.1rc820.dist-info/entry_points.txt,sha256=GKQqCl2j2X1BJQ69een6rHcR26PmnxnONLNOQB-nRjY,491
817
- qontract_reconcile-0.10.1rc820.dist-info/top_level.txt,sha256=l5ISPoXzt0SdR4jVdkfa7RPSKNc8zAHYWAnR-Dw8Ey8,24
818
- qontract_reconcile-0.10.1rc820.dist-info/RECORD,,
814
+ qontract_reconcile-0.10.1rc821.dist-info/METADATA,sha256=9YwIJk3JplE2wqgGPe54l4-pdaFStcLWcb9UK5jCSdI,2314
815
+ qontract_reconcile-0.10.1rc821.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
816
+ qontract_reconcile-0.10.1rc821.dist-info/entry_points.txt,sha256=GKQqCl2j2X1BJQ69een6rHcR26PmnxnONLNOQB-nRjY,491
817
+ qontract_reconcile-0.10.1rc821.dist-info/top_level.txt,sha256=l5ISPoXzt0SdR4jVdkfa7RPSKNc8zAHYWAnR-Dw8Ey8,24
818
+ qontract_reconcile-0.10.1rc821.dist-info/RECORD,,
tools/qontract_cli.py CHANGED
@@ -1580,6 +1580,9 @@ def rds(ctx):
1580
1580
  "engine_version": rds_attr("engine_version", overrides, defaults),
1581
1581
  "instance_class": rds_attr("instance_class", overrides, defaults),
1582
1582
  "storage_type": rds_attr("storage_type", overrides, defaults),
1583
+ "ca_cert_identifier": rds_attr(
1584
+ "ca_cert_identifier", overrides, defaults
1585
+ ),
1583
1586
  }
1584
1587
  results.append(item)
1585
1588
 
@@ -1595,6 +1598,7 @@ def rds(ctx):
1595
1598
  {"key": "engine_version", "sortable": True},
1596
1599
  {"key": "instance_class", "sortable": True},
1597
1600
  {"key": "storage_type", "sortable": True},
1601
+ {"key": "ca_cert_identifier", "sortable": True},
1598
1602
  ],
1599
1603
  "items": results,
1600
1604
  }
@@ -1620,6 +1624,7 @@ You can view the source of this Markdown to extract the JSON data.
1620
1624
  "engine_version",
1621
1625
  "instance_class",
1622
1626
  "storage_type",
1627
+ "ca_cert_identifier",
1623
1628
  ]
1624
1629
  ctx.obj["options"]["sort"] = False
1625
1630
  print_output(ctx.obj["options"], results, columns)