1. Registry
  2. Packages
  3. Konnect Provider
  4. API Docs
  5. AiGatewayConfigStore
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

    AIGatewayConfigStore Resource

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as konnect from "@pulumi/konnect";
    
    const myAigatewayconfigstore = new konnect.AiGatewayConfigStore("my_aigatewayconfigstore", {
        displayName: "my-config-store",
        force: false,
        gatewayId: "5f9fd312-a987-4628-b4c5-bb4f4fddd5f7",
        name: "my-config-store",
    });
    
    import pulumi
    import pulumi_konnect as konnect
    
    my_aigatewayconfigstore = konnect.AiGatewayConfigStore("my_aigatewayconfigstore",
        display_name="my-config-store",
        force=False,
        gateway_id="5f9fd312-a987-4628-b4c5-bb4f4fddd5f7",
        name="my-config-store")
    
    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.NewAiGatewayConfigStore(ctx, "my_aigatewayconfigstore", &konnect.AiGatewayConfigStoreArgs{
    			DisplayName: pulumi.String("my-config-store"),
    			Force:       pulumi.Bool(false),
    			GatewayId:   pulumi.String("5f9fd312-a987-4628-b4c5-bb4f4fddd5f7"),
    			Name:        pulumi.String("my-config-store"),
    		})
    		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 myAigatewayconfigstore = new Konnect.AiGatewayConfigStore("my_aigatewayconfigstore", new()
        {
            DisplayName = "my-config-store",
            Force = false,
            GatewayId = "5f9fd312-a987-4628-b4c5-bb4f4fddd5f7",
            Name = "my-config-store",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.konnect.AiGatewayConfigStore;
    import com.pulumi.konnect.AiGatewayConfigStoreArgs;
    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 myAigatewayconfigstore = new AiGatewayConfigStore("myAigatewayconfigstore", AiGatewayConfigStoreArgs.builder()
                .displayName("my-config-store")
                .force(false)
                .gatewayId("5f9fd312-a987-4628-b4c5-bb4f4fddd5f7")
                .name("my-config-store")
                .build());
    
        }
    }
    
    resources:
      myAigatewayconfigstore:
        type: konnect:AiGatewayConfigStore
        name: my_aigatewayconfigstore
        properties:
          displayName: my-config-store
          force: false
          gatewayId: 5f9fd312-a987-4628-b4c5-bb4f4fddd5f7
          name: my-config-store
    
    Example coming soon!
    

    Create AiGatewayConfigStore Resource

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

    Constructor syntax

    new AiGatewayConfigStore(name: string, args: AiGatewayConfigStoreArgs, opts?: CustomResourceOptions);
    @overload
    def AiGatewayConfigStore(resource_name: str,
                             args: AiGatewayConfigStoreArgs,
                             opts: Optional[ResourceOptions] = None)
    
    @overload
    def AiGatewayConfigStore(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             gateway_id: Optional[str] = None,
                             display_name: Optional[str] = None,
                             force: Optional[bool] = None,
                             name: Optional[str] = None)
    func NewAiGatewayConfigStore(ctx *Context, name string, args AiGatewayConfigStoreArgs, opts ...ResourceOption) (*AiGatewayConfigStore, error)
    public AiGatewayConfigStore(string name, AiGatewayConfigStoreArgs args, CustomResourceOptions? opts = null)
    public AiGatewayConfigStore(String name, AiGatewayConfigStoreArgs args)
    public AiGatewayConfigStore(String name, AiGatewayConfigStoreArgs args, CustomResourceOptions options)
    
    type: konnect:AiGatewayConfigStore
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "konnect_ai_gateway_config_store" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args AiGatewayConfigStoreArgs
    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 AiGatewayConfigStoreArgs
    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 AiGatewayConfigStoreArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AiGatewayConfigStoreArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AiGatewayConfigStoreArgs
    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 aiGatewayConfigStoreResource = new Konnect.AiGatewayConfigStore("aiGatewayConfigStoreResource", new()
    {
        GatewayId = "string",
        DisplayName = "string",
        Force = false,
        Name = "string",
    });
    
    example, err := konnect.NewAiGatewayConfigStore(ctx, "aiGatewayConfigStoreResource", &konnect.AiGatewayConfigStoreArgs{
    	GatewayId:   pulumi.String("string"),
    	DisplayName: pulumi.String("string"),
    	Force:       pulumi.Bool(false),
    	Name:        pulumi.String("string"),
    })
    
    resource "konnect_ai_gateway_config_store" "aiGatewayConfigStoreResource" {
      lifecycle {
        create_before_destroy = true
      }
      gateway_id   = "string"
      display_name = "string"
      force        = false
      name         = "string"
    }
    
    var aiGatewayConfigStoreResource = new AiGatewayConfigStore("aiGatewayConfigStoreResource", AiGatewayConfigStoreArgs.builder()
        .gatewayId("string")
        .displayName("string")
        .force(false)
        .name("string")
        .build());
    
    ai_gateway_config_store_resource = konnect.AiGatewayConfigStore("aiGatewayConfigStoreResource",
        gateway_id="string",
        display_name="string",
        force=False,
        name="string")
    
    const aiGatewayConfigStoreResource = new konnect.AiGatewayConfigStore("aiGatewayConfigStoreResource", {
        gatewayId: "string",
        displayName: "string",
        force: false,
        name: "string",
    });
    
    type: konnect:AiGatewayConfigStore
    properties:
        displayName: string
        force: false
        gatewayId: string
        name: string
    

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

    GatewayId string
    The unique ID of the AI Gateway.
    DisplayName string
    The display name of the Config Store.
    Force bool
    If true, delete the Config Store and all its secrets. If false, deletion is rejected when secrets are still linked to the Config Store. Default: false
    Name string
    The name of the Config Store. This value is immutable after creation. Requires replacement if changed.
    GatewayId string
    The unique ID of the AI Gateway.
    DisplayName string
    The display name of the Config Store.
    Force bool
    If true, delete the Config Store and all its secrets. If false, deletion is rejected when secrets are still linked to the Config Store. Default: false
    Name string
    The name of the Config Store. This value is immutable after creation. Requires replacement if changed.
    gateway_id string
    The unique ID of the AI Gateway.
    display_name string
    The display name of the Config Store.
    force bool
    If true, delete the Config Store and all its secrets. If false, deletion is rejected when secrets are still linked to the Config Store. Default: false
    name string
    The name of the Config Store. This value is immutable after creation. Requires replacement if changed.
    gatewayId String
    The unique ID of the AI Gateway.
    displayName String
    The display name of the Config Store.
    force Boolean
    If true, delete the Config Store and all its secrets. If false, deletion is rejected when secrets are still linked to the Config Store. Default: false
    name String
    The name of the Config Store. This value is immutable after creation. Requires replacement if changed.
    gatewayId string
    The unique ID of the AI Gateway.
    displayName string
    The display name of the Config Store.
    force boolean
    If true, delete the Config Store and all its secrets. If false, deletion is rejected when secrets are still linked to the Config Store. Default: false
    name string
    The name of the Config Store. This value is immutable after creation. Requires replacement if changed.
    gateway_id str
    The unique ID of the AI Gateway.
    display_name str
    The display name of the Config Store.
    force bool
    If true, delete the Config Store and all its secrets. If false, deletion is rejected when secrets are still linked to the Config Store. Default: false
    name str
    The name of the Config Store. This value is immutable after creation. Requires replacement if changed.
    gatewayId String
    The unique ID of the AI Gateway.
    displayName String
    The display name of the Config Store.
    force Boolean
    If true, delete the Config Store and all its secrets. If false, deletion is rejected when secrets are still linked to the Config Store. Default: false
    name String
    The name of the Config Store. This value is immutable after creation. Requires replacement if changed.

    Outputs

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

    CreatedAt string
    An ISO-8601 timestamp representation of entity creation date.
    Id string
    The provider-assigned unique ID for this managed resource.
    UpdatedAt string
    An ISO-8601 timestamp representation of entity update date.
    CreatedAt string
    An ISO-8601 timestamp representation of entity creation date.
    Id string
    The provider-assigned unique ID for this managed resource.
    UpdatedAt 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.
    updated_at string
    An ISO-8601 timestamp representation of entity update date.
    createdAt String
    An ISO-8601 timestamp representation of entity creation date.
    id String
    The provider-assigned unique ID for this managed resource.
    updatedAt String
    An ISO-8601 timestamp representation of entity update date.
    createdAt string
    An ISO-8601 timestamp representation of entity creation date.
    id string
    The provider-assigned unique ID for this managed resource.
    updatedAt 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.
    updated_at str
    An ISO-8601 timestamp representation of entity update date.
    createdAt String
    An ISO-8601 timestamp representation of entity creation date.
    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 AiGatewayConfigStore Resource

    Get an existing AiGatewayConfigStore 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?: AiGatewayConfigStoreState, opts?: CustomResourceOptions): AiGatewayConfigStore
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            created_at: Optional[str] = None,
            display_name: Optional[str] = None,
            force: Optional[bool] = None,
            gateway_id: Optional[str] = None,
            name: Optional[str] = None,
            updated_at: Optional[str] = None) -> AiGatewayConfigStore
    func GetAiGatewayConfigStore(ctx *Context, name string, id IDInput, state *AiGatewayConfigStoreState, opts ...ResourceOption) (*AiGatewayConfigStore, error)
    public static AiGatewayConfigStore Get(string name, Input<string> id, AiGatewayConfigStoreState? state, CustomResourceOptions? opts = null)
    public static AiGatewayConfigStore get(String name, Output<String> id, AiGatewayConfigStoreState state, CustomResourceOptions options)
    resources:  _:    type: konnect:AiGatewayConfigStore    get:      id: ${id}
    import {
      to = konnect_ai_gateway_config_store.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:
    CreatedAt string
    An ISO-8601 timestamp representation of entity creation date.
    DisplayName string
    The display name of the Config Store.
    Force bool
    If true, delete the Config Store and all its secrets. If false, deletion is rejected when secrets are still linked to the Config Store. Default: false
    GatewayId string
    The unique ID of the AI Gateway.
    Name string
    The name of the Config Store. This value is immutable after creation. Requires replacement if changed.
    UpdatedAt string
    An ISO-8601 timestamp representation of entity update date.
    CreatedAt string
    An ISO-8601 timestamp representation of entity creation date.
    DisplayName string
    The display name of the Config Store.
    Force bool
    If true, delete the Config Store and all its secrets. If false, deletion is rejected when secrets are still linked to the Config Store. Default: false
    GatewayId string
    The unique ID of the AI Gateway.
    Name string
    The name of the Config Store. This value is immutable after creation. Requires replacement if changed.
    UpdatedAt string
    An ISO-8601 timestamp representation of entity update date.
    created_at string
    An ISO-8601 timestamp representation of entity creation date.
    display_name string
    The display name of the Config Store.
    force bool
    If true, delete the Config Store and all its secrets. If false, deletion is rejected when secrets are still linked to the Config Store. Default: false
    gateway_id string
    The unique ID of the AI Gateway.
    name string
    The name of the Config Store. This value is immutable after creation. Requires replacement if changed.
    updated_at string
    An ISO-8601 timestamp representation of entity update date.
    createdAt String
    An ISO-8601 timestamp representation of entity creation date.
    displayName String
    The display name of the Config Store.
    force Boolean
    If true, delete the Config Store and all its secrets. If false, deletion is rejected when secrets are still linked to the Config Store. Default: false
    gatewayId String
    The unique ID of the AI Gateway.
    name String
    The name of the Config Store. This value is immutable after creation. Requires replacement if changed.
    updatedAt String
    An ISO-8601 timestamp representation of entity update date.
    createdAt string
    An ISO-8601 timestamp representation of entity creation date.
    displayName string
    The display name of the Config Store.
    force boolean
    If true, delete the Config Store and all its secrets. If false, deletion is rejected when secrets are still linked to the Config Store. Default: false
    gatewayId string
    The unique ID of the AI Gateway.
    name string
    The name of the Config Store. This value is immutable after creation. Requires replacement if changed.
    updatedAt string
    An ISO-8601 timestamp representation of entity update date.
    created_at str
    An ISO-8601 timestamp representation of entity creation date.
    display_name str
    The display name of the Config Store.
    force bool
    If true, delete the Config Store and all its secrets. If false, deletion is rejected when secrets are still linked to the Config Store. Default: false
    gateway_id str
    The unique ID of the AI Gateway.
    name str
    The name of the Config Store. This value is immutable after creation. Requires replacement if changed.
    updated_at str
    An ISO-8601 timestamp representation of entity update date.
    createdAt String
    An ISO-8601 timestamp representation of entity creation date.
    displayName String
    The display name of the Config Store.
    force Boolean
    If true, delete the Config Store and all its secrets. If false, deletion is rejected when secrets are still linked to the Config Store. Default: false
    gatewayId String
    The unique ID of the AI Gateway.
    name String
    The name of the Config Store. This value is immutable after creation. Requires replacement if changed.
    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_ai_gateway_config_store.my_konnect_ai_gateway_config_store

    id = jsonencode({

    gateway_id = "5f9fd312-a987-4628-b4c5-bb4f4fddd5f7"
    
    id         = "5f9fd312-a987-4628-b4c5-bb4f4fddd5f7"
    

    })

    }

    The pulumi import command can be used, for example:

    $ pulumi import konnect:index/aiGatewayConfigStore:AiGatewayConfigStore my_konnect_ai_gateway_config_store '{"gateway_id": "5f9fd312-a987-4628-b4c5-bb4f4fddd5f7", "id": "5f9fd312-a987-4628-b4c5-bb4f4fddd5f7"}'
    

    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