CalloutPolicyResponse

data class CalloutPolicyResponse(val calloutId: String, val calloutType: String? = null, val calloutUriRegex: String? = null, val outboundAccess: String? = null)

Configuration for external callout policies, including URI patterns, access types, and service types.

Constructors

Link copied to clipboard
constructor(calloutId: String, calloutType: String? = null, calloutUriRegex: String? = null, outboundAccess: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Unique identifier for the callout configuration.

Link copied to clipboard
val calloutType: String? = null

Type of the callout service, specifying the kind of external resource or service being accessed.

Link copied to clipboard
val calloutUriRegex: String? = null

Regular expression or FQDN pattern for the callout URI.

Link copied to clipboard
val outboundAccess: String? = null

Indicates whether outbound access is permitted for the specified URI pattern.