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

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GerritSourceContext

Returns a new instance of GerritSourceContext.



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

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



478
479
480
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 478

def alias_context
  @alias_context
end

#alias_nameString

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

Returns:

  • (String)


483
484
485
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 483

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)


490
491
492
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 490

def gerrit_project
  @gerrit_project
end

#host_uriString

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

Returns:

  • (String)


495
496
497
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 495

def host_uri
  @host_uri
end

#revision_idString

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

Returns:

  • (String)


500
501
502
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 500

def revision_id
  @revision_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



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

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