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

konnect.getGatewayPluginRequestValidator

Explore with Pulumi AI

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

    Using getGatewayPluginRequestValidator

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getGatewayPluginRequestValidator(args: GetGatewayPluginRequestValidatorArgs, opts?: InvokeOptions): Promise<GetGatewayPluginRequestValidatorResult>
    function getGatewayPluginRequestValidatorOutput(args: GetGatewayPluginRequestValidatorOutputArgs, opts?: InvokeOptions): Output<GetGatewayPluginRequestValidatorResult>
    def get_gateway_plugin_request_validator(control_plane_id: Optional[str] = None,
                                             opts: Optional[InvokeOptions] = None) -> GetGatewayPluginRequestValidatorResult
    def get_gateway_plugin_request_validator_output(control_plane_id: Optional[pulumi.Input[str]] = None,
                                             opts: Optional[InvokeOptions] = None) -> Output[GetGatewayPluginRequestValidatorResult]
    func LookupGatewayPluginRequestValidator(ctx *Context, args *LookupGatewayPluginRequestValidatorArgs, opts ...InvokeOption) (*LookupGatewayPluginRequestValidatorResult, error)
    func LookupGatewayPluginRequestValidatorOutput(ctx *Context, args *LookupGatewayPluginRequestValidatorOutputArgs, opts ...InvokeOption) LookupGatewayPluginRequestValidatorResultOutput

    > Note: This function is named LookupGatewayPluginRequestValidator in the Go SDK.

    public static class GetGatewayPluginRequestValidator 
    {
        public static Task<GetGatewayPluginRequestValidatorResult> InvokeAsync(GetGatewayPluginRequestValidatorArgs args, InvokeOptions? opts = null)
        public static Output<GetGatewayPluginRequestValidatorResult> Invoke(GetGatewayPluginRequestValidatorInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetGatewayPluginRequestValidatorResult> getGatewayPluginRequestValidator(GetGatewayPluginRequestValidatorArgs args, InvokeOptions options)
    public static Output<GetGatewayPluginRequestValidatorResult> getGatewayPluginRequestValidator(GetGatewayPluginRequestValidatorArgs args, InvokeOptions options)
    
    fn::invoke:
      function: konnect:index/getGatewayPluginRequestValidator:getGatewayPluginRequestValidator
      arguments:
        # arguments dictionary

    The following arguments are supported:

    getGatewayPluginRequestValidator Result

    The following output properties are available:

    Supporting Types

    GetGatewayPluginRequestValidatorConfig

    AllowedContentTypes List<string>
    List of allowed content types. The value can be configured with the charset parameter. For example, application/json; charset=UTF-8.
    BodySchema string
    The request body schema specification. One of body_schema or parameter_schema must be specified.
    ContentTypeParameterValidation bool
    Determines whether to enable parameters validation of request content-type.
    ParameterSchemas List<GetGatewayPluginRequestValidatorConfigParameterSchema>
    Array of parameter validator specification. One of body_schema or parameter_schema must be specified.
    VerboseResponse bool
    If enabled, the plugin returns more verbose and detailed validation errors.
    Version string
    Which validator to use. Supported values are kong (default) for using Kong's own schema validator, or draft4 for using a JSON Schema Draft 4-compliant validator.
    AllowedContentTypes []string
    List of allowed content types. The value can be configured with the charset parameter. For example, application/json; charset=UTF-8.
    BodySchema string
    The request body schema specification. One of body_schema or parameter_schema must be specified.
    ContentTypeParameterValidation bool
    Determines whether to enable parameters validation of request content-type.
    ParameterSchemas []GetGatewayPluginRequestValidatorConfigParameterSchema
    Array of parameter validator specification. One of body_schema or parameter_schema must be specified.
    VerboseResponse bool
    If enabled, the plugin returns more verbose and detailed validation errors.
    Version string
    Which validator to use. Supported values are kong (default) for using Kong's own schema validator, or draft4 for using a JSON Schema Draft 4-compliant validator.
    allowedContentTypes List<String>
    List of allowed content types. The value can be configured with the charset parameter. For example, application/json; charset=UTF-8.
    bodySchema String
    The request body schema specification. One of body_schema or parameter_schema must be specified.
    contentTypeParameterValidation Boolean
    Determines whether to enable parameters validation of request content-type.
    parameterSchemas List<GetGatewayPluginRequestValidatorConfigParameterSchema>
    Array of parameter validator specification. One of body_schema or parameter_schema must be specified.
    verboseResponse Boolean
    If enabled, the plugin returns more verbose and detailed validation errors.
    version String
    Which validator to use. Supported values are kong (default) for using Kong's own schema validator, or draft4 for using a JSON Schema Draft 4-compliant validator.
    allowedContentTypes string[]
    List of allowed content types. The value can be configured with the charset parameter. For example, application/json; charset=UTF-8.
    bodySchema string
    The request body schema specification. One of body_schema or parameter_schema must be specified.
    contentTypeParameterValidation boolean
    Determines whether to enable parameters validation of request content-type.
    parameterSchemas GetGatewayPluginRequestValidatorConfigParameterSchema[]
    Array of parameter validator specification. One of body_schema or parameter_schema must be specified.
    verboseResponse boolean
    If enabled, the plugin returns more verbose and detailed validation errors.
    version string
    Which validator to use. Supported values are kong (default) for using Kong's own schema validator, or draft4 for using a JSON Schema Draft 4-compliant validator.
    allowed_content_types Sequence[str]
    List of allowed content types. The value can be configured with the charset parameter. For example, application/json; charset=UTF-8.
    body_schema str
    The request body schema specification. One of body_schema or parameter_schema must be specified.
    content_type_parameter_validation bool
    Determines whether to enable parameters validation of request content-type.
    parameter_schemas Sequence[GetGatewayPluginRequestValidatorConfigParameterSchema]
    Array of parameter validator specification. One of body_schema or parameter_schema must be specified.
    verbose_response bool
    If enabled, the plugin returns more verbose and detailed validation errors.
    version str
    Which validator to use. Supported values are kong (default) for using Kong's own schema validator, or draft4 for using a JSON Schema Draft 4-compliant validator.
    allowedContentTypes List<String>
    List of allowed content types. The value can be configured with the charset parameter. For example, application/json; charset=UTF-8.
    bodySchema String
    The request body schema specification. One of body_schema or parameter_schema must be specified.
    contentTypeParameterValidation Boolean
    Determines whether to enable parameters validation of request content-type.
    parameterSchemas List<Property Map>
    Array of parameter validator specification. One of body_schema or parameter_schema must be specified.
    verboseResponse Boolean
    If enabled, the plugin returns more verbose and detailed validation errors.
    version String
    Which validator to use. Supported values are kong (default) for using Kong's own schema validator, or draft4 for using a JSON Schema Draft 4-compliant validator.

    GetGatewayPluginRequestValidatorConfigParameterSchema

    Explode bool
    Required when schema and style are set. When explode is true, parameter values of type array or object generate separate parameters for each value of the array or key-value pair of the map. For other types of parameters, this property has no effect.
    In string
    The location of the parameter.
    Name string
    The name of the parameter. Parameter names are case-sensitive, and correspond to the parameter name used by the in property. If in is path, the name field MUST correspond to the named capture group from the configured route.
    Required bool
    Determines whether this parameter is mandatory.
    Schema string
    Requred when style and explode are set. This is the schema defining the type used for the parameter. It is validated using draft4 for JSON Schema draft 4 compliant validator. In addition to being a valid JSON Schema, the parameter schema MUST have a top-level type property to enable proper deserialization before validating.
    Style string
    Required when schema and explode are set. Describes how the parameter value will be deserialized depending on the type of the parameter value.
    Explode bool
    Required when schema and style are set. When explode is true, parameter values of type array or object generate separate parameters for each value of the array or key-value pair of the map. For other types of parameters, this property has no effect.
    In string
    The location of the parameter.
    Name string
    The name of the parameter. Parameter names are case-sensitive, and correspond to the parameter name used by the in property. If in is path, the name field MUST correspond to the named capture group from the configured route.
    Required bool
    Determines whether this parameter is mandatory.
    Schema string
    Requred when style and explode are set. This is the schema defining the type used for the parameter. It is validated using draft4 for JSON Schema draft 4 compliant validator. In addition to being a valid JSON Schema, the parameter schema MUST have a top-level type property to enable proper deserialization before validating.
    Style string
    Required when schema and explode are set. Describes how the parameter value will be deserialized depending on the type of the parameter value.
    explode Boolean
    Required when schema and style are set. When explode is true, parameter values of type array or object generate separate parameters for each value of the array or key-value pair of the map. For other types of parameters, this property has no effect.
    in String
    The location of the parameter.
    name String
    The name of the parameter. Parameter names are case-sensitive, and correspond to the parameter name used by the in property. If in is path, the name field MUST correspond to the named capture group from the configured route.
    required Boolean
    Determines whether this parameter is mandatory.
    schema String
    Requred when style and explode are set. This is the schema defining the type used for the parameter. It is validated using draft4 for JSON Schema draft 4 compliant validator. In addition to being a valid JSON Schema, the parameter schema MUST have a top-level type property to enable proper deserialization before validating.
    style String
    Required when schema and explode are set. Describes how the parameter value will be deserialized depending on the type of the parameter value.
    explode boolean
    Required when schema and style are set. When explode is true, parameter values of type array or object generate separate parameters for each value of the array or key-value pair of the map. For other types of parameters, this property has no effect.
    in string
    The location of the parameter.
    name string
    The name of the parameter. Parameter names are case-sensitive, and correspond to the parameter name used by the in property. If in is path, the name field MUST correspond to the named capture group from the configured route.
    required boolean
    Determines whether this parameter is mandatory.
    schema string
    Requred when style and explode are set. This is the schema defining the type used for the parameter. It is validated using draft4 for JSON Schema draft 4 compliant validator. In addition to being a valid JSON Schema, the parameter schema MUST have a top-level type property to enable proper deserialization before validating.
    style string
    Required when schema and explode are set. Describes how the parameter value will be deserialized depending on the type of the parameter value.
    explode bool
    Required when schema and style are set. When explode is true, parameter values of type array or object generate separate parameters for each value of the array or key-value pair of the map. For other types of parameters, this property has no effect.
    in_ str
    The location of the parameter.
    name str
    The name of the parameter. Parameter names are case-sensitive, and correspond to the parameter name used by the in property. If in is path, the name field MUST correspond to the named capture group from the configured route.
    required bool
    Determines whether this parameter is mandatory.
    schema str
    Requred when style and explode are set. This is the schema defining the type used for the parameter. It is validated using draft4 for JSON Schema draft 4 compliant validator. In addition to being a valid JSON Schema, the parameter schema MUST have a top-level type property to enable proper deserialization before validating.
    style str
    Required when schema and explode are set. Describes how the parameter value will be deserialized depending on the type of the parameter value.
    explode Boolean
    Required when schema and style are set. When explode is true, parameter values of type array or object generate separate parameters for each value of the array or key-value pair of the map. For other types of parameters, this property has no effect.
    in String
    The location of the parameter.
    name String
    The name of the parameter. Parameter names are case-sensitive, and correspond to the parameter name used by the in property. If in is path, the name field MUST correspond to the named capture group from the configured route.
    required Boolean
    Determines whether this parameter is mandatory.
    schema String
    Requred when style and explode are set. This is the schema defining the type used for the parameter. It is validated using draft4 for JSON Schema draft 4 compliant validator. In addition to being a valid JSON Schema, the parameter schema MUST have a top-level type property to enable proper deserialization before validating.
    style String
    Required when schema and explode are set. Describes how the parameter value will be deserialized depending on the type of the parameter value.

    GetGatewayPluginRequestValidatorConsumer

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

    GetGatewayPluginRequestValidatorOrdering

    GetGatewayPluginRequestValidatorOrderingAfter

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

    GetGatewayPluginRequestValidatorOrderingBefore

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

    GetGatewayPluginRequestValidatorRoute

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

    GetGatewayPluginRequestValidatorService

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

    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