konnect.GatewayPluginJq
Explore with Pulumi AI
GatewayPluginJq 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.GatewayPluginJq;
import com.pulumi.konnect.GatewayPluginJqArgs;
import com.pulumi.konnect.inputs.GatewayPluginJqConfigArgs;
import com.pulumi.konnect.inputs.GatewayPluginJqConsumerArgs;
import com.pulumi.konnect.inputs.GatewayPluginJqOrderingArgs;
import com.pulumi.konnect.inputs.GatewayPluginJqOrderingAfterArgs;
import com.pulumi.konnect.inputs.GatewayPluginJqOrderingBeforeArgs;
import com.pulumi.konnect.inputs.GatewayPluginJqRouteArgs;
import com.pulumi.konnect.inputs.GatewayPluginJqServiceArgs;
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 myGatewaypluginjq = new GatewayPluginJq("myGatewaypluginjq", GatewayPluginJqArgs.builder()
            .config(GatewayPluginJqConfigArgs.builder()
                .request_if_media_type("...")
                .request_jq_program("...my_request_jq_program...")
                .request_jq_program_options(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
                .response_if_media_type("...")
                .response_if_status_code(188)
                .response_jq_program("...my_response_jq_program...")
                .response_jq_program_options(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
                .build())
            .consumer(GatewayPluginJqConsumerArgs.builder()
                .id("...my_id...")
                .build())
            .controlPlaneId("9524ec7d-36d9-465d-a8c5-83a3c9390458")
            .createdAt(5)
            .enabled(false)
            .gatewayPluginJqId("...my_id...")
            .instanceName("...my_instance_name...")
            .ordering(GatewayPluginJqOrderingArgs.builder()
                .after(GatewayPluginJqOrderingAfterArgs.builder()
                    .access("...")
                    .build())
                .before(GatewayPluginJqOrderingBeforeArgs.builder()
                    .access("...")
                    .build())
                .build())
            .protocols("grpcs")
            .route(GatewayPluginJqRouteArgs.builder()
                .id("...my_id...")
                .build())
            .service(GatewayPluginJqServiceArgs.builder()
                .id("...my_id...")
                .build())
            .tags("...")
            .updatedAt(1)
            .build());
    }
}
resources:
  myGatewaypluginjq:
    type: konnect:GatewayPluginJq
    properties:
      config:
        request_if_media_type:
          - '...'
        request_jq_program: '...my_request_jq_program...'
        request_jq_program_options:
          asciiOutput: false
          compactOutput: false
          joinOutput: true
          rawOutput: true
          sortKeys: false
        response_if_media_type:
          - '...'
        response_if_status_code:
          - 188
        response_jq_program: '...my_response_jq_program...'
        response_jq_program_options:
          asciiOutput: false
          compactOutput: true
          joinOutput: true
          rawOutput: false
          sortKeys: false
      consumer:
        id: '...my_id...'
      controlPlaneId: 9524ec7d-36d9-465d-a8c5-83a3c9390458
      createdAt: 5
      enabled: false
      gatewayPluginJqId: '...my_id...'
      instanceName: '...my_instance_name...'
      ordering:
        after:
          access:
            - '...'
        before:
          access:
            - '...'
      protocols:
        - grpcs
      route:
        id: '...my_id...'
      service:
        id: '...my_id...'
      tags:
        - '...'
      updatedAt: 1
Create GatewayPluginJq Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new GatewayPluginJq(name: string, args: GatewayPluginJqArgs, opts?: CustomResourceOptions);@overload
def GatewayPluginJq(resource_name: str,
                    args: GatewayPluginJqArgs,
                    opts: Optional[ResourceOptions] = None)
