class Google::Apis::VaultV1::Export
An export. To work with Vault resources, the account must have the [required Vault privileges](support.google.com/vault/answer/2799699) and access to the matter. To access a matter, the account must have created the matter, have the matter shared with them, or have the **View All Matters** privilege.
Attributes
Export
sink for Cloud Storage files. Corresponds to the JSON property `cloudStorageSink` @return [Google::Apis::VaultV1::CloudStorageSink]
Output only. The time when the export was created. Corresponds to the JSON property `createTime` @return [String]
Additional options for exports Corresponds to the JSON property `exportOptions` @return [Google::Apis::VaultV1::ExportOptions]
Output only. The generated export ID. Corresponds to the JSON property `id` @return [String]
Output only. The matter ID. Corresponds to the JSON property `matterId` @return [String]
The export name. Corresponds to the JSON property `name` @return [String]
The query definition used for search and export. Corresponds to the JSON property `query` @return [Google::Apis::VaultV1::Query]
User's information. Corresponds to the JSON property `requester` @return [Google::Apis::VaultV1::UserInfo]
Progress information for an export. Corresponds to the JSON property `stats` @return [Google::Apis::VaultV1::ExportStats]
Output only. The status of the export. Corresponds to the JSON property `status` @return [String]
Public Class Methods
# File lib/google/apis/vault_v1/classes.rb, line 590 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/vault_v1/classes.rb, line 595 def update!(**args) @cloud_storage_sink = args[:cloud_storage_sink] if args.key?(:cloud_storage_sink) @create_time = args[:create_time] if args.key?(:create_time) @export_options = args[:export_options] if args.key?(:export_options) @id = args[:id] if args.key?(:id) @matter_id = args[:matter_id] if args.key?(:matter_id) @name = args[:name] if args.key?(:name) @query = args[:query] if args.key?(:query) @requester = args[:requester] if args.key?(:requester) @stats = args[:stats] if args.key?(:stats) @status = args[:status] if args.key?(:status) end