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

konnect.SystemAccountAccessToken

Explore with Pulumi AI

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

    SystemAccountAccessToken Resource

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as konnect from "@pulumi/konnect";
    
    const mySystemaccountaccesstoken = new konnect.SystemAccountAccessToken("mySystemaccountaccesstoken", {
        accountId: "...my_account_id...",
        expiresAt: "2022-08-24T03:41:29.965Z",
    });
    
    import pulumi
    import pulumi_konnect as konnect
    
    my_systemaccountaccesstoken = konnect.SystemAccountAccessToken("mySystemaccountaccesstoken",
        account_id="...my_account_id...",
        expires_at="2022-08-24T03:41:29.965Z")
    
    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.NewSystemAccountAccessToken(ctx, "mySystemaccountaccesstoken", &konnect.SystemAccountAccessTokenArgs{
    			AccountId: pulumi.String("...my_account_id..."),
    			ExpiresAt: pulumi.String("2022-08-24T03:41:29.965Z"),
    		})
    		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 mySystemaccountaccesstoken = new Konnect.SystemAccountAccessToken("mySystemaccountaccesstoken", new()
        {
            AccountId = "...my_account_id...",
            ExpiresAt = "2022-08-24T03:41:29.965Z",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.konnect.SystemAccountAccessToken;
    import com.pulumi.konnect.SystemAccountAccessTokenArgs;
    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 mySystemaccountaccesstoken = new SystemAccountAccessToken("mySystemaccountaccesstoken", SystemAccountAccessTokenArgs.builder()
                .accountId("...my_account_id...")
                .expiresAt("2022-08-24T03:41:29.965Z")
                .build());
    
        }
    }
    
    resources:
      mySystemaccountaccesstoken:
        type: konnect:SystemAccountAccessToken
        properties:
          accountId: '...my_account_id...'
          expiresAt: 2022-08-24T03:41:29.965Z
    

    Create SystemAccountAccessToken Resource

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

    Constructor syntax

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

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

    AccountId string
    ID of the system account.
    ExpiresAt string
    Requires replacement if changed.
    Name string
    AccountId string
    ID of the system account.
    ExpiresAt string
    Requires replacement if changed.
    Name string
    accountId String
    ID of the system account.
    expiresAt String
    Requires replacement if changed.
    name String
    accountId string
    ID of the system account.
    expiresAt string
    Requires replacement if changed.
    name string
    account_id str
    ID of the system account.
    expires_at str
    Requires replacement if changed.
    name str
    accountId String
    ID of the system account.
    expiresAt String
    Requires replacement if changed.
    name String

    Outputs

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

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

    Look up Existing SystemAccountAccessToken Resource

    Get an existing SystemAccountAccessToken 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?: SystemAccountAccessTokenState, opts?: CustomResourceOptions): SystemAccountAccessToken
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            account_id: Optional[str] = None,
            created_at: Optional[str] = None,
            expires_at: Optional[str] = None,
            last_used_at: Optional[str] = None,
            name: Optional[str] = None,
            token: Optional[str] = None,
            updated_at: Optional[str] = None) -> SystemAccountAccessToken
    func GetSystemAccountAccessToken(ctx *Context, name string, id IDInput, state *SystemAccountAccessTokenState, opts ...ResourceOption) (*SystemAccountAccessToken, error)
    public static SystemAccountAccessToken Get(string name, Input<string> id, SystemAccountAccessTokenState? state, CustomResourceOptions? opts = null)
    public static SystemAccountAccessToken get(String name, Output<String> id, SystemAccountAccessTokenState state, CustomResourceOptions options)
    resources:  _:    type: konnect:SystemAccountAccessToken    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.
    CreatedAt string
    Timestamp of when the system account access token was created.
    ExpiresAt string
    Requires replacement if changed.
    LastUsedAt string
    Timestamp of when the system account access token was last used.
    Name string
    Token string
    The token of the system account access token.
    UpdatedAt string
    Timestamp of when the system account access token was last updated.
    AccountId string
    ID of the system account.
    CreatedAt string
    Timestamp of when the system account access token was created.
    ExpiresAt string
    Requires replacement if changed.
    LastUsedAt string
    Timestamp of when the system account access token was last used.
    Name string
    Token string
    The token of the system account access token.
    UpdatedAt string
    Timestamp of when the system account access token was last updated.
    accountId String
    ID of the system account.
    createdAt String
    Timestamp of when the system account access token was created.
    expiresAt String
    Requires replacement if changed.
    lastUsedAt String
    Timestamp of when the system account access token was last used.
    name String
    token String
    The token of the system account access token.
    updatedAt String
    Timestamp of when the system account access token was last updated.
    accountId string
    ID of the system account.
    createdAt string
    Timestamp of when the system account access token was created.
    expiresAt string
    Requires replacement if changed.
    lastUsedAt string
    Timestamp of when the system account access token was last used.
    name string
    token string
    The token of the system account access token.
    updatedAt string
    Timestamp of when the system account access token was last updated.
    account_id str
    ID of the system account.
    created_at str
    Timestamp of when the system account access token was created.
    expires_at str
    Requires replacement if changed.
    last_used_at str
    Timestamp of when the system account access token was last used.
    name str
    token str
    The token of the system account access token.
    updated_at str
    Timestamp of when the system account access token was last updated.
    accountId String
    ID of the system account.
    createdAt String
    Timestamp of when the system account access token was created.
    expiresAt String
    Requires replacement if changed.
    lastUsedAt String
    Timestamp of when the system account access token was last used.
    name String
    token String
    The token of the system account access token.
    updatedAt String
    Timestamp of when the system account access token was last updated.

    Import

    $ pulumi import konnect:index/systemAccountAccessToken:SystemAccountAccessToken my_konnect_system_account_access_token "{ \"account_id\": \"\", \"token_id\": \"\"}"
    

    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