Class: Google::Apis::OndemandscanningV1beta1::ProjectRepoId

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

Returns a new instance of ProjectRepoId.



1282
1283
1284
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 1282

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

Instance Attribute Details

#project_idString

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

Returns:

  • (String)


1275
1276
1277
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 1275

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)


1280
1281
1282
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 1280

def repo_name
  @repo_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1287
1288
1289
1290
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 1287

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