class Google::Apis::ApigeeV1::GoogleCloudApigeeV1Export
Details of an export job.
Attributes
Output only. Time the export job was created. Corresponds to the JSON property `created` @return [String]
Name of the datastore that is the destination of the export job [datastore] Corresponds to the JSON property `datastoreName` @return [String]
Description of the export job. Corresponds to the JSON property `description` @return [String]
Output only. Error is set when export fails Corresponds to the JSON property `error` @return [String]
Output only. Execution time for this export job. If the job is still in progress, it will be set to the amount of time that has elapsed since`created`, in seconds. Else, it will set to (`updated` - `created`), in seconds. Corresponds to the JSON property `executionTime` @return [String]
Display name of the export job. Corresponds to the JSON property `name` @return [String]
Output only. Self link of the export job. A URI that can be used to retrieve the status of an export job. Example: `/organizations/myorg/environments/myenv/ analytics/exports/9cfc0d85-0f30-46d6-ae6f-318d0cb961bd` Corresponds to the JSON property `self` @return [String]
Output only. Status of the export job. Valid values include `enqueued`, ` running`, `completed`, and `failed`. Corresponds to the JSON property `state` @return [String]
Output only. Time the export job was last updated. Corresponds to the JSON property `updated` @return [String]
Public Class Methods
# File lib/google/apis/apigee_v1/classes.rb, line 3281 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/apigee_v1/classes.rb, line 3286 def update!(**args) @created = args[:created] if args.key?(:created) @datastore_name = args[:datastore_name] if args.key?(:datastore_name) @description = args[:description] if args.key?(:description) @error = args[:error] if args.key?(:error) @execution_time = args[:execution_time] if args.key?(:execution_time) @name = args[:name] if args.key?(:name) @self = args[:self] if args.key?(:self) @state = args[:state] if args.key?(:state) @updated = args[:updated] if args.key?(:updated) end