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

konnect.SystemAccount

Explore with Pulumi AI

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

    SystemAccount Resource

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as konnect from "@pulumi/konnect";
    
    const mySystemaccount = new konnect.SystemAccount("mySystemaccount", {
        description: "...my_description...",
        konnectManaged: false,
    });
    
    import pulumi
    import pulumi_konnect as konnect
    
    my_systemaccount = konnect.SystemAccount("mySystemaccount",
        description="...my_description...",
        konnect_managed=False)
    
    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.NewSystemAccount(ctx, "mySystemaccount", &konnect.SystemAccountArgs{
    			Description:    pulumi.String("...my_description..."),
    			KonnectManaged: pulumi.Bool(false),
    		})
    		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 mySystemaccount = new Konnect.SystemAccount("mySystemaccount", new()
        {
            Description = "...my_description...",
            KonnectManaged = false,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.konnect.SystemAccount;
    import com.pulumi.konnect.SystemAccountArgs;
    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 mySystemaccount = new SystemAccount("mySystemaccount", SystemAccountArgs.builder()
                .description("...my_description...")
                .konnectManaged(false)
                .build());
    
        }
    }
    
    resources:
      mySystemaccount:
        type: konnect:SystemAccount
        properties:
          description: '...my_description...'
          konnectManaged: false
    

    Create SystemAccount Resource

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

    Constructor syntax

    new SystemAccount(name: string, args: SystemAccountArgs, opts?: CustomResourceOptions);
    @overload
    def SystemAccount(resource_name: str,
                      args: SystemAccountArgs,
                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def SystemAccount(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      description: Optional[str] = None,
                      konnect_managed: Optional[bool] = None,
                      name: Optional[str] = None)
    func NewSystemAccount(ctx *Context, name string, args SystemAccountArgs, opts ...ResourceOption) (*SystemAccount, error)
    public SystemAccount(string name, SystemAccountArgs args, CustomResourceOptions? opts = null)
    public SystemAccount(String name, SystemAccountArgs args)
    public SystemAccount(String name, SystemAccountArgs args, CustomResourceOptions options)
    
    type: konnect:SystemAccount
    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 SystemAccountArgs
    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 SystemAccountArgs
    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 SystemAccountArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SystemAccountArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SystemAccountArgs
    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 systemAccountResource = new Konnect.SystemAccount("systemAccountResource", new()
    {
        Description = "string",
        KonnectManaged = false,
        Name = "string",
    });
    
    example, err := konnect.NewSystemAccount(ctx, "systemAccountResource", &konnect.SystemAccountArgs{
    Description: pulumi.String("string"),
    KonnectManaged: pulumi.Bool(false),
    Name: pulumi.String("string"),
    })
    
    var systemAccountResource = new SystemAccount("systemAccountResource", SystemAccountArgs.builder()
        .description("string")
        .konnectManaged(false)
        .name("string")
        .build());
    
    system_account_resource = konnect.SystemAccount("systemAccountResource",
        description="string",
        konnect_managed=False,
        name="string")
    
    const systemAccountResource = new konnect.SystemAccount("systemAccountResource", {
        description: "string",
        konnectManaged: false,
        name: "string",
    });
    
    type: konnect:SystemAccount
    properties:
        description: string
        konnectManaged: false
        name: string
    

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

    Description string
    Description of the system account. Useful when the system account name is not sufficient to differentiate one system account from another.
    KonnectManaged bool
    The system account is managed by Konnect (true/false). Requires replacement if changed.
    Name string
    Name of the system account.
    Description string
    Description of the system account. Useful when the system account name is not sufficient to differentiate one system account from another.
    KonnectManaged bool
    The system account is managed by Konnect (true/false). Requires replacement if changed.
    Name string
    Name of the system account.
    description String
    Description of the system account. Useful when the system account name is not sufficient to differentiate one system account from another.
    konnectManaged Boolean
    The system account is managed by Konnect (true/false). Requires replacement if changed.
    name String
    Name of the system account.
    description string
    Description of the system account. Useful when the system account name is not sufficient to differentiate one system account from another.
    konnectManaged boolean
    The system account is managed by Konnect (true/false). Requires replacement if changed.
    name string
    Name of the system account.
    description str
    Description of the system account. Useful when the system account name is not sufficient to differentiate one system account from another.
    konnect_managed bool
    The system account is managed by Konnect (true/false). Requires replacement if changed.
    name str
    Name of the system account.
    description String
    Description of the system account. Useful when the system account name is not sufficient to differentiate one system account from another.
    konnectManaged Boolean
    The system account is managed by Konnect (true/false). Requires replacement if changed.
    name String
    Name of the system account.

    Outputs

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

    CreatedAt string
    Timestamp of when the system account was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    UpdatedAt string
    Timestamp of when the system account was last updated.
    CreatedAt string
    Timestamp of when the system account was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    UpdatedAt string
    Timestamp of when the system account was last updated.
    createdAt String
    Timestamp of when the system account was created.
    id String
    The provider-assigned unique ID for this managed resource.
    updatedAt String
    Timestamp of when the system account was last updated.
    createdAt string
    Timestamp of when the system account was created.
    id string
    The provider-assigned unique ID for this managed resource.
    updatedAt string
    Timestamp of when the system account was last updated.
    created_at str
    Timestamp of when the system account was created.
    id str
    The provider-assigned unique ID for this managed resource.
    updated_at str
    Timestamp of when the system account was last updated.
    createdAt String
    Timestamp of when the system account was created.
    id String
    The provider-assigned unique ID for this managed resource.
    updatedAt String
    Timestamp of when the system account was last updated.

    Look up Existing SystemAccount Resource

    Get an existing SystemAccount 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?: SystemAccountState, opts?: CustomResourceOptions): SystemAccount
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            created_at: Optional[str] = None,
            description: Optional[str] = None,
            konnect_managed: Optional[bool] = None,
            name: Optional[str] = None,
            updated_at: Optional[str] = None) -> SystemAccount
    func GetSystemAccount(ctx *Context, name string, id IDInput, state *SystemAccountState, opts ...ResourceOption) (*SystemAccount, error)
    public static SystemAccount Get(string name, Input<string> id, SystemAccountState? state, CustomResourceOptions? opts = null)
    public static SystemAccount get(String name, Output<String> id, SystemAccountState state, CustomResourceOptions options)
    resources:  _:    type: konnect:SystemAccount    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
    Timestamp of when the system account was created.
    Description string
    Description of the system account. Useful when the system account name is not sufficient to differentiate one system account from another.
    KonnectManaged bool
    The system account is managed by Konnect (true/false). Requires replacement if changed.
    Name string
    Name of the system account.
    UpdatedAt string
    Timestamp of when the system account was last updated.
    CreatedAt string
    Timestamp of when the system account was created.
    Description string
    Description of the system account. Useful when the system account name is not sufficient to differentiate one system account from another.
    KonnectManaged bool
    The system account is managed by Konnect (true/false). Requires replacement if changed.
    Name string
    Name of the system account.
    UpdatedAt string
    Timestamp of when the system account was last updated.
    createdAt String
    Timestamp of when the system account was created.
    description String
    Description of the system account. Useful when the system account name is not sufficient to differentiate one system account from another.
    konnectManaged Boolean
    The system account is managed by Konnect (true/false). Requires replacement if changed.
    name String
    Name of the system account.
    updatedAt String
    Timestamp of when the system account was last updated.
    createdAt string
    Timestamp of when the system account was created.
    description string
    Description of the system account. Useful when the system account name is not sufficient to differentiate one system account from another.
    konnectManaged boolean
    The system account is managed by Konnect (true/false). Requires replacement if changed.
    name string
    Name of the system account.
    updatedAt string
    Timestamp of when the system account was last updated.
    created_at str
    Timestamp of when the system account was created.
    description str
    Description of the system account. Useful when the system account name is not sufficient to differentiate one system account from another.
    konnect_managed bool
    The system account is managed by Konnect (true/false). Requires replacement if changed.
    name str
    Name of the system account.
    updated_at str
    Timestamp of when the system account was last updated.
    createdAt String
    Timestamp of when the system account was created.
    description String
    Description of the system account. Useful when the system account name is not sufficient to differentiate one system account from another.
    konnectManaged Boolean
    The system account is managed by Konnect (true/false). Requires replacement if changed.
    name String
    Name of the system account.
    updatedAt String
    Timestamp of when the system account was last updated.

    Import

    $ pulumi import konnect:index/systemAccount:SystemAccount my_konnect_system_account ""
    

    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