Class: Google::Apis::ClouddebuggerV2::CloudWorkspaceId

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

A CloudWorkspaceId is a unique identifier for a cloud workspace. A cloud workspace is a place associated with a repo where modified files can be stored before they are committed.

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) ⇒ CloudWorkspaceId

Returns a new instance of CloudWorkspaceId



129
130
131
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 129

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

Instance Attribute Details

#nameString

The unique name of the workspace within the repo. This is the name chosen by the client in the Source API's CreateWorkspace method. Corresponds to the JSON property name

Returns:

  • (String)


122
123
124
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 122

def name
  @name
end

#repo_idGoogle::Apis::ClouddebuggerV2::RepoId

A unique identifier for a cloud repo. Corresponds to the JSON property repoId



127
128
129
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 127

def repo_id
  @repo_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



134
135
136
137
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 134

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