Class: Google::Apis::DeploymentmanagerAlpha::PollingOptions

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/deploymentmanager_alpha/classes.rb,
generated/google/apis/deploymentmanager_alpha/representations.rb,
generated/google/apis/deploymentmanager_alpha/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ PollingOptions

Returns a new instance of PollingOptions.



1769
1770
1771
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 1769

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

Instance Attribute Details

#diagnosticsArray<Google::Apis::DeploymentmanagerAlpha::Diagnostic>

An array of diagnostics to be collected by Deployment Manager, these diagnostics will be displayed to the user. Corresponds to the JSON property diagnostics



1746
1747
1748
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 1746

def diagnostics
  @diagnostics
end

#fail_conditionString

JsonPath expression that determines if the request failed. Corresponds to the JSON property failCondition

Returns:

  • (String)


1751
1752
1753
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 1751

def fail_condition
  @fail_condition
end

#finish_conditionString

JsonPath expression that determines if the request is completed. Corresponds to the JSON property finishCondition

Returns:

  • (String)


1756
1757
1758
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 1756

def finish_condition
  @finish_condition
end

JsonPath expression that evaluates to string, it indicates where to poll. Corresponds to the JSON property pollingLink

Returns:

  • (String)


1761
1762
1763
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 1761

def polling_link
  @polling_link
end

JsonPath expression, after polling is completed, indicates where to fetch the resource. Corresponds to the JSON property targetLink

Returns:

  • (String)


1767
1768
1769
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 1767

def target_link
  @target_link
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1774
1775
1776
1777
1778
1779
1780
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 1774

def update!(**args)
  @diagnostics = args[:diagnostics] if args.key?(:diagnostics)
  @fail_condition = args[:fail_condition] if args.key?(:fail_condition)
  @finish_condition = args[:finish_condition] if args.key?(:finish_condition)
  @polling_link = args[:polling_link] if args.key?(:polling_link)
  @target_link = args[:target_link] if args.key?(:target_link)
end