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

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ReportResponse

Returns a new instance of ReportResponse.



1936
1937
1938
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1936

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


1914
1915
1916
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1914

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



1924
1925
1926
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1924

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)


1929
1930
1931
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1929

def service_config_id
  @service_config_id
end

#service_rollout_idString

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

Returns:

  • (String)


1934
1935
1936
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1934

def service_rollout_id
  @service_rollout_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1941
1942
1943
1944
1945
1946
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1941

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