Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1DebugMask

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudApigeeV1DebugMask

Returns a new instance of GoogleCloudApigeeV1DebugMask.



3132
3133
3134
# File 'lib/google/apis/apigee_v1/classes.rb', line 3132

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

Instance Attribute Details

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

Returns:

  • (Array<String>)


3085
3086
3087
# File 'lib/google/apis/apigee_v1/classes.rb', line 3085

def fault_json_paths
  @fault_json_paths
end

#fault_x_pathsArray<String>

List of XPaths that specify the XML elements to be filtered from XML payloads in error flows. Corresponds to the JSON property faultXPaths

Returns:

  • (Array<String>)


3091
3092
3093
# File 'lib/google/apis/apigee_v1/classes.rb', line 3091

def fault_x_paths
  @fault_x_paths
end

#nameString

Name of the debug mask. Corresponds to the JSON property name

Returns:

  • (String)


3096
3097
3098
# File 'lib/google/apis/apigee_v1/classes.rb', line 3096

def name
  @name
end

#namespacesHash<String,String>

Map of namespaces to URIs. Corresponds to the JSON property namespaces

Returns:

  • (Hash<String,String>)


3101
3102
3103
# File 'lib/google/apis/apigee_v1/classes.rb', line 3101

def namespaces
  @namespaces
end

#request_json_pathsArray<String>

List of JSON paths that specify the JSON elements to be filtered from JSON request message payloads. Corresponds to the JSON property requestJSONPaths

Returns:

  • (Array<String>)


3107
3108
3109
# File 'lib/google/apis/apigee_v1/classes.rb', line 3107

def request_json_paths
  @request_json_paths
end

#request_x_pathsArray<String>

List of XPaths that specify the XML elements to be filtered from XML request message payloads. Corresponds to the JSON property requestXPaths

Returns:

  • (Array<String>)


3113
3114
3115
# File 'lib/google/apis/apigee_v1/classes.rb', line 3113

def request_x_paths
  @request_x_paths
end

#response_json_pathsArray<String>

List of JSON paths that specify the JSON elements to be filtered from JSON response message payloads. Corresponds to the JSON property responseJSONPaths

Returns:

  • (Array<String>)


3119
3120
3121
# File 'lib/google/apis/apigee_v1/classes.rb', line 3119

def response_json_paths
  @response_json_paths
end

#response_x_pathsArray<String>

List of XPaths that specify the XML elements to be filtered from XML response message payloads. Corresponds to the JSON property responseXPaths

Returns:

  • (Array<String>)


3125
3126
3127
# File 'lib/google/apis/apigee_v1/classes.rb', line 3125

def response_x_paths
  @response_x_paths
end

#variablesArray<String>

List of variables that should be masked from the debug output. Corresponds to the JSON property variables

Returns:

  • (Array<String>)


3130
3131
3132
# File 'lib/google/apis/apigee_v1/classes.rb', line 3130

def variables
  @variables
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
# File 'lib/google/apis/apigee_v1/classes.rb', line 3137

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