File tree Expand file tree Collapse file tree 1 file changed +4
-8
lines changed
Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -117,21 +117,17 @@ def main():
117117 """Run all cluster examples."""
118118 print ('=== Clusters API Example ===\n ' )
119119
120- # Create a new cluster
121- print ('1. Creating a new cluster...' )
120+ print ('Creating a new cluster...' )
122121 cluster = create_cluster_example ()
123122 cluster_id = cluster .id
124123
125- # List all clusters
126- print ('\n 2. Listing all clusters...' )
124+ print ('\n Listing all clusters...' )
127125 list_clusters_example ()
128126
129- # Get cluster by ID
130- print ('\n 3. Getting cluster details...' )
127+ print ('\n Getting cluster details...' )
131128 get_cluster_by_id_example (cluster_id )
132129
133- # Delete the cluster
134- print ('\n 6. Deleting the cluster...' )
130+ print ('\n Deleting the cluster...' )
135131 delete_cluster_example (cluster_id )
136132
137133 print ('\n === Example completed successfully ===' )
You can’t perform that action at this time.
0 commit comments