Class: Google::Apis::MigrationcenterV1alpha1::OpenFileDetails
- Inherits:
-
Object
- Object
- Google::Apis::MigrationcenterV1alpha1::OpenFileDetails
- 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
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.
4881 4882 4883 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 4881 def initialize(**args) update!(**args) end |
Instance Attribute Details
#command ⇒ String
Opened file command.
Corresponds to the JSON property command
4864 4865 4866 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 4864 def command @command end |
#file_path ⇒ String
Opened file file path.
Corresponds to the JSON property filePath
4869 4870 4871 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 4869 def file_path @file_path end |
#file_type ⇒ String
Opened file file type.
Corresponds to the JSON property fileType
4874 4875 4876 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 4874 def file_type @file_type end |
#user ⇒ String
Opened file user.
Corresponds to the JSON property user
4879 4880 4881 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 4879 def user @user end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4886 4887 4888 4889 4890 4891 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 4886 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 |