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
Releaserender. -
#custom ⇒ Google::Apis::ClouddeployV1::CustomMetadata
CustomMetadata contains information from a user-defined operation.
-
#kubernetes ⇒ Google::Apis::ClouddeployV1::KubernetesRenderMetadata
KubernetesRenderMetadata contains Kubernetes information associated with a
Releaserender.
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.
5082 5083 5084 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 5082 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
5069 5070 5071 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 5069 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
5074 5075 5076 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 5074 def custom @custom end |
#kubernetes ⇒ Google::Apis::ClouddeployV1::KubernetesRenderMetadata
KubernetesRenderMetadata contains Kubernetes information associated with a
Release render.
Corresponds to the JSON property kubernetes
5080 5081 5082 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 5080 def kubernetes @kubernetes end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5087 5088 5089 5090 5091 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 5087 def update!(**args) @cloud_run = args[:cloud_run] if args.key?(:cloud_run) @custom = args[:custom] if args.key?(:custom) @kubernetes = args[:kubernetes] if args.key?(:kubernetes) end |