Class: Google::Apis::CloudcontrolspartnerV1::Instructions
- Inherits:
-
Object
- Object
- Google::Apis::CloudcontrolspartnerV1::Instructions
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudcontrolspartner_v1/classes.rb,
lib/google/apis/cloudcontrolspartner_v1/representations.rb,
lib/google/apis/cloudcontrolspartner_v1/representations.rb
Overview
Instructions to remediate violation
Instance Attribute Summary collapse
-
#console_instructions ⇒ Google::Apis::CloudcontrolspartnerV1::Console
Remediation instructions to resolve violation via cloud console Corresponds to the JSON property
consoleInstructions
. -
#gcloud_instructions ⇒ Google::Apis::CloudcontrolspartnerV1::Gcloud
Remediation instructions to resolve violation via gcloud cli Corresponds to the JSON property
gcloudInstructions
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Instructions
constructor
A new instance of Instructions.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Instructions
Returns a new instance of Instructions.
395 396 397 |
# File 'lib/google/apis/cloudcontrolspartner_v1/classes.rb', line 395 def initialize(**args) update!(**args) end |
Instance Attribute Details
#console_instructions ⇒ Google::Apis::CloudcontrolspartnerV1::Console
Remediation instructions to resolve violation via cloud console
Corresponds to the JSON property consoleInstructions
388 389 390 |
# File 'lib/google/apis/cloudcontrolspartner_v1/classes.rb', line 388 def console_instructions @console_instructions end |
#gcloud_instructions ⇒ Google::Apis::CloudcontrolspartnerV1::Gcloud
Remediation instructions to resolve violation via gcloud cli
Corresponds to the JSON property gcloudInstructions
393 394 395 |
# File 'lib/google/apis/cloudcontrolspartner_v1/classes.rb', line 393 def gcloud_instructions @gcloud_instructions end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
400 401 402 403 |
# File 'lib/google/apis/cloudcontrolspartner_v1/classes.rb', line 400 def update!(**args) @console_instructions = args[:console_instructions] if args.key?(:console_instructions) @gcloud_instructions = args[:gcloud_instructions] if args.key?(:gcloud_instructions) end |