Untitled

mail@pastecode.io avatar
unknown
plain_text
2 years ago
372 B
1
Indexable
Never
def run_pipeline(enabled_vm_details):
    # Your Apache Beam pipeline code here, using the enabled_vm_details dictionary as needed

    # Example usage: print the dictionary
    print(enabled_vm_details)

# Call the get_vm_details function and pass in the returned dictionary to run_pipeline
enabled_vm_details = get_vm_details()
run_pipeline(enabled_vm_details)