Class: Google::Apis::ClouddeployV1::RenderMetadata
- Inherits:
-
Object
- Object
- Google::Apis::ClouddeployV1::RenderMetadata
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/clouddeploy_v1/classes.rb,
lib/google/apis/clouddeploy_v1/representations.rb,
lib/google/apis/clouddeploy_v1/representations.rb
Overview
RenderMetadata includes information associated with a Release
render.
Instance Attribute Summary collapse
-
#cloud_run ⇒ Google::Apis::ClouddeployV1::CloudRunRenderMetadata
CloudRunRenderMetadata contains Cloud Run information associated with a
Release
render. -
#custom ⇒ Google::Apis::ClouddeployV1::CustomMetadata
CustomMetadata contains information from a user-defined operation.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RenderMetadata
constructor
A new instance of RenderMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RenderMetadata
Returns a new instance of RenderMetadata.
4395 4396 4397 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 4395 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cloud_run ⇒ Google::Apis::ClouddeployV1::CloudRunRenderMetadata
CloudRunRenderMetadata contains Cloud Run information associated with a
Release
render.
Corresponds to the JSON property cloudRun
4388 4389 4390 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 4388 def cloud_run @cloud_run end |
#custom ⇒ Google::Apis::ClouddeployV1::CustomMetadata
CustomMetadata contains information from a user-defined operation.
Corresponds to the JSON property custom
4393 4394 4395 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 4393 def custom @custom end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4400 4401 4402 4403 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 4400 def update!(**args) @cloud_run = args[:cloud_run] if args.key?(:cloud_run) @custom = args[:custom] if args.key?(:custom) end |