Class: Google::Apis::ClouddeployV1::TargetRender

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

Details of rendering for a single target.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ TargetRender

Returns a new instance of TargetRender.



1933
1934
1935
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 1933

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

Instance Attribute Details

#failure_causeString

Output only. Reason this render failed. This will always be unspecified while the render in progress. Corresponds to the JSON property failureCause

Returns:

  • (String)


1919
1920
1921
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 1919

def failure_cause
  @failure_cause
end

#rendering_buildString

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 propertyrenderingBuild`

Returns:

  • (String)


1926
1927
1928
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 1926

def rendering_build
  @rendering_build
end

#rendering_stateString

Output only. Current state of the render operation for this Target. Corresponds to the JSON property renderingState

Returns:

  • (String)


1931
1932
1933
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 1931

def rendering_state
  @rendering_state
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1938
1939
1940
1941
1942
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 1938

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