Class: Google::Apis::ClouddebuggerV2::CloudWorkspaceSourceContext
- Inherits:
-
Object
- Object
- Google::Apis::ClouddebuggerV2::CloudWorkspaceSourceContext
- 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 CloudWorkspaceSourceContext denotes a workspace at a particular snapshot.
Instance Attribute Summary collapse
-
#snapshot_id ⇒ String
The ID of the snapshot.
-
#workspace_id ⇒ Google::Apis::ClouddebuggerV2::CloudWorkspaceId
A CloudWorkspaceId is a unique identifier for a cloud workspace.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CloudWorkspaceSourceContext
constructor
A new instance of CloudWorkspaceSourceContext.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CloudWorkspaceSourceContext
Returns a new instance of CloudWorkspaceSourceContext.
289 290 291 |
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 289 def initialize(**args) update!(**args) end |
Instance Attribute Details
#snapshot_id ⇒ String
The ID of the snapshot. An empty snapshot_id refers to the most recent
snapshot.
Corresponds to the JSON property snapshotId
280 281 282 |
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 280 def snapshot_id @snapshot_id end |
#workspace_id ⇒ Google::Apis::ClouddebuggerV2::CloudWorkspaceId
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.
Corresponds to the JSON property workspaceId
287 288 289 |
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 287 def workspace_id @workspace_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
294 295 296 297 |
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 294 def update!(**args) @snapshot_id = args[:snapshot_id] if args.key?(:snapshot_id) @workspace_id = args[:workspace_id] if args.key?(:workspace_id) end |