published on Friday, Sep 18, 2026 by kong
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:
- 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.
- 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.
- 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.
- gateway
Id String - The unique ID of the AI Gateway.
- display
Name 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 string - The unique ID of the AI Gateway.
- display
Name 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.
- gateway
Id String - The unique ID of the AI Gateway.
- display
Name 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:
- 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.
- 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.
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) -> AiGatewayConfigStorefunc 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.
- 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.
- 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.
- 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.
- created
At String - An ISO-8601 timestamp representation of entity creation date.
- display
Name 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
- 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.
- created
At string - An ISO-8601 timestamp representation of entity creation date.
- display
Name 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
- 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.
- 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.
- created
At String - An ISO-8601 timestamp representation of entity creation date.
- display
Name 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
- 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.
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
konnectTerraform Provider.
published on Friday, Sep 18, 2026 by kong