class Google::Apis::ClouddebuggerV2::ProjectRepoId

Selects a repo using a Google Cloud Platform project ID (e.g. winged-cargo-31) and a repo name within that project.

Attributes

project_id[RW]

The ID of the project. Corresponds to the JSON property `projectId` @return [String]

repo_name[RW]

The name of the repo. Leave empty for the default repo. Corresponds to the JSON property `repoName` @return [String]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/clouddebugger_v2/classes.rb, line 333
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/clouddebugger_v2/classes.rb, line 338
def update!(**args)
  @project_id = args[:project_id] if args.key?(:project_id)
  @repo_name = args[:repo_name] if args.key?(:repo_name)
end