1. Packages
  2. Konnect Provider
  3. API Docs
  4. GatewayPluginDatadog
konnect 2.4.1 published on Thursday, Mar 13, 2025 by kong

konnect.GatewayPluginDatadog

Explore with Pulumi AI

konnect logo
konnect 2.4.1 published on Thursday, Mar 13, 2025 by kong

    GatewayPluginDatadog Resource

    Example Usage

    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.konnect.GatewayPluginDatadog;
    import com.pulumi.konnect.GatewayPluginDatadogArgs;
    import com.pulumi.konnect.inputs.GatewayPluginDatadogConfigArgs;
    import com.pulumi.konnect.inputs.GatewayPluginDatadogConfigQueueArgs;
    import com.pulumi.konnect.inputs.GatewayPluginDatadogConsumerArgs;
    import com.pulumi.konnect.inputs.GatewayPluginDatadogOrderingArgs;
    import com.pulumi.konnect.inputs.GatewayPluginDatadogOrderingAfterArgs;
    import com.pulumi.konnect.inputs.GatewayPluginDatadogOrderingBeforeArgs;
    import com.pulumi.konnect.inputs.GatewayPluginDatadogRouteArgs;
    import com.pulumi.konnect.inputs.GatewayPluginDatadogServiceArgs;
    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 myGatewayplugindatadog = new GatewayPluginDatadog("myGatewayplugindatadog", GatewayPluginDatadogArgs.builder()
                .config(GatewayPluginDatadogConfigArgs.builder()
                    .consumer_tag("...my_consumer_tag...")
                    .flush_timeout(5.18)
                    .host("...my_host...")
                    .metrics(GatewayPluginDatadogConfigMetricArgs.builder()
                        .consumerIdentifier("username")
                        .name("request_size")
                        .sampleRate(0.12)
                        .statType("set")
                        .tags("...")
                        .build())
                    .port(19191)
                    .prefix("...my_prefix...")
                    .queue(GatewayPluginDatadogConfigQueueArgs.builder()
                        .concurrencyLimit(1)
                        .initialRetryDelay(632515.49)
                        .maxBatchSize(689907)
                        .maxBytes(2)
                        .maxCoalescingDelay(645.74)
                        .maxEntries(470545)
                        .maxRetryDelay(272290.78)
                        .maxRetryTime(9.63)
                        .build())
                    .queue_size(10)
                    .retry_count(2)
                    .service_name_tag("...my_service_name_tag...")
                    .status_tag("...my_status_tag...")
                    .build())
                .consumer(GatewayPluginDatadogConsumerArgs.builder()
                    .id("...my_id...")
                    .build())
                .controlPlaneId("9524ec7d-36d9-465d-a8c5-83a3c9390458")
                .enabled(true)
                .gatewayPluginDatadogId("...my_id...")
                .instanceName("...my_instance_name...")
                .ordering(GatewayPluginDatadogOrderingArgs.builder()
                    .after(GatewayPluginDatadogOrderingAfterArgs.builder()
                        .access("...")
                        .build())
                    .before(GatewayPluginDatadogOrderingBeforeArgs.builder()
                        .access("...")
                        .build())
                    .build())
                .protocols("ws")
                .route(GatewayPluginDatadogRouteArgs.builder()
                    .id("...my_id...")
                    .build())
                .service(GatewayPluginDatadogServiceArgs.builder()
                    .id("...my_id...")
                    .build())
                .tags("...")
                .build());
    
        }
    }
    
    resources:
      myGatewayplugindatadog:
        type: konnect:GatewayPluginDatadog
        properties:
          config:
            consumer_tag: '...my_consumer_tag...'
            flush_timeout: 5.18
            host: '...my_host...'
            metrics:
              - consumerIdentifier: username
                name: request_size
                sampleRate: 0.12
                statType: set
                tags:
                  - '...'
            port: 19191
            prefix: '...my_prefix...'
            queue:
              concurrencyLimit: 1
              initialRetryDelay: 632515.49
              maxBatchSize: 689907
              maxBytes: 2
              maxCoalescingDelay: 645.74
              maxEntries: 470545
              maxRetryDelay: 272290.78
              maxRetryTime: 9.63
            queue_size: 10
            retry_count: 2
            service_name_tag: '...my_service_name_tag...'
            status_tag: '...my_status_tag...'
          consumer:
            id: '...my_id...'
          controlPlaneId: 9524ec7d-36d9-465d-a8c5-83a3c9390458
          enabled: true
          gatewayPluginDatadogId: '...my_id...'
          instanceName: '...my_instance_name...'
          ordering:
            after:
              access:
                - '...'
            before:
              access:
                - '...'
          protocols:
            - ws
          route:
            id: '...my_id...'
          service:
            id: '...my_id...'
          tags:
            - '...'
    

    Create GatewayPluginDatadog Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new GatewayPluginDatadog(name: string, args: GatewayPluginDatadogArgs, opts?: CustomResourceOptions);
    @overload
    def GatewayPluginDatadog(resource_name: str,
                             args: GatewayPluginDatadogArgs,
                             opts: Optional[ResourceOptions] = None)
    
    @overload
    def GatewayPluginDatadog(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             config: Optional[GatewayPluginDatadogConfigArgs] = None,
                             control_plane_id: Optional[str] = None,
                             consumer: Optional[GatewayPluginDatadogConsumerArgs] = None,
                             enabled: Optional[bool] = None,
                             gateway_plugin_datadog_id: Optional[str] = None,
                             instance_name: Optional[str] = None,
                             ordering: Optional[GatewayPluginDatadogOrderingArgs] = None,
                             protocols: Optional[Sequence[str]] = None,
                             route: Optional[GatewayPluginDatadogRouteArgs] = None,
                             service: Optional[GatewayPluginDatadogServiceArgs] = None,
                             tags: Optional[Sequence[str]] = None)
    func NewGatewayPluginDatadog(ctx *Context, name string, args GatewayPluginDatadogArgs, opts ...ResourceOption) (*GatewayPluginDatadog, error)
    public GatewayPluginDatadog(string name, GatewayPluginDatadogArgs args, CustomResourceOptions? opts = null)
    public GatewayPluginDatadog(String name, GatewayPluginDatadogArgs args)
    public GatewayPluginDatadog(String name, GatewayPluginDatadogArgs args, CustomResourceOptions options)
    
    type: konnect:GatewayPluginDatadog
    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 GatewayPluginDatadogArgs
    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 GatewayPluginDatadogArgs
    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 GatewayPluginDatadogArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args GatewayPluginDatadogArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args GatewayPluginDatadogArgs
    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 gatewayPluginDatadogResource = new Konnect.GatewayPluginDatadog("gatewayPluginDatadogResource", new()
    {
        Config = new Konnect.Inputs.GatewayPluginDatadogConfigArgs
        {
            ConsumerTag = "string",
            FlushTimeout = 0,
            Host = "string",
            Metrics = new[]
            {
                new Konnect.Inputs.GatewayPluginDatadogConfigMetricArgs
                {
                    ConsumerIdentifier = "string",
                    Name = "string",
                    SampleRate = 0,
                    StatType = "string",
                    Tags = new[]
                    {
                        "string",
                    },
                },
            },
            Port = 0,
            Prefix = "string",
            Queue = new Konnect.Inputs.GatewayPluginDatadogConfigQueueArgs
            {
                ConcurrencyLimit = 0,
                InitialRetryDelay = 0,
                MaxBatchSize = 0,
                MaxBytes = 0,
                MaxCoalescingDelay = 0,
                MaxEntries = 0,
                MaxRetryDelay = 0,
                MaxRetryTime = 0,
            },
            QueueSize = 0,
            RetryCount = 0,
            ServiceNameTag = "string",
            StatusTag = "string",
        },
        ControlPlaneId = "string",
        Consumer = new Konnect.Inputs.GatewayPluginDatadogConsumerArgs
        {
            Id = "string",
        },
        Enabled = false,
        GatewayPluginDatadogId = "string",
        InstanceName = "string",
        Ordering = new Konnect.Inputs.GatewayPluginDatadogOrderingArgs
        {
            After = new Konnect.Inputs.GatewayPluginDatadogOrderingAfterArgs
            {
                Accesses = new[]
                {
                    "string",
                },
            },
            Before = new Konnect.Inputs.GatewayPluginDatadogOrderingBeforeArgs
            {
                Accesses = new[]
                {
                    "string",
                },
            },
        },
        Protocols = new[]
        {
            "string",
        },
        Route = new Konnect.Inputs.GatewayPluginDatadogRouteArgs
        {
            Id = "string",
        },
        Service = new Konnect.Inputs.GatewayPluginDatadogServiceArgs
        {
            Id = "string",
        },
        Tags = new[]
        {
            "string",
        },
    });
    
    example, err := konnect.NewGatewayPluginDatadog(ctx, "gatewayPluginDatadogResource", &konnect.GatewayPluginDatadogArgs{
    Config: &.GatewayPluginDatadogConfigArgs{
    ConsumerTag: pulumi.String("string"),
    FlushTimeout: pulumi.Float64(0),
    Host: pulumi.String("string"),
    Metrics: .GatewayPluginDatadogConfigMetricArray{
    &.GatewayPluginDatadogConfigMetricArgs{
    ConsumerIdentifier: pulumi.String("string"),
    Name: pulumi.String("string"),
    SampleRate: pulumi.Float64(0),
    StatType: pulumi.String("string"),
    Tags: pulumi.StringArray{
    pulumi.String("string"),
    },
    },
    },
    Port: pulumi.Float64(0),
    Prefix: pulumi.String("string"),
    Queue: &.GatewayPluginDatadogConfigQueueArgs{
    ConcurrencyLimit: pulumi.Float64(0),
    InitialRetryDelay: pulumi.Float64(0),
    MaxBatchSize: pulumi.Float64(0),
    MaxBytes: pulumi.Float64(0),
    MaxCoalescingDelay: pulumi.Float64(0),
    MaxEntries: pulumi.Float64(0),
    MaxRetryDelay: pulumi.Float64(0),
    MaxRetryTime: pulumi.Float64(0),
    },
    QueueSize: pulumi.Float64(0),
    RetryCount: pulumi.Float64(0),
    ServiceNameTag: pulumi.String("string"),
    StatusTag: pulumi.String("string"),
    },
    ControlPlaneId: pulumi.String("string"),
    Consumer: &.GatewayPluginDatadogConsumerArgs{
    Id: pulumi.String("string"),
    },
    Enabled: pulumi.Bool(false),
    GatewayPluginDatadogId: pulumi.String("string"),
    InstanceName: pulumi.String("string"),
    Ordering: &.GatewayPluginDatadogOrderingArgs{
    After: &.GatewayPluginDatadogOrderingAfterArgs{
    Accesses: pulumi.StringArray{
    pulumi.String("string"),
    },
    },
    Before: &.GatewayPluginDatadogOrderingBeforeArgs{
    Accesses: pulumi.StringArray{
    pulumi.String("string"),
    },
    },
    },
    Protocols: pulumi.StringArray{
    pulumi.String("string"),
    },
    Route: &.GatewayPluginDatadogRouteArgs{
    Id: pulumi.String("string"),
    },
    Service: &.GatewayPluginDatadogServiceArgs{
    Id: pulumi.String("string"),
    },
    Tags: pulumi.StringArray{
    pulumi.String("string"),
    },
    })
    
    var gatewayPluginDatadogResource = new GatewayPluginDatadog("gatewayPluginDatadogResource", GatewayPluginDatadogArgs.builder()
        .config(GatewayPluginDatadogConfigArgs.builder()
            .consumerTag("string")
            .flushTimeout(0)
            .host("string")
            .metrics(GatewayPluginDatadogConfigMetricArgs.builder()
                .consumerIdentifier("string")
                .name("string")
                .sampleRate(0)
                .statType("string")
                .tags("string")
                .build())
            .port(0)
            .prefix("string")
            .queue(GatewayPluginDatadogConfigQueueArgs.builder()
                .concurrencyLimit(0)
                .initialRetryDelay(0)
                .maxBatchSize(0)
                .maxBytes(0)
                .maxCoalescingDelay(0)
                .maxEntries(0)
                .maxRetryDelay(0)
                .maxRetryTime(0)
                .build())
            .queueSize(0)
            .retryCount(0)
            .serviceNameTag("string")
            .statusTag("string")
            .build())
        .controlPlaneId("string")
        .consumer(GatewayPluginDatadogConsumerArgs.builder()
            .id("string")
            .build())
        .enabled(false)
        .gatewayPluginDatadogId("string")
        .instanceName("string")
        .ordering(GatewayPluginDatadogOrderingArgs.builder()
            .after(GatewayPluginDatadogOrderingAfterArgs.builder()
                .accesses("string")
                .build())
            .before(GatewayPluginDatadogOrderingBeforeArgs.builder()
                .accesses("string")
                .build())
            .build())
        .protocols("string")
        .route(GatewayPluginDatadogRouteArgs.builder()
            .id("string")
            .build())
        .service(GatewayPluginDatadogServiceArgs.builder()
            .id("string")
            .build())
        .tags("string")
        .build());
    
    gateway_plugin_datadog_resource = konnect.GatewayPluginDatadog("gatewayPluginDatadogResource",
        config={
            "consumer_tag": "string",
            "flush_timeout": 0,
            "host": "string",
            "metrics": [{
                "consumer_identifier": "string",
                "name": "string",
                "sample_rate": 0,
                "stat_type": "string",
                "tags": ["string"],
            }],
            "port": 0,
            "prefix": "string",
            "queue": {
                "concurrency_limit": 0,
                "initial_retry_delay": 0,
                "max_batch_size": 0,
                "max_bytes": 0,
                "max_coalescing_delay": 0,
                "max_entries": 0,
                "max_retry_delay": 0,
                "max_retry_time": 0,
            },
            "queue_size": 0,
            "retry_count": 0,
            "service_name_tag": "string",
            "status_tag": "string",
        },
        control_plane_id="string",
        consumer={
            "id": "string",
        },
        enabled=False,
        gateway_plugin_datadog_id="string",
        instance_name="string",
        ordering={
            "after": {
                "accesses": ["string"],
            },
            "before": {
                "accesses": ["string"],
            },
        },
        protocols=["string"],
        route={
            "id": "string",
        },
        service={
            "id": "string",
        },
        tags=["string"])
    
    const gatewayPluginDatadogResource = new konnect.GatewayPluginDatadog("gatewayPluginDatadogResource", {
        config: {
            consumerTag: "string",
            flushTimeout: 0,
            host: "string",
            metrics: [{
                consumerIdentifier: "string",
                name: "string",
                sampleRate: 0,
                statType: "string",
                tags: ["string"],
            }],
            port: 0,
            prefix: "string",
            queue: {
                concurrencyLimit: 0,
                initialRetryDelay: 0,
                maxBatchSize: 0,
                maxBytes: 0,
                maxCoalescingDelay: 0,
                maxEntries: 0,
                maxRetryDelay: 0,
                maxRetryTime: 0,
            },
            queueSize: 0,
            retryCount: 0,
            serviceNameTag: "string",
            statusTag: "string",
        },
        controlPlaneId: "string",
        consumer: {
            id: "string",
        },
        enabled: false,
        gatewayPluginDatadogId: "string",
        instanceName: "string",
        ordering: {
            after: {
                accesses: ["string"],
            },
            before: {
                accesses: ["string"],
            },
        },
        protocols: ["string"],
        route: {
            id: "string",
        },
        service: {
            id: "string",
        },
        tags: ["string"],
    });
    
    type: konnect:GatewayPluginDatadog
    properties:
        config:
            consumerTag: string
            flushTimeout: 0
            host: string
            metrics:
                - consumerIdentifier: string
                  name: string
                  sampleRate: 0
                  statType: string
                  tags:
                    - string
            port: 0
            prefix: string
            queue:
                concurrencyLimit: 0
                initialRetryDelay: 0
                maxBatchSize: 0
                maxBytes: 0
                maxCoalescingDelay: 0
                maxEntries: 0
                maxRetryDelay: 0
                maxRetryTime: 0
            queueSize: 0
            retryCount: 0
            serviceNameTag: string
            statusTag: string
        consumer:
            id: string
        controlPlaneId: string
        enabled: false
        gatewayPluginDatadogId: string
        instanceName: string
        ordering:
            after:
                accesses:
                    - string
            before:
                accesses:
                    - string
        protocols:
            - string
        route:
            id: string
        service:
            id: string
        tags:
            - string
    

    GatewayPluginDatadog 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 GatewayPluginDatadog resource accepts the following input properties:

    Config GatewayPluginDatadogConfig
    ControlPlaneId string
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    Consumer GatewayPluginDatadogConsumer
    If set, the plugin will activate only for requests where the specified has been authenticated. (Note that some plugins can not be restricted to consumers this way.). Leave unset for the plugin to activate regardless of the authenticated Consumer.
    Enabled bool
    Whether the plugin is applied.
    GatewayPluginDatadogId string
    The ID of this resource.
    InstanceName string
    Ordering GatewayPluginDatadogOrdering
    Protocols List<string>
    A set of strings representing protocols.
    Route GatewayPluginDatadogRoute
    If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
    Service GatewayPluginDatadogService
    If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
    Tags List<string>
    An optional set of strings associated with the Plugin for grouping and filtering.
    Config GatewayPluginDatadogConfigArgs
    ControlPlaneId string
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    Consumer GatewayPluginDatadogConsumerArgs
    If set, the plugin will activate only for requests where the specified has been authenticated. (Note that some plugins can not be restricted to consumers this way.). Leave unset for the plugin to activate regardless of the authenticated Consumer.
    Enabled bool
    Whether the plugin is applied.
    GatewayPluginDatadogId string
    The ID of this resource.
    InstanceName string
    Ordering GatewayPluginDatadogOrderingArgs
    Protocols []string
    A set of strings representing protocols.
    Route GatewayPluginDatadogRouteArgs
    If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
    Service GatewayPluginDatadogServiceArgs
    If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
    Tags []string
    An optional set of strings associated with the Plugin for grouping and filtering.
    config GatewayPluginDatadogConfig
    controlPlaneId String
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    consumer GatewayPluginDatadogConsumer
    If set, the plugin will activate only for requests where the specified has been authenticated. (Note that some plugins can not be restricted to consumers this way.). Leave unset for the plugin to activate regardless of the authenticated Consumer.
    enabled Boolean
    Whether the plugin is applied.
    gatewayPluginDatadogId String
    The ID of this resource.
    instanceName String
    ordering GatewayPluginDatadogOrdering
    protocols List<String>
    A set of strings representing protocols.
    route GatewayPluginDatadogRoute
    If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
    service GatewayPluginDatadogService
    If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
    tags List<String>
    An optional set of strings associated with the Plugin for grouping and filtering.
    config GatewayPluginDatadogConfig
    controlPlaneId string
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    consumer GatewayPluginDatadogConsumer
    If set, the plugin will activate only for requests where the specified has been authenticated. (Note that some plugins can not be restricted to consumers this way.). Leave unset for the plugin to activate regardless of the authenticated Consumer.
    enabled boolean
    Whether the plugin is applied.
    gatewayPluginDatadogId string
    The ID of this resource.
    instanceName string
    ordering GatewayPluginDatadogOrdering
    protocols string[]
    A set of strings representing protocols.
    route GatewayPluginDatadogRoute
    If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
    service GatewayPluginDatadogService
    If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
    tags string[]
    An optional set of strings associated with the Plugin for grouping and filtering.
    config GatewayPluginDatadogConfigArgs
    control_plane_id str
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    consumer GatewayPluginDatadogConsumerArgs
    If set, the plugin will activate only for requests where the specified has been authenticated. (Note that some plugins can not be restricted to consumers this way.). Leave unset for the plugin to activate regardless of the authenticated Consumer.
    enabled bool
    Whether the plugin is applied.
    gateway_plugin_datadog_id str
    The ID of this resource.
    instance_name str
    ordering GatewayPluginDatadogOrderingArgs
    protocols Sequence[str]
    A set of strings representing protocols.
    route GatewayPluginDatadogRouteArgs
    If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
    service GatewayPluginDatadogServiceArgs
    If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
    tags Sequence[str]
    An optional set of strings associated with the Plugin for grouping and filtering.
    config Property Map
    controlPlaneId String
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    consumer Property Map
    If set, the plugin will activate only for requests where the specified has been authenticated. (Note that some plugins can not be restricted to consumers this way.). Leave unset for the plugin to activate regardless of the authenticated Consumer.
    enabled Boolean
    Whether the plugin is applied.
    gatewayPluginDatadogId String
    The ID of this resource.
    instanceName String
    ordering Property Map
    protocols List<String>
    A set of strings representing protocols.
    route Property Map
    If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
    service Property Map
    If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
    tags List<String>
    An optional set of strings associated with the Plugin for grouping and filtering.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the GatewayPluginDatadog resource produces the following output properties:

    CreatedAt double
    Unix epoch when the resource was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    UpdatedAt double
    Unix epoch when the resource was last updated.
    CreatedAt float64
    Unix epoch when the resource was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    UpdatedAt float64
    Unix epoch when the resource was last updated.
    createdAt Double
    Unix epoch when the resource was created.
    id String
    The provider-assigned unique ID for this managed resource.
    updatedAt Double
    Unix epoch when the resource was last updated.
    createdAt number
    Unix epoch when the resource was created.
    id string
    The provider-assigned unique ID for this managed resource.
    updatedAt number
    Unix epoch when the resource was last updated.
    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.
    createdAt Number
    Unix epoch when the resource was created.
    id String
    The provider-assigned unique ID for this managed resource.
    updatedAt Number
    Unix epoch when the resource was last updated.

    Look up Existing GatewayPluginDatadog Resource

    Get an existing GatewayPluginDatadog 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?: GatewayPluginDatadogState, opts?: CustomResourceOptions): GatewayPluginDatadog
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            config: Optional[GatewayPluginDatadogConfigArgs] = None,
            consumer: Optional[GatewayPluginDatadogConsumerArgs] = None,
            control_plane_id: Optional[str] = None,
            created_at: Optional[float] = None,
            enabled: Optional[bool] = None,
            gateway_plugin_datadog_id: Optional[str] = None,
            instance_name: Optional[str] = None,
            ordering: Optional[GatewayPluginDatadogOrderingArgs] = None,
            protocols: Optional[Sequence[str]] = None,
            route: Optional[GatewayPluginDatadogRouteArgs] = None,
            service: Optional[GatewayPluginDatadogServiceArgs] = None,
            tags: Optional[Sequence[str]] = None,
            updated_at: Optional[float] = None) -> GatewayPluginDatadog
    func GetGatewayPluginDatadog(ctx *Context, name string, id IDInput, state *GatewayPluginDatadogState, opts ...ResourceOption) (*GatewayPluginDatadog, error)
    public static GatewayPluginDatadog Get(string name, Input<string> id, GatewayPluginDatadogState? state, CustomResourceOptions? opts = null)
    public static GatewayPluginDatadog get(String name, Output<String> id, GatewayPluginDatadogState state, CustomResourceOptions options)
    resources:  _:    type: konnect:GatewayPluginDatadog    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.
    The following state arguments are supported:
    Config GatewayPluginDatadogConfig
    Consumer GatewayPluginDatadogConsumer
    If set, the plugin will activate only for requests where the specified has been authenticated. (Note that some plugins can not be restricted to consumers this way.). Leave unset for the plugin to activate regardless of the authenticated Consumer.
    ControlPlaneId string
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    CreatedAt double
    Unix epoch when the resource was created.
    Enabled bool
    Whether the plugin is applied.
    GatewayPluginDatadogId string
    The ID of this resource.
    InstanceName string
    Ordering GatewayPluginDatadogOrdering
    Protocols List<string>
    A set of strings representing protocols.
    Route GatewayPluginDatadogRoute
    If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
    Service GatewayPluginDatadogService
    If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
    Tags List<string>
    An optional set of strings associated with the Plugin for grouping and filtering.
    UpdatedAt double
    Unix epoch when the resource was last updated.
    Config GatewayPluginDatadogConfigArgs
    Consumer GatewayPluginDatadogConsumerArgs
    If set, the plugin will activate only for requests where the specified has been authenticated. (Note that some plugins can not be restricted to consumers this way.). Leave unset for the plugin to activate regardless of the authenticated Consumer.
    ControlPlaneId string
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    CreatedAt float64
    Unix epoch when the resource was created.
    Enabled bool
    Whether the plugin is applied.
    GatewayPluginDatadogId string
    The ID of this resource.
    InstanceName string
    Ordering GatewayPluginDatadogOrderingArgs
    Protocols []string
    A set of strings representing protocols.
    Route GatewayPluginDatadogRouteArgs
    If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
    Service GatewayPluginDatadogServiceArgs
    If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
    Tags []string
    An optional set of strings associated with the Plugin for grouping and filtering.
    UpdatedAt float64
    Unix epoch when the resource was last updated.
    config GatewayPluginDatadogConfig
    consumer GatewayPluginDatadogConsumer
    If set, the plugin will activate only for requests where the specified has been authenticated. (Note that some plugins can not be restricted to consumers this way.). Leave unset for the plugin to activate regardless of the authenticated Consumer.
    controlPlaneId String
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    createdAt Double
    Unix epoch when the resource was created.
    enabled Boolean
    Whether the plugin is applied.
    gatewayPluginDatadogId String
    The ID of this resource.
    instanceName String
    ordering GatewayPluginDatadogOrdering
    protocols List<String>
    A set of strings representing protocols.
    route GatewayPluginDatadogRoute
    If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
    service GatewayPluginDatadogService
    If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
    tags List<String>
    An optional set of strings associated with the Plugin for grouping and filtering.
    updatedAt Double
    Unix epoch when the resource was last updated.
    config GatewayPluginDatadogConfig
    consumer GatewayPluginDatadogConsumer
    If set, the plugin will activate only for requests where the specified has been authenticated. (Note that some plugins can not be restricted to consumers this way.). Leave unset for the plugin to activate regardless of the authenticated Consumer.
    controlPlaneId string
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    createdAt number
    Unix epoch when the resource was created.
    enabled boolean
    Whether the plugin is applied.
    gatewayPluginDatadogId string
    The ID of this resource.
    instanceName string
    ordering GatewayPluginDatadogOrdering
    protocols string[]
    A set of strings representing protocols.
    route GatewayPluginDatadogRoute
    If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
    service GatewayPluginDatadogService
    If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
    tags string[]
    An optional set of strings associated with the Plugin for grouping and filtering.
    updatedAt number
    Unix epoch when the resource was last updated.
    config GatewayPluginDatadogConfigArgs
    consumer GatewayPluginDatadogConsumerArgs
    If set, the plugin will activate only for requests where the specified has been authenticated. (Note that some plugins can not be restricted to consumers this way.). Leave unset for the plugin to activate regardless of the authenticated Consumer.
    control_plane_id str
    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.
    enabled bool
    Whether the plugin is applied.
    gateway_plugin_datadog_id str
    The ID of this resource.
    instance_name str
    ordering GatewayPluginDatadogOrderingArgs
    protocols Sequence[str]
    A set of strings representing protocols.
    route GatewayPluginDatadogRouteArgs
    If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
    service GatewayPluginDatadogServiceArgs
    If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
    tags Sequence[str]
    An optional set of strings associated with the Plugin for grouping and filtering.
    updated_at float
    Unix epoch when the resource was last updated.
    config Property Map
    consumer Property Map
    If set, the plugin will activate only for requests where the specified has been authenticated. (Note that some plugins can not be restricted to consumers this way.). Leave unset for the plugin to activate regardless of the authenticated Consumer.
    controlPlaneId String
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    createdAt Number
    Unix epoch when the resource was created.
    enabled Boolean
    Whether the plugin is applied.
    gatewayPluginDatadogId String
    The ID of this resource.
    instanceName String
    ordering Property Map
    protocols List<String>
    A set of strings representing protocols.
    route Property Map
    If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
    service Property Map
    If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
    tags List<String>
    An optional set of strings associated with the Plugin for grouping and filtering.
    updatedAt Number
    Unix epoch when the resource was last updated.

    Supporting Types

    GatewayPluginDatadogConfig, GatewayPluginDatadogConfigArgs

    ConsumerTag string
    String to be attached as tag of the consumer.
    FlushTimeout double
    Optional time in seconds. If queue_size > 1, this is the max idle time before sending a log with less than queue_size records.
    Host string
    A string representing a host name, such as example.com.
    Metrics List<GatewayPluginDatadogConfigMetric>
    List of metrics to be logged.
    Port double
    An integer representing a port number between 0 and 65535, inclusive.
    Prefix string
    String to be attached as a prefix to a metric's name.
    Queue GatewayPluginDatadogConfigQueue
    QueueSize double
    Maximum number of log entries to be sent on each message to the upstream server.
    RetryCount double
    Number of times to retry when sending data to the upstream server.
    ServiceNameTag string
    String to be attached as the name of the service.
    StatusTag string
    String to be attached as the tag of the HTTP status.
    ConsumerTag string
    String to be attached as tag of the consumer.
    FlushTimeout float64
    Optional time in seconds. If queue_size > 1, this is the max idle time before sending a log with less than queue_size records.
    Host string
    A string representing a host name, such as example.com.
    Metrics []GatewayPluginDatadogConfigMetric
    List of metrics to be logged.
    Port float64
    An integer representing a port number between 0 and 65535, inclusive.
    Prefix string
    String to be attached as a prefix to a metric's name.
    Queue GatewayPluginDatadogConfigQueue
    QueueSize float64
    Maximum number of log entries to be sent on each message to the upstream server.
    RetryCount float64
    Number of times to retry when sending data to the upstream server.
    ServiceNameTag string
    String to be attached as the name of the service.
    StatusTag string
    String to be attached as the tag of the HTTP status.
    consumerTag String
    String to be attached as tag of the consumer.
    flushTimeout Double
    Optional time in seconds. If queue_size > 1, this is the max idle time before sending a log with less than queue_size records.
    host String
    A string representing a host name, such as example.com.
    metrics List<GatewayPluginDatadogConfigMetric>
    List of metrics to be logged.
    port Double
    An integer representing a port number between 0 and 65535, inclusive.
    prefix String
    String to be attached as a prefix to a metric's name.
    queue GatewayPluginDatadogConfigQueue
    queueSize Double
    Maximum number of log entries to be sent on each message to the upstream server.
    retryCount Double
    Number of times to retry when sending data to the upstream server.
    serviceNameTag String
    String to be attached as the name of the service.
    statusTag String
    String to be attached as the tag of the HTTP status.
    consumerTag string
    String to be attached as tag of the consumer.
    flushTimeout number
    Optional time in seconds. If queue_size > 1, this is the max idle time before sending a log with less than queue_size records.
    host string
    A string representing a host name, such as example.com.
    metrics GatewayPluginDatadogConfigMetric[]
    List of metrics to be logged.
    port number
    An integer representing a port number between 0 and 65535, inclusive.
    prefix string
    String to be attached as a prefix to a metric's name.
    queue GatewayPluginDatadogConfigQueue
    queueSize number
    Maximum number of log entries to be sent on each message to the upstream server.
    retryCount number
    Number of times to retry when sending data to the upstream server.
    serviceNameTag string
    String to be attached as the name of the service.
    statusTag string
    String to be attached as the tag of the HTTP status.
    consumer_tag str
    String to be attached as tag of the consumer.
    flush_timeout float
    Optional time in seconds. If queue_size > 1, this is the max idle time before sending a log with less than queue_size records.
    host str
    A string representing a host name, such as example.com.
    metrics Sequence[GatewayPluginDatadogConfigMetric]
    List of metrics to be logged.
    port float
    An integer representing a port number between 0 and 65535, inclusive.
    prefix str
    String to be attached as a prefix to a metric's name.
    queue GatewayPluginDatadogConfigQueue
    queue_size float
    Maximum number of log entries to be sent on each message to the upstream server.
    retry_count float
    Number of times to retry when sending data to the upstream server.
    service_name_tag str
    String to be attached as the name of the service.
    status_tag str
    String to be attached as the tag of the HTTP status.
    consumerTag String
    String to be attached as tag of the consumer.
    flushTimeout Number
    Optional time in seconds. If queue_size > 1, this is the max idle time before sending a log with less than queue_size records.
    host String
    A string representing a host name, such as example.com.
    metrics List<Property Map>
    List of metrics to be logged.
    port Number
    An integer representing a port number between 0 and 65535, inclusive.
    prefix String
    String to be attached as a prefix to a metric's name.
    queue Property Map
    queueSize Number
    Maximum number of log entries to be sent on each message to the upstream server.
    retryCount Number
    Number of times to retry when sending data to the upstream server.
    serviceNameTag String
    String to be attached as the name of the service.
    statusTag String
    String to be attached as the tag of the HTTP status.

    GatewayPluginDatadogConfigMetric, GatewayPluginDatadogConfigMetricArgs

    ConsumerIdentifier string
    Authenticated user detail. must be one of ["consumerid", "customid", "username"]
    Name string
    Datadog metric’s name. Not Null; must be one of ["konglatency", "latency", "requestcount", "requestsize", "responsesize", "upstream_latency"]
    SampleRate double
    Sampling rate
    StatType string
    Determines what sort of event the metric represents. Not Null; must be one of ["counter", "distribution", "gauge", "histogram", "meter", "set", "timer"]
    Tags List<string>
    List of tags
    ConsumerIdentifier string
    Authenticated user detail. must be one of ["consumerid", "customid", "username"]
    Name string
    Datadog metric’s name. Not Null; must be one of ["konglatency", "latency", "requestcount", "requestsize", "responsesize", "upstream_latency"]
    SampleRate float64
    Sampling rate
    StatType string
    Determines what sort of event the metric represents. Not Null; must be one of ["counter", "distribution", "gauge", "histogram", "meter", "set", "timer"]
    Tags []string
    List of tags
    consumerIdentifier String
    Authenticated user detail. must be one of ["consumerid", "customid", "username"]
    name String
    Datadog metric’s name. Not Null; must be one of ["konglatency", "latency", "requestcount", "requestsize", "responsesize", "upstream_latency"]
    sampleRate Double
    Sampling rate
    statType String
    Determines what sort of event the metric represents. Not Null; must be one of ["counter", "distribution", "gauge", "histogram", "meter", "set", "timer"]
    tags List<String>
    List of tags
    consumerIdentifier string
    Authenticated user detail. must be one of ["consumerid", "customid", "username"]
    name string
    Datadog metric’s name. Not Null; must be one of ["konglatency", "latency", "requestcount", "requestsize", "responsesize", "upstream_latency"]
    sampleRate number
    Sampling rate
    statType string
    Determines what sort of event the metric represents. Not Null; must be one of ["counter", "distribution", "gauge", "histogram", "meter", "set", "timer"]
    tags string[]
    List of tags
    consumer_identifier str
    Authenticated user detail. must be one of ["consumerid", "customid", "username"]
    name str
    Datadog metric’s name. Not Null; must be one of ["konglatency", "latency", "requestcount", "requestsize", "responsesize", "upstream_latency"]
    sample_rate float
    Sampling rate
    stat_type str
    Determines what sort of event the metric represents. Not Null; must be one of ["counter", "distribution", "gauge", "histogram", "meter", "set", "timer"]
    tags Sequence[str]
    List of tags
    consumerIdentifier String
    Authenticated user detail. must be one of ["consumerid", "customid", "username"]
    name String
    Datadog metric’s name. Not Null; must be one of ["konglatency", "latency", "requestcount", "requestsize", "responsesize", "upstream_latency"]
    sampleRate Number
    Sampling rate
    statType String
    Determines what sort of event the metric represents. Not Null; must be one of ["counter", "distribution", "gauge", "histogram", "meter", "set", "timer"]
    tags List<String>
    List of tags

    GatewayPluginDatadogConfigQueue, GatewayPluginDatadogConfigQueueArgs

    ConcurrencyLimit double
    The number of of queue delivery timers. -1 indicates unlimited. must be one of ["-1", "1"]
    InitialRetryDelay double
    Time in seconds before the initial retry is made for a failing batch.
    MaxBatchSize double
    Maximum number of entries that can be processed at a time.
    MaxBytes double
    Maximum number of bytes that can be waiting on a queue, requires string content.
    MaxCoalescingDelay double
    Maximum number of (fractional) seconds to elapse after the first entry was queued before the queue starts calling the handler.
    MaxEntries double
    Maximum number of entries that can be waiting on the queue.
    MaxRetryDelay double
    Maximum time in seconds between retries, caps exponential backoff.
    MaxRetryTime double
    Time in seconds before the queue gives up calling a failed handler for a batch.
    ConcurrencyLimit float64
    The number of of queue delivery timers. -1 indicates unlimited. must be one of ["-1", "1"]
    InitialRetryDelay float64
    Time in seconds before the initial retry is made for a failing batch.
    MaxBatchSize float64
    Maximum number of entries that can be processed at a time.
    MaxBytes float64
    Maximum number of bytes that can be waiting on a queue, requires string content.
    MaxCoalescingDelay float64
    Maximum number of (fractional) seconds to elapse after the first entry was queued before the queue starts calling the handler.
    MaxEntries float64
    Maximum number of entries that can be waiting on the queue.
    MaxRetryDelay float64
    Maximum time in seconds between retries, caps exponential backoff.
    MaxRetryTime float64
    Time in seconds before the queue gives up calling a failed handler for a batch.
    concurrencyLimit Double
    The number of of queue delivery timers. -1 indicates unlimited. must be one of ["-1", "1"]
    initialRetryDelay Double
    Time in seconds before the initial retry is made for a failing batch.
    maxBatchSize Double
    Maximum number of entries that can be processed at a time.
    maxBytes Double
    Maximum number of bytes that can be waiting on a queue, requires string content.
    maxCoalescingDelay Double
    Maximum number of (fractional) seconds to elapse after the first entry was queued before the queue starts calling the handler.
    maxEntries Double
    Maximum number of entries that can be waiting on the queue.
    maxRetryDelay Double
    Maximum time in seconds between retries, caps exponential backoff.
    maxRetryTime Double
    Time in seconds before the queue gives up calling a failed handler for a batch.
    concurrencyLimit number
    The number of of queue delivery timers. -1 indicates unlimited. must be one of ["-1", "1"]
    initialRetryDelay number
    Time in seconds before the initial retry is made for a failing batch.
    maxBatchSize number
    Maximum number of entries that can be processed at a time.
    maxBytes number
    Maximum number of bytes that can be waiting on a queue, requires string content.
    maxCoalescingDelay number
    Maximum number of (fractional) seconds to elapse after the first entry was queued before the queue starts calling the handler.
    maxEntries number
    Maximum number of entries that can be waiting on the queue.
    maxRetryDelay number
    Maximum time in seconds between retries, caps exponential backoff.
    maxRetryTime number
    Time in seconds before the queue gives up calling a failed handler for a batch.
    concurrency_limit float
    The number of of queue delivery timers. -1 indicates unlimited. must be one of ["-1", "1"]
    initial_retry_delay float
    Time in seconds before the initial retry is made for a failing batch.
    max_batch_size float
    Maximum number of entries that can be processed at a time.
    max_bytes float
    Maximum number of bytes that can be waiting on a queue, requires string content.
    max_coalescing_delay float
    Maximum number of (fractional) seconds to elapse after the first entry was queued before the queue starts calling the handler.
    max_entries float
    Maximum number of entries that can be waiting on the queue.
    max_retry_delay float
    Maximum time in seconds between retries, caps exponential backoff.
    max_retry_time float
    Time in seconds before the queue gives up calling a failed handler for a batch.
    concurrencyLimit Number
    The number of of queue delivery timers. -1 indicates unlimited. must be one of ["-1", "1"]
    initialRetryDelay Number
    Time in seconds before the initial retry is made for a failing batch.
    maxBatchSize Number
    Maximum number of entries that can be processed at a time.
    maxBytes Number
    Maximum number of bytes that can be waiting on a queue, requires string content.
    maxCoalescingDelay Number
    Maximum number of (fractional) seconds to elapse after the first entry was queued before the queue starts calling the handler.
    maxEntries Number
    Maximum number of entries that can be waiting on the queue.
    maxRetryDelay Number
    Maximum time in seconds between retries, caps exponential backoff.
    maxRetryTime Number
    Time in seconds before the queue gives up calling a failed handler for a batch.

    GatewayPluginDatadogConsumer, GatewayPluginDatadogConsumerArgs

    Id string
    Id string
    id String
    id string
    id str
    id String

    GatewayPluginDatadogOrdering, GatewayPluginDatadogOrderingArgs

    GatewayPluginDatadogOrderingAfter, GatewayPluginDatadogOrderingAfterArgs

    Accesses List<string>
    Accesses []string
    accesses List<String>
    accesses string[]
    accesses Sequence[str]
    accesses List<String>

    GatewayPluginDatadogOrderingBefore, GatewayPluginDatadogOrderingBeforeArgs

    Accesses List<string>
    Accesses []string
    accesses List<String>
    accesses string[]
    accesses Sequence[str]
    accesses List<String>

    GatewayPluginDatadogRoute, GatewayPluginDatadogRouteArgs

    Id string
    Id string
    id String
    id string
    id str
    id String

    GatewayPluginDatadogService, GatewayPluginDatadogServiceArgs

    Id string
    Id string
    id String
    id string
    id str
    id String

    Import

    $ pulumi import konnect:index/gatewayPluginDatadog:GatewayPluginDatadog my_konnect_gateway_plugin_datadog "{ \"control_plane_id\": \"9524ec7d-36d9-465d-a8c5-83a3c9390458\", \"plugin_id\": \"3473c251-5b6c-4f45-b1ff-7ede735a366d\"}"
    

    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.
    konnect logo
    konnect 2.4.1 published on Thursday, Mar 13, 2025 by kong