@overload
def GatewayPluginJq(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    control_plane_id: Optional[str] = None,
                    instance_name: Optional[str] = None,
                    consumer: Optional[GatewayPluginJqConsumerArgs] = None,
                    created_at: Optional[float] = None,
                    enabled: Optional[bool] = None,
                    gateway_plugin_jq_id: Optional[str] = None,
                    config: Optional[GatewayPluginJqConfigArgs] = None,
                    ordering: Optional[GatewayPluginJqOrderingArgs] = None,
                    protocols: Optional[Sequence[str]] = None,
                    route: Optional[GatewayPluginJqRouteArgs] = None,
                    service: Optional[GatewayPluginJqServiceArgs] = None,
                    tags: Optional[Sequence[str]] = None,
                    updated_at: Optional[float] = None)func NewGatewayPluginJq(ctx *Context, name string, args GatewayPluginJqArgs, opts ...ResourceOption) (*GatewayPluginJq, error)public GatewayPluginJq(string name, GatewayPluginJqArgs args, CustomResourceOptions? opts = null)
public GatewayPluginJq(String name, GatewayPluginJqArgs args)
public GatewayPluginJq(String name, GatewayPluginJqArgs args, CustomResourceOptions options)
type: konnect:GatewayPluginJq
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 GatewayPluginJqArgs
 - 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 GatewayPluginJqArgs
 - 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 GatewayPluginJqArgs
 - The arguments to resource properties.
 - opts ResourceOption
 - Bag of options to control resource's behavior.
 
- name string
 - The unique name of the resource.
 - args GatewayPluginJqArgs
 - The arguments to resource properties.
 - opts CustomResourceOptions
 - Bag of options to control resource's behavior.
 
