published on Friday, Sep 18, 2026 by kong
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:
- Ai
Gateway stringId - The AI Gateway control plane uuid the model belongs to. Requires replacement if changed.
- Ai
Gateway stringModel Id - The text or uuid identifier of the AI Gateway model to link. Requires replacement if changed.
- Catalog
Ai stringModel Id - The unique identifier of the AI Model. Requires replacement if changed.
- Ai
Gateway stringId - The AI Gateway control plane uuid the model belongs to. Requires replacement if changed.
- Ai
Gateway stringModel Id - The text or uuid identifier of the AI Gateway model to link. Requires replacement if changed.
- Catalog
Ai stringModel Id - The unique identifier of the AI Model. Requires replacement if changed.
- ai_
gateway_ stringid - The AI Gateway control plane uuid the model belongs to. Requires replacement if changed.
- ai_
gateway_ stringmodel_ id - The text or uuid identifier of the AI Gateway model to link. Requires replacement if changed.
- catalog_
ai_ stringmodel_ id - The unique identifier of the AI Model. Requires replacement if changed.
- ai
Gateway StringId - The AI Gateway control plane uuid the model belongs to. Requires replacement if changed.
- ai
Gateway StringModel Id - The text or uuid identifier of the AI Gateway model to link. Requires replacement if changed.
- catalog
Ai StringModel Id - The unique identifier of the AI Model. Requires replacement if changed.
- ai
Gateway stringId - The AI Gateway control plane uuid the model belongs to. Requires replacement if changed.
- ai
Gateway stringModel Id - The text or uuid identifier of the AI Gateway model to link. Requires replacement if changed.
- catalog
Ai stringModel Id - The unique identifier of the AI Model. Requires replacement if changed.
- ai_
gateway_ strid - The AI Gateway control plane uuid the model belongs to. Requires replacement if changed.
- ai_
gateway_ strmodel_ id - The text or uuid identifier of the AI Gateway model to link. Requires replacement if changed.
- catalog_
ai_ strmodel_ id - The unique identifier of the AI Model. Requires replacement if changed.
- ai
Gateway StringId - The AI Gateway control plane uuid the model belongs to. Requires replacement if changed.
- ai
Gateway StringModel Id - The text or uuid identifier of the AI Gateway model to link. Requires replacement if changed.
- catalog
Ai StringModel Id - 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:
- Ai
Model stringId - The identifier of the parent AI Model.
- Created
At string - An ISO-8601 timestamp representation of entity creation date.
- Gateway
Control stringPlane Id - The AI Gateway control plane uuid the linked model belongs to.
- Gateway
Model stringId - 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.
- Ai
Model stringId - The identifier of the parent AI Model.
- Created
At string - An ISO-8601 timestamp representation of entity creation date.
- Gateway
Control stringPlane Id - The AI Gateway control plane uuid the linked model belongs to.
- Gateway
Model stringId - 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.
- ai_
model_ stringid - The identifier of the parent AI Model.
- created_
at string - An ISO-8601 timestamp representation of entity creation date.
- gateway_
control_ stringplane_ id - The AI Gateway control plane uuid the linked model belongs to.
- gateway_
model_ stringid - 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.
- ai
Model StringId - The identifier of the parent AI Model.
- created
At String - An ISO-8601 timestamp representation of entity creation date.
- gateway
Control StringPlane Id - The AI Gateway control plane uuid the linked model belongs to.
- gateway
Model StringId - 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.
- ai
Model stringId - The identifier of the parent AI Model.
- created
At string - An ISO-8601 timestamp representation of entity creation date.
- gateway
Control stringPlane Id - The AI Gateway control plane uuid the linked model belongs to.
- gateway
Model stringId - 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.
- ai_
model_ strid - The identifier of the parent AI Model.
- created_
at str - An ISO-8601 timestamp representation of entity creation date.
- gateway_
control_ strplane_ id - The AI Gateway control plane uuid the linked model belongs to.
- gateway_
model_ strid - 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.
- ai
Model StringId - The identifier of the parent AI Model.
- created
At String - An ISO-8601 timestamp representation of entity creation date.
- gateway
Control StringPlane Id - The AI Gateway control plane uuid the linked model belongs to.
- gateway
Model StringId - 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.
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) -> CatalogAiModelImplementationfunc 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.
- Ai
Gateway stringId - The AI Gateway control plane uuid the model belongs to. Requires replacement if changed.
- Ai
Gateway stringModel Id - The text or uuid identifier of the AI Gateway model to link. Requires replacement if changed.
- Ai
Model stringId - The identifier of the parent AI Model.
- Catalog
Ai stringModel Id - 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 stringPlane Id - The AI Gateway control plane uuid the linked model belongs to.
- Gateway
Model stringId - The text or uuid identifier of the linked AI Gateway model.
- Updated
At string - An ISO-8601 timestamp representation of entity update date.
- Ai
Gateway stringId - The AI Gateway control plane uuid the model belongs to. Requires replacement if changed.
- Ai
Gateway stringModel Id - The text or uuid identifier of the AI Gateway model to link. Requires replacement if changed.
- Ai
Model stringId - The identifier of the parent AI Model.
- Catalog
Ai stringModel Id - 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 stringPlane Id - The AI Gateway control plane uuid the linked model belongs to.
- Gateway
Model stringId - The text or uuid identifier of the linked AI Gateway model.
- Updated
At string - An ISO-8601 timestamp representation of entity update date.
- ai_
gateway_ stringid - The AI Gateway control plane uuid the model belongs to. Requires replacement if changed.
- ai_
gateway_ stringmodel_ id - The text or uuid identifier of the AI Gateway model to link. Requires replacement if changed.
- ai_
model_ stringid - The identifier of the parent AI Model.
- catalog_
ai_ stringmodel_ id - 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_ stringplane_ id - The AI Gateway control plane uuid the linked model belongs to.
- gateway_
model_ stringid - The text or uuid identifier of the linked AI Gateway model.
- updated_
at string - An ISO-8601 timestamp representation of entity update date.
- ai
Gateway StringId - The AI Gateway control plane uuid the model belongs to. Requires replacement if changed.
- ai
Gateway StringModel Id - The text or uuid identifier of the AI Gateway model to link. Requires replacement if changed.
- ai
Model StringId - The identifier of the parent AI Model.
- catalog
Ai StringModel Id - 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 StringPlane Id - The AI Gateway control plane uuid the linked model belongs to.
- gateway
Model StringId - The text or uuid identifier of the linked AI Gateway model.
- updated
At String - An ISO-8601 timestamp representation of entity update date.
- ai
Gateway stringId - The AI Gateway control plane uuid the model belongs to. Requires replacement if changed.
- ai
Gateway stringModel Id - The text or uuid identifier of the AI Gateway model to link. Requires replacement if changed.
- ai
Model stringId - The identifier of the parent AI Model.
- catalog
Ai stringModel Id - 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 stringPlane Id - The AI Gateway control plane uuid the linked model belongs to.
- gateway
Model stringId - The text or uuid identifier of the linked AI Gateway model.
- updated
At string - An ISO-8601 timestamp representation of entity update date.
- ai_
gateway_ strid - The AI Gateway control plane uuid the model belongs to. Requires replacement if changed.
- ai_
gateway_ strmodel_ id - The text or uuid identifier of the AI Gateway model to link. Requires replacement if changed.
- ai_
model_ strid - The identifier of the parent AI Model.
- catalog_
ai_ strmodel_ id - 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_ strplane_ id - The AI Gateway control plane uuid the linked model belongs to.
- gateway_
model_ strid - The text or uuid identifier of the linked AI Gateway model.
- updated_
at str - An ISO-8601 timestamp representation of entity update date.
- ai
Gateway StringId - The AI Gateway control plane uuid the model belongs to. Requires replacement if changed.
- ai
Gateway StringModel Id - The text or uuid identifier of the AI Gateway model to link. Requires replacement if changed.
- ai
Model StringId - The identifier of the parent AI Model.
- catalog
Ai StringModel Id - 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 StringPlane Id - The AI Gateway control plane uuid the linked model belongs to.
- gateway
Model StringId - The text or uuid identifier of the linked AI Gateway model.
- updated
At 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
konnectTerraform Provider.
published on Friday, Sep 18, 2026 by kong