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.



463
464
465
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 463

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

Instance Attribute Details

#documentation_urlString

the document url of the rule Corresponds to the JSON property documentationUrl

Returns:

  • (String)


436
437
438
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 436

def documentation_url
  @documentation_url
end

#resourceGoogle::Apis::WorkloadmanagerV1::Resource

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



441
442
443
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 441

def resource
  @resource
end

#ruleString

the rule which violate in execution Corresponds to the JSON property rule

Returns:

  • (String)


446
447
448
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 446

def rule
  @rule
end

#severityString

severity of violation Corresponds to the JSON property severity

Returns:

  • (String)


451
452
453
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 451

def severity
  @severity
end

#violation_detailsGoogle::Apis::WorkloadmanagerV1::ViolationDetails

Message describing the violdation in execution result Corresponds to the JSON property violationDetails



456
457
458
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 456

def violation_details
  @violation_details
end

#violation_messageString

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

Returns:

  • (String)


461
462
463
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 461

def violation_message
  @violation_message
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



468
469
470
471
472
473
474
475
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 468

def update!(**args)
  @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)
  @violation_details = args[:violation_details] if args.key?(:violation_details)
  @violation_message = args[:violation_message] if args.key?(:violation_message)
end