Class: Google::Apis::RunV1::RevisionTemplate
- Inherits:
-
Object
- Object
- Google::Apis::RunV1::RevisionTemplate
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/run_v1/classes.rb,
lib/google/apis/run_v1/representations.rb,
lib/google/apis/run_v1/representations.rb
Overview
RevisionTemplateSpec describes the data a revision should have when created from a template. Based on: https://github.com/kubernetes/api/blob/e771f807/ core/v1/types.go#L3179-L3190
Instance Attribute Summary collapse
-
#metadata ⇒ Google::Apis::RunV1::ObjectMeta
k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.
-
#spec ⇒ Google::Apis::RunV1::RevisionSpec
RevisionSpec holds the desired state of the Revision (from the client).
Instance Method Summary collapse
-
#initialize(**args) ⇒ RevisionTemplate
constructor
A new instance of RevisionTemplate.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RevisionTemplate
Returns a new instance of RevisionTemplate.
2202 2203 2204 |
# File 'lib/google/apis/run_v1/classes.rb', line 2202 def initialize(**args) update!(**args) end |
Instance Attribute Details
#metadata ⇒ Google::Apis::RunV1::ObjectMeta
k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta is metadata that all persisted
resources must have, which includes all objects users must create.
Corresponds to the JSON property metadata
2195 2196 2197 |
# File 'lib/google/apis/run_v1/classes.rb', line 2195 def @metadata end |
#spec ⇒ Google::Apis::RunV1::RevisionSpec
RevisionSpec holds the desired state of the Revision (from the client).
Corresponds to the JSON property spec
2200 2201 2202 |
# File 'lib/google/apis/run_v1/classes.rb', line 2200 def spec @spec end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2207 2208 2209 2210 |
# File 'lib/google/apis/run_v1/classes.rb', line 2207 def update!(**args) @metadata = args[:metadata] if args.key?(:metadata) @spec = args[:spec] if args.key?(:spec) end |