Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1FlowHook

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) ⇒ GoogleCloudApigeeV1FlowHook

Returns a new instance of GoogleCloudApigeeV1FlowHook.



3381
3382
3383
# File 'lib/google/apis/apigee_v1/classes.rb', line 3381

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

Instance Attribute Details

#continue_on_errorBoolean Also known as: continue_on_error?

Optional. Flag that specifies whether execution should continue if the flow hook throws an exception. Set to true to continue execution. Set to false to stop execution if the flow hook throws an exception. Defaults to true. Corresponds to the JSON property continueOnError

Returns:

  • (Boolean)


3361
3362
3363
# File 'lib/google/apis/apigee_v1/classes.rb', line 3361

def continue_on_error
  @continue_on_error
end

#descriptionString

Description of the flow hook. Corresponds to the JSON property description

Returns:

  • (String)


3367
3368
3369
# File 'lib/google/apis/apigee_v1/classes.rb', line 3367

def description
  @description
end

#flow_hook_pointString

Output only. Where in the API call flow the flow hook is invoked. Must be one of PreProxyFlowHook, PostProxyFlowHook, PreTargetFlowHook, or PostTargetFlowHook. Corresponds to the JSON property flowHookPoint

Returns:

  • (String)


3374
3375
3376
# File 'lib/google/apis/apigee_v1/classes.rb', line 3374

def flow_hook_point
  @flow_hook_point
end

#shared_flowString

Shared flow attached to this flow hook, or empty if there is none attached. Corresponds to the JSON property sharedFlow

Returns:

  • (String)


3379
3380
3381
# File 'lib/google/apis/apigee_v1/classes.rb', line 3379

def shared_flow
  @shared_flow
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3386
3387
3388
3389
3390
3391
# File 'lib/google/apis/apigee_v1/classes.rb', line 3386

def update!(**args)
  @continue_on_error = args[:continue_on_error] if args.key?(:continue_on_error)
  @description = args[:description] if args.key?(:description)
  @flow_hook_point = args[:flow_hook_point] if args.key?(:flow_hook_point)
  @shared_flow = args[:shared_flow] if args.key?(:shared_flow)
end