Class: Google::Apis::ServicecontrolV1::StartReconciliationResponse

Inherits:
Object
  • Object
show all
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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ StartReconciliationResponse

Returns a new instance of StartReconciliationResponse



1563
1564
1565
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1563

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#operation_idString

The same operation_id value used in the StartReconciliationRequest. Used for logging and diagnostics purposes. Corresponds to the JSON property operationId

Returns:

  • (String)


1556
1557
1558
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1556

def operation_id
  @operation_id
end

#quota_metricsArray<Google::Apis::ServicecontrolV1::MetricValueSet>

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" Corresponds to the JSON property quotaMetrics


1550
1551
1552
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1550

def quota_metrics
  @quota_metrics
end

#reconciliation_errorsArray<Google::Apis::ServicecontrolV1::QuotaError>

Indicates the decision of the reconciliation start. Corresponds to the JSON property reconciliationErrors



1561
1562
1563
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1561

def reconciliation_errors
  @reconciliation_errors
end

#service_config_idString

ID of the actual config used to process the request. Corresponds to the JSON property serviceConfigId

Returns:

  • (String)


1538
1539
1540
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1538

def service_config_id
  @service_config_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1568
1569
1570
1571
1572
1573
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1568

def update!(**args)
  @service_config_id = args[:service_config_id] if args.key?(:service_config_id)
  @quota_metrics = args[:quota_metrics] if args.key?(:quota_metrics)
  @operation_id = args[:operation_id] if args.key?(:operation_id)
  @reconciliation_errors = args[:reconciliation_errors] if args.key?(:reconciliation_errors)
end