Class: Google::Apis::MigrationcenterV1alpha1::ReportExportJob
- Inherits:
-
Object
- Object
- Google::Apis::MigrationcenterV1alpha1::ReportExportJob
- 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
-
#name ⇒ String
Output only.
-
#recent_executions ⇒ Array<Google::Apis::MigrationcenterV1alpha1::ReportExportExecution>
Output only.
-
#signed_uri_destination ⇒ Google::Apis::MigrationcenterV1alpha1::SignedUriDestination
Signed URI destination configuration.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ReportExportJob
constructor
A new instance of ReportExportJob.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ReportExportJob
Returns a new instance of ReportExportJob.
7106 7107 7108 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 7106 def initialize(**args) update!(**args) end |
Instance Attribute Details
#name ⇒ String
Output only. Identifier. Resource name.
Corresponds to the JSON property name
7094 7095 7096 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 7094 def name @name end |
#recent_executions ⇒ Array<Google::Apis::MigrationcenterV1alpha1::ReportExportExecution>
Output only. Recent not expired executions of the export report job.
Corresponds to the JSON property recentExecutions
7099 7100 7101 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 7099 def recent_executions @recent_executions end |
#signed_uri_destination ⇒ Google::Apis::MigrationcenterV1alpha1::SignedUriDestination
Signed URI destination configuration.
Corresponds to the JSON property signedUriDestination
7104 7105 7106 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 7104 def signed_uri_destination @signed_uri_destination end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7111 7112 7113 7114 7115 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 7111 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 |