Class: Google::Apis::ServicenetworkingV1beta::CustomError
- Inherits:
-
Object
- Object
- Google::Apis::ServicenetworkingV1beta::CustomError
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/servicenetworking_v1beta/classes.rb,
lib/google/apis/servicenetworking_v1beta/representations.rb,
lib/google/apis/servicenetworking_v1beta/representations.rb
Overview
Customize service error responses. For example, list any service specific protobuf types that can appear in error detail lists of error responses. Example: custom_error: types: - google.foo.v1.CustomError - google.foo.v1. AnotherError
Instance Attribute Summary collapse
-
#rules ⇒ Array<Google::Apis::ServicenetworkingV1beta::CustomErrorRule>
The list of custom error rules that apply to individual API messages.
-
#types ⇒ Array<String>
The list of custom error detail types, e.g.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CustomError
constructor
A new instance of CustomError.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CustomError
Returns a new instance of CustomError.
929 930 931 |
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 929 def initialize(**args) update!(**args) end |
Instance Attribute Details
#rules ⇒ Array<Google::Apis::ServicenetworkingV1beta::CustomErrorRule>
The list of custom error rules that apply to individual API messages. NOTE:
All service configuration rules follow "last one wins" order.
Corresponds to the JSON property rules
922 923 924 |
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 922 def rules @rules end |
#types ⇒ Array<String>
The list of custom error detail types, e.g. 'google.foo.v1.CustomError'.
Corresponds to the JSON property types
927 928 929 |
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 927 def types @types end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
934 935 936 937 |
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 934 def update!(**args) @rules = args[:rules] if args.key?(:rules) @types = args[:types] if args.key?(:types) end |