Class: Google::Apis::ServicecontrolV1::ReportResponse
- Inherits:
-
Object
- Object
- Google::Apis::ServicecontrolV1::ReportResponse
- 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 the Report method.
Instance Attribute Summary collapse
-
#report_errors ⇒ Array<Google::Apis::ServicecontrolV1::ReportError>
Partial failures, one for each
Operation
in the request that failed processing. -
#report_infos ⇒ Array<Google::Apis::ServicecontrolV1::ReportInfo>
Quota usage for each quota release
Operation
request. -
#service_config_id ⇒ String
The actual config id used to process the request.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ReportResponse
constructor
A new instance of ReportResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ReportResponse
Returns a new instance of ReportResponse
1553 1554 1555 |
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1553 def initialize(**args) update!(**args) end |
Instance Attribute Details
#report_errors ⇒ Array<Google::Apis::ServicecontrolV1::ReportError>
Partial failures, one for each Operation
in the request that failed
processing. There are three possible combinations of the RPC status:
- The combination of a successful RPC status and an empty
report_errors
list indicates a complete success where allOperations
in the request are processed successfully. - The combination of a successful RPC status and a non-empty
report_errors
list indicates a partial success where someOperations
in the request succeeded. EachOperation
that failed processing has a corresponding item in this list. - A failed RPC status indicates a general non-deterministic failure.
When this happens, it's impossible to know which of the
'Operations' in the request succeeded or failed.
Corresponds to the JSON property
reportErrors
1536 1537 1538 |
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1536 def report_errors @report_errors end |
#report_infos ⇒ Array<Google::Apis::ServicecontrolV1::ReportInfo>
Quota usage for each quota release Operation
request.
Fully or partially failed quota release request may or may not be present
in report_quota_info
. For example, a failed quota release request will
have the current quota usage info when precise quota library returns the
info. A deadline exceeded quota request will not have quota usage info.
If there is no quota release request, report_quota_info will be empty.
Corresponds to the JSON property reportInfos
1546 1547 1548 |
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1546 def report_infos @report_infos end |
#service_config_id ⇒ String
The actual config id used to process the request.
Corresponds to the JSON property serviceConfigId
1551 1552 1553 |
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1551 def service_config_id @service_config_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1558 1559 1560 1561 1562 |
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1558 def update!(**args) @report_errors = args[:report_errors] if args.key?(:report_errors) @report_infos = args[:report_infos] if args.key?(:report_infos) @service_config_id = args[:service_config_id] if args.key?(:service_config_id) end |