Class: Google::Apis::ContaineranalysisV1beta1::GerritSourceContext

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/containeranalysis_v1beta1/classes.rb,
generated/google/apis/containeranalysis_v1beta1/representations.rb,
generated/google/apis/containeranalysis_v1beta1/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.



1272
1273
1274
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 1272

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

Instance Attribute Details

#alias_contextGoogle::Apis::ContaineranalysisV1beta1::AliasContext

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



1253
1254
1255
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 1253

def alias_context
  @alias_context
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 the hostURI/project. Corresponds to the JSON property gerritProject

Returns:

  • (String)


1260
1261
1262
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 1260

def gerrit_project
  @gerrit_project
end

#host_uriString

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

Returns:

  • (String)


1265
1266
1267
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 1265

def host_uri
  @host_uri
end

#revision_idString

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

Returns:

  • (String)


1270
1271
1272
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 1270

def revision_id
  @revision_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1277
1278
1279
1280
1281
1282
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 1277

def update!(**args)
  @alias_context = args[:alias_context] if args.key?(:alias_context)
  @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