Class: Google::Apis::GkeonpremV1::ValidationCheck
- Inherits:
-
Object
- Object
- Google::Apis::GkeonpremV1::ValidationCheck
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/gkeonprem_v1/classes.rb,
lib/google/apis/gkeonprem_v1/representations.rb,
lib/google/apis/gkeonprem_v1/representations.rb
Overview
ValidationCheck represents the result of preflight check.
Instance Attribute Summary collapse
-
#option ⇒ String
Options used for the validation check Corresponds to the JSON property
option. -
#scenario ⇒ String
Output only.
-
#status ⇒ Google::Apis::GkeonpremV1::ValidationCheckStatus
ValidationCheckStatus defines the detailed validation check status.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ValidationCheck
constructor
A new instance of ValidationCheck.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ValidationCheck
Returns a new instance of ValidationCheck.
3258 3259 3260 |
# File 'lib/google/apis/gkeonprem_v1/classes.rb', line 3258 def initialize(**args) update!(**args) end |
Instance Attribute Details
#option ⇒ String
Options used for the validation check
Corresponds to the JSON property option
3246 3247 3248 |
# File 'lib/google/apis/gkeonprem_v1/classes.rb', line 3246 def option @option end |
#scenario ⇒ String
Output only. The scenario when the preflight checks were run.
Corresponds to the JSON property scenario
3251 3252 3253 |
# File 'lib/google/apis/gkeonprem_v1/classes.rb', line 3251 def scenario @scenario end |
#status ⇒ Google::Apis::GkeonpremV1::ValidationCheckStatus
ValidationCheckStatus defines the detailed validation check status.
Corresponds to the JSON property status
3256 3257 3258 |
# File 'lib/google/apis/gkeonprem_v1/classes.rb', line 3256 def status @status end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3263 3264 3265 3266 3267 |
# File 'lib/google/apis/gkeonprem_v1/classes.rb', line 3263 def update!(**args) @option = args[:option] if args.key?(:option) @scenario = args[:scenario] if args.key?(:scenario) @status = args[:status] if args.key?(:status) end |