Class: Google::Apis::MigrationcenterV1::OpenFileDetails
- Inherits:
-
Object
- Object
- Google::Apis::MigrationcenterV1::OpenFileDetails
- 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
Open file Information.
Instance Attribute Summary collapse
-
#command ⇒ String
Opened file command.
-
#file_path ⇒ String
Opened file file path.
-
#file_type ⇒ String
Opened file file type.
-
#user ⇒ String
Opened file user.
Instance Method Summary collapse
-
#initialize(**args) ⇒ OpenFileDetails
constructor
A new instance of OpenFileDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ OpenFileDetails
Returns a new instance of OpenFileDetails.
3981 3982 3983 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 3981 def initialize(**args) update!(**args) end |
Instance Attribute Details
#command ⇒ String
Opened file command.
Corresponds to the JSON property command
3964 3965 3966 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 3964 def command @command end |
#file_path ⇒ String
Opened file file path.
Corresponds to the JSON property filePath
3969 3970 3971 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 3969 def file_path @file_path end |
#file_type ⇒ String
Opened file file type.
Corresponds to the JSON property fileType
3974 3975 3976 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 3974 def file_type @file_type end |
#user ⇒ String
Opened file user.
Corresponds to the JSON property user
3979 3980 3981 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 3979 def user @user end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3986 3987 3988 3989 3990 3991 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 3986 def update!(**args) @command = args[:command] if args.key?(:command) @file_path = args[:file_path] if args.key?(:file_path) @file_type = args[:file_type] if args.key?(:file_type) @user = args[:user] if args.key?(:user) end |