- name String
 - The unique name of the resource.
 - args GatewayPluginJqArgs
 - 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 gatewayPluginJqResource = new Konnect.GatewayPluginJq("gatewayPluginJqResource", new()
{
    ControlPlaneId = "string",
    InstanceName = "string",
    Consumer = new Konnect.Inputs.GatewayPluginJqConsumerArgs
    {
        Id = "string",
    },
    CreatedAt = 0,
    Enabled = false,
    GatewayPluginJqId = "string",
    Config = new Konnect.Inputs.GatewayPluginJqConfigArgs
    {
        RequestIfMediaTypes = new[]
        {
            "string",
        },
        RequestJqProgram = "string",
        RequestJqProgramOptions = new Konnect.Inputs.GatewayPluginJqConfigRequestJqProgramOptionsArgs
        {
            AsciiOutput = false,
            CompactOutput = false,
            JoinOutput = false,
            RawOutput = false,
            SortKeys = false,
        },
        ResponseIfMediaTypes = new[]
        {
            "string",
        },
        ResponseIfStatusCodes = new[]
        {
            0,
        },
        ResponseJqProgram = "string",
        ResponseJqProgramOptions = new Konnect.Inputs.GatewayPluginJqConfigResponseJqProgramOptionsArgs
        {
            AsciiOutput = false,
            CompactOutput = false,
            JoinOutput = false,
            RawOutput = false,
            SortKeys = false,
        },
    },
    Ordering = new Konnect.Inputs.GatewayPluginJqOrderingArgs
    {
        After = new Konnect.Inputs.GatewayPluginJqOrderingAfterArgs
        {
            Accesses = new[]
            {
                "string",
            },
        },
        Before = new Konnect.Inputs.GatewayPluginJqOrderingBeforeArgs
        {
            Accesses = new[]
            {
                "string",
            },
        },
    },
    Protocols = new[]
    {
        "string",
    },
    Route = new Konnect.Inputs.GatewayPluginJqRouteArgs
    {
        Id = "string",
    },
    Service = new Konnect.Inputs.GatewayPluginJqServiceArgs
    {
        Id = "string",
    },
    Tags = new[]
    {
        "string",
    },
    UpdatedAt = 0,
});
example, err := konnect.NewGatewayPluginJq(ctx, "gatewayPluginJqResource", &konnect.GatewayPluginJqArgs{
ControlPlaneId: pulumi.String("string"),
InstanceName: pulumi.String("string"),
Consumer: &.GatewayPluginJqConsumerArgs{
Id: pulumi.String("string"),
},
CreatedAt: pulumi.Float64(0),
Enabled: pulumi.Bool(false),
GatewayPluginJqId: pulumi.String("string"),
Config: &.GatewayPluginJqConfigArgs{
RequestIfMediaTypes: pulumi.StringArray{
pulumi.String("string"),
},
RequestJqProgram: pulumi.String("string"),
RequestJqProgramOptions: &.GatewayPluginJqConfigRequestJqProgramOptionsArgs{
AsciiOutput: pulumi.Bool(false),
CompactOutput: pulumi.Bool(false),
JoinOutput: pulumi.Bool(false),
RawOutput: pulumi.Bool(false),
SortKeys: pulumi.Bool(false),
},
ResponseIfMediaTypes: pulumi.StringArray{
pulumi.String("string"),
},
ResponseIfStatusCodes: pulumi.Float64Array{
pulumi.Float64(0),
},
ResponseJqProgram: pulumi.String("string"),
ResponseJqProgramOptions: &.GatewayPluginJqConfigResponseJqProgramOptionsArgs{
AsciiOutput: pulumi.Bool(false),
CompactOutput: pulumi.Bool(false),
JoinOutput: pulumi.Bool(false),
RawOutput: pulumi.Bool(false),
SortKeys: pulumi.Bool(false),
},
},
Ordering: &.GatewayPluginJqOrderingArgs{
After: &.GatewayPluginJqOrderingAfterArgs{
Accesses: pulumi.StringArray{
pulumi.String("string"),
},
},
Before: &.GatewayPluginJqOrderingBeforeArgs{
Accesses: pulumi.StringArray{
pulumi.String("string"),
},
},
},
Protocols: pulumi.StringArray{
pulumi.String("string"),
},
Route: &.GatewayPluginJqRouteArgs{
Id: pulumi.String("string"),
},
Service: &.GatewayPluginJqServiceArgs{
Id: pulumi.String("string"),
},
Tags: pulumi.StringArray{
pulumi.String("string"),
},
UpdatedAt: pulumi.Float64(0),
})
var gatewayPluginJqResource = new GatewayPluginJq("gatewayPluginJqResource", GatewayPluginJqArgs.builder()
    .controlPlaneId("string")
    .instanceName("string")
    .consumer(GatewayPluginJqConsumerArgs.builder()
        .id("string")
        .build())
    .createdAt(0)
    .enabled(false)
    .gatewayPluginJqId("string")
    .config(GatewayPluginJqConfigArgs.builder()
        .requestIfMediaTypes("string")
        .requestJqProgram("string")
        .requestJqProgramOptions(GatewayPluginJqConfigRequestJqProgramOptionsArgs.builder()
            .asciiOutput(false)
            .compactOutput(false)
            .joinOutput(false)
            .rawOutput(false)
            .sortKeys(false)
            .build())
        .responseIfMediaTypes("string")
        .responseIfStatusCodes(0)
        .responseJqProgram("string")
        .responseJqProgramOptions(GatewayPluginJqConfigResponseJqProgramOptionsArgs.builder()
            .asciiOutput(false)
            .compactOutput(false)
            .joinOutput(false)
            .rawOutput(false)
            .sortKeys(false)
            .build())
        .build())
    .ordering(GatewayPluginJqOrderingArgs.builder()
        .after(GatewayPluginJqOrderingAfterArgs.builder()
            .accesses("string")
            .build())
        .before(GatewayPluginJqOrderingBeforeArgs.builder()
            .accesses("string")
            .build())
        .build())
    .protocols("string")
    .route(GatewayPluginJqRouteArgs.builder()
        .id("string")
        .build())
    .service(GatewayPluginJqServiceArgs.builder()
        .id("string")
        .build())
    .tags("string")
    .updatedAt(0)
    .build());
