konnect.GatewaySni
Explore with Pulumi AI
GatewaySNI Resource
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as konnect from "@pulumi/konnect";
const myGatewaysni = new konnect.GatewaySni("myGatewaysni", {
certificate: {
id: "...my_id...",
},
controlPlaneId: "9524ec7d-36d9-465d-a8c5-83a3c9390458",
gatewaySniId: "...my_id...",
tags: ["..."],
});
import pulumi
import pulumi_konnect as konnect
my_gatewaysni = konnect.GatewaySni("myGatewaysni",
certificate={
"id": "...my_id...",
},
control_plane_id="9524ec7d-36d9-465d-a8c5-83a3c9390458",
gateway_sni_id="...my_id...",
tags=["..."])
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.NewGatewaySni(ctx, "myGatewaysni", &konnect.GatewaySniArgs{
Certificate: &konnect.GatewaySniCertificateArgs{
Id: pulumi.String("...my_id..."),
},
ControlPlaneId: pulumi.String("9524ec7d-36d9-465d-a8c5-83a3c9390458"),
GatewaySniId: pulumi.String("...my_id..."),
Tags: pulumi.StringArray{
pulumi.String("..."),
},
})
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 myGatewaysni = new Konnect.GatewaySni("myGatewaysni", new()
{
Certificate = new Konnect.Inputs.GatewaySniCertificateArgs
{
Id = "...my_id...",
},
ControlPlaneId = "9524ec7d-36d9-465d-a8c5-83a3c9390458",
GatewaySniId = "...my_id...",
Tags = new[]
{
"...",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.konnect.GatewaySni;
import com.pulumi.konnect.GatewaySniArgs;
import com.pulumi.konnect.inputs.GatewaySniCertificateArgs;
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 myGatewaysni = new GatewaySni("myGatewaysni", GatewaySniArgs.builder()
.certificate(GatewaySniCertificateArgs.builder()
.id("...my_id...")
.build())
.controlPlaneId("9524ec7d-36d9-465d-a8c5-83a3c9390458")
.gatewaySniId("...my_id...")
.tags("...")
.build());
}
}
resources:
myGatewaysni:
type: konnect:GatewaySni
properties:
certificate:
id: '...my_id...'
controlPlaneId: 9524ec7d-36d9-465d-a8c5-83a3c9390458
gatewaySniId: '...my_id...'
tags:
- '...'
Create GatewaySni Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new GatewaySni(name: string, args: GatewaySniArgs, opts?: CustomResourceOptions);
@overload
def GatewaySni(resource_name: str,
args: GatewaySniArgs,
opts: Optional[ResourceOptions] = None)
@overload
def GatewaySni(resource_name: str,
opts: Optional[ResourceOptions] = None,
control_plane_id: Optional[str] = None,
certificate: Optional[GatewaySniCertificateArgs] = None,
gateway_sni_id: Optional[str] = None,
name: Optional[str] = None,
tags: Optional[Sequence[str]] = None)
func NewGatewaySni(ctx *Context, name string, args GatewaySniArgs, opts ...ResourceOption) (*GatewaySni, error)
public GatewaySni(string name, GatewaySniArgs args, CustomResourceOptions? opts = null)
public GatewaySni(String name, GatewaySniArgs args)
public GatewaySni(String name, GatewaySniArgs args, CustomResourceOptions options)
type: konnect:GatewaySni
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 GatewaySniArgs
- 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 GatewaySniArgs
- 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 GatewaySniArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GatewaySniArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GatewaySniArgs
- 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 gatewaySniResource = new Konnect.GatewaySni("gatewaySniResource", new()
{
ControlPlaneId = "string",
Certificate = new Konnect.Inputs.GatewaySniCertificateArgs
{
Id = "string",
},
GatewaySniId = "string",
Name = "string",
Tags = new[]
{
"string",
},
});
example, err := konnect.NewGatewaySni(ctx, "gatewaySniResource", &konnect.GatewaySniArgs{
ControlPlaneId: pulumi.String("string"),
Certificate: &.GatewaySniCertificateArgs{
Id: pulumi.String("string"),
},
GatewaySniId: pulumi.String("string"),
Name: pulumi.String("string"),
Tags: pulumi.StringArray{
pulumi.String("string"),
},
})
var gatewaySniResource = new GatewaySni("gatewaySniResource", GatewaySniArgs.builder()
.controlPlaneId("string")
.certificate(GatewaySniCertificateArgs.builder()
.id("string")
.build())
.gatewaySniId("string")
.name("string")
.tags("string")
.build());
gateway_sni_resource = konnect.GatewaySni("gatewaySniResource",
control_plane_id="string",
certificate={
"id": "string",
},
gateway_sni_id="string",
name="string",
tags=["string"])
const gatewaySniResource = new konnect.GatewaySni("gatewaySniResource", {
controlPlaneId: "string",
certificate: {
id: "string",
},
gatewaySniId: "string",
name: "string",
tags: ["string"],
});
type: konnect:GatewaySni
properties:
certificate:
id: string
controlPlaneId: string
gatewaySniId: string
name: string
tags:
- string
GatewaySni 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 GatewaySni 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.
- Certificate
Gateway
Sni Certificate - The id (a UUID) of the certificate with which to associate the SNI hostname. The Certificate must have a valid private key associated with it to be used by the SNI object.
- Gateway
Sni stringId - The ID of this resource.
- Name string
- The SNI name to associate with the given certificate.
- List<string>
- An optional set of strings associated with the SNIs for grouping and filtering.
- Control
Plane stringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- Certificate
Gateway
Sni Certificate Args - The id (a UUID) of the certificate with which to associate the SNI hostname. The Certificate must have a valid private key associated with it to be used by the SNI object.
- Gateway
Sni stringId - The ID of this resource.
- Name string
- The SNI name to associate with the given certificate.
- []string
- An optional set of strings associated with the SNIs for grouping and filtering.
- control
Plane StringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- certificate
Gateway
Sni Certificate - The id (a UUID) of the certificate with which to associate the SNI hostname. The Certificate must have a valid private key associated with it to be used by the SNI object.
- gateway
Sni StringId - The ID of this resource.
- name String
- The SNI name to associate with the given certificate.
- List<String>
- An optional set of strings associated with the SNIs for grouping and filtering.
- control
Plane stringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- certificate
Gateway
Sni Certificate - The id (a UUID) of the certificate with which to associate the SNI hostname. The Certificate must have a valid private key associated with it to be used by the SNI object.
- gateway
Sni stringId - The ID of this resource.
- name string
- The SNI name to associate with the given certificate.
- string[]
- An optional set of strings associated with the SNIs for grouping and filtering.
- control_
plane_ strid - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- certificate
Gateway
Sni Certificate Args - The id (a UUID) of the certificate with which to associate the SNI hostname. The Certificate must have a valid private key associated with it to be used by the SNI object.
- gateway_
sni_ strid - The ID of this resource.
- name str
- The SNI name to associate with the given certificate.
- Sequence[str]
- An optional set of strings associated with the SNIs for grouping and filtering.
- control
Plane StringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- certificate Property Map
- The id (a UUID) of the certificate with which to associate the SNI hostname. The Certificate must have a valid private key associated with it to be used by the SNI object.
- gateway
Sni StringId - The ID of this resource.
- name String
- The SNI name to associate with the given certificate.
- List<String>
- An optional set of strings associated with the SNIs for grouping and filtering.
Outputs
All input properties are implicitly available as output properties. Additionally, the GatewaySni resource produces the following output properties:
- created_
at float - Unix epoch when the resource was created.
- id str
- The provider-assigned unique ID for this managed resource.
- updated_
at float - Unix epoch when the resource was last updated.
Look up Existing GatewaySni Resource
Get an existing GatewaySni 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?: GatewaySniState, opts?: CustomResourceOptions): GatewaySni
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
certificate: Optional[GatewaySniCertificateArgs] = None,
control_plane_id: Optional[str] = None,
created_at: Optional[float] = None,
gateway_sni_id: Optional[str] = None,
name: Optional[str] = None,
tags: Optional[Sequence[str]] = None,
updated_at: Optional[float] = None) -> GatewaySni
func GetGatewaySni(ctx *Context, name string, id IDInput, state *GatewaySniState, opts ...ResourceOption) (*GatewaySni, error)
public static GatewaySni Get(string name, Input<string> id, GatewaySniState? state, CustomResourceOptions? opts = null)
public static GatewaySni get(String name, Output<String> id, GatewaySniState state, CustomResourceOptions options)
resources: _: type: konnect:GatewaySni 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.
- Certificate
Gateway
Sni Certificate - The id (a UUID) of the certificate with which to associate the SNI hostname. The Certificate must have a valid private key associated with it to be used by the SNI object.
- 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
Sni stringId - The ID of this resource.
- Name string
- The SNI name to associate with the given certificate.
- List<string>
- An optional set of strings associated with the SNIs for grouping and filtering.
- Updated
At double - Unix epoch when the resource was last updated.
- Certificate
Gateway
Sni Certificate Args - The id (a UUID) of the certificate with which to associate the SNI hostname. The Certificate must have a valid private key associated with it to be used by the SNI object.
- 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
Sni stringId - The ID of this resource.
- Name string
- The SNI name to associate with the given certificate.
- []string
- An optional set of strings associated with the SNIs for grouping and filtering.
- Updated
At float64 - Unix epoch when the resource was last updated.
- certificate
Gateway
Sni Certificate - The id (a UUID) of the certificate with which to associate the SNI hostname. The Certificate must have a valid private key associated with it to be used by the SNI object.
- 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
Sni StringId - The ID of this resource.
- name String
- The SNI name to associate with the given certificate.
- List<String>
- An optional set of strings associated with the SNIs for grouping and filtering.
- updated
At Double - Unix epoch when the resource was last updated.
- certificate
Gateway
Sni Certificate - The id (a UUID) of the certificate with which to associate the SNI hostname. The Certificate must have a valid private key associated with it to be used by the SNI object.
- 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
Sni stringId - The ID of this resource.
- name string
- The SNI name to associate with the given certificate.
- string[]
- An optional set of strings associated with the SNIs for grouping and filtering.
- updated
At number - Unix epoch when the resource was last updated.
- certificate
Gateway
Sni Certificate Args - The id (a UUID) of the certificate with which to associate the SNI hostname. The Certificate must have a valid private key associated with it to be used by the SNI object.
- 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_
sni_ strid - The ID of this resource.
- name str
- The SNI name to associate with the given certificate.
- Sequence[str]
- An optional set of strings associated with the SNIs for grouping and filtering.
- updated_
at float - Unix epoch when the resource was last updated.
- certificate Property Map
- The id (a UUID) of the certificate with which to associate the SNI hostname. The Certificate must have a valid private key associated with it to be used by the SNI object.
- 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
Sni StringId - The ID of this resource.
- name String
- The SNI name to associate with the given certificate.
- List<String>
- An optional set of strings associated with the SNIs for grouping and filtering.
- updated
At Number - Unix epoch when the resource was last updated.
Supporting Types
GatewaySniCertificate, GatewaySniCertificateArgs
- Id string
- Id string
- id String
- id string
- id str
- id String
Import
$ pulumi import konnect:index/gatewaySni:GatewaySni my_konnect_gateway_sni "{ \"control_plane_id\": \"9524ec7d-36d9-465d-a8c5-83a3c9390458\", \"sniid\": \"64c17a1a-b7d7-4a65-a5a4-42e4a7016e7f\"}"
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.