REST Resource: projects.locations.parameters.versions

Resource: ParameterVersion

Message describing ParameterVersion resource

JSON representation
{
  "name": string,
  "createTime": string,
  "updateTime": string,
  "disabled": boolean,
  "payload": {
    object (ParameterVersionPayload)
  }
}
Fields
name

string

Identifier. [Output only] The resource name of the ParameterVersion in the format projects/*/locations/*/parameters/*/versions/*.

createTime

string (Timestamp format)

Output only. [Output only] Create time stamp

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

updateTime

string (Timestamp format)

Output only. [Output only] Update time stamp

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

disabled

boolean

Optional. Disabled boolean to determine if a ParameterVersion acts as a metadata only resource (payload is never returned if disabled is true). If true any calls will always default to BASIC view even if the user explicitly passes FULL view as part of the request. A render call on a disabled resource fails with an error. Default value is False.

payload

object (ParameterVersionPayload)

Required. Immutable. Payload content of a ParameterVersion resource. This is only returned when the request provides the View value of FULL (default for GET request).

ParameterVersionPayload

Message for storing a ParameterVersion resource's payload data

JSON representation
{
  "data": string
}
Fields
data

string (bytes format)

Required. bytes data for storing payload.

A base64-encoded string.

Methods

create

Creates a new ParameterVersion in a given project, location, and parameter.

delete

Deletes a single ParameterVersion.

get

Gets details of a single ParameterVersion.

list

Lists ParameterVersions in a given project, location, and parameter.

patch

Updates a single ParameterVersion.

render

Gets rendered version of a ParameterVersion.