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

konnect.SystemAccountTeam

Explore with Pulumi AI

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

    SystemAccountTeam Resource

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as konnect from "@pulumi/konnect";
    
    const mySystemaccountteam = new konnect.SystemAccountTeam("mySystemaccountteam", {
        accountId: "c4b96f55-77c4-4232-b713-71c27e575e9a",
        teamId: "...my_team_id...",
    });
    
    import pulumi
    import pulumi_konnect as konnect
    
    my_systemaccountteam = konnect.SystemAccountTeam("mySystemaccountteam",
        account_id="c4b96f55-77c4-4232-b713-71c27e575e9a",
        team_id="...my_team_id...")
    
    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.NewSystemAccountTeam(ctx, "mySystemaccountteam", &konnect.SystemAccountTeamArgs{
    			AccountId: pulumi.String("c4b96f55-77c4-4232-b713-71c27e575e9a"),
    			TeamId:    pulumi.String("...my_team_id..."),
    		})
    		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 mySystemaccountteam = new Konnect.SystemAccountTeam("mySystemaccountteam", new()
        {
            AccountId = "c4b96f55-77c4-4232-b713-71c27e575e9a",
            TeamId = "...my_team_id...",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.konnect.SystemAccountTeam;
    import com.pulumi.konnect.SystemAccountTeamArgs;
    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 mySystemaccountteam = new SystemAccountTeam("mySystemaccountteam", SystemAccountTeamArgs.builder()
                .accountId("c4b96f55-77c4-4232-b713-71c27e575e9a")
                .teamId("...my_team_id...")
                .build());
    
        }
    }
    
    resources:
      mySystemaccountteam:
        type: konnect:SystemAccountTeam
        properties:
          accountId: c4b96f55-77c4-4232-b713-71c27e575e9a
          teamId: '...my_team_id...'
    

    Create SystemAccountTeam Resource

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

    Constructor syntax

    new SystemAccountTeam(name: string, args: SystemAccountTeamArgs, opts?: CustomResourceOptions);
    @overload
    def SystemAccountTeam(resource_name: str,
                          args: SystemAccountTeamArgs,
                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def SystemAccountTeam(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          team_id: Optional[str] = None,
                          account_id: Optional[str] = None)
    func NewSystemAccountTeam(ctx *Context, name string, args SystemAccountTeamArgs, opts ...ResourceOption) (*SystemAccountTeam, error)
    public SystemAccountTeam(string name, SystemAccountTeamArgs args, CustomResourceOptions? opts = null)
    public SystemAccountTeam(String name, SystemAccountTeamArgs args)
    public SystemAccountTeam(String name, SystemAccountTeamArgs args, CustomResourceOptions options)
    
    type: konnect:SystemAccountTeam
    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 SystemAccountTeamArgs
    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 SystemAccountTeamArgs
    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 SystemAccountTeamArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SystemAccountTeamArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SystemAccountTeamArgs
    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 systemAccountTeamResource = new Konnect.SystemAccountTeam("systemAccountTeamResource", new()
    {
        TeamId = "string",
        AccountId = "string",
    });
    
    example, err := konnect.NewSystemAccountTeam(ctx, "systemAccountTeamResource", &konnect.SystemAccountTeamArgs{
    TeamId: pulumi.String("string"),
    AccountId: pulumi.String("string"),
    })
    
    var systemAccountTeamResource = new SystemAccountTeam("systemAccountTeamResource", SystemAccountTeamArgs.builder()
        .teamId("string")
        .accountId("string")
        .build());
    
    system_account_team_resource = konnect.SystemAccountTeam("systemAccountTeamResource",
        team_id="string",
        account_id="string")
    
    const systemAccountTeamResource = new konnect.SystemAccountTeam("systemAccountTeamResource", {
        teamId: "string",
        accountId: "string",
    });
    
    type: konnect:SystemAccountTeam
    properties:
        accountId: string
        teamId: string
    

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

    TeamId string
    ID of the team. Requires replacement if changed.
    AccountId string
    ID of the system account. Requires replacement if changed.
    TeamId string
    ID of the team. Requires replacement if changed.
    AccountId string
    ID of the system account. Requires replacement if changed.
    teamId String
    ID of the team. Requires replacement if changed.
    accountId String
    ID of the system account. Requires replacement if changed.
    teamId string
    ID of the team. Requires replacement if changed.
    accountId string
    ID of the system account. Requires replacement if changed.
    team_id str
    ID of the team. Requires replacement if changed.
    account_id str
    ID of the system account. Requires replacement if changed.
    teamId String
    ID of the team. Requires replacement if changed.
    accountId String
    ID of the system account. Requires replacement if changed.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing SystemAccountTeam Resource

    Get an existing SystemAccountTeam 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?: SystemAccountTeamState, opts?: CustomResourceOptions): SystemAccountTeam
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            account_id: Optional[str] = None,
            team_id: Optional[str] = None) -> SystemAccountTeam
    func GetSystemAccountTeam(ctx *Context, name string, id IDInput, state *SystemAccountTeamState, opts ...ResourceOption) (*SystemAccountTeam, error)
    public static SystemAccountTeam Get(string name, Input<string> id, SystemAccountTeamState? state, CustomResourceOptions? opts = null)
    public static SystemAccountTeam get(String name, Output<String> id, SystemAccountTeamState state, CustomResourceOptions options)
    resources:  _:    type: konnect:SystemAccountTeam    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:
    AccountId string
    ID of the system account. Requires replacement if changed.
    TeamId string
    ID of the team. Requires replacement if changed.
    AccountId string
    ID of the system account. Requires replacement if changed.
    TeamId string
    ID of the team. Requires replacement if changed.
    accountId String
    ID of the system account. Requires replacement if changed.
    teamId String
    ID of the team. Requires replacement if changed.
    accountId string
    ID of the system account. Requires replacement if changed.
    teamId string
    ID of the team. Requires replacement if changed.
    account_id str
    ID of the system account. Requires replacement if changed.
    team_id str
    ID of the team. Requires replacement if changed.
    accountId String
    ID of the system account. Requires replacement if changed.
    teamId String
    ID of the team. Requires replacement if changed.

    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