Class: Google::Apis::RunV1alpha1::Revision

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/run_v1alpha1/classes.rb,
generated/google/apis/run_v1alpha1/representations.rb,
generated/google/apis/run_v1alpha1/representations.rb

Overview

Revision is an immutable snapshot of code and configuration. A revision references a container image. Revisions are created by updates to a Configuration. Cloud Run does not currently support referencing a build that is responsible for materializing the container image from source. See also: https://github.com/knative/serving/blob/master/docs/spec/overview.md#revision

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Revision

Returns a new instance of Revision.



3247
3248
3249
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 3247

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#api_versionString

The API version for this call such as "serving.knative.dev/v1alpha1". Corresponds to the JSON property apiVersion

Returns:

  • (String)


3223
3224
3225
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 3223

def api_version
  @api_version
end

#kindString

The kind of this resource, in this case "Revision". Corresponds to the JSON property kind

Returns:

  • (String)


3228
3229
3230
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 3228

def kind
  @kind
end

#metadataGoogle::Apis::RunV1alpha1::ObjectMeta

ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. Corresponds to the JSON property metadata



3234
3235
3236
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 3234

def 
  @metadata
end

#specGoogle::Apis::RunV1alpha1::RevisionSpec

RevisionSpec holds the desired state of the Revision (from the client). Corresponds to the JSON property spec



3239
3240
3241
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 3239

def spec
  @spec
end

#statusGoogle::Apis::RunV1alpha1::RevisionStatus

RevisionStatus communicates the observed state of the Revision (from the controller). Corresponds to the JSON property status



3245
3246
3247
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 3245

def status
  @status
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3252
3253
3254
3255
3256
3257
3258
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 3252

def update!(**args)
  @api_version = args[:api_version] if args.key?(:api_version)
  @kind = args[:kind] if args.key?(:kind)
  @metadata = args[:metadata] if args.key?(:metadata)
  @spec = args[:spec] if args.key?(:spec)
  @status = args[:status] if args.key?(:status)
end