Class: Google::Apis::ClouddebuggerV2::GerritSourceContext

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

Overview

A SourceContext referring to a Gerrit project.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GerritSourceContext

Returns a new instance of GerritSourceContext.



510
511
512
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 510

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

Instance Attribute Details

#alias_contextGoogle::Apis::ClouddebuggerV2::AliasContext

An alias to a repo revision. Corresponds to the JSON property aliasContext



487
488
489
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 487

def alias_context
  @alias_context
end

#alias_nameString

The name of an alias (branch, tag, etc.). Corresponds to the JSON property aliasName

Returns:

  • (String)


492
493
494
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 492

def alias_name
  @alias_name
end

#gerrit_projectString

The full project name within the host. Projects may be nested, so "project/ subproject" is a valid project name. The "repo name" is hostURI/project. Corresponds to the JSON property gerritProject

Returns:

  • (String)


498
499
500
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 498

def gerrit_project
  @gerrit_project
end

#host_uriString

The URI of a running Gerrit instance. Corresponds to the JSON property hostUri

Returns:

  • (String)


503
504
505
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 503

def host_uri
  @host_uri
end

#revision_idString

A revision (commit) ID. Corresponds to the JSON property revisionId

Returns:

  • (String)


508
509
510
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 508

def revision_id
  @revision_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



515
516
517
518
519
520
521
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 515

def update!(**args)
  @alias_context = args[:alias_context] if args.key?(:alias_context)
  @alias_name = args[:alias_name] if args.key?(:alias_name)
  @gerrit_project = args[:gerrit_project] if args.key?(:gerrit_project)
  @host_uri = args[:host_uri] if args.key?(:host_uri)
  @revision_id = args[:revision_id] if args.key?(:revision_id)
end