Class: Google::Apis::DatamigrationV1::ImportRulesJobDetails
- Inherits:
-
Object
- Object
- Google::Apis::DatamigrationV1::ImportRulesJobDetails
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/datamigration_v1/classes.rb,
lib/google/apis/datamigration_v1/representations.rb,
lib/google/apis/datamigration_v1/representations.rb
Overview
Details regarding an Import Rules background job.
Instance Attribute Summary collapse
-
#file_format ⇒ String
The requested file format.
-
#files ⇒ Array<String>
File names used for the import rules job.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ImportRulesJobDetails
constructor
A new instance of ImportRulesJobDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ImportRulesJobDetails
Returns a new instance of ImportRulesJobDetails.
1708 1709 1710 |
# File 'lib/google/apis/datamigration_v1/classes.rb', line 1708 def initialize(**args) update!(**args) end |
Instance Attribute Details
#file_format ⇒ String
The requested file format.
Corresponds to the JSON property fileFormat
1701 1702 1703 |
# File 'lib/google/apis/datamigration_v1/classes.rb', line 1701 def file_format @file_format end |
#files ⇒ Array<String>
File names used for the import rules job.
Corresponds to the JSON property files
1706 1707 1708 |
# File 'lib/google/apis/datamigration_v1/classes.rb', line 1706 def files @files end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1713 1714 1715 1716 |
# File 'lib/google/apis/datamigration_v1/classes.rb', line 1713 def update!(**args) @file_format = args[:file_format] if args.key?(:file_format) @files = args[:files] if args.key?(:files) end |