Class: Google::Apis::MigrationcenterV1::ImportJob

Inherits:
Object
  • Object
show all
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

A resource that represents the background job that imports asset frames.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ImportJob

Returns a new instance of ImportJob.



2154
2155
2156
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 2154

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#asset_sourceString

Required. Reference to a source. Corresponds to the JSON property assetSource

Returns:

  • (String)


2107
2108
2109
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 2107

def asset_source
  @asset_source
end

#complete_timeString

Output only. The timestamp when the import job was completed. Corresponds to the JSON property completeTime

Returns:

  • (String)


2112
2113
2114
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 2112

def complete_time
  @complete_time
end

#create_timeString

Output only. The timestamp when the import job was created. Corresponds to the JSON property createTime

Returns:

  • (String)


2117
2118
2119
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 2117

def create_time
  @create_time
end

#display_nameString

Optional. User-friendly display name. Maximum length is 256 characters. Corresponds to the JSON property displayName

Returns:

  • (String)


2122
2123
2124
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 2122

def display_name
  @display_name
end

#execution_reportGoogle::Apis::MigrationcenterV1::ExecutionReport

A resource that reports result of the import job execution. Corresponds to the JSON property executionReport



2127
2128
2129
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 2127

def execution_report
  @execution_report
end

#labelsHash<String,String>

Labels as key value pairs. Corresponds to the JSON property labels

Returns:

  • (Hash<String,String>)


2132
2133
2134
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 2132

def labels
  @labels
end

#nameString

Output only. The full name of the import job. Corresponds to the JSON property name

Returns:

  • (String)


2137
2138
2139
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 2137

def name
  @name
end

#stateString

Output only. The state of the import job. Corresponds to the JSON property state

Returns:

  • (String)


2142
2143
2144
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 2142

def state
  @state
end

#update_timeString

Output only. The timestamp when the import job was last updated. Corresponds to the JSON property updateTime

Returns:

  • (String)


2147
2148
2149
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 2147

def update_time
  @update_time
end

#validation_reportGoogle::Apis::MigrationcenterV1::ValidationReport

A resource that aggregates errors across import job files. Corresponds to the JSON property validationReport



2152
2153
2154
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 2152

def validation_report
  @validation_report
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 2159

def update!(**args)
  @asset_source = args[:asset_source] if args.key?(:asset_source)
  @complete_time = args[:complete_time] if args.key?(:complete_time)
  @create_time = args[:create_time] if args.key?(:create_time)
  @display_name = args[:display_name] if args.key?(:display_name)
  @execution_report = args[:execution_report] if args.key?(:execution_report)
  @labels = args[:labels] if args.key?(:labels)
  @name = args[:name] if args.key?(:name)
  @state = args[:state] if args.key?(:state)
  @update_time = args[:update_time] if args.key?(:update_time)
  @validation_report = args[:validation_report] if args.key?(:validation_report)
end