konnect.GatewayDataPlaneClientCertificate
Explore with Pulumi AI
GatewayDataPlaneClientCertificate Resource
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as konnect from "@pulumi/konnect";
const myGatewaydataplaneclientcertificate = new konnect.GatewayDataPlaneClientCertificate("myGatewaydataplaneclientcertificate", {
cert: "...my_cert...",
controlPlaneId: "9524ec7d-36d9-465d-a8c5-83a3c9390458",
});
import pulumi
import pulumi_konnect as konnect
my_gatewaydataplaneclientcertificate = konnect.GatewayDataPlaneClientCertificate("myGatewaydataplaneclientcertificate",
cert="...my_cert...",
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.NewGatewayDataPlaneClientCertificate(ctx, "myGatewaydataplaneclientcertificate", &konnect.GatewayDataPlaneClientCertificateArgs{
Cert: pulumi.String("...my_cert..."),
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 myGatewaydataplaneclientcertificate = new Konnect.GatewayDataPlaneClientCertificate("myGatewaydataplaneclientcertificate", new()
{
Cert = "...my_cert...",
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.GatewayDataPlaneClientCertificate;
import com.pulumi.konnect.GatewayDataPlaneClientCertificateArgs;
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 myGatewaydataplaneclientcertificate = new GatewayDataPlaneClientCertificate("myGatewaydataplaneclientcertificate", GatewayDataPlaneClientCertificateArgs.builder()
.cert("...my_cert...")
.controlPlaneId("9524ec7d-36d9-465d-a8c5-83a3c9390458")
.build());
}
}
resources:
myGatewaydataplaneclientcertificate:
type: konnect:GatewayDataPlaneClientCertificate
properties:
cert: '...my_cert...'
controlPlaneId: 9524ec7d-36d9-465d-a8c5-83a3c9390458
Create GatewayDataPlaneClientCertificate Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new GatewayDataPlaneClientCertificate(name: string, args: GatewayDataPlaneClientCertificateArgs, opts?: CustomResourceOptions);
@overload
def GatewayDataPlaneClientCertificate(resource_name: str,
args: GatewayDataPlaneClientCertificateArgs,
opts: Optional[ResourceOptions] = None)
@overload
def GatewayDataPlaneClientCertificate(resource_name: str,
opts: Optional[ResourceOptions] = None,
cert: Optional[str] = None,
control_plane_id: Optional[str] = None)
func NewGatewayDataPlaneClientCertificate(ctx *Context, name string, args GatewayDataPlaneClientCertificateArgs, opts ...ResourceOption) (*GatewayDataPlaneClientCertificate, error)
public GatewayDataPlaneClientCertificate(string name, GatewayDataPlaneClientCertificateArgs args, CustomResourceOptions? opts = null)
public GatewayDataPlaneClientCertificate(String name, GatewayDataPlaneClientCertificateArgs args)
public GatewayDataPlaneClientCertificate(String name, GatewayDataPlaneClientCertificateArgs args, CustomResourceOptions options)
type: konnect:GatewayDataPlaneClientCertificate
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 GatewayDataPlaneClientCertificateArgs
- 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 GatewayDataPlaneClientCertificateArgs
- 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 GatewayDataPlaneClientCertificateArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GatewayDataPlaneClientCertificateArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GatewayDataPlaneClientCertificateArgs
- 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 gatewayDataPlaneClientCertificateResource = new Konnect.GatewayDataPlaneClientCertificate("gatewayDataPlaneClientCertificateResource", new()
{
Cert = "string",
ControlPlaneId = "string",
});
example, err := konnect.NewGatewayDataPlaneClientCertificate(ctx, "gatewayDataPlaneClientCertificateResource", &konnect.GatewayDataPlaneClientCertificateArgs{
Cert: pulumi.String("string"),
ControlPlaneId: pulumi.String("string"),
})
var gatewayDataPlaneClientCertificateResource = new GatewayDataPlaneClientCertificate("gatewayDataPlaneClientCertificateResource", GatewayDataPlaneClientCertificateArgs.builder()
.cert("string")
.controlPlaneId("string")
.build());
gateway_data_plane_client_certificate_resource = konnect.GatewayDataPlaneClientCertificate("gatewayDataPlaneClientCertificateResource",
cert="string",
control_plane_id="string")
const gatewayDataPlaneClientCertificateResource = new konnect.GatewayDataPlaneClientCertificate("gatewayDataPlaneClientCertificateResource", {
cert: "string",
controlPlaneId: "string",
});
type: konnect:GatewayDataPlaneClientCertificate
properties:
cert: string
controlPlaneId: string
GatewayDataPlaneClientCertificate 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 GatewayDataPlaneClientCertificate resource accepts the following input properties:
- Cert string
- JSON escaped string of the certificate. Requires replacement if changed.
- Control
Plane stringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- Cert string
- JSON escaped string of the certificate. Requires replacement if changed.
- Control
Plane stringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- cert String
- JSON escaped string of the certificate. Requires replacement if changed.
- control
Plane StringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- cert string
- JSON escaped string of the certificate. Requires replacement if changed.
- control
Plane stringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- cert str
- JSON escaped string of the certificate. Requires replacement if changed.
- control_
plane_ strid - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- cert String
- JSON escaped string of the certificate. Requires replacement if changed.
- control
Plane StringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
Outputs
All input properties are implicitly available as output properties. Additionally, the GatewayDataPlaneClientCertificate resource produces the following output properties:
- created_
at float - Date certificate was created.
- id str
- The provider-assigned unique ID for this managed resource.
- updated_
at float - Date certificate was last updated.
Look up Existing GatewayDataPlaneClientCertificate Resource
Get an existing GatewayDataPlaneClientCertificate 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?: GatewayDataPlaneClientCertificateState, opts?: CustomResourceOptions): GatewayDataPlaneClientCertificate
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
cert: Optional[str] = None,
control_plane_id: Optional[str] = None,
created_at: Optional[float] = None,
updated_at: Optional[float] = None) -> GatewayDataPlaneClientCertificate
func GetGatewayDataPlaneClientCertificate(ctx *Context, name string, id IDInput, state *GatewayDataPlaneClientCertificateState, opts ...ResourceOption) (*GatewayDataPlaneClientCertificate, error)
public static GatewayDataPlaneClientCertificate Get(string name, Input<string> id, GatewayDataPlaneClientCertificateState? state, CustomResourceOptions? opts = null)
public static GatewayDataPlaneClientCertificate get(String name, Output<String> id, GatewayDataPlaneClientCertificateState state, CustomResourceOptions options)
resources: _: type: konnect:GatewayDataPlaneClientCertificate 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.
- Cert string
- JSON escaped string of the certificate. Requires replacement if changed.
- Control
Plane stringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- Created
At double - Date certificate was created.
- Updated
At double - Date certificate was last updated.
- Cert string
- JSON escaped string of the certificate. Requires replacement if changed.
- Control
Plane stringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- Created
At float64 - Date certificate was created.
- Updated
At float64 - Date certificate was last updated.
- cert String
- JSON escaped string of the certificate. Requires replacement if changed.
- control
Plane StringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- created
At Double - Date certificate was created.
- updated
At Double - Date certificate was last updated.
- cert string
- JSON escaped string of the certificate. Requires replacement if changed.
- control
Plane stringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- created
At number - Date certificate was created.
- updated
At number - Date certificate was last updated.
- cert str
- JSON escaped string of the certificate. Requires replacement if changed.
- control_
plane_ strid - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- created_
at float - Date certificate was created.
- updated_
at float - Date certificate was last updated.
- cert String
- JSON escaped string of the certificate. Requires replacement if changed.
- control
Plane StringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- created
At Number - Date certificate was created.
- updated
At Number - Date certificate was last updated.
Import
$ pulumi import konnect:index/gatewayDataPlaneClientCertificate:GatewayDataPlaneClientCertificate my_konnect_gateway_data_plane_client_certificate "{ \"certificate_id\": \"\", \"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.