Class: Google::Apis::WorkloadmanagerV1::ExecutionResult

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

Overview

Message describing the result of an execution

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ExecutionResult

Returns a new instance of ExecutionResult.



356
357
358
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 356

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

Instance Attribute Details

#commandsArray<Google::Apis::WorkloadmanagerV1::Command>

The commands to remediate the violation. Corresponds to the JSON property commands



319
320
321
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 319

def commands
  @commands
end

#documentation_urlString

The URL for the documentation of the rule. Corresponds to the JSON property documentationUrl

Returns:

  • (String)


324
325
326
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 324

def documentation_url
  @documentation_url
end

#resourceGoogle::Apis::WorkloadmanagerV1::Resource

Message represent resource in execution result Corresponds to the JSON property resource



329
330
331
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 329

def resource
  @resource
end

#ruleString

The rule that is violated in an evaluation. Corresponds to the JSON property rule

Returns:

  • (String)


334
335
336
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 334

def rule
  @rule
end

#severityString

The severity of violation. Corresponds to the JSON property severity

Returns:

  • (String)


339
340
341
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 339

def severity
  @severity
end

#typeString

Execution result type of the scanned resource Corresponds to the JSON property type

Returns:

  • (String)


344
345
346
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 344

def type
  @type
end

#violation_detailsGoogle::Apis::WorkloadmanagerV1::ViolationDetails

Message describing the violation in an evaluation result. Corresponds to the JSON property violationDetails



349
350
351
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 349

def violation_details
  @violation_details
end

#violation_messageString

The violation message of an execution. Corresponds to the JSON property violationMessage

Returns:

  • (String)


354
355
356
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 354

def violation_message
  @violation_message
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



361
362
363
364
365
366
367
368
369
370
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 361

def update!(**args)
  @commands = args[:commands] if args.key?(:commands)
  @documentation_url = args[:documentation_url] if args.key?(:documentation_url)
  @resource = args[:resource] if args.key?(:resource)
  @rule = args[:rule] if args.key?(:rule)
  @severity = args[:severity] if args.key?(:severity)
  @type = args[:type] if args.key?(:type)
  @violation_details = args[:violation_details] if args.key?(:violation_details)
  @violation_message = args[:violation_message] if args.key?(:violation_message)
end