Class: Google::Apis::RunV1alpha1::RevisionTemplate
- Inherits:
-
Object
- Object
- Google::Apis::RunV1alpha1::RevisionTemplate
- 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
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::RunV1alpha1::ObjectMeta
ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.
-
#spec ⇒ Google::Apis::RunV1alpha1::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.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ RevisionTemplate
Returns a new instance of RevisionTemplate
3389 3390 3391 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 3389 def initialize(**args) update!(**args) end |
Instance Attribute Details
#metadata ⇒ Google::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
3382 3383 3384 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 3382 def @metadata end |
#spec ⇒ Google::Apis::RunV1alpha1::RevisionSpec
RevisionSpec holds the desired state of the Revision (from the client).
Corresponds to the JSON property spec
3387 3388 3389 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 3387 def spec @spec end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3394 3395 3396 3397 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 3394 def update!(**args) @metadata = args[:metadata] if args.key?(:metadata) @spec = args[:spec] if args.key?(:spec) end |