- HTTP request
- Path parameters
- Request body
- Response body
- Authorization scopes
- ChannelConfig
- Version
- VersionRollout
- Try it!
Gets the server config.
HTTP request
GET https://edgecontainer.googleapis.com/v1/{name=projects/*/locations/*}/serverConfig
The URL uses gRPC Transcoding syntax.
Path parameters
Parameters | |
---|---|
name |
Required. The name (project and location) of the server config to get, specified in the format Authorization requires the following IAM permission on the specified resource
|
Request body
The request body must be empty.
Response body
Server configuration for supported versions and release channels.
If successful, the response body contains data with the following structure:
JSON representation |
---|
{ "channels": { string: { object ( |
Fields | |
---|---|
channels |
Output only. Mapping from release channel to channel config. An object containing a list of |
versions[] |
Output only. Supported versions, e.g.: ["1.4.0", "1.5.0"]. |
defaultVersion |
Output only. Default version, e.g.: "1.4.0". |
versionRollouts[] |
Output only. Rollout information for the server config. |
Authorization scopes
Requires the following OAuth scope:
https://www.googleapis.com/auth/cloud-platform
For more information, see the Authentication Overview.
ChannelConfig
Configuration for a release channel.
JSON representation |
---|
{ "defaultVersion": string } |
Fields | |
---|---|
defaultVersion |
Output only. Default version for this release channel, e.g.: "1.4.0". |
Version
Version of a cluster.
JSON representation |
---|
{ "name": string } |
Fields | |
---|---|
name |
Output only. Name of the version, e.g.: "1.4.0". |
VersionRollout
VersionRollout contains the Version rollout information.
JSON representation |
---|
{ "version": string, "availableZones": [ string ] } |
Fields | |
---|---|
version |
Output only. Semantic version, e.g.: "1.4.0". |
availableZones[] |
Output only. List of zones in which the version has been rolled out, e.g.: ["us-central1", "us-west1"]. |