class Google::Apis::ClouddeployV1::TargetRender
Details of rendering for a single target.
Attributes
failure_cause[RW]
Output only. Reason this render failed. This will always be unspecified while the render in progress. Corresponds to the JSON property ‘failureCause` @return [String]
rendering_build[RW]
Output only. The resource name of the Cloud Build ‘Build` object that is used to render the manifest for this target. Format is `projects/`project`/ locations/`location`/builds/`build“. Corresponds to the JSON property `renderingBuild` @return [String]
rendering_state[RW]
Output only. Current state of the render operation for this Target
. Corresponds to the JSON property ‘renderingState` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/clouddeploy_v1/classes.rb, line 1749 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/clouddeploy_v1/classes.rb, line 1754 def update!(**args) @failure_cause = args[:failure_cause] if args.key?(:failure_cause) @rendering_build = args[:rendering_build] if args.key?(:rendering_build) @rendering_state = args[:rendering_state] if args.key?(:rendering_state) end