1. Registry
  2. Packages
  3. Konnect Provider
  4. API Docs
  5. CatalogAiModelImplementation
Viewing docs for konnect 3.23.0
published on Friday, Sep 18, 2026 by kong
Viewing docs for konnect 3.23.0
published on Friday, Sep 18, 2026 by kong

    CatalogAiModelImplementation Resource

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as konnect from "@pulumi/konnect";
    
    const myCatalogaimodelimplementation = new konnect.CatalogAiModelImplementation("my_catalogaimodelimplementation", {
        aiGatewayId: "223e4567-e89b-12d3-a456-426614174999",
        aiGatewayModelId: "gw-model-abc",
        catalogAiModelId: "123e4567-e89b-12d3-a456-426614174000",
    });
    
    import pulumi
    import pulumi_konnect as konnect
    
    my_catalogaimodelimplementation = konnect.CatalogAiModelImplementation("my_catalogaimodelimplementation",
        ai_gateway_id="223e4567-e89b-12d3-a456-426614174999",
        ai_gateway_model_id="gw-model-abc",
        catalog_ai_model_id="123e4567-e89b-12d3-a456-426614174000")
    
    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.NewCatalogAiModelImplementation(ctx, "my_catalogaimodelimplementation", &konnect.CatalogAiModelImplementationArgs{
    			AiGatewayId:      pulumi.String("223e4567-e89b-12d3-a456-426614174999"),
    			AiGatewayModelId: pulumi.String("gw-model-abc"),
    			CatalogAiModelId: pulumi.String("123e4567-e89b-12d3-a456-426614174000"),
    		})
    		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 myCatalogaimodelimplementation = new Konnect.CatalogAiModelImplementation("my_catalogaimodelimplementation", new()
        {
            AiGatewayId = "223e4567-e89b-12d3-a456-426614174999",
            AiGatewayModelId = "gw-model-abc",
            CatalogAiModelId = "123e4567-e89b-12d3-a456-426614174000",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.konnect.CatalogAiModelImplementation;
    import com.pulumi.konnect.CatalogAiModelImplementationArgs;
    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 myCatalogaimodelimplementation = new CatalogAiModelImplementation("myCatalogaimodelimplementation", CatalogAiModelImplementationArgs.builder()
                .aiGatewayId("223e4567-e89b-12d3-a456-426614174999")
                .aiGatewayModelId("gw-model-abc")
                .catalogAiModelId("123e4567-e89b-12d3-a456-426614174000")
                .build());
    
        }
    }
    
    resources:
      myCatalogaimodelimplementation:
        type: konnect:CatalogAiModelImplementation
        name: my_catalogaimodelimplementation
        properties:
          aiGatewayId: 223e4567-e89b-12d3-a456-426614174999
          aiGatewayModelId: gw-model-abc
          catalogAiModelId: 123e4567-e89b-12d3-a456-426614174000
    
    Example coming soon!
    

    Create CatalogAiModelImplementation Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new CatalogAiModelImplementation(name: string, args: CatalogAiModelImplementationArgs, opts?: CustomResourceOptions);
    @overload
    def CatalogAiModelImplementation(resource_name: str,
                                     args: CatalogAiModelImplementationArgs,
                                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def CatalogAiModelImplementation(resource_name: str,
                                     opts: Optional[ResourceOptions] = None,
                                     ai_gateway_id: Optional[str] = None,
                                     ai_gateway_model_id: Optional[str] = None,
                                     catalog_ai_model_id: Optional[str] = None)
    func NewCatalogAiModelImplementation(ctx *Context, name string, args CatalogAiModelImplementationArgs, opts ...ResourceOption) (*CatalogAiModelImplementation, error)
    public CatalogAiModelImplementation(string name, CatalogAiModelImplementationArgs args, CustomResourceOptions? opts = null)
    public CatalogAiModelImplementation(String name, CatalogAiModelImplementationArgs args)
    public CatalogAiModelImplementation(String name, CatalogAiModelImplementationArgs args, CustomResourceOptions options)
    
    type: konnect:CatalogAiModelImplementation
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "konnect_catalog_ai_model_implementation" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args CatalogAiModelImplementationArgs
    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 CatalogAiModelImplementationArgs
    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 CatalogAiModelImplementationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CatalogAiModelImplementationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CatalogAiModelImplementationArgs
    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 catalogAiModelImplementationResource = new Konnect.CatalogAiModelImplementation("catalogAiModelImplementationResource", new()
    {
        AiGatewayId = "string",
        AiGatewayModelId = "string",
        CatalogAiModelId = "string",
    });
    
    example, err := konnect.NewCatalogAiModelImplementation(ctx, "catalogAiModelImplementationResource", &konnect.CatalogAiModelImplementationArgs{
    	AiGatewayId:      pulumi.String("string"),
    	AiGatewayModelId: pulumi.String("string"),
    	CatalogAiModelId: pulumi.String("string"),
    })
    
    resource "konnect_catalog_ai_model_implementation" "catalogAiModelImplementationResource" {
      lifecycle {
        create_before_destroy = true
      }
      ai_gateway_id       = "string"
      ai_gateway_model_id = "string"
      catalog_ai_model_id = "string"
    }
    
    var catalogAiModelImplementationResource = new CatalogAiModelImplementation("catalogAiModelImplementationResource", CatalogAiModelImplementationArgs.builder()
        .aiGatewayId("string")
        .aiGatewayModelId("string")
        .catalogAiModelId("string")
        .build());
    
    catalog_ai_model_implementation_resource = konnect.CatalogAiModelImplementation("catalogAiModelImplementationResource",
        ai_gateway_id="string",
        ai_gateway_model_id="string",
        catalog_ai_model_id="string")
    
    const catalogAiModelImplementationResource = new konnect.CatalogAiModelImplementation("catalogAiModelImplementationResource", {
        aiGatewayId: "string",
        aiGatewayModelId: "string",
        catalogAiModelId: "string",
    });
    
    type: konnect:CatalogAiModelImplementation
    properties:
        aiGatewayId: string
        aiGatewayModelId: string
        catalogAiModelId: string
    

    CatalogAiModelImplementation 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 CatalogAiModelImplementation resource accepts the following input properties:

    AiGatewayId string
    The AI Gateway control plane uuid the model belongs to. Requires replacement if changed.
    AiGatewayModelId string
    The text or uuid identifier of the AI Gateway model to link. Requires replacement if changed.
    CatalogAiModelId string
    The unique identifier of the AI Model. Requires replacement if changed.
    AiGatewayId string
    The AI Gateway control plane uuid the model belongs to. Requires replacement if changed.
    AiGatewayModelId string
    The text or uuid identifier of the AI Gateway model to link. Requires replacement if changed.
    CatalogAiModelId string
    The unique identifier of the AI Model. Requires replacement if changed.
    ai_gateway_id string
    The AI Gateway control plane uuid the model belongs to. Requires replacement if changed.
    ai_gateway_model_id string
    The text or uuid identifier of the AI Gateway model to link. Requires replacement if changed.
    catalog_ai_model_id string
    The unique identifier of the AI Model. Requires replacement if changed.
    aiGatewayId String
    The AI Gateway control plane uuid the model belongs to. Requires replacement if changed.
    aiGatewayModelId String
    The text or uuid identifier of the AI Gateway model to link. Requires replacement if changed.
    catalogAiModelId String
    The unique identifier of the AI Model. Requires replacement if changed.
    aiGatewayId string
    The AI Gateway control plane uuid the model belongs to. Requires replacement if changed.
    aiGatewayModelId string
    The text or uuid identifier of the AI Gateway model to link. Requires replacement if changed.
    catalogAiModelId string
    The unique identifier of the AI Model. Requires replacement if changed.
    ai_gateway_id str
    The AI Gateway control plane uuid the model belongs to. Requires replacement if changed.
    ai_gateway_model_id str
    The text or uuid identifier of the AI Gateway model to link. Requires replacement if changed.
    catalog_ai_model_id str
    The unique identifier of the AI Model. Requires replacement if changed.
    aiGatewayId String
    The AI Gateway control plane uuid the model belongs to. Requires replacement if changed.
    aiGatewayModelId String
    The text or uuid identifier of the AI Gateway model to link. Requires replacement if changed.
    catalogAiModelId String
    The unique identifier of the AI Model. Requires replacement if changed.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the CatalogAiModelImplementation resource produces the following output properties:

    AiModelId string
    The identifier of the parent AI Model.
    CreatedAt string
    An ISO-8601 timestamp representation of entity creation date.
    GatewayControlPlaneId string
    The AI Gateway control plane uuid the linked model belongs to.
    GatewayModelId string
    The text or uuid identifier of the linked AI Gateway model.
    Id string
    The provider-assigned unique ID for this managed resource.
    UpdatedAt string
    An ISO-8601 timestamp representation of entity update date.
    AiModelId string
    The identifier of the parent AI Model.
    CreatedAt string
    An ISO-8601 timestamp representation of entity creation date.
    GatewayControlPlaneId string
    The AI Gateway control plane uuid the linked model belongs to.
    GatewayModelId string
    The text or uuid identifier of the linked AI Gateway model.
    Id string
    The provider-assigned unique ID for this managed resource.
    UpdatedAt string
    An ISO-8601 timestamp representation of entity update date.
    ai_model_id string
    The identifier of the parent AI Model.
    created_at string
    An ISO-8601 timestamp representation of entity creation date.
    gateway_control_plane_id string
    The AI Gateway control plane uuid the linked model belongs to.
    gateway_model_id string
    The text or uuid identifier of the linked AI Gateway model.
    id string
    The provider-assigned unique ID for this managed resource.
    updated_at string
    An ISO-8601 timestamp representation of entity update date.
    aiModelId String
    The identifier of the parent AI Model.
    createdAt String
    An ISO-8601 timestamp representation of entity creation date.
    gatewayControlPlaneId String
    The AI Gateway control plane uuid the linked model belongs to.
    gatewayModelId String
    The text or uuid identifier of the linked AI Gateway model.
    id String
    The provider-assigned unique ID for this managed resource.
    updatedAt String
    An ISO-8601 timestamp representation of entity update date.
    aiModelId string
    The identifier of the parent AI Model.
    createdAt string
    An ISO-8601 timestamp representation of entity creation date.
    gatewayControlPlaneId string
    The AI Gateway control plane uuid the linked model belongs to.
    gatewayModelId string
    The text or uuid identifier of the linked AI Gateway model.
    id string
    The provider-assigned unique ID for this managed resource.
    updatedAt string
    An ISO-8601 timestamp representation of entity update date.
    ai_model_id str
    The identifier of the parent AI Model.
    created_at str
    An ISO-8601 timestamp representation of entity creation date.
    gateway_control_plane_id str
    The AI Gateway control plane uuid the linked model belongs to.
    gateway_model_id str
    The text or uuid identifier of the linked AI Gateway model.
    id str
    The provider-assigned unique ID for this managed resource.
    updated_at str
    An ISO-8601 timestamp representation of entity update date.
    aiModelId String
    The identifier of the parent AI Model.
    createdAt String
    An ISO-8601 timestamp representation of entity creation date.
    gatewayControlPlaneId String
    The AI Gateway control plane uuid the linked model belongs to.
    gatewayModelId String
    The text or uuid identifier of the linked AI Gateway model.
    id String
    The provider-assigned unique ID for this managed resource.
    updatedAt String
    An ISO-8601 timestamp representation of entity update date.

    Look up Existing CatalogAiModelImplementation Resource

    Get an existing CatalogAiModelImplementation 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?: CatalogAiModelImplementationState, opts?: CustomResourceOptions): CatalogAiModelImplementation
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            ai_gateway_id: Optional[str] = None,
            ai_gateway_model_id: Optional[str] = None,
            ai_model_id: Optional[str] = None,
            catalog_ai_model_id: Optional[str] = None,
            created_at: Optional[str] = None,
            gateway_control_plane_id: Optional[str] = None,
            gateway_model_id: Optional[str] = None,
            updated_at: Optional[str] = None) -> CatalogAiModelImplementation
    func GetCatalogAiModelImplementation(ctx *Context, name string, id IDInput, state *CatalogAiModelImplementationState, opts ...ResourceOption) (*CatalogAiModelImplementation, error)
    public static CatalogAiModelImplementation Get(string name, Input<string> id, CatalogAiModelImplementationState? state, CustomResourceOptions? opts = null)
    public static CatalogAiModelImplementation get(String name, Output<String> id, CatalogAiModelImplementationState state, CustomResourceOptions options)
    resources:  _:    type: konnect:CatalogAiModelImplementation    get:      id: ${id}
    import {
      to = konnect_catalog_ai_model_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.
    The following state arguments are supported:
    AiGatewayId string
    The AI Gateway control plane uuid the model belongs to. Requires replacement if changed.
    AiGatewayModelId string
    The text or uuid identifier of the AI Gateway model to link. Requires replacement if changed.
    AiModelId string
    The identifier of the parent AI Model.
    CatalogAiModelId string
    The unique identifier of the AI Model. Requires replacement if changed.
    CreatedAt string
    An ISO-8601 timestamp representation of entity creation date.
    GatewayControlPlaneId string
    The AI Gateway control plane uuid the linked model belongs to.
    GatewayModelId string
    The text or uuid identifier of the linked AI Gateway model.
    UpdatedAt string
    An ISO-8601 timestamp representation of entity update date.
    AiGatewayId string
    The AI Gateway control plane uuid the model belongs to. Requires replacement if changed.
    AiGatewayModelId string
    The text or uuid identifier of the AI Gateway model to link. Requires replacement if changed.
    AiModelId string
    The identifier of the parent AI Model.
    CatalogAiModelId string
    The unique identifier of the AI Model. Requires replacement if changed.
    CreatedAt string
    An ISO-8601 timestamp representation of entity creation date.
    GatewayControlPlaneId string
    The AI Gateway control plane uuid the linked model belongs to.
    GatewayModelId string
    The text or uuid identifier of the linked AI Gateway model.
    UpdatedAt string
    An ISO-8601 timestamp representation of entity update date.
    ai_gateway_id string
    The AI Gateway control plane uuid the model belongs to. Requires replacement if changed.
    ai_gateway_model_id string
    The text or uuid identifier of the AI Gateway model to link. Requires replacement if changed.
    ai_model_id string
    The identifier of the parent AI Model.
    catalog_ai_model_id string
    The unique identifier of the AI Model. Requires replacement if changed.
    created_at string
    An ISO-8601 timestamp representation of entity creation date.
    gateway_control_plane_id string
    The AI Gateway control plane uuid the linked model belongs to.
    gateway_model_id string
    The text or uuid identifier of the linked AI Gateway model.
    updated_at string
    An ISO-8601 timestamp representation of entity update date.
    aiGatewayId String
    The AI Gateway control plane uuid the model belongs to. Requires replacement if changed.
    aiGatewayModelId String
    The text or uuid identifier of the AI Gateway model to link. Requires replacement if changed.
    aiModelId String
    The identifier of the parent AI Model.
    catalogAiModelId String
    The unique identifier of the AI Model. Requires replacement if changed.
    createdAt String
    An ISO-8601 timestamp representation of entity creation date.
    gatewayControlPlaneId String
    The AI Gateway control plane uuid the linked model belongs to.
    gatewayModelId String
    The text or uuid identifier of the linked AI Gateway model.
    updatedAt String
    An ISO-8601 timestamp representation of entity update date.
    aiGatewayId string
    The AI Gateway control plane uuid the model belongs to. Requires replacement if changed.
    aiGatewayModelId string
    The text or uuid identifier of the AI Gateway model to link. Requires replacement if changed.
    aiModelId string
    The identifier of the parent AI Model.
    catalogAiModelId string
    The unique identifier of the AI Model. Requires replacement if changed.
    createdAt string
    An ISO-8601 timestamp representation of entity creation date.
    gatewayControlPlaneId string
    The AI Gateway control plane uuid the linked model belongs to.
    gatewayModelId string
    The text or uuid identifier of the linked AI Gateway model.
    updatedAt string
    An ISO-8601 timestamp representation of entity update date.
    ai_gateway_id str
    The AI Gateway control plane uuid the model belongs to. Requires replacement if changed.
    ai_gateway_model_id str
    The text or uuid identifier of the AI Gateway model to link. Requires replacement if changed.
    ai_model_id str
    The identifier of the parent AI Model.
    catalog_ai_model_id str
    The unique identifier of the AI Model. Requires replacement if changed.
    created_at str
    An ISO-8601 timestamp representation of entity creation date.
    gateway_control_plane_id str
    The AI Gateway control plane uuid the linked model belongs to.
    gateway_model_id str
    The text or uuid identifier of the linked AI Gateway model.
    updated_at str
    An ISO-8601 timestamp representation of entity update date.
    aiGatewayId String
    The AI Gateway control plane uuid the model belongs to. Requires replacement if changed.
    aiGatewayModelId String
    The text or uuid identifier of the AI Gateway model to link. Requires replacement if changed.
    aiModelId String
    The identifier of the parent AI Model.
    catalogAiModelId String
    The unique identifier of the AI Model. Requires replacement if changed.
    createdAt String
    An ISO-8601 timestamp representation of entity creation date.
    gatewayControlPlaneId String
    The AI Gateway control plane uuid the linked model belongs to.
    gatewayModelId String
    The text or uuid identifier of the linked AI Gateway model.
    updatedAt String
    An ISO-8601 timestamp representation of entity update date.

    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_ai_model_implementation.my_konnect_catalog_ai_model_implementation

    id = jsonencode({

    catalog_ai_model_id = "123e4567-e89b-12d3-a456-426614174000"
    
    id                  = "d2e1f0a9-8b7c-6d5e-4f3a-2b1c0d9e8f7a"
    

    })

    }

    The pulumi import command can be used, for example:

    $ pulumi import konnect:index/catalogAiModelImplementation:CatalogAiModelImplementation my_konnect_catalog_ai_model_implementation '{"catalog_ai_model_id": "123e4567-e89b-12d3-a456-426614174000", "id": "d2e1f0a9-8b7c-6d5e-4f3a-2b1c0d9e8f7a"}'
    

    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.23.0
    published on Friday, Sep 18, 2026 by kong

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial