Class: Google::Apis::ClouddeployV1::RenderMetadata

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ RenderMetadata

Returns a new instance of RenderMetadata.



4376
4377
4378
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 4376

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

Instance Attribute Details

#cloud_runGoogle::Apis::ClouddeployV1::CloudRunRenderMetadata

CloudRunRenderMetadata contains Cloud Run information associated with a Release render. Corresponds to the JSON property cloudRun



4369
4370
4371
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 4369

def cloud_run
  @cloud_run
end

#customGoogle::Apis::ClouddeployV1::CustomMetadata

CustomMetadata contains information from a user-defined operation. Corresponds to the JSON property custom



4374
4375
4376
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 4374

def custom
  @custom
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4381
4382
4383
4384
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 4381

def update!(**args)
  @cloud_run = args[:cloud_run] if args.key?(:cloud_run)
  @custom = args[:custom] if args.key?(:custom)
end