Class: Google::Apis::ClouddebuggerV2::GerritSourceContext
- Inherits:
-
Object
- Object
- Google::Apis::ClouddebuggerV2::GerritSourceContext
- 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
-
#alias_context ⇒ Google::Apis::ClouddebuggerV2::AliasContext
An alias to a repo revision.
-
#alias_name ⇒ String
The name of an alias (branch, tag, etc.).
-
#gerrit_project ⇒ String
The full project name within the host.
-
#host_uri ⇒ String
The URI of a running Gerrit instance.
-
#revision_id ⇒ String
A revision (commit) ID.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GerritSourceContext
constructor
A new instance of GerritSourceContext.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ GerritSourceContext
Returns a new instance of GerritSourceContext.
455 456 457 |
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 455 def initialize(**args) update!(**args) end |
Instance Attribute Details
#alias_context ⇒ Google::Apis::ClouddebuggerV2::AliasContext
An alias to a repo revision.
Corresponds to the JSON property aliasContext
453 454 455 |
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 453 def alias_context @alias_context end |
#alias_name ⇒ String
The name of an alias (branch, tag, etc.).
Corresponds to the JSON property aliasName
448 449 450 |
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 448 def alias_name @alias_name end |
#gerrit_project ⇒ String
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
438 439 440 |
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 438 def gerrit_project @gerrit_project end |
#host_uri ⇒ String
The URI of a running Gerrit instance.
Corresponds to the JSON property hostUri
432 433 434 |
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 432 def host_uri @host_uri end |
#revision_id ⇒ String
A revision (commit) ID.
Corresponds to the JSON property revisionId
443 444 445 |
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 443 def revision_id @revision_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
460 461 462 463 464 465 466 |
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 460 def update!(**args) @host_uri = args[:host_uri] if args.key?(:host_uri) @gerrit_project = args[:gerrit_project] if args.key?(:gerrit_project) @revision_id = args[:revision_id] if args.key?(:revision_id) @alias_name = args[:alias_name] if args.key?(:alias_name) @alias_context = args[:alias_context] if args.key?(:alias_context) end |