gateway_plugin_jq_resource = konnect.GatewayPluginJq("gatewayPluginJqResource",
    control_plane_id="string",
    instance_name="string",
    consumer={
        "id": "string",
    },
    created_at=0,
    enabled=False,
    gateway_plugin_jq_id="string",
    config={
        "request_if_media_types": ["string"],
        "request_jq_program": "string",
        "request_jq_program_options": {
            "ascii_output": False,
            "compact_output": False,
            "join_output": False,
            "raw_output": False,
            "sort_keys": False,
        },
        "response_if_media_types": ["string"],
        "response_if_status_codes": [0],
        "response_jq_program": "string",
        "response_jq_program_options": {
            "ascii_output": False,
            "compact_output": False,
            "join_output": False,
            "raw_output": False,
            "sort_keys": False,
        },
    },
    ordering={
        "after": {
            "accesses": ["string"],
        },
        "before": {
            "accesses": ["string"],
        },
    },
    protocols=["string"],
    route={
        "id": "string",
    },
    service={
        "id": "string",
    },
    tags=["string"],
    updated_at=0)
const gatewayPluginJqResource = new konnect.GatewayPluginJq("gatewayPluginJqResource", {
    controlPlaneId: "string",
    instanceName: "string",
    consumer: {
        id: "string",
    },
    createdAt: 0,
    enabled: false,
    gatewayPluginJqId: "string",
    config: {
        requestIfMediaTypes: ["string"],
        requestJqProgram: "string",
        requestJqProgramOptions: {
            asciiOutput: false,
            compactOutput: false,
            joinOutput: false,
            rawOutput: false,
            sortKeys: false,
        },
        responseIfMediaTypes: ["string"],
        responseIfStatusCodes: [0],
        responseJqProgram: "string",
        responseJqProgramOptions: {
            asciiOutput: false,
            compactOutput: false,
            joinOutput: false,
            rawOutput: false,
            sortKeys: false,
        },
    },
    ordering: {
        after: {
            accesses: ["string"],
        },
        before: {
            accesses: ["string"],
        },
    },
    protocols: ["string"],
    route: {
        id: "string",
    },
    service: {
        id: "string",
    },
    tags: ["string"],
    updatedAt: 0,
});
type: konnect:GatewayPluginJq
properties:
    config:
        requestIfMediaTypes:
            - string
        requestJqProgram: string
        requestJqProgramOptions:
            asciiOutput: false
            compactOutput: false
            joinOutput: false
            rawOutput: false
            sortKeys: false
        responseIfMediaTypes:
            - string
        responseIfStatusCodes:
            - 0
        responseJqProgram: string
        responseJqProgramOptions:
            asciiOutput: false
            compactOutput: false
            joinOutput: false
            rawOutput: false
            sortKeys: false
    consumer:
        id: string
    controlPlaneId: string
    createdAt: 0
    enabled: false
    gatewayPluginJqId: string
    instanceName: string
    ordering:
        after:
            accesses:
                - string
        before:
            accesses:
                - string
    protocols:
        - string
    route:
        id: string
    service:
        id: string
    tags:
        - string
    updatedAt: 0
GatewayPluginJq 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 GatewayPluginJq 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.
 - Config
Gateway
Plugin Jq Config  - Consumer
Gateway
Plugin Jq Consumer  - 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.
 - Created
At double - Unix epoch when the resource was created.
 - Enabled bool
 - Whether the plugin is applied.
 - Gateway
Plugin stringJq Id  - The ID of this resource.
 - Instance
Name string - Ordering
Gateway
Plugin Jq Ordering  - Protocols List<string>
 - A set of strings representing HTTP protocols.
 - Route
Gateway
Plugin Jq Route  - 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
Gateway
Plugin Jq Service  - 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.
 - List<string>
 - An optional set of strings associated with the Plugin for grouping and filtering.
 - Updated
At double - Unix epoch when the resource was last updated.
 
- Control
Plane stringId  - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
 - Config
Gateway
Plugin Jq Config Args  - Consumer
Gateway
Plugin Jq Consumer Args  - 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.
 - Created
At float64 - Unix epoch when the resource was created.
 - Enabled bool
 - Whether the plugin is applied.
 - Gateway
Plugin stringJq Id  - The ID of this resource.
 - Instance
Name string - Ordering
Gateway
Plugin Jq Ordering Args  - Protocols []string
 - A set of strings representing HTTP protocols.
 - Route
Gateway
Plugin Jq Route Args  - 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
Gateway
Plugin Jq Service Args  - 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.
 - []string
 - An optional set of strings associated with the Plugin for grouping and filtering.
 - Updated
