Class: Google::Apis::CloudbuildV2::InstallationState
- Inherits:
-
Object
- Object
- Google::Apis::CloudbuildV2::InstallationState
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudbuild_v2/classes.rb,
lib/google/apis/cloudbuild_v2/representations.rb,
lib/google/apis/cloudbuild_v2/representations.rb
Overview
Describes stage and necessary actions to be taken by the user to complete the installation. Used for GitHub and GitHub Enterprise based connections.
Instance Attribute Summary collapse
-
#action_uri ⇒ String
Output only.
-
#message ⇒ String
Output only.
-
#stage ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InstallationState
constructor
A new instance of InstallationState.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ InstallationState
Returns a new instance of InstallationState.
1196 1197 1198 |
# File 'lib/google/apis/cloudbuild_v2/classes.rb', line 1196 def initialize(**args) update!(**args) end |
Instance Attribute Details
#action_uri ⇒ String
Output only. Link to follow for next action. Empty string if the installation
is already complete.
Corresponds to the JSON property actionUri
1183 1184 1185 |
# File 'lib/google/apis/cloudbuild_v2/classes.rb', line 1183 def action_uri @action_uri end |
#message ⇒ String
Output only. Message of what the user should do next to continue the
installation. Empty string if the installation is already complete.
Corresponds to the JSON property message
1189 1190 1191 |
# File 'lib/google/apis/cloudbuild_v2/classes.rb', line 1189 def @message end |
#stage ⇒ String
Output only. Current step of the installation process.
Corresponds to the JSON property stage
1194 1195 1196 |
# File 'lib/google/apis/cloudbuild_v2/classes.rb', line 1194 def stage @stage end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1201 1202 1203 1204 1205 |
# File 'lib/google/apis/cloudbuild_v2/classes.rb', line 1201 def update!(**args) @action_uri = args[:action_uri] if args.key?(:action_uri) @message = args[:message] if args.key?(:message) @stage = args[:stage] if args.key?(:stage) end |