diff --git a/compute/compute/ingredients/instances/resume.py b/compute/compute/ingredients/instances/resume.py index 2dcfcd325e3d..f29ffab6aee5 100644 --- a/compute/compute/ingredients/instances/resume.py +++ b/compute/compute/ingredients/instances/resume.py @@ -28,7 +28,7 @@ def resume_instance(project_id: str, zone: str, instance_name: str) -> None: Args: project_id: project ID or project number of the Cloud project your instance belongs to. zone: name of the zone your instance belongs to. - instance_name: name of the instance your want to resume. + instance_name: name of the instance you want to resume. """ instance_client = compute_v1.InstancesClient() diff --git a/compute/compute/ingredients/instances/suspend.py b/compute/compute/ingredients/instances/suspend.py index d38cac81e3c9..64a15da740e5 100644 --- a/compute/compute/ingredients/instances/suspend.py +++ b/compute/compute/ingredients/instances/suspend.py @@ -28,7 +28,7 @@ def suspend_instance(project_id: str, zone: str, instance_name: str) -> None: Args: project_id: project ID or project number of the Cloud project your instance belongs to. zone: name of the zone your instance belongs to. - instance_name: name of the instance your want to suspend. + instance_name: name of the instance you want to suspend. """ instance_client = compute_v1.InstancesClient() @@ -36,7 +36,7 @@ def suspend_instance(project_id: str, zone: str, instance_name: str) -> None: project=project_id, zone=zone, instance=instance_name ) - wait_for_extended_operation(operation, "instance suspend") + wait_for_extended_operation(operation, "suspend instance") return # diff --git a/compute/compute/snippets/instances/resume.py b/compute/compute/snippets/instances/resume.py index 715a1681b72e..04d08705c93f 100644 --- a/compute/compute/snippets/instances/resume.py +++ b/compute/compute/snippets/instances/resume.py @@ -81,7 +81,7 @@ def resume_instance(project_id: str, zone: str, instance_name: str) -> None: Args: project_id: project ID or project number of the Cloud project your instance belongs to. zone: name of the zone your instance belongs to. - instance_name: name of the instance your want to resume. + instance_name: name of the instance you want to resume. """ instance_client = compute_v1.InstancesClient() diff --git a/compute/compute/snippets/instances/suspend.py b/compute/compute/snippets/instances/suspend.py index 7dd286a3c4b5..4a7c373dafca 100644 --- a/compute/compute/snippets/instances/suspend.py +++ b/compute/compute/snippets/instances/suspend.py @@ -81,7 +81,7 @@ def suspend_instance(project_id: str, zone: str, instance_name: str) -> None: Args: project_id: project ID or project number of the Cloud project your instance belongs to. zone: name of the zone your instance belongs to. - instance_name: name of the instance your want to suspend. + instance_name: name of the instance you want to suspend. """ instance_client = compute_v1.InstancesClient() @@ -89,7 +89,7 @@ def suspend_instance(project_id: str, zone: str, instance_name: str) -> None: project=project_id, zone=zone, instance=instance_name ) - wait_for_extended_operation(operation, "instance suspend") + wait_for_extended_operation(operation, "suspend instance") return