At float64 - Unix epoch when the resource was last updated.
 
- control
Plane StringId  - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
 - config
Gateway
Plugin Jq Config  - consumer
Gateway
Plugin Jq Consumer  - 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.
 - created
At Double - Unix epoch when the resource was created.
 - enabled Boolean
 - Whether the plugin is applied.
 - gateway
Plugin StringJq Id  - The ID of this resource.
 - instance
Name String - ordering
Gateway
Plugin Jq Ordering  - protocols List<String>
 - A set of strings representing HTTP protocols.
 - route
Gateway
Plugin Jq Route  - 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
Gateway
Plugin Jq Service  - 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.
 - List<String>
 - An optional set of strings associated with the Plugin for grouping and filtering.
 - updated
At Double - Unix epoch when the resource was last updated.
 
- control
Plane stringId  - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
 - config
Gateway
Plugin Jq Config  - consumer
Gateway
Plugin Jq Consumer  - 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.
 - created
At number - Unix epoch when the resource was created.
 - enabled boolean
 - Whether the plugin is applied.
 - gateway
Plugin stringJq Id  - The ID of this resource.
 - instance
Name string - ordering
Gateway
Plugin Jq Ordering  - protocols string[]
 - A set of strings representing HTTP protocols.
 - route
Gateway
Plugin Jq Route  - 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
Gateway
Plugin Jq Service  - 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.
 - string[]
 - An optional set of strings associated with the Plugin for grouping and filtering.
 - updated
At number - Unix epoch when the resource was last updated.
 
- control_
plane_ strid  - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
 - config
Gateway
Plugin Jq Config Args  - consumer
Gateway
Plugin Jq Consumer Args  - 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.
 - created_
at float - Unix epoch when the resource was created.
 - enabled bool
 - Whether the plugin is applied.
 - gateway_
plugin_ strjq_ id  - The ID of this resource.
 - instance_
name str - ordering
Gateway
Plugin Jq Ordering Args  - protocols Sequence[str]
 - A set of strings representing HTTP protocols.
 - route
Gateway
Plugin Jq Route Args  - 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
Gateway
Plugin Jq Service Args  - 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.
 - 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.
 
- control
Plane StringId  - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
 - 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.
 - created
At Number - Unix epoch when the resource was created.
 - enabled Boolean
 - Whether the plugin is applied.
 - gateway
Plugin StringJq Id  - The ID of this resource.
 - instance
Name String - ordering Property Map
 - protocols List<String>
 - A set of strings representing HTTP 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.
 - List<String>
 - An optional set of strings associated with the Plugin for grouping and filtering.
 - updated
At Number - Unix epoch when the resource was last updated.
 
Outputs
All input properties are implicitly available as output properties. Additionally, the GatewayPluginJq resource produces the following output properties:
- Id string
 - The provider-assigned unique ID for this managed resource.
 
- Id string
 - The provider-assigned unique ID for this managed resource.
 
- id String
 - The provider-assigned unique ID for this managed resource.
 
- id string
 - The provider-assigned unique ID for this managed resource.
 
- id str
 - The provider-assigned unique ID for this managed resource.
 
- id String
 - The provider-assigned unique ID for this managed resource.
 
Look up Existing GatewayPluginJq Resource
Get an existing GatewayPluginJq 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?: GatewayPluginJqState, opts?: CustomResourceOptions): GatewayPluginJq@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        config: Optional[GatewayPluginJqConfigArgs] = None,
        consumer: Optional[GatewayPluginJqConsumerArgs] = None,
        control_plane_id: Optional[str] = None,
        created_at: Optional[float] = None,
        enabled: Optional[bool] = None,
        gateway_plugin_jq_id: Optional[str] = None,
        instance_name: Optional[str] = None,
        ordering: Optional[GatewayPluginJqOrderingArgs] = None,
        protocols: Optional[Sequence[str]] = None,
        route: Optional[GatewayPluginJqRouteArgs] = None,
        service: Optional[GatewayPluginJqServiceArgs] = None,
        tags: Optional[Sequence[str]] = None,
        updated_at: Optional[float] = None) -> GatewayPluginJqfunc GetGatewayPluginJq(ctx *Context, name string, id IDInput, state *GatewayPluginJqState, opts ...ResourceOption) (*GatewayPluginJq, error)public static GatewayPluginJq Get(string name, Input<string> id, GatewayPluginJqState? state, CustomResourceOptions? opts = null)public static GatewayPluginJq get(String name, Output<String> id, GatewayPluginJqState state, CustomResourceOptions options)resources:  _:    type: konnect:GatewayPluginJq    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.
 
