Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1DebugMask
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1DebugMask
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/apigee_v1/classes.rb,
lib/google/apis/apigee_v1/representations.rb,
lib/google/apis/apigee_v1/representations.rb
Instance Attribute Summary collapse
-
#fault_json_paths ⇒ Array<String>
List of JSON paths that specify the JSON elements to be filtered from JSON payloads in error flows.
-
#fault_x_paths ⇒ Array<String>
List of XPaths that specify the XML elements to be filtered from XML payloads in error flows.
-
#name ⇒ String
Name of the debug mask.
-
#namespaces ⇒ Hash<String,String>
Map of namespaces to URIs.
-
#request_json_paths ⇒ Array<String>
List of JSON paths that specify the JSON elements to be filtered from JSON request message payloads.
-
#request_x_paths ⇒ Array<String>
List of XPaths that specify the XML elements to be filtered from XML request message payloads.
-
#response_json_paths ⇒ Array<String>
List of JSON paths that specify the JSON elements to be filtered from JSON response message payloads.
-
#response_x_paths ⇒ Array<String>
List of XPaths that specify the XML elements to be filtered from XML response message payloads.
-
#variables ⇒ Array<String>
List of variables that should be masked from the debug output.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApigeeV1DebugMask
constructor
A new instance of GoogleCloudApigeeV1DebugMask.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1DebugMask
Returns a new instance of GoogleCloudApigeeV1DebugMask.
2235 2236 2237 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2235 def initialize(**args) update!(**args) end |
Instance Attribute Details
#fault_json_paths ⇒ Array<String>
List of JSON paths that specify the JSON elements to be filtered from JSON
payloads in error flows.
Corresponds to the JSON property faultJSONPaths
2188 2189 2190 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2188 def fault_json_paths @fault_json_paths end |
#fault_x_paths ⇒ Array<String>
List of XPaths that specify the XML elements to be filtered from XML payloads
in error flows.
Corresponds to the JSON property faultXPaths
2194 2195 2196 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2194 def fault_x_paths @fault_x_paths end |
#name ⇒ String
Name of the debug mask.
Corresponds to the JSON property name
2199 2200 2201 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2199 def name @name end |
#namespaces ⇒ Hash<String,String>
Map of namespaces to URIs.
Corresponds to the JSON property namespaces
2204 2205 2206 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2204 def namespaces @namespaces end |
#request_json_paths ⇒ Array<String>
List of JSON paths that specify the JSON elements to be filtered from JSON
request message payloads.
Corresponds to the JSON property requestJSONPaths
2210 2211 2212 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2210 def request_json_paths @request_json_paths end |
#request_x_paths ⇒ Array<String>
List of XPaths that specify the XML elements to be filtered from XML request
message payloads.
Corresponds to the JSON property requestXPaths
2216 2217 2218 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2216 def request_x_paths @request_x_paths end |
#response_json_paths ⇒ Array<String>
List of JSON paths that specify the JSON elements to be filtered from JSON
response message payloads.
Corresponds to the JSON property responseJSONPaths
2222 2223 2224 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2222 def response_json_paths @response_json_paths end |
#response_x_paths ⇒ Array<String>
List of XPaths that specify the XML elements to be filtered from XML response
message payloads.
Corresponds to the JSON property responseXPaths
2228 2229 2230 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2228 def response_x_paths @response_x_paths end |
#variables ⇒ Array<String>
List of variables that should be masked from the debug output.
Corresponds to the JSON property variables
2233 2234 2235 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2233 def variables @variables end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2240 def update!(**args) @fault_json_paths = args[:fault_json_paths] if args.key?(:fault_json_paths) @fault_x_paths = args[:fault_x_paths] if args.key?(:fault_x_paths) @name = args[:name] if args.key?(:name) @namespaces = args[:namespaces] if args.key?(:namespaces) @request_json_paths = args[:request_json_paths] if args.key?(:request_json_paths) @request_x_paths = args[:request_x_paths] if args.key?(:request_x_paths) @response_json_paths = args[:response_json_paths] if args.key?(:response_json_paths) @response_x_paths = args[:response_x_paths] if args.key?(:response_x_paths) @variables = args[:variables] if args.key?(:variables) end |