diff --git a/ansible_collections/arista/cvp/docs/how-to/v3/cv_facts_v3.md b/ansible_collections/arista/cvp/docs/how-to/v3/cv_facts_v3.md index 0ff387011..5cb77450b 100644 --- a/ansible_collections/arista/cvp/docs/how-to/v3/cv_facts_v3.md +++ b/ansible_collections/arista/cvp/docs/how-to/v3/cv_facts_v3.md @@ -70,7 +70,7 @@ ok: [CloudVision] => CVPRACTEST: configlets: [] parentContainerName: ansible-tests - image_bundle: "" + imageBundle: "" cvp_devices: - configlets: - leaf-2-unit-test @@ -84,7 +84,7 @@ ok: [CloudVision] => ipAddress: 192.0.2.165 serialNumber: A2BC886CB9408A0453A3CFDD9C251999 systemMacAddress: 50:00:00:d5:5d:c0 - image_bundle: "" + imageBundle: "" - configlets: [] fqdn: leaf-2-unit-test.ire.aristanetworks.com hostname: leaf-2-unit-test @@ -92,7 +92,7 @@ ok: [CloudVision] => parentContainerName: ansible-tests serialNumber: 08A7E527AF711F688A6AD7D78BB5AD0A systemMacAddress: 50:00:00:cb:38:c2 - image_bundle: "" + imageBundle: "" - configlets: - test_configlet fqdn: leaf-2-unit-test.ire.aristanetworks.com @@ -101,7 +101,7 @@ ok: [CloudVision] => parentContainerName: ansible-tests serialNumber: 24666013EF2271599935B4A894F356E1 systemMacAddress: 50:00:00:03:37:66 - image_bundle: "" + imageBundle: "" failed: false ``` diff --git a/ansible_collections/arista/cvp/plugins/module_utils/resources/schemas/v3.py b/ansible_collections/arista/cvp/plugins/module_utils/resources/schemas/v3.py index 89e3dc9b0..42f4d8081 100644 --- a/ansible_collections/arista/cvp/plugins/module_utils/resources/schemas/v3.py +++ b/ansible_collections/arista/cvp/plugins/module_utils/resources/schemas/v3.py @@ -247,6 +247,20 @@ "type": "string" }, "required": False + }, + "imageBundle": { + "$id": "#/items/anyOf/0/properties/imageBundle", + "type": "string", + "required": False, + "title": "The name of the image bundle", + "description": "The name of the image bundle to be associated with the container.", + "default": "", + "examples": [ + {"imageBundle": "spine_image_bundle"} + ], + "items": { + "$id": "#/items/anyOf/0/properties/imageBundle/items" + } } } }