Class: Google::Apis::ClouddebuggerV2::ProjectRepoId
- Inherits:
-
Object
- Object
- Google::Apis::ClouddebuggerV2::ProjectRepoId
- 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
-
#project_id ⇒ String
The ID of the project.
-
#repo_name ⇒ String
The name of the repo.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ProjectRepoId
constructor
A new instance of ProjectRepoId.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ ProjectRepoId
Returns a new instance of ProjectRepoId
1034 1035 1036 |
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 1034 def initialize(**args) update!(**args) end |
Instance Attribute Details
#project_id ⇒ String
The ID of the project.
Corresponds to the JSON property projectId
1027 1028 1029 |
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 1027 def project_id @project_id end |
#repo_name ⇒ String
The name of the repo. Leave empty for the default repo.
Corresponds to the JSON property repoName
1032 1033 1034 |
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 1032 def repo_name @repo_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1039 1040 1041 1042 |
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 1039 def update!(**args) @project_id = args[:project_id] if args.key?(:project_id) @repo_name = args[:repo_name] if args.key?(:repo_name) end |