1. Packages
  2. Packages
  3. Konnect Provider
  4. API Docs
  5. PortalDeveloper
Viewing docs for konnect 3.21.0
published on Tuesday, Aug 4, 2026 by kong
Viewing docs for konnect 3.21.0
published on Tuesday, Aug 4, 2026 by kong

    PortalDeveloper Resource

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as konnect from "@pulumi/konnect";
    
    const myPortaldeveloper = new konnect.PortalDeveloper("my_portaldeveloper", {
        email: "Rhiannon.Johnson21@yahoo.com",
        fullName: "...my_full_name...",
        portalId: "f32d905a-ed33-46a3-a093-d8f536af9a8a",
        sendInvitationEmail: false,
        status: "approved",
    });
    
    import pulumi
    import pulumi_konnect as konnect
    
    my_portaldeveloper = konnect.PortalDeveloper("my_portaldeveloper",
        email="Rhiannon.Johnson21@yahoo.com",
        full_name="...my_full_name...",
        portal_id="f32d905a-ed33-46a3-a093-d8f536af9a8a",
        send_invitation_email=False,
        status="approved")
    
    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.NewPortalDeveloper(ctx, "my_portaldeveloper", &konnect.PortalDeveloperArgs{
    			Email:               pulumi.String("Rhiannon.Johnson21@yahoo.com"),
    			FullName:            pulumi.String("...my_full_name..."),
    			PortalId:            pulumi.String("f32d905a-ed33-46a3-a093-d8f536af9a8a"),
    			SendInvitationEmail: pulumi.Bool(false),
    			Status:              pulumi.String("approved"),
    		})
    		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 myPortaldeveloper = new Konnect.PortalDeveloper("my_portaldeveloper", new()
        {
            Email = "Rhiannon.Johnson21@yahoo.com",
            FullName = "...my_full_name...",
            PortalId = "f32d905a-ed33-46a3-a093-d8f536af9a8a",
            SendInvitationEmail = false,
            Status = "approved",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.konnect.PortalDeveloper;
    import com.pulumi.konnect.PortalDeveloperArgs;
    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 myPortaldeveloper = new PortalDeveloper("myPortaldeveloper", PortalDeveloperArgs.builder()
                .email("Rhiannon.Johnson21@yahoo.com")
                .fullName("...my_full_name...")
                .portalId("f32d905a-ed33-46a3-a093-d8f536af9a8a")
                .sendInvitationEmail(false)
                .status("approved")
                .build());
    
        }
    }
    
    resources:
      myPortaldeveloper:
        type: konnect:PortalDeveloper
        name: my_portaldeveloper
        properties:
          email: Rhiannon.Johnson21@yahoo.com
          fullName: '...my_full_name...'
          portalId: f32d905a-ed33-46a3-a093-d8f536af9a8a
          sendInvitationEmail: false
          status: approved
    
    Example coming soon!
    

    Create PortalDeveloper Resource

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

    Constructor syntax

    new PortalDeveloper(name: string, args: PortalDeveloperArgs, opts?: CustomResourceOptions);
    @overload
    def PortalDeveloper(resource_name: str,
                        args: PortalDeveloperArgs,
                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def PortalDeveloper(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        email: Optional[str] = None,
                        full_name: Optional[str] = None,
                        portal_id: Optional[str] = None,
                        send_invitation_email: Optional[bool] = None,
                        status: Optional[str] = None)
    func NewPortalDeveloper(ctx *Context, name string, args PortalDeveloperArgs, opts ...ResourceOption) (*PortalDeveloper, error)
    public PortalDeveloper(string name, PortalDeveloperArgs args, CustomResourceOptions? opts = null)
    public PortalDeveloper(String name, PortalDeveloperArgs args)
    public PortalDeveloper(String name, PortalDeveloperArgs args, CustomResourceOptions options)
    
    type: konnect:PortalDeveloper
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "konnect_portal_developer" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args PortalDeveloperArgs
    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 PortalDeveloperArgs
    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 PortalDeveloperArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PortalDeveloperArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PortalDeveloperArgs
    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 portalDeveloperResource = new Konnect.PortalDeveloper("portalDeveloperResource", new()
    {
        Email = "string",
        FullName = "string",
        PortalId = "string",
        SendInvitationEmail = false,
        Status = "string",
    });
    
    example, err := konnect.NewPortalDeveloper(ctx, "portalDeveloperResource", &konnect.PortalDeveloperArgs{
    	Email:               pulumi.String("string"),
    	FullName:            pulumi.String("string"),
    	PortalId:            pulumi.String("string"),
    	SendInvitationEmail: pulumi.Bool(false),
    	Status:              pulumi.String("string"),
    })
    
    resource "konnect_portal_developer" "portalDeveloperResource" {
      lifecycle {
        create_before_destroy = true
      }
      email                 = "string"
      full_name             = "string"
      portal_id             = "string"
      send_invitation_email = false
      status                = "string"
    }
    
    var portalDeveloperResource = new PortalDeveloper("portalDeveloperResource", PortalDeveloperArgs.builder()
        .email("string")
        .fullName("string")
        .portalId("string")
        .sendInvitationEmail(false)
        .status("string")
        .build());
    
    portal_developer_resource = konnect.PortalDeveloper("portalDeveloperResource",
        email="string",
        full_name="string",
        portal_id="string",
        send_invitation_email=False,
        status="string")
    
    const portalDeveloperResource = new konnect.PortalDeveloper("portalDeveloperResource", {
        email: "string",
        fullName: "string",
        portalId: "string",
        sendInvitationEmail: false,
        status: "string",
    });
    
    type: konnect:PortalDeveloper
    properties:
        email: string
        fullName: string
        portalId: string
        sendInvitationEmail: false
        status: string
    

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

    Email string
    Requires replacement if changed.
    FullName string
    Requires replacement if changed.
    PortalId string
    The Portal identifier
    SendInvitationEmail bool
    When true, sends an invitation email to the developer. Default is false; no emails are sent unless explicitly requested. Default: false; Requires replacement if changed.
    Status string
    When omitted, the portal's auto_approve_developers setting determines the initial status. Set this property to override the portal default with any valid developer status. possible known values include one of ["approved", "pending", "revoked", "rejected"]
    Email string
    Requires replacement if changed.
    FullName string
    Requires replacement if changed.
    PortalId string
    The Portal identifier
    SendInvitationEmail bool
    When true, sends an invitation email to the developer. Default is false; no emails are sent unless explicitly requested. Default: false; Requires replacement if changed.
    Status string
    When omitted, the portal's auto_approve_developers setting determines the initial status. Set this property to override the portal default with any valid developer status. possible known values include one of ["approved", "pending", "revoked", "rejected"]
    email string
    Requires replacement if changed.
    full_name string
    Requires replacement if changed.
    portal_id string
    The Portal identifier
    send_invitation_email bool
    When true, sends an invitation email to the developer. Default is false; no emails are sent unless explicitly requested. Default: false; Requires replacement if changed.
    status string
    When omitted, the portal's auto_approve_developers setting determines the initial status. Set this property to override the portal default with any valid developer status. possible known values include one of ["approved", "pending", "revoked", "rejected"]
    email String
    Requires replacement if changed.
    fullName String
    Requires replacement if changed.
    portalId String
    The Portal identifier
    sendInvitationEmail Boolean
    When true, sends an invitation email to the developer. Default is false; no emails are sent unless explicitly requested. Default: false; Requires replacement if changed.
    status String
    When omitted, the portal's auto_approve_developers setting determines the initial status. Set this property to override the portal default with any valid developer status. possible known values include one of ["approved", "pending", "revoked", "rejected"]
    email string
    Requires replacement if changed.
    fullName string
    Requires replacement if changed.
    portalId string
    The Portal identifier
    sendInvitationEmail boolean
    When true, sends an invitation email to the developer. Default is false; no emails are sent unless explicitly requested. Default: false; Requires replacement if changed.
    status string
    When omitted, the portal's auto_approve_developers setting determines the initial status. Set this property to override the portal default with any valid developer status. possible known values include one of ["approved", "pending", "revoked", "rejected"]
    email str
    Requires replacement if changed.
    full_name str
    Requires replacement if changed.
    portal_id str
    The Portal identifier
    send_invitation_email bool
    When true, sends an invitation email to the developer. Default is false; no emails are sent unless explicitly requested. Default: false; Requires replacement if changed.
    status str
    When omitted, the portal's auto_approve_developers setting determines the initial status. Set this property to override the portal default with any valid developer status. possible known values include one of ["approved", "pending", "revoked", "rejected"]
    email String
    Requires replacement if changed.
    fullName String
    Requires replacement if changed.
    portalId String
    The Portal identifier
    sendInvitationEmail Boolean
    When true, sends an invitation email to the developer. Default is false; no emails are sent unless explicitly requested. Default: false; Requires replacement if changed.
    status String
    When omitted, the portal's auto_approve_developers setting determines the initial status. Set this property to override the portal default with any valid developer status. possible known values include one of ["approved", "pending", "revoked", "rejected"]

    Outputs

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

    CreatedAt string
    An ISO-8601 timestamp representation of entity creation date.
    Id string
    The provider-assigned unique ID for this managed resource.
    UpdatedAt string
    An ISO-8601 timestamp representation of entity update date.
    CreatedAt string
    An ISO-8601 timestamp representation of entity creation date.
    Id string
    The provider-assigned unique ID for this managed resource.
    UpdatedAt string
    An ISO-8601 timestamp representation of entity update date.
    created_at string
    An ISO-8601 timestamp representation of entity creation date.
    id string
    The provider-assigned unique ID for this managed resource.
    updated_at string
    An ISO-8601 timestamp representation of entity update date.
    createdAt String
    An ISO-8601 timestamp representation of entity creation date.
    id String
    The provider-assigned unique ID for this managed resource.
    updatedAt String
    An ISO-8601 timestamp representation of entity update date.
    createdAt string
    An ISO-8601 timestamp representation of entity creation date.
    id string
    The provider-assigned unique ID for this managed resource.
    updatedAt string
    An ISO-8601 timestamp representation of entity update date.
    created_at str
    An ISO-8601 timestamp representation of entity creation date.
    id str
    The provider-assigned unique ID for this managed resource.
    updated_at str
    An ISO-8601 timestamp representation of entity update date.
    createdAt String
    An ISO-8601 timestamp representation of entity creation date.
    id String
    The provider-assigned unique ID for this managed resource.
    updatedAt String
    An ISO-8601 timestamp representation of entity update date.

    Look up Existing PortalDeveloper Resource

    Get an existing PortalDeveloper 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?: PortalDeveloperState, opts?: CustomResourceOptions): PortalDeveloper
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            created_at: Optional[str] = None,
            email: Optional[str] = None,
            full_name: Optional[str] = None,
            portal_id: Optional[str] = None,
            send_invitation_email: Optional[bool] = None,
            status: Optional[str] = None,
            updated_at: Optional[str] = None) -> PortalDeveloper
    func GetPortalDeveloper(ctx *Context, name string, id IDInput, state *PortalDeveloperState, opts ...ResourceOption) (*PortalDeveloper, error)
    public static PortalDeveloper Get(string name, Input<string> id, PortalDeveloperState? state, CustomResourceOptions? opts = null)
    public static PortalDeveloper get(String name, Output<String> id, PortalDeveloperState state, CustomResourceOptions options)
    resources:  _:    type: konnect:PortalDeveloper    get:      id: ${id}
    import {
      to = konnect_portal_developer.example
      id = "${id}"
    }
    
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    CreatedAt string
    An ISO-8601 timestamp representation of entity creation date.
    Email string
    Requires replacement if changed.
    FullName string
    Requires replacement if changed.
    PortalId string
    The Portal identifier
    SendInvitationEmail bool
    When true, sends an invitation email to the developer. Default is false; no emails are sent unless explicitly requested. Default: false; Requires replacement if changed.
    Status string
    When omitted, the portal's auto_approve_developers setting determines the initial status. Set this property to override the portal default with any valid developer status. possible known values include one of ["approved", "pending", "revoked", "rejected"]
    UpdatedAt string
    An ISO-8601 timestamp representation of entity update date.
    CreatedAt string
    An ISO-8601 timestamp representation of entity creation date.
    Email string
    Requires replacement if changed.
    FullName string
    Requires replacement if changed.
    PortalId string
    The Portal identifier
    SendInvitationEmail bool
    When true, sends an invitation email to the developer. Default is false; no emails are sent unless explicitly requested. Default: false; Requires replacement if changed.
    Status string
    When omitted, the portal's auto_approve_developers setting determines the initial status. Set this property to override the portal default with any valid developer status. possible known values include one of ["approved", "pending", "revoked", "rejected"]
    UpdatedAt string
    An ISO-8601 timestamp representation of entity update date.
    created_at string
    An ISO-8601 timestamp representation of entity creation date.
    email string
    Requires replacement if changed.
    full_name string
    Requires replacement if changed.
    portal_id string
    The Portal identifier
    send_invitation_email bool
    When true, sends an invitation email to the developer. Default is false; no emails are sent unless explicitly requested. Default: false; Requires replacement if changed.
    status string
    When omitted, the portal's auto_approve_developers setting determines the initial status. Set this property to override the portal default with any valid developer status. possible known values include one of ["approved", "pending", "revoked", "rejected"]
    updated_at string
    An ISO-8601 timestamp representation of entity update date.
    createdAt String
    An ISO-8601 timestamp representation of entity creation date.
    email String
    Requires replacement if changed.
    fullName String
    Requires replacement if changed.
    portalId String
    The Portal identifier
    sendInvitationEmail Boolean
    When true, sends an invitation email to the developer. Default is false; no emails are sent unless explicitly requested. Default: false; Requires replacement if changed.
    status String
    When omitted, the portal's auto_approve_developers setting determines the initial status. Set this property to override the portal default with any valid developer status. possible known values include one of ["approved", "pending", "revoked", "rejected"]
    updatedAt String
    An ISO-8601 timestamp representation of entity update date.
    createdAt string
    An ISO-8601 timestamp representation of entity creation date.
    email string
    Requires replacement if changed.
    fullName string
    Requires replacement if changed.
    portalId string
    The Portal identifier
    sendInvitationEmail boolean
    When true, sends an invitation email to the developer. Default is false; no emails are sent unless explicitly requested. Default: false; Requires replacement if changed.
    status string
    When omitted, the portal's auto_approve_developers setting determines the initial status. Set this property to override the portal default with any valid developer status. possible known values include one of ["approved", "pending", "revoked", "rejected"]
    updatedAt string
    An ISO-8601 timestamp representation of entity update date.
    created_at str
    An ISO-8601 timestamp representation of entity creation date.
    email str
    Requires replacement if changed.
    full_name str
    Requires replacement if changed.
    portal_id str
    The Portal identifier
    send_invitation_email bool
    When true, sends an invitation email to the developer. Default is false; no emails are sent unless explicitly requested. Default: false; Requires replacement if changed.
    status str
    When omitted, the portal's auto_approve_developers setting determines the initial status. Set this property to override the portal default with any valid developer status. possible known values include one of ["approved", "pending", "revoked", "rejected"]
    updated_at str
    An ISO-8601 timestamp representation of entity update date.
    createdAt String
    An ISO-8601 timestamp representation of entity creation date.
    email String
    Requires replacement if changed.
    fullName String
    Requires replacement if changed.
    portalId String
    The Portal identifier
    sendInvitationEmail Boolean
    When true, sends an invitation email to the developer. Default is false; no emails are sent unless explicitly requested. Default: false; Requires replacement if changed.
    status String
    When omitted, the portal's auto_approve_developers setting determines the initial status. Set this property to override the portal default with any valid developer status. possible known values include one of ["approved", "pending", "revoked", "rejected"]
    updatedAt String
    An ISO-8601 timestamp representation of entity update date.

    Import

    In Terraform v1.5.0 and later, the import block can be used with the id attribute, for example:

    terraform

    import {

    to = konnect_portal_developer.my_konnect_portal_developer

    id = jsonencode({

    id        = "d32d905a-ed33-46a3-a093-d8f536af9a8a"
    
    portal_id = "f32d905a-ed33-46a3-a093-d8f536af9a8a"
    

    })

    }

    The pulumi import command can be used, for example:

    $ pulumi import konnect:index/portalDeveloper:PortalDeveloper my_konnect_portal_developer '{"id": "d32d905a-ed33-46a3-a093-d8f536af9a8a", "portal_id": "f32d905a-ed33-46a3-a093-d8f536af9a8a"}'
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    konnect kong/terraform-provider-konnect
    License
    Notes
    This Pulumi package is based on the konnect Terraform Provider.
    Viewing docs for konnect 3.21.0
    published on Tuesday, Aug 4, 2026 by kong

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial