Method: projects.locations.vmwareClusters.list

Lists VMware Clusters in a given project and location.

HTTP request

GET https://gkeonprem.googleapis.com/v1/{parent=projects/*/locations/*}/vmwareClusters

The URL uses gRPC Transcoding syntax.

Path parameters

Parameters
parent

string

Required. The parent of the project and location where the clusters are listed in. Format: "projects/{project}/locations/{location}"

Query parameters

Parameters
pageSize

integer

Requested page size. Server may return fewer items than requested. If unspecified, at most 50 clusters will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000.

pageToken

string

A token identifying a page of results the server should return.

filter

string

A resource filtering expression following https://google.aip.dev/160. When non-empty, only resource's whose attributes field matches the filter are returned.

view

enum (ClusterView)

View for VMware clusters. When BASIC is specified, only the cluster resource name and admin cluster membership are returned. The default/unset value CLUSTER_VIEW_UNSPECIFIED is the same as `FULL', which returns the complete cluster configuration details.

Request body

The request body must be empty.

Response body

Response message for listing VMware Clusters.

If successful, the response body contains data with the following structure:

JSON representation
{
  "vmwareClusters": [
    {
      object (VmwareCluster)
    }
  ],
  "nextPageToken": string,
  "unreachable": [
    string
  ]
}
Fields
vmwareClusters[]

object (VmwareCluster)

The list of VMware Cluster.

nextPageToken

string

A token identifying a page of results the server should return. If the token is not empty this means that more results are available and should be retrieved by repeating the request with the provided page token.

unreachable[]

string

Locations that could not be reached.

Authorization scopes

Requires the following OAuth scope:

  • https://www.googleapis.com/auth/cloud-platform

For more information, see the Authentication Overview.

ClusterView

A view for cluster resources.

Enums
CLUSTER_VIEW_UNSPECIFIED If the value is not set, the default FULL view is used.
BASIC Includes basic information of a cluster resource including cluster resource name and admin cluster membership.
FULL Includes the complete configuration for VMware cluster resource. This is the default value for ListVmwareClustersRequest method.