Class: Google::Apis::MigrationcenterV1alpha1::ReportExportJob

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

Report export job message.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ReportExportJob

Returns a new instance of ReportExportJob.



7231
7232
7233
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 7231

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

Instance Attribute Details

#nameString

Output only. Identifier. Resource name. Corresponds to the JSON property name

Returns:

  • (String)


7219
7220
7221
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 7219

def name
  @name
end

#recent_executionsArray<Google::Apis::MigrationcenterV1alpha1::ReportExportExecution>

Output only. Recent not expired executions of the export report job. Corresponds to the JSON property recentExecutions



7224
7225
7226
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 7224

def recent_executions
  @recent_executions
end

#signed_uri_destinationGoogle::Apis::MigrationcenterV1alpha1::SignedUriDestination

Signed URI destination configuration. Corresponds to the JSON property signedUriDestination



7229
7230
7231
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 7229

def signed_uri_destination
  @signed_uri_destination
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7236
7237
7238
7239
7240
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 7236

def update!(**args)
  @name = args[:name] if args.key?(:name)
  @recent_executions = args[:recent_executions] if args.key?(:recent_executions)
  @signed_uri_destination = args[:signed_uri_destination] if args.key?(:signed_uri_destination)
end