1. Packages
  2. Konnect Provider
  3. API Docs
  4. getPortal
Viewing docs for konnect 3.11.0
published on Thursday, Mar 12, 2026 by kong
konnect logo
Viewing docs for konnect 3.11.0
published on Thursday, Mar 12, 2026 by kong

    Portal DataSource

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as konnect from "@pulumi/konnect";
    
    const myPortal = konnect.getPortal({
        filter: {
            authenticationEnabled: false,
            autoApproveApplications: true,
            autoApproveDevelopers: true,
            canonicalDomain: {
                contains: "...my_contains...",
                eq: "...my_eq...",
                neq: "...my_neq...",
                ocontains: "...my_ocontains...",
                oeq: "...my_oeq...",
            },
            defaultApiVisibility: {
                contains: "...my_contains...",
                eq: "...my_eq...",
                neq: "...my_neq...",
                ocontains: "...my_ocontains...",
                oeq: "...my_oeq...",
            },
            defaultApplicationAuthStrategyId: {
                eq: "...my_eq...",
                neq: "...my_neq...",
                oeq: "...my_oeq...",
            },
            defaultDomain: {
                contains: "...my_contains...",
                eq: "...my_eq...",
                neq: "...my_neq...",
                ocontains: "...my_ocontains...",
                oeq: "...my_oeq...",
            },
            defaultPageVisibility: {
                contains: "...my_contains...",
                eq: "...my_eq...",
                neq: "...my_neq...",
                ocontains: "...my_ocontains...",
                oeq: "...my_oeq...",
            },
            description: {
                contains: "...my_contains...",
                eq: "...my_eq...",
                neq: "...my_neq...",
                ocontains: "...my_ocontains...",
                oeq: "...my_oeq...",
            },
            id: {
                eq: "...my_eq...",
                neq: "...my_neq...",
                oeq: "...my_oeq...",
            },
            name: {
                contains: "...my_contains...",
                eq: "...my_eq...",
                neq: "...my_neq...",
                ocontains: "...my_ocontains...",
                oeq: "...my_oeq...",
            },
            rbacEnabled: true,
        },
        sort: "...my_sort...",
    });
    
    import pulumi
    import pulumi_konnect as konnect
    
    my_portal = konnect.get_portal(filter={
            "authentication_enabled": False,
            "auto_approve_applications": True,
            "auto_approve_developers": True,
            "canonical_domain": {
                "contains": "...my_contains...",
                "eq": "...my_eq...",
                "neq": "...my_neq...",
                "ocontains": "...my_ocontains...",
                "oeq": "...my_oeq...",
            },
            "default_api_visibility": {
                "contains": "...my_contains...",
                "eq": "...my_eq...",
                "neq": "...my_neq...",
                "ocontains": "...my_ocontains...",
                "oeq": "...my_oeq...",
            },
            "default_application_auth_strategy_id": {
                "eq": "...my_eq...",
                "neq": "...my_neq...",
                "oeq": "...my_oeq...",
            },
            "default_domain": {
                "contains": "...my_contains...",
                "eq": "...my_eq...",
                "neq": "...my_neq...",
                "ocontains": "...my_ocontains...",
                "oeq": "...my_oeq...",
            },
            "default_page_visibility": {
                "contains": "...my_contains...",
                "eq": "...my_eq...",
                "neq": "...my_neq...",
                "ocontains": "...my_ocontains...",
                "oeq": "...my_oeq...",
            },
            "description": {
                "contains": "...my_contains...",
                "eq": "...my_eq...",
                "neq": "...my_neq...",
                "ocontains": "...my_ocontains...",
                "oeq": "...my_oeq...",
            },
            "id": {
                "eq": "...my_eq...",
                "neq": "...my_neq...",
                "oeq": "...my_oeq...",
            },
            "name": {
                "contains": "...my_contains...",
                "eq": "...my_eq...",
                "neq": "...my_neq...",
                "ocontains": "...my_ocontains...",
                "oeq": "...my_oeq...",
            },
            "rbac_enabled": True,
        },
        sort="...my_sort...")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/konnect/v3/konnect"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := konnect.LookupPortal(ctx, &konnect.LookupPortalArgs{
    			Filter: konnect.GetPortalFilter{
    				AuthenticationEnabled:   pulumi.BoolRef(false),
    				AutoApproveApplications: pulumi.BoolRef(true),
    				AutoApproveDevelopers:   pulumi.BoolRef(true),
    				CanonicalDomain: konnect.GetPortalFilterCanonicalDomain{
    					Contains:  pulumi.StringRef("...my_contains..."),
    					Eq:        pulumi.StringRef("...my_eq..."),
    					Neq:       pulumi.StringRef("...my_neq..."),
    					Ocontains: pulumi.StringRef("...my_ocontains..."),
    					Oeq:       pulumi.StringRef("...my_oeq..."),
    				},
    				DefaultApiVisibility: konnect.GetPortalFilterDefaultApiVisibility{
    					Contains:  pulumi.StringRef("...my_contains..."),
    					Eq:        pulumi.StringRef("...my_eq..."),
    					Neq:       pulumi.StringRef("...my_neq..."),
    					Ocontains: pulumi.StringRef("...my_ocontains..."),
    					Oeq:       pulumi.StringRef("...my_oeq..."),
    				},
    				DefaultApplicationAuthStrategyId: konnect.GetPortalFilterDefaultApplicationAuthStrategyId{
    					Eq:  pulumi.StringRef("...my_eq..."),
    					Neq: pulumi.StringRef("...my_neq..."),
    					Oeq: pulumi.StringRef("...my_oeq..."),
    				},
    				DefaultDomain: konnect.GetPortalFilterDefaultDomain{
    					Contains:  pulumi.StringRef("...my_contains..."),
    					Eq:        pulumi.StringRef("...my_eq..."),
    					Neq:       pulumi.StringRef("...my_neq..."),
    					Ocontains: pulumi.StringRef("...my_ocontains..."),
    					Oeq:       pulumi.StringRef("...my_oeq..."),
    				},
    				DefaultPageVisibility: konnect.GetPortalFilterDefaultPageVisibility{
    					Contains:  pulumi.StringRef("...my_contains..."),
    					Eq:        pulumi.StringRef("...my_eq..."),
    					Neq:       pulumi.StringRef("...my_neq..."),
    					Ocontains: pulumi.StringRef("...my_ocontains..."),
    					Oeq:       pulumi.StringRef("...my_oeq..."),
    				},
    				Description: konnect.GetPortalFilterDescription{
    					Contains:  pulumi.StringRef("...my_contains..."),
    					Eq:        pulumi.StringRef("...my_eq..."),
    					Neq:       pulumi.StringRef("...my_neq..."),
    					Ocontains: pulumi.StringRef("...my_ocontains..."),
    					Oeq:       pulumi.StringRef("...my_oeq..."),
    				},
    				Id: konnect.GetPortalFilterId{
    					Eq:  pulumi.StringRef("...my_eq..."),
    					Neq: pulumi.StringRef("...my_neq..."),
    					Oeq: pulumi.StringRef("...my_oeq..."),
    				},
    				Name: konnect.GetPortalFilterName{
    					Contains:  pulumi.StringRef("...my_contains..."),
    					Eq:        pulumi.StringRef("...my_eq..."),
    					Neq:       pulumi.StringRef("...my_neq..."),
    					Ocontains: pulumi.StringRef("...my_ocontains..."),
    					Oeq:       pulumi.StringRef("...my_oeq..."),
    				},
    				RbacEnabled: pulumi.BoolRef(true),
    			},
    			Sort: pulumi.StringRef("...my_sort..."),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Konnect = Pulumi.Konnect;
    
    return await Deployment.RunAsync(() => 
    {
        var myPortal = Konnect.GetPortal.Invoke(new()
        {
            Filter = new Konnect.Inputs.GetPortalFilterInputArgs
            {
                AuthenticationEnabled = false,
                AutoApproveApplications = true,
                AutoApproveDevelopers = true,
                CanonicalDomain = new Konnect.Inputs.GetPortalFilterCanonicalDomainInputArgs
                {
                    Contains = "...my_contains...",
                    Eq = "...my_eq...",
                    Neq = "...my_neq...",
                    Ocontains = "...my_ocontains...",
                    Oeq = "...my_oeq...",
                },
                DefaultApiVisibility = new Konnect.Inputs.GetPortalFilterDefaultApiVisibilityInputArgs
                {
                    Contains = "...my_contains...",
                    Eq = "...my_eq...",
                    Neq = "...my_neq...",
                    Ocontains = "...my_ocontains...",
                    Oeq = "...my_oeq...",
                },
                DefaultApplicationAuthStrategyId = new Konnect.Inputs.GetPortalFilterDefaultApplicationAuthStrategyIdInputArgs
                {
                    Eq = "...my_eq...",
                    Neq = "...my_neq...",
                    Oeq = "...my_oeq...",
                },
                DefaultDomain = new Konnect.Inputs.GetPortalFilterDefaultDomainInputArgs
                {
                    Contains = "...my_contains...",
                    Eq = "...my_eq...",
                    Neq = "...my_neq...",
                    Ocontains = "...my_ocontains...",
                    Oeq = "...my_oeq...",
                },
                DefaultPageVisibility = new Konnect.Inputs.GetPortalFilterDefaultPageVisibilityInputArgs
                {
                    Contains = "...my_contains...",
                    Eq = "...my_eq...",
                    Neq = "...my_neq...",
                    Ocontains = "...my_ocontains...",
                    Oeq = "...my_oeq...",
                },
                Description = new Konnect.Inputs.GetPortalFilterDescriptionInputArgs
                {
                    Contains = "...my_contains...",
                    Eq = "...my_eq...",
                    Neq = "...my_neq...",
                    Ocontains = "...my_ocontains...",
                    Oeq = "...my_oeq...",
                },
                Id = new Konnect.Inputs.GetPortalFilterIdInputArgs
                {
                    Eq = "...my_eq...",
                    Neq = "...my_neq...",
                    Oeq = "...my_oeq...",
                },
                Name = new Konnect.Inputs.GetPortalFilterNameInputArgs
                {
                    Contains = "...my_contains...",
                    Eq = "...my_eq...",
                    Neq = "...my_neq...",
                    Ocontains = "...my_ocontains...",
                    Oeq = "...my_oeq...",
                },
                RbacEnabled = true,
            },
            Sort = "...my_sort...",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.konnect.KonnectFunctions;
    import com.pulumi.konnect.inputs.GetPortalArgs;
    import com.pulumi.konnect.inputs.GetPortalFilterArgs;
    import com.pulumi.konnect.inputs.GetPortalFilterCanonicalDomainArgs;
    import com.pulumi.konnect.inputs.GetPortalFilterDefaultApiVisibilityArgs;
    import com.pulumi.konnect.inputs.GetPortalFilterDefaultApplicationAuthStrategyIdArgs;
    import com.pulumi.konnect.inputs.GetPortalFilterDefaultDomainArgs;
    import com.pulumi.konnect.inputs.GetPortalFilterDefaultPageVisibilityArgs;
    import com.pulumi.konnect.inputs.GetPortalFilterDescriptionArgs;
    import com.pulumi.konnect.inputs.GetPortalFilterIdArgs;
    import com.pulumi.konnect.inputs.GetPortalFilterNameArgs;
    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) {
            final var myPortal = KonnectFunctions.getPortal(GetPortalArgs.builder()
                .filter(GetPortalFilterArgs.builder()
                    .authenticationEnabled(false)
                    .autoApproveApplications(true)
                    .autoApproveDevelopers(true)
                    .canonicalDomain(GetPortalFilterCanonicalDomainArgs.builder()
                        .contains("...my_contains...")
                        .eq("...my_eq...")
                        .neq("...my_neq...")
                        .ocontains("...my_ocontains...")
                        .oeq("...my_oeq...")
                        .build())
                    .defaultApiVisibility(GetPortalFilterDefaultApiVisibilityArgs.builder()
                        .contains("...my_contains...")
                        .eq("...my_eq...")
                        .neq("...my_neq...")
                        .ocontains("...my_ocontains...")
                        .oeq("...my_oeq...")
                        .build())
                    .defaultApplicationAuthStrategyId(GetPortalFilterDefaultApplicationAuthStrategyIdArgs.builder()
                        .eq("...my_eq...")
                        .neq("...my_neq...")
                        .oeq("...my_oeq...")
                        .build())
                    .defaultDomain(GetPortalFilterDefaultDomainArgs.builder()
                        .contains("...my_contains...")
                        .eq("...my_eq...")
                        .neq("...my_neq...")
                        .ocontains("...my_ocontains...")
                        .oeq("...my_oeq...")
                        .build())
                    .defaultPageVisibility(GetPortalFilterDefaultPageVisibilityArgs.builder()
                        .contains("...my_contains...")
                        .eq("...my_eq...")
                        .neq("...my_neq...")
                        .ocontains("...my_ocontains...")
                        .oeq("...my_oeq...")
                        .build())
                    .description(GetPortalFilterDescriptionArgs.builder()
                        .contains("...my_contains...")
                        .eq("...my_eq...")
                        .neq("...my_neq...")
                        .ocontains("...my_ocontains...")
                        .oeq("...my_oeq...")
                        .build())
                    .id(GetPortalFilterIdArgs.builder()
                        .eq("...my_eq...")
                        .neq("...my_neq...")
                        .oeq("...my_oeq...")
                        .build())
                    .name(GetPortalFilterNameArgs.builder()
                        .contains("...my_contains...")
                        .eq("...my_eq...")
                        .neq("...my_neq...")
                        .ocontains("...my_ocontains...")
                        .oeq("...my_oeq...")
                        .build())
                    .rbacEnabled(true)
                    .build())
                .sort("...my_sort...")
                .build());
    
        }
    }
    
    variables:
      myPortal:
        fn::invoke:
          function: konnect:getPortal
          arguments:
            filter:
              authenticationEnabled: false
              autoApproveApplications: true
              autoApproveDevelopers: true
              canonicalDomain:
                contains: '...my_contains...'
                eq: '...my_eq...'
                neq: '...my_neq...'
                ocontains: '...my_ocontains...'
                oeq: '...my_oeq...'
              defaultApiVisibility:
                contains: '...my_contains...'
                eq: '...my_eq...'
                neq: '...my_neq...'
                ocontains: '...my_ocontains...'
                oeq: '...my_oeq...'
              defaultApplicationAuthStrategyId:
                eq: '...my_eq...'
                neq: '...my_neq...'
                oeq: '...my_oeq...'
              defaultDomain:
                contains: '...my_contains...'
                eq: '...my_eq...'
                neq: '...my_neq...'
                ocontains: '...my_ocontains...'
                oeq: '...my_oeq...'
              defaultPageVisibility:
                contains: '...my_contains...'
                eq: '...my_eq...'
                neq: '...my_neq...'
                ocontains: '...my_ocontains...'
                oeq: '...my_oeq...'
              description:
                contains: '...my_contains...'
                eq: '...my_eq...'
                neq: '...my_neq...'
                ocontains: '...my_ocontains...'
                oeq: '...my_oeq...'
              id:
                eq: '...my_eq...'
                neq: '...my_neq...'
                oeq: '...my_oeq...'
              name:
                contains: '...my_contains...'
                eq: '...my_eq...'
                neq: '...my_neq...'
                ocontains: '...my_ocontains...'
                oeq: '...my_oeq...'
              rbacEnabled: true
            sort: '...my_sort...'
    

    Using getPortal

    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 getPortal(args: GetPortalArgs, opts?: InvokeOptions): Promise<GetPortalResult>
    function getPortalOutput(args: GetPortalOutputArgs, opts?: InvokeOptions): Output<GetPortalResult>
    def get_portal(filter: Optional[GetPortalFilter] = None,
                   sort: Optional[str] = None,
                   opts: Optional[InvokeOptions] = None) -> GetPortalResult
    def get_portal_output(filter: Optional[pulumi.Input[GetPortalFilterArgs]] = None,
                   sort: Optional[pulumi.Input[str]] = None,
                   opts: Optional[InvokeOptions] = None) -> Output[GetPortalResult]
    func LookupPortal(ctx *Context, args *LookupPortalArgs, opts ...InvokeOption) (*LookupPortalResult, error)
    func LookupPortalOutput(ctx *Context, args *LookupPortalOutputArgs, opts ...InvokeOption) LookupPortalResultOutput

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

    public static class GetPortal 
    {
        public static Task<GetPortalResult> InvokeAsync(GetPortalArgs args, InvokeOptions? opts = null)
        public static Output<GetPortalResult> Invoke(GetPortalInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetPortalResult> getPortal(GetPortalArgs args, InvokeOptions options)
    public static Output<GetPortalResult> getPortal(GetPortalArgs args, InvokeOptions options)
    
    fn::invoke:
      function: konnect:index/getPortal:getPortal
      arguments:
        # arguments dictionary

    The following arguments are supported:

    getPortal Result

    The following output properties are available:

    Supporting Types

    GetPortalFilter

    AuthenticationEnabled bool
    Filter by a boolean value (true/false).
    AutoApproveApplications bool
    Filter by a boolean value (true/false).
    AutoApproveDevelopers bool
    Filter by a boolean value (true/false).
    CanonicalDomain GetPortalFilterCanonicalDomain
    Filter using one of the following operators: eq, oeq, neq, contains, ocontains
    DefaultApiVisibility GetPortalFilterDefaultApiVisibility
    Filter using one of the following operators: eq, oeq, neq, contains, ocontains
    DefaultApplicationAuthStrategyId GetPortalFilterDefaultApplicationAuthStrategyId
    Filter using one of the following operators: eq, oeq, neq
    DefaultDomain GetPortalFilterDefaultDomain
    Filter using one of the following operators: eq, oeq, neq, contains, ocontains
    DefaultPageVisibility GetPortalFilterDefaultPageVisibility
    Filter using one of the following operators: eq, oeq, neq, contains, ocontains
    Description GetPortalFilterDescription
    Filter using one of the following operators: eq, oeq, neq, contains, ocontains
    Id GetPortalFilterId
    Filter using one of the following operators: eq, oeq, neq
    Name GetPortalFilterName
    Filter using one of the following operators: eq, oeq, neq, contains, ocontains
    RbacEnabled bool
    Filter by a boolean value (true/false).
    AuthenticationEnabled bool
    Filter by a boolean value (true/false).
    AutoApproveApplications bool
    Filter by a boolean value (true/false).
    AutoApproveDevelopers bool
    Filter by a boolean value (true/false).
    CanonicalDomain GetPortalFilterCanonicalDomain
    Filter using one of the following operators: eq, oeq, neq, contains, ocontains
    DefaultApiVisibility GetPortalFilterDefaultApiVisibility
    Filter using one of the following operators: eq, oeq, neq, contains, ocontains
    DefaultApplicationAuthStrategyId GetPortalFilterDefaultApplicationAuthStrategyId
    Filter using one of the following operators: eq, oeq, neq
    DefaultDomain GetPortalFilterDefaultDomain
    Filter using one of the following operators: eq, oeq, neq, contains, ocontains
    DefaultPageVisibility GetPortalFilterDefaultPageVisibility
    Filter using one of the following operators: eq, oeq, neq, contains, ocontains
    Description GetPortalFilterDescription
    Filter using one of the following operators: eq, oeq, neq, contains, ocontains
    Id GetPortalFilterId
    Filter using one of the following operators: eq, oeq, neq
    Name GetPortalFilterName
    Filter using one of the following operators: eq, oeq, neq, contains, ocontains
    RbacEnabled bool
    Filter by a boolean value (true/false).
    authenticationEnabled Boolean
    Filter by a boolean value (true/false).
    autoApproveApplications Boolean
    Filter by a boolean value (true/false).
    autoApproveDevelopers Boolean
    Filter by a boolean value (true/false).
    canonicalDomain GetPortalFilterCanonicalDomain
    Filter using one of the following operators: eq, oeq, neq, contains, ocontains
    defaultApiVisibility GetPortalFilterDefaultApiVisibility
    Filter using one of the following operators: eq, oeq, neq, contains, ocontains
    defaultApplicationAuthStrategyId GetPortalFilterDefaultApplicationAuthStrategyId
    Filter using one of the following operators: eq, oeq, neq
    defaultDomain GetPortalFilterDefaultDomain
    Filter using one of the following operators: eq, oeq, neq, contains, ocontains
    defaultPageVisibility GetPortalFilterDefaultPageVisibility
    Filter using one of the following operators: eq, oeq, neq, contains, ocontains
    description GetPortalFilterDescription
    Filter using one of the following operators: eq, oeq, neq, contains, ocontains
    id GetPortalFilterId
    Filter using one of the following operators: eq, oeq, neq
    name GetPortalFilterName
    Filter using one of the following operators: eq, oeq, neq, contains, ocontains
    rbacEnabled Boolean
    Filter by a boolean value (true/false).
    authenticationEnabled boolean
    Filter by a boolean value (true/false).
    autoApproveApplications boolean
    Filter by a boolean value (true/false).
    autoApproveDevelopers boolean
    Filter by a boolean value (true/false).
    canonicalDomain GetPortalFilterCanonicalDomain
    Filter using one of the following operators: eq, oeq, neq, contains, ocontains
    defaultApiVisibility GetPortalFilterDefaultApiVisibility
    Filter using one of the following operators: eq, oeq, neq, contains, ocontains
    defaultApplicationAuthStrategyId GetPortalFilterDefaultApplicationAuthStrategyId
    Filter using one of the following operators: eq, oeq, neq
    defaultDomain GetPortalFilterDefaultDomain
    Filter using one of the following operators: eq, oeq, neq, contains, ocontains
    defaultPageVisibility GetPortalFilterDefaultPageVisibility
    Filter using one of the following operators: eq, oeq, neq, contains, ocontains
    description GetPortalFilterDescription
    Filter using one of the following operators: eq, oeq, neq, contains, ocontains
    id GetPortalFilterId
    Filter using one of the following operators: eq, oeq, neq
    name GetPortalFilterName
    Filter using one of the following operators: eq, oeq, neq, contains, ocontains
    rbacEnabled boolean
    Filter by a boolean value (true/false).
    authentication_enabled bool
    Filter by a boolean value (true/false).
    auto_approve_applications bool
    Filter by a boolean value (true/false).
    auto_approve_developers bool
    Filter by a boolean value (true/false).
    canonical_domain GetPortalFilterCanonicalDomain
    Filter using one of the following operators: eq, oeq, neq, contains, ocontains
    default_api_visibility GetPortalFilterDefaultApiVisibility
    Filter using one of the following operators: eq, oeq, neq, contains, ocontains
    default_application_auth_strategy_id GetPortalFilterDefaultApplicationAuthStrategyId
    Filter using one of the following operators: eq, oeq, neq
    default_domain GetPortalFilterDefaultDomain
    Filter using one of the following operators: eq, oeq, neq, contains, ocontains
    default_page_visibility GetPortalFilterDefaultPageVisibility
    Filter using one of the following operators: eq, oeq, neq, contains, ocontains
    description GetPortalFilterDescription
    Filter using one of the following operators: eq, oeq, neq, contains, ocontains
    id GetPortalFilterId
    Filter using one of the following operators: eq, oeq, neq
    name GetPortalFilterName
    Filter using one of the following operators: eq, oeq, neq, contains, ocontains
    rbac_enabled bool
    Filter by a boolean value (true/false).
    authenticationEnabled Boolean
    Filter by a boolean value (true/false).
    autoApproveApplications Boolean
    Filter by a boolean value (true/false).
    autoApproveDevelopers Boolean
    Filter by a boolean value (true/false).
    canonicalDomain Property Map
    Filter using one of the following operators: eq, oeq, neq, contains, ocontains
    defaultApiVisibility Property Map
    Filter using one of the following operators: eq, oeq, neq, contains, ocontains
    defaultApplicationAuthStrategyId Property Map
    Filter using one of the following operators: eq, oeq, neq
    defaultDomain Property Map
    Filter using one of the following operators: eq, oeq, neq, contains, ocontains
    defaultPageVisibility Property Map
    Filter using one of the following operators: eq, oeq, neq, contains, ocontains
    description Property Map
    Filter using one of the following operators: eq, oeq, neq, contains, ocontains
    id Property Map
    Filter using one of the following operators: eq, oeq, neq
    name Property Map
    Filter using one of the following operators: eq, oeq, neq, contains, ocontains
    rbacEnabled Boolean
    Filter by a boolean value (true/false).

    GetPortalFilterCanonicalDomain

    Contains string
    The field contains the provided value.
    Eq string
    The field exactly matches the provided value.
    Neq string
    The field does not match the provided value.
    Ocontains string
    The field contains any of the provided values.
    Oeq string
    The field matches any of the provided values.
    Contains string
    The field contains the provided value.
    Eq string
    The field exactly matches the provided value.
    Neq string
    The field does not match the provided value.
    Ocontains string
    The field contains any of the provided values.
    Oeq string
    The field matches any of the provided values.
    contains String
    The field contains the provided value.
    eq String
    The field exactly matches the provided value.
    neq String
    The field does not match the provided value.
    ocontains String
    The field contains any of the provided values.
    oeq String
    The field matches any of the provided values.
    contains string
    The field contains the provided value.
    eq string
    The field exactly matches the provided value.
    neq string
    The field does not match the provided value.
    ocontains string
    The field contains any of the provided values.
    oeq string
    The field matches any of the provided values.
    contains str
    The field contains the provided value.
    eq str
    The field exactly matches the provided value.
    neq str
    The field does not match the provided value.
    ocontains str
    The field contains any of the provided values.
    oeq str
    The field matches any of the provided values.
    contains String
    The field contains the provided value.
    eq String
    The field exactly matches the provided value.
    neq String
    The field does not match the provided value.
    ocontains String
    The field contains any of the provided values.
    oeq String
    The field matches any of the provided values.

    GetPortalFilterDefaultApiVisibility

    Contains string
    The field contains the provided value.
    Eq string
    The field exactly matches the provided value.
    Neq string
    The field does not match the provided value.
    Ocontains string
    The field contains any of the provided values.
    Oeq string
    The field matches any of the provided values.
    Contains string
    The field contains the provided value.
    Eq string
    The field exactly matches the provided value.
    Neq string
    The field does not match the provided value.
    Ocontains string
    The field contains any of the provided values.
    Oeq string
    The field matches any of the provided values.
    contains String
    The field contains the provided value.
    eq String
    The field exactly matches the provided value.
    neq String
    The field does not match the provided value.
    ocontains String
    The field contains any of the provided values.
    oeq String
    The field matches any of the provided values.
    contains string
    The field contains the provided value.
    eq string
    The field exactly matches the provided value.
    neq string
    The field does not match the provided value.
    ocontains string
    The field contains any of the provided values.
    oeq string
    The field matches any of the provided values.
    contains str
    The field contains the provided value.
    eq str
    The field exactly matches the provided value.
    neq str
    The field does not match the provided value.
    ocontains str
    The field contains any of the provided values.
    oeq str
    The field matches any of the provided values.
    contains String
    The field contains the provided value.
    eq String
    The field exactly matches the provided value.
    neq String
    The field does not match the provided value.
    ocontains String
    The field contains any of the provided values.
    oeq String
    The field matches any of the provided values.

    GetPortalFilterDefaultApplicationAuthStrategyId

    Eq string
    The field exactly matches the provided value.
    Neq string
    The field does not match the provided value.
    Oeq string
    The field matches any of the provided values.
    Eq string
    The field exactly matches the provided value.
    Neq string
    The field does not match the provided value.
    Oeq string
    The field matches any of the provided values.
    eq String
    The field exactly matches the provided value.
    neq String
    The field does not match the provided value.
    oeq String
    The field matches any of the provided values.
    eq string
    The field exactly matches the provided value.
    neq string
    The field does not match the provided value.
    oeq string
    The field matches any of the provided values.
    eq str
    The field exactly matches the provided value.
    neq str
    The field does not match the provided value.
    oeq str
    The field matches any of the provided values.
    eq String
    The field exactly matches the provided value.
    neq String
    The field does not match the provided value.
    oeq String
    The field matches any of the provided values.

    GetPortalFilterDefaultDomain

    Contains string
    The field contains the provided value.
    Eq string
    The field exactly matches the provided value.
    Neq string
    The field does not match the provided value.
    Ocontains string
    The field contains any of the provided values.
    Oeq string
    The field matches any of the provided values.
    Contains string
    The field contains the provided value.
    Eq string
    The field exactly matches the provided value.
    Neq string
    The field does not match the provided value.
    Ocontains string
    The field contains any of the provided values.
    Oeq string
    The field matches any of the provided values.
    contains String
    The field contains the provided value.
    eq String
    The field exactly matches the provided value.
    neq String
    The field does not match the provided value.
    ocontains String
    The field contains any of the provided values.
    oeq String
    The field matches any of the provided values.
    contains string
    The field contains the provided value.
    eq string
    The field exactly matches the provided value.
    neq string
    The field does not match the provided value.
    ocontains string
    The field contains any of the provided values.
    oeq string
    The field matches any of the provided values.
    contains str
    The field contains the provided value.
    eq str
    The field exactly matches the provided value.
    neq str
    The field does not match the provided value.
    ocontains str
    The field contains any of the provided values.
    oeq str
    The field matches any of the provided values.
    contains String
    The field contains the provided value.
    eq String
    The field exactly matches the provided value.
    neq String
    The field does not match the provided value.
    ocontains String
    The field contains any of the provided values.
    oeq String
    The field matches any of the provided values.

    GetPortalFilterDefaultPageVisibility

    Contains string
    The field contains the provided value.
    Eq string
    The field exactly matches the provided value.
    Neq string
    The field does not match the provided value.
    Ocontains string
    The field contains any of the provided values.
    Oeq string
    The field matches any of the provided values.
    Contains string
    The field contains the provided value.
    Eq string
    The field exactly matches the provided value.
    Neq string
    The field does not match the provided value.
    Ocontains string
    The field contains any of the provided values.
    Oeq string
    The field matches any of the provided values.
    contains String
    The field contains the provided value.
    eq String
    The field exactly matches the provided value.
    neq String
    The field does not match the provided value.
    ocontains String
    The field contains any of the provided values.
    oeq String
    The field matches any of the provided values.
    contains string
    The field contains the provided value.
    eq string
    The field exactly matches the provided value.
    neq string
    The field does not match the provided value.
    ocontains string
    The field contains any of the provided values.
    oeq string
    The field matches any of the provided values.
    contains str
    The field contains the provided value.
    eq str
    The field exactly matches the provided value.
    neq str
    The field does not match the provided value.
    ocontains str
    The field contains any of the provided values.
    oeq str
    The field matches any of the provided values.
    contains String
    The field contains the provided value.
    eq String
    The field exactly matches the provided value.
    neq String
    The field does not match the provided value.
    ocontains String
    The field contains any of the provided values.
    oeq String
    The field matches any of the provided values.

    GetPortalFilterDescription

    Contains string
    The field contains the provided value.
    Eq string
    The field exactly matches the provided value.
    Neq string
    The field does not match the provided value.
    Ocontains string
    The field contains any of the provided values.
    Oeq string
    The field matches any of the provided values.
    Contains string
    The field contains the provided value.
    Eq string
    The field exactly matches the provided value.
    Neq string
    The field does not match the provided value.
    Ocontains string
    The field contains any of the provided values.
    Oeq string
    The field matches any of the provided values.
    contains String
    The field contains the provided value.
    eq String
    The field exactly matches the provided value.
    neq String
    The field does not match the provided value.
    ocontains String
    The field contains any of the provided values.
    oeq String
    The field matches any of the provided values.
    contains string
    The field contains the provided value.
    eq string
    The field exactly matches the provided value.
    neq string
    The field does not match the provided value.
    ocontains string
    The field contains any of the provided values.
    oeq string
    The field matches any of the provided values.
    contains str
    The field contains the provided value.
    eq str
    The field exactly matches the provided value.
    neq str
    The field does not match the provided value.
    ocontains str
    The field contains any of the provided values.
    oeq str
    The field matches any of the provided values.
    contains String
    The field contains the provided value.
    eq String
    The field exactly matches the provided value.
    neq String
    The field does not match the provided value.
    ocontains String
    The field contains any of the provided values.
    oeq String
    The field matches any of the provided values.

    GetPortalFilterId

    Eq string
    The field exactly matches the provided value.
    Neq string
    The field does not match the provided value.
    Oeq string
    The field matches any of the provided values.
    Eq string
    The field exactly matches the provided value.
    Neq string
    The field does not match the provided value.
    Oeq string
    The field matches any of the provided values.
    eq String
    The field exactly matches the provided value.
    neq String
    The field does not match the provided value.
    oeq String
    The field matches any of the provided values.
    eq string
    The field exactly matches the provided value.
    neq string
    The field does not match the provided value.
    oeq string
    The field matches any of the provided values.
    eq str
    The field exactly matches the provided value.
    neq str
    The field does not match the provided value.
    oeq str
    The field matches any of the provided values.
    eq String
    The field exactly matches the provided value.
    neq String
    The field does not match the provided value.
    oeq String
    The field matches any of the provided values.

    GetPortalFilterName

    Contains string
    The field contains the provided value.
    Eq string
    The field exactly matches the provided value.
    Neq string
    The field does not match the provided value.
    Ocontains string
    The field contains any of the provided values.
    Oeq string
    The field matches any of the provided values.
    Contains string
    The field contains the provided value.
    Eq string
    The field exactly matches the provided value.
    Neq string
    The field does not match the provided value.
    Ocontains string
    The field contains any of the provided values.
    Oeq string
    The field matches any of the provided values.
    contains String
    The field contains the provided value.
    eq String
    The field exactly matches the provided value.
    neq String
    The field does not match the provided value.
    ocontains String
    The field contains any of the provided values.
    oeq String
    The field matches any of the provided values.
    contains string
    The field contains the provided value.
    eq string
    The field exactly matches the provided value.
    neq string
    The field does not match the provided value.
    ocontains string
    The field contains any of the provided values.
    oeq string
    The field matches any of the provided values.
    contains str
    The field contains the provided value.
    eq str
    The field exactly matches the provided value.
    neq str
    The field does not match the provided value.
    ocontains str
    The field contains any of the provided values.
    oeq str
    The field matches any of the provided values.
    contains String
    The field contains the provided value.
    eq String
    The field exactly matches the provided value.
    neq String
    The field does not match the provided value.
    ocontains String
    The field contains any of the provided values.
    oeq String
    The field matches any of the provided values.

    Package Details

    Repository
    konnect kong/terraform-provider-konnect
    License
    Notes
    This Pulumi package is based on the konnect Terraform Provider.
    konnect logo
    Viewing docs for konnect 3.11.0
    published on Thursday, Mar 12, 2026 by kong
      Try Pulumi Cloud free. Your team will thank you.