class Google::Apis::ClouddebuggerV2::ExtendedSourceContext
An ExtendedSourceContext is a SourceContext combined with additional details describing the context.
Attributes
context[RW]
A SourceContext is a reference to a tree of files. A SourceContext together with a path point to a unique revision of a single file or directory. Corresponds to the JSON property `context` @return [Google::Apis::ClouddebuggerV2::SourceContext]
labels[RW]
Labels with user defined metadata. Corresponds to the JSON property `labels` @return [Hash<String,String>]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/clouddebugger_v2/classes.rb, line 511 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/clouddebugger_v2/classes.rb, line 516 def update!(**args) @context = args[:context] if args.key?(:context) @labels = args[:labels] if args.key?(:labels) end