published on Friday, Sep 18, 2026 by kong
published on Friday, Sep 18, 2026 by kong
CatalogMCPImplementation Resource
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as konnect from "@pulumi/konnect";
const myCatalogmcpimplementation = new konnect.CatalogMcpImplementation("my_catalogmcpimplementation", {
aiGatewayMcpCatalog: {
implementation: {
config: {
aiGatewayId: "223e4567-e89b-12d3-a456-426614174999",
aiGatewayMcpServerId: "79087145-0159-4811-9042-6a9365f234bc",
},
},
},
catalogMcpId: "a0119846-f179-4d9f-a168-d701facce7fb",
});
import pulumi
import pulumi_konnect as konnect
my_catalogmcpimplementation = konnect.CatalogMcpImplementation("my_catalogmcpimplementation",
ai_gateway_mcp_catalog={
"implementation": {
"config": {
"ai_gateway_id": "223e4567-e89b-12d3-a456-426614174999",
"ai_gateway_mcp_server_id": "79087145-0159-4811-9042-6a9365f234bc",
},
},
},
catalog_mcp_id="a0119846-f179-4d9f-a168-d701facce7fb")
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.NewCatalogMcpImplementation(ctx, "my_catalogmcpimplementation", &konnect.CatalogMcpImplementationArgs{
AiGatewayMcpCatalog: &konnect.CatalogMcpImplementationAiGatewayMcpCatalogArgs{
Implementation: &konnect.CatalogMcpImplementationAiGatewayMcpCatalogImplementationArgs{
Config: &konnect.CatalogMcpImplementationAiGatewayMcpCatalogImplementationConfigArgs{
AiGatewayId: pulumi.String("223e4567-e89b-12d3-a456-426614174999"),
AiGatewayMcpServerId: pulumi.String("79087145-0159-4811-9042-6a9365f234bc"),
},
},
},
CatalogMcpId: pulumi.String("a0119846-f179-4d9f-a168-d701facce7fb"),
})
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 myCatalogmcpimplementation = new Konnect.CatalogMcpImplementation("my_catalogmcpimplementation", new()
{
AiGatewayMcpCatalog = new Konnect.Inputs.CatalogMcpImplementationAiGatewayMcpCatalogArgs
{
Implementation = new Konnect.Inputs.CatalogMcpImplementationAiGatewayMcpCatalogImplementationArgs
{
Config = new Konnect.Inputs.CatalogMcpImplementationAiGatewayMcpCatalogImplementationConfigArgs
{
AiGatewayId = "223e4567-e89b-12d3-a456-426614174999",
AiGatewayMcpServerId = "79087145-0159-4811-9042-6a9365f234bc",
},
},
},
CatalogMcpId = "a0119846-f179-4d9f-a168-d701facce7fb",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.konnect.CatalogMcpImplementation;
import com.pulumi.konnect.CatalogMcpImplementationArgs;
import com.pulumi.konnect.inputs.CatalogMcpImplementationAiGatewayMcpCatalogArgs;
import com.pulumi.konnect.inputs.CatalogMcpImplementationAiGatewayMcpCatalogImplementationArgs;
import com.pulumi.konnect.inputs.CatalogMcpImplementationAiGatewayMcpCatalogImplementationConfigArgs;
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 myCatalogmcpimplementation = new CatalogMcpImplementation("myCatalogmcpimplementation", CatalogMcpImplementationArgs.builder()
.aiGatewayMcpCatalog(CatalogMcpImplementationAiGatewayMcpCatalogArgs.builder()
.implementation(CatalogMcpImplementationAiGatewayMcpCatalogImplementationArgs.builder()
.config(CatalogMcpImplementationAiGatewayMcpCatalogImplementationConfigArgs.builder()
.aiGatewayId("223e4567-e89b-12d3-a456-426614174999")
.aiGatewayMcpServerId("79087145-0159-4811-9042-6a9365f234bc")
.build())
.build())
.build())
.catalogMcpId("a0119846-f179-4d9f-a168-d701facce7fb")
.build());
}
}
resources:
myCatalogmcpimplementation:
type: konnect:CatalogMcpImplementation
name: my_catalogmcpimplementation
properties:
aiGatewayMcpCatalog:
implementation:
config:
aiGatewayId: 223e4567-e89b-12d3-a456-426614174999
aiGatewayMcpServerId: 79087145-0159-4811-9042-6a9365f234bc
catalogMcpId: a0119846-f179-4d9f-a168-d701facce7fb
Example coming soon!
Create CatalogMcpImplementation Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new CatalogMcpImplementation(name: string, args: CatalogMcpImplementationArgs, opts?: CustomResourceOptions);@overload
def CatalogMcpImplementation(resource_name: str,
args: CatalogMcpImplementationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def CatalogMcpImplementation(resource_name: str,
opts: Optional[ResourceOptions] = None,
catalog_mcp_id: Optional[str] = None,
ai_gateway_mcp_catalog: Optional[CatalogMcpImplementationAiGatewayMcpCatalogArgs] = None)func NewCatalogMcpImplementation(ctx *Context, name string, args CatalogMcpImplementationArgs, opts ...ResourceOption) (*CatalogMcpImplementation, error)public CatalogMcpImplementation(string name, CatalogMcpImplementationArgs args, CustomResourceOptions? opts = null)
public CatalogMcpImplementation(String name, CatalogMcpImplementationArgs args)
public CatalogMcpImplementation(String name, CatalogMcpImplementationArgs args, CustomResourceOptions options)
type: konnect:CatalogMcpImplementation
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "konnect_catalog_mcp_implementation" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args CatalogMcpImplementationArgs
- 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 CatalogMcpImplementationArgs
- 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 CatalogMcpImplementationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CatalogMcpImplementationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CatalogMcpImplementationArgs
- 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 catalogMcpImplementationResource = new Konnect.CatalogMcpImplementation("catalogMcpImplementationResource", new()
{
CatalogMcpId = "string",
AiGatewayMcpCatalog = new Konnect.Inputs.CatalogMcpImplementationAiGatewayMcpCatalogArgs
{
CreatedAt = "string",
Id = "string",
Implementation = new Konnect.Inputs.CatalogMcpImplementationAiGatewayMcpCatalogImplementationArgs
{
Config = new Konnect.Inputs.CatalogMcpImplementationAiGatewayMcpCatalogImplementationConfigArgs
{
AiGatewayId = "string",
AiGatewayMcpServerId = "string",
},
},
UpdatedAt = "string",
},
});
example, err := konnect.NewCatalogMcpImplementation(ctx, "catalogMcpImplementationResource", &konnect.CatalogMcpImplementationArgs{
CatalogMcpId: pulumi.String("string"),
AiGatewayMcpCatalog: &konnect.CatalogMcpImplementationAiGatewayMcpCatalogArgs{
CreatedAt: pulumi.String("string"),
Id: pulumi.String("string"),
Implementation: &konnect.CatalogMcpImplementationAiGatewayMcpCatalogImplementationArgs{
Config: &konnect.CatalogMcpImplementationAiGatewayMcpCatalogImplementationConfigArgs{
AiGatewayId: pulumi.String("string"),
AiGatewayMcpServerId: pulumi.String("string"),
},
},
UpdatedAt: pulumi.String("string"),
},
})
resource "konnect_catalog_mcp_implementation" "catalogMcpImplementationResource" {
lifecycle {
create_before_destroy = true
}
catalog_mcp_id = "string"
ai_gateway_mcp_catalog = {
created_at = "string"
id = "string"
implementation = {
config = {
ai_gateway_id = "string"
ai_gateway_mcp_server_id = "string"
}
}
updated_at = "string"
}
}
var catalogMcpImplementationResource = new CatalogMcpImplementation("catalogMcpImplementationResource", CatalogMcpImplementationArgs.builder()
.catalogMcpId("string")
.aiGatewayMcpCatalog(CatalogMcpImplementationAiGatewayMcpCatalogArgs.builder()
.createdAt("string")
.id("string")
.implementation(CatalogMcpImplementationAiGatewayMcpCatalogImplementationArgs.builder()
.config(CatalogMcpImplementationAiGatewayMcpCatalogImplementationConfigArgs.builder()
.aiGatewayId("string")
.aiGatewayMcpServerId("string")
.build())
.build())
.updatedAt("string")
.build())
.build());
catalog_mcp_implementation_resource = konnect.CatalogMcpImplementation("catalogMcpImplementationResource",
catalog_mcp_id="string",
ai_gateway_mcp_catalog={
"created_at": "string",
"id": "string",
"implementation": {
"config": {
"ai_gateway_id": "string",
"ai_gateway_mcp_server_id": "string",
},
},
"updated_at": "string",
})
const catalogMcpImplementationResource = new konnect.CatalogMcpImplementation("catalogMcpImplementationResource", {
catalogMcpId: "string",
aiGatewayMcpCatalog: {
createdAt: "string",
id: "string",
implementation: {
config: {
aiGatewayId: "string",
aiGatewayMcpServerId: "string",
},
},
updatedAt: "string",
},
});
type: konnect:CatalogMcpImplementation
properties:
aiGatewayMcpCatalog:
createdAt: string
id: string
implementation:
config:
aiGatewayId: string
aiGatewayMcpServerId: string
updatedAt: string
catalogMcpId: string
CatalogMcpImplementation 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 CatalogMcpImplementation resource accepts the following input properties:
- Catalog
Mcp stringId - The unique identifier of the MCP. Requires replacement if changed.
- Ai
Gateway CatalogMcp Catalog Mcp Implementation Ai Gateway Mcp Catalog - An MCP implementation resource linked to an AI Gateway MCP Server. Requires replacement if changed.
- Catalog
Mcp stringId - The unique identifier of the MCP. Requires replacement if changed.
- Ai
Gateway CatalogMcp Catalog Mcp Implementation Ai Gateway Mcp Catalog Args - An MCP implementation resource linked to an AI Gateway MCP Server. Requires replacement if changed.
- catalog_
mcp_ stringid - The unique identifier of the MCP. Requires replacement if changed.
- ai_
gateway_ objectmcp_ catalog - An MCP implementation resource linked to an AI Gateway MCP Server. Requires replacement if changed.
- catalog
Mcp StringId - The unique identifier of the MCP. Requires replacement if changed.
- ai
Gateway CatalogMcp Catalog Mcp Implementation Ai Gateway Mcp Catalog - An MCP implementation resource linked to an AI Gateway MCP Server. Requires replacement if changed.
- catalog
Mcp stringId - The unique identifier of the MCP. Requires replacement if changed.
- ai
Gateway CatalogMcp Catalog Mcp Implementation Ai Gateway Mcp Catalog - An MCP implementation resource linked to an AI Gateway MCP Server. Requires replacement if changed.
- catalog_
mcp_ strid - The unique identifier of the MCP. Requires replacement if changed.
- ai_
gateway_ Catalogmcp_ catalog Mcp Implementation Ai Gateway Mcp Catalog Args - An MCP implementation resource linked to an AI Gateway MCP Server. Requires replacement if changed.
- catalog
Mcp StringId - The unique identifier of the MCP. Requires replacement if changed.
- ai
Gateway Property MapMcp Catalog - An MCP implementation resource linked to an AI Gateway MCP Server. Requires replacement if changed.
Outputs
All input properties are implicitly available as output properties. Additionally, the CatalogMcpImplementation resource produces the following output properties:
- Created
At string - An ISO-8601 timestamp representation of entity creation date.
- Id string
- The provider-assigned unique ID for this managed resource.
- Implementation
Catalog
Mcp Implementation Implementation - Schema to describe the type and configuration typing for an MCP implementation linked to an AI Gateway MCP Server.
- Updated
At string - An ISO-8601 timestamp representation of entity update date.
- Created
At string - An ISO-8601 timestamp representation of entity creation date.
- Id string
- The provider-assigned unique ID for this managed resource.
- Implementation
Catalog
Mcp Implementation Implementation - Schema to describe the type and configuration typing for an MCP implementation linked to an AI Gateway MCP Server.
- Updated
At string - An ISO-8601 timestamp representation of entity update date.
- created_
at string - An ISO-8601 timestamp representation of entity creation date.
- id string
- The provider-assigned unique ID for this managed resource.
- implementation object
- Schema to describe the type and configuration typing for an MCP implementation linked to an AI Gateway MCP Server.
- updated_
at string - An ISO-8601 timestamp representation of entity update date.
- created
At String - An ISO-8601 timestamp representation of entity creation date.
- id String
- The provider-assigned unique ID for this managed resource.
- implementation
Catalog
Mcp Implementation Implementation - Schema to describe the type and configuration typing for an MCP implementation linked to an AI Gateway MCP Server.
- updated
At String - An ISO-8601 timestamp representation of entity update date.
- created
At string - An ISO-8601 timestamp representation of entity creation date.
- id string
- The provider-assigned unique ID for this managed resource.
- implementation
Catalog
Mcp Implementation Implementation - Schema to describe the type and configuration typing for an MCP implementation linked to an AI Gateway MCP Server.
- updated
At string - An ISO-8601 timestamp representation of entity update date.
- created_
at str - An ISO-8601 timestamp representation of entity creation date.
- id str
- The provider-assigned unique ID for this managed resource.
- implementation
Catalog
Mcp Implementation Implementation - Schema to describe the type and configuration typing for an MCP implementation linked to an AI Gateway MCP Server.
- updated_
at str - An ISO-8601 timestamp representation of entity update date.
- created
At String - An ISO-8601 timestamp representation of entity creation date.
- id String
- The provider-assigned unique ID for this managed resource.
- implementation Property Map
- Schema to describe the type and configuration typing for an MCP implementation linked to an AI Gateway MCP Server.
- updated
At String - An ISO-8601 timestamp representation of entity update date.
Look up Existing CatalogMcpImplementation Resource
Get an existing CatalogMcpImplementation 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?: CatalogMcpImplementationState, opts?: CustomResourceOptions): CatalogMcpImplementation@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
ai_gateway_mcp_catalog: Optional[CatalogMcpImplementationAiGatewayMcpCatalogArgs] = None,
catalog_mcp_id: Optional[str] = None,
created_at: Optional[str] = None,
implementation: Optional[CatalogMcpImplementationImplementationArgs] = None,
updated_at: Optional[str] = None) -> CatalogMcpImplementationfunc GetCatalogMcpImplementation(ctx *Context, name string, id IDInput, state *CatalogMcpImplementationState, opts ...ResourceOption) (*CatalogMcpImplementation, error)public static CatalogMcpImplementation Get(string name, Input<string> id, CatalogMcpImplementationState? state, CustomResourceOptions? opts = null)public static CatalogMcpImplementation get(String name, Output<String> id, CatalogMcpImplementationState state, CustomResourceOptions options)resources: _: type: konnect:CatalogMcpImplementation get: id: ${id}import {
to = konnect_catalog_mcp_implementation.example
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.
- Ai
Gateway CatalogMcp Catalog Mcp Implementation Ai Gateway Mcp Catalog - An MCP implementation resource linked to an AI Gateway MCP Server. Requires replacement if changed.
- Catalog
Mcp stringId - The unique identifier of the MCP. Requires replacement if changed.
- Created
At string - An ISO-8601 timestamp representation of entity creation date.
- Implementation
Catalog
Mcp Implementation Implementation - Schema to describe the type and configuration typing for an MCP implementation linked to an AI Gateway MCP Server.
- Updated
At string - An ISO-8601 timestamp representation of entity update date.
- Ai
Gateway CatalogMcp Catalog Mcp Implementation Ai Gateway Mcp Catalog Args - An MCP implementation resource linked to an AI Gateway MCP Server. Requires replacement if changed.
- Catalog
Mcp stringId - The unique identifier of the MCP. Requires replacement if changed.
- Created
At string - An ISO-8601 timestamp representation of entity creation date.
- Implementation
Catalog
Mcp Implementation Implementation Args - Schema to describe the type and configuration typing for an MCP implementation linked to an AI Gateway MCP Server.
- Updated
At string - An ISO-8601 timestamp representation of entity update date.
- ai_
gateway_ objectmcp_ catalog - An MCP implementation resource linked to an AI Gateway MCP Server. Requires replacement if changed.
- catalog_
mcp_ stringid - The unique identifier of the MCP. Requires replacement if changed.
- created_
at string - An ISO-8601 timestamp representation of entity creation date.
- implementation object
- Schema to describe the type and configuration typing for an MCP implementation linked to an AI Gateway MCP Server.
- updated_
at string - An ISO-8601 timestamp representation of entity update date.
- ai
Gateway CatalogMcp Catalog Mcp Implementation Ai Gateway Mcp Catalog - An MCP implementation resource linked to an AI Gateway MCP Server. Requires replacement if changed.
- catalog
Mcp StringId - The unique identifier of the MCP. Requires replacement if changed.
- created
At String - An ISO-8601 timestamp representation of entity creation date.
- implementation
Catalog
Mcp Implementation Implementation - Schema to describe the type and configuration typing for an MCP implementation linked to an AI Gateway MCP Server.
- updated
At String - An ISO-8601 timestamp representation of entity update date.
- ai
Gateway CatalogMcp Catalog Mcp Implementation Ai Gateway Mcp Catalog - An MCP implementation resource linked to an AI Gateway MCP Server. Requires replacement if changed.
- catalog
Mcp stringId - The unique identifier of the MCP. Requires replacement if changed.
- created
At string - An ISO-8601 timestamp representation of entity creation date.
- implementation
Catalog
Mcp Implementation Implementation - Schema to describe the type and configuration typing for an MCP implementation linked to an AI Gateway MCP Server.
- updated
At string - An ISO-8601 timestamp representation of entity update date.
- ai_
gateway_ Catalogmcp_ catalog Mcp Implementation Ai Gateway Mcp Catalog Args - An MCP implementation resource linked to an AI Gateway MCP Server. Requires replacement if changed.
- catalog_
mcp_ strid - The unique identifier of the MCP. Requires replacement if changed.
- created_
at str - An ISO-8601 timestamp representation of entity creation date.
- implementation
Catalog
Mcp Implementation Implementation Args - Schema to describe the type and configuration typing for an MCP implementation linked to an AI Gateway MCP Server.
- updated_
at str - An ISO-8601 timestamp representation of entity update date.
- ai
Gateway Property MapMcp Catalog - An MCP implementation resource linked to an AI Gateway MCP Server. Requires replacement if changed.
- catalog
Mcp StringId - The unique identifier of the MCP. Requires replacement if changed.
- created
At String - An ISO-8601 timestamp representation of entity creation date.
- implementation Property Map
- Schema to describe the type and configuration typing for an MCP implementation linked to an AI Gateway MCP Server.
- updated
At String - An ISO-8601 timestamp representation of entity update date.
Supporting Types
CatalogMcpImplementationAiGatewayMcpCatalog, CatalogMcpImplementationAiGatewayMcpCatalogArgs
- Created
At string - An ISO-8601 timestamp representation of entity creation date.
- Id string
- The unique identifier of the implementation (link) record.
- Implementation
Catalog
Mcp Implementation Ai Gateway Mcp Catalog Implementation - Schema to describe the type and configuration typing for an MCP implementation linked to an AI Gateway MCP Server. Not Null; Requires replacement if changed.
- Updated
At string - An ISO-8601 timestamp representation of entity update date.
- Created
At string - An ISO-8601 timestamp representation of entity creation date.
- Id string
- The unique identifier of the implementation (link) record.
- Implementation
Catalog
Mcp Implementation Ai Gateway Mcp Catalog Implementation - Schema to describe the type and configuration typing for an MCP implementation linked to an AI Gateway MCP Server. Not Null; Requires replacement if changed.
- Updated
At string - An ISO-8601 timestamp representation of entity update date.
- created_
at string - An ISO-8601 timestamp representation of entity creation date.
- id string
- The unique identifier of the implementation (link) record.
- implementation object
- Schema to describe the type and configuration typing for an MCP implementation linked to an AI Gateway MCP Server. Not Null; Requires replacement if changed.
- updated_
at string - An ISO-8601 timestamp representation of entity update date.
- created
At String - An ISO-8601 timestamp representation of entity creation date.
- id String
- The unique identifier of the implementation (link) record.
- implementation
Catalog
Mcp Implementation Ai Gateway Mcp Catalog Implementation - Schema to describe the type and configuration typing for an MCP implementation linked to an AI Gateway MCP Server. Not Null; Requires replacement if changed.
- updated
At String - An ISO-8601 timestamp representation of entity update date.
- created
At string - An ISO-8601 timestamp representation of entity creation date.
- id string
- The unique identifier of the implementation (link) record.
- implementation
Catalog
Mcp Implementation Ai Gateway Mcp Catalog Implementation - Schema to describe the type and configuration typing for an MCP implementation linked to an AI Gateway MCP Server. Not Null; Requires replacement if changed.
- updated
At string - An ISO-8601 timestamp representation of entity update date.
- created_
at str - An ISO-8601 timestamp representation of entity creation date.
- id str
- The unique identifier of the implementation (link) record.
- implementation
Catalog
Mcp Implementation Ai Gateway Mcp Catalog Implementation - Schema to describe the type and configuration typing for an MCP implementation linked to an AI Gateway MCP Server. Not Null; Requires replacement if changed.
- updated_
at str - An ISO-8601 timestamp representation of entity update date.
- created
At String - An ISO-8601 timestamp representation of entity creation date.
- id String
- The unique identifier of the implementation (link) record.
- implementation Property Map
- Schema to describe the type and configuration typing for an MCP implementation linked to an AI Gateway MCP Server. Not Null; Requires replacement if changed.
- updated
At String - An ISO-8601 timestamp representation of entity update date.
CatalogMcpImplementationAiGatewayMcpCatalogImplementation, CatalogMcpImplementationAiGatewayMcpCatalogImplementationArgs
- Config
Catalog
Mcp Implementation Ai Gateway Mcp Catalog Implementation Config - Configuration for an MCP implementation linked to an AI Gateway MCP Server. Not Null; Requires replacement if changed.
- Config
Catalog
Mcp Implementation Ai Gateway Mcp Catalog Implementation Config - Configuration for an MCP implementation linked to an AI Gateway MCP Server. Not Null; Requires replacement if changed.
- config
Catalog
Mcp Implementation Ai Gateway Mcp Catalog Implementation Config - Configuration for an MCP implementation linked to an AI Gateway MCP Server. Not Null; Requires replacement if changed.
- config
Catalog
Mcp Implementation Ai Gateway Mcp Catalog Implementation Config - Configuration for an MCP implementation linked to an AI Gateway MCP Server. Not Null; Requires replacement if changed.
- config
Catalog
Mcp Implementation Ai Gateway Mcp Catalog Implementation Config - Configuration for an MCP implementation linked to an AI Gateway MCP Server. Not Null; Requires replacement if changed.
- config Property Map
- Configuration for an MCP implementation linked to an AI Gateway MCP Server. Not Null; Requires replacement if changed.
CatalogMcpImplementationAiGatewayMcpCatalogImplementationConfig, CatalogMcpImplementationAiGatewayMcpCatalogImplementationConfigArgs
- Ai
Gateway stringId - The AI Gateway control plane the linked model belongs to. Not Null; Requires replacement if changed.
- Ai
Gateway stringMcp Server Id - The identifier of the linked AI Gateway MCP server. Not Null; Requires replacement if changed.
- Ai
Gateway stringId - The AI Gateway control plane the linked model belongs to. Not Null; Requires replacement if changed.
- Ai
Gateway stringMcp Server Id - The identifier of the linked AI Gateway MCP server. Not Null; Requires replacement if changed.
- ai_
gateway_ stringid - The AI Gateway control plane the linked model belongs to. Not Null; Requires replacement if changed.
- ai_
gateway_ stringmcp_ server_ id - The identifier of the linked AI Gateway MCP server. Not Null; Requires replacement if changed.
- ai
Gateway StringId - The AI Gateway control plane the linked model belongs to. Not Null; Requires replacement if changed.
- ai
Gateway StringMcp Server Id - The identifier of the linked AI Gateway MCP server. Not Null; Requires replacement if changed.
- ai
Gateway stringId - The AI Gateway control plane the linked model belongs to. Not Null; Requires replacement if changed.
- ai
Gateway stringMcp Server Id - The identifier of the linked AI Gateway MCP server. Not Null; Requires replacement if changed.
- ai_
gateway_ strid - The AI Gateway control plane the linked model belongs to. Not Null; Requires replacement if changed.
- ai_
gateway_ strmcp_ server_ id - The identifier of the linked AI Gateway MCP server. Not Null; Requires replacement if changed.
- ai
Gateway StringId - The AI Gateway control plane the linked model belongs to. Not Null; Requires replacement if changed.
- ai
Gateway StringMcp Server Id - The identifier of the linked AI Gateway MCP server. Not Null; Requires replacement if changed.
CatalogMcpImplementationImplementation, CatalogMcpImplementationImplementationArgs
- Config
Catalog
Mcp Implementation Implementation Config - Configuration for an MCP implementation linked to an AI Gateway MCP Server.
- Config
Catalog
Mcp Implementation Implementation Config - Configuration for an MCP implementation linked to an AI Gateway MCP Server.
- config
Catalog
Mcp Implementation Implementation Config - Configuration for an MCP implementation linked to an AI Gateway MCP Server.
- config
Catalog
Mcp Implementation Implementation Config - Configuration for an MCP implementation linked to an AI Gateway MCP Server.
- config
Catalog
Mcp Implementation Implementation Config - Configuration for an MCP implementation linked to an AI Gateway MCP Server.
- config Property Map
- Configuration for an MCP implementation linked to an AI Gateway MCP Server.
CatalogMcpImplementationImplementationConfig, CatalogMcpImplementationImplementationConfigArgs
- Ai
Gateway stringId - The AI Gateway control plane the linked model belongs to.
- Ai
Gateway stringMcp Server Id - The identifier of the linked AI Gateway MCP server.
- Ai
Gateway stringId - The AI Gateway control plane the linked model belongs to.
- Ai
Gateway stringMcp Server Id - The identifier of the linked AI Gateway MCP server.
- ai_
gateway_ stringid - The AI Gateway control plane the linked model belongs to.
- ai_
gateway_ stringmcp_ server_ id - The identifier of the linked AI Gateway MCP server.
- ai
Gateway StringId - The AI Gateway control plane the linked model belongs to.
- ai
Gateway StringMcp Server Id - The identifier of the linked AI Gateway MCP server.
- ai
Gateway stringId - The AI Gateway control plane the linked model belongs to.
- ai
Gateway stringMcp Server Id - The identifier of the linked AI Gateway MCP server.
- ai_
gateway_ strid - The AI Gateway control plane the linked model belongs to.
- ai_
gateway_ strmcp_ server_ id - The identifier of the linked AI Gateway MCP server.
- ai
Gateway StringId - The AI Gateway control plane the linked model belongs to.
- ai
Gateway StringMcp Server Id - The identifier of the linked AI Gateway MCP server.
Import
In Terraform v1.5.0 and later, the import block can be used with the id attribute, for example:
terraform
import {
to = konnect_catalog_mcp_implementation.my_konnect_catalog_mcp_implementation
id = jsonencode({
catalog_mcp_id = "a0119846-f179-4d9f-a168-d701facce7fb"
id = "7703e2f2-f9c0-47e3-9146-5fa50486b871"
})
}
The pulumi import command can be used, for example:
$ pulumi import konnect:index/catalogMcpImplementation:CatalogMcpImplementation my_konnect_catalog_mcp_implementation '{"catalog_mcp_id": "a0119846-f179-4d9f-a168-d701facce7fb", "id": "7703e2f2-f9c0-47e3-9146-5fa50486b871"}'
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, Sep 18, 2026 by kong