1. Packages
  2. Control Plane (cpln)
  3. API Docs
  4. Org
Control Plane v0.0.57 published on Friday, Apr 25, 2025 by pulumiverse

cpln.Org

Explore with Pulumi AI

Create Org Resource

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

Constructor syntax

new Org(name: string, args: OrgArgs, opts?: CustomResourceOptions);
@overload
def Org(resource_name: str,
        args: OrgArgs,
        opts: Optional[ResourceOptions] = None)

@overload
def Org(resource_name: str,
        opts: Optional[ResourceOptions] = None,
        observability: Optional[OrgObservabilityArgs] = None,
        account_id: Optional[str] = None,
        auth_config: Optional[OrgAuthConfigArgs] = None,
        description: Optional[str] = None,
        invitees: Optional[Sequence[str]] = None,
        security: Optional[OrgSecurityArgs] = None,
        session_timeout_seconds: Optional[int] = None,
        tags: Optional[Mapping[str, str]] = None)
func NewOrg(ctx *Context, name string, args OrgArgs, opts ...ResourceOption) (*Org, error)
public Org(string name, OrgArgs args, CustomResourceOptions? opts = null)
public Org(String name, OrgArgs args)
public Org(String name, OrgArgs args, CustomResourceOptions options)
type: cpln:Org
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. OrgArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. OrgArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. OrgArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. OrgArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. OrgArgs
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 orgResource = new Cpln.Org("orgResource", new()
{
    Observability = new Cpln.Inputs.OrgObservabilityArgs
    {
        LogsRetentionDays = 0,
        MetricsRetentionDays = 0,
        TracesRetentionDays = 0,
    },
    AccountId = "string",
    AuthConfig = new Cpln.Inputs.OrgAuthConfigArgs
    {
        DomainAutoMembers = new[]
        {
            "string",
        },
        SamlOnly = false,
    },
    Description = "string",
    Invitees = new[]
    {
        "string",
    },
    Security = new Cpln.Inputs.OrgSecurityArgs
    {
        PlaceholderAttribute = false,
        ThreatDetection = new Cpln.Inputs.OrgSecurityThreatDetectionArgs
        {
            Enabled = false,
            MinimumSeverity = "string",
            Syslog = new Cpln.Inputs.OrgSecurityThreatDetectionSyslogArgs
            {
                Host = "string",
                Port = 0,
                Transport = "string",
            },
        },
    },
    SessionTimeoutSeconds = 0,
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := cpln.NewOrg(ctx, "orgResource", &cpln.OrgArgs{
	Observability: &cpln.OrgObservabilityArgs{
		LogsRetentionDays:    pulumi.Int(0),
		MetricsRetentionDays: pulumi.Int(0),
		TracesRetentionDays:  pulumi.Int(0),
	},
	AccountId: pulumi.String("string"),
	AuthConfig: &cpln.OrgAuthConfigArgs{
		DomainAutoMembers: pulumi.StringArray{
			pulumi.String("string"),
		},
		SamlOnly: pulumi.Bool(false),
	},
	Description: pulumi.String("string"),
	Invitees: pulumi.StringArray{
		pulumi.String("string"),
	},
	Security: &cpln.OrgSecurityArgs{
		PlaceholderAttribute: pulumi.Bool(false),
		ThreatDetection: &cpln.OrgSecurityThreatDetectionArgs{
			Enabled:         pulumi.Bool(false),
			MinimumSeverity: pulumi.String("string"),
			Syslog: &cpln.OrgSecurityThreatDetectionSyslogArgs{
				Host:      pulumi.String("string"),
				Port:      pulumi.Int(0),
				Transport: pulumi.String("string"),
			},
		},
	},
	SessionTimeoutSeconds: pulumi.Int(0),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
Copy
var orgResource = new Org("orgResource", OrgArgs.builder()
    .observability(OrgObservabilityArgs.builder()
        .logsRetentionDays(0)
        .metricsRetentionDays(0)
        .tracesRetentionDays(0)
        .build())
    .accountId("string")
    .authConfig(OrgAuthConfigArgs.builder()
        .domainAutoMembers("string")
        .samlOnly(false)
        .build())
    .description("string")
    .invitees("string")
    .security(OrgSecurityArgs.builder()
        .placeholderAttribute(false)
        .threatDetection(OrgSecurityThreatDetectionArgs.builder()
            .enabled(false)
            .minimumSeverity("string")
            .syslog(OrgSecurityThreatDetectionSyslogArgs.builder()
                .host("string")
                .port(0)
                .transport("string")
                .build())
            .build())
        .build())
    .sessionTimeoutSeconds(0)
    .tags(Map.of("string", "string"))
    .build());
Copy
org_resource = cpln.Org("orgResource",
    observability={
        "logs_retention_days": 0,
        "metrics_retention_days": 0,
        "traces_retention_days": 0,
    },
    account_id="string",
    auth_config={
        "domain_auto_members": ["string"],
        "saml_only": False,
    },
    description="string",
    invitees=["string"],
    security={
        "placeholder_attribute": False,
        "threat_detection": {
            "enabled": False,
            "minimum_severity": "string",
            "syslog": {
                "host": "string",
                "port": 0,
                "transport": "string",
            },
        },
    },
    session_timeout_seconds=0,
    tags={
        "string": "string",
    })
Copy
const orgResource = new cpln.Org("orgResource", {
    observability: {
        logsRetentionDays: 0,
        metricsRetentionDays: 0,
        tracesRetentionDays: 0,
    },
    accountId: "string",
    authConfig: {
        domainAutoMembers: ["string"],
        samlOnly: false,
    },
    description: "string",
    invitees: ["string"],
    security: {
        placeholderAttribute: false,
        threatDetection: {
            enabled: false,
            minimumSeverity: "string",
            syslog: {
                host: "string",
                port: 0,
                transport: "string",
            },
        },
    },
    sessionTimeoutSeconds: 0,
    tags: {
        string: "string",
    },
});
Copy
type: cpln:Org
properties:
    accountId: string
    authConfig:
        domainAutoMembers:
            - string
        samlOnly: false
    description: string
    invitees:
        - string
    observability:
        logsRetentionDays: 0
        metricsRetentionDays: 0
        tracesRetentionDays: 0
    security:
        placeholderAttribute: false
        threatDetection:
            enabled: false
            minimumSeverity: string
            syslog:
                host: string
                port: 0
                transport: string
    sessionTimeoutSeconds: 0
    tags:
        string: string
Copy

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

Observability This property is required. Pulumiverse.Cpln.Inputs.OrgObservability
The retention period (in days) for logs, metrics, and traces. Charges apply for storage beyond the 30 day default.
AccountId string
The associated account ID that will be used when creating the org. Only used on org creation. The account ID can be obtained from the Org Management & Billing page.
AuthConfig Pulumiverse.Cpln.Inputs.OrgAuthConfig
The configuration settings and parameters related to authentication within the org.
Description string
The description of org.
Invitees List<string>
When an org is created, the list of email addresses which will receive an invitation to join the org and be assigned to the superusers group. The user account used when creating the org will be included in this list.
Security Pulumiverse.Cpln.Inputs.OrgSecurity
SessionTimeoutSeconds int
The idle time (in seconds) in which the console UI will automatically sign-out the user. Default: 900 (15 minutes)
Tags Dictionary<string, string>
Key-value map of the org's tags.
Observability This property is required. OrgObservabilityArgs
The retention period (in days) for logs, metrics, and traces. Charges apply for storage beyond the 30 day default.
AccountId string
The associated account ID that will be used when creating the org. Only used on org creation. The account ID can be obtained from the Org Management & Billing page.
AuthConfig OrgAuthConfigArgs
The configuration settings and parameters related to authentication within the org.
Description string
The description of org.
Invitees []string
When an org is created, the list of email addresses which will receive an invitation to join the org and be assigned to the superusers group. The user account used when creating the org will be included in this list.
Security OrgSecurityArgs
SessionTimeoutSeconds int
The idle time (in seconds) in which the console UI will automatically sign-out the user. Default: 900 (15 minutes)
Tags map[string]string
Key-value map of the org's tags.
observability This property is required. OrgObservability
The retention period (in days) for logs, metrics, and traces. Charges apply for storage beyond the 30 day default.
accountId String
The associated account ID that will be used when creating the org. Only used on org creation. The account ID can be obtained from the Org Management & Billing page.
authConfig OrgAuthConfig
The configuration settings and parameters related to authentication within the org.
description String
The description of org.
invitees List<String>
When an org is created, the list of email addresses which will receive an invitation to join the org and be assigned to the superusers group. The user account used when creating the org will be included in this list.
security OrgSecurity
sessionTimeoutSeconds Integer
The idle time (in seconds) in which the console UI will automatically sign-out the user. Default: 900 (15 minutes)
tags Map<String,String>
Key-value map of the org's tags.
observability This property is required. OrgObservability
The retention period (in days) for logs, metrics, and traces. Charges apply for storage beyond the 30 day default.
accountId string
The associated account ID that will be used when creating the org. Only used on org creation. The account ID can be obtained from the Org Management & Billing page.
authConfig OrgAuthConfig
The configuration settings and parameters related to authentication within the org.
description string
The description of org.
invitees string[]
When an org is created, the list of email addresses which will receive an invitation to join the org and be assigned to the superusers group. The user account used when creating the org will be included in this list.
security OrgSecurity
sessionTimeoutSeconds number
The idle time (in seconds) in which the console UI will automatically sign-out the user. Default: 900 (15 minutes)
tags {[key: string]: string}
Key-value map of the org's tags.
observability This property is required. OrgObservabilityArgs
The retention period (in days) for logs, metrics, and traces. Charges apply for storage beyond the 30 day default.
account_id str
The associated account ID that will be used when creating the org. Only used on org creation. The account ID can be obtained from the Org Management & Billing page.
auth_config OrgAuthConfigArgs
The configuration settings and parameters related to authentication within the org.
description str
The description of org.
invitees Sequence[str]
When an org is created, the list of email addresses which will receive an invitation to join the org and be assigned to the superusers group. The user account used when creating the org will be included in this list.
security OrgSecurityArgs
session_timeout_seconds int
The idle time (in seconds) in which the console UI will automatically sign-out the user. Default: 900 (15 minutes)
tags Mapping[str, str]
Key-value map of the org's tags.
observability This property is required. Property Map
The retention period (in days) for logs, metrics, and traces. Charges apply for storage beyond the 30 day default.
accountId String
The associated account ID that will be used when creating the org. Only used on org creation. The account ID can be obtained from the Org Management & Billing page.
authConfig Property Map
The configuration settings and parameters related to authentication within the org.
description String
The description of org.
invitees List<String>
When an org is created, the list of email addresses which will receive an invitation to join the org and be assigned to the superusers group. The user account used when creating the org will be included in this list.
security Property Map
sessionTimeoutSeconds Number
The idle time (in seconds) in which the console UI will automatically sign-out the user. Default: 900 (15 minutes)
tags Map<String>
Key-value map of the org's tags.

Outputs

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

CplnId string
The ID, in GUID format, of the org.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the org.
SelfLink string
Full link to this resource. Can be referenced by other resources.
Statuses List<Pulumiverse.Cpln.Outputs.OrgStatus>
Status of the org.
CplnId string
The ID, in GUID format, of the org.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the org.
SelfLink string
Full link to this resource. Can be referenced by other resources.
Statuses []OrgStatus
Status of the org.
cplnId String
The ID, in GUID format, of the org.
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the org.
selfLink String
Full link to this resource. Can be referenced by other resources.
statuses List<OrgStatus>
Status of the org.
cplnId string
The ID, in GUID format, of the org.
id string
The provider-assigned unique ID for this managed resource.
name string
The name of the org.
selfLink string
Full link to this resource. Can be referenced by other resources.
statuses OrgStatus[]
Status of the org.
cpln_id str
The ID, in GUID format, of the org.
id str
The provider-assigned unique ID for this managed resource.
name str
The name of the org.
self_link str
Full link to this resource. Can be referenced by other resources.
statuses Sequence[OrgStatus]
Status of the org.
cplnId String
The ID, in GUID format, of the org.
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the org.
selfLink String
Full link to this resource. Can be referenced by other resources.
statuses List<Property Map>
Status of the org.

Look up Existing Org Resource

Get an existing Org 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?: OrgState, opts?: CustomResourceOptions): Org
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        account_id: Optional[str] = None,
        auth_config: Optional[OrgAuthConfigArgs] = None,
        cpln_id: Optional[str] = None,
        description: Optional[str] = None,
        invitees: Optional[Sequence[str]] = None,
        name: Optional[str] = None,
        observability: Optional[OrgObservabilityArgs] = None,
        security: Optional[OrgSecurityArgs] = None,
        self_link: Optional[str] = None,
        session_timeout_seconds: Optional[int] = None,
        statuses: Optional[Sequence[OrgStatusArgs]] = None,
        tags: Optional[Mapping[str, str]] = None) -> Org
func GetOrg(ctx *Context, name string, id IDInput, state *OrgState, opts ...ResourceOption) (*Org, error)
public static Org Get(string name, Input<string> id, OrgState? state, CustomResourceOptions? opts = null)
public static Org get(String name, Output<String> id, OrgState state, CustomResourceOptions options)
resources:  _:    type: cpln:Org    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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
The associated account ID that will be used when creating the org. Only used on org creation. The account ID can be obtained from the Org Management & Billing page.
AuthConfig Pulumiverse.Cpln.Inputs.OrgAuthConfig
The configuration settings and parameters related to authentication within the org.
CplnId string
The ID, in GUID format, of the org.
Description string
The description of org.
Invitees List<string>
When an org is created, the list of email addresses which will receive an invitation to join the org and be assigned to the superusers group. The user account used when creating the org will be included in this list.
Name string
The name of the org.
Observability Pulumiverse.Cpln.Inputs.OrgObservability
The retention period (in days) for logs, metrics, and traces. Charges apply for storage beyond the 30 day default.
Security Pulumiverse.Cpln.Inputs.OrgSecurity
SelfLink string
Full link to this resource. Can be referenced by other resources.
SessionTimeoutSeconds int
The idle time (in seconds) in which the console UI will automatically sign-out the user. Default: 900 (15 minutes)
Statuses List<Pulumiverse.Cpln.Inputs.OrgStatus>
Status of the org.
Tags Dictionary<string, string>
Key-value map of the org's tags.
AccountId string
The associated account ID that will be used when creating the org. Only used on org creation. The account ID can be obtained from the Org Management & Billing page.
AuthConfig OrgAuthConfigArgs
The configuration settings and parameters related to authentication within the org.
CplnId string
The ID, in GUID format, of the org.
Description string
The description of org.
Invitees []string
When an org is created, the list of email addresses which will receive an invitation to join the org and be assigned to the superusers group. The user account used when creating the org will be included in this list.
Name string
The name of the org.
Observability OrgObservabilityArgs
The retention period (in days) for logs, metrics, and traces. Charges apply for storage beyond the 30 day default.
Security OrgSecurityArgs
SelfLink string
Full link to this resource. Can be referenced by other resources.
SessionTimeoutSeconds int
The idle time (in seconds) in which the console UI will automatically sign-out the user. Default: 900 (15 minutes)
Statuses []OrgStatusArgs
Status of the org.
Tags map[string]string
Key-value map of the org's tags.
accountId String
The associated account ID that will be used when creating the org. Only used on org creation. The account ID can be obtained from the Org Management & Billing page.
authConfig OrgAuthConfig
The configuration settings and parameters related to authentication within the org.
cplnId String
The ID, in GUID format, of the org.
description String
The description of org.
invitees List<String>
When an org is created, the list of email addresses which will receive an invitation to join the org and be assigned to the superusers group. The user account used when creating the org will be included in this list.
name String
The name of the org.
observability OrgObservability
The retention period (in days) for logs, metrics, and traces. Charges apply for storage beyond the 30 day default.
security OrgSecurity
selfLink String
Full link to this resource. Can be referenced by other resources.
sessionTimeoutSeconds Integer
The idle time (in seconds) in which the console UI will automatically sign-out the user. Default: 900 (15 minutes)
statuses List<OrgStatus>
Status of the org.
tags Map<String,String>
Key-value map of the org's tags.
accountId string
The associated account ID that will be used when creating the org. Only used on org creation. The account ID can be obtained from the Org Management & Billing page.
authConfig OrgAuthConfig
The configuration settings and parameters related to authentication within the org.
cplnId string
The ID, in GUID format, of the org.
description string
The description of org.
invitees string[]
When an org is created, the list of email addresses which will receive an invitation to join the org and be assigned to the superusers group. The user account used when creating the org will be included in this list.
name string
The name of the org.
observability OrgObservability
The retention period (in days) for logs, metrics, and traces. Charges apply for storage beyond the 30 day default.
security OrgSecurity
selfLink string
Full link to this resource. Can be referenced by other resources.
sessionTimeoutSeconds number
The idle time (in seconds) in which the console UI will automatically sign-out the user. Default: 900 (15 minutes)
statuses OrgStatus[]
Status of the org.
tags {[key: string]: string}
Key-value map of the org's tags.
account_id str
The associated account ID that will be used when creating the org. Only used on org creation. The account ID can be obtained from the Org Management & Billing page.
auth_config OrgAuthConfigArgs
The configuration settings and parameters related to authentication within the org.
cpln_id str
The ID, in GUID format, of the org.
description str
The description of org.
invitees Sequence[str]
When an org is created, the list of email addresses which will receive an invitation to join the org and be assigned to the superusers group. The user account used when creating the org will be included in this list.
name str
The name of the org.
observability OrgObservabilityArgs
The retention period (in days) for logs, metrics, and traces. Charges apply for storage beyond the 30 day default.
security OrgSecurityArgs
self_link str
Full link to this resource. Can be referenced by other resources.
session_timeout_seconds int
The idle time (in seconds) in which the console UI will automatically sign-out the user. Default: 900 (15 minutes)
statuses Sequence[OrgStatusArgs]
Status of the org.
tags Mapping[str, str]
Key-value map of the org's tags.
accountId String
The associated account ID that will be used when creating the org. Only used on org creation. The account ID can be obtained from the Org Management & Billing page.
authConfig Property Map
The configuration settings and parameters related to authentication within the org.
cplnId String
The ID, in GUID format, of the org.
description String
The description of org.
invitees List<String>
When an org is created, the list of email addresses which will receive an invitation to join the org and be assigned to the superusers group. The user account used when creating the org will be included in this list.
name String
The name of the org.
observability Property Map
The retention period (in days) for logs, metrics, and traces. Charges apply for storage beyond the 30 day default.
security Property Map
selfLink String
Full link to this resource. Can be referenced by other resources.
sessionTimeoutSeconds Number
The idle time (in seconds) in which the console UI will automatically sign-out the user. Default: 900 (15 minutes)
statuses List<Property Map>
Status of the org.
tags Map<String>
Key-value map of the org's tags.

Supporting Types

OrgAuthConfig
, OrgAuthConfigArgs

DomainAutoMembers This property is required. List<string>
List of domains which will auto-provision users when authenticating using SAML.
SamlOnly bool
Enforce SAML only authentication.
DomainAutoMembers This property is required. []string
List of domains which will auto-provision users when authenticating using SAML.
SamlOnly bool
Enforce SAML only authentication.
domainAutoMembers This property is required. List<String>
List of domains which will auto-provision users when authenticating using SAML.
samlOnly Boolean
Enforce SAML only authentication.
domainAutoMembers This property is required. string[]
List of domains which will auto-provision users when authenticating using SAML.
samlOnly boolean
Enforce SAML only authentication.
domain_auto_members This property is required. Sequence[str]
List of domains which will auto-provision users when authenticating using SAML.
saml_only bool
Enforce SAML only authentication.
domainAutoMembers This property is required. List<String>
List of domains which will auto-provision users when authenticating using SAML.
samlOnly Boolean
Enforce SAML only authentication.

OrgObservability
, OrgObservabilityArgs

LogsRetentionDays int
Log retention days. Default: 30
MetricsRetentionDays int
Metrics retention days. Default: 30
TracesRetentionDays int
Traces retention days. Default: 30
LogsRetentionDays int
Log retention days. Default: 30
MetricsRetentionDays int
Metrics retention days. Default: 30
TracesRetentionDays int
Traces retention days. Default: 30
logsRetentionDays Integer
Log retention days. Default: 30
metricsRetentionDays Integer
Metrics retention days. Default: 30
tracesRetentionDays Integer
Traces retention days. Default: 30
logsRetentionDays number
Log retention days. Default: 30
metricsRetentionDays number
Metrics retention days. Default: 30
tracesRetentionDays number
Traces retention days. Default: 30
logs_retention_days int
Log retention days. Default: 30
metrics_retention_days int
Metrics retention days. Default: 30
traces_retention_days int
Traces retention days. Default: 30
logsRetentionDays Number
Log retention days. Default: 30
metricsRetentionDays Number
Metrics retention days. Default: 30
tracesRetentionDays Number
Traces retention days. Default: 30

OrgSecurity
, OrgSecurityArgs

OrgSecurityThreatDetection
, OrgSecurityThreatDetectionArgs

Enabled This property is required. bool
Indicates whether threat detection should be forwarded or not.
MinimumSeverity string
Any threats with this severity and more severe will be sent. Others will be ignored. Valid values: warning, error, or critical.
Syslog Pulumiverse.Cpln.Inputs.OrgSecurityThreatDetectionSyslog
Configuration for syslog forwarding.
Enabled This property is required. bool
Indicates whether threat detection should be forwarded or not.
MinimumSeverity string
Any threats with this severity and more severe will be sent. Others will be ignored. Valid values: warning, error, or critical.
Syslog OrgSecurityThreatDetectionSyslog
Configuration for syslog forwarding.
enabled This property is required. Boolean
Indicates whether threat detection should be forwarded or not.
minimumSeverity String
Any threats with this severity and more severe will be sent. Others will be ignored. Valid values: warning, error, or critical.
syslog OrgSecurityThreatDetectionSyslog
Configuration for syslog forwarding.
enabled This property is required. boolean
Indicates whether threat detection should be forwarded or not.
minimumSeverity string
Any threats with this severity and more severe will be sent. Others will be ignored. Valid values: warning, error, or critical.
syslog OrgSecurityThreatDetectionSyslog
Configuration for syslog forwarding.
enabled This property is required. bool
Indicates whether threat detection should be forwarded or not.
minimum_severity str
Any threats with this severity and more severe will be sent. Others will be ignored. Valid values: warning, error, or critical.
syslog OrgSecurityThreatDetectionSyslog
Configuration for syslog forwarding.
enabled This property is required. Boolean
Indicates whether threat detection should be forwarded or not.
minimumSeverity String
Any threats with this severity and more severe will be sent. Others will be ignored. Valid values: warning, error, or critical.
syslog Property Map
Configuration for syslog forwarding.

OrgSecurityThreatDetectionSyslog
, OrgSecurityThreatDetectionSyslogArgs

Host This property is required. string
The hostname to send syslog messages to.
Port This property is required. int
The port to send syslog messages to.
Transport string
The transport-layer protocol to send the syslog messages over. If TCP is chosen, messages will be sent with TLS. Default: tcp.
Host This property is required. string
The hostname to send syslog messages to.
Port This property is required. int
The port to send syslog messages to.
Transport string
The transport-layer protocol to send the syslog messages over. If TCP is chosen, messages will be sent with TLS. Default: tcp.
host This property is required. String
The hostname to send syslog messages to.
port This property is required. Integer
The port to send syslog messages to.
transport String
The transport-layer protocol to send the syslog messages over. If TCP is chosen, messages will be sent with TLS. Default: tcp.
host This property is required. string
The hostname to send syslog messages to.
port This property is required. number
The port to send syslog messages to.
transport string
The transport-layer protocol to send the syslog messages over. If TCP is chosen, messages will be sent with TLS. Default: tcp.
host This property is required. str
The hostname to send syslog messages to.
port This property is required. int
The port to send syslog messages to.
transport str
The transport-layer protocol to send the syslog messages over. If TCP is chosen, messages will be sent with TLS. Default: tcp.
host This property is required. String
The hostname to send syslog messages to.
port This property is required. Number
The port to send syslog messages to.
transport String
The transport-layer protocol to send the syslog messages over. If TCP is chosen, messages will be sent with TLS. Default: tcp.

OrgStatus
, OrgStatusArgs

AccountLink string
The link of the account the org belongs to.
Active bool
Indicates whether the org is active or not.
AccountLink string
The link of the account the org belongs to.
Active bool
Indicates whether the org is active or not.
accountLink String
The link of the account the org belongs to.
active Boolean
Indicates whether the org is active or not.
accountLink string
The link of the account the org belongs to.
active boolean
Indicates whether the org is active or not.
account_link str
The link of the account the org belongs to.
active bool
Indicates whether the org is active or not.
accountLink String
The link of the account the org belongs to.
active Boolean
Indicates whether the org is active or not.

Package Details

Repository
cpln pulumiverse/pulumi-cpln
License
Apache-2.0
Notes
This Pulumi package is based on the cpln Terraform Provider.