class Google::Apis::ClouddebuggerV2::RepoId

A unique identifier for a cloud repo.

Attributes

project_repo_id[RW]

Selects a repo using a Google Cloud Platform project ID (e.g. winged-cargo-31) and a repo name within that project. Corresponds to the JSON property `projectRepoId` @return [Google::Apis::ClouddebuggerV2::ProjectRepoId]

uid[RW]

A server-assigned, globally unique identifier. Corresponds to the JSON property `uid` @return [String]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/clouddebugger_v2/classes.rb, line 307
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 312
def update!(**args)
  @project_repo_id = args[:project_repo_id] if args.key?(:project_repo_id)
  @uid = args[:uid] if args.key?(:uid)
end