class Google::Apis::ClouddeployV1::TargetsPresentCondition
TargetsPresentCondition
contains information on any Targets defined in the Delivery Pipeline that do not actually exist.
Attributes
missing_targets[RW]
The list of Target
names that are missing. For example, projects/‘project_id`/ locations/`location_name`/targets/`target_name`. Corresponds to the JSON property `missingTargets` @return [Array<String>]
status[RW]
True if there aren’t any missing Targets. Corresponds to the JSON property ‘status` @return [Boolean]
status?[RW]
True if there aren’t any missing Targets. Corresponds to the JSON property ‘status` @return [Boolean]
update_time[RW]
Last time the condition was updated. Corresponds to the JSON property ‘updateTime` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/clouddeploy_v1/classes.rb, line 1783 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 1788 def update!(**args) @missing_targets = args[:missing_targets] if args.key?(:missing_targets) @status = args[:status] if args.key?(:status) @update_time = args[:update_time] if args.key?(:update_time) end