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



1066
1067
1068
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 1066

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



1064
1065
1066
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 1064

def alias_context
  @alias_context
end

#alias_nameString

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

Returns:

  • (String)


1052
1053
1054
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 1052

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)


1059
1060
1061
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 1059

def gerrit_project
  @gerrit_project
end

#host_uriString

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

Returns:

  • (String)


1042
1043
1044
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 1042

def host_uri
  @host_uri
end

#revision_idString

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

Returns:

  • (String)


1047
1048
1049
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 1047

def revision_id
  @revision_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1071
1072
1073
1074
1075
1076
1077
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 1071

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