Class: Google::Apis::CloudfunctionsV1::Stage
- Inherits:
-
Object
- Object
- Google::Apis::CloudfunctionsV1::Stage
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudfunctions_v1/classes.rb,
lib/google/apis/cloudfunctions_v1/representations.rb,
lib/google/apis/cloudfunctions_v1/representations.rb
Overview
Each Stage of the deployment process
Instance Attribute Summary collapse
-
#message ⇒ String
Message describing the Stage Corresponds to the JSON property
message. -
#name ⇒ String
Name of the Stage.
-
#resource ⇒ String
Resource of the Stage Corresponds to the JSON property
resource. -
#resource_uri ⇒ String
Link to the current Stage resource Corresponds to the JSON property
resourceUri. -
#state ⇒ String
Current state of the Stage Corresponds to the JSON property
state. -
#state_messages ⇒ Array<Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2alphaStateMessage>
State messages from the current Stage.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Stage
constructor
A new instance of Stage.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Stage
Returns a new instance of Stage.
1838 1839 1840 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 1838 def initialize(**args) update!(**args) end |
Instance Attribute Details
#message ⇒ String
Message describing the Stage
Corresponds to the JSON property message
1811 1812 1813 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 1811 def @message end |
#name ⇒ String
Name of the Stage. This will be unique for each Stage.
Corresponds to the JSON property name
1816 1817 1818 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 1816 def name @name end |
#resource ⇒ String
Resource of the Stage
Corresponds to the JSON property resource
1821 1822 1823 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 1821 def resource @resource end |
#resource_uri ⇒ String
Link to the current Stage resource
Corresponds to the JSON property resourceUri
1826 1827 1828 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 1826 def resource_uri @resource_uri end |
#state ⇒ String
Current state of the Stage
Corresponds to the JSON property state
1831 1832 1833 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 1831 def state @state end |
#state_messages ⇒ Array<Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2alphaStateMessage>
State messages from the current Stage.
Corresponds to the JSON property stateMessages
1836 1837 1838 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 1836 def @state_messages end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1843 1844 1845 1846 1847 1848 1849 1850 |
# File 'lib/google/apis/cloudfunctions_v1/classes.rb', line 1843 def update!(**args) @message = args[:message] if args.key?(:message) @name = args[:name] if args.key?(:name) @resource = args[:resource] if args.key?(:resource) @resource_uri = args[:resource_uri] if args.key?(:resource_uri) @state = args[:state] if args.key?(:state) @state_messages = args[:state_messages] if args.key?(:state_messages) end |