published on Friday, Apr 24, 2026 by kong
published on Friday, Apr 24, 2026 by kong
GatewayPluginAiA2aProxy Resource
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as konnect from "@pulumi/konnect";
const myGatewaypluginaia2aproxy = new konnect.GatewayPluginAiA2aProxy("my_gatewaypluginaia2aproxy", {
condition: "...my_condition...",
config: {
logging: {
logPayloads: false,
logStatistics: false,
maxPayloadSize: 1048576,
},
maxRequestBodySize: 1048576,
},
controlPlaneId: "9524ec7d-36d9-465d-a8c5-83a3c9390458",
createdAt: 5,
enabled: true,
gatewayPluginAiA2aProxyId: "...my_id...",
instanceName: "...my_instance_name...",
ordering: {
after: {
accesses: ["..."],
},
before: {
accesses: ["..."],
},
},
partials: [{
id: "...my_id...",
name: "...my_name...",
path: "...my_path...",
}],
protocols: ["http"],
route: {
id: "...my_id...",
},
service: {
id: "...my_id...",
},
tags: ["..."],
updatedAt: 5,
});
import pulumi
import pulumi_konnect as konnect
my_gatewaypluginaia2aproxy = konnect.GatewayPluginAiA2aProxy("my_gatewaypluginaia2aproxy",
condition="...my_condition...",
config={
"logging": {
"log_payloads": False,
"log_statistics": False,
"max_payload_size": 1048576,
},
"max_request_body_size": 1048576,
},
control_plane_id="9524ec7d-36d9-465d-a8c5-83a3c9390458",
created_at=5,
enabled=True,
gateway_plugin_ai_a2a_proxy_id="...my_id...",
instance_name="...my_instance_name...",
ordering={
"after": {
"accesses": ["..."],
},
"before": {
"accesses": ["..."],
},
},
partials=[{
"id": "...my_id...",
"name": "...my_name...",
"path": "...my_path...",
}],
protocols=["http"],
route={
"id": "...my_id...",
},
service={
"id": "...my_id...",
},
tags=["..."],
updated_at=5)
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/konnect/v3/konnect"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := konnect.NewGatewayPluginAiA2aProxy(ctx, "my_gatewaypluginaia2aproxy", &konnect.GatewayPluginAiA2aProxyArgs{
Condition: pulumi.String("...my_condition..."),
Config: &konnect.GatewayPluginAiA2aProxyConfigArgs{
Logging: &konnect.GatewayPluginAiA2aProxyConfigLoggingArgs{
LogPayloads: pulumi.Bool(false),
LogStatistics: pulumi.Bool(false),
MaxPayloadSize: pulumi.Float64(1048576),
},
MaxRequestBodySize: pulumi.Float64(1048576),
},
ControlPlaneId: pulumi.String("9524ec7d-36d9-465d-a8c5-83a3c9390458"),
CreatedAt: pulumi.Float64(5),
Enabled: pulumi.Bool(true),
GatewayPluginAiA2aProxyId: pulumi.String("...my_id..."),
InstanceName: pulumi.String("...my_instance_name..."),
Ordering: &konnect.GatewayPluginAiA2aProxyOrderingArgs{
After: &konnect.GatewayPluginAiA2aProxyOrderingAfterArgs{
Accesses: pulumi.StringArray{
pulumi.String("..."),
},
},
Before: &konnect.GatewayPluginAiA2aProxyOrderingBeforeArgs{
Accesses: pulumi.StringArray{
pulumi.String("..."),
},
},
},
Partials: konnect.GatewayPluginAiA2aProxyPartialArray{
&konnect.GatewayPluginAiA2aProxyPartialArgs{
Id: pulumi.String("...my_id..."),
Name: pulumi.String("...my_name..."),
Path: pulumi.String("...my_path..."),
},
},
Protocols: pulumi.StringArray{
pulumi.String("http"),
},
Route: &konnect.GatewayPluginAiA2aProxyRouteArgs{
Id: pulumi.String("...my_id..."),
},
Service: &konnect.GatewayPluginAiA2aProxyServiceArgs{
Id: pulumi.String("...my_id..."),
},
Tags: pulumi.StringArray{
pulumi.String("..."),
},
UpdatedAt: pulumi.Float64(5),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Konnect = Pulumi.Konnect;
return await Deployment.RunAsync(() =>
{
var myGatewaypluginaia2aproxy = new Konnect.GatewayPluginAiA2aProxy("my_gatewaypluginaia2aproxy", new()
{
Condition = "...my_condition...",
Config = new Konnect.Inputs.GatewayPluginAiA2aProxyConfigArgs
{
Logging = new Konnect.Inputs.GatewayPluginAiA2aProxyConfigLoggingArgs
{
LogPayloads = false,
LogStatistics = false,
MaxPayloadSize = 1048576,
},
MaxRequestBodySize = 1048576,
},
ControlPlaneId = "9524ec7d-36d9-465d-a8c5-83a3c9390458",
CreatedAt = 5,
Enabled = true,
GatewayPluginAiA2aProxyId = "...my_id...",
InstanceName = "...my_instance_name...",
Ordering = new Konnect.Inputs.GatewayPluginAiA2aProxyOrderingArgs
{
After = new Konnect.Inputs.GatewayPluginAiA2aProxyOrderingAfterArgs
{
Accesses = new[]
{
"...",
},
},
Before = new Konnect.Inputs.GatewayPluginAiA2aProxyOrderingBeforeArgs
{
Accesses = new[]
{
"...",
},
},
},
Partials = new[]
{
new Konnect.Inputs.GatewayPluginAiA2aProxyPartialArgs
{
Id = "...my_id...",
Name = "...my_name...",
Path = "...my_path...",
},
},
Protocols = new[]
{
"http",
},
Route = new Konnect.Inputs.GatewayPluginAiA2aProxyRouteArgs
{
Id = "...my_id...",
},
Service = new Konnect.Inputs.GatewayPluginAiA2aProxyServiceArgs
{
Id = "...my_id...",
},
Tags = new[]
{
"...",
},
UpdatedAt = 5,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.konnect.GatewayPluginAiA2aProxy;
import com.pulumi.konnect.GatewayPluginAiA2aProxyArgs;
import com.pulumi.konnect.inputs.GatewayPluginAiA2aProxyConfigArgs;
import com.pulumi.konnect.inputs.GatewayPluginAiA2aProxyConfigLoggingArgs;
import com.pulumi.konnect.inputs.GatewayPluginAiA2aProxyOrderingArgs;
import com.pulumi.konnect.inputs.GatewayPluginAiA2aProxyOrderingAfterArgs;
import com.pulumi.konnect.inputs.GatewayPluginAiA2aProxyOrderingBeforeArgs;
import com.pulumi.konnect.inputs.GatewayPluginAiA2aProxyPartialArgs;
import com.pulumi.konnect.inputs.GatewayPluginAiA2aProxyRouteArgs;
import com.pulumi.konnect.inputs.GatewayPluginAiA2aProxyServiceArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var myGatewaypluginaia2aproxy = new GatewayPluginAiA2aProxy("myGatewaypluginaia2aproxy", GatewayPluginAiA2aProxyArgs.builder()
.condition("...my_condition...")
.config(GatewayPluginAiA2aProxyConfigArgs.builder()
.logging(GatewayPluginAiA2aProxyConfigLoggingArgs.builder()
.logPayloads(false)
.logStatistics(false)
.maxPayloadSize(1048576.0)
.build())
.maxRequestBodySize(1048576.0)
.build())
.controlPlaneId("9524ec7d-36d9-465d-a8c5-83a3c9390458")
.createdAt(5.0)
.enabled(true)
.gatewayPluginAiA2aProxyId("...my_id...")
.instanceName("...my_instance_name...")
.ordering(GatewayPluginAiA2aProxyOrderingArgs.builder()
.after(GatewayPluginAiA2aProxyOrderingAfterArgs.builder()
.accesses("...")
.build())
.before(GatewayPluginAiA2aProxyOrderingBeforeArgs.builder()
.accesses("...")
.build())
.build())
.partials(GatewayPluginAiA2aProxyPartialArgs.builder()
.id("...my_id...")
.name("...my_name...")
.path("...my_path...")
.build())
.protocols("http")
.route(GatewayPluginAiA2aProxyRouteArgs.builder()
.id("...my_id...")
.build())
.service(GatewayPluginAiA2aProxyServiceArgs.builder()
.id("...my_id...")
.build())
.tags("...")
.updatedAt(5.0)
.build());
}
}
resources:
myGatewaypluginaia2aproxy:
type: konnect:GatewayPluginAiA2aProxy
name: my_gatewaypluginaia2aproxy
properties:
condition: '...my_condition...'
config:
logging:
logPayloads: false
logStatistics: false
maxPayloadSize: 1.048576e+06
maxRequestBodySize: 1.048576e+06
controlPlaneId: 9524ec7d-36d9-465d-a8c5-83a3c9390458
createdAt: 5
enabled: true
gatewayPluginAiA2aProxyId: '...my_id...'
instanceName: '...my_instance_name...'
ordering:
after:
accesses:
- '...'
before:
accesses:
- '...'
partials:
- id: '...my_id...'
name: '...my_name...'
path: '...my_path...'
protocols:
- http
route:
id: '...my_id...'
service:
id: '...my_id...'
tags:
- '...'
updatedAt: 5
Create GatewayPluginAiA2aProxy Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new GatewayPluginAiA2aProxy(name: string, args: GatewayPluginAiA2aProxyArgs, opts?: CustomResourceOptions);@overload
def GatewayPluginAiA2aProxy(resource_name: str,
args: GatewayPluginAiA2aProxyArgs,
opts: Optional[ResourceOptions] = None)
@overload
def GatewayPluginAiA2aProxy(resource_name: str,
opts: Optional[ResourceOptions] = None,
control_plane_id: Optional[str] = None,
instance_name: Optional[str] = None,
config: Optional[GatewayPluginAiA2aProxyConfigArgs] = None,
created_at: Optional[float] = None,
enabled: Optional[bool] = None,
gateway_plugin_ai_a2a_proxy_id: Optional[str] = None,
condition: Optional[str] = None,
ordering: Optional[GatewayPluginAiA2aProxyOrderingArgs] = None,
partials: Optional[Sequence[GatewayPluginAiA2aProxyPartialArgs]] = None,
protocols: Optional[Sequence[str]] = None,
route: Optional[GatewayPluginAiA2aProxyRouteArgs] = None,
service: Optional[GatewayPluginAiA2aProxyServiceArgs] = None,
tags: Optional[Sequence[str]] = None,
updated_at: Optional[float] = None)func NewGatewayPluginAiA2aProxy(ctx *Context, name string, args GatewayPluginAiA2aProxyArgs, opts ...ResourceOption) (*GatewayPluginAiA2aProxy, error)public GatewayPluginAiA2aProxy(string name, GatewayPluginAiA2aProxyArgs args, CustomResourceOptions? opts = null)
public GatewayPluginAiA2aProxy(String name, GatewayPluginAiA2aProxyArgs args)
public GatewayPluginAiA2aProxy(String name, GatewayPluginAiA2aProxyArgs args, CustomResourceOptions options)
type: konnect:GatewayPluginAiA2aProxy
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args GatewayPluginAiA2aProxyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args GatewayPluginAiA2aProxyArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args GatewayPluginAiA2aProxyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GatewayPluginAiA2aProxyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GatewayPluginAiA2aProxyArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var gatewayPluginAiA2aProxyResource = new Konnect.GatewayPluginAiA2aProxy("gatewayPluginAiA2aProxyResource", new()
{
ControlPlaneId = "string",
InstanceName = "string",
Config = new Konnect.Inputs.GatewayPluginAiA2aProxyConfigArgs
{
Logging = new Konnect.Inputs.GatewayPluginAiA2aProxyConfigLoggingArgs
{
LogPayloads = false,
LogStatistics = false,
MaxPayloadSize = 0,
},
MaxRequestBodySize = 0,
},
CreatedAt = 0,
Enabled = false,
GatewayPluginAiA2aProxyId = "string",
Condition = "string",
Ordering = new Konnect.Inputs.GatewayPluginAiA2aProxyOrderingArgs
{
After = new Konnect.Inputs.GatewayPluginAiA2aProxyOrderingAfterArgs
{
Accesses = new[]
{
"string",
},
},
Before = new Konnect.Inputs.GatewayPluginAiA2aProxyOrderingBeforeArgs
{
Accesses = new[]
{
"string",
},
},
},
Partials = new[]
{
new Konnect.Inputs.GatewayPluginAiA2aProxyPartialArgs
{
Id = "string",
Name = "string",
Path = "string",
},
},
Protocols = new[]
{
"string",
},
Route = new Konnect.Inputs.GatewayPluginAiA2aProxyRouteArgs
{
Id = "string",
},
Service = new Konnect.Inputs.GatewayPluginAiA2aProxyServiceArgs
{
Id = "string",
},
Tags = new[]
{
"string",
},
UpdatedAt = 0,
});
example, err := konnect.NewGatewayPluginAiA2aProxy(ctx, "gatewayPluginAiA2aProxyResource", &konnect.GatewayPluginAiA2aProxyArgs{
ControlPlaneId: pulumi.String("string"),
InstanceName: pulumi.String("string"),
Config: &konnect.GatewayPluginAiA2aProxyConfigArgs{
Logging: &konnect.GatewayPluginAiA2aProxyConfigLoggingArgs{
LogPayloads: pulumi.Bool(false),
LogStatistics: pulumi.Bool(false),
MaxPayloadSize: pulumi.Float64(0),
},
MaxRequestBodySize: pulumi.Float64(0),
},
CreatedAt: pulumi.Float64(0),
Enabled: pulumi.Bool(false),
GatewayPluginAiA2aProxyId: pulumi.String("string"),
Condition: pulumi.String("string"),
Ordering: &konnect.GatewayPluginAiA2aProxyOrderingArgs{
After: &konnect.GatewayPluginAiA2aProxyOrderingAfterArgs{
Accesses: pulumi.StringArray{
pulumi.String("string"),
},
},
Before: &konnect.GatewayPluginAiA2aProxyOrderingBeforeArgs{
Accesses: pulumi.StringArray{
pulumi.String("string"),
},
},
},
Partials: konnect.GatewayPluginAiA2aProxyPartialArray{
&konnect.GatewayPluginAiA2aProxyPartialArgs{
Id: pulumi.String("string"),
Name: pulumi.String("string"),
Path: pulumi.String("string"),
},
},
Protocols: pulumi.StringArray{
pulumi.String("string"),
},
Route: &konnect.GatewayPluginAiA2aProxyRouteArgs{
Id: pulumi.String("string"),
},
Service: &konnect.GatewayPluginAiA2aProxyServiceArgs{
Id: pulumi.String("string"),
},
Tags: pulumi.StringArray{
pulumi.String("string"),
},
UpdatedAt: pulumi.Float64(0),
})
var gatewayPluginAiA2aProxyResource = new GatewayPluginAiA2aProxy("gatewayPluginAiA2aProxyResource", GatewayPluginAiA2aProxyArgs.builder()
.controlPlaneId("string")
.instanceName("string")
.config(GatewayPluginAiA2aProxyConfigArgs.builder()
.logging(GatewayPluginAiA2aProxyConfigLoggingArgs.builder()
.logPayloads(false)
.logStatistics(false)
.maxPayloadSize(0.0)
.build())
.maxRequestBodySize(0.0)
.build())
.createdAt(0.0)
.enabled(false)
.gatewayPluginAiA2aProxyId("string")
.condition("string")
.ordering(GatewayPluginAiA2aProxyOrderingArgs.builder()
.after(GatewayPluginAiA2aProxyOrderingAfterArgs.builder()
.accesses("string")
.build())
.before(GatewayPluginAiA2aProxyOrderingBeforeArgs.builder()
.accesses("string")
.build())
.build())
.partials(GatewayPluginAiA2aProxyPartialArgs.builder()
.id("string")
.name("string")
.path("string")
.build())
.protocols("string")
.route(GatewayPluginAiA2aProxyRouteArgs.builder()
.id("string")
.build())
.service(GatewayPluginAiA2aProxyServiceArgs.builder()
.id("string")
.build())
.tags("string")
.updatedAt(0.0)
.build());
gateway_plugin_ai_a2a_proxy_resource = konnect.GatewayPluginAiA2aProxy("gatewayPluginAiA2aProxyResource",
control_plane_id="string",
instance_name="string",
config={
"logging": {
"log_payloads": False,
"log_statistics": False,
"max_payload_size": float(0),
},
"max_request_body_size": float(0),
},
created_at=float(0),
enabled=False,
gateway_plugin_ai_a2a_proxy_id="string",
condition="string",
ordering={
"after": {
"accesses": ["string"],
},
"before": {
"accesses": ["string"],
},
},
partials=[{
"id": "string",
"name": "string",
"path": "string",
}],
protocols=["string"],
route={
"id": "string",
},
service={
"id": "string",
},
tags=["string"],
updated_at=float(0))
const gatewayPluginAiA2aProxyResource = new konnect.GatewayPluginAiA2aProxy("gatewayPluginAiA2aProxyResource", {
controlPlaneId: "string",
instanceName: "string",
config: {
logging: {
logPayloads: false,
logStatistics: false,
maxPayloadSize: 0,
},
maxRequestBodySize: 0,
},
createdAt: 0,
enabled: false,
gatewayPluginAiA2aProxyId: "string",
condition: "string",
ordering: {
after: {
accesses: ["string"],
},
before: {
accesses: ["string"],
},
},
partials: [{
id: "string",
name: "string",
path: "string",
}],
protocols: ["string"],
route: {
id: "string",
},
service: {
id: "string",
},
tags: ["string"],
updatedAt: 0,
});
type: konnect:GatewayPluginAiA2aProxy
properties:
condition: string
config:
logging:
logPayloads: false
logStatistics: false
maxPayloadSize: 0
maxRequestBodySize: 0
controlPlaneId: string
createdAt: 0
enabled: false
gatewayPluginAiA2aProxyId: string
instanceName: string
ordering:
after:
accesses:
- string
before:
accesses:
- string
partials:
- id: string
name: string
path: string
protocols:
- string
route:
id: string
service:
id: string
tags:
- string
updatedAt: 0
GatewayPluginAiA2aProxy Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The GatewayPluginAiA2aProxy resource accepts the following input properties:
- Control
Plane stringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- Condition string
- An expression used for conditional control over plugin execution. If the expression evaluates to
trueduring the request flow, the plugin is executed; otherwise, it is skipped. - Config
Gateway
Plugin Ai A2a Proxy Config - Created
At double - Unix epoch when the resource was created.
- Enabled bool
- Whether the plugin is applied. Default: true
- Gateway
Plugin stringAi A2a Proxy Id - A string representing a UUID (universally unique identifier).
- Instance
Name string - A unique string representing a UTF-8 encoded name.
- Ordering
Gateway
Plugin Ai A2a Proxy Ordering - Partials
List<Gateway
Plugin Ai A2a Proxy Partial> - A list of partials to be used by the plugin.
- Protocols List<string>
- A set of strings representing HTTP protocols. Default: ["grpc","grpcs","http","https"]
- Route
Gateway
Plugin Ai A2a Proxy Route - If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
- Service
Gateway
Plugin Ai A2a Proxy Service - If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
- List<string>
- An optional set of strings associated with the Plugin for grouping and filtering.
- Updated
At double - Unix epoch when the resource was last updated.
- Control
Plane stringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- Condition string
- An expression used for conditional control over plugin execution. If the expression evaluates to
trueduring the request flow, the plugin is executed; otherwise, it is skipped. - Config
Gateway
Plugin Ai A2a Proxy Config Args - Created
At float64 - Unix epoch when the resource was created.
- Enabled bool
- Whether the plugin is applied. Default: true
- Gateway
Plugin stringAi A2a Proxy Id - A string representing a UUID (universally unique identifier).
- Instance
Name string - A unique string representing a UTF-8 encoded name.
- Ordering
Gateway
Plugin Ai A2a Proxy Ordering Args - Partials
[]Gateway
Plugin Ai A2a Proxy Partial Args - A list of partials to be used by the plugin.
- Protocols []string
- A set of strings representing HTTP protocols. Default: ["grpc","grpcs","http","https"]
- Route
Gateway
Plugin Ai A2a Proxy Route Args - If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
- Service
Gateway
Plugin Ai A2a Proxy Service Args - If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
- []string
- An optional set of strings associated with the Plugin for grouping and filtering.
- Updated
At float64 - Unix epoch when the resource was last updated.
- control
Plane StringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- condition String
- An expression used for conditional control over plugin execution. If the expression evaluates to
trueduring the request flow, the plugin is executed; otherwise, it is skipped. - config
Gateway
Plugin Ai A2a Proxy Config - created
At Double - Unix epoch when the resource was created.
- enabled Boolean
- Whether the plugin is applied. Default: true
- gateway
Plugin StringAi A2a Proxy Id - A string representing a UUID (universally unique identifier).
- instance
Name String - A unique string representing a UTF-8 encoded name.
- ordering
Gateway
Plugin Ai A2a Proxy Ordering - partials
List<Gateway
Plugin Ai A2a Proxy Partial> - A list of partials to be used by the plugin.
- protocols List<String>
- A set of strings representing HTTP protocols. Default: ["grpc","grpcs","http","https"]
- route
Gateway
Plugin Ai A2a Proxy Route - If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
- service
Gateway
Plugin Ai A2a Proxy Service - If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
- List<String>
- An optional set of strings associated with the Plugin for grouping and filtering.
- updated
At Double - Unix epoch when the resource was last updated.
- control
Plane stringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- condition string
- An expression used for conditional control over plugin execution. If the expression evaluates to
trueduring the request flow, the plugin is executed; otherwise, it is skipped. - config
Gateway
Plugin Ai A2a Proxy Config - created
At number - Unix epoch when the resource was created.
- enabled boolean
- Whether the plugin is applied. Default: true
- gateway
Plugin stringAi A2a Proxy Id - A string representing a UUID (universally unique identifier).
- instance
Name string - A unique string representing a UTF-8 encoded name.
- ordering
Gateway
Plugin Ai A2a Proxy Ordering - partials
Gateway
Plugin Ai A2a Proxy Partial[] - A list of partials to be used by the plugin.
- protocols string[]
- A set of strings representing HTTP protocols. Default: ["grpc","grpcs","http","https"]
- route
Gateway
Plugin Ai A2a Proxy Route - If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
- service
Gateway
Plugin Ai A2a Proxy Service - If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
- string[]
- An optional set of strings associated with the Plugin for grouping and filtering.
- updated
At number - Unix epoch when the resource was last updated.
- control_
plane_ strid - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- condition str
- An expression used for conditional control over plugin execution. If the expression evaluates to
trueduring the request flow, the plugin is executed; otherwise, it is skipped. - config
Gateway
Plugin Ai A2a Proxy Config Args - created_
at float - Unix epoch when the resource was created.
- enabled bool
- Whether the plugin is applied. Default: true
- gateway_
plugin_ strai_ a2a_ proxy_ id - A string representing a UUID (universally unique identifier).
- instance_
name str - A unique string representing a UTF-8 encoded name.
- ordering
Gateway
Plugin Ai A2a Proxy Ordering Args - partials
Sequence[Gateway
Plugin Ai A2a Proxy Partial Args] - A list of partials to be used by the plugin.
- protocols Sequence[str]
- A set of strings representing HTTP protocols. Default: ["grpc","grpcs","http","https"]
- route
Gateway
Plugin Ai A2a Proxy Route Args - If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
- service
Gateway
Plugin Ai A2a Proxy Service Args - If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
- Sequence[str]
- An optional set of strings associated with the Plugin for grouping and filtering.
- updated_
at float - Unix epoch when the resource was last updated.
- control
Plane StringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- condition String
- An expression used for conditional control over plugin execution. If the expression evaluates to
trueduring the request flow, the plugin is executed; otherwise, it is skipped. - config Property Map
- created
At Number - Unix epoch when the resource was created.
- enabled Boolean
- Whether the plugin is applied. Default: true
- gateway
Plugin StringAi A2a Proxy Id - A string representing a UUID (universally unique identifier).
- instance
Name String - A unique string representing a UTF-8 encoded name.
- ordering Property Map
- partials List<Property Map>
- A list of partials to be used by the plugin.
- protocols List<String>
- A set of strings representing HTTP protocols. Default: ["grpc","grpcs","http","https"]
- route Property Map
- If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
- service Property Map
- If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
- List<String>
- An optional set of strings associated with the Plugin for grouping and filtering.
- updated
At Number - Unix epoch when the resource was last updated.
Outputs
All input properties are implicitly available as output properties. Additionally, the GatewayPluginAiA2aProxy resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing GatewayPluginAiA2aProxy Resource
Get an existing GatewayPluginAiA2aProxy resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: GatewayPluginAiA2aProxyState, opts?: CustomResourceOptions): GatewayPluginAiA2aProxy@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
condition: Optional[str] = None,
config: Optional[GatewayPluginAiA2aProxyConfigArgs] = None,
control_plane_id: Optional[str] = None,
created_at: Optional[float] = None,
enabled: Optional[bool] = None,
gateway_plugin_ai_a2a_proxy_id: Optional[str] = None,
instance_name: Optional[str] = None,
ordering: Optional[GatewayPluginAiA2aProxyOrderingArgs] = None,
partials: Optional[Sequence[GatewayPluginAiA2aProxyPartialArgs]] = None,
protocols: Optional[Sequence[str]] = None,
route: Optional[GatewayPluginAiA2aProxyRouteArgs] = None,
service: Optional[GatewayPluginAiA2aProxyServiceArgs] = None,
tags: Optional[Sequence[str]] = None,
updated_at: Optional[float] = None) -> GatewayPluginAiA2aProxyfunc GetGatewayPluginAiA2aProxy(ctx *Context, name string, id IDInput, state *GatewayPluginAiA2aProxyState, opts ...ResourceOption) (*GatewayPluginAiA2aProxy, error)public static GatewayPluginAiA2aProxy Get(string name, Input<string> id, GatewayPluginAiA2aProxyState? state, CustomResourceOptions? opts = null)public static GatewayPluginAiA2aProxy get(String name, Output<String> id, GatewayPluginAiA2aProxyState state, CustomResourceOptions options)resources: _: type: konnect:GatewayPluginAiA2aProxy get: id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Condition string
- An expression used for conditional control over plugin execution. If the expression evaluates to
trueduring the request flow, the plugin is executed; otherwise, it is skipped. - Config
Gateway
Plugin Ai A2a Proxy Config - Control
Plane stringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- Created
At double - Unix epoch when the resource was created.
- Enabled bool
- Whether the plugin is applied. Default: true
- Gateway
Plugin stringAi A2a Proxy Id - A string representing a UUID (universally unique identifier).
- Instance
Name string - A unique string representing a UTF-8 encoded name.
- Ordering
Gateway
Plugin Ai A2a Proxy Ordering - Partials
List<Gateway
Plugin Ai A2a Proxy Partial> - A list of partials to be used by the plugin.
- Protocols List<string>
- A set of strings representing HTTP protocols. Default: ["grpc","grpcs","http","https"]
- Route
Gateway
Plugin Ai A2a Proxy Route - If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
- Service
Gateway
Plugin Ai A2a Proxy Service - If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
- List<string>
- An optional set of strings associated with the Plugin for grouping and filtering.
- Updated
At double - Unix epoch when the resource was last updated.
- Condition string
- An expression used for conditional control over plugin execution. If the expression evaluates to
trueduring the request flow, the plugin is executed; otherwise, it is skipped. - Config
Gateway
Plugin Ai A2a Proxy Config Args - Control
Plane stringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- Created
At float64 - Unix epoch when the resource was created.
- Enabled bool
- Whether the plugin is applied. Default: true
- Gateway
Plugin stringAi A2a Proxy Id - A string representing a UUID (universally unique identifier).
- Instance
Name string - A unique string representing a UTF-8 encoded name.
- Ordering
Gateway
Plugin Ai A2a Proxy Ordering Args - Partials
[]Gateway
Plugin Ai A2a Proxy Partial Args - A list of partials to be used by the plugin.
- Protocols []string
- A set of strings representing HTTP protocols. Default: ["grpc","grpcs","http","https"]
- Route
Gateway
Plugin Ai A2a Proxy Route Args - If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
- Service
Gateway
Plugin Ai A2a Proxy Service Args - If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
- []string
- An optional set of strings associated with the Plugin for grouping and filtering.
- Updated
At float64 - Unix epoch when the resource was last updated.
- condition String
- An expression used for conditional control over plugin execution. If the expression evaluates to
trueduring the request flow, the plugin is executed; otherwise, it is skipped. - config
Gateway
Plugin Ai A2a Proxy Config - control
Plane StringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- created
At Double - Unix epoch when the resource was created.
- enabled Boolean
- Whether the plugin is applied. Default: true
- gateway
Plugin StringAi A2a Proxy Id - A string representing a UUID (universally unique identifier).
- instance
Name String - A unique string representing a UTF-8 encoded name.
- ordering
Gateway
Plugin Ai A2a Proxy Ordering - partials
List<Gateway
Plugin Ai A2a Proxy Partial> - A list of partials to be used by the plugin.
- protocols List<String>
- A set of strings representing HTTP protocols. Default: ["grpc","grpcs","http","https"]
- route
Gateway
Plugin Ai A2a Proxy Route - If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
- service
Gateway
Plugin Ai A2a Proxy Service - If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
- List<String>
- An optional set of strings associated with the Plugin for grouping and filtering.
- updated
At Double - Unix epoch when the resource was last updated.
- condition string
- An expression used for conditional control over plugin execution. If the expression evaluates to
trueduring the request flow, the plugin is executed; otherwise, it is skipped. - config
Gateway
Plugin Ai A2a Proxy Config - control
Plane stringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- created
At number - Unix epoch when the resource was created.
- enabled boolean
- Whether the plugin is applied. Default: true
- gateway
Plugin stringAi A2a Proxy Id - A string representing a UUID (universally unique identifier).
- instance
Name string - A unique string representing a UTF-8 encoded name.
- ordering
Gateway
Plugin Ai A2a Proxy Ordering - partials
Gateway
Plugin Ai A2a Proxy Partial[] - A list of partials to be used by the plugin.
- protocols string[]
- A set of strings representing HTTP protocols. Default: ["grpc","grpcs","http","https"]
- route
Gateway
Plugin Ai A2a Proxy Route - If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
- service
Gateway
Plugin Ai A2a Proxy Service - If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
- string[]
- An optional set of strings associated with the Plugin for grouping and filtering.
- updated
At number - Unix epoch when the resource was last updated.
- condition str
- An expression used for conditional control over plugin execution. If the expression evaluates to
trueduring the request flow, the plugin is executed; otherwise, it is skipped. - config
Gateway
Plugin Ai A2a Proxy Config Args - control_
plane_ strid - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- created_
at float - Unix epoch when the resource was created.
- enabled bool
- Whether the plugin is applied. Default: true
- gateway_
plugin_ strai_ a2a_ proxy_ id - A string representing a UUID (universally unique identifier).
- instance_
name str - A unique string representing a UTF-8 encoded name.
- ordering
Gateway
Plugin Ai A2a Proxy Ordering Args - partials
Sequence[Gateway
Plugin Ai A2a Proxy Partial Args] - A list of partials to be used by the plugin.
- protocols Sequence[str]
- A set of strings representing HTTP protocols. Default: ["grpc","grpcs","http","https"]
- route
Gateway
Plugin Ai A2a Proxy Route Args - If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
- service
Gateway
Plugin Ai A2a Proxy Service Args - If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
- Sequence[str]
- An optional set of strings associated with the Plugin for grouping and filtering.
- updated_
at float - Unix epoch when the resource was last updated.
- condition String
- An expression used for conditional control over plugin execution. If the expression evaluates to
trueduring the request flow, the plugin is executed; otherwise, it is skipped. - config Property Map
- control
Plane StringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- created
At Number - Unix epoch when the resource was created.
- enabled Boolean
- Whether the plugin is applied. Default: true
- gateway
Plugin StringAi A2a Proxy Id - A string representing a UUID (universally unique identifier).
- instance
Name String - A unique string representing a UTF-8 encoded name.
- ordering Property Map
- partials List<Property Map>
- A list of partials to be used by the plugin.
- protocols List<String>
- A set of strings representing HTTP protocols. Default: ["grpc","grpcs","http","https"]
- route Property Map
- If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
- service Property Map
- If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
- List<String>
- An optional set of strings associated with the Plugin for grouping and filtering.
- updated
At Number - Unix epoch when the resource was last updated.
Supporting Types
GatewayPluginAiA2aProxyConfig, GatewayPluginAiA2aProxyConfigArgs
- Logging
Gateway
Plugin Ai A2a Proxy Config Logging - Max
Request doubleBody Size - Maximum size of request body to parse for A2A metadata. Set to 0 for unlimited. Default: 1048576
- Logging
Gateway
Plugin Ai A2a Proxy Config Logging - Max
Request float64Body Size - Maximum size of request body to parse for A2A metadata. Set to 0 for unlimited. Default: 1048576
- logging
Gateway
Plugin Ai A2a Proxy Config Logging - max
Request DoubleBody Size - Maximum size of request body to parse for A2A metadata. Set to 0 for unlimited. Default: 1048576
- logging
Gateway
Plugin Ai A2a Proxy Config Logging - max
Request numberBody Size - Maximum size of request body to parse for A2A metadata. Set to 0 for unlimited. Default: 1048576
- logging
Gateway
Plugin Ai A2a Proxy Config Logging - max_
request_ floatbody_ size - Maximum size of request body to parse for A2A metadata. Set to 0 for unlimited. Default: 1048576
- logging Property Map
- max
Request NumberBody Size - Maximum size of request body to parse for A2A metadata. Set to 0 for unlimited. Default: 1048576
GatewayPluginAiA2aProxyConfigLogging, GatewayPluginAiA2aProxyConfigLoggingArgs
- Log
Payloads bool - If enabled, logs request/response bodies to Kong log plugin(s) output. Requires log_statistics to be enabled. Default: false
- Log
Statistics bool - If enabled, adds A2A metrics to Kong log plugin(s) output. Default: false
- Max
Payload doubleSize - Maximum size in bytes for logged request/response payloads. Payloads exceeding this size will be truncated. Default: 1048576
- Log
Payloads bool - If enabled, logs request/response bodies to Kong log plugin(s) output. Requires log_statistics to be enabled. Default: false
- Log
Statistics bool - If enabled, adds A2A metrics to Kong log plugin(s) output. Default: false
- Max
Payload float64Size - Maximum size in bytes for logged request/response payloads. Payloads exceeding this size will be truncated. Default: 1048576
- log
Payloads Boolean - If enabled, logs request/response bodies to Kong log plugin(s) output. Requires log_statistics to be enabled. Default: false
- log
Statistics Boolean - If enabled, adds A2A metrics to Kong log plugin(s) output. Default: false
- max
Payload DoubleSize - Maximum size in bytes for logged request/response payloads. Payloads exceeding this size will be truncated. Default: 1048576
- log
Payloads boolean - If enabled, logs request/response bodies to Kong log plugin(s) output. Requires log_statistics to be enabled. Default: false
- log
Statistics boolean - If enabled, adds A2A metrics to Kong log plugin(s) output. Default: false
- max
Payload numberSize - Maximum size in bytes for logged request/response payloads. Payloads exceeding this size will be truncated. Default: 1048576
- log_
payloads bool - If enabled, logs request/response bodies to Kong log plugin(s) output. Requires log_statistics to be enabled. Default: false
- log_
statistics bool - If enabled, adds A2A metrics to Kong log plugin(s) output. Default: false
- max_
payload_ floatsize - Maximum size in bytes for logged request/response payloads. Payloads exceeding this size will be truncated. Default: 1048576
- log
Payloads Boolean - If enabled, logs request/response bodies to Kong log plugin(s) output. Requires log_statistics to be enabled. Default: false
- log
Statistics Boolean - If enabled, adds A2A metrics to Kong log plugin(s) output. Default: false
- max
Payload NumberSize - Maximum size in bytes for logged request/response payloads. Payloads exceeding this size will be truncated. Default: 1048576
GatewayPluginAiA2aProxyOrdering, GatewayPluginAiA2aProxyOrderingArgs
GatewayPluginAiA2aProxyOrderingAfter, GatewayPluginAiA2aProxyOrderingAfterArgs
- Accesses List<string>
- Accesses []string
- accesses List<String>
- accesses string[]
- accesses Sequence[str]
- accesses List<String>
GatewayPluginAiA2aProxyOrderingBefore, GatewayPluginAiA2aProxyOrderingBeforeArgs
- Accesses List<string>
- Accesses []string
- accesses List<String>
- accesses string[]
- accesses Sequence[str]
- accesses List<String>
GatewayPluginAiA2aProxyPartial, GatewayPluginAiA2aProxyPartialArgs
GatewayPluginAiA2aProxyRoute, GatewayPluginAiA2aProxyRouteArgs
- Id string
- Id string
- id String
- id string
- id str
- id String
GatewayPluginAiA2aProxyService, GatewayPluginAiA2aProxyServiceArgs
- Id string
- Id string
- id String
- id string
- id str
- id String
Import
In Terraform v1.5.0 and later, the import block can be used with the id attribute, for example:
terraform
import {
to = konnect_gateway_plugin_ai_a2a_proxy.my_konnect_gateway_plugin_ai_a2a_proxy
id = jsonencode({
control_plane_id = "9524ec7d-36d9-465d-a8c5-83a3c9390458"
id = "3473c251-5b6c-4f45-b1ff-7ede735a366d"
})
}
The pulumi import command can be used, for example:
$ pulumi import konnect:index/gatewayPluginAiA2aProxy:GatewayPluginAiA2aProxy my_konnect_gateway_plugin_ai_a2a_proxy '{"control_plane_id": "9524ec7d-36d9-465d-a8c5-83a3c9390458", "id": "3473c251-5b6c-4f45-b1ff-7ede735a366d"}'
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- konnect kong/terraform-provider-konnect
- License
- Notes
- This Pulumi package is based on the
konnectTerraform Provider.
published on Friday, Apr 24, 2026 by kong
