konnect.GatewayUpstream
Explore with Pulumi AI
GatewayUpstream Resource
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as konnect from "@pulumi/konnect";
const myGatewayupstream = new konnect.GatewayUpstream("myGatewayupstream", {
algorithm: "latency",
clientCertificate: {
id: "...my_id...",
},
controlPlaneId: "9524ec7d-36d9-465d-a8c5-83a3c9390458",
hashFallback: "path",
hashFallbackHeader: "...my_hash_fallback_header...",
hashFallbackQueryArg: "...my_hash_fallback_query_arg...",
hashFallbackUriCapture: "...my_hash_fallback_uri_capture...",
hashOn: "header",
hashOnCookie: "...my_hash_on_cookie...",
hashOnCookiePath: "...my_hash_on_cookie_path...",
hashOnHeader: "...my_hash_on_header...",
hashOnQueryArg: "...my_hash_on_query_arg...",
hashOnUriCapture: "...my_hash_on_uri_capture...",
healthchecks: {
active: {
concurrency: 6,
headers: {
key: "value",
},
healthy: {
httpStatuses: [0],
interval: 8.45,
successes: 8,
},
httpPath: "...my_http_path...",
httpsSni: "...my_https_sni...",
httpsVerifyCertificate: true,
timeout: 9.02,
type: "https",
unhealthy: {
httpFailures: 8,
httpStatuses: [3],
interval: 4.15,
tcpFailures: 3,
timeouts: 7,
},
},
passive: {
healthy: {
httpStatuses: [0],
successes: 8,
},
type: "grpcs",
unhealthy: {
httpFailures: 10,
httpStatuses: [9],
tcpFailures: 10,
timeouts: 0,
},
},
threshold: 3.63,
},
hostHeader: "...my_host_header...",
gatewayUpstreamId: "...my_id...",
slots: 0,
tags: ["..."],
useSrvName: true,
});
import pulumi
import pulumi_konnect as konnect
my_gatewayupstream = konnect.GatewayUpstream("myGatewayupstream",
algorithm="latency",
client_certificate={
"id": "...my_id...",
},
control_plane_id="9524ec7d-36d9-465d-a8c5-83a3c9390458",
hash_fallback="path",
hash_fallback_header="...my_hash_fallback_header...",
hash_fallback_query_arg="...my_hash_fallback_query_arg...",
hash_fallback_uri_capture="...my_hash_fallback_uri_capture...",
hash_on="header",
hash_on_cookie="...my_hash_on_cookie...",
hash_on_cookie_path="...my_hash_on_cookie_path...",
hash_on_header="...my_hash_on_header...",
hash_on_query_arg="...my_hash_on_query_arg...",
hash_on_uri_capture="...my_hash_on_uri_capture...",
healthchecks={
"active": {
"concurrency": 6,
"headers": {
"key": "value",
},
"healthy": {
"http_statuses": [0],
"interval": 8.45,
"successes": 8,
},
"http_path": "...my_http_path...",
"https_sni": "...my_https_sni...",
"https_verify_certificate": True,
"timeout": 9.02,
"type": "https",
"unhealthy": {
"http_failures": 8,
"http_statuses": [3],
"interval": 4.15,
"tcp_failures": 3,
"timeouts": 7,
},
},
"passive": {
"healthy": {
"http_statuses": [0],
"successes": 8,
},
"type": "grpcs",
"unhealthy": {
"http_failures": 10,
"http_statuses": [9],
"tcp_failures": 10,
"timeouts": 0,
},
},
"threshold": 3.63,
},
host_header="...my_host_header...",
gateway_upstream_id="...my_id...",
slots=0,
tags=["..."],
use_srv_name=True)
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.NewGatewayUpstream(ctx, "myGatewayupstream", &konnect.GatewayUpstreamArgs{
Algorithm: pulumi.String("latency"),
ClientCertificate: &konnect.GatewayUpstreamClientCertificateArgs{
Id: pulumi.String("...my_id..."),
},
ControlPlaneId: pulumi.String("9524ec7d-36d9-465d-a8c5-83a3c9390458"),
HashFallback: pulumi.String("path"),
HashFallbackHeader: pulumi.String("...my_hash_fallback_header..."),
HashFallbackQueryArg: pulumi.String("...my_hash_fallback_query_arg..."),
HashFallbackUriCapture: pulumi.String("...my_hash_fallback_uri_capture..."),
HashOn: pulumi.String("header"),
HashOnCookie: pulumi.String("...my_hash_on_cookie..."),
HashOnCookiePath: pulumi.String("...my_hash_on_cookie_path..."),
HashOnHeader: pulumi.String("...my_hash_on_header..."),
HashOnQueryArg: pulumi.String("...my_hash_on_query_arg..."),
HashOnUriCapture: pulumi.String("...my_hash_on_uri_capture..."),
Healthchecks: &konnect.GatewayUpstreamHealthchecksArgs{
Active: &konnect.GatewayUpstreamHealthchecksActiveArgs{
Concurrency: pulumi.Float64(6),
Headers: pulumi.StringMap{
"key": pulumi.String("value"),
},
Healthy: &konnect.GatewayUpstreamHealthchecksActiveHealthyArgs{
HttpStatuses: pulumi.Float64Array{
pulumi.Float64(0),
},
Interval: pulumi.Float64(8.45),
Successes: pulumi.Float64(8),
},
HttpPath: pulumi.String("...my_http_path..."),
HttpsSni: pulumi.String("...my_https_sni..."),
HttpsVerifyCertificate: pulumi.Bool(true),
Timeout: pulumi.Float64(9.02),
Type: pulumi.String("https"),
Unhealthy: &konnect.GatewayUpstreamHealthchecksActiveUnhealthyArgs{
HttpFailures: pulumi.Float64(8),
HttpStatuses: pulumi.Float64Array{
pulumi.Float64(3),
},
Interval: pulumi.Float64(4.15),
TcpFailures: pulumi.Float64(3),
Timeouts: pulumi.Float64(7),
},
},
Passive: &konnect.GatewayUpstreamHealthchecksPassiveArgs{
Healthy: &konnect.GatewayUpstreamHealthchecksPassiveHealthyArgs{
HttpStatuses: pulumi.Float64Array{
pulumi.Float64(0),
},
Successes: pulumi.Float64(8),
},
Type: pulumi.String("grpcs"),
Unhealthy: &konnect.GatewayUpstreamHealthchecksPassiveUnhealthyArgs{
HttpFailures: pulumi.Float64(10),
HttpStatuses: pulumi.Float64Array{
pulumi.Float64(9),
},
TcpFailures: pulumi.Float64(10),
Timeouts: pulumi.Float64(0),
},
},
Threshold: pulumi.Float64(3.63),
},
HostHeader: pulumi.String("...my_host_header..."),
GatewayUpstreamId: pulumi.String("...my_id..."),
Slots: pulumi.Float64(0),
Tags: pulumi.StringArray{
pulumi.String("..."),
},
UseSrvName: pulumi.Bool(true),
})
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 myGatewayupstream = new Konnect.GatewayUpstream("myGatewayupstream", new()
{
Algorithm = "latency",
ClientCertificate = new Konnect.Inputs.GatewayUpstreamClientCertificateArgs
{
Id = "...my_id...",
},
ControlPlaneId = "9524ec7d-36d9-465d-a8c5-83a3c9390458",
HashFallback = "path",
HashFallbackHeader = "...my_hash_fallback_header...",
HashFallbackQueryArg = "...my_hash_fallback_query_arg...",
HashFallbackUriCapture = "...my_hash_fallback_uri_capture...",
HashOn = "header",
HashOnCookie = "...my_hash_on_cookie...",
HashOnCookiePath = "...my_hash_on_cookie_path...",
HashOnHeader = "...my_hash_on_header...",
HashOnQueryArg = "...my_hash_on_query_arg...",
HashOnUriCapture = "...my_hash_on_uri_capture...",
Healthchecks = new Konnect.Inputs.GatewayUpstreamHealthchecksArgs
{
Active = new Konnect.Inputs.GatewayUpstreamHealthchecksActiveArgs
{
Concurrency = 6,
Headers =
{
{ "key", "value" },
},
Healthy = new Konnect.Inputs.GatewayUpstreamHealthchecksActiveHealthyArgs
{
HttpStatuses = new[]
{
0,
},
Interval = 8.45,
Successes = 8,
},
HttpPath = "...my_http_path...",
HttpsSni = "...my_https_sni...",
HttpsVerifyCertificate = true,
Timeout = 9.02,
Type = "https",
Unhealthy = new Konnect.Inputs.GatewayUpstreamHealthchecksActiveUnhealthyArgs
{
HttpFailures = 8,
HttpStatuses = new[]
{
3,
},
Interval = 4.15,
TcpFailures = 3,
Timeouts = 7,
},
},
Passive = new Konnect.Inputs.GatewayUpstreamHealthchecksPassiveArgs
{
Healthy = new Konnect.Inputs.GatewayUpstreamHealthchecksPassiveHealthyArgs
{
HttpStatuses = new[]
{
0,
},
Successes = 8,
},
Type = "grpcs",
Unhealthy = new Konnect.Inputs.GatewayUpstreamHealthchecksPassiveUnhealthyArgs
{
HttpFailures = 10,
HttpStatuses = new[]
{
9,
},
TcpFailures = 10,
Timeouts = 0,
},
},
Threshold = 3.63,
},
HostHeader = "...my_host_header...",
GatewayUpstreamId = "...my_id...",
Slots = 0,
Tags = new[]
{
"...",
},
UseSrvName = true,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.konnect.GatewayUpstream;
import com.pulumi.konnect.GatewayUpstreamArgs;
import com.pulumi.konnect.inputs.GatewayUpstreamClientCertificateArgs;
import com.pulumi.konnect.inputs.GatewayUpstreamHealthchecksArgs;
import com.pulumi.konnect.inputs.GatewayUpstreamHealthchecksActiveArgs;
import com.pulumi.konnect.inputs.GatewayUpstreamHealthchecksActiveHealthyArgs;
import com.pulumi.konnect.inputs.GatewayUpstreamHealthchecksActiveUnhealthyArgs;
import com.pulumi.konnect.inputs.GatewayUpstreamHealthchecksPassiveArgs;
import com.pulumi.konnect.inputs.GatewayUpstreamHealthchecksPassiveHealthyArgs;
import com.pulumi.konnect.inputs.GatewayUpstreamHealthchecksPassiveUnhealthyArgs;
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 myGatewayupstream = new GatewayUpstream("myGatewayupstream", GatewayUpstreamArgs.builder()
.algorithm("latency")
.clientCertificate(GatewayUpstreamClientCertificateArgs.builder()
.id("...my_id...")
.build())
.controlPlaneId("9524ec7d-36d9-465d-a8c5-83a3c9390458")
.hashFallback("path")
.hashFallbackHeader("...my_hash_fallback_header...")
.hashFallbackQueryArg("...my_hash_fallback_query_arg...")
.hashFallbackUriCapture("...my_hash_fallback_uri_capture...")
.hashOn("header")
.hashOnCookie("...my_hash_on_cookie...")
.hashOnCookiePath("...my_hash_on_cookie_path...")
.hashOnHeader("...my_hash_on_header...")
.hashOnQueryArg("...my_hash_on_query_arg...")
.hashOnUriCapture("...my_hash_on_uri_capture...")
.healthchecks(GatewayUpstreamHealthchecksArgs.builder()
.active(GatewayUpstreamHealthchecksActiveArgs.builder()
.concurrency(6)
.headers(Map.of("key", "value"))
.healthy(GatewayUpstreamHealthchecksActiveHealthyArgs.builder()
.httpStatuses(0)
.interval(8.45)
.successes(8)
.build())
.httpPath("...my_http_path...")
.httpsSni("...my_https_sni...")
.httpsVerifyCertificate(true)
.timeout(9.02)
.type("https")
.unhealthy(GatewayUpstreamHealthchecksActiveUnhealthyArgs.builder()
.httpFailures(8)
.httpStatuses(3)
.interval(4.15)
.tcpFailures(3)
.timeouts(7)
.build())
.build())
.passive(GatewayUpstreamHealthchecksPassiveArgs.builder()
.healthy(GatewayUpstreamHealthchecksPassiveHealthyArgs.builder()
.httpStatuses(0)
.successes(8)
.build())
.type("grpcs")
.unhealthy(GatewayUpstreamHealthchecksPassiveUnhealthyArgs.builder()
.httpFailures(10)
.httpStatuses(9)
.tcpFailures(10)
.timeouts(0)
.build())
.build())
.threshold(3.63)
.build())
.hostHeader("...my_host_header...")
.gatewayUpstreamId("...my_id...")
.slots(0)
.tags("...")
.useSrvName(true)
.build());
}
}
resources:
myGatewayupstream:
type: konnect:GatewayUpstream
properties:
algorithm: latency
clientCertificate:
id: '...my_id...'
controlPlaneId: 9524ec7d-36d9-465d-a8c5-83a3c9390458
hashFallback: path
hashFallbackHeader: '...my_hash_fallback_header...'
hashFallbackQueryArg: '...my_hash_fallback_query_arg...'
hashFallbackUriCapture: '...my_hash_fallback_uri_capture...'
hashOn: header
hashOnCookie: '...my_hash_on_cookie...'
hashOnCookiePath: '...my_hash_on_cookie_path...'
hashOnHeader: '...my_hash_on_header...'
hashOnQueryArg: '...my_hash_on_query_arg...'
hashOnUriCapture: '...my_hash_on_uri_capture...'
healthchecks:
active:
concurrency: 6
headers:
key: value
healthy:
httpStatuses:
- 0
interval: 8.45
successes: 8
httpPath: '...my_http_path...'
httpsSni: '...my_https_sni...'
httpsVerifyCertificate: true
timeout: 9.02
type: https
unhealthy:
httpFailures: 8
httpStatuses:
- 3
interval: 4.15
tcpFailures: 3
timeouts: 7
passive:
healthy:
httpStatuses:
- 0
successes: 8
type: grpcs
unhealthy:
httpFailures: 10
httpStatuses:
- 9
tcpFailures: 10
timeouts: 0
threshold: 3.63
hostHeader: '...my_host_header...'
gatewayUpstreamId: '...my_id...'
slots: 0
tags:
- '...'
useSrvName: true
Create GatewayUpstream Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new GatewayUpstream(name: string, args: GatewayUpstreamArgs, opts?: CustomResourceOptions);
@overload
def GatewayUpstream(resource_name: str,
args: GatewayUpstreamArgs,
opts: Optional[ResourceOptions] = None)
@overload
def GatewayUpstream(resource_name: str,
opts: Optional[ResourceOptions] = None,
control_plane_id: Optional[str] = None,
hash_on_cookie_path: Optional[str] = None,
use_srv_name: Optional[bool] = None,
hash_on_cookie: Optional[str] = None,
hash_fallback: Optional[str] = None,
hash_fallback_header: Optional[str] = None,
hash_fallback_query_arg: Optional[str] = None,
hash_fallback_uri_capture: Optional[str] = None,
hash_on: Optional[str] = None,
gateway_upstream_id: Optional[str] = None,
client_certificate: Optional[GatewayUpstreamClientCertificateArgs] = None,
hash_on_query_arg: Optional[str] = None,
hash_on_header: Optional[str] = None,
hash_on_uri_capture: Optional[str] = None,
healthchecks: Optional[GatewayUpstreamHealthchecksArgs] = None,
host_header: Optional[str] = None,
name: Optional[str] = None,
slots: Optional[float] = None,
tags: Optional[Sequence[str]] = None,
algorithm: Optional[str] = None)
func NewGatewayUpstream(ctx *Context, name string, args GatewayUpstreamArgs, opts ...ResourceOption) (*GatewayUpstream, error)
public GatewayUpstream(string name, GatewayUpstreamArgs args, CustomResourceOptions? opts = null)
public GatewayUpstream(String name, GatewayUpstreamArgs args)
public GatewayUpstream(String name, GatewayUpstreamArgs args, CustomResourceOptions options)
type: konnect:GatewayUpstream
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 GatewayUpstreamArgs
- 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 GatewayUpstreamArgs
- 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 GatewayUpstreamArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GatewayUpstreamArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GatewayUpstreamArgs
- 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 gatewayUpstreamResource = new Konnect.GatewayUpstream("gatewayUpstreamResource", new()
{
ControlPlaneId = "string",
HashOnCookiePath = "string",
UseSrvName = false,
HashOnCookie = "string",
HashFallback = "string",
HashFallbackHeader = "string",
HashFallbackQueryArg = "string",
HashFallbackUriCapture = "string",
HashOn = "string",
GatewayUpstreamId = "string",
ClientCertificate = new Konnect.Inputs.GatewayUpstreamClientCertificateArgs
{
Id = "string",
},
HashOnQueryArg = "string",
HashOnHeader = "string",
HashOnUriCapture = "string",
Healthchecks = new Konnect.Inputs.GatewayUpstreamHealthchecksArgs
{
Active = new Konnect.Inputs.GatewayUpstreamHealthchecksActiveArgs
{
Concurrency = 0,
Headers =
{
{ "string", "string" },
},
Healthy = new Konnect.Inputs.GatewayUpstreamHealthchecksActiveHealthyArgs
{
HttpStatuses = new[]
{
0,
},
Interval = 0,
Successes = 0,
},
HttpPath = "string",
HttpsSni = "string",
HttpsVerifyCertificate = false,
Timeout = 0,
Type = "string",
Unhealthy = new Konnect.Inputs.GatewayUpstreamHealthchecksActiveUnhealthyArgs
{
HttpFailures = 0,
HttpStatuses = new[]
{
0,
},
Interval = 0,
TcpFailures = 0,
Timeouts = 0,
},
},
Passive = new Konnect.Inputs.GatewayUpstreamHealthchecksPassiveArgs
{
Healthy = new Konnect.Inputs.GatewayUpstreamHealthchecksPassiveHealthyArgs
{
HttpStatuses = new[]
{
0,
},
Successes = 0,
},
Type = "string",
Unhealthy = new Konnect.Inputs.GatewayUpstreamHealthchecksPassiveUnhealthyArgs
{
HttpFailures = 0,
HttpStatuses = new[]
{
0,
},
TcpFailures = 0,
Timeouts = 0,
},
},
Threshold = 0,
},
HostHeader = "string",
Name = "string",
Slots = 0,
Tags = new[]
{
"string",
},
Algorithm = "string",
});
example, err := konnect.NewGatewayUpstream(ctx, "gatewayUpstreamResource", &konnect.GatewayUpstreamArgs{
ControlPlaneId: pulumi.String("string"),
HashOnCookiePath: pulumi.String("string"),
UseSrvName: pulumi.Bool(false),
HashOnCookie: pulumi.String("string"),
HashFallback: pulumi.String("string"),
HashFallbackHeader: pulumi.String("string"),
HashFallbackQueryArg: pulumi.String("string"),
HashFallbackUriCapture: pulumi.String("string"),
HashOn: pulumi.String("string"),
GatewayUpstreamId: pulumi.String("string"),
ClientCertificate: &.GatewayUpstreamClientCertificateArgs{
Id: pulumi.String("string"),
},
HashOnQueryArg: pulumi.String("string"),
HashOnHeader: pulumi.String("string"),
HashOnUriCapture: pulumi.String("string"),
Healthchecks: &.GatewayUpstreamHealthchecksArgs{
Active: &.GatewayUpstreamHealthchecksActiveArgs{
Concurrency: pulumi.Float64(0),
Headers: pulumi.StringMap{
"string": pulumi.String("string"),
},
Healthy: &.GatewayUpstreamHealthchecksActiveHealthyArgs{
HttpStatuses: pulumi.Float64Array{
pulumi.Float64(0),
},
Interval: pulumi.Float64(0),
Successes: pulumi.Float64(0),
},
HttpPath: pulumi.String("string"),
HttpsSni: pulumi.String("string"),
HttpsVerifyCertificate: pulumi.Bool(false),
Timeout: pulumi.Float64(0),
Type: pulumi.String("string"),
Unhealthy: &.GatewayUpstreamHealthchecksActiveUnhealthyArgs{
HttpFailures: pulumi.Float64(0),
HttpStatuses: pulumi.Float64Array{
pulumi.Float64(0),
},
Interval: pulumi.Float64(0),
TcpFailures: pulumi.Float64(0),
Timeouts: pulumi.Float64(0),
},
},
Passive: &.GatewayUpstreamHealthchecksPassiveArgs{
Healthy: &.GatewayUpstreamHealthchecksPassiveHealthyArgs{
HttpStatuses: pulumi.Float64Array{
pulumi.Float64(0),
},
Successes: pulumi.Float64(0),
},
Type: pulumi.String("string"),
Unhealthy: &.GatewayUpstreamHealthchecksPassiveUnhealthyArgs{
HttpFailures: pulumi.Float64(0),
HttpStatuses: pulumi.Float64Array{
pulumi.Float64(0),
},
TcpFailures: pulumi.Float64(0),
Timeouts: pulumi.Float64(0),
},
},
Threshold: pulumi.Float64(0),
},
HostHeader: pulumi.String("string"),
Name: pulumi.String("string"),
Slots: pulumi.Float64(0),
Tags: pulumi.StringArray{
pulumi.String("string"),
},
Algorithm: pulumi.String("string"),
})
var gatewayUpstreamResource = new GatewayUpstream("gatewayUpstreamResource", GatewayUpstreamArgs.builder()
.controlPlaneId("string")
.hashOnCookiePath("string")
.useSrvName(false)
.hashOnCookie("string")
.hashFallback("string")
.hashFallbackHeader("string")
.hashFallbackQueryArg("string")
.hashFallbackUriCapture("string")
.hashOn("string")
.gatewayUpstreamId("string")
.clientCertificate(GatewayUpstreamClientCertificateArgs.builder()
.id("string")
.build())
.hashOnQueryArg("string")
.hashOnHeader("string")
.hashOnUriCapture("string")
.healthchecks(GatewayUpstreamHealthchecksArgs.builder()
.active(GatewayUpstreamHealthchecksActiveArgs.builder()
.concurrency(0)
.headers(Map.of("string", "string"))
.healthy(GatewayUpstreamHealthchecksActiveHealthyArgs.builder()
.httpStatuses(0)
.interval(0)
.successes(0)
.build())
.httpPath("string")
.httpsSni("string")
.httpsVerifyCertificate(false)
.timeout(0)
.type("string")
.unhealthy(GatewayUpstreamHealthchecksActiveUnhealthyArgs.builder()
.httpFailures(0)
.httpStatuses(0)
.interval(0)
.tcpFailures(0)
.timeouts(0)
.build())
.build())
.passive(GatewayUpstreamHealthchecksPassiveArgs.builder()
.healthy(GatewayUpstreamHealthchecksPassiveHealthyArgs.builder()
.httpStatuses(0)
.successes(0)
.build())
.type("string")
.unhealthy(GatewayUpstreamHealthchecksPassiveUnhealthyArgs.builder()
.httpFailures(0)
.httpStatuses(0)
.tcpFailures(0)
.timeouts(0)
.build())
.build())
.threshold(0)
.build())
.hostHeader("string")
.name("string")
.slots(0)
.tags("string")
.algorithm("string")
.build());
gateway_upstream_resource = konnect.GatewayUpstream("gatewayUpstreamResource",
control_plane_id="string",
hash_on_cookie_path="string",
use_srv_name=False,
hash_on_cookie="string",
hash_fallback="string",
hash_fallback_header="string",
hash_fallback_query_arg="string",
hash_fallback_uri_capture="string",
hash_on="string",
gateway_upstream_id="string",
client_certificate={
"id": "string",
},
hash_on_query_arg="string",
hash_on_header="string",
hash_on_uri_capture="string",
healthchecks={
"active": {
"concurrency": 0,
"headers": {
"string": "string",
},
"healthy": {
"http_statuses": [0],
"interval": 0,
"successes": 0,
},
"http_path": "string",
"https_sni": "string",
"https_verify_certificate": False,
"timeout": 0,
"type": "string",
"unhealthy": {
"http_failures": 0,
"http_statuses": [0],
"interval": 0,
"tcp_failures": 0,
"timeouts": 0,
},
},
"passive": {
"healthy": {
"http_statuses": [0],
"successes": 0,
},
"type": "string",
"unhealthy": {
"http_failures": 0,
"http_statuses": [0],
"tcp_failures": 0,
"timeouts": 0,
},
},
"threshold": 0,
},
host_header="string",
name="string",
slots=0,
tags=["string"],
algorithm="string")
const gatewayUpstreamResource = new konnect.GatewayUpstream("gatewayUpstreamResource", {
controlPlaneId: "string",
hashOnCookiePath: "string",
useSrvName: false,
hashOnCookie: "string",
hashFallback: "string",
hashFallbackHeader: "string",
hashFallbackQueryArg: "string",
hashFallbackUriCapture: "string",
hashOn: "string",
gatewayUpstreamId: "string",
clientCertificate: {
id: "string",
},
hashOnQueryArg: "string",
hashOnHeader: "string",
hashOnUriCapture: "string",
healthchecks: {
active: {
concurrency: 0,
headers: {
string: "string",
},
healthy: {
httpStatuses: [0],
interval: 0,
successes: 0,
},
httpPath: "string",
httpsSni: "string",
httpsVerifyCertificate: false,
timeout: 0,
type: "string",
unhealthy: {
httpFailures: 0,
httpStatuses: [0],
interval: 0,
tcpFailures: 0,
timeouts: 0,
},
},
passive: {
healthy: {
httpStatuses: [0],
successes: 0,
},
type: "string",
unhealthy: {
httpFailures: 0,
httpStatuses: [0],
tcpFailures: 0,
timeouts: 0,
},
},
threshold: 0,
},
hostHeader: "string",
name: "string",
slots: 0,
tags: ["string"],
algorithm: "string",
});
type: konnect:GatewayUpstream
properties:
algorithm: string
clientCertificate:
id: string
controlPlaneId: string
gatewayUpstreamId: string
hashFallback: string
hashFallbackHeader: string
hashFallbackQueryArg: string
hashFallbackUriCapture: string
hashOn: string
hashOnCookie: string
hashOnCookiePath: string
hashOnHeader: string
hashOnQueryArg: string
hashOnUriCapture: string
healthchecks:
active:
concurrency: 0
headers:
string: string
healthy:
httpStatuses:
- 0
interval: 0
successes: 0
httpPath: string
httpsSni: string
httpsVerifyCertificate: false
timeout: 0
type: string
unhealthy:
httpFailures: 0
httpStatuses:
- 0
interval: 0
tcpFailures: 0
timeouts: 0
passive:
healthy:
httpStatuses:
- 0
successes: 0
type: string
unhealthy:
httpFailures: 0
httpStatuses:
- 0
tcpFailures: 0
timeouts: 0
threshold: 0
hostHeader: string
name: string
slots: 0
tags:
- string
useSrvName: false
GatewayUpstream 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 GatewayUpstream 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.
- Algorithm string
- Which load balancing algorithm to use. must be one of ["consistent-hashing", "least-connections", "round-robin", "latency"]
- Client
Certificate GatewayUpstream Client Certificate - If set, the certificate to be used as client certificate while TLS handshaking to the upstream server.
- Gateway
Upstream stringId - The ID of this resource.
- Hash
Fallback string - What to use as hashing input if the primary
hash_on
does not return a hash (eg. header is missing, or no Consumer identified). Not available ifhash_on
is set tocookie
. must be one of ["none", "consumer", "ip", "header", "cookie", "path", "queryarg", "uricapture"] - Hash
Fallback stringHeader - The header name to take the value from as hash input. Only required when
hash_fallback
is set toheader
. - Hash
Fallback stringQuery Arg - The name of the query string argument to take the value from as hash input. Only required when
hash_fallback
is set toquery_arg
. - Hash
Fallback stringUri Capture - The name of the route URI capture to take the value from as hash input. Only required when
hash_fallback
is set touri_capture
. - Hash
On string - What to use as hashing input. Using
none
results in a weighted-round-robin scheme with no hashing. must be one of ["none", "consumer", "ip", "header", "cookie", "path", "queryarg", "uricapture"] - string
- The cookie name to take the value from as hash input. Only required when
hash_on
orhash_fallback
is set tocookie
. If the specified cookie is not in the request, Kong will generate a value and set the cookie in the response. - string
- The cookie path to set in the response headers. Only required when
hash_on
orhash_fallback
is set tocookie
. - Hash
On stringHeader - The header name to take the value from as hash input. Only required when
hash_on
is set toheader
. - Hash
On stringQuery Arg - The name of the query string argument to take the value from as hash input. Only required when
hash_on
is set toquery_arg
. - Hash
On stringUri Capture - The name of the route URI capture to take the value from as hash input. Only required when
hash_on
is set touri_capture
. - Healthchecks
Gateway
Upstream Healthchecks - Host
Header string - The hostname to be used as
Host
header when proxying requests through Kong. - Name string
- This is a hostname, which must be equal to the
host
of a Service. - Slots double
- The number of slots in the load balancer algorithm. If
algorithm
is set toround-robin
, this setting determines the maximum number of slots. Ifalgorithm
is set toconsistent-hashing
, this setting determines the actual number of slots in the algorithm. Accepts an integer in the range10
-65536
. - List<string>
- An optional set of strings associated with the Upstream for grouping and filtering.
- Use
Srv boolName - If set, the balancer will use SRV hostname(if DNS Answer has SRV record) as the proxy upstream
Host
.
- Control
Plane stringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- Algorithm string
- Which load balancing algorithm to use. must be one of ["consistent-hashing", "least-connections", "round-robin", "latency"]
- Client
Certificate GatewayUpstream Client Certificate Args - If set, the certificate to be used as client certificate while TLS handshaking to the upstream server.
- Gateway
Upstream stringId - The ID of this resource.
- Hash
Fallback string - What to use as hashing input if the primary
hash_on
does not return a hash (eg. header is missing, or no Consumer identified). Not available ifhash_on
is set tocookie
. must be one of ["none", "consumer", "ip", "header", "cookie", "path", "queryarg", "uricapture"] - Hash
Fallback stringHeader - The header name to take the value from as hash input. Only required when
hash_fallback
is set toheader
. - Hash
Fallback stringQuery Arg - The name of the query string argument to take the value from as hash input. Only required when
hash_fallback
is set toquery_arg
. - Hash
Fallback stringUri Capture - The name of the route URI capture to take the value from as hash input. Only required when
hash_fallback
is set touri_capture
. - Hash
On string - What to use as hashing input. Using
none
results in a weighted-round-robin scheme with no hashing. must be one of ["none", "consumer", "ip", "header", "cookie", "path", "queryarg", "uricapture"] - string
- The cookie name to take the value from as hash input. Only required when
hash_on
orhash_fallback
is set tocookie
. If the specified cookie is not in the request, Kong will generate a value and set the cookie in the response. - string
- The cookie path to set in the response headers. Only required when
hash_on
orhash_fallback
is set tocookie
. - Hash
On stringHeader - The header name to take the value from as hash input. Only required when
hash_on
is set toheader
. - Hash
On stringQuery Arg - The name of the query string argument to take the value from as hash input. Only required when
hash_on
is set toquery_arg
. - Hash
On stringUri Capture - The name of the route URI capture to take the value from as hash input. Only required when
hash_on
is set touri_capture
. - Healthchecks
Gateway
Upstream Healthchecks Args - Host
Header string - The hostname to be used as
Host
header when proxying requests through Kong. - Name string
- This is a hostname, which must be equal to the
host
of a Service. - Slots float64
- The number of slots in the load balancer algorithm. If
algorithm
is set toround-robin
, this setting determines the maximum number of slots. Ifalgorithm
is set toconsistent-hashing
, this setting determines the actual number of slots in the algorithm. Accepts an integer in the range10
-65536
. - []string
- An optional set of strings associated with the Upstream for grouping and filtering.
- Use
Srv boolName - If set, the balancer will use SRV hostname(if DNS Answer has SRV record) as the proxy upstream
Host
.
- control
Plane StringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- algorithm String
- Which load balancing algorithm to use. must be one of ["consistent-hashing", "least-connections", "round-robin", "latency"]
- client
Certificate GatewayUpstream Client Certificate - If set, the certificate to be used as client certificate while TLS handshaking to the upstream server.
- gateway
Upstream StringId - The ID of this resource.
- hash
Fallback String - What to use as hashing input if the primary
hash_on
does not return a hash (eg. header is missing, or no Consumer identified). Not available ifhash_on
is set tocookie
. must be one of ["none", "consumer", "ip", "header", "cookie", "path", "queryarg", "uricapture"] - hash
Fallback StringHeader - The header name to take the value from as hash input. Only required when
hash_fallback
is set toheader
. - hash
Fallback StringQuery Arg - The name of the query string argument to take the value from as hash input. Only required when
hash_fallback
is set toquery_arg
. - hash
Fallback StringUri Capture - The name of the route URI capture to take the value from as hash input. Only required when
hash_fallback
is set touri_capture
. - hash
On String - What to use as hashing input. Using
none
results in a weighted-round-robin scheme with no hashing. must be one of ["none", "consumer", "ip", "header", "cookie", "path", "queryarg", "uricapture"] - String
- The cookie name to take the value from as hash input. Only required when
hash_on
orhash_fallback
is set tocookie
. If the specified cookie is not in the request, Kong will generate a value and set the cookie in the response. - String
- The cookie path to set in the response headers. Only required when
hash_on
orhash_fallback
is set tocookie
. - hash
On StringHeader - The header name to take the value from as hash input. Only required when
hash_on
is set toheader
. - hash
On StringQuery Arg - The name of the query string argument to take the value from as hash input. Only required when
hash_on
is set toquery_arg
. - hash
On StringUri Capture - The name of the route URI capture to take the value from as hash input. Only required when
hash_on
is set touri_capture
. - healthchecks
Gateway
Upstream Healthchecks - host
Header String - The hostname to be used as
Host
header when proxying requests through Kong. - name String
- This is a hostname, which must be equal to the
host
of a Service. - slots Double
- The number of slots in the load balancer algorithm. If
algorithm
is set toround-robin
, this setting determines the maximum number of slots. Ifalgorithm
is set toconsistent-hashing
, this setting determines the actual number of slots in the algorithm. Accepts an integer in the range10
-65536
. - List<String>
- An optional set of strings associated with the Upstream for grouping and filtering.
- use
Srv BooleanName - If set, the balancer will use SRV hostname(if DNS Answer has SRV record) as the proxy upstream
Host
.
- control
Plane stringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- algorithm string
- Which load balancing algorithm to use. must be one of ["consistent-hashing", "least-connections", "round-robin", "latency"]
- client
Certificate GatewayUpstream Client Certificate - If set, the certificate to be used as client certificate while TLS handshaking to the upstream server.
- gateway
Upstream stringId - The ID of this resource.
- hash
Fallback string - What to use as hashing input if the primary
hash_on
does not return a hash (eg. header is missing, or no Consumer identified). Not available ifhash_on
is set tocookie
. must be one of ["none", "consumer", "ip", "header", "cookie", "path", "queryarg", "uricapture"] - hash
Fallback stringHeader - The header name to take the value from as hash input. Only required when
hash_fallback
is set toheader
. - hash
Fallback stringQuery Arg - The name of the query string argument to take the value from as hash input. Only required when
hash_fallback
is set toquery_arg
. - hash
Fallback stringUri Capture - The name of the route URI capture to take the value from as hash input. Only required when
hash_fallback
is set touri_capture
. - hash
On string - What to use as hashing input. Using
none
results in a weighted-round-robin scheme with no hashing. must be one of ["none", "consumer", "ip", "header", "cookie", "path", "queryarg", "uricapture"] - string
- The cookie name to take the value from as hash input. Only required when
hash_on
orhash_fallback
is set tocookie
. If the specified cookie is not in the request, Kong will generate a value and set the cookie in the response. - string
- The cookie path to set in the response headers. Only required when
hash_on
orhash_fallback
is set tocookie
. - hash
On stringHeader - The header name to take the value from as hash input. Only required when
hash_on
is set toheader
. - hash
On stringQuery Arg - The name of the query string argument to take the value from as hash input. Only required when
hash_on
is set toquery_arg
. - hash
On stringUri Capture - The name of the route URI capture to take the value from as hash input. Only required when
hash_on
is set touri_capture
. - healthchecks
Gateway
Upstream Healthchecks - host
Header string - The hostname to be used as
Host
header when proxying requests through Kong. - name string
- This is a hostname, which must be equal to the
host
of a Service. - slots number
- The number of slots in the load balancer algorithm. If
algorithm
is set toround-robin
, this setting determines the maximum number of slots. Ifalgorithm
is set toconsistent-hashing
, this setting determines the actual number of slots in the algorithm. Accepts an integer in the range10
-65536
. - string[]
- An optional set of strings associated with the Upstream for grouping and filtering.
- use
Srv booleanName - If set, the balancer will use SRV hostname(if DNS Answer has SRV record) as the proxy upstream
Host
.
- control_
plane_ strid - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- algorithm str
- Which load balancing algorithm to use. must be one of ["consistent-hashing", "least-connections", "round-robin", "latency"]
- client_
certificate GatewayUpstream Client Certificate Args - If set, the certificate to be used as client certificate while TLS handshaking to the upstream server.
- gateway_
upstream_ strid - The ID of this resource.
- hash_
fallback str - What to use as hashing input if the primary
hash_on
does not return a hash (eg. header is missing, or no Consumer identified). Not available ifhash_on
is set tocookie
. must be one of ["none", "consumer", "ip", "header", "cookie", "path", "queryarg", "uricapture"] - hash_
fallback_ strheader - The header name to take the value from as hash input. Only required when
hash_fallback
is set toheader
. - hash_
fallback_ strquery_ arg - The name of the query string argument to take the value from as hash input. Only required when
hash_fallback
is set toquery_arg
. - hash_
fallback_ struri_ capture - The name of the route URI capture to take the value from as hash input. Only required when
hash_fallback
is set touri_capture
. - hash_
on str - What to use as hashing input. Using
none
results in a weighted-round-robin scheme with no hashing. must be one of ["none", "consumer", "ip", "header", "cookie", "path", "queryarg", "uricapture"] - str
- The cookie name to take the value from as hash input. Only required when
hash_on
orhash_fallback
is set tocookie
. If the specified cookie is not in the request, Kong will generate a value and set the cookie in the response. - str
- The cookie path to set in the response headers. Only required when
hash_on
orhash_fallback
is set tocookie
. - hash_
on_ strheader - The header name to take the value from as hash input. Only required when
hash_on
is set toheader
. - hash_
on_ strquery_ arg - The name of the query string argument to take the value from as hash input. Only required when
hash_on
is set toquery_arg
. - hash_
on_ struri_ capture - The name of the route URI capture to take the value from as hash input. Only required when
hash_on
is set touri_capture
. - healthchecks
Gateway
Upstream Healthchecks Args - host_
header str - The hostname to be used as
Host
header when proxying requests through Kong. - name str
- This is a hostname, which must be equal to the
host
of a Service. - slots float
- The number of slots in the load balancer algorithm. If
algorithm
is set toround-robin
, this setting determines the maximum number of slots. Ifalgorithm
is set toconsistent-hashing
, this setting determines the actual number of slots in the algorithm. Accepts an integer in the range10
-65536
. - Sequence[str]
- An optional set of strings associated with the Upstream for grouping and filtering.
- use_
srv_ boolname - If set, the balancer will use SRV hostname(if DNS Answer has SRV record) as the proxy upstream
Host
.
- control
Plane StringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- algorithm String
- Which load balancing algorithm to use. must be one of ["consistent-hashing", "least-connections", "round-robin", "latency"]
- client
Certificate Property Map - If set, the certificate to be used as client certificate while TLS handshaking to the upstream server.
- gateway
Upstream StringId - The ID of this resource.
- hash
Fallback String - What to use as hashing input if the primary
hash_on
does not return a hash (eg. header is missing, or no Consumer identified). Not available ifhash_on
is set tocookie
. must be one of ["none", "consumer", "ip", "header", "cookie", "path", "queryarg", "uricapture"] - hash
Fallback StringHeader - The header name to take the value from as hash input. Only required when
hash_fallback
is set toheader
. - hash
Fallback StringQuery Arg - The name of the query string argument to take the value from as hash input. Only required when
hash_fallback
is set toquery_arg
. - hash
Fallback StringUri Capture - The name of the route URI capture to take the value from as hash input. Only required when
hash_fallback
is set touri_capture
. - hash
On String - What to use as hashing input. Using
none
results in a weighted-round-robin scheme with no hashing. must be one of ["none", "consumer", "ip", "header", "cookie", "path", "queryarg", "uricapture"] - String
- The cookie name to take the value from as hash input. Only required when
hash_on
orhash_fallback
is set tocookie
. If the specified cookie is not in the request, Kong will generate a value and set the cookie in the response. - String
- The cookie path to set in the response headers. Only required when
hash_on
orhash_fallback
is set tocookie
. - hash
On StringHeader - The header name to take the value from as hash input. Only required when
hash_on
is set toheader
. - hash
On StringQuery Arg - The name of the query string argument to take the value from as hash input. Only required when
hash_on
is set toquery_arg
. - hash
On StringUri Capture - The name of the route URI capture to take the value from as hash input. Only required when
hash_on
is set touri_capture
. - healthchecks Property Map
- host
Header String - The hostname to be used as
Host
header when proxying requests through Kong. - name String
- This is a hostname, which must be equal to the
host
of a Service. - slots Number
- The number of slots in the load balancer algorithm. If
algorithm
is set toround-robin
, this setting determines the maximum number of slots. Ifalgorithm
is set toconsistent-hashing
, this setting determines the actual number of slots in the algorithm. Accepts an integer in the range10
-65536
. - List<String>
- An optional set of strings associated with the Upstream for grouping and filtering.
- use
Srv BooleanName - If set, the balancer will use SRV hostname(if DNS Answer has SRV record) as the proxy upstream
Host
.
Outputs
All input properties are implicitly available as output properties. Additionally, the GatewayUpstream 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 GatewayUpstream Resource
Get an existing GatewayUpstream 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?: GatewayUpstreamState, opts?: CustomResourceOptions): GatewayUpstream
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
algorithm: Optional[str] = None,
client_certificate: Optional[GatewayUpstreamClientCertificateArgs] = None,
control_plane_id: Optional[str] = None,
created_at: Optional[float] = None,
gateway_upstream_id: Optional[str] = None,
hash_fallback: Optional[str] = None,
hash_fallback_header: Optional[str] = None,
hash_fallback_query_arg: Optional[str] = None,
hash_fallback_uri_capture: Optional[str] = None,
hash_on: Optional[str] = None,
hash_on_cookie: Optional[str] = None,
hash_on_cookie_path: Optional[str] = None,
hash_on_header: Optional[str] = None,
hash_on_query_arg: Optional[str] = None,
hash_on_uri_capture: Optional[str] = None,
healthchecks: Optional[GatewayUpstreamHealthchecksArgs] = None,
host_header: Optional[str] = None,
name: Optional[str] = None,
slots: Optional[float] = None,
tags: Optional[Sequence[str]] = None,
updated_at: Optional[float] = None,
use_srv_name: Optional[bool] = None) -> GatewayUpstream
func GetGatewayUpstream(ctx *Context, name string, id IDInput, state *GatewayUpstreamState, opts ...ResourceOption) (*GatewayUpstream, error)
public static GatewayUpstream Get(string name, Input<string> id, GatewayUpstreamState? state, CustomResourceOptions? opts = null)
public static GatewayUpstream get(String name, Output<String> id, GatewayUpstreamState state, CustomResourceOptions options)
resources: _: type: konnect:GatewayUpstream 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.
- Algorithm string
- Which load balancing algorithm to use. must be one of ["consistent-hashing", "least-connections", "round-robin", "latency"]
- Client
Certificate GatewayUpstream Client Certificate - If set, the certificate to be used as client certificate while TLS handshaking to the upstream server.
- 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
Upstream stringId - The ID of this resource.
- Hash
Fallback string - What to use as hashing input if the primary
hash_on
does not return a hash (eg. header is missing, or no Consumer identified). Not available ifhash_on
is set tocookie
. must be one of ["none", "consumer", "ip", "header", "cookie", "path", "queryarg", "uricapture"] - Hash
Fallback stringHeader - The header name to take the value from as hash input. Only required when
hash_fallback
is set toheader
. - Hash
Fallback stringQuery Arg - The name of the query string argument to take the value from as hash input. Only required when
hash_fallback
is set toquery_arg
. - Hash
Fallback stringUri Capture - The name of the route URI capture to take the value from as hash input. Only required when
hash_fallback
is set touri_capture
. - Hash
On string - What to use as hashing input. Using
none
results in a weighted-round-robin scheme with no hashing. must be one of ["none", "consumer", "ip", "header", "cookie", "path", "queryarg", "uricapture"] - string
- The cookie name to take the value from as hash input. Only required when
hash_on
orhash_fallback
is set tocookie
. If the specified cookie is not in the request, Kong will generate a value and set the cookie in the response. - string
- The cookie path to set in the response headers. Only required when
hash_on
orhash_fallback
is set tocookie
. - Hash
On stringHeader - The header name to take the value from as hash input. Only required when
hash_on
is set toheader
. - Hash
On stringQuery Arg - The name of the query string argument to take the value from as hash input. Only required when
hash_on
is set toquery_arg
. - Hash
On stringUri Capture - The name of the route URI capture to take the value from as hash input. Only required when
hash_on
is set touri_capture
. - Healthchecks
Gateway
Upstream Healthchecks - Host
Header string - The hostname to be used as
Host
header when proxying requests through Kong. - Name string
- This is a hostname, which must be equal to the
host
of a Service. - Slots double
- The number of slots in the load balancer algorithm. If
algorithm
is set toround-robin
, this setting determines the maximum number of slots. Ifalgorithm
is set toconsistent-hashing
, this setting determines the actual number of slots in the algorithm. Accepts an integer in the range10
-65536
. - List<string>
- An optional set of strings associated with the Upstream for grouping and filtering.
- Updated
At double - Unix epoch when the resource was last updated.
- Use
Srv boolName - If set, the balancer will use SRV hostname(if DNS Answer has SRV record) as the proxy upstream
Host
.
- Algorithm string
- Which load balancing algorithm to use. must be one of ["consistent-hashing", "least-connections", "round-robin", "latency"]
- Client
Certificate GatewayUpstream Client Certificate Args - If set, the certificate to be used as client certificate while TLS handshaking to the upstream server.
- 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
Upstream stringId - The ID of this resource.
- Hash
Fallback string - What to use as hashing input if the primary
hash_on
does not return a hash (eg. header is missing, or no Consumer identified). Not available ifhash_on
is set tocookie
. must be one of ["none", "consumer", "ip", "header", "cookie", "path", "queryarg", "uricapture"] - Hash
Fallback stringHeader - The header name to take the value from as hash input. Only required when
hash_fallback
is set toheader
. - Hash
Fallback stringQuery Arg - The name of the query string argument to take the value from as hash input. Only required when
hash_fallback
is set toquery_arg
. - Hash
Fallback stringUri Capture - The name of the route URI capture to take the value from as hash input. Only required when
hash_fallback
is set touri_capture
. - Hash
On string - What to use as hashing input. Using
none
results in a weighted-round-robin scheme with no hashing. must be one of ["none", "consumer", "ip", "header", "cookie", "path", "queryarg", "uricapture"] - string
- The cookie name to take the value from as hash input. Only required when
hash_on
orhash_fallback
is set tocookie
. If the specified cookie is not in the request, Kong will generate a value and set the cookie in the response. - string
- The cookie path to set in the response headers. Only required when
hash_on
orhash_fallback
is set tocookie
. - Hash
On stringHeader - The header name to take the value from as hash input. Only required when
hash_on
is set toheader
. - Hash
On stringQuery Arg - The name of the query string argument to take the value from as hash input. Only required when
hash_on
is set toquery_arg
. - Hash
On stringUri Capture - The name of the route URI capture to take the value from as hash input. Only required when
hash_on
is set touri_capture
. - Healthchecks
Gateway
Upstream Healthchecks Args - Host
Header string - The hostname to be used as
Host
header when proxying requests through Kong. - Name string
- This is a hostname, which must be equal to the
host
of a Service. - Slots float64
- The number of slots in the load balancer algorithm. If
algorithm
is set toround-robin
, this setting determines the maximum number of slots. Ifalgorithm
is set toconsistent-hashing
, this setting determines the actual number of slots in the algorithm. Accepts an integer in the range10
-65536
. - []string
- An optional set of strings associated with the Upstream for grouping and filtering.
- Updated
At float64 - Unix epoch when the resource was last updated.
- Use
Srv boolName - If set, the balancer will use SRV hostname(if DNS Answer has SRV record) as the proxy upstream
Host
.
- algorithm String
- Which load balancing algorithm to use. must be one of ["consistent-hashing", "least-connections", "round-robin", "latency"]
- client
Certificate GatewayUpstream Client Certificate - If set, the certificate to be used as client certificate while TLS handshaking to the upstream server.
- 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
Upstream StringId - The ID of this resource.
- hash
Fallback String - What to use as hashing input if the primary
hash_on
does not return a hash (eg. header is missing, or no Consumer identified). Not available ifhash_on
is set tocookie
. must be one of ["none", "consumer", "ip", "header", "cookie", "path", "queryarg", "uricapture"] - hash
Fallback StringHeader - The header name to take the value from as hash input. Only required when
hash_fallback
is set toheader
. - hash
Fallback StringQuery Arg - The name of the query string argument to take the value from as hash input. Only required when
hash_fallback
is set toquery_arg
. - hash
Fallback StringUri Capture - The name of the route URI capture to take the value from as hash input. Only required when
hash_fallback
is set touri_capture
. - hash
On String - What to use as hashing input. Using
none
results in a weighted-round-robin scheme with no hashing. must be one of ["none", "consumer", "ip", "header", "cookie", "path", "queryarg", "uricapture"] - String
- The cookie name to take the value from as hash input. Only required when
hash_on
orhash_fallback
is set tocookie
. If the specified cookie is not in the request, Kong will generate a value and set the cookie in the response. - String
- The cookie path to set in the response headers. Only required when
hash_on
orhash_fallback
is set tocookie
. - hash
On StringHeader - The header name to take the value from as hash input. Only required when
hash_on
is set toheader
. - hash
On StringQuery Arg - The name of the query string argument to take the value from as hash input. Only required when
hash_on
is set toquery_arg
. - hash
On StringUri Capture - The name of the route URI capture to take the value from as hash input. Only required when
hash_on
is set touri_capture
. - healthchecks
Gateway
Upstream Healthchecks - host
Header String - The hostname to be used as
Host
header when proxying requests through Kong. - name String
- This is a hostname, which must be equal to the
host
of a Service. - slots Double
- The number of slots in the load balancer algorithm. If
algorithm
is set toround-robin
, this setting determines the maximum number of slots. Ifalgorithm
is set toconsistent-hashing
, this setting determines the actual number of slots in the algorithm. Accepts an integer in the range10
-65536
. - List<String>
- An optional set of strings associated with the Upstream for grouping and filtering.
- updated
At Double - Unix epoch when the resource was last updated.
- use
Srv BooleanName - If set, the balancer will use SRV hostname(if DNS Answer has SRV record) as the proxy upstream
Host
.
- algorithm string
- Which load balancing algorithm to use. must be one of ["consistent-hashing", "least-connections", "round-robin", "latency"]
- client
Certificate GatewayUpstream Client Certificate - If set, the certificate to be used as client certificate while TLS handshaking to the upstream server.
- 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
Upstream stringId - The ID of this resource.
- hash
Fallback string - What to use as hashing input if the primary
hash_on
does not return a hash (eg. header is missing, or no Consumer identified). Not available ifhash_on
is set tocookie
. must be one of ["none", "consumer", "ip", "header", "cookie", "path", "queryarg", "uricapture"] - hash
Fallback stringHeader - The header name to take the value from as hash input. Only required when
hash_fallback
is set toheader
. - hash
Fallback stringQuery Arg - The name of the query string argument to take the value from as hash input. Only required when
hash_fallback
is set toquery_arg
. - hash
Fallback stringUri Capture - The name of the route URI capture to take the value from as hash input. Only required when
hash_fallback
is set touri_capture
. - hash
On string - What to use as hashing input. Using
none
results in a weighted-round-robin scheme with no hashing. must be one of ["none", "consumer", "ip", "header", "cookie", "path", "queryarg", "uricapture"] - string
- The cookie name to take the value from as hash input. Only required when
hash_on
orhash_fallback
is set tocookie
. If the specified cookie is not in the request, Kong will generate a value and set the cookie in the response. - string
- The cookie path to set in the response headers. Only required when
hash_on
orhash_fallback
is set tocookie
. - hash
On stringHeader - The header name to take the value from as hash input. Only required when
hash_on
is set toheader
. - hash
On stringQuery Arg - The name of the query string argument to take the value from as hash input. Only required when
hash_on
is set toquery_arg
. - hash
On stringUri Capture - The name of the route URI capture to take the value from as hash input. Only required when
hash_on
is set touri_capture
. - healthchecks
Gateway
Upstream Healthchecks - host
Header string - The hostname to be used as
Host
header when proxying requests through Kong. - name string
- This is a hostname, which must be equal to the
host
of a Service. - slots number
- The number of slots in the load balancer algorithm. If
algorithm
is set toround-robin
, this setting determines the maximum number of slots. Ifalgorithm
is set toconsistent-hashing
, this setting determines the actual number of slots in the algorithm. Accepts an integer in the range10
-65536
. - string[]
- An optional set of strings associated with the Upstream for grouping and filtering.
- updated
At number - Unix epoch when the resource was last updated.
- use
Srv booleanName - If set, the balancer will use SRV hostname(if DNS Answer has SRV record) as the proxy upstream
Host
.
- algorithm str
- Which load balancing algorithm to use. must be one of ["consistent-hashing", "least-connections", "round-robin", "latency"]
- client_
certificate GatewayUpstream Client Certificate Args - If set, the certificate to be used as client certificate while TLS handshaking to the upstream server.
- 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_
upstream_ strid - The ID of this resource.
- hash_
fallback str - What to use as hashing input if the primary
hash_on
does not return a hash (eg. header is missing, or no Consumer identified). Not available ifhash_on
is set tocookie
. must be one of ["none", "consumer", "ip", "header", "cookie", "path", "queryarg", "uricapture"] - hash_
fallback_ strheader - The header name to take the value from as hash input. Only required when
hash_fallback
is set toheader
. - hash_
fallback_ strquery_ arg - The name of the query string argument to take the value from as hash input. Only required when
hash_fallback
is set toquery_arg
. - hash_
fallback_ struri_ capture - The name of the route URI capture to take the value from as hash input. Only required when
hash_fallback
is set touri_capture
. - hash_
on str - What to use as hashing input. Using
none
results in a weighted-round-robin scheme with no hashing. must be one of ["none", "consumer", "ip", "header", "cookie", "path", "queryarg", "uricapture"] - str
- The cookie name to take the value from as hash input. Only required when
hash_on
orhash_fallback
is set tocookie
. If the specified cookie is not in the request, Kong will generate a value and set the cookie in the response. - str
- The cookie path to set in the response headers. Only required when
hash_on
orhash_fallback
is set tocookie
. - hash_
on_ strheader - The header name to take the value from as hash input. Only required when
hash_on
is set toheader
. - hash_
on_ strquery_ arg - The name of the query string argument to take the value from as hash input. Only required when
hash_on
is set toquery_arg
. - hash_
on_ struri_ capture - The name of the route URI capture to take the value from as hash input. Only required when
hash_on
is set touri_capture
. - healthchecks
Gateway
Upstream Healthchecks Args - host_
header str - The hostname to be used as
Host
header when proxying requests through Kong. - name str
- This is a hostname, which must be equal to the
host
of a Service. - slots float
- The number of slots in the load balancer algorithm. If
algorithm
is set toround-robin
, this setting determines the maximum number of slots. Ifalgorithm
is set toconsistent-hashing
, this setting determines the actual number of slots in the algorithm. Accepts an integer in the range10
-65536
. - Sequence[str]
- An optional set of strings associated with the Upstream for grouping and filtering.
- updated_
at float - Unix epoch when the resource was last updated.
- use_
srv_ boolname - If set, the balancer will use SRV hostname(if DNS Answer has SRV record) as the proxy upstream
Host
.
- algorithm String
- Which load balancing algorithm to use. must be one of ["consistent-hashing", "least-connections", "round-robin", "latency"]
- client
Certificate Property Map - If set, the certificate to be used as client certificate while TLS handshaking to the upstream server.
- 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
Upstream StringId - The ID of this resource.
- hash
Fallback String - What to use as hashing input if the primary
hash_on
does not return a hash (eg. header is missing, or no Consumer identified). Not available ifhash_on
is set tocookie
. must be one of ["none", "consumer", "ip", "header", "cookie", "path", "queryarg", "uricapture"] - hash
Fallback StringHeader - The header name to take the value from as hash input. Only required when
hash_fallback
is set toheader
. - hash
Fallback StringQuery Arg - The name of the query string argument to take the value from as hash input. Only required when
hash_fallback
is set toquery_arg
. - hash
Fallback StringUri Capture - The name of the route URI capture to take the value from as hash input. Only required when
hash_fallback
is set touri_capture
. - hash
On String - What to use as hashing input. Using
none
results in a weighted-round-robin scheme with no hashing. must be one of ["none", "consumer", "ip", "header", "cookie", "path", "queryarg", "uricapture"] - String
- The cookie name to take the value from as hash input. Only required when
hash_on
orhash_fallback
is set tocookie
. If the specified cookie is not in the request, Kong will generate a value and set the cookie in the response. - String
- The cookie path to set in the response headers. Only required when
hash_on
orhash_fallback
is set tocookie
. - hash
On StringHeader - The header name to take the value from as hash input. Only required when
hash_on
is set toheader
. - hash
On StringQuery Arg - The name of the query string argument to take the value from as hash input. Only required when
hash_on
is set toquery_arg
. - hash
On StringUri Capture - The name of the route URI capture to take the value from as hash input. Only required when
hash_on
is set touri_capture
. - healthchecks Property Map
- host
Header String - The hostname to be used as
Host
header when proxying requests through Kong. - name String
- This is a hostname, which must be equal to the
host
of a Service. - slots Number
- The number of slots in the load balancer algorithm. If
algorithm
is set toround-robin
, this setting determines the maximum number of slots. Ifalgorithm
is set toconsistent-hashing
, this setting determines the actual number of slots in the algorithm. Accepts an integer in the range10
-65536
. - List<String>
- An optional set of strings associated with the Upstream for grouping and filtering.
- updated
At Number - Unix epoch when the resource was last updated.
- use
Srv BooleanName - If set, the balancer will use SRV hostname(if DNS Answer has SRV record) as the proxy upstream
Host
.
Supporting Types
GatewayUpstreamClientCertificate, GatewayUpstreamClientCertificateArgs
- Id string
- Id string
- id String
- id string
- id str
- id String
GatewayUpstreamHealthchecks, GatewayUpstreamHealthchecksArgs
GatewayUpstreamHealthchecksActive, GatewayUpstreamHealthchecksActiveArgs
- Concurrency double
- Headers Dictionary<string, string>
- Healthy
Gateway
Upstream Healthchecks Active Healthy - Http
Path string - Https
Sni string - Https
Verify boolCertificate - Timeout double
- Type string
- must be one of ["tcp", "http", "https", "grpc", "grpcs"]
- Unhealthy
Gateway
Upstream Healthchecks Active Unhealthy
- Concurrency float64
- Headers map[string]string
- Healthy
Gateway
Upstream Healthchecks Active Healthy - Http
Path string - Https
Sni string - Https
Verify boolCertificate - Timeout float64
- Type string
- must be one of ["tcp", "http", "https", "grpc", "grpcs"]
- Unhealthy
Gateway
Upstream Healthchecks Active Unhealthy
- concurrency Double
- headers Map<String,String>
- healthy
Gateway
Upstream Healthchecks Active Healthy - http
Path String - https
Sni String - https
Verify BooleanCertificate - timeout Double
- type String
- must be one of ["tcp", "http", "https", "grpc", "grpcs"]
- unhealthy
Gateway
Upstream Healthchecks Active Unhealthy
- concurrency number
- headers {[key: string]: string}
- healthy
Gateway
Upstream Healthchecks Active Healthy - http
Path string - https
Sni string - https
Verify booleanCertificate - timeout number
- type string
- must be one of ["tcp", "http", "https", "grpc", "grpcs"]
- unhealthy
Gateway
Upstream Healthchecks Active Unhealthy
- concurrency float
- headers Mapping[str, str]
- healthy
Gateway
Upstream Healthchecks Active Healthy - http_
path str - https_
sni str - https_
verify_ boolcertificate - timeout float
- type str
- must be one of ["tcp", "http", "https", "grpc", "grpcs"]
- unhealthy
Gateway
Upstream Healthchecks Active Unhealthy
- concurrency Number
- headers Map<String>
- healthy Property Map
- http
Path String - https
Sni String - https
Verify BooleanCertificate - timeout Number
- type String
- must be one of ["tcp", "http", "https", "grpc", "grpcs"]
- unhealthy Property Map
GatewayUpstreamHealthchecksActiveHealthy, GatewayUpstreamHealthchecksActiveHealthyArgs
- Http
Statuses List<double> - Interval double
- Successes double
- Http
Statuses []float64 - Interval float64
- Successes float64
- http
Statuses List<Double> - interval Double
- successes Double
- http
Statuses number[] - interval number
- successes number
- http_
statuses Sequence[float] - interval float
- successes float
- http
Statuses List<Number> - interval Number
- successes Number
GatewayUpstreamHealthchecksActiveUnhealthy, GatewayUpstreamHealthchecksActiveUnhealthyArgs
- Http
Failures double - Http
Statuses List<double> - Interval double
- Tcp
Failures double - Timeouts double
- Http
Failures float64 - Http
Statuses []float64 - Interval float64
- Tcp
Failures float64 - Timeouts float64
- http
Failures Double - http
Statuses List<Double> - interval Double
- tcp
Failures Double - timeouts Double
- http
Failures number - http
Statuses number[] - interval number
- tcp
Failures number - timeouts number
- http_
failures float - http_
statuses Sequence[float] - interval float
- tcp_
failures float - timeouts float
- http
Failures Number - http
Statuses List<Number> - interval Number
- tcp
Failures Number - timeouts Number
GatewayUpstreamHealthchecksPassive, GatewayUpstreamHealthchecksPassiveArgs
- Healthy
Gateway
Upstream Healthchecks Passive Healthy - Type string
- must be one of ["tcp", "http", "https", "grpc", "grpcs"]
- Unhealthy
Gateway
Upstream Healthchecks Passive Unhealthy
- Healthy
Gateway
Upstream Healthchecks Passive Healthy - Type string
- must be one of ["tcp", "http", "https", "grpc", "grpcs"]
- Unhealthy
Gateway
Upstream Healthchecks Passive Unhealthy
- healthy
Gateway
Upstream Healthchecks Passive Healthy - type String
- must be one of ["tcp", "http", "https", "grpc", "grpcs"]
- unhealthy
Gateway
Upstream Healthchecks Passive Unhealthy
- healthy
Gateway
Upstream Healthchecks Passive Healthy - type string
- must be one of ["tcp", "http", "https", "grpc", "grpcs"]
- unhealthy
Gateway
Upstream Healthchecks Passive Unhealthy
- healthy
Gateway
Upstream Healthchecks Passive Healthy - type str
- must be one of ["tcp", "http", "https", "grpc", "grpcs"]
- unhealthy
Gateway
Upstream Healthchecks Passive Unhealthy
- healthy Property Map
- type String
- must be one of ["tcp", "http", "https", "grpc", "grpcs"]
- unhealthy Property Map
GatewayUpstreamHealthchecksPassiveHealthy, GatewayUpstreamHealthchecksPassiveHealthyArgs
- Http
Statuses List<double> - Successes double
- Http
Statuses []float64 - Successes float64
- http
Statuses List<Double> - successes Double
- http
Statuses number[] - successes number
- http_
statuses Sequence[float] - successes float
- http
Statuses List<Number> - successes Number
GatewayUpstreamHealthchecksPassiveUnhealthy, GatewayUpstreamHealthchecksPassiveUnhealthyArgs
- Http
Failures double - Http
Statuses List<double> - Tcp
Failures double - Timeouts double
- Http
Failures float64 - Http
Statuses []float64 - Tcp
Failures float64 - Timeouts float64
- http
Failures Double - http
Statuses List<Double> - tcp
Failures Double - timeouts Double
- http
Failures number - http
Statuses number[] - tcp
Failures number - timeouts number
- http_
failures float - http_
statuses Sequence[float] - tcp_
failures float - timeouts float
- http
Failures Number - http
Statuses List<Number> - tcp
Failures Number - timeouts Number
Import
$ pulumi import konnect:index/gatewayUpstream:GatewayUpstream my_konnect_gateway_upstream "{ \"control_plane_id\": \"9524ec7d-36d9-465d-a8c5-83a3c9390458\", \"upstream_id\": \"426d620c-7058-4ae6-aacc-f85a3204a2c5\"}"
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.