REST Resource: networks.operatingSystemVersions

  • The OperatingSystemVersion resource represents a specific version of an operating system with fields for name, major, minor, and micro versions.

  • The JSON representation of an OperatingSystemVersion includes string for name and integers for majorVersion, minorVersion, and microVersion.

  • The get method retrieves a single OperatingSystemVersion object, while the list method retrieves a list of OperatingSystemVersion objects.

Resource: OperatingSystemVersion

Represents a specific version of an operating system.

JSON representation
{
  "name": string,
  "majorVersion": integer,
  "minorVersion": integer,
  "microVersion": integer
}
Fields
name

string

Identifier. The resource name of the OperatingSystemVersion. Format: networks/{networkCode}/operatingSystemVersions/{operating_system_version_id}

majorVersion

integer

Output only. The major version of the operating system.

minorVersion

integer

Output only. The minor version of the operating system.

microVersion

integer

Output only. The micro version of the operating system.

Methods

get

API to retrieve a OperatingSystemVersion object.

list

API to retrieve a list of OperatingSystemVersion objects.