konnect.GatewayTarget
Explore with Pulumi AI
GatewayTarget Resource
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as konnect from "@pulumi/konnect";
const myGatewaytarget = new konnect.GatewayTarget("myGatewaytarget", {
controlPlaneId: "9524ec7d-36d9-465d-a8c5-83a3c9390458",
gatewayTargetId: "...my_id...",
tags: ["..."],
target: "...my_target...",
upstream: {
id: "...my_id...",
},
upstreamId: "5a078780-5d4c-4aae-984a-bdc6f52113d8",
weight: 5,
});
import pulumi
import pulumi_konnect as konnect
my_gatewaytarget = konnect.GatewayTarget("myGatewaytarget",
control_plane_id="9524ec7d-36d9-465d-a8c5-83a3c9390458",
gateway_target_id="...my_id...",
tags=["..."],
target="...my_target...",
upstream={
"id": "...my_id...",
},
upstream_id="5a078780-5d4c-4aae-984a-bdc6f52113d8",
weight=5)
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.NewGatewayTarget(ctx, "myGatewaytarget", &konnect.GatewayTargetArgs{
ControlPlaneId: pulumi.String("9524ec7d-36d9-465d-a8c5-83a3c9390458"),
GatewayTargetId: pulumi.String("...my_id..."),
Tags: pulumi.StringArray{
pulumi.String("..."),
},
Target: pulumi.String("...my_target..."),
Upstream: &konnect.GatewayTargetUpstreamArgs{
Id: pulumi.String("...my_id..."),
},
UpstreamId: pulumi.String("5a078780-5d4c-4aae-984a-bdc6f52113d8"),
Weight: pulumi.Float64(5),
})
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 myGatewaytarget = new Konnect.GatewayTarget("myGatewaytarget", new()
{
ControlPlaneId = "9524ec7d-36d9-465d-a8c5-83a3c9390458",
GatewayTargetId = "...my_id...",
Tags = new[]
{
"...",
},
Target = "...my_target...",
Upstream = new Konnect.Inputs.GatewayTargetUpstreamArgs
{
Id = "...my_id...",
},
UpstreamId = "5a078780-5d4c-4aae-984a-bdc6f52113d8",
Weight = 5,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.konnect.GatewayTarget;
import com.pulumi.konnect.GatewayTargetArgs;
import com.pulumi.konnect.inputs.GatewayTargetUpstreamArgs;
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 myGatewaytarget = new GatewayTarget("myGatewaytarget", GatewayTargetArgs.builder()
.controlPlaneId("9524ec7d-36d9-465d-a8c5-83a3c9390458")
.gatewayTargetId("...my_id...")
.tags("...")
.target("...my_target...")
.upstream(GatewayTargetUpstreamArgs.builder()
.id("...my_id...")
.build())
.upstreamId("5a078780-5d4c-4aae-984a-bdc6f52113d8")
.weight(5)
.build());
}
}
resources:
myGatewaytarget:
type: konnect:GatewayTarget
properties:
controlPlaneId: 9524ec7d-36d9-465d-a8c5-83a3c9390458
gatewayTargetId: '...my_id...'
tags:
- '...'
target: '...my_target...'
upstream:
id: '...my_id...'
upstreamId: 5a078780-5d4c-4aae-984a-bdc6f52113d8
weight: 5
Create GatewayTarget Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new GatewayTarget(name: string, args: GatewayTargetArgs, opts?: CustomResourceOptions);
@overload
def GatewayTarget(resource_name: str,
args: GatewayTargetArgs,
opts: Optional[ResourceOptions] = None)
@overload
def GatewayTarget(resource_name: str,
opts: Optional[ResourceOptions] = None,
control_plane_id: Optional[str] = None,
upstream_id: Optional[str] = None,
gateway_target_id: Optional[str] = None,
tags: Optional[Sequence[str]] = None,
target: Optional[str] = None,
upstream: Optional[GatewayTargetUpstreamArgs] = None,
weight: Optional[float] = None)
func NewGatewayTarget(ctx *Context, name string, args GatewayTargetArgs, opts ...ResourceOption) (*GatewayTarget, error)
public GatewayTarget(string name, GatewayTargetArgs args, CustomResourceOptions? opts = null)
public GatewayTarget(String name, GatewayTargetArgs args)
public GatewayTarget(String name, GatewayTargetArgs args, CustomResourceOptions options)
type: konnect:GatewayTarget
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 GatewayTargetArgs
- 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 GatewayTargetArgs
- 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 GatewayTargetArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GatewayTargetArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GatewayTargetArgs
- 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 gatewayTargetResource = new Konnect.GatewayTarget("gatewayTargetResource", new()
{
ControlPlaneId = "string",
UpstreamId = "string",
GatewayTargetId = "string",
Tags = new[]
{
"string",
},
Target = "string",
Upstream = new Konnect.Inputs.GatewayTargetUpstreamArgs
{
Id = "string",
},
Weight = 0,
});
example, err := konnect.NewGatewayTarget(ctx, "gatewayTargetResource", &konnect.GatewayTargetArgs{
ControlPlaneId: pulumi.String("string"),
UpstreamId: pulumi.String("string"),
GatewayTargetId: pulumi.String("string"),
Tags: pulumi.StringArray{
pulumi.String("string"),
},
Target: pulumi.String("string"),
Upstream: &.GatewayTargetUpstreamArgs{
Id: pulumi.String("string"),
},
Weight: pulumi.Float64(0),
})
var gatewayTargetResource = new GatewayTarget("gatewayTargetResource", GatewayTargetArgs.builder()
.controlPlaneId("string")
.upstreamId("string")
.gatewayTargetId("string")
.tags("string")
.target("string")
.upstream(GatewayTargetUpstreamArgs.builder()
.id("string")
.build())
.weight(0)
.build());
gateway_target_resource = konnect.GatewayTarget("gatewayTargetResource",
control_plane_id="string",
upstream_id="string",
gateway_target_id="string",
tags=["string"],
target="string",
upstream={
"id": "string",
},
weight=0)
const gatewayTargetResource = new konnect.GatewayTarget("gatewayTargetResource", {
controlPlaneId: "string",
upstreamId: "string",
gatewayTargetId: "string",
tags: ["string"],
target: "string",
upstream: {
id: "string",
},
weight: 0,
});
type: konnect:GatewayTarget
properties:
controlPlaneId: string
gatewayTargetId: string
tags:
- string
target: string
upstream:
id: string
upstreamId: string
weight: 0
GatewayTarget 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 GatewayTarget 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.
- Upstream
Id string - ID or target of the Target to lookup. Requires replacement if changed.
- Gateway
Target stringId - Requires replacement if changed.
- List<string>
- An optional set of strings associated with the Target for grouping and filtering. Requires replacement if changed.
- Target string
- The target address (ip or hostname) and port. If the hostname resolves to an SRV record, the
port
value will be overridden by the value from the DNS record. Requires replacement if changed. - Upstream
Gateway
Target Upstream - Requires replacement if changed.
- Weight double
- The weight this target gets within the upstream loadbalancer (
0
-65535
). If the hostname resolves to an SRV record, theweight
value will be overridden by the value from the DNS record. 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.
- Upstream
Id string - ID or target of the Target to lookup. Requires replacement if changed.
- Gateway
Target stringId - Requires replacement if changed.
- []string
- An optional set of strings associated with the Target for grouping and filtering. Requires replacement if changed.
- Target string
- The target address (ip or hostname) and port. If the hostname resolves to an SRV record, the
port
value will be overridden by the value from the DNS record. Requires replacement if changed. - Upstream
Gateway
Target Upstream Args - Requires replacement if changed.
- Weight float64
- The weight this target gets within the upstream loadbalancer (
0
-65535
). If the hostname resolves to an SRV record, theweight
value will be overridden by the value from the DNS record. 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.
- upstream
Id String - ID or target of the Target to lookup. Requires replacement if changed.
- gateway
Target StringId - Requires replacement if changed.
- List<String>
- An optional set of strings associated with the Target for grouping and filtering. Requires replacement if changed.
- target String
- The target address (ip or hostname) and port. If the hostname resolves to an SRV record, the
port
value will be overridden by the value from the DNS record. Requires replacement if changed. - upstream
Gateway
Target Upstream - Requires replacement if changed.
- weight Double
- The weight this target gets within the upstream loadbalancer (
0
-65535
). If the hostname resolves to an SRV record, theweight
value will be overridden by the value from the DNS record. 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.
- upstream
Id string - ID or target of the Target to lookup. Requires replacement if changed.
- gateway
Target stringId - Requires replacement if changed.
- string[]
- An optional set of strings associated with the Target for grouping and filtering. Requires replacement if changed.
- target string
- The target address (ip or hostname) and port. If the hostname resolves to an SRV record, the
port
value will be overridden by the value from the DNS record. Requires replacement if changed. - upstream
Gateway
Target Upstream - Requires replacement if changed.
- weight number
- The weight this target gets within the upstream loadbalancer (
0
-65535
). If the hostname resolves to an SRV record, theweight
value will be overridden by the value from the DNS record. 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.
- upstream_
id str - ID or target of the Target to lookup. Requires replacement if changed.
- gateway_
target_ strid - Requires replacement if changed.
- Sequence[str]
- An optional set of strings associated with the Target for grouping and filtering. Requires replacement if changed.
- target str
- The target address (ip or hostname) and port. If the hostname resolves to an SRV record, the
port
value will be overridden by the value from the DNS record. Requires replacement if changed. - upstream
Gateway
Target Upstream Args - Requires replacement if changed.
- weight float
- The weight this target gets within the upstream loadbalancer (
0
-65535
). If the hostname resolves to an SRV record, theweight
value will be overridden by the value from the DNS record. 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.
- upstream
Id String - ID or target of the Target to lookup. Requires replacement if changed.
- gateway
Target StringId - Requires replacement if changed.
- List<String>
- An optional set of strings associated with the Target for grouping and filtering. Requires replacement if changed.
- target String
- The target address (ip or hostname) and port. If the hostname resolves to an SRV record, the
port
value will be overridden by the value from the DNS record. Requires replacement if changed. - upstream Property Map
- Requires replacement if changed.
- weight Number
- The weight this target gets within the upstream loadbalancer (
0
-65535
). If the hostname resolves to an SRV record, theweight
value will be overridden by the value from the DNS record. Requires replacement if changed.
Outputs
All input properties are implicitly available as output properties. Additionally, the GatewayTarget 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 GatewayTarget Resource
Get an existing GatewayTarget 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?: GatewayTargetState, opts?: CustomResourceOptions): GatewayTarget
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
control_plane_id: Optional[str] = None,
created_at: Optional[float] = None,
gateway_target_id: Optional[str] = None,
tags: Optional[Sequence[str]] = None,
target: Optional[str] = None,
updated_at: Optional[float] = None,
upstream: Optional[GatewayTargetUpstreamArgs] = None,
upstream_id: Optional[str] = None,
weight: Optional[float] = None) -> GatewayTarget
func GetGatewayTarget(ctx *Context, name string, id IDInput, state *GatewayTargetState, opts ...ResourceOption) (*GatewayTarget, error)
public static GatewayTarget Get(string name, Input<string> id, GatewayTargetState? state, CustomResourceOptions? opts = null)
public static GatewayTarget get(String name, Output<String> id, GatewayTargetState state, CustomResourceOptions options)
resources: _: type: konnect:GatewayTarget 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.
- 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
Target stringId - Requires replacement if changed.
- List<string>
- An optional set of strings associated with the Target for grouping and filtering. Requires replacement if changed.
- Target string
- The target address (ip or hostname) and port. If the hostname resolves to an SRV record, the
port
value will be overridden by the value from the DNS record. Requires replacement if changed. - Updated
At double - Unix epoch when the resource was last updated.
- Upstream
Gateway
Target Upstream - Requires replacement if changed.
- Upstream
Id string - ID or target of the Target to lookup. Requires replacement if changed.
- Weight double
- The weight this target gets within the upstream loadbalancer (
0
-65535
). If the hostname resolves to an SRV record, theweight
value will be overridden by the value from the DNS record. 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 - Unix epoch when the resource was created.
- Gateway
Target stringId - Requires replacement if changed.
- []string
- An optional set of strings associated with the Target for grouping and filtering. Requires replacement if changed.
- Target string
- The target address (ip or hostname) and port. If the hostname resolves to an SRV record, the
port
value will be overridden by the value from the DNS record. Requires replacement if changed. - Updated
At float64 - Unix epoch when the resource was last updated.
- Upstream
Gateway
Target Upstream Args - Requires replacement if changed.
- Upstream
Id string - ID or target of the Target to lookup. Requires replacement if changed.
- Weight float64
- The weight this target gets within the upstream loadbalancer (
0
-65535
). If the hostname resolves to an SRV record, theweight
value will be overridden by the value from the DNS record. 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 - Unix epoch when the resource was created.
- gateway
Target StringId - Requires replacement if changed.
- List<String>
- An optional set of strings associated with the Target for grouping and filtering. Requires replacement if changed.
- target String
- The target address (ip or hostname) and port. If the hostname resolves to an SRV record, the
port
value will be overridden by the value from the DNS record. Requires replacement if changed. - updated
At Double - Unix epoch when the resource was last updated.
- upstream
Gateway
Target Upstream - Requires replacement if changed.
- upstream
Id String - ID or target of the Target to lookup. Requires replacement if changed.
- weight Double
- The weight this target gets within the upstream loadbalancer (
0
-65535
). If the hostname resolves to an SRV record, theweight
value will be overridden by the value from the DNS record. 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 - Unix epoch when the resource was created.
- gateway
Target stringId - Requires replacement if changed.
- string[]
- An optional set of strings associated with the Target for grouping and filtering. Requires replacement if changed.
- target string
- The target address (ip or hostname) and port. If the hostname resolves to an SRV record, the
port
value will be overridden by the value from the DNS record. Requires replacement if changed. - updated
At number - Unix epoch when the resource was last updated.
- upstream
Gateway
Target Upstream - Requires replacement if changed.
- upstream
Id string - ID or target of the Target to lookup. Requires replacement if changed.
- weight number
- The weight this target gets within the upstream loadbalancer (
0
-65535
). If the hostname resolves to an SRV record, theweight
value will be overridden by the value from the DNS record. 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 - Unix epoch when the resource was created.
- gateway_
target_ strid - Requires replacement if changed.
- Sequence[str]
- An optional set of strings associated with the Target for grouping and filtering. Requires replacement if changed.
- target str
- The target address (ip or hostname) and port. If the hostname resolves to an SRV record, the
port
value will be overridden by the value from the DNS record. Requires replacement if changed. - updated_
at float - Unix epoch when the resource was last updated.
- upstream
Gateway
Target Upstream Args - Requires replacement if changed.
- upstream_
id str - ID or target of the Target to lookup. Requires replacement if changed.
- weight float
- The weight this target gets within the upstream loadbalancer (
0
-65535
). If the hostname resolves to an SRV record, theweight
value will be overridden by the value from the DNS record. 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 - Unix epoch when the resource was created.
- gateway
Target StringId - Requires replacement if changed.
- List<String>
- An optional set of strings associated with the Target for grouping and filtering. Requires replacement if changed.
- target String
- The target address (ip or hostname) and port. If the hostname resolves to an SRV record, the
port
value will be overridden by the value from the DNS record. Requires replacement if changed. - updated
At Number - Unix epoch when the resource was last updated.
- upstream Property Map
- Requires replacement if changed.
- upstream
Id String - ID or target of the Target to lookup. Requires replacement if changed.
- weight Number
- The weight this target gets within the upstream loadbalancer (
0
-65535
). If the hostname resolves to an SRV record, theweight
value will be overridden by the value from the DNS record. Requires replacement if changed.
Supporting Types
GatewayTargetUpstream, GatewayTargetUpstreamArgs
- Id string
- Requires replacement if changed.
- Id string
- Requires replacement if changed.
- id String
- Requires replacement if changed.
- id string
- Requires replacement if changed.
- id str
- Requires replacement if changed.
- id String
- Requires replacement if changed.
Import
$ pulumi import konnect:index/gatewayTarget:GatewayTarget my_konnect_gateway_target "{ \"control_plane_id\": \"9524ec7d-36d9-465d-a8c5-83a3c9390458\", \"target_id\": \"5a078780-5d4c-4aae-984a-bdc6f52113d8\", \"upstream_id\": \"5a078780-5d4c-4aae-984a-bdc6f52113d8\"}"
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.