Class: Google::Apis::ContaineranalysisV1alpha1::GoogleDevtoolsContaineranalysisV1alpha1GerritSourceContext

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

Overview

A SourceContext referring to a Gerrit project.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleDevtoolsContaineranalysisV1alpha1GerritSourceContext

Returns a new instance of GoogleDevtoolsContaineranalysisV1alpha1GerritSourceContext.



1134
1135
1136
# File 'generated/google/apis/containeranalysis_v1alpha1/classes.rb', line 1134

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

Instance Attribute Details

#alias_contextGoogle::Apis::ContaineranalysisV1alpha1::GoogleDevtoolsContaineranalysisV1alpha1AliasContext

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



1116
1117
1118
# File 'generated/google/apis/containeranalysis_v1alpha1/classes.rb', line 1116

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)


1122
1123
1124
# File 'generated/google/apis/containeranalysis_v1alpha1/classes.rb', line 1122

def gerrit_project
  @gerrit_project
end

#host_uriString

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

Returns:

  • (String)


1127
1128
1129
# File 'generated/google/apis/containeranalysis_v1alpha1/classes.rb', line 1127

def host_uri
  @host_uri
end

#revision_idString

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

Returns:

  • (String)


1132
1133
1134
# File 'generated/google/apis/containeranalysis_v1alpha1/classes.rb', line 1132

def revision_id
  @revision_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1139
1140
1141
1142
1143
1144
# File 'generated/google/apis/containeranalysis_v1alpha1/classes.rb', line 1139

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