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.



6886
6887
6888
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 6886

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

Instance Attribute Details

#nameString

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

Returns:

  • (String)


6874
6875
6876
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 6874

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



6879
6880
6881
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 6879

def recent_executions
  @recent_executions
end

#signed_uri_destinationGoogle::Apis::MigrationcenterV1alpha1::SignedUriDestination

Signed URI destination configuration. Corresponds to the JSON property signedUriDestination



6884
6885
6886
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 6884

def signed_uri_destination
  @signed_uri_destination
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6891
6892
6893
6894
6895
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 6891

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