Class: Google::Apis::ContaineranalysisV1alpha1::GoogleDevtoolsContaineranalysisV1alpha1ProjectRepoId

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleDevtoolsContaineranalysisV1alpha1ProjectRepoId

Returns a new instance of GoogleDevtoolsContaineranalysisV1alpha1ProjectRepoId.



3995
3996
3997
# File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 3995

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

Instance Attribute Details

#project_idString

The ID of the project. Corresponds to the JSON property projectId

Returns:

  • (String)


3988
3989
3990
# File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 3988

def project_id
  @project_id
end

#repo_nameString

The name of the repo. Leave empty for the default repo. Corresponds to the JSON property repoName

Returns:

  • (String)


3993
3994
3995
# File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 3993

def repo_name
  @repo_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4000
4001
4002
4003
# File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 4000

def update!(**args)
  @project_id = args[:project_id] if args.key?(:project_id)
  @repo_name = args[:repo_name] if args.key?(:repo_name)
end