AI Features

Cloud SDK In Action

This lesson covers using the Cloud SDK commands.

To use Google Cloud CLI effectively, you must understand how the commands are organized in the SDK. This way, it will be easy to guess the commands even if you don’t know the exact command.

Cloud SDK components

Cloud SDK is a bundle of different components. In the last lesson, we used the gcloud component. A component can be a separate CLI app or a group of commands used with the master component app. For example, gcloud is a component (CLI app), and gcloud alpha and gcloud beta are also components (a group of commands).

Some of the important components in Cloud SDK are:

  1. gcloud: The main google cloud component.

    • gcloud alpha: Set of commands used for early testing of new features.
    • gcloud beta: Beta release of new
...
Ask