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)
  },
  "kmsKeyVersion": string
}
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

Uses RFC 3339, where generated output will always be Z-normalized and use 0, 3, 6 or 9 fractional digits. Offsets other than "Z" are also accepted. Examples: "2014-10-02T15:01:23Z", "2014-10-02T15:01:23.045123456Z" or "2014-10-02T15:01:23+05:30".

updateTime

string (Timestamp format)

Output only. [Output only] Update time stamp

Uses RFC 3339, where generated output will always be Z-normalized and use 0, 3, 6 or 9 fractional digits. Offsets other than "Z" are also accepted. Examples: "2014-10-02T15:01:23Z", "2014-10-02T15:01:23.045123456Z" or "2014-10-02T15:01:23+05:30".

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).

kmsKeyVersion

string

Optional. Output only. [Output only] The resource name of the KMS key version used to encrypt the ParameterVersion payload. This field is populated only if the Parameter resource has customer managed encryption key (CMEK) configured.

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.