Class: Google::Apis::MigrationcenterV1::DatabaseDetailsParentDatabaseDeployment
- Inherits:
-
Object
- Object
- Google::Apis::MigrationcenterV1::DatabaseDetailsParentDatabaseDeployment
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/migrationcenter_v1/classes.rb,
lib/google/apis/migrationcenter_v1/representations.rb,
lib/google/apis/migrationcenter_v1/representations.rb
Overview
The identifiers of the parent database deployment.
Instance Attribute Summary collapse
-
#generated_id ⇒ String
Optional.
-
#manual_unique_id ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DatabaseDetailsParentDatabaseDeployment
constructor
A new instance of DatabaseDetailsParentDatabaseDeployment.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DatabaseDetailsParentDatabaseDeployment
Returns a new instance of DatabaseDetailsParentDatabaseDeployment.
1321 1322 1323 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 1321 def initialize(**args) update!(**args) end |
Instance Attribute Details
#generated_id ⇒ String
Optional. The parent database deployment generated ID.
Corresponds to the JSON property generatedId
1313 1314 1315 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 1313 def generated_id @generated_id end |
#manual_unique_id ⇒ String
Optional. The parent database deployment optional manual unique ID set by the
user.
Corresponds to the JSON property manualUniqueId
1319 1320 1321 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 1319 def manual_unique_id @manual_unique_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1326 1327 1328 1329 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 1326 def update!(**args) @generated_id = args[:generated_id] if args.key?(:generated_id) @manual_unique_id = args[:manual_unique_id] if args.key?(:manual_unique_id) end |