Skip to content

docs(vmware): Updating docstrings #10425

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def cancel_private_cloud_deletion(
project_id: str, zone: str, cloud_name: str
) -> operation.Operation:
"""
Cancels in progress deletion of deletion of VMWare Private Cloud.
Cancels in progress deletion of VMWare Private Cloud.

Args:
project_id: name of the project hosting the private cloud.
Expand Down
2 changes: 1 addition & 1 deletion vmwareengine/cloud-client/create_cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def create_cluster(
"""
Create a new cluster in a private cloud.

Creation of a new cluster is a long-running operation and it might take well over 15 minutes.
Creation of a new cluster is a long-running operation and it may take over an hour.

Args:
project_id: name of the project you want to use.
Expand Down
2 changes: 1 addition & 1 deletion vmwareengine/cloud-client/create_custom_cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def create_custom_cluster(
Create a new cluster with custom number of cores in its nodes
in a private cloud.

Creation of a new cluster is a long-running operation and it might take well over 15 minutes.
Creation of a new cluster is a long-running operation and it may take over an hour.

Args:
project_id: name of the project you want to use.
Expand Down
2 changes: 1 addition & 1 deletion vmwareengine/cloud-client/create_private_cloud.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def create_private_cloud(
"""
Creates a new Private Cloud using VMWare Engine.

Creating a new Private Cloud is a long-running operation and it might take up to 2 hours.
Creating a new Private Cloud is a long-running operation and it may take over an hour.

Args:
project_id: name of the project you want to use.
Expand Down
2 changes: 1 addition & 1 deletion vmwareengine/cloud-client/delete_cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def delete_cluster(
"""
Delete a cluster from private cloud.

Deleting a cluster is a long-running operation.
Deleting a cluster is a long-running operation and it may take over an hour..

Args:
project_id: name of the project you want to use.
Expand Down
2 changes: 1 addition & 1 deletion vmwareengine/cloud-client/update_cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def update_cluster_node_count(
"""
Modify the number of nodes in a cluster in a private cloud.

Modifying a cluster is a long-running operation and it might take over 15 minutes.
Modifying a cluster is a long-running operation and it may take over an hour.

Args:
project_id: name of the project you want to use.
Expand Down