Struct google_genomics1::ExportReadGroupSetRequest[][src]

pub struct ExportReadGroupSetRequest {
    pub project_id: Option<String>,
    pub reference_names: Option<Vec<String>>,
    pub export_uri: Option<String>,
}

The read group set export request.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

Required. The Google Cloud project ID that owns this export. The caller must have WRITE access to this project.

The reference names to export. If this is not specified, all reference sequences, including unmapped reads, are exported. Use * to export only unmapped reads.

Required. A Google Cloud Storage URI for the exported BAM file. The currently authenticated user must have write access to the new file. An error will be returned if the URI already contains data.

Trait Implementations

impl Default for ExportReadGroupSetRequest
[src]

Returns the "default value" for a type. Read more

impl Clone for ExportReadGroupSetRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ExportReadGroupSetRequest
[src]

Formats the value using the given formatter. Read more

impl RequestValue for ExportReadGroupSetRequest
[src]

Auto Trait Implementations