Class: Google::Apis::JobsV2::MendelDebugInput

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

Overview

Message representing input to a Mendel server for debug forcing. See go/mendel-debug-forcing for more details. Next ID: 2

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ MendelDebugInput

Returns a new instance of MendelDebugInput.



2651
2652
2653
# File 'generated/google/apis/jobs_v2/classes.rb', line 2651

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

Instance Attribute Details

#namespaced_debug_inputHash<String,Google::Apis::JobsV2::NamespacedDebugInput>

When a request spans multiple servers, a MendelDebugInput may travel with the request and take effect in all the servers. This field is a map of namespaces to NamespacedMendelDebugInput protos. In a single server, up to two NamespacedMendelDebugInput protos are applied:

  1. NamespacedMendelDebugInput with the global namespace (key == "").
  2. NamespacedMendelDebugInput with the server's namespace. When both NamespacedMendelDebugInput protos are present, they are merged. See go/mendel-debug-forcing for more details. Corresponds to the JSON property namespacedDebugInput


2649
2650
2651
# File 'generated/google/apis/jobs_v2/classes.rb', line 2649

def namespaced_debug_input
  @namespaced_debug_input
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2656
2657
2658
# File 'generated/google/apis/jobs_v2/classes.rb', line 2656

def update!(**args)
  @namespaced_debug_input = args[:namespaced_debug_input] if args.key?(:namespaced_debug_input)
end