Struct google_servicecontrol1::EndReconciliationResponse[][src]

pub struct EndReconciliationResponse {
    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.EndReconciliation.

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 adjustment was made. 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"

  3. Delta value of the usage after the reconciliation for limits associated with the metrics will be specified using the following metric: "serviceruntime.googleapis.com/allocation/reconciliation_delta" The delta value is defined as: new_usage_from_client - existing_value_in_spanner. This metric is not defined in serviceruntime.yaml or in Cloud Monarch. This metric is meant for callers' use only. Since this metric is not defined in the monitoring backend, reporting on this metric will result in an error.

Indicates the decision of the reconciliation end.

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

Trait Implementations

impl Default for EndReconciliationResponse
[src]

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

impl Clone for EndReconciliationResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for EndReconciliationResponse
[src]

Formats the value using the given formatter. Read more

impl ResponseResult for EndReconciliationResponse
[src]

Auto Trait Implementations