published on Monday, Jul 6, 2026 by kong
published on Monday, Jul 6, 2026 by kong
GatewayClonedPlugin Resource
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as konnect from "@pulumi/konnect";
const myGatewayclonedplugin = new konnect.GatewayClonedPlugin("my_gatewayclonedplugin", {
controlPlaneId: "9524ec7d-36d9-465d-a8c5-83a3c9390458",
createdAt: 1,
gatewayClonedPluginId: "...my_id...",
name: "...my_name...",
priority: 1370058490,
ref: "...my_ref...",
tags: ["..."],
updatedAt: 9,
});
import pulumi
import pulumi_konnect as konnect
my_gatewayclonedplugin = konnect.GatewayClonedPlugin("my_gatewayclonedplugin",
control_plane_id="9524ec7d-36d9-465d-a8c5-83a3c9390458",
created_at=1,
gateway_cloned_plugin_id="...my_id...",
name="...my_name...",
priority=1370058490,
ref="...my_ref...",
tags=["..."],
updated_at=9)
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.NewGatewayClonedPlugin(ctx, "my_gatewayclonedplugin", &konnect.GatewayClonedPluginArgs{
ControlPlaneId: pulumi.String("9524ec7d-36d9-465d-a8c5-83a3c9390458"),
CreatedAt: pulumi.Float64(1),
GatewayClonedPluginId: pulumi.String("...my_id..."),
Name: pulumi.String("...my_name..."),
Priority: pulumi.Float64(1370058490),
Ref: pulumi.String("...my_ref..."),
Tags: pulumi.StringArray{
pulumi.String("..."),
},
UpdatedAt: pulumi.Float64(9),
})
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 myGatewayclonedplugin = new Konnect.GatewayClonedPlugin("my_gatewayclonedplugin", new()
{
ControlPlaneId = "9524ec7d-36d9-465d-a8c5-83a3c9390458",
CreatedAt = 1,
GatewayClonedPluginId = "...my_id...",
Name = "...my_name...",
Priority = 1370058490,
Ref = "...my_ref...",
Tags = new[]
{
"...",
},
UpdatedAt = 9,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.konnect.GatewayClonedPlugin;
import com.pulumi.konnect.GatewayClonedPluginArgs;
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 myGatewayclonedplugin = new GatewayClonedPlugin("myGatewayclonedplugin", GatewayClonedPluginArgs.builder()
.controlPlaneId("9524ec7d-36d9-465d-a8c5-83a3c9390458")
.createdAt(1.0)
.gatewayClonedPluginId("...my_id...")
.name("...my_name...")
.priority(1370058490.0)
.ref("...my_ref...")
.tags("...")
.updatedAt(9.0)
.build());
}
}
resources:
myGatewayclonedplugin:
type: konnect:GatewayClonedPlugin
name: my_gatewayclonedplugin
properties:
controlPlaneId: 9524ec7d-36d9-465d-a8c5-83a3c9390458
createdAt: 1
gatewayClonedPluginId: '...my_id...'
name: '...my_name...'
priority: 1.37005849e+09
ref: '...my_ref...'
tags:
- '...'
updatedAt: 9
Example coming soon!
Create GatewayClonedPlugin Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new GatewayClonedPlugin(name: string, args: GatewayClonedPluginArgs, opts?: CustomResourceOptions);@overload
def GatewayClonedPlugin(resource_name: str,
args: GatewayClonedPluginArgs,
opts: Optional[ResourceOptions] = None)
@overload
def GatewayClonedPlugin(resource_name: str,
opts: Optional[ResourceOptions] = None,
control_plane_id: Optional[str] = None,
ref: Optional[str] = None,
created_at: Optional[float] = None,
gateway_cloned_plugin_id: Optional[str] = None,
name: Optional[str] = None,
priority: Optional[float] = None,
tags: Optional[Sequence[str]] = None,
updated_at: Optional[float] = None)func NewGatewayClonedPlugin(ctx *Context, name string, args GatewayClonedPluginArgs, opts ...ResourceOption) (*GatewayClonedPlugin, error)public GatewayClonedPlugin(string name, GatewayClonedPluginArgs args, CustomResourceOptions? opts = null)
public GatewayClonedPlugin(String name, GatewayClonedPluginArgs args)
public GatewayClonedPlugin(String name, GatewayClonedPluginArgs args, CustomResourceOptions options)
type: konnect:GatewayClonedPlugin
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "konnect_gateway_cloned_plugin" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args GatewayClonedPluginArgs
- 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 GatewayClonedPluginArgs
- 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 GatewayClonedPluginArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GatewayClonedPluginArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GatewayClonedPluginArgs
- 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 gatewayClonedPluginResource = new Konnect.GatewayClonedPlugin("gatewayClonedPluginResource", new()
{
ControlPlaneId = "string",
Ref = "string",
CreatedAt = 0,
GatewayClonedPluginId = "string",
Name = "string",
Priority = 0,
Tags = new[]
{
"string",
},
UpdatedAt = 0,
});
example, err := konnect.NewGatewayClonedPlugin(ctx, "gatewayClonedPluginResource", &konnect.GatewayClonedPluginArgs{
ControlPlaneId: pulumi.String("string"),
Ref: pulumi.String("string"),
CreatedAt: pulumi.Float64(0),
GatewayClonedPluginId: pulumi.String("string"),
Name: pulumi.String("string"),
Priority: pulumi.Float64(0),
Tags: pulumi.StringArray{
pulumi.String("string"),
},
UpdatedAt: pulumi.Float64(0),
})
resource "konnect_gateway_cloned_plugin" "gatewayClonedPluginResource" {
lifecycle {
create_before_destroy = true
}
control_plane_id = "string"
ref = "string"
created_at = 0
gateway_cloned_plugin_id = "string"
name = "string"
priority = 0
tags = ["string"]
updated_at = 0
}
var gatewayClonedPluginResource = new GatewayClonedPlugin("gatewayClonedPluginResource", GatewayClonedPluginArgs.builder()
.controlPlaneId("string")
.ref("string")
.createdAt(0.0)
.gatewayClonedPluginId("string")
.name("string")
.priority(0.0)
.tags("string")
.updatedAt(0.0)
.build());
gateway_cloned_plugin_resource = konnect.GatewayClonedPlugin("gatewayClonedPluginResource",
control_plane_id="string",
ref="string",
created_at=float(0),
gateway_cloned_plugin_id="string",
name="string",
priority=float(0),
tags=["string"],
updated_at=float(0))
const gatewayClonedPluginResource = new konnect.GatewayClonedPlugin("gatewayClonedPluginResource", {
controlPlaneId: "string",
ref: "string",
createdAt: 0,
gatewayClonedPluginId: "string",
name: "string",
priority: 0,
tags: ["string"],
updatedAt: 0,
});
type: konnect:GatewayClonedPlugin
properties:
controlPlaneId: string
createdAt: 0
gatewayClonedPluginId: string
name: string
priority: 0
ref: string
tags:
- string
updatedAt: 0
GatewayClonedPlugin 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 GatewayClonedPlugin resource accepts the following input properties:
- Control
Plane stringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- Ref string
- The name of the base plugin that this cloned plugin references. This plugin must be cloneable.
- Created
At double - Unix epoch when the resource was created.
- Gateway
Cloned stringPlugin Id - A string representing a UUID (universally unique identifier).
- Name string
- The name to associate with the cloned plugin. Consider using a distinct prefix for cloned plugins to avoid naming conflicts with new bundled plugins in future Kong releases.
- Priority double
- The plugin execution priority. If not set, it will inherit the priority of the referenced plugin.
- List<string>
- A set of strings representing tags.
- Updated
At double - Unix epoch when the resource was last updated.
- Control
Plane stringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- Ref string
- The name of the base plugin that this cloned plugin references. This plugin must be cloneable.
- Created
At float64 - Unix epoch when the resource was created.
- Gateway
Cloned stringPlugin Id - A string representing a UUID (universally unique identifier).
- Name string
- The name to associate with the cloned plugin. Consider using a distinct prefix for cloned plugins to avoid naming conflicts with new bundled plugins in future Kong releases.
- Priority float64
- The plugin execution priority. If not set, it will inherit the priority of the referenced plugin.
- []string
- A set of strings representing tags.
- Updated
At float64 - Unix epoch when the resource was last updated.
- control_
plane_ stringid - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- ref string
- The name of the base plugin that this cloned plugin references. This plugin must be cloneable.
- created_
at number - Unix epoch when the resource was created.
- gateway_
cloned_ stringplugin_ id - A string representing a UUID (universally unique identifier).
- name string
- The name to associate with the cloned plugin. Consider using a distinct prefix for cloned plugins to avoid naming conflicts with new bundled plugins in future Kong releases.
- priority number
- The plugin execution priority. If not set, it will inherit the priority of the referenced plugin.
- list(string)
- A set of strings representing tags.
- updated_
at number - Unix epoch when the resource was last updated.
- control
Plane StringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- ref String
- The name of the base plugin that this cloned plugin references. This plugin must be cloneable.
- created
At Double - Unix epoch when the resource was created.
- gateway
Cloned StringPlugin Id - A string representing a UUID (universally unique identifier).
- name String
- The name to associate with the cloned plugin. Consider using a distinct prefix for cloned plugins to avoid naming conflicts with new bundled plugins in future Kong releases.
- priority Double
- The plugin execution priority. If not set, it will inherit the priority of the referenced plugin.
- List<String>
- A set of strings representing tags.
- updated
At Double - Unix epoch when the resource was last updated.
- control
Plane stringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- ref string
- The name of the base plugin that this cloned plugin references. This plugin must be cloneable.
- created
At number - Unix epoch when the resource was created.
- gateway
Cloned stringPlugin Id - A string representing a UUID (universally unique identifier).
- name string
- The name to associate with the cloned plugin. Consider using a distinct prefix for cloned plugins to avoid naming conflicts with new bundled plugins in future Kong releases.
- priority number
- The plugin execution priority. If not set, it will inherit the priority of the referenced plugin.
- string[]
- A set of strings representing tags.
- updated
At number - Unix epoch when the resource was last updated.
- control_
plane_ strid - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- ref str
- The name of the base plugin that this cloned plugin references. This plugin must be cloneable.
- created_
at float - Unix epoch when the resource was created.
- gateway_
cloned_ strplugin_ id - A string representing a UUID (universally unique identifier).
- name str
- The name to associate with the cloned plugin. Consider using a distinct prefix for cloned plugins to avoid naming conflicts with new bundled plugins in future Kong releases.
- priority float
- The plugin execution priority. If not set, it will inherit the priority of the referenced plugin.
- Sequence[str]
- A set of strings representing tags.
- updated_
at float - Unix epoch when the resource was last updated.
- control
Plane StringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- ref String
- The name of the base plugin that this cloned plugin references. This plugin must be cloneable.
- created
At Number - Unix epoch when the resource was created.
- gateway
Cloned StringPlugin Id - A string representing a UUID (universally unique identifier).
- name String
- The name to associate with the cloned plugin. Consider using a distinct prefix for cloned plugins to avoid naming conflicts with new bundled plugins in future Kong releases.
- priority Number
- The plugin execution priority. If not set, it will inherit the priority of the referenced plugin.
- List<String>
- A set of strings representing tags.
- updated
At Number - Unix epoch when the resource was last updated.
Outputs
All input properties are implicitly available as output properties. Additionally, the GatewayClonedPlugin resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing GatewayClonedPlugin Resource
Get an existing GatewayClonedPlugin 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?: GatewayClonedPluginState, opts?: CustomResourceOptions): GatewayClonedPlugin@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
control_plane_id: Optional[str] = None,
created_at: Optional[float] = None,
gateway_cloned_plugin_id: Optional[str] = None,
name: Optional[str] = None,
priority: Optional[float] = None,
ref: Optional[str] = None,
tags: Optional[Sequence[str]] = None,
updated_at: Optional[float] = None) -> GatewayClonedPluginfunc GetGatewayClonedPlugin(ctx *Context, name string, id IDInput, state *GatewayClonedPluginState, opts ...ResourceOption) (*GatewayClonedPlugin, error)public static GatewayClonedPlugin Get(string name, Input<string> id, GatewayClonedPluginState? state, CustomResourceOptions? opts = null)public static GatewayClonedPlugin get(String name, Output<String> id, GatewayClonedPluginState state, CustomResourceOptions options)resources: _: type: konnect:GatewayClonedPlugin get: id: ${id}import {
to = konnect_gateway_cloned_plugin.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.
- Control
Plane stringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- Created
At double - Unix epoch when the resource was created.
- Gateway
Cloned stringPlugin Id - A string representing a UUID (universally unique identifier).
- Name string
- The name to associate with the cloned plugin. Consider using a distinct prefix for cloned plugins to avoid naming conflicts with new bundled plugins in future Kong releases.
- Priority double
- The plugin execution priority. If not set, it will inherit the priority of the referenced plugin.
- Ref string
- The name of the base plugin that this cloned plugin references. This plugin must be cloneable.
- List<string>
- A set of strings representing tags.
- Updated
At double - Unix epoch when the resource was last updated.
- Control
Plane stringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- Created
At float64 - Unix epoch when the resource was created.
- Gateway
Cloned stringPlugin Id - A string representing a UUID (universally unique identifier).
- Name string
- The name to associate with the cloned plugin. Consider using a distinct prefix for cloned plugins to avoid naming conflicts with new bundled plugins in future Kong releases.
- Priority float64
- The plugin execution priority. If not set, it will inherit the priority of the referenced plugin.
- Ref string
- The name of the base plugin that this cloned plugin references. This plugin must be cloneable.
- []string
- A set of strings representing tags.
- Updated
At float64 - Unix epoch when the resource was last updated.
- control_
plane_ stringid - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- created_
at number - Unix epoch when the resource was created.
- gateway_
cloned_ stringplugin_ id - A string representing a UUID (universally unique identifier).
- name string
- The name to associate with the cloned plugin. Consider using a distinct prefix for cloned plugins to avoid naming conflicts with new bundled plugins in future Kong releases.
- priority number
- The plugin execution priority. If not set, it will inherit the priority of the referenced plugin.
- ref string
- The name of the base plugin that this cloned plugin references. This plugin must be cloneable.
- list(string)
- A set of strings representing tags.
- updated_
at number - Unix epoch when the resource was last updated.
- control
Plane StringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- created
At Double - Unix epoch when the resource was created.
- gateway
Cloned StringPlugin Id - A string representing a UUID (universally unique identifier).
- name String
- The name to associate with the cloned plugin. Consider using a distinct prefix for cloned plugins to avoid naming conflicts with new bundled plugins in future Kong releases.
- priority Double
- The plugin execution priority. If not set, it will inherit the priority of the referenced plugin.
- ref String
- The name of the base plugin that this cloned plugin references. This plugin must be cloneable.
- List<String>
- A set of strings representing tags.
- updated
At Double - Unix epoch when the resource was last updated.
- control
Plane stringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- created
At number - Unix epoch when the resource was created.
- gateway
Cloned stringPlugin Id - A string representing a UUID (universally unique identifier).
- name string
- The name to associate with the cloned plugin. Consider using a distinct prefix for cloned plugins to avoid naming conflicts with new bundled plugins in future Kong releases.
- priority number
- The plugin execution priority. If not set, it will inherit the priority of the referenced plugin.
- ref string
- The name of the base plugin that this cloned plugin references. This plugin must be cloneable.
- string[]
- A set of strings representing tags.
- updated
At number - Unix epoch when the resource was last updated.
- control_
plane_ strid - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- created_
at float - Unix epoch when the resource was created.
- gateway_
cloned_ strplugin_ id - A string representing a UUID (universally unique identifier).
- name str
- The name to associate with the cloned plugin. Consider using a distinct prefix for cloned plugins to avoid naming conflicts with new bundled plugins in future Kong releases.
- priority float
- The plugin execution priority. If not set, it will inherit the priority of the referenced plugin.
- ref str
- The name of the base plugin that this cloned plugin references. This plugin must be cloneable.
- Sequence[str]
- A set of strings representing tags.
- updated_
at float - Unix epoch when the resource was last updated.
- control
Plane StringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- created
At Number - Unix epoch when the resource was created.
- gateway
Cloned StringPlugin Id - A string representing a UUID (universally unique identifier).
- name String
- The name to associate with the cloned plugin. Consider using a distinct prefix for cloned plugins to avoid naming conflicts with new bundled plugins in future Kong releases.
- priority Number
- The plugin execution priority. If not set, it will inherit the priority of the referenced plugin.
- ref String
- The name of the base plugin that this cloned plugin references. This plugin must be cloneable.
- List<String>
- A set of strings representing tags.
- updated
At Number - Unix epoch when the resource was last updated.
Import
In Terraform v1.5.0 and later, the import block can be used with the id attribute, for example:
terraform
import {
to = konnect_gateway_cloned_plugin.my_konnect_gateway_cloned_plugin
id = jsonencode({
control_plane_id = "9524ec7d-36d9-465d-a8c5-83a3c9390458"
id = ""
})
}
The pulumi import command can be used, for example:
$ pulumi import konnect:index/gatewayClonedPlugin:GatewayClonedPlugin my_konnect_gateway_cloned_plugin '{"control_plane_id": "9524ec7d-36d9-465d-a8c5-83a3c9390458", "id": ""}'
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 Monday, Jul 6, 2026 by kong