Class: Google::Apis::ServicecontrolV1::StartReconciliationResponse
- Inherits:
-
Object
- Object
- Google::Apis::ServicecontrolV1::StartReconciliationResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/servicecontrol_v1/classes.rb,
generated/google/apis/servicecontrol_v1/representations.rb,
generated/google/apis/servicecontrol_v1/representations.rb
Overview
Response message for QuotaController.StartReconciliation.
Instance Attribute Summary collapse
-
#operation_id ⇒ String
The same operation_id value used in the StartReconciliationRequest.
-
#quota_metrics ⇒ Array<Google::Apis::ServicecontrolV1::MetricValueSet>
Metric values as tracked by One Platform before the start of reconciliation.
-
#reconciliation_errors ⇒ Array<Google::Apis::ServicecontrolV1::QuotaError>
Indicates the decision of the reconciliation start.
-
#service_config_id ⇒ String
ID of the actual config used to process the request.
Instance Method Summary collapse
-
#initialize(**args) ⇒ StartReconciliationResponse
constructor
A new instance of StartReconciliationResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ StartReconciliationResponse
Returns a new instance of StartReconciliationResponse
1992 1993 1994 |
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1992 def initialize(**args) update!(**args) end |
Instance Attribute Details
#operation_id ⇒ String
The same operation_id value used in the StartReconciliationRequest. Used
for logging and diagnostics purposes.
Corresponds to the JSON property operationId
1968 1969 1970 |
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1968 def operation_id @operation_id end |
#quota_metrics ⇒ Array<Google::Apis::ServicecontrolV1::MetricValueSet>
Metric values as tracked by One Platform before the start of reconciliation. The following metrics will be included:
- Per quota metric total usage will be specified using the following gauge metric: "serviceruntime.googleapis.com/allocation/consumer/quota_used_count"
- Value for each quota limit associated with the metrics will be specified
using the following gauge metric:
"serviceruntime.googleapis.com/quota/limit"
Corresponds to the JSON property
quotaMetrics
1980 1981 1982 |
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1980 def quota_metrics @quota_metrics end |
#reconciliation_errors ⇒ Array<Google::Apis::ServicecontrolV1::QuotaError>
Indicates the decision of the reconciliation start.
Corresponds to the JSON property reconciliationErrors
1985 1986 1987 |
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1985 def reconciliation_errors @reconciliation_errors end |
#service_config_id ⇒ String
ID of the actual config used to process the request.
Corresponds to the JSON property serviceConfigId
1990 1991 1992 |
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1990 def service_config_id @service_config_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1997 1998 1999 2000 2001 2002 |
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1997 def update!(**args) @operation_id = args[:operation_id] if args.key?(:operation_id) @quota_metrics = args[:quota_metrics] if args.key?(:quota_metrics) @reconciliation_errors = args[:reconciliation_errors] if args.key?(:reconciliation_errors) @service_config_id = args[:service_config_id] if args.key?(:service_config_id) end |