published on Friday, Sep 18, 2026 by kong
published on Friday, Sep 18, 2026 by kong
AIGatewayDataPlaneCertificate Resource
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as konnect from "@pulumi/konnect";
const myAigatewaydataplanecertificate = new konnect.AiGatewayDataPlaneCertificate("my_aigatewaydataplanecertificate", {
cert: "...my_cert...",
description: "...my_description...",
gatewayId: "5f9fd312-a987-4628-b4c5-bb4f4fddd5f7",
title: "...my_title...",
});
import pulumi
import pulumi_konnect as konnect
my_aigatewaydataplanecertificate = konnect.AiGatewayDataPlaneCertificate("my_aigatewaydataplanecertificate",
cert="...my_cert...",
description="...my_description...",
gateway_id="5f9fd312-a987-4628-b4c5-bb4f4fddd5f7",
title="...my_title...")
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.NewAiGatewayDataPlaneCertificate(ctx, "my_aigatewaydataplanecertificate", &konnect.AiGatewayDataPlaneCertificateArgs{
Cert: pulumi.String("...my_cert..."),
Description: pulumi.String("...my_description..."),
GatewayId: pulumi.String("5f9fd312-a987-4628-b4c5-bb4f4fddd5f7"),
Title: pulumi.String("...my_title..."),
})
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 myAigatewaydataplanecertificate = new Konnect.AiGatewayDataPlaneCertificate("my_aigatewaydataplanecertificate", new()
{
Cert = "...my_cert...",
Description = "...my_description...",
GatewayId = "5f9fd312-a987-4628-b4c5-bb4f4fddd5f7",
Title = "...my_title...",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.konnect.AiGatewayDataPlaneCertificate;
import com.pulumi.konnect.AiGatewayDataPlaneCertificateArgs;
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 myAigatewaydataplanecertificate = new AiGatewayDataPlaneCertificate("myAigatewaydataplanecertificate", AiGatewayDataPlaneCertificateArgs.builder()
.cert("...my_cert...")
.description("...my_description...")
.gatewayId("5f9fd312-a987-4628-b4c5-bb4f4fddd5f7")
.title("...my_title...")
.build());
}
}
resources:
myAigatewaydataplanecertificate:
type: konnect:AiGatewayDataPlaneCertificate
name: my_aigatewaydataplanecertificate
properties:
cert: '...my_cert...'
description: '...my_description...'
gatewayId: 5f9fd312-a987-4628-b4c5-bb4f4fddd5f7
title: '...my_title...'
Example coming soon!
Create AiGatewayDataPlaneCertificate Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AiGatewayDataPlaneCertificate(name: string, args: AiGatewayDataPlaneCertificateArgs, opts?: CustomResourceOptions);@overload
def AiGatewayDataPlaneCertificate(resource_name: str,
args: AiGatewayDataPlaneCertificateArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AiGatewayDataPlaneCertificate(resource_name: str,
opts: Optional[ResourceOptions] = None,
cert: Optional[str] = None,
gateway_id: Optional[str] = None,
title: Optional[str] = None,
description: Optional[str] = None)func NewAiGatewayDataPlaneCertificate(ctx *Context, name string, args AiGatewayDataPlaneCertificateArgs, opts ...ResourceOption) (*AiGatewayDataPlaneCertificate, error)public AiGatewayDataPlaneCertificate(string name, AiGatewayDataPlaneCertificateArgs args, CustomResourceOptions? opts = null)
public AiGatewayDataPlaneCertificate(String name, AiGatewayDataPlaneCertificateArgs args)
public AiGatewayDataPlaneCertificate(String name, AiGatewayDataPlaneCertificateArgs args, CustomResourceOptions options)
type: konnect:AiGatewayDataPlaneCertificate
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "konnect_ai_gateway_data_plane_certificate" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args AiGatewayDataPlaneCertificateArgs
- 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 AiGatewayDataPlaneCertificateArgs
- 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 AiGatewayDataPlaneCertificateArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AiGatewayDataPlaneCertificateArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AiGatewayDataPlaneCertificateArgs
- 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 aiGatewayDataPlaneCertificateResource = new Konnect.AiGatewayDataPlaneCertificate("aiGatewayDataPlaneCertificateResource", new()
{
Cert = "string",
GatewayId = "string",
Title = "string",
Description = "string",
});
example, err := konnect.NewAiGatewayDataPlaneCertificate(ctx, "aiGatewayDataPlaneCertificateResource", &konnect.AiGatewayDataPlaneCertificateArgs{
Cert: pulumi.String("string"),
GatewayId: pulumi.String("string"),
Title: pulumi.String("string"),
Description: pulumi.String("string"),
})
resource "konnect_ai_gateway_data_plane_certificate" "aiGatewayDataPlaneCertificateResource" {
lifecycle {
create_before_destroy = true
}
cert = "string"
gateway_id = "string"
title = "string"
description = "string"
}
var aiGatewayDataPlaneCertificateResource = new AiGatewayDataPlaneCertificate("aiGatewayDataPlaneCertificateResource", AiGatewayDataPlaneCertificateArgs.builder()
.cert("string")
.gatewayId("string")
.title("string")
.description("string")
.build());
ai_gateway_data_plane_certificate_resource = konnect.AiGatewayDataPlaneCertificate("aiGatewayDataPlaneCertificateResource",
cert="string",
gateway_id="string",
title="string",
description="string")
const aiGatewayDataPlaneCertificateResource = new konnect.AiGatewayDataPlaneCertificate("aiGatewayDataPlaneCertificateResource", {
cert: "string",
gatewayId: "string",
title: "string",
description: "string",
});
type: konnect:AiGatewayDataPlaneCertificate
properties:
cert: string
description: string
gatewayId: string
title: string
AiGatewayDataPlaneCertificate 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 AiGatewayDataPlaneCertificate resource accepts the following input properties:
- Cert string
- JSON escaped string of the certificate. Requires replacement if changed.
- Gateway
Id string - The unique ID of the AI Gateway. Requires replacement if changed.
- Title string
- A human-readable name for the certificate. Requires replacement if changed.
- Description string
- An optional description of the certificate. Requires replacement if changed.
- Cert string
- JSON escaped string of the certificate. Requires replacement if changed.
- Gateway
Id string - The unique ID of the AI Gateway. Requires replacement if changed.
- Title string
- A human-readable name for the certificate. Requires replacement if changed.
- Description string
- An optional description of the certificate. Requires replacement if changed.
- cert string
- JSON escaped string of the certificate. Requires replacement if changed.
- gateway_
id string - The unique ID of the AI Gateway. Requires replacement if changed.
- title string
- A human-readable name for the certificate. Requires replacement if changed.
- description string
- An optional description of the certificate. Requires replacement if changed.
- cert String
- JSON escaped string of the certificate. Requires replacement if changed.
- gateway
Id String - The unique ID of the AI Gateway. Requires replacement if changed.
- title String
- A human-readable name for the certificate. Requires replacement if changed.
- description String
- An optional description of the certificate. Requires replacement if changed.
- cert string
- JSON escaped string of the certificate. Requires replacement if changed.
- gateway
Id string - The unique ID of the AI Gateway. Requires replacement if changed.
- title string
- A human-readable name for the certificate. Requires replacement if changed.
- description string
- An optional description of the certificate. Requires replacement if changed.
- cert str
- JSON escaped string of the certificate. Requires replacement if changed.
- gateway_
id str - The unique ID of the AI Gateway. Requires replacement if changed.
- title str
- A human-readable name for the certificate. Requires replacement if changed.
- description str
- An optional description of the certificate. Requires replacement if changed.
- cert String
- JSON escaped string of the certificate. Requires replacement if changed.
- gateway
Id String - The unique ID of the AI Gateway. Requires replacement if changed.
- title String
- A human-readable name for the certificate. Requires replacement if changed.
- description String
- An optional description of the certificate. Requires replacement if changed.
Outputs
All input properties are implicitly available as output properties. Additionally, the AiGatewayDataPlaneCertificate 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.
- Metadata
Ai
Gateway Data Plane Certificate Metadata - Metadata extracted from the certificate.
- Updated
At 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.
- Metadata
Ai
Gateway Data Plane Certificate Metadata - Metadata extracted from the certificate.
- Updated
At 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.
- metadata object
- Metadata extracted from the certificate.
- updated_
at 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.
- metadata
Ai
Gateway Data Plane Certificate Metadata - Metadata extracted from the certificate.
- updated
At 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.
- metadata
Ai
Gateway Data Plane Certificate Metadata - Metadata extracted from the certificate.
- 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.
- metadata
Ai
Gateway Data Plane Certificate Metadata - Metadata extracted from the certificate.
- updated_
at str - 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.
- metadata Property Map
- Metadata extracted from the certificate.
- updated
At String - An ISO-8601 timestamp representation of entity update date.
Look up Existing AiGatewayDataPlaneCertificate Resource
Get an existing AiGatewayDataPlaneCertificate 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?: AiGatewayDataPlaneCertificateState, opts?: CustomResourceOptions): AiGatewayDataPlaneCertificate@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
cert: Optional[str] = None,
created_at: Optional[str] = None,
description: Optional[str] = None,
gateway_id: Optional[str] = None,
metadata: Optional[AiGatewayDataPlaneCertificateMetadataArgs] = None,
title: Optional[str] = None,
updated_at: Optional[str] = None) -> AiGatewayDataPlaneCertificatefunc GetAiGatewayDataPlaneCertificate(ctx *Context, name string, id IDInput, state *AiGatewayDataPlaneCertificateState, opts ...ResourceOption) (*AiGatewayDataPlaneCertificate, error)public static AiGatewayDataPlaneCertificate Get(string name, Input<string> id, AiGatewayDataPlaneCertificateState? state, CustomResourceOptions? opts = null)public static AiGatewayDataPlaneCertificate get(String name, Output<String> id, AiGatewayDataPlaneCertificateState state, CustomResourceOptions options)resources: _: type: konnect:AiGatewayDataPlaneCertificate get: id: ${id}import {
to = konnect_ai_gateway_data_plane_certificate.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.
- Cert string
- JSON escaped string of the certificate. Requires replacement if changed.
- Created
At string - An ISO-8601 timestamp representation of entity creation date.
- Description string
- An optional description of the certificate. Requires replacement if changed.
- Gateway
Id string - The unique ID of the AI Gateway. Requires replacement if changed.
- Metadata
Ai
Gateway Data Plane Certificate Metadata - Metadata extracted from the certificate.
- Title string
- A human-readable name for the certificate. Requires replacement if changed.
- Updated
At string - An ISO-8601 timestamp representation of entity update date.
- Cert string
- JSON escaped string of the certificate. Requires replacement if changed.
- Created
At string - An ISO-8601 timestamp representation of entity creation date.
- Description string
- An optional description of the certificate. Requires replacement if changed.
- Gateway
Id string - The unique ID of the AI Gateway. Requires replacement if changed.
- Metadata
Ai
Gateway Data Plane Certificate Metadata Args - Metadata extracted from the certificate.
- Title string
- A human-readable name for the certificate. Requires replacement if changed.
- Updated
At string - An ISO-8601 timestamp representation of entity update date.
- cert string
- JSON escaped string of the certificate. Requires replacement if changed.
- created_
at string - An ISO-8601 timestamp representation of entity creation date.
- description string
- An optional description of the certificate. Requires replacement if changed.
- gateway_
id string - The unique ID of the AI Gateway. Requires replacement if changed.
- metadata object
- Metadata extracted from the certificate.
- title string
- A human-readable name for the certificate. Requires replacement if changed.
- updated_
at string - An ISO-8601 timestamp representation of entity update date.
- cert String
- JSON escaped string of the certificate. Requires replacement if changed.
- created
At String - An ISO-8601 timestamp representation of entity creation date.
- description String
- An optional description of the certificate. Requires replacement if changed.
- gateway
Id String - The unique ID of the AI Gateway. Requires replacement if changed.
- metadata
Ai
Gateway Data Plane Certificate Metadata - Metadata extracted from the certificate.
- title String
- A human-readable name for the certificate. Requires replacement if changed.
- updated
At String - An ISO-8601 timestamp representation of entity update date.
- cert string
- JSON escaped string of the certificate. Requires replacement if changed.
- created
At string - An ISO-8601 timestamp representation of entity creation date.
- description string
- An optional description of the certificate. Requires replacement if changed.
- gateway
Id string - The unique ID of the AI Gateway. Requires replacement if changed.
- metadata
Ai
Gateway Data Plane Certificate Metadata - Metadata extracted from the certificate.
- title string
- A human-readable name for the certificate. Requires replacement if changed.
- updated
At string - An ISO-8601 timestamp representation of entity update date.
- cert str
- JSON escaped string of the certificate. Requires replacement if changed.
- created_
at str - An ISO-8601 timestamp representation of entity creation date.
- description str
- An optional description of the certificate. Requires replacement if changed.
- gateway_
id str - The unique ID of the AI Gateway. Requires replacement if changed.
- metadata
Ai
Gateway Data Plane Certificate Metadata Args - Metadata extracted from the certificate.
- title str
- A human-readable name for the certificate. Requires replacement if changed.
- updated_
at str - An ISO-8601 timestamp representation of entity update date.
- cert String
- JSON escaped string of the certificate. Requires replacement if changed.
- created
At String - An ISO-8601 timestamp representation of entity creation date.
- description String
- An optional description of the certificate. Requires replacement if changed.
- gateway
Id String - The unique ID of the AI Gateway. Requires replacement if changed.
- metadata Property Map
- Metadata extracted from the certificate.
- title String
- A human-readable name for the certificate. Requires replacement if changed.
- updated
At String - An ISO-8601 timestamp representation of entity update date.
Supporting Types
AiGatewayDataPlaneCertificateMetadata, AiGatewayDataPlaneCertificateMetadataArgs
- Dns
Names List<string> - DNS subject alternative names.
- Email
Addresses List<string> - Email subject alternative names.
- Expiry double
- Unix timestamp of certificate expiry.
- Ip
Addresses List<string> - IP subject alternative names.
- Is
Ca bool - Whether the certificate is a CA certificate.
- Issuer string
- The certificate issuer.
- Key
Usages List<string> - Key usage types for the certificate.
- San
Names List<string> - Subject alternative names (deprecated).
- Snis List<string>
- Server Name Indications associated with the certificate.
- Subject string
- The certificate subject.
- Uris List<string>
- URI subject alternative names.
- Dns
Names []string - DNS subject alternative names.
- Email
Addresses []string - Email subject alternative names.
- Expiry float64
- Unix timestamp of certificate expiry.
- Ip
Addresses []string - IP subject alternative names.
- Is
Ca bool - Whether the certificate is a CA certificate.
- Issuer string
- The certificate issuer.
- Key
Usages []string - Key usage types for the certificate.
- San
Names []string - Subject alternative names (deprecated).
- Snis []string
- Server Name Indications associated with the certificate.
- Subject string
- The certificate subject.
- Uris []string
- URI subject alternative names.
- dns_
names list(string) - DNS subject alternative names.
- email_
addresses list(string) - Email subject alternative names.
- expiry number
- Unix timestamp of certificate expiry.
- ip_
addresses list(string) - IP subject alternative names.
- is_
ca bool - Whether the certificate is a CA certificate.
- issuer string
- The certificate issuer.
- key_
usages list(string) - Key usage types for the certificate.
- san_
names list(string) - Subject alternative names (deprecated).
- snis list(string)
- Server Name Indications associated with the certificate.
- subject string
- The certificate subject.
- uris list(string)
- URI subject alternative names.
- dns
Names List<String> - DNS subject alternative names.
- email
Addresses List<String> - Email subject alternative names.
- expiry Double
- Unix timestamp of certificate expiry.
- ip
Addresses List<String> - IP subject alternative names.
- is
Ca Boolean - Whether the certificate is a CA certificate.
- issuer String
- The certificate issuer.
- key
Usages List<String> - Key usage types for the certificate.
- san
Names List<String> - Subject alternative names (deprecated).
- snis List<String>
- Server Name Indications associated with the certificate.
- subject String
- The certificate subject.
- uris List<String>
- URI subject alternative names.
- dns
Names string[] - DNS subject alternative names.
- email
Addresses string[] - Email subject alternative names.
- expiry number
- Unix timestamp of certificate expiry.
- ip
Addresses string[] - IP subject alternative names.
- is
Ca boolean - Whether the certificate is a CA certificate.
- issuer string
- The certificate issuer.
- key
Usages string[] - Key usage types for the certificate.
- san
Names string[] - Subject alternative names (deprecated).
- snis string[]
- Server Name Indications associated with the certificate.
- subject string
- The certificate subject.
- uris string[]
- URI subject alternative names.
- dns_
names Sequence[str] - DNS subject alternative names.
- email_
addresses Sequence[str] - Email subject alternative names.
- expiry float
- Unix timestamp of certificate expiry.
- ip_
addresses Sequence[str] - IP subject alternative names.
- is_
ca bool - Whether the certificate is a CA certificate.
- issuer str
- The certificate issuer.
- key_
usages Sequence[str] - Key usage types for the certificate.
- san_
names Sequence[str] - Subject alternative names (deprecated).
- snis Sequence[str]
- Server Name Indications associated with the certificate.
- subject str
- The certificate subject.
- uris Sequence[str]
- URI subject alternative names.
- dns
Names List<String> - DNS subject alternative names.
- email
Addresses List<String> - Email subject alternative names.
- expiry Number
- Unix timestamp of certificate expiry.
- ip
Addresses List<String> - IP subject alternative names.
- is
Ca Boolean - Whether the certificate is a CA certificate.
- issuer String
- The certificate issuer.
- key
Usages List<String> - Key usage types for the certificate.
- san
Names List<String> - Subject alternative names (deprecated).
- snis List<String>
- Server Name Indications associated with the certificate.
- subject String
- The certificate subject.
- uris List<String>
- URI subject alternative names.
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_data_plane_certificate.my_konnect_ai_gateway_data_plane_certificate
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/aiGatewayDataPlaneCertificate:AiGatewayDataPlaneCertificate my_konnect_ai_gateway_data_plane_certificate '{"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