Struct google_servicecontrol1::ReportRequest[][src]

pub struct ReportRequest {
    pub operations: Option<Vec<Operation>>,
    pub service_config_id: Option<String>,
}

Request message for the Report method.

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

Operations to be reported.

Typically the service should report one operation per request. Putting multiple operations into a single request is allowed, but should be used only when multiple operations are natually available at the time of the report.

If multiple operations are in a single request, the total request size should be no larger than 1MB. See ReportResponse.report_errors for partial failure behavior.

Specifies which version of service config should be used to process the request.

If unspecified or no matching version can be found, the latest one will be used.

Trait Implementations

impl Default for ReportRequest
[src]

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

impl Clone for ReportRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ReportRequest
[src]

Formats the value using the given formatter. Read more

impl RequestValue for ReportRequest
[src]

Auto Trait Implementations