Class: Google::Apis::ContaineranalysisV1alpha1::GoogleDevtoolsContaineranalysisV1alpha1ProjectRepoId
- Inherits:
-
Object
- Object
- Google::Apis::ContaineranalysisV1alpha1::GoogleDevtoolsContaineranalysisV1alpha1ProjectRepoId
- 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
Selects a repo using a Google Cloud Platform project ID (e.g., winged-cargo-31) and a repo name within that project.
Instance Attribute Summary collapse
-
#project_id ⇒ String
The ID of the project.
-
#repo_name ⇒ String
The name of the repo.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleDevtoolsContaineranalysisV1alpha1ProjectRepoId
constructor
A new instance of GoogleDevtoolsContaineranalysisV1alpha1ProjectRepoId.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleDevtoolsContaineranalysisV1alpha1ProjectRepoId
Returns a new instance of GoogleDevtoolsContaineranalysisV1alpha1ProjectRepoId.
1214 1215 1216 |
# File 'generated/google/apis/containeranalysis_v1alpha1/classes.rb', line 1214 def initialize(**args) update!(**args) end |
Instance Attribute Details
#project_id ⇒ String
The ID of the project.
Corresponds to the JSON property projectId
1207 1208 1209 |
# File 'generated/google/apis/containeranalysis_v1alpha1/classes.rb', line 1207 def project_id @project_id end |
#repo_name ⇒ String
The name of the repo. Leave empty for the default repo.
Corresponds to the JSON property repoName
1212 1213 1214 |
# File 'generated/google/apis/containeranalysis_v1alpha1/classes.rb', line 1212 def repo_name @repo_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1219 1220 1221 1222 |
# File 'generated/google/apis/containeranalysis_v1alpha1/classes.rb', line 1219 def update!(**args) @project_id = args[:project_id] if args.key?(:project_id) @repo_name = args[:repo_name] if args.key?(:repo_name) end |