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

    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.
    GatewayId 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.
    GatewayId 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.
    gatewayId 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.
    gatewayId 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.
    gatewayId 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:

    CreatedAt string
    An ISO-8601 timestamp representation of entity creation date.
    Id string
    The provider-assigned unique ID for this managed resource.
    Metadata AiGatewayDataPlaneCertificateMetadata
    Metadata extracted from the certificate.
    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.
    Metadata AiGatewayDataPlaneCertificateMetadata
    Metadata extracted from the certificate.
    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.
    metadata object
    Metadata extracted from the certificate.
    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.
    metadata AiGatewayDataPlaneCertificateMetadata
    Metadata extracted from the certificate.
    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.
    metadata AiGatewayDataPlaneCertificateMetadata
    Metadata extracted from the certificate.
    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.
    metadata AiGatewayDataPlaneCertificateMetadata
    Metadata extracted from the certificate.
    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.
    metadata Property Map
    Metadata extracted from the certificate.
    updatedAt 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) -> AiGatewayDataPlaneCertificate
    func 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.
    The following state arguments are supported:
    Cert string
    JSON escaped string of the certificate. Requires replacement if changed.
    CreatedAt string
    An ISO-8601 timestamp representation of entity creation date.
    Description string
    An optional description of the certificate. Requires replacement if changed.
    GatewayId string
    The unique ID of the AI Gateway. Requires replacement if changed.
    Metadata AiGatewayDataPlaneCertificateMetadata
    Metadata extracted from the certificate.
    Title string
    A human-readable name for the certificate. Requires replacement if changed.
    UpdatedAt string
    An ISO-8601 timestamp representation of entity update date.
    Cert string
    JSON escaped string of the certificate. Requires replacement if changed.
    CreatedAt string
    An ISO-8601 timestamp representation of entity creation date.
    Description string
    An optional description of the certificate. Requires replacement if changed.
    GatewayId string
    The unique ID of the AI Gateway. Requires replacement if changed.
    Metadata AiGatewayDataPlaneCertificateMetadataArgs
    Metadata extracted from the certificate.
    Title string
    A human-readable name for the certificate. Requires replacement if changed.
    UpdatedAt 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.
    createdAt String
    An ISO-8601 timestamp representation of entity creation date.
    description String
    An optional description of the certificate. Requires replacement if changed.
    gatewayId String
    The unique ID of the AI Gateway. Requires replacement if changed.
    metadata AiGatewayDataPlaneCertificateMetadata
    Metadata extracted from the certificate.
    title String
    A human-readable name for the certificate. Requires replacement if changed.
    updatedAt String
    An ISO-8601 timestamp representation of entity update date.
    cert string
    JSON escaped string of the certificate. Requires replacement if changed.
    createdAt string
    An ISO-8601 timestamp representation of entity creation date.
    description string
    An optional description of the certificate. Requires replacement if changed.
    gatewayId string
    The unique ID of the AI Gateway. Requires replacement if changed.
    metadata AiGatewayDataPlaneCertificateMetadata
    Metadata extracted from the certificate.
    title string
    A human-readable name for the certificate. Requires replacement if changed.
    updatedAt 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 AiGatewayDataPlaneCertificateMetadataArgs
    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.
    createdAt String
    An ISO-8601 timestamp representation of entity creation date.
    description String
    An optional description of the certificate. Requires replacement if changed.
    gatewayId 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.
    updatedAt String
    An ISO-8601 timestamp representation of entity update date.

    Supporting Types

    AiGatewayDataPlaneCertificateMetadata, AiGatewayDataPlaneCertificateMetadataArgs

    DnsNames List<string>
    DNS subject alternative names.
    EmailAddresses List<string>
    Email subject alternative names.
    Expiry double
    Unix timestamp of certificate expiry.
    IpAddresses List<string>
    IP subject alternative names.
    IsCa bool
    Whether the certificate is a CA certificate.
    Issuer string
    The certificate issuer.
    KeyUsages List<string>
    Key usage types for the certificate.
    SanNames List<string>
    Subject alternative names (deprecated).

    Deprecated: Deprecated

    Snis List<string>
    Server Name Indications associated with the certificate.
    Subject string
    The certificate subject.
    Uris List<string>
    URI subject alternative names.
    DnsNames []string
    DNS subject alternative names.
    EmailAddresses []string
    Email subject alternative names.
    Expiry float64
    Unix timestamp of certificate expiry.
    IpAddresses []string
    IP subject alternative names.
    IsCa bool
    Whether the certificate is a CA certificate.
    Issuer string
    The certificate issuer.
    KeyUsages []string
    Key usage types for the certificate.
    SanNames []string
    Subject alternative names (deprecated).

    Deprecated: 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).

    Deprecated: Deprecated

    snis list(string)
    Server Name Indications associated with the certificate.
    subject string
    The certificate subject.
    uris list(string)
    URI subject alternative names.
    dnsNames List<String>
    DNS subject alternative names.
    emailAddresses List<String>
    Email subject alternative names.
    expiry Double
    Unix timestamp of certificate expiry.
    ipAddresses List<String>
    IP subject alternative names.
    isCa Boolean
    Whether the certificate is a CA certificate.
    issuer String
    The certificate issuer.
    keyUsages List<String>
    Key usage types for the certificate.
    sanNames List<String>
    Subject alternative names (deprecated).

    Deprecated: Deprecated

    snis List<String>
    Server Name Indications associated with the certificate.
    subject String
    The certificate subject.
    uris List<String>
    URI subject alternative names.
    dnsNames string[]
    DNS subject alternative names.
    emailAddresses string[]
    Email subject alternative names.
    expiry number
    Unix timestamp of certificate expiry.
    ipAddresses string[]
    IP subject alternative names.
    isCa boolean
    Whether the certificate is a CA certificate.
    issuer string
    The certificate issuer.
    keyUsages string[]
    Key usage types for the certificate.
    sanNames string[]
    Subject alternative names (deprecated).

    Deprecated: 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).

    Deprecated: Deprecated

    snis Sequence[str]
    Server Name Indications associated with the certificate.
    subject str
    The certificate subject.
    uris Sequence[str]
    URI subject alternative names.
    dnsNames List<String>
    DNS subject alternative names.
    emailAddresses List<String>
    Email subject alternative names.
    expiry Number
    Unix timestamp of certificate expiry.
    ipAddresses List<String>
    IP subject alternative names.
    isCa Boolean
    Whether the certificate is a CA certificate.
    issuer String
    The certificate issuer.
    keyUsages List<String>
    Key usage types for the certificate.
    sanNames List<String>
    Subject alternative names (deprecated).

    Deprecated: 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 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