Class: Google::Apis::MigrationcenterV1alpha1::DatabaseObjects
- Inherits:
-
Object
- Object
- Google::Apis::MigrationcenterV1alpha1::DatabaseObjects
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/migrationcenter_v1alpha1/classes.rb,
lib/google/apis/migrationcenter_v1alpha1/representations.rb,
lib/google/apis/migrationcenter_v1alpha1/representations.rb
Overview
Details of a group of database objects.
Instance Attribute Summary collapse
-
#category ⇒ String
The category of the objects.
-
#count ⇒ Fixnum
The number of objects.
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.
2468 2469 2470 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2468 def initialize(**args) update!(**args) end |
Instance Attribute Details
#category ⇒ String
The category of the objects.
Corresponds to the JSON property category
2461 2462 2463 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2461 def category @category end |
#count ⇒ Fixnum
The number of objects.
Corresponds to the JSON property count
2466 2467 2468 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2466 def count @count end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2473 2474 2475 2476 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2473 def update!(**args) @category = args[:category] if args.key?(:category) @count = args[:count] if args.key?(:count) end |