konnect.SystemAccount
Explore with Pulumi AI
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.
- Konnect
Managed 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.
- Konnect
Managed 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.
- konnect
Managed 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.
- konnect
Managed 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.
- konnect
Managed 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:
- 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.
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.
- Created
At 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.
- Konnect
Managed bool - The system account is managed by Konnect (true/false). Requires replacement if changed.
- Name string
- Name of the system account.
- Updated
At string - Timestamp of when the system account was last updated.
- Created
At 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.
- Konnect
Managed bool - The system account is managed by Konnect (true/false). Requires replacement if changed.
- Name string
- Name of the system account.
- Updated
At string - Timestamp of when the system account was last updated.
- created
At 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.
- konnect
Managed Boolean - The system account is managed by Konnect (true/false). Requires replacement if changed.
- name String
- Name of the system account.
- updated
At String - Timestamp of when the system account was last updated.
- created
At 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.
- konnect
Managed boolean - The system account is managed by Konnect (true/false). Requires replacement if changed.
- name string
- Name of the system account.
- updated
At 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.
- created
At 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.
- konnect
Managed Boolean - The system account is managed by Konnect (true/false). Requires replacement if changed.
- name String
- Name of the system account.
- updated
At 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.