Struct google_servicecontrol1::StartReconciliationResponse[][src]

pub struct StartReconciliationResponse {
    pub service_config_id: Option<String>,
    pub quota_metrics: Option<Vec<MetricValueSet>>,
    pub reconciliation_errors: Option<Vec<QuotaError>>,
    pub operation_id: Option<String>,
}

Response message for QuotaController.StartReconciliation.

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

ID of the actual config used to process the request.

Metric values as tracked by One Platform before the start of reconciliation. The following metrics will be included:

  1. Per quota metric total usage will be specified using the following gauge metric: "serviceruntime.googleapis.com/allocation/consumer/quota_used_count"

  2. Value for each quota limit associated with the metrics will be specified using the following gauge metric: "serviceruntime.googleapis.com/quota/limit"

Indicates the decision of the reconciliation start.

The same operation_id value used in the StartReconciliationRequest. Used for logging and diagnostics purposes.

Trait Implementations

impl Default for StartReconciliationResponse
[src]

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

impl Clone for StartReconciliationResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for StartReconciliationResponse
[src]

Formats the value using the given formatter. Read more

impl ResponseResult for StartReconciliationResponse
[src]

Auto Trait Implementations