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.
6886 6887 6888 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 6886 def initialize(**args) update!(**args) end |
Instance Attribute Details
#name ⇒ String
Output only. Identifier. Resource name.
Corresponds to the JSON property name
6874 6875 6876 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 6874 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
6879 6880 6881 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 6879 def recent_executions @recent_executions end |
#signed_uri_destination ⇒ Google::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 |