Class: Google::Apis::MigrationcenterV1::DatabaseObjects
- Inherits:
-
Object
- Object
- Google::Apis::MigrationcenterV1::DatabaseObjects
- 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
Details of a group of database objects.
Instance Attribute Summary collapse
-
#category ⇒ String
Optional.
-
#count ⇒ Fixnum
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DatabaseObjects
constructor
A new instance of DatabaseObjects.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DatabaseObjects
Returns a new instance of DatabaseObjects.
1764 1765 1766 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 1764 def initialize(**args) update!(**args) end |
Instance Attribute Details
#category ⇒ String
Optional. The category of the objects.
Corresponds to the JSON property category
1757 1758 1759 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 1757 def category @category end |
#count ⇒ Fixnum
Optional. The number of objects.
Corresponds to the JSON property count
1762 1763 1764 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 1762 def count @count end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1769 1770 1771 1772 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 1769 def update!(**args) @category = args[:category] if args.key?(:category) @count = args[:count] if args.key?(:count) end |