1. Packages
  2. Konnect Provider
  3. API Docs
  4. GatewayConfigStore
konnect 2.4.1 published on Thursday, Mar 13, 2025 by kong

konnect.GatewayConfigStore

Explore with Pulumi AI

konnect logo
konnect 2.4.1 published on Thursday, Mar 13, 2025 by kong

    GatewayConfigStore Resource

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as konnect from "@pulumi/konnect";
    
    const myGatewayconfigstore = new konnect.GatewayConfigStore("myGatewayconfigstore", {controlPlaneId: "9524ec7d-36d9-465d-a8c5-83a3c9390458"});
    
    import pulumi
    import pulumi_konnect as konnect
    
    my_gatewayconfigstore = konnect.GatewayConfigStore("myGatewayconfigstore", control_plane_id="9524ec7d-36d9-465d-a8c5-83a3c9390458")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/konnect/v2/konnect"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := konnect.NewGatewayConfigStore(ctx, "myGatewayconfigstore", &konnect.GatewayConfigStoreArgs{
    			ControlPlaneId: pulumi.String("9524ec7d-36d9-465d-a8c5-83a3c9390458"),
    		})
    		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 myGatewayconfigstore = new Konnect.GatewayConfigStore("myGatewayconfigstore", new()
        {
            ControlPlaneId = "9524ec7d-36d9-465d-a8c5-83a3c9390458",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.konnect.GatewayConfigStore;
    import com.pulumi.konnect.GatewayConfigStoreArgs;
    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 myGatewayconfigstore = new GatewayConfigStore("myGatewayconfigstore", GatewayConfigStoreArgs.builder()
                .controlPlaneId("9524ec7d-36d9-465d-a8c5-83a3c9390458")
                .build());
    
        }
    }
    
    resources:
      myGatewayconfigstore:
        type: konnect:GatewayConfigStore
        properties:
          controlPlaneId: 9524ec7d-36d9-465d-a8c5-83a3c9390458
    

    Create GatewayConfigStore Resource

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

    Constructor syntax

    new GatewayConfigStore(name: string, args: GatewayConfigStoreArgs, opts?: CustomResourceOptions);
    @overload
    def GatewayConfigStore(resource_name: str,
                           args: GatewayConfigStoreArgs,
                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def GatewayConfigStore(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           control_plane_id: Optional[str] = None,
                           name: Optional[str] = None)
    func NewGatewayConfigStore(ctx *Context, name string, args GatewayConfigStoreArgs, opts ...ResourceOption) (*GatewayConfigStore, error)
    public GatewayConfigStore(string name, GatewayConfigStoreArgs args, CustomResourceOptions? opts = null)
    public GatewayConfigStore(String name, GatewayConfigStoreArgs args)
    public GatewayConfigStore(String name, GatewayConfigStoreArgs args, CustomResourceOptions options)
    
    type: konnect:GatewayConfigStore
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args GatewayConfigStoreArgs
    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 GatewayConfigStoreArgs
    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 GatewayConfigStoreArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args GatewayConfigStoreArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args GatewayConfigStoreArgs
    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 gatewayConfigStoreResource = new Konnect.GatewayConfigStore("gatewayConfigStoreResource", new()
    {
        ControlPlaneId = "string",
        Name = "string",
    });
    
    example, err := konnect.NewGatewayConfigStore(ctx, "gatewayConfigStoreResource", &konnect.GatewayConfigStoreArgs{
    ControlPlaneId: pulumi.String("string"),
    Name: pulumi.String("string"),
    })
    
    var gatewayConfigStoreResource = new GatewayConfigStore("gatewayConfigStoreResource", GatewayConfigStoreArgs.builder()
        .controlPlaneId("string")
        .name("string")
        .build());
    
    gateway_config_store_resource = konnect.GatewayConfigStore("gatewayConfigStoreResource",
        control_plane_id="string",
        name="string")
    
    const gatewayConfigStoreResource = new konnect.GatewayConfigStore("gatewayConfigStoreResource", {
        controlPlaneId: "string",
        name: "string",
    });
    
    type: konnect:GatewayConfigStore
    properties:
        controlPlaneId: string
        name: string
    

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

    ControlPlaneId string
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    Name string
    ControlPlaneId string
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    Name string
    controlPlaneId String
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    name String
    controlPlaneId string
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    name string
    control_plane_id str
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    name str
    controlPlaneId String
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    name String

    Outputs

    All input properties are implicitly available as output properties. Additionally, the GatewayConfigStore 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.
    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 GatewayConfigStore Resource

    Get an existing GatewayConfigStore 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?: GatewayConfigStoreState, opts?: CustomResourceOptions): GatewayConfigStore
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            control_plane_id: Optional[str] = None,
            created_at: Optional[str] = None,
            name: Optional[str] = None,
            updated_at: Optional[str] = None) -> GatewayConfigStore
    func GetGatewayConfigStore(ctx *Context, name string, id IDInput, state *GatewayConfigStoreState, opts ...ResourceOption) (*GatewayConfigStore, error)
    public static GatewayConfigStore Get(string name, Input<string> id, GatewayConfigStoreState? state, CustomResourceOptions? opts = null)
    public static GatewayConfigStore get(String name, Output<String> id, GatewayConfigStoreState state, CustomResourceOptions options)
    resources:  _:    type: konnect:GatewayConfigStore    get:      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:
    ControlPlaneId string
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    CreatedAt string
    An ISO-8601 timestamp representation of entity creation date.
    Name string
    UpdatedAt string
    An ISO-8601 timestamp representation of entity update date.
    ControlPlaneId string
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    CreatedAt string
    An ISO-8601 timestamp representation of entity creation date.
    Name string
    UpdatedAt string
    An ISO-8601 timestamp representation of entity update date.
    controlPlaneId String
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    createdAt String
    An ISO-8601 timestamp representation of entity creation date.
    name String
    updatedAt String
    An ISO-8601 timestamp representation of entity update date.
    controlPlaneId string
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    createdAt string
    An ISO-8601 timestamp representation of entity creation date.
    name string
    updatedAt string
    An ISO-8601 timestamp representation of entity update date.
    control_plane_id str
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    created_at str
    An ISO-8601 timestamp representation of entity creation date.
    name str
    updated_at str
    An ISO-8601 timestamp representation of entity update date.
    controlPlaneId String
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    createdAt String
    An ISO-8601 timestamp representation of entity creation date.
    name String
    updatedAt String
    An ISO-8601 timestamp representation of entity update date.

    Import

    $ pulumi import konnect:index/gatewayConfigStore:GatewayConfigStore my_konnect_gateway_config_store "{ \"config_store_id\": \"d32d905a-ed33-46a3-a093-d8f536af9a8a\", \"control_plane_id\": \"9524ec7d-36d9-465d-a8c5-83a3c9390458\"}"
    

    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.
    konnect logo
    konnect 2.4.1 published on Thursday, Mar 13, 2025 by kong