class Google::Apis::VmmigrationV1::Group
Describes message for ‘Group’ resource. The Group
is a collections of several MigratingVms.
Attributes
create_time[RW]
Output only. The create time timestamp. Corresponds to the JSON property ‘createTime` @return [String]
description[RW]
User-provided description of the group. Corresponds to the JSON property ‘description` @return [String]
display_name[RW]
Display name is a user defined name for this group which can be updated. Corresponds to the JSON property ‘displayName` @return [String]
name[RW]
Output only. The Group
name. Corresponds to the JSON property ‘name` @return [String]
update_time[RW]
Output only. The update time timestamp. Corresponds to the JSON property ‘updateTime` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/vmmigration_v1/classes.rb, line 818 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/vmmigration_v1/classes.rb, line 823 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @description = args[:description] if args.key?(:description) @display_name = args[:display_name] if args.key?(:display_name) @name = args[:name] if args.key?(:name) @update_time = args[:update_time] if args.key?(:update_time) end