- Config
Gateway
Plugin Jq Config  - Consumer
Gateway
Plugin Jq Consumer  - 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 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.
 - Enabled bool
 - Whether the plugin is applied.
 - Gateway
Plugin stringJq Id  - The ID of this resource.
 - Instance
Name string - Ordering
Gateway
Plugin Jq Ordering  - Protocols List<string>
 - A set of strings representing HTTP protocols.
 - Route
Gateway
Plugin Jq Route  - 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
Gateway
Plugin Jq Service  - 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.
 - List<string>
 - An optional set of strings associated with the Plugin for grouping and filtering.
 - Updated
At double - Unix epoch when the resource was last updated.
 
- Config
Gateway
Plugin Jq Config Args  - Consumer
Gateway
Plugin Jq Consumer Args  - 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 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.
 - Enabled bool
 - Whether the plugin is applied.
 - Gateway
Plugin stringJq Id  - The ID of this resource.
 - Instance
Name string - Ordering
Gateway
Plugin Jq Ordering Args  - Protocols []string
 - A set of strings representing HTTP protocols.
 - Route
Gateway
Plugin Jq Route Args  - 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
Gateway
Plugin Jq Service Args  - 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.
 - []string
 - An optional set of strings associated with the Plugin for grouping and filtering.
 - Updated
At float64 - Unix epoch when the resource was last updated.
 
- config
Gateway
Plugin Jq Config  - consumer
Gateway
Plugin Jq Consumer  - 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 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.
 - enabled Boolean
 - Whether the plugin is applied.
 - gateway
Plugin StringJq Id  - The ID of this resource.
 - instance
Name String - ordering
Gateway
Plugin Jq Ordering  - protocols List<String>
 - A set of strings representing HTTP protocols.
 - route
Gateway
Plugin Jq Route  - 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
Gateway
Plugin Jq Service  - 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.
 - List<String>
 - An optional set of strings associated with the Plugin for grouping and filtering.
 - updated
At Double - Unix epoch when the resource was last updated.
 
- config
Gateway
Plugin Jq Config  - consumer
Gateway
Plugin Jq Consumer  - 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 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.
 - enabled boolean
 - Whether the plugin is applied.
 - gateway
Plugin stringJq Id  - The ID of this resource.
 - instance
Name string - ordering
Gateway
Plugin Jq Ordering  - protocols string[]
 - A set of strings representing HTTP protocols.
 - route
Gateway
Plugin Jq Route  - 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
Gateway
Plugin Jq Service  - 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.
 - string[]
 - An optional set of strings associated with the Plugin for grouping and filtering.
 - updated
At number - Unix epoch when the resource was last updated.
 
- config
Gateway
Plugin Jq Config Args  - consumer
Gateway
Plugin Jq Consumer Args  - 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_ 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.
 - enabled bool
 - Whether the plugin is applied.
 - gateway_
plugin_ strjq_ id  - The ID of this resource.
 - instance_
name str - ordering
Gateway
Plugin Jq Ordering Args  - protocols Sequence[str]
 - A set of strings representing HTTP protocols.
 - route
Gateway
Plugin Jq Route Args  - 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
Gateway
Plugin Jq Service Args  - 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.
 - 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.
 - 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.
 - enabled Boolean
 - Whether the plugin is applied.
 - gateway
Plugin StringJq Id  - The ID of this resource.
 - instance
