Class: Google::Apis::ServicecontrolV1::ReportResponse

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

Overview

Response message for the Report method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ReportResponse

Returns a new instance of ReportResponse.



1864
1865
1866
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1864

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

Instance Attribute Details

#report_errorsArray<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: 1. The combination of a successful RPC status and an empty report_errors list indicates a complete success where all Operations in the request are processed successfully. 2. The combination of a successful RPC status and a non-empty report_errors list indicates a partial success where some Operations in the request succeeded. Each Operation that failed processing has a corresponding item in this list. 3. 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



1842
1843
1844
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1842

def report_errors
  @report_errors
end

#report_infosArray<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



1852
1853
1854
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1852

def report_infos
  @report_infos
end

#service_config_idString

The actual config id used to process the request. Corresponds to the JSON property serviceConfigId

Returns:

  • (String)


1857
1858
1859
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1857

def service_config_id
  @service_config_id
end

#service_rollout_idString

The current service rollout id used to process the request. Corresponds to the JSON property serviceRolloutId

Returns:

  • (String)


1862
1863
1864
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1862

def service_rollout_id
  @service_rollout_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1869
1870
1871
1872
1873
1874
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1869

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)
  @service_rollout_id = args[:service_rollout_id] if args.key?(:service_rollout_id)
end