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: Optional[OrgArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def Org(resource_name: str,
opts: Optional[ResourceOptions] = None,
account_id: Optional[str] = None,
auth_config: Optional[OrgAuthConfigArgs] = None,
description: Optional[str] = None,
invitees: Optional[Sequence[str]] = None,
observability: Optional[OrgObservabilityArgs] = 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 = null, CustomResourceOptions? opts = null)
type: cpln:Org
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 OrgArgs
- 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 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 string
- The unique name of the resource.
- args OrgArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args OrgArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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()
{
AccountId = "string",
AuthConfig = new Cpln.Inputs.OrgAuthConfigArgs
{
DomainAutoMembers = new[]
{
"string",
},
SamlOnly = false,
},
Description = "string",
Invitees = new[]
{
"string",
},
Observability = new Cpln.Inputs.OrgObservabilityArgs
{
DefaultAlertEmails = new[]
{
"string",
},
LogsRetentionDays = 0,
MetricsRetentionDays = 0,
TracesRetentionDays = 0,
},
Security = new Cpln.Inputs.OrgSecurityArgs
{
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" },
},
});
example, err := cpln.NewOrg(ctx, "orgResource", &cpln.OrgArgs{
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"),
},
Observability: &cpln.OrgObservabilityArgs{
DefaultAlertEmails: pulumi.StringArray{
pulumi.String("string"),
},
LogsRetentionDays: pulumi.Int(0),
MetricsRetentionDays: pulumi.Int(0),
TracesRetentionDays: pulumi.Int(0),
},
Security: &cpln.OrgSecurityArgs{
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"),
},
})
var orgResource = new Org("orgResource", OrgArgs.builder()
.accountId("string")
.authConfig(OrgAuthConfigArgs.builder()
.domainAutoMembers("string")
.samlOnly(false)
.build())
.description("string")
.invitees("string")
.observability(OrgObservabilityArgs.builder()
.defaultAlertEmails("string")
.logsRetentionDays(0)
.metricsRetentionDays(0)
.tracesRetentionDays(0)
.build())
.security(OrgSecurityArgs.builder()
.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());
org_resource = cpln.Org("orgResource",
account_id="string",
auth_config={
"domain_auto_members": ["string"],
"saml_only": False,
},
description="string",
invitees=["string"],
observability={
"default_alert_emails": ["string"],
"logs_retention_days": 0,
"metrics_retention_days": 0,
"traces_retention_days": 0,
},
security={
"threat_detection": {
"enabled": False,
"minimum_severity": "string",
"syslog": {
"host": "string",
"port": 0,
"transport": "string",
},
},
},
session_timeout_seconds=0,
tags={
"string": "string",
})
const orgResource = new cpln.Org("orgResource", {
accountId: "string",
authConfig: {
domainAutoMembers: ["string"],
samlOnly: false,
},
description: "string",
invitees: ["string"],
observability: {
defaultAlertEmails: ["string"],
logsRetentionDays: 0,
metricsRetentionDays: 0,
tracesRetentionDays: 0,
},
security: {
threatDetection: {
enabled: false,
minimumSeverity: "string",
syslog: {
host: "string",
port: 0,
transport: "string",
},
},
},
sessionTimeoutSeconds: 0,
tags: {
string: "string",
},
});
type: cpln:Org
properties:
accountId: string
authConfig:
domainAutoMembers:
- string
samlOnly: false
description: string
invitees:
- string
observability:
defaultAlertEmails:
- string
logsRetentionDays: 0
metricsRetentionDays: 0
tracesRetentionDays: 0
security:
threatDetection:
enabled: false
minimumSeverity: string
syslog:
host: string
port: 0
transport: string
sessionTimeoutSeconds: 0
tags:
string: string
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:
- Account
Id 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. - Auth
Config Pulumiverse.Cpln. Inputs. Org Auth Config - The configuration settings and parameters related to authentication within the org.
- Description string
- Description of the Organization.
- 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. - Observability
Pulumiverse.
Cpln. Inputs. Org Observability - The retention period (in days) for logs, metrics, and traces. Charges apply for storage beyond the 30 day default.
- Security
Pulumiverse.
Cpln. Inputs. Org Security - Session
Timeout intSeconds - The idle time (in seconds) in which the console UI will automatically sign-out the user. Default: 900 (15 minutes)
- Dictionary<string, string>
- Key-value map of resource tags.
- Account
Id 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. - Auth
Config OrgAuth Config Args - The configuration settings and parameters related to authentication within the org.
- Description string
- Description of the Organization.
- 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. - Observability
Org
Observability Args - The retention period (in days) for logs, metrics, and traces. Charges apply for storage beyond the 30 day default.
- Security
Org
Security Args - Session
Timeout intSeconds - The idle time (in seconds) in which the console UI will automatically sign-out the user. Default: 900 (15 minutes)
- map[string]string
- Key-value map of resource tags.
- account
Id 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. - auth
Config OrgAuth Config - The configuration settings and parameters related to authentication within the org.
- description String
- Description of the Organization.
- 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. - observability
Org
Observability - The retention period (in days) for logs, metrics, and traces. Charges apply for storage beyond the 30 day default.
- security
Org
Security - session
Timeout IntegerSeconds - The idle time (in seconds) in which the console UI will automatically sign-out the user. Default: 900 (15 minutes)
- Map<String,String>
- Key-value map of resource tags.
- account
Id 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. - auth
Config OrgAuth Config - The configuration settings and parameters related to authentication within the org.
- description string
- Description of the Organization.
- 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. - observability
Org
Observability - The retention period (in days) for logs, metrics, and traces. Charges apply for storage beyond the 30 day default.
- security
Org
Security - session
Timeout numberSeconds - The idle time (in seconds) in which the console UI will automatically sign-out the user. Default: 900 (15 minutes)
- {[key: string]: string}
- Key-value map of resource 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 OrgAuth Config Args - The configuration settings and parameters related to authentication within the org.
- description str
- Description of the Organization.
- 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. - observability
Org
Observability Args - The retention period (in days) for logs, metrics, and traces. Charges apply for storage beyond the 30 day default.
- security
Org
Security Args - session_
timeout_ intseconds - The idle time (in seconds) in which the console UI will automatically sign-out the user. Default: 900 (15 minutes)
- Mapping[str, str]
- Key-value map of resource tags.
- account
Id 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. - auth
Config Property Map - The configuration settings and parameters related to authentication within the org.
- description String
- Description of the Organization.
- 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. - 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
- session
Timeout NumberSeconds - The idle time (in seconds) in which the console UI will automatically sign-out the user. Default: 900 (15 minutes)
- Map<String>
- Key-value map of resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the Org resource produces the following output properties:
- Cpln
Id string - The ID, in GUID format, of the Organization.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Name of the Organization.
- Self
Link string - Full link to this resource. Can be referenced by other resources.
- Statuses
List<Pulumiverse.
Cpln. Outputs. Org Status> - 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
- 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.
- Account
Id 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. - Auth
Config Pulumiverse.Cpln. Inputs. Org Auth Config - The configuration settings and parameters related to authentication within the org.
- Cpln
Id string - The ID, in GUID format, of the Organization.
- Description string
- Description of the Organization.
- 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
- Name of the Organization.
- Observability
Pulumiverse.
Cpln. Inputs. Org Observability - The retention period (in days) for logs, metrics, and traces. Charges apply for storage beyond the 30 day default.
- Security
Pulumiverse.
Cpln. Inputs. Org Security - Self
Link string - Full link to this resource. Can be referenced by other resources.
- Session
Timeout intSeconds - 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. Org Status> - Status of the org.
- Dictionary<string, string>
- Key-value map of resource tags.
- Account
Id 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. - Auth
Config OrgAuth Config Args - The configuration settings and parameters related to authentication within the org.
- Cpln
Id string - The ID, in GUID format, of the Organization.
- Description string
- Description of the Organization.
- 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
- Name of the Organization.
- Observability
Org
Observability Args - The retention period (in days) for logs, metrics, and traces. Charges apply for storage beyond the 30 day default.
- Security
Org
Security Args - Self
Link string - Full link to this resource. Can be referenced by other resources.
- Session
Timeout intSeconds - The idle time (in seconds) in which the console UI will automatically sign-out the user. Default: 900 (15 minutes)
- Statuses
[]Org
Status Args - Status of the org.
- map[string]string
- Key-value map of resource tags.
- account
Id 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. - auth
Config OrgAuth Config - The configuration settings and parameters related to authentication within the org.
- cpln
Id String - The ID, in GUID format, of the Organization.
- description String
- Description of the Organization.
- 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
- Name of the Organization.
- observability
Org
Observability - The retention period (in days) for logs, metrics, and traces. Charges apply for storage beyond the 30 day default.
- security
Org
Security - self
Link String - Full link to this resource. Can be referenced by other resources.
- session
Timeout IntegerSeconds - The idle time (in seconds) in which the console UI will automatically sign-out the user. Default: 900 (15 minutes)
- statuses
List<Org
Status> - Status of the org.
- Map<String,String>
- Key-value map of resource tags.
- account
Id 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. - auth
Config OrgAuth Config - The configuration settings and parameters related to authentication within the org.
- cpln
Id string - The ID, in GUID format, of the Organization.
- description string
- Description of the Organization.
- 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
- Name of the Organization.
- observability
Org
Observability - The retention period (in days) for logs, metrics, and traces. Charges apply for storage beyond the 30 day default.
- security
Org
Security - self
Link string - Full link to this resource. Can be referenced by other resources.
- session
Timeout numberSeconds - The idle time (in seconds) in which the console UI will automatically sign-out the user. Default: 900 (15 minutes)
- statuses
Org
Status[] - Status of the org.
- {[key: string]: string}
- Key-value map of resource 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 OrgAuth Config Args - The configuration settings and parameters related to authentication within the org.
- cpln_
id str - The ID, in GUID format, of the Organization.
- description str
- Description of the Organization.
- 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
- Name of the Organization.
- observability
Org
Observability Args - The retention period (in days) for logs, metrics, and traces. Charges apply for storage beyond the 30 day default.
- security
Org
Security Args - self_
link str - Full link to this resource. Can be referenced by other resources.
- session_
timeout_ intseconds - The idle time (in seconds) in which the console UI will automatically sign-out the user. Default: 900 (15 minutes)
- statuses
Sequence[Org
Status Args] - Status of the org.
- Mapping[str, str]
- Key-value map of resource tags.
- account
Id 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. - auth
Config Property Map - The configuration settings and parameters related to authentication within the org.
- cpln
Id String - The ID, in GUID format, of the Organization.
- description String
- Description of the Organization.
- 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
- Name of the Organization.
- 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
- self
Link String - Full link to this resource. Can be referenced by other resources.
- session
Timeout NumberSeconds - 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.
- Map<String>
- Key-value map of resource tags.
Supporting Types
OrgAuthConfig, OrgAuthConfigArgs
- Domain
Auto List<string>Members - List of domains which will auto-provision users when authenticating using SAML.
- Saml
Only bool - Enforce SAML only authentication.
- Domain
Auto []stringMembers - List of domains which will auto-provision users when authenticating using SAML.
- Saml
Only bool - Enforce SAML only authentication.
- domain
Auto List<String>Members - List of domains which will auto-provision users when authenticating using SAML.
- saml
Only Boolean - Enforce SAML only authentication.
- domain
Auto string[]Members - List of domains which will auto-provision users when authenticating using SAML.
- saml
Only boolean - Enforce SAML only authentication.
- domain_
auto_ Sequence[str]members - List of domains which will auto-provision users when authenticating using SAML.
- saml_
only bool - Enforce SAML only authentication.
- domain
Auto List<String>Members - List of domains which will auto-provision users when authenticating using SAML.
- saml
Only Boolean - Enforce SAML only authentication.
OrgObservability, OrgObservabilityArgs
- Default
Alert List<string>Emails - These emails are configured as alert recipients in Grafana when the 'grafana-default-email' contact delivery type is 'Email'.
- Logs
Retention intDays - Log retention days. Default: 30
- Metrics
Retention intDays - Metrics retention days. Default: 30
- Traces
Retention intDays - Traces retention days. Default: 30
- Default
Alert []stringEmails - These emails are configured as alert recipients in Grafana when the 'grafana-default-email' contact delivery type is 'Email'.
- Logs
Retention intDays - Log retention days. Default: 30
- Metrics
Retention intDays - Metrics retention days. Default: 30
- Traces
Retention intDays - Traces retention days. Default: 30
- default
Alert List<String>Emails - These emails are configured as alert recipients in Grafana when the 'grafana-default-email' contact delivery type is 'Email'.
- logs
Retention IntegerDays - Log retention days. Default: 30
- metrics
Retention IntegerDays - Metrics retention days. Default: 30
- traces
Retention IntegerDays - Traces retention days. Default: 30
- default
Alert string[]Emails - These emails are configured as alert recipients in Grafana when the 'grafana-default-email' contact delivery type is 'Email'.
- logs
Retention numberDays - Log retention days. Default: 30
- metrics
Retention numberDays - Metrics retention days. Default: 30
- traces
Retention numberDays - Traces retention days. Default: 30
- default_
alert_ Sequence[str]emails - These emails are configured as alert recipients in Grafana when the 'grafana-default-email' contact delivery type is 'Email'.
- logs_
retention_ intdays - Log retention days. Default: 30
- metrics_
retention_ intdays - Metrics retention days. Default: 30
- traces_
retention_ intdays - Traces retention days. Default: 30
- default
Alert List<String>Emails - These emails are configured as alert recipients in Grafana when the 'grafana-default-email' contact delivery type is 'Email'.
- logs
Retention NumberDays - Log retention days. Default: 30
- metrics
Retention NumberDays - Metrics retention days. Default: 30
- traces
Retention NumberDays - Traces retention days. Default: 30
OrgSecurity, OrgSecurityArgs
OrgSecurityThreatDetection, OrgSecurityThreatDetectionArgs
- Enabled bool
- Indicates whether threat detection should be forwarded or not.
- Minimum
Severity string - Any threats with this severity and more severe will be sent. Others will be ignored. Valid values:
warning
,error
, orcritical
. - Syslog
Pulumiverse.
Cpln. Inputs. Org Security Threat Detection Syslog - Configuration for syslog forwarding.
- Enabled bool
- Indicates whether threat detection should be forwarded or not.
- Minimum
Severity string - Any threats with this severity and more severe will be sent. Others will be ignored. Valid values:
warning
,error
, orcritical
. - Syslog
Org
Security Threat Detection Syslog - Configuration for syslog forwarding.
- enabled Boolean
- Indicates whether threat detection should be forwarded or not.
- minimum
Severity String - Any threats with this severity and more severe will be sent. Others will be ignored. Valid values:
warning
,error
, orcritical
. - syslog
Org
Security Threat Detection Syslog - Configuration for syslog forwarding.
- enabled boolean
- Indicates whether threat detection should be forwarded or not.
- minimum
Severity string - Any threats with this severity and more severe will be sent. Others will be ignored. Valid values:
warning
,error
, orcritical
. - syslog
Org
Security Threat Detection Syslog - Configuration for syslog forwarding.
- enabled 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
, orcritical
. - syslog
Org
Security Threat Detection Syslog - Configuration for syslog forwarding.
- enabled Boolean
- Indicates whether threat detection should be forwarded or not.
- minimum
Severity String - Any threats with this severity and more severe will be sent. Others will be ignored. Valid values:
warning
,error
, orcritical
. - syslog Property Map
- Configuration for syslog forwarding.
OrgSecurityThreatDetectionSyslog, OrgSecurityThreatDetectionSyslogArgs
OrgStatus, OrgStatusArgs
- Account
Link string - The link of the account the org belongs to.
- Active bool
- Indicates whether the org is active or not.
- Account
Link string - The link of the account the org belongs to.
- Active bool
- Indicates whether the org is active or not.
- account
Link String - The link of the account the org belongs to.
- active Boolean
- Indicates whether the org is active or not.
- account
Link 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.
- account
Link 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.