Name String - ordering Property Map
 - protocols List<String>
 - A set of strings representing HTTP 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.
 - List<String>
 - An optional set of strings associated with the Plugin for grouping and filtering.
 - updated
At Number - Unix epoch when the resource was last updated.
 
Supporting Types
GatewayPluginJqConfig, GatewayPluginJqConfigArgs        
- request_
if_ Sequence[str]media_ types  - request_
jq_ strprogram  - request_
jq_ Gatewayprogram_ options Plugin Jq Config Request Jq Program Options  - response_
if_ Sequence[str]media_ types  - response_
if_ Sequence[float]status_ codes  - response_
jq_ strprogram  - response_
jq_ Gatewayprogram_ options Plugin Jq Config Response Jq Program Options  
- request
If List<String>Media Types  - request
Jq StringProgram  - request
Jq Property MapProgram Options  - response
If List<String>Media Types  - response
If List<Number>Status Codes  - response
Jq StringProgram  - response
Jq Property MapProgram Options  
GatewayPluginJqConfigRequestJqProgramOptions, GatewayPluginJqConfigRequestJqProgramOptionsArgs                
- Ascii
Output bool - Compact
Output bool - Join
Output bool - Raw
Output bool - Sort
Keys bool 
- Ascii
Output bool - Compact
Output bool - Join
Output bool - Raw
Output bool - Sort
Keys bool 
- ascii
Output Boolean - compact
Output Boolean - join
Output Boolean - raw
Output Boolean - sort
Keys Boolean 
- ascii
Output boolean - compact
Output boolean - join
Output boolean - raw
Output boolean - sort
Keys boolean 
- ascii_
output bool - compact_
output bool - join_
output bool - raw_
output bool - sort_
keys bool 
- ascii
Output Boolean - compact
Output Boolean - join
Output Boolean - raw
Output Boolean - sort
Keys Boolean 
GatewayPluginJqConfigResponseJqProgramOptions, GatewayPluginJqConfigResponseJqProgramOptionsArgs                
- Ascii
Output bool - Compact
Output bool - Join
Output bool - Raw
Output bool - Sort
Keys bool 
- Ascii
Output bool - Compact
Output bool - Join
Output bool - Raw
Output bool - Sort
Keys bool 
- ascii
Output Boolean - compact
Output Boolean - join
Output Boolean - raw
Output Boolean - sort
Keys Boolean 
- ascii
Output boolean - compact
Output boolean - join
Output boolean - raw
Output boolean - sort
Keys boolean 
- ascii_
output bool - compact_
output bool - join_
output bool - raw_
output bool - sort_
keys bool 
- ascii
Output Boolean - compact
Output Boolean - join
Output Boolean - raw
Output Boolean - sort
Keys Boolean 
GatewayPluginJqConsumer, GatewayPluginJqConsumerArgs        
- Id string
 
- Id string
 
- id String
 
- id string
 
- id str
 
- id String
 
GatewayPluginJqOrdering, GatewayPluginJqOrderingArgs        
GatewayPluginJqOrderingAfter, GatewayPluginJqOrderingAfterArgs          
- Accesses List<string>
 
- Accesses []string
 
- accesses List<String>
 
- accesses string[]
 
- accesses Sequence[str]
 
- accesses List<String>
 
GatewayPluginJqOrderingBefore, GatewayPluginJqOrderingBeforeArgs          
- Accesses List<string>
 
- Accesses []string
 
- accesses List<String>
 
- accesses string[]
 
- accesses Sequence[str]
 
- accesses List<String>
 
GatewayPluginJqRoute, GatewayPluginJqRouteArgs        
- Id string
 
- Id string
 
- id String
 
- id string
 
- id str
 
- id String
 
GatewayPluginJqService, GatewayPluginJqServiceArgs        
- Id string
 
- Id string
 
- id String
 
- id string
 
- id str
 
- id String
 
Import
$ pulumi import konnect:index/gatewayPluginJq:GatewayPluginJq my_konnect_gateway_plugin_jq "{ \"control_plane_id\": \"9524ec7d-36d9-465d-a8c5-83a3c9390458\", \"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 
konnectTerraform Provider.