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



2633
2634
2635
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 2633

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

Instance Attribute Details

#api_versionString

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

Returns:

  • (String)


2609
2610
2611
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 2609

def api_version
  @api_version
end

#kindString

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

Returns:

  • (String)


2614
2615
2616
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 2614

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



2620
2621
2622
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 2620

def 
  @metadata
end

#specGoogle::Apis::RunV1alpha1::RevisionSpec

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



2625
2626
2627
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 2625

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



2631
2632
2633
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 2631

def status
  @status
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2638
2639
2640
2641
2642
2643
2644
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 2638

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