Class: Google::Apis::ContaineranalysisV1alpha1::GoogleDevtoolsContaineranalysisV1alpha1GerritSourceContext
- Inherits:
-
Object
- Object
- Google::Apis::ContaineranalysisV1alpha1::GoogleDevtoolsContaineranalysisV1alpha1GerritSourceContext
- 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
-
#alias_context ⇒ Google::Apis::ContaineranalysisV1alpha1::GoogleDevtoolsContaineranalysisV1alpha1AliasContext
An alias to a repo revision.
-
#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) ⇒ GoogleDevtoolsContaineranalysisV1alpha1GerritSourceContext
constructor
A new instance of GoogleDevtoolsContaineranalysisV1alpha1GerritSourceContext.
-
#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) ⇒ GoogleDevtoolsContaineranalysisV1alpha1GerritSourceContext
Returns a new instance of GoogleDevtoolsContaineranalysisV1alpha1GerritSourceContext
1234 1235 1236 |
# File 'generated/google/apis/containeranalysis_v1alpha1/classes.rb', line 1234 def initialize(**args) update!(**args) end |
Instance Attribute Details
#alias_context ⇒ Google::Apis::ContaineranalysisV1alpha1::GoogleDevtoolsContaineranalysisV1alpha1AliasContext
An alias to a repo revision.
Corresponds to the JSON property aliasContext
1215 1216 1217 |
# File 'generated/google/apis/containeranalysis_v1alpha1/classes.rb', line 1215 def alias_context @alias_context 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
the hostURI/project.
Corresponds to the JSON property gerritProject
1222 1223 1224 |
# File 'generated/google/apis/containeranalysis_v1alpha1/classes.rb', line 1222 def gerrit_project @gerrit_project end |
#host_uri ⇒ String
The URI of a running Gerrit instance.
Corresponds to the JSON property hostUri
1227 1228 1229 |
# File 'generated/google/apis/containeranalysis_v1alpha1/classes.rb', line 1227 def host_uri @host_uri end |
#revision_id ⇒ String
A revision (commit) ID.
Corresponds to the JSON property revisionId
1232 1233 1234 |
# File 'generated/google/apis/containeranalysis_v1alpha1/classes.rb', line 1232 def revision_id @revision_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1239 1240 1241 1242 1243 1244 |
# File 'generated/google/apis/containeranalysis_v1alpha1/classes.rb', line 1239 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 |