@@ -2858,6 +2858,12 @@ class MigrationJob
28582858 # @return [String]
28592859 attr_accessor :dump_path
28602860
2861+ # Optional. The type of the data dump. Supported for MySQL to CloudSQL for MySQL
2862+ # migrations only.
2863+ # Corresponds to the JSON property `dumpType`
2864+ # @return [String]
2865+ attr_accessor :dump_type
2866+
28612867 # Output only. The duration of the migration job (in seconds). A duration in
28622868 # seconds with up to nine fractional digits, terminated by 's'. Example: "3.5s".
28632869 # Corresponds to the JSON property `duration`
@@ -2982,6 +2988,7 @@ def update!(**args)
29822988 @display_name = args [ :display_name ] if args . key? ( :display_name )
29832989 @dump_flags = args [ :dump_flags ] if args . key? ( :dump_flags )
29842990 @dump_path = args [ :dump_path ] if args . key? ( :dump_path )
2991+ @dump_type = args [ :dump_type ] if args . key? ( :dump_type )
29852992 @duration = args [ :duration ] if args . key? ( :duration )
29862993 @end_time = args [ :end_time ] if args . key? ( :end_time )
29872994 @error = args [ :error ] if args . key? ( :error )
@@ -3819,12 +3826,20 @@ def update!(**args)
38193826 class ResumeMigrationJobRequest
38203827 include Google ::Apis ::Core ::Hashable
38213828
3829+ # Optional. Resume the migration job without running prior configuration
3830+ # verification. Defaults to `false`.
3831+ # Corresponds to the JSON property `skipValidation`
3832+ # @return [Boolean]
3833+ attr_accessor :skip_validation
3834+ alias_method :skip_validation? , :skip_validation
3835+
38223836 def initialize ( **args )
38233837 update! ( **args )
38243838 end
38253839
38263840 # Update properties of this object
38273841 def update! ( **args )
3842+ @skip_validation = args [ :skip_validation ] if args . key? ( :skip_validation )
38283843 end
38293844 end
38303845
0 commit comments