Class: Google::Apis::DatamigrationV1::ConversionWorkspaceInfo
- Inherits:
-
Object
- Object
- Google::Apis::DatamigrationV1::ConversionWorkspaceInfo
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/datamigration_v1/classes.rb,
lib/google/apis/datamigration_v1/representations.rb,
lib/google/apis/datamigration_v1/representations.rb
Overview
A conversion workspace's version.
Instance Attribute Summary collapse
-
#commit_id ⇒ String
The commit ID of the conversion workspace.
-
#name ⇒ String
The resource name (URI) of the conversion workspace.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ConversionWorkspaceInfo
constructor
A new instance of ConversionWorkspaceInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ConversionWorkspaceInfo
Returns a new instance of ConversionWorkspaceInfo.
1211 1212 1213 |
# File 'lib/google/apis/datamigration_v1/classes.rb', line 1211 def initialize(**args) update!(**args) end |
Instance Attribute Details
#commit_id ⇒ String
The commit ID of the conversion workspace.
Corresponds to the JSON property commitId
1204 1205 1206 |
# File 'lib/google/apis/datamigration_v1/classes.rb', line 1204 def commit_id @commit_id end |
#name ⇒ String
The resource name (URI) of the conversion workspace.
Corresponds to the JSON property name
1209 1210 1211 |
# File 'lib/google/apis/datamigration_v1/classes.rb', line 1209 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1216 1217 1218 1219 |
# File 'lib/google/apis/datamigration_v1/classes.rb', line 1216 def update!(**args) @commit_id = args[:commit_id] if args.key?(:commit_id) @name = args[:name] if args.key?(:name) end |