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

konnect.PortalTeam

Explore with Pulumi AI

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

    PortalTeam Resource

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as konnect from "@pulumi/konnect";
    
    const myPortalteam = new konnect.PortalTeam("myPortalteam", {
        description: "The Identity Management (IDM) team.",
        portalId: "09878798-1a69-48bc-9bac-1c891294cc51",
    });
    
    import pulumi
    import pulumi_konnect as konnect
    
    my_portalteam = konnect.PortalTeam("myPortalteam",
        description="The Identity Management (IDM) team.",
        portal_id="09878798-1a69-48bc-9bac-1c891294cc51")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/konnect/v2/konnect"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := konnect.NewPortalTeam(ctx, "myPortalteam", &konnect.PortalTeamArgs{
    			Description: pulumi.String("The Identity Management (IDM) team."),
    			PortalId:    pulumi.String("09878798-1a69-48bc-9bac-1c891294cc51"),
    		})
    		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 myPortalteam = new Konnect.PortalTeam("myPortalteam", new()
        {
            Description = "The Identity Management (IDM) team.",
            PortalId = "09878798-1a69-48bc-9bac-1c891294cc51",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.konnect.PortalTeam;
    import com.pulumi.konnect.PortalTeamArgs;
    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 myPortalteam = new PortalTeam("myPortalteam", PortalTeamArgs.builder()
                .description("The Identity Management (IDM) team.")
                .portalId("09878798-1a69-48bc-9bac-1c891294cc51")
                .build());
    
        }
    }
    
    resources:
      myPortalteam:
        type: konnect:PortalTeam
        properties:
          description: The Identity Management (IDM) team.
          portalId: 09878798-1a69-48bc-9bac-1c891294cc51
    

    Create PortalTeam Resource

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

    Constructor syntax

    new PortalTeam(name: string, args: PortalTeamArgs, opts?: CustomResourceOptions);
    @overload
    def PortalTeam(resource_name: str,
                   args: PortalTeamArgs,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def PortalTeam(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   portal_id: Optional[str] = None,
                   description: Optional[str] = None,
                   name: Optional[str] = None)
    func NewPortalTeam(ctx *Context, name string, args PortalTeamArgs, opts ...ResourceOption) (*PortalTeam, error)
    public PortalTeam(string name, PortalTeamArgs args, CustomResourceOptions? opts = null)
    public PortalTeam(String name, PortalTeamArgs args)
    public PortalTeam(String name, PortalTeamArgs args, CustomResourceOptions options)
    
    type: konnect:PortalTeam
    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 PortalTeamArgs
    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 PortalTeamArgs
    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 PortalTeamArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PortalTeamArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PortalTeamArgs
    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 portalTeamResource = new Konnect.PortalTeam("portalTeamResource", new()
    {
        PortalId = "string",
        Description = "string",
        Name = "string",
    });
    
    example, err := konnect.NewPortalTeam(ctx, "portalTeamResource", &konnect.PortalTeamArgs{
    PortalId: pulumi.String("string"),
    Description: pulumi.String("string"),
    Name: pulumi.String("string"),
    })
    
    var portalTeamResource = new PortalTeam("portalTeamResource", PortalTeamArgs.builder()
        .portalId("string")
        .description("string")
        .name("string")
        .build());
    
    portal_team_resource = konnect.PortalTeam("portalTeamResource",
        portal_id="string",
        description="string",
        name="string")
    
    const portalTeamResource = new konnect.PortalTeam("portalTeamResource", {
        portalId: "string",
        description: "string",
        name: "string",
    });
    
    type: konnect:PortalTeam
    properties:
        description: string
        name: string
        portalId: string
    

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

    PortalId string
    ID of the portal.
    Description string
    Name string
    PortalId string
    ID of the portal.
    Description string
    Name string
    portalId String
    ID of the portal.
    description String
    name String
    portalId string
    ID of the portal.
    description string
    name string
    portal_id str
    ID of the portal.
    description str
    name str
    portalId String
    ID of the portal.
    description String
    name String

    Outputs

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

    CreatedAt string
    Id string
    The provider-assigned unique ID for this managed resource.
    UpdatedAt string
    CreatedAt string
    Id string
    The provider-assigned unique ID for this managed resource.
    UpdatedAt string
    createdAt String
    id String
    The provider-assigned unique ID for this managed resource.
    updatedAt String
    createdAt string
    id string
    The provider-assigned unique ID for this managed resource.
    updatedAt string
    created_at str
    id str
    The provider-assigned unique ID for this managed resource.
    updated_at str
    createdAt String
    id String
    The provider-assigned unique ID for this managed resource.
    updatedAt String

    Look up Existing PortalTeam Resource

    Get an existing PortalTeam 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?: PortalTeamState, opts?: CustomResourceOptions): PortalTeam
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            created_at: Optional[str] = None,
            description: Optional[str] = None,
            name: Optional[str] = None,
            portal_id: Optional[str] = None,
            updated_at: Optional[str] = None) -> PortalTeam
    func GetPortalTeam(ctx *Context, name string, id IDInput, state *PortalTeamState, opts ...ResourceOption) (*PortalTeam, error)
    public static PortalTeam Get(string name, Input<string> id, PortalTeamState? state, CustomResourceOptions? opts = null)
    public static PortalTeam get(String name, Output<String> id, PortalTeamState state, CustomResourceOptions options)
    resources:  _:    type: konnect:PortalTeam    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    CreatedAt string
    Description string
    Name string
    PortalId string
    ID of the portal.
    UpdatedAt string
    CreatedAt string
    Description string
    Name string
    PortalId string
    ID of the portal.
    UpdatedAt string
    createdAt String
    description String
    name String
    portalId String
    ID of the portal.
    updatedAt String
    createdAt string
    description string
    name string
    portalId string
    ID of the portal.
    updatedAt string
    created_at str
    description str
    name str
    portal_id str
    ID of the portal.
    updated_at str
    createdAt String
    description String
    name String
    portalId String
    ID of the portal.
    updatedAt String

    Import

    $ pulumi import konnect:index/portalTeam:PortalTeam my_konnect_portal_team "{ \"portal_id\": \"\", \"team_id\": \"d32d905a-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.
    konnect logo
    konnect 2.4.1 published on Thursday, Mar 13, 2025 by kong