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)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()
{
    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" },
    },
});
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"),
	},
})
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());
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",
    })
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",
    },
});
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
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
Pulumiverse.Cpln. Inputs. Org Observability 
- 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 & Billingpage.
- AuthConfig Pulumiverse.Cpln. Inputs. Org Auth Config 
- 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 superusersgroup. The user account used when creating the org will be included in this list.
- Security
Pulumiverse.Cpln. Inputs. Org Security 
- SessionTimeout 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 the org's tags.
- Observability
OrgObservability Args 
- 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 & Billingpage.
- AuthConfig OrgAuth Config Args 
- 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 superusersgroup. The user account used when creating the org will be included in this list.
- Security
OrgSecurity Args 
- SessionTimeout 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 the org's tags.
- observability
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 & Billingpage.
- authConfig OrgAuth Config 
- 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 superusersgroup. The user account used when creating the org will be included in this list.
- security
OrgSecurity 
- sessionTimeout 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 the org's tags.
- observability
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 & Billingpage.
- authConfig OrgAuth Config 
- 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 superusersgroup. The user account used when creating the org will be included in this list.
- security
OrgSecurity 
- sessionTimeout 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 the org's tags.
- observability
OrgObservability Args 
- 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 & Billingpage.
- auth_config OrgAuth Config Args 
- 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 superusersgroup. The user account used when creating the org will be included in this list.
- security
OrgSecurity 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 the org's tags.
- observability 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 & Billingpage.
- 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 superusersgroup. The user account used when creating the org will be included in this list.
- security Property Map
- sessionTimeout 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 the org's tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the Org resource produces the following output properties:
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) -> Orgfunc 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.
- 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 & Billingpage.
- AuthConfig Pulumiverse.Cpln. Inputs. Org Auth Config 
- 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 superusersgroup. 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. 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 
- SelfLink string
- Full link to this resource. Can be referenced by other resources.
- SessionTimeout 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 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 & Billingpage.
- AuthConfig OrgAuth Config Args 
- 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 superusersgroup. The user account used when creating the org will be included in this list.
- Name string
- The name of the org.
- Observability
OrgObservability Args 
- The retention period (in days) for logs, metrics, and traces. Charges apply for storage beyond the 30 day default.
- Security
OrgSecurity Args 
- SelfLink string
- Full link to this resource. Can be referenced by other resources.
- SessionTimeout intSeconds 
- The idle time (in seconds) in which the console UI will automatically sign-out the user. Default: 900 (15 minutes)
- Statuses
[]OrgStatus Args 
- Status of the org.
- 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 & Billingpage.
- authConfig OrgAuth Config 
- 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 superusersgroup. 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.
- sessionTimeout IntegerSeconds 
- 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.
- 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 & Billingpage.
- authConfig OrgAuth Config 
- 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 superusersgroup. 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.
- sessionTimeout numberSeconds 
- 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.
- {[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 & Billingpage.
- 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 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 superusersgroup. The user account used when creating the org will be included in this list.
- name str
- The name of the org.
- observability
OrgObservability Args 
- The retention period (in days) for logs, metrics, and traces. Charges apply for storage beyond the 30 day default.
- security
OrgSecurity 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[OrgStatus Args] 
- Status of the org.
- 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 & Billingpage.
- 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 superusersgroup. 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.
- sessionTimeout 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 the org's tags.
Supporting Types
OrgAuthConfig, OrgAuthConfigArgs      
- DomainAuto List<string>Members 
- List of domains which will auto-provision users when authenticating using SAML.
- SamlOnly bool
- Enforce SAML only authentication.
- DomainAuto []stringMembers 
- List of domains which will auto-provision users when authenticating using SAML.
- SamlOnly bool
- Enforce SAML only authentication.
- domainAuto List<String>Members 
- List of domains which will auto-provision users when authenticating using SAML.
- samlOnly Boolean
- Enforce SAML only authentication.
- domainAuto string[]Members 
- List of domains which will auto-provision users when authenticating using SAML.
- samlOnly 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.
- domainAuto List<String>Members 
- List of domains which will auto-provision users when authenticating using SAML.
- samlOnly Boolean
- Enforce SAML only authentication.
OrgObservability, OrgObservabilityArgs    
- LogsRetention intDays 
- Log retention days. Default: 30
- MetricsRetention intDays 
- Metrics retention days. Default: 30
- TracesRetention intDays 
- Traces retention days. Default: 30
- LogsRetention intDays 
- Log retention days. Default: 30
- MetricsRetention intDays 
- Metrics retention days. Default: 30
- TracesRetention intDays 
- Traces retention days. Default: 30
- logsRetention IntegerDays 
- Log retention days. Default: 30
- metricsRetention IntegerDays 
- Metrics retention days. Default: 30
- tracesRetention IntegerDays 
- Traces retention days. Default: 30
- logsRetention numberDays 
- Log retention days. Default: 30
- metricsRetention numberDays 
- Metrics retention days. Default: 30
- tracesRetention numberDays 
- Traces retention days. Default: 30
- logs_retention_ intdays 
- Log retention days. Default: 30
- metrics_retention_ intdays 
- Metrics retention days. Default: 30
- traces_retention_ intdays 
- Traces retention days. Default: 30
- logsRetention NumberDays 
- Log retention days. Default: 30
- metricsRetention NumberDays 
- Metrics retention days. Default: 30
- tracesRetention NumberDays 
- Traces retention days. Default: 30
OrgSecurity, OrgSecurityArgs    
OrgSecurityThreatDetection, OrgSecurityThreatDetectionArgs        
- Enabled 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, 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.
- MinimumSeverity string
- Any threats with this severity and more severe will be sent. Others will be ignored. Valid values: warning,error, orcritical.
- Syslog
OrgSecurity Threat Detection Syslog 
- Configuration for syslog forwarding.
- enabled 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, orcritical.
- syslog
OrgSecurity Threat Detection Syslog 
- Configuration for syslog forwarding.
- enabled 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, orcritical.
- syslog
OrgSecurity 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
OrgSecurity Threat Detection Syslog 
- Configuration for syslog forwarding.
- enabled 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, orcritical.
- syslog Property Map
- Configuration for syslog forwarding.
OrgSecurityThreatDetectionSyslog, OrgSecurityThreatDetectionSyslogArgs          
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 cplnTerraform Provider.
