class Google::Apis::ApigeeV1::GoogleCloudApigeeV1FlowHookConfig

Attributes

continue_on_error[RW]

Flag that specifies whether the flow should abort after an error in the flow hook. Defaults to `true` (continue on error). Corresponds to the JSON property `continueOnError` @return [Boolean]

continue_on_error?[RW]

Flag that specifies whether the flow should abort after an error in the flow hook. Defaults to `true` (continue on error). Corresponds to the JSON property `continueOnError` @return [Boolean]

name[RW]

Name of the flow hook in the following format: `organizations/`org`/ environments/`env`/flowhooks/`point“. Valid `point` values include: ` PreProxyFlowHook`, `PostProxyFlowHook`, `PreTargetFlowHook`, and ` PostTargetFlowHook` Corresponds to the JSON property `name` @return [String]

shared_flow_name[RW]

Name of the shared flow to invoke in the following format: `organizations/`org` /sharedflows/`sharedflow“ Corresponds to the JSON property `sharedFlowName` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/apigee_v1/classes.rb, line 3419
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/apigee_v1/classes.rb, line 3424
def update!(**args)
  @continue_on_error = args[:continue_on_error] if args.key?(:continue_on_error)
  @name = args[:name] if args.key?(:name)
  @shared_flow_name = args[:shared_flow_name] if args.key?(:shared_flow_name)
end