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

cloud_storage_sink[RW]

Export sink for Cloud Storage files. Corresponds to the JSON property `cloudStorageSink` @return [Google::Apis::VaultV1::CloudStorageSink]

create_time[RW]

Output only. The time when the export was created. Corresponds to the JSON property `createTime` @return [String]

export_options[RW]

Additional options for exports Corresponds to the JSON property `exportOptions` @return [Google::Apis::VaultV1::ExportOptions]

id[RW]

Output only. The generated export ID. Corresponds to the JSON property `id` @return [String]

matter_id[RW]

Output only. The matter ID. Corresponds to the JSON property `matterId` @return [String]

name[RW]

The export name. Corresponds to the JSON property `name` @return [String]

query[RW]

The query definition used for search and export. Corresponds to the JSON property `query` @return [Google::Apis::VaultV1::Query]

requester[RW]

User's information. Corresponds to the JSON property `requester` @return [Google::Apis::VaultV1::UserInfo]

stats[RW]

Progress information for an export. Corresponds to the JSON property `stats` @return [Google::Apis::VaultV1::ExportStats]

status[RW]

Output only. The status of the export. Corresponds to the JSON property `status` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/vault_v1/classes.rb, line 590
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

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