Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1Result

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

Overview

Result is short for "action result", could be different types identified by " action_result" field. Supported types: 1. DebugInfo : generic debug info collected by runtime recorded as a list of properties. For example, the contents could be virtual host info, state change result, or execution metadata. Required fields : properties, timestamp 2. RequestMessage: information of a http request. Contains headers, request URI and http methods type.Required fields : headers, uri, verb 3. ResponseMessage: information of a http response. Contains headers, reason phrase and http status code. Required fields : headers, reasonPhrase, statusCode 4. ErrorMessage: information of a http error message. Contains detail error message, reason phrase and status code. Required fields : content, headers, reasonPhrase, statusCode 5. VariableAccess: a list of variable access actions, can be Get, Set and Remove. Required fields : accessList

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudApigeeV1Result

Returns a new instance of GoogleCloudApigeeV1Result.



5747
5748
5749
# File 'lib/google/apis/apigee_v1/classes.rb', line 5747

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

Instance Attribute Details

#access_listArray<Google::Apis::ApigeeV1::GoogleCloudApigeeV1Access>

A list of variable access actions agaist the api proxy. Supported values: Get, Set, Remove. Corresponds to the JSON property accessList



5700
5701
5702
# File 'lib/google/apis/apigee_v1/classes.rb', line 5700

def access_list
  @access_list
end

#action_resultString

Type of the action result. Can be one of the five: DebugInfo, RequestMessage, ResponseMessage, ErrorMessage, VariableAccess Corresponds to the JSON property ActionResult

Returns:

  • (String)


5694
5695
5696
# File 'lib/google/apis/apigee_v1/classes.rb', line 5694

def action_result
  @action_result
end

#contentString

Error message content. for example, "content" : "\"fault\":\"faultstring\":\" API timed out\",\"detail\":\"errorcode\":\"flow.APITimedOut\"`" Corresponds to the JSON propertycontent`

Returns:

  • (String)


5706
5707
5708
# File 'lib/google/apis/apigee_v1/classes.rb', line 5706

def content
  @content
end

#headersArray<Google::Apis::ApigeeV1::GoogleCloudApigeeV1Property>

A list of HTTP headers. for example, '"headers" : [ "name" : "Content-Length" , "value" : "83", "name" : "Content-Type", "value" : "application/json" ] ' Corresponds to the JSON property headers



5713
5714
5715
# File 'lib/google/apis/apigee_v1/classes.rb', line 5713

def headers
  @headers
end

#propertiesGoogle::Apis::ApigeeV1::GoogleCloudApigeeV1Properties

Message for compatibility with legacy Edge specification for Java Properties object in JSON. Corresponds to the JSON property properties



5719
5720
5721
# File 'lib/google/apis/apigee_v1/classes.rb', line 5719

def properties
  @properties
end

#reason_phraseString

HTTP response phrase Corresponds to the JSON property reasonPhrase

Returns:

  • (String)


5724
5725
5726
# File 'lib/google/apis/apigee_v1/classes.rb', line 5724

def reason_phrase
  @reason_phrase
end

#status_codeString

HTTP response code Corresponds to the JSON property statusCode

Returns:

  • (String)


5729
5730
5731
# File 'lib/google/apis/apigee_v1/classes.rb', line 5729

def status_code
  @status_code
end

#timestampString

Timestamp of when the result is recorded. Its format is dd-mm-yy hh:mm:ss:xxx. For example, "timestamp" : "12-08-19 00:31:59:960" Corresponds to the JSON property timestamp

Returns:

  • (String)


5735
5736
5737
# File 'lib/google/apis/apigee_v1/classes.rb', line 5735

def timestamp
  @timestamp
end

#u_riString

The relative path of the api proxy. for example, "uRI" : "/iloveapis" Corresponds to the JSON property uRI

Returns:

  • (String)


5740
5741
5742
# File 'lib/google/apis/apigee_v1/classes.rb', line 5740

def u_ri
  @u_ri
end

#verbString

HTTP method verb Corresponds to the JSON property verb

Returns:

  • (String)


5745
5746
5747
# File 'lib/google/apis/apigee_v1/classes.rb', line 5745

def verb
  @verb
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
# File 'lib/google/apis/apigee_v1/classes.rb', line 5752

def update!(**args)
  @action_result = args[:action_result] if args.key?(:action_result)
  @access_list = args[:access_list] if args.key?(:access_list)
  @content = args[:content] if args.key?(:content)
  @headers = args[:headers] if args.key?(:headers)
  @properties = args[:properties] if args.key?(:properties)
  @reason_phrase = args[:reason_phrase] if args.key?(:reason_phrase)
  @status_code = args[:status_code] if args.key?(:status_code)
  @timestamp = args[:timestamp] if args.key?(:timestamp)
  @u_ri = args[:u_ri] if args.key?(:u_ri)
  @verb = args[:verb] if args.key?(:verb)
end