From 033366e3d9075d7547c20739bcf53803ddf64c4f Mon Sep 17 00:00:00 2001 From: Manisha Singhal Date: Thu, 12 Dec 2024 12:15:42 +0100 Subject: [PATCH] Add Quiesce option in Snapshot module --- plugins/modules/snapshot.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/plugins/modules/snapshot.py b/plugins/modules/snapshot.py index 6ac77706db..dd011f5c62 100644 --- a/plugins/modules/snapshot.py +++ b/plugins/modules/snapshot.py @@ -52,6 +52,11 @@ - Option to add RAM (only available for VMWare compute-resource) required: false type: bool + quiesce: + description: + - Option to create quiesce snapshot (only available for VMWare compute-resource) + required: false + type: bool state: description: - State of Snapshot @@ -157,6 +162,7 @@ def main(): description=dict(), include_ram=dict(type='bool'), id=dict(), + quiesce=dict(type='bool'), ), required_plugins=[('snapshot_management', ['*'])], entity_opts={'scope': ['host']},