1. Packages
  2. Packages
  3. Konnect Provider
  4. API Docs
  5. GatewayPluginAiA2aProxy
Viewing docs for konnect 3.14.0
published on Friday, Apr 24, 2026 by kong
Viewing docs for konnect 3.14.0
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:

    ControlPlaneId string
    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 true during the request flow, the plugin is executed; otherwise, it is skipped.
    Config GatewayPluginAiA2aProxyConfig
    CreatedAt double
    Unix epoch when the resource was created.
    Enabled bool
    Whether the plugin is applied. Default: true
    GatewayPluginAiA2aProxyId string
    A string representing a UUID (universally unique identifier).
    InstanceName string
    A unique string representing a UTF-8 encoded name.
    Ordering GatewayPluginAiA2aProxyOrdering
    Partials List<GatewayPluginAiA2aProxyPartial>
    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 GatewayPluginAiA2aProxyRoute
    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 GatewayPluginAiA2aProxyService
    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.
    Tags List<string>
    An optional set of strings associated with the Plugin for grouping and filtering.
    UpdatedAt double
    Unix epoch when the resource was last updated.
    ControlPlaneId string
    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 true during the request flow, the plugin is executed; otherwise, it is skipped.
    Config GatewayPluginAiA2aProxyConfigArgs
    CreatedAt float64
    Unix epoch when the resource was created.
    Enabled bool
    Whether the plugin is applied. Default: true
    GatewayPluginAiA2aProxyId string
    A string representing a UUID (universally unique identifier).
    InstanceName string
    A unique string representing a UTF-8 encoded name.
    Ordering GatewayPluginAiA2aProxyOrderingArgs
    Partials []GatewayPluginAiA2aProxyPartialArgs
    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 GatewayPluginAiA2aProxyRouteArgs
    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 GatewayPluginAiA2aProxyServiceArgs
    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.
    Tags []string
    An optional set of strings associated with the Plugin for grouping and filtering.
    UpdatedAt float64
    Unix epoch when the resource was last updated.
    controlPlaneId String
    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 true during the request flow, the plugin is executed; otherwise, it is skipped.
    config GatewayPluginAiA2aProxyConfig
    createdAt Double
    Unix epoch when the resource was created.
    enabled Boolean
    Whether the plugin is applied. Default: true
    gatewayPluginAiA2aProxyId String
    A string representing a UUID (universally unique identifier).
    instanceName String
    A unique string representing a UTF-8 encoded name.
    ordering GatewayPluginAiA2aProxyOrdering
    partials List<GatewayPluginAiA2aProxyPartial>
    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 GatewayPluginAiA2aProxyRoute
    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 GatewayPluginAiA2aProxyService
    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.
    tags List<String>
    An optional set of strings associated with the Plugin for grouping and filtering.
    updatedAt Double
    Unix epoch when the resource was last updated.
    controlPlaneId string
    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 true during the request flow, the plugin is executed; otherwise, it is skipped.
    config GatewayPluginAiA2aProxyConfig
    createdAt number
    Unix epoch when the resource was created.
    enabled boolean
    Whether the plugin is applied. Default: true
    gatewayPluginAiA2aProxyId string
    A string representing a UUID (universally unique identifier).
    instanceName string
    A unique string representing a UTF-8 encoded name.
    ordering GatewayPluginAiA2aProxyOrdering
    partials GatewayPluginAiA2aProxyPartial[]
    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 GatewayPluginAiA2aProxyRoute
    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 GatewayPluginAiA2aProxyService
    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.
    tags string[]
    An optional set of strings associated with the Plugin for grouping and filtering.
    updatedAt number
    Unix epoch when the resource was last updated.
    control_plane_id str
    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 true during the request flow, the plugin is executed; otherwise, it is skipped.
    config GatewayPluginAiA2aProxyConfigArgs
    created_at float
    Unix epoch when the resource was created.
    enabled bool
    Whether the plugin is applied. Default: true
    gateway_plugin_ai_a2a_proxy_id str
    A string representing a UUID (universally unique identifier).
    instance_name str
    A unique string representing a UTF-8 encoded name.
    ordering GatewayPluginAiA2aProxyOrderingArgs
    partials Sequence[GatewayPluginAiA2aProxyPartialArgs]
    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 GatewayPluginAiA2aProxyRouteArgs
    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 GatewayPluginAiA2aProxyServiceArgs
    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.
    tags 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.
    controlPlaneId String
    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 true during the request flow, the plugin is executed; otherwise, it is skipped.
    config Property Map
    createdAt Number
    Unix epoch when the resource was created.
    enabled Boolean
    Whether the plugin is applied. Default: true
    gatewayPluginAiA2aProxyId String
    A string representing a UUID (universally unique identifier).
    instanceName 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.
    tags List<String>
    An optional set of strings associated with the Plugin for grouping and filtering.
    updatedAt 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) -> GatewayPluginAiA2aProxy
    func 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.
    The following state arguments are supported:
    Condition string
    An expression used for conditional control over plugin execution. If the expression evaluates to true during the request flow, the plugin is executed; otherwise, it is skipped.
    Config GatewayPluginAiA2aProxyConfig
    ControlPlaneId string
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    CreatedAt double
    Unix epoch when the resource was created.
    Enabled bool
    Whether the plugin is applied. Default: true
    GatewayPluginAiA2aProxyId string
    A string representing a UUID (universally unique identifier).
    InstanceName string
    A unique string representing a UTF-8 encoded name.
    Ordering GatewayPluginAiA2aProxyOrdering
    Partials List<GatewayPluginAiA2aProxyPartial>
    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 GatewayPluginAiA2aProxyRoute
    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 GatewayPluginAiA2aProxyService
    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.
    Tags List<string>
    An optional set of strings associated with the Plugin for grouping and filtering.
    UpdatedAt 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 true during the request flow, the plugin is executed; otherwise, it is skipped.
    Config GatewayPluginAiA2aProxyConfigArgs
    ControlPlaneId string
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    CreatedAt float64
    Unix epoch when the resource was created.
    Enabled bool
    Whether the plugin is applied. Default: true
    GatewayPluginAiA2aProxyId string
    A string representing a UUID (universally unique identifier).
    InstanceName string
    A unique string representing a UTF-8 encoded name.
    Ordering GatewayPluginAiA2aProxyOrderingArgs
    Partials []GatewayPluginAiA2aProxyPartialArgs
    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 GatewayPluginAiA2aProxyRouteArgs
    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 GatewayPluginAiA2aProxyServiceArgs
    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.
    Tags []string
    An optional set of strings associated with the Plugin for grouping and filtering.
    UpdatedAt 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 true during the request flow, the plugin is executed; otherwise, it is skipped.
    config GatewayPluginAiA2aProxyConfig
    controlPlaneId String
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    createdAt Double
    Unix epoch when the resource was created.
    enabled Boolean
    Whether the plugin is applied. Default: true
    gatewayPluginAiA2aProxyId String
    A string representing a UUID (universally unique identifier).
    instanceName String
    A unique string representing a UTF-8 encoded name.
    ordering GatewayPluginAiA2aProxyOrdering
    partials List<GatewayPluginAiA2aProxyPartial>
    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 GatewayPluginAiA2aProxyRoute
    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 GatewayPluginAiA2aProxyService
    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.
    tags List<String>
    An optional set of strings associated with the Plugin for grouping and filtering.
    updatedAt 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 true during the request flow, the plugin is executed; otherwise, it is skipped.
    config GatewayPluginAiA2aProxyConfig
    controlPlaneId string
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    createdAt number
    Unix epoch when the resource was created.
    enabled boolean
    Whether the plugin is applied. Default: true
    gatewayPluginAiA2aProxyId string
    A string representing a UUID (universally unique identifier).
    instanceName string
    A unique string representing a UTF-8 encoded name.
    ordering GatewayPluginAiA2aProxyOrdering
    partials GatewayPluginAiA2aProxyPartial[]
    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 GatewayPluginAiA2aProxyRoute
    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 GatewayPluginAiA2aProxyService
    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.
    tags string[]
    An optional set of strings associated with the Plugin for grouping and filtering.
    updatedAt 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 true during the request flow, the plugin is executed; otherwise, it is skipped.
    config GatewayPluginAiA2aProxyConfigArgs
    control_plane_id str
    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_ai_a2a_proxy_id str
    A string representing a UUID (universally unique identifier).
    instance_name str
    A unique string representing a UTF-8 encoded name.
    ordering GatewayPluginAiA2aProxyOrderingArgs
    partials Sequence[GatewayPluginAiA2aProxyPartialArgs]
    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 GatewayPluginAiA2aProxyRouteArgs
    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 GatewayPluginAiA2aProxyServiceArgs
    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.
    tags 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 true during the request flow, the plugin is executed; otherwise, it is skipped.
    config Property Map
    controlPlaneId String
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    createdAt Number
    Unix epoch when the resource was created.
    enabled Boolean
    Whether the plugin is applied. Default: true
    gatewayPluginAiA2aProxyId String
    A string representing a UUID (universally unique identifier).
    instanceName 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.
    tags List<String>
    An optional set of strings associated with the Plugin for grouping and filtering.
    updatedAt Number
    Unix epoch when the resource was last updated.

    Supporting Types

    GatewayPluginAiA2aProxyConfig, GatewayPluginAiA2aProxyConfigArgs

    Logging GatewayPluginAiA2aProxyConfigLogging
    MaxRequestBodySize double
    Maximum size of request body to parse for A2A metadata. Set to 0 for unlimited. Default: 1048576
    Logging GatewayPluginAiA2aProxyConfigLogging
    MaxRequestBodySize float64
    Maximum size of request body to parse for A2A metadata. Set to 0 for unlimited. Default: 1048576
    logging GatewayPluginAiA2aProxyConfigLogging
    maxRequestBodySize Double
    Maximum size of request body to parse for A2A metadata. Set to 0 for unlimited. Default: 1048576
    logging GatewayPluginAiA2aProxyConfigLogging
    maxRequestBodySize number
    Maximum size of request body to parse for A2A metadata. Set to 0 for unlimited. Default: 1048576
    logging GatewayPluginAiA2aProxyConfigLogging
    max_request_body_size float
    Maximum size of request body to parse for A2A metadata. Set to 0 for unlimited. Default: 1048576
    logging Property Map
    maxRequestBodySize Number
    Maximum size of request body to parse for A2A metadata. Set to 0 for unlimited. Default: 1048576

    GatewayPluginAiA2aProxyConfigLogging, GatewayPluginAiA2aProxyConfigLoggingArgs

    LogPayloads bool
    If enabled, logs request/response bodies to Kong log plugin(s) output. Requires log_statistics to be enabled. Default: false
    LogStatistics bool
    If enabled, adds A2A metrics to Kong log plugin(s) output. Default: false
    MaxPayloadSize double
    Maximum size in bytes for logged request/response payloads. Payloads exceeding this size will be truncated. Default: 1048576
    LogPayloads bool
    If enabled, logs request/response bodies to Kong log plugin(s) output. Requires log_statistics to be enabled. Default: false
    LogStatistics bool
    If enabled, adds A2A metrics to Kong log plugin(s) output. Default: false
    MaxPayloadSize float64
    Maximum size in bytes for logged request/response payloads. Payloads exceeding this size will be truncated. Default: 1048576
    logPayloads Boolean
    If enabled, logs request/response bodies to Kong log plugin(s) output. Requires log_statistics to be enabled. Default: false
    logStatistics Boolean
    If enabled, adds A2A metrics to Kong log plugin(s) output. Default: false
    maxPayloadSize Double
    Maximum size in bytes for logged request/response payloads. Payloads exceeding this size will be truncated. Default: 1048576
    logPayloads boolean
    If enabled, logs request/response bodies to Kong log plugin(s) output. Requires log_statistics to be enabled. Default: false
    logStatistics boolean
    If enabled, adds A2A metrics to Kong log plugin(s) output. Default: false
    maxPayloadSize number
    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_size float
    Maximum size in bytes for logged request/response payloads. Payloads exceeding this size will be truncated. Default: 1048576
    logPayloads Boolean
    If enabled, logs request/response bodies to Kong log plugin(s) output. Requires log_statistics to be enabled. Default: false
    logStatistics Boolean
    If enabled, adds A2A metrics to Kong log plugin(s) output. Default: false
    maxPayloadSize Number
    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

    Id string
    A string representing a UUID (universally unique identifier).
    Name string
    A unique string representing a UTF-8 encoded name.
    Path string
    Id string
    A string representing a UUID (universally unique identifier).
    Name string
    A unique string representing a UTF-8 encoded name.
    Path string
    id String
    A string representing a UUID (universally unique identifier).
    name String
    A unique string representing a UTF-8 encoded name.
    path String
    id string
    A string representing a UUID (universally unique identifier).
    name string
    A unique string representing a UTF-8 encoded name.
    path string
    id str
    A string representing a UUID (universally unique identifier).
    name str
    A unique string representing a UTF-8 encoded name.
    path str
    id String
    A string representing a UUID (universally unique identifier).
    name String
    A unique string representing a UTF-8 encoded name.
    path String

    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 konnect Terraform Provider.
    Viewing docs for konnect 3.14.0
    published on Friday, Apr 24, 2026 by kong
      Try Pulumi Cloud free. Your team will thank you.