Class: Google::Apis::ClouddebuggerV2::ProjectRepoId

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

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ProjectRepoId

Returns a new instance of ProjectRepoId.



664
665
666
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 664

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

Instance Attribute Details

#project_idString

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

Returns:

  • (String)


657
658
659
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 657

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)


662
663
664
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 662

def repo_name
  @repo_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



669
670
671
672
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 669

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