Files
zvml-python-sdk/examples/zorgs_example.py
T
2025-07-25 15:03:39 -04:00

137 lines
5.3 KiB
Python

# Legal Disclaimer
# This script is an example script and is not supported under any Zerto support program or service.
# The author and Zerto further disclaim all implied warranties including, without limitation,
# any implied warranties of merchantability or of fitness for a particular purpose.
# In no event shall Zerto, its authors or anyone else involved in the creation,
# production or delivery of the scripts be liable for any damages whatsoever (including,
# without limitation, damages for loss of business profits, business interruption, loss of business
# information, or other pecuniary loss) arising out of the use of or the inability to use the sample
# scripts or documentation, even if the author or Zerto has been advised of the possibility of such damages.
# The entire risk arising out of the use or performance of the sample scripts and documentation remains with you.
"""
Zerto Organizations (ZORG) Management Example Script
This script demonstrates how to manage Zerto Organizations (ZORGs) using the Zerto Virtual Manager (ZVM) API.
It showcases ZORG querying and information retrieval operations.
Key Features:
1. ZORG Management:
- List all ZORGs in the environment
- Query specific ZORG details by ID
- Retrieve detailed ZORG information
- Demonstrate ZORG filtering capabilities
2. Information Retrieval:
- Get ZORG identifiers
- Access ZORG configuration details
- View ZORG relationships and permissions
- Monitor ZORG status
3. Error Handling:
- Robust error handling for API requests
- Detailed logging of operations
- Graceful handling of missing ZORGs
Required Arguments:
--zvm_address: ZVM server address
--client_id: Keycloak client ID
--client_secret: Keycloak client secret
--ignore_ssl: Ignore SSL certificate verification (optional)
--zorg_id: Optional specific ZORG ID to query
Example Usage:
python examples/zorgs_example.py \
--zvm_address "192.168.111.20" \
--client_id "zerto-api" \
--client_secret "your-secret-here" \
--ignore_ssl \
--zorg_id "optional-zorg-id"
Script Flow:
1. Connects to ZVM server
2. Lists all available ZORGs
3. If specific ZORG ID provided:
- Retrieves detailed information for that ZORG
4. Otherwise:
- Gets details of first available ZORG
5. Outputs detailed ZORG information
Note: This script demonstrates basic ZORG management capabilities and can be used
as a foundation for more complex ZORG operations and automation.
"""
# Configure logging BEFORE any imports
import logging
logging.basicConfig(
level=logging.INFO,
format='%(asctime)s - %(levelname)s - %(message)s'
)
import sys
import os
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
import argparse
import urllib3
import json
from zvml import ZVMLClient
# Disable SSL warnings
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
def main():
parser = argparse.ArgumentParser(description="Zerto Organizations (ZORG) Example")
parser.add_argument("--zvm_address", required=True, help="ZVM address")
parser.add_argument('--client_id', required=True, help='Keycloak client ID')
parser.add_argument('--client_secret', required=True, help='Keycloak client secret')
parser.add_argument("--ignore_ssl", action="store_true", help="Ignore SSL certificate verification")
parser.add_argument("--zorg_id", help="Optional: Specific ZORG ID to query")
args = parser.parse_args()
try:
# Connect to ZVM
logging.info(f"Connecting to ZVM at {args.zvm_address}")
client = ZVMLClient(
zvm_address=args.zvm_address,
client_id=args.client_id,
client_secret=args.client_secret,
verify_certificate=not args.ignore_ssl
)
# Test 1: Get all ZORGs
logging.info("\n=== Testing get_zorgs (all) ===")
try:
zorgs = client.zorgs.get_zorgs()
logging.info("All ZORGs:")
logging.info(json.dumps(zorgs, indent=2))
except Exception as e:
logging.error(f"Error getting all ZORGs: {e}")
# Test 2: Get specific ZORG if ID provided
if args.zorg_id:
logging.info(f"\n=== Testing get_zorgs with ID: {args.zorg_id} ===")
try:
zorg_details = client.zorgs.get_zorgs(args.zorg_id)
logging.info("ZORG details:")
logging.info(json.dumps(zorg_details, indent=2))
except Exception as e:
logging.error(f"Error getting ZORG {args.zorg_id}: {e}")
# Test 3: Get first ZORG details if any exist
elif zorgs and len(zorgs) > 0:
first_zorg = zorgs[0]
zorg_identifier = first_zorg.get('ZorgIdentifier')
if zorg_identifier:
logging.info(f"\n=== Testing get_zorgs with first found ID: {zorg_identifier} ===")
try:
zorg_details = client.zorgs.get_zorgs(zorg_identifier)
logging.info("First ZORG details:")
logging.info(json.dumps(zorg_details, indent=2))
except Exception as e:
logging.error(f"Error getting ZORG {zorg_identifier}: {e}")
except Exception as e:
logging.error(f"Error occurred: {e}")
raise
if __name__ == "__main__":
main()