incapsula.Account
Explore with Pulumi AI
Provides a Incapsula Account resource.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as incapsula from "@pulumi/incapsula";
const example_account = new incapsula.Account("example-account", {
accountName: "Example Account",
consentRequired: true,
dataStorageRegion: "US",
email: "example@example.com",
errorPageTemplate: "RlP5QhsBHAECGUVDFxYZVCQFBwkDBggLBA0MFB0cGhsYFTgCIgUgJx3EG8LuM6ZpqwR8ScEztVwTqbxuB8...",
logLevel: "full",
logsAccountId: 456,
parentId: 123,
planId: "ent100",
refId: "123",
userName: "John Doe",
});
import pulumi
import pulumi_incapsula as incapsula
example_account = incapsula.Account("example-account",
account_name="Example Account",
consent_required=True,
data_storage_region="US",
email="example@example.com",
error_page_template="RlP5QhsBHAECGUVDFxYZVCQFBwkDBggLBA0MFB0cGhsYFTgCIgUgJx3EG8LuM6ZpqwR8ScEztVwTqbxuB8...",
log_level="full",
logs_account_id=456,
parent_id=123,
plan_id="ent100",
ref_id="123",
user_name="John Doe")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/incapsula/v3/incapsula"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := incapsula.NewAccount(ctx, "example-account", &incapsula.AccountArgs{
AccountName: pulumi.String("Example Account"),
ConsentRequired: pulumi.Bool(true),
DataStorageRegion: pulumi.String("US"),
Email: pulumi.String("example@example.com"),
ErrorPageTemplate: pulumi.String("RlP5QhsBHAECGUVDFxYZVCQFBwkDBggLBA0MFB0cGhsYFTgCIgUgJx3EG8LuM6ZpqwR8ScEztVwTqbxuB8..."),
LogLevel: pulumi.String("full"),
LogsAccountId: pulumi.Float64(456),
ParentId: pulumi.Float64(123),
PlanId: pulumi.String("ent100"),
RefId: pulumi.String("123"),
UserName: pulumi.String("John Doe"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Incapsula = Pulumi.Incapsula;
return await Deployment.RunAsync(() =>
{
var example_account = new Incapsula.Account("example-account", new()
{
AccountName = "Example Account",
ConsentRequired = true,
DataStorageRegion = "US",
Email = "example@example.com",
ErrorPageTemplate = "RlP5QhsBHAECGUVDFxYZVCQFBwkDBggLBA0MFB0cGhsYFTgCIgUgJx3EG8LuM6ZpqwR8ScEztVwTqbxuB8...",
LogLevel = "full",
LogsAccountId = 456,
ParentId = 123,
PlanId = "ent100",
RefId = "123",
UserName = "John Doe",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.incapsula.Account;
import com.pulumi.incapsula.AccountArgs;
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 example_account = new Account("example-account", AccountArgs.builder()
.accountName("Example Account")
.consentRequired(true)
.dataStorageRegion("US")
.email("example@example.com")
.errorPageTemplate("RlP5QhsBHAECGUVDFxYZVCQFBwkDBggLBA0MFB0cGhsYFTgCIgUgJx3EG8LuM6ZpqwR8ScEztVwTqbxuB8...")
.logLevel("full")
.logsAccountId("456")
.parentId(123)
.planId("ent100")
.refId("123")
.userName("John Doe")
.build());
}
}
resources:
example-account:
type: incapsula:Account
properties:
accountName: Example Account
consentRequired: true
dataStorageRegion: US
email: example@example.com
# Base64 Encoded HTML
errorPageTemplate: RlP5QhsBHAECGUVDFxYZVCQFBwkDBggLBA0MFB0cGhsYFTgCIgUgJx3EG8LuM6ZpqwR8ScEztVwTqbxuB8...
logLevel: full
logsAccountId: '456'
parentId: 123
planId: ent100
refId: '123'
userName: John Doe
Create Account Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Account(name: string, args: AccountArgs, opts?: CustomResourceOptions);
@overload
def Account(resource_name: str,
args: AccountArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Account(resource_name: str,
opts: Optional[ResourceOptions] = None,
email: Optional[str] = None,
log_level: Optional[str] = None,
naked_domain_san_for_new_www_sites: Optional[str] = None,
data_storage_region: Optional[str] = None,
account_name: Optional[str] = None,
enable_http2_for_new_sites: Optional[str] = None,
enable_http2_to_origin_for_new_sites: Optional[str] = None,
consent_required: Optional[bool] = None,
error_page_template: Optional[str] = None,
logs_account_id: Optional[float] = None,
account_id: Optional[str] = None,
parent_id: Optional[float] = None,
plan_id: Optional[str] = None,
ref_id: Optional[str] = None,
support_all_tls_versions: Optional[str] = None,
user_name: Optional[str] = None,
wildcard_san_for_new_sites: Optional[str] = None)
func NewAccount(ctx *Context, name string, args AccountArgs, opts ...ResourceOption) (*Account, error)
public Account(string name, AccountArgs args, CustomResourceOptions? opts = null)
public Account(String name, AccountArgs args)
public Account(String name, AccountArgs args, CustomResourceOptions options)
type: incapsula:Account
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 AccountArgs
- 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 AccountArgs
- 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 AccountArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AccountArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AccountArgs
- 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 accountResource = new Incapsula.Account("accountResource", new()
{
Email = "string",
LogLevel = "string",
DataStorageRegion = "string",
AccountName = "string",
EnableHttp2ForNewSites = "string",
EnableHttp2ToOriginForNewSites = "string",
ConsentRequired = false,
ErrorPageTemplate = "string",
LogsAccountId = 0,
AccountId = "string",
ParentId = 0,
PlanId = "string",
RefId = "string",
UserName = "string",
});
example, err := incapsula.NewAccount(ctx, "accountResource", &incapsula.AccountArgs{
Email: pulumi.String("string"),
LogLevel: pulumi.String("string"),
DataStorageRegion: pulumi.String("string"),
AccountName: pulumi.String("string"),
EnableHttp2ForNewSites: pulumi.String("string"),
EnableHttp2ToOriginForNewSites: pulumi.String("string"),
ConsentRequired: pulumi.Bool(false),
ErrorPageTemplate: pulumi.String("string"),
LogsAccountId: pulumi.Float64(0),
AccountId: pulumi.String("string"),
ParentId: pulumi.Float64(0),
PlanId: pulumi.String("string"),
RefId: pulumi.String("string"),
UserName: pulumi.String("string"),
})
var accountResource = new Account("accountResource", AccountArgs.builder()
.email("string")
.logLevel("string")
.dataStorageRegion("string")
.accountName("string")
.enableHttp2ForNewSites("string")
.enableHttp2ToOriginForNewSites("string")
.consentRequired(false)
.errorPageTemplate("string")
.logsAccountId(0)
.accountId("string")
.parentId(0)
.planId("string")
.refId("string")
.userName("string")
.build());
account_resource = incapsula.Account("accountResource",
email="string",
log_level="string",
data_storage_region="string",
account_name="string",
enable_http2_for_new_sites="string",
enable_http2_to_origin_for_new_sites="string",
consent_required=False,
error_page_template="string",
logs_account_id=0,
account_id="string",
parent_id=0,
plan_id="string",
ref_id="string",
user_name="string")
const accountResource = new incapsula.Account("accountResource", {
email: "string",
logLevel: "string",
dataStorageRegion: "string",
accountName: "string",
enableHttp2ForNewSites: "string",
enableHttp2ToOriginForNewSites: "string",
consentRequired: false,
errorPageTemplate: "string",
logsAccountId: 0,
accountId: "string",
parentId: 0,
planId: "string",
refId: "string",
userName: "string",
});
type: incapsula:Account
properties:
accountId: string
accountName: string
consentRequired: false
dataStorageRegion: string
email: string
enableHttp2ForNewSites: string
enableHttp2ToOriginForNewSites: string
errorPageTemplate: string
logLevel: string
logsAccountId: 0
parentId: 0
planId: string
refId: string
userName: string
Account 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 Account resource accepts the following input properties:
- Email string
- Email address of the account admin. For example: joe@example.com.
- Account
Id string - Unique identifier in the API for the account.
- Account
Name string - Account name.
- Consent
Required bool - Blocks Imperva from performing sensitive operations on your behalf. You can then activate consent via the Cloud Security Console UI. Options are
true
,false
. - Data
Storage stringRegion - Default data region of the account for newly created sites. Options are
APAC
,EU
,US
andAU
. Defaults toUS
. - Enable
Http2For stringNew Sites - Use this option to enable HTTP/2 support for traffic between end-users (visitors) and Imperva for newly created SSL sites. Options are
true
andfalse
. Defaults totrue
. - Enable
Http2To stringOrigin For New Sites - Use this option to enable HTTP/2 support for traffic between Imperva and your origin server for newly created SSL sites. This option can only be 'true' once 'enable_http2_for_new_sites' is enabled for newly created sites. Options are
true
andfalse
. Defaults tofalse
. - Error
Page stringTemplate - Base64 encoded template for an error page.
- Log
Level string - The log level. Options are
full
,security
, andnone
. - Logs
Account doubleId - Account where logs should be stored. Available only for Enterprise Plan customers that purchased the Logs Integration SKU. Numeric identifier of the account that purchased the logs integration SKU and which collects the logs. If not specified, operation will be performed on the account identified by the authentication parameters.
- Naked
Domain stringSan For New Www Sites - Add naked domain SAN to Incapsula SSL certificates for new www sites. Options are
true
andfalse
. Defaults totrue
.
Note: This argument is deprecated. Use add_naked_domain_san_for_www_sites in the account_ssl_settings resource instead. - Parent
Id double - The newly created account's parent id. If not specified, the invoking account will be assigned as the parent.
- Plan
Id string - An identifier of the plan to assign to the new account. For example, ent100 for the Enterprise 100 plan (values can be provided by your account manager).
- Ref
Id string - Customer specific identifier for this operation.
- Support
All stringTls Versions - Allow sites in the account to support all TLS versions for connectivity between clients (visitors) and the Imperva service.
Note: This argument is deprecated. Use add_naked_domain_san_for_www_sites in the account_ssl_settings resource instead. - User
Name string - The account owner's name. For example: John Doe.
- Wildcard
San stringFor New Sites - Add wildcard SAN to Incapsula SSL certificates for new sites. Options are
true
,false
anddefault
. Defaults todefault
.
Note: This argument is deprecated. Use use_wild_card_san_instead_of_fqdn in the account_ssl_settings resource instead.
- Email string
- Email address of the account admin. For example: joe@example.com.
- Account
Id string - Unique identifier in the API for the account.
- Account
Name string - Account name.
- Consent
Required bool - Blocks Imperva from performing sensitive operations on your behalf. You can then activate consent via the Cloud Security Console UI. Options are
true
,false
. - Data
Storage stringRegion - Default data region of the account for newly created sites. Options are
APAC
,EU
,US
andAU
. Defaults toUS
. - Enable
Http2For stringNew Sites - Use this option to enable HTTP/2 support for traffic between end-users (visitors) and Imperva for newly created SSL sites. Options are
true
andfalse
. Defaults totrue
. - Enable
Http2To stringOrigin For New Sites - Use this option to enable HTTP/2 support for traffic between Imperva and your origin server for newly created SSL sites. This option can only be 'true' once 'enable_http2_for_new_sites' is enabled for newly created sites. Options are
true
andfalse
. Defaults tofalse
. - Error
Page stringTemplate - Base64 encoded template for an error page.
- Log
Level string - The log level. Options are
full
,security
, andnone
. - Logs
Account float64Id - Account where logs should be stored. Available only for Enterprise Plan customers that purchased the Logs Integration SKU. Numeric identifier of the account that purchased the logs integration SKU and which collects the logs. If not specified, operation will be performed on the account identified by the authentication parameters.
- Naked
Domain stringSan For New Www Sites - Add naked domain SAN to Incapsula SSL certificates for new www sites. Options are
true
andfalse
. Defaults totrue
.
Note: This argument is deprecated. Use add_naked_domain_san_for_www_sites in the account_ssl_settings resource instead. - Parent
Id float64 - The newly created account's parent id. If not specified, the invoking account will be assigned as the parent.
- Plan
Id string - An identifier of the plan to assign to the new account. For example, ent100 for the Enterprise 100 plan (values can be provided by your account manager).
- Ref
Id string - Customer specific identifier for this operation.
- Support
All stringTls Versions - Allow sites in the account to support all TLS versions for connectivity between clients (visitors) and the Imperva service.
Note: This argument is deprecated. Use add_naked_domain_san_for_www_sites in the account_ssl_settings resource instead. - User
Name string - The account owner's name. For example: John Doe.
- Wildcard
San stringFor New Sites - Add wildcard SAN to Incapsula SSL certificates for new sites. Options are
true
,false
anddefault
. Defaults todefault
.
Note: This argument is deprecated. Use use_wild_card_san_instead_of_fqdn in the account_ssl_settings resource instead.
- email String
- Email address of the account admin. For example: joe@example.com.
- account
Id String - Unique identifier in the API for the account.
- account
Name String - Account name.
- consent
Required Boolean - Blocks Imperva from performing sensitive operations on your behalf. You can then activate consent via the Cloud Security Console UI. Options are
true
,false
. - data
Storage StringRegion - Default data region of the account for newly created sites. Options are
APAC
,EU
,US
andAU
. Defaults toUS
. - enable
Http2For StringNew Sites - Use this option to enable HTTP/2 support for traffic between end-users (visitors) and Imperva for newly created SSL sites. Options are
true
andfalse
. Defaults totrue
. - enable
Http2To StringOrigin For New Sites - Use this option to enable HTTP/2 support for traffic between Imperva and your origin server for newly created SSL sites. This option can only be 'true' once 'enable_http2_for_new_sites' is enabled for newly created sites. Options are
true
andfalse
. Defaults tofalse
. - error
Page StringTemplate - Base64 encoded template for an error page.
- log
Level String - The log level. Options are
full
,security
, andnone
. - logs
Account DoubleId - Account where logs should be stored. Available only for Enterprise Plan customers that purchased the Logs Integration SKU. Numeric identifier of the account that purchased the logs integration SKU and which collects the logs. If not specified, operation will be performed on the account identified by the authentication parameters.
- naked
Domain StringSan For New Www Sites - Add naked domain SAN to Incapsula SSL certificates for new www sites. Options are
true
andfalse
. Defaults totrue
.
Note: This argument is deprecated. Use add_naked_domain_san_for_www_sites in the account_ssl_settings resource instead. - parent
Id Double - The newly created account's parent id. If not specified, the invoking account will be assigned as the parent.
- plan
Id String - An identifier of the plan to assign to the new account. For example, ent100 for the Enterprise 100 plan (values can be provided by your account manager).
- ref
Id String - Customer specific identifier for this operation.
- support
All StringTls Versions - Allow sites in the account to support all TLS versions for connectivity between clients (visitors) and the Imperva service.
Note: This argument is deprecated. Use add_naked_domain_san_for_www_sites in the account_ssl_settings resource instead. - user
Name String - The account owner's name. For example: John Doe.
- wildcard
San StringFor New Sites - Add wildcard SAN to Incapsula SSL certificates for new sites. Options are
true
,false
anddefault
. Defaults todefault
.
Note: This argument is deprecated. Use use_wild_card_san_instead_of_fqdn in the account_ssl_settings resource instead.
- email string
- Email address of the account admin. For example: joe@example.com.
- account
Id string - Unique identifier in the API for the account.
- account
Name string - Account name.
- consent
Required boolean - Blocks Imperva from performing sensitive operations on your behalf. You can then activate consent via the Cloud Security Console UI. Options are
true
,false
. - data
Storage stringRegion - Default data region of the account for newly created sites. Options are
APAC
,EU
,US
andAU
. Defaults toUS
. - enable
Http2For stringNew Sites - Use this option to enable HTTP/2 support for traffic between end-users (visitors) and Imperva for newly created SSL sites. Options are
true
andfalse
. Defaults totrue
. - enable
Http2To stringOrigin For New Sites - Use this option to enable HTTP/2 support for traffic between Imperva and your origin server for newly created SSL sites. This option can only be 'true' once 'enable_http2_for_new_sites' is enabled for newly created sites. Options are
true
andfalse
. Defaults tofalse
. - error
Page stringTemplate - Base64 encoded template for an error page.
- log
Level string - The log level. Options are
full
,security
, andnone
. - logs
Account numberId - Account where logs should be stored. Available only for Enterprise Plan customers that purchased the Logs Integration SKU. Numeric identifier of the account that purchased the logs integration SKU and which collects the logs. If not specified, operation will be performed on the account identified by the authentication parameters.
- naked
Domain stringSan For New Www Sites - Add naked domain SAN to Incapsula SSL certificates for new www sites. Options are
true
andfalse
. Defaults totrue
.
Note: This argument is deprecated. Use add_naked_domain_san_for_www_sites in the account_ssl_settings resource instead. - parent
Id number - The newly created account's parent id. If not specified, the invoking account will be assigned as the parent.
- plan
Id string - An identifier of the plan to assign to the new account. For example, ent100 for the Enterprise 100 plan (values can be provided by your account manager).
- ref
Id string - Customer specific identifier for this operation.
- support
All stringTls Versions - Allow sites in the account to support all TLS versions for connectivity between clients (visitors) and the Imperva service.
Note: This argument is deprecated. Use add_naked_domain_san_for_www_sites in the account_ssl_settings resource instead. - user
Name string - The account owner's name. For example: John Doe.
- wildcard
San stringFor New Sites - Add wildcard SAN to Incapsula SSL certificates for new sites. Options are
true
,false
anddefault
. Defaults todefault
.
Note: This argument is deprecated. Use use_wild_card_san_instead_of_fqdn in the account_ssl_settings resource instead.
- email str
- Email address of the account admin. For example: joe@example.com.
- account_
id str - Unique identifier in the API for the account.
- account_
name str - Account name.
- consent_
required bool - Blocks Imperva from performing sensitive operations on your behalf. You can then activate consent via the Cloud Security Console UI. Options are
true
,false
. - data_
storage_ strregion - Default data region of the account for newly created sites. Options are
APAC
,EU
,US
andAU
. Defaults toUS
. - enable_
http2_ strfor_ new_ sites - Use this option to enable HTTP/2 support for traffic between end-users (visitors) and Imperva for newly created SSL sites. Options are
true
andfalse
. Defaults totrue
. - enable_
http2_ strto_ origin_ for_ new_ sites - Use this option to enable HTTP/2 support for traffic between Imperva and your origin server for newly created SSL sites. This option can only be 'true' once 'enable_http2_for_new_sites' is enabled for newly created sites. Options are
true
andfalse
. Defaults tofalse
. - error_
page_ strtemplate - Base64 encoded template for an error page.
- log_
level str - The log level. Options are
full
,security
, andnone
. - logs_
account_ floatid - Account where logs should be stored. Available only for Enterprise Plan customers that purchased the Logs Integration SKU. Numeric identifier of the account that purchased the logs integration SKU and which collects the logs. If not specified, operation will be performed on the account identified by the authentication parameters.
- naked_
domain_ strsan_ for_ new_ www_ sites - Add naked domain SAN to Incapsula SSL certificates for new www sites. Options are
true
andfalse
. Defaults totrue
.
Note: This argument is deprecated. Use add_naked_domain_san_for_www_sites in the account_ssl_settings resource instead. - parent_
id float - The newly created account's parent id. If not specified, the invoking account will be assigned as the parent.
- plan_
id str - An identifier of the plan to assign to the new account. For example, ent100 for the Enterprise 100 plan (values can be provided by your account manager).
- ref_
id str - Customer specific identifier for this operation.
- support_
all_ strtls_ versions - Allow sites in the account to support all TLS versions for connectivity between clients (visitors) and the Imperva service.
Note: This argument is deprecated. Use add_naked_domain_san_for_www_sites in the account_ssl_settings resource instead. - user_
name str - The account owner's name. For example: John Doe.
- wildcard_
san_ strfor_ new_ sites - Add wildcard SAN to Incapsula SSL certificates for new sites. Options are
true
,false
anddefault
. Defaults todefault
.
Note: This argument is deprecated. Use use_wild_card_san_instead_of_fqdn in the account_ssl_settings resource instead.
- email String
- Email address of the account admin. For example: joe@example.com.
- account
Id String - Unique identifier in the API for the account.
- account
Name String - Account name.
- consent
Required Boolean - Blocks Imperva from performing sensitive operations on your behalf. You can then activate consent via the Cloud Security Console UI. Options are
true
,false
. - data
Storage StringRegion - Default data region of the account for newly created sites. Options are
APAC
,EU
,US
andAU
. Defaults toUS
. - enable
Http2For StringNew Sites - Use this option to enable HTTP/2 support for traffic between end-users (visitors) and Imperva for newly created SSL sites. Options are
true
andfalse
. Defaults totrue
. - enable
Http2To StringOrigin For New Sites - Use this option to enable HTTP/2 support for traffic between Imperva and your origin server for newly created SSL sites. This option can only be 'true' once 'enable_http2_for_new_sites' is enabled for newly created sites. Options are
true
andfalse
. Defaults tofalse
. - error
Page StringTemplate - Base64 encoded template for an error page.
- log
Level String - The log level. Options are
full
,security
, andnone
. - logs
Account NumberId - Account where logs should be stored. Available only for Enterprise Plan customers that purchased the Logs Integration SKU. Numeric identifier of the account that purchased the logs integration SKU and which collects the logs. If not specified, operation will be performed on the account identified by the authentication parameters.
- naked
Domain StringSan For New Www Sites - Add naked domain SAN to Incapsula SSL certificates for new www sites. Options are
true
andfalse
. Defaults totrue
.
Note: This argument is deprecated. Use add_naked_domain_san_for_www_sites in the account_ssl_settings resource instead. - parent
Id Number - The newly created account's parent id. If not specified, the invoking account will be assigned as the parent.
- plan
Id String - An identifier of the plan to assign to the new account. For example, ent100 for the Enterprise 100 plan (values can be provided by your account manager).
- ref
Id String - Customer specific identifier for this operation.
- support
All StringTls Versions - Allow sites in the account to support all TLS versions for connectivity between clients (visitors) and the Imperva service.
Note: This argument is deprecated. Use add_naked_domain_san_for_www_sites in the account_ssl_settings resource instead. - user
Name String - The account owner's name. For example: John Doe.
- wildcard
San StringFor New Sites - Add wildcard SAN to Incapsula SSL certificates for new sites. Options are
true
,false
anddefault
. Defaults todefault
.
Note: This argument is deprecated. Use use_wild_card_san_instead_of_fqdn in the account_ssl_settings resource instead.
Outputs
All input properties are implicitly available as output properties. Additionally, the Account resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Plan
Name string - The name of the plan associated with the account.
- Support
Level string - The support tier associated with the account.
- Trial
End stringDate - The trial end date of a trial account.
- Id string
- The provider-assigned unique ID for this managed resource.
- Plan
Name string - The name of the plan associated with the account.
- Support
Level string - The support tier associated with the account.
- Trial
End stringDate - The trial end date of a trial account.
- id String
- The provider-assigned unique ID for this managed resource.
- plan
Name String - The name of the plan associated with the account.
- support
Level String - The support tier associated with the account.
- trial
End StringDate - The trial end date of a trial account.
- id string
- The provider-assigned unique ID for this managed resource.
- plan
Name string - The name of the plan associated with the account.
- support
Level string - The support tier associated with the account.
- trial
End stringDate - The trial end date of a trial account.
- id str
- The provider-assigned unique ID for this managed resource.
- plan_
name str - The name of the plan associated with the account.
- support_
level str - The support tier associated with the account.
- trial_
end_ strdate - The trial end date of a trial account.
- id String
- The provider-assigned unique ID for this managed resource.
- plan
Name String - The name of the plan associated with the account.
- support
Level String - The support tier associated with the account.
- trial
End StringDate - The trial end date of a trial account.
Look up Existing Account Resource
Get an existing Account 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?: AccountState, opts?: CustomResourceOptions): Account
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
account_id: Optional[str] = None,
account_name: Optional[str] = None,
consent_required: Optional[bool] = None,
data_storage_region: Optional[str] = None,
email: Optional[str] = None,
enable_http2_for_new_sites: Optional[str] = None,
enable_http2_to_origin_for_new_sites: Optional[str] = None,
error_page_template: Optional[str] = None,
log_level: Optional[str] = None,
logs_account_id: Optional[float] = None,
naked_domain_san_for_new_www_sites: Optional[str] = None,
parent_id: Optional[float] = None,
plan_id: Optional[str] = None,
plan_name: Optional[str] = None,
ref_id: Optional[str] = None,
support_all_tls_versions: Optional[str] = None,
support_level: Optional[str] = None,
trial_end_date: Optional[str] = None,
user_name: Optional[str] = None,
wildcard_san_for_new_sites: Optional[str] = None) -> Account
func GetAccount(ctx *Context, name string, id IDInput, state *AccountState, opts ...ResourceOption) (*Account, error)
public static Account Get(string name, Input<string> id, AccountState? state, CustomResourceOptions? opts = null)
public static Account get(String name, Output<String> id, AccountState state, CustomResourceOptions options)
resources: _: type: incapsula:Account 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 - Unique identifier in the API for the account.
- Account
Name string - Account name.
- Consent
Required bool - Blocks Imperva from performing sensitive operations on your behalf. You can then activate consent via the Cloud Security Console UI. Options are
true
,false
. - Data
Storage stringRegion - Default data region of the account for newly created sites. Options are
APAC
,EU
,US
andAU
. Defaults toUS
. - Email string
- Email address of the account admin. For example: joe@example.com.
- Enable
Http2For stringNew Sites - Use this option to enable HTTP/2 support for traffic between end-users (visitors) and Imperva for newly created SSL sites. Options are
true
andfalse
. Defaults totrue
. - Enable
Http2To stringOrigin For New Sites - Use this option to enable HTTP/2 support for traffic between Imperva and your origin server for newly created SSL sites. This option can only be 'true' once 'enable_http2_for_new_sites' is enabled for newly created sites. Options are
true
andfalse
. Defaults tofalse
. - Error
Page stringTemplate - Base64 encoded template for an error page.
- Log
Level string - The log level. Options are
full
,security
, andnone
. - Logs
Account doubleId - Account where logs should be stored. Available only for Enterprise Plan customers that purchased the Logs Integration SKU. Numeric identifier of the account that purchased the logs integration SKU and which collects the logs. If not specified, operation will be performed on the account identified by the authentication parameters.
- Naked
Domain stringSan For New Www Sites - Add naked domain SAN to Incapsula SSL certificates for new www sites. Options are
true
andfalse
. Defaults totrue
.
Note: This argument is deprecated. Use add_naked_domain_san_for_www_sites in the account_ssl_settings resource instead. - Parent
Id double - The newly created account's parent id. If not specified, the invoking account will be assigned as the parent.
- Plan
Id string - An identifier of the plan to assign to the new account. For example, ent100 for the Enterprise 100 plan (values can be provided by your account manager).
- Plan
Name string - The name of the plan associated with the account.
- Ref
Id string - Customer specific identifier for this operation.
- Support
All stringTls Versions - Allow sites in the account to support all TLS versions for connectivity between clients (visitors) and the Imperva service.
Note: This argument is deprecated. Use add_naked_domain_san_for_www_sites in the account_ssl_settings resource instead. - Support
Level string - The support tier associated with the account.
- Trial
End stringDate - The trial end date of a trial account.
- User
Name string - The account owner's name. For example: John Doe.
- Wildcard
San stringFor New Sites - Add wildcard SAN to Incapsula SSL certificates for new sites. Options are
true
,false
anddefault
. Defaults todefault
.
Note: This argument is deprecated. Use use_wild_card_san_instead_of_fqdn in the account_ssl_settings resource instead.
- Account
Id string - Unique identifier in the API for the account.
- Account
Name string - Account name.
- Consent
Required bool - Blocks Imperva from performing sensitive operations on your behalf. You can then activate consent via the Cloud Security Console UI. Options are
true
,false
. - Data
Storage stringRegion - Default data region of the account for newly created sites. Options are
APAC
,EU
,US
andAU
. Defaults toUS
. - Email string
- Email address of the account admin. For example: joe@example.com.
- Enable
Http2For stringNew Sites - Use this option to enable HTTP/2 support for traffic between end-users (visitors) and Imperva for newly created SSL sites. Options are
true
andfalse
. Defaults totrue
. - Enable
Http2To stringOrigin For New Sites - Use this option to enable HTTP/2 support for traffic between Imperva and your origin server for newly created SSL sites. This option can only be 'true' once 'enable_http2_for_new_sites' is enabled for newly created sites. Options are
true
andfalse
. Defaults tofalse
. - Error
Page stringTemplate - Base64 encoded template for an error page.
- Log
Level string - The log level. Options are
full
,security
, andnone
. - Logs
Account float64Id - Account where logs should be stored. Available only for Enterprise Plan customers that purchased the Logs Integration SKU. Numeric identifier of the account that purchased the logs integration SKU and which collects the logs. If not specified, operation will be performed on the account identified by the authentication parameters.
- Naked
Domain stringSan For New Www Sites - Add naked domain SAN to Incapsula SSL certificates for new www sites. Options are
true
andfalse
. Defaults totrue
.
Note: This argument is deprecated. Use add_naked_domain_san_for_www_sites in the account_ssl_settings resource instead. - Parent
Id float64 - The newly created account's parent id. If not specified, the invoking account will be assigned as the parent.
- Plan
Id string - An identifier of the plan to assign to the new account. For example, ent100 for the Enterprise 100 plan (values can be provided by your account manager).
- Plan
Name string - The name of the plan associated with the account.
- Ref
Id string - Customer specific identifier for this operation.
- Support
All stringTls Versions - Allow sites in the account to support all TLS versions for connectivity between clients (visitors) and the Imperva service.
Note: This argument is deprecated. Use add_naked_domain_san_for_www_sites in the account_ssl_settings resource instead. - Support
Level string - The support tier associated with the account.
- Trial
End stringDate - The trial end date of a trial account.
- User
Name string - The account owner's name. For example: John Doe.
- Wildcard
San stringFor New Sites - Add wildcard SAN to Incapsula SSL certificates for new sites. Options are
true
,false
anddefault
. Defaults todefault
.
Note: This argument is deprecated. Use use_wild_card_san_instead_of_fqdn in the account_ssl_settings resource instead.
- account
Id String - Unique identifier in the API for the account.
- account
Name String - Account name.
- consent
Required Boolean - Blocks Imperva from performing sensitive operations on your behalf. You can then activate consent via the Cloud Security Console UI. Options are
true
,false
. - data
Storage StringRegion - Default data region of the account for newly created sites. Options are
APAC
,EU
,US
andAU
. Defaults toUS
. - email String
- Email address of the account admin. For example: joe@example.com.
- enable
Http2For StringNew Sites - Use this option to enable HTTP/2 support for traffic between end-users (visitors) and Imperva for newly created SSL sites. Options are
true
andfalse
. Defaults totrue
. - enable
Http2To StringOrigin For New Sites - Use this option to enable HTTP/2 support for traffic between Imperva and your origin server for newly created SSL sites. This option can only be 'true' once 'enable_http2_for_new_sites' is enabled for newly created sites. Options are
true
andfalse
. Defaults tofalse
. - error
Page StringTemplate - Base64 encoded template for an error page.
- log
Level String - The log level. Options are
full
,security
, andnone
. - logs
Account DoubleId - Account where logs should be stored. Available only for Enterprise Plan customers that purchased the Logs Integration SKU. Numeric identifier of the account that purchased the logs integration SKU and which collects the logs. If not specified, operation will be performed on the account identified by the authentication parameters.
- naked
Domain StringSan For New Www Sites - Add naked domain SAN to Incapsula SSL certificates for new www sites. Options are
true
andfalse
. Defaults totrue
.
Note: This argument is deprecated. Use add_naked_domain_san_for_www_sites in the account_ssl_settings resource instead. - parent
Id Double - The newly created account's parent id. If not specified, the invoking account will be assigned as the parent.
- plan
Id String - An identifier of the plan to assign to the new account. For example, ent100 for the Enterprise 100 plan (values can be provided by your account manager).
- plan
Name String - The name of the plan associated with the account.
- ref
Id String - Customer specific identifier for this operation.
- support
All StringTls Versions - Allow sites in the account to support all TLS versions for connectivity between clients (visitors) and the Imperva service.
Note: This argument is deprecated. Use add_naked_domain_san_for_www_sites in the account_ssl_settings resource instead. - support
Level String - The support tier associated with the account.
- trial
End StringDate - The trial end date of a trial account.
- user
Name String - The account owner's name. For example: John Doe.
- wildcard
San StringFor New Sites - Add wildcard SAN to Incapsula SSL certificates for new sites. Options are
true
,false
anddefault
. Defaults todefault
.
Note: This argument is deprecated. Use use_wild_card_san_instead_of_fqdn in the account_ssl_settings resource instead.
- account
Id string - Unique identifier in the API for the account.
- account
Name string - Account name.
- consent
Required boolean - Blocks Imperva from performing sensitive operations on your behalf. You can then activate consent via the Cloud Security Console UI. Options are
true
,false
. - data
Storage stringRegion - Default data region of the account for newly created sites. Options are
APAC
,EU
,US
andAU
. Defaults toUS
. - email string
- Email address of the account admin. For example: joe@example.com.
- enable
Http2For stringNew Sites - Use this option to enable HTTP/2 support for traffic between end-users (visitors) and Imperva for newly created SSL sites. Options are
true
andfalse
. Defaults totrue
. - enable
Http2To stringOrigin For New Sites - Use this option to enable HTTP/2 support for traffic between Imperva and your origin server for newly created SSL sites. This option can only be 'true' once 'enable_http2_for_new_sites' is enabled for newly created sites. Options are
true
andfalse
. Defaults tofalse
. - error
Page stringTemplate - Base64 encoded template for an error page.
- log
Level string - The log level. Options are
full
,security
, andnone
. - logs
Account numberId - Account where logs should be stored. Available only for Enterprise Plan customers that purchased the Logs Integration SKU. Numeric identifier of the account that purchased the logs integration SKU and which collects the logs. If not specified, operation will be performed on the account identified by the authentication parameters.
- naked
Domain stringSan For New Www Sites - Add naked domain SAN to Incapsula SSL certificates for new www sites. Options are
true
andfalse
. Defaults totrue
.
Note: This argument is deprecated. Use add_naked_domain_san_for_www_sites in the account_ssl_settings resource instead. - parent
Id number - The newly created account's parent id. If not specified, the invoking account will be assigned as the parent.
- plan
Id string - An identifier of the plan to assign to the new account. For example, ent100 for the Enterprise 100 plan (values can be provided by your account manager).
- plan
Name string - The name of the plan associated with the account.
- ref
Id string - Customer specific identifier for this operation.
- support
All stringTls Versions - Allow sites in the account to support all TLS versions for connectivity between clients (visitors) and the Imperva service.
Note: This argument is deprecated. Use add_naked_domain_san_for_www_sites in the account_ssl_settings resource instead. - support
Level string - The support tier associated with the account.
- trial
End stringDate - The trial end date of a trial account.
- user
Name string - The account owner's name. For example: John Doe.
- wildcard
San stringFor New Sites - Add wildcard SAN to Incapsula SSL certificates for new sites. Options are
true
,false
anddefault
. Defaults todefault
.
Note: This argument is deprecated. Use use_wild_card_san_instead_of_fqdn in the account_ssl_settings resource instead.
- account_
id str - Unique identifier in the API for the account.
- account_
name str - Account name.
- consent_
required bool - Blocks Imperva from performing sensitive operations on your behalf. You can then activate consent via the Cloud Security Console UI. Options are
true
,false
. - data_
storage_ strregion - Default data region of the account for newly created sites. Options are
APAC
,EU
,US
andAU
. Defaults toUS
. - email str
- Email address of the account admin. For example: joe@example.com.
- enable_
http2_ strfor_ new_ sites - Use this option to enable HTTP/2 support for traffic between end-users (visitors) and Imperva for newly created SSL sites. Options are
true
andfalse
. Defaults totrue
. - enable_
http2_ strto_ origin_ for_ new_ sites - Use this option to enable HTTP/2 support for traffic between Imperva and your origin server for newly created SSL sites. This option can only be 'true' once 'enable_http2_for_new_sites' is enabled for newly created sites. Options are
true
andfalse
. Defaults tofalse
. - error_
page_ strtemplate - Base64 encoded template for an error page.
- log_
level str - The log level. Options are
full
,security
, andnone
. - logs_
account_ floatid - Account where logs should be stored. Available only for Enterprise Plan customers that purchased the Logs Integration SKU. Numeric identifier of the account that purchased the logs integration SKU and which collects the logs. If not specified, operation will be performed on the account identified by the authentication parameters.
- naked_
domain_ strsan_ for_ new_ www_ sites - Add naked domain SAN to Incapsula SSL certificates for new www sites. Options are
true
andfalse
. Defaults totrue
.
Note: This argument is deprecated. Use add_naked_domain_san_for_www_sites in the account_ssl_settings resource instead. - parent_
id float - The newly created account's parent id. If not specified, the invoking account will be assigned as the parent.
- plan_
id str - An identifier of the plan to assign to the new account. For example, ent100 for the Enterprise 100 plan (values can be provided by your account manager).
- plan_
name str - The name of the plan associated with the account.
- ref_
id str - Customer specific identifier for this operation.
- support_
all_ strtls_ versions - Allow sites in the account to support all TLS versions for connectivity between clients (visitors) and the Imperva service.
Note: This argument is deprecated. Use add_naked_domain_san_for_www_sites in the account_ssl_settings resource instead. - support_
level str - The support tier associated with the account.
- trial_
end_ strdate - The trial end date of a trial account.
- user_
name str - The account owner's name. For example: John Doe.
- wildcard_
san_ strfor_ new_ sites - Add wildcard SAN to Incapsula SSL certificates for new sites. Options are
true
,false
anddefault
. Defaults todefault
.
Note: This argument is deprecated. Use use_wild_card_san_instead_of_fqdn in the account_ssl_settings resource instead.
- account
Id String - Unique identifier in the API for the account.
- account
Name String - Account name.
- consent
Required Boolean - Blocks Imperva from performing sensitive operations on your behalf. You can then activate consent via the Cloud Security Console UI. Options are
true
,false
. - data
Storage StringRegion - Default data region of the account for newly created sites. Options are
APAC
,EU
,US
andAU
. Defaults toUS
. - email String
- Email address of the account admin. For example: joe@example.com.
- enable
Http2For StringNew Sites - Use this option to enable HTTP/2 support for traffic between end-users (visitors) and Imperva for newly created SSL sites. Options are
true
andfalse
. Defaults totrue
. - enable
Http2To StringOrigin For New Sites - Use this option to enable HTTP/2 support for traffic between Imperva and your origin server for newly created SSL sites. This option can only be 'true' once 'enable_http2_for_new_sites' is enabled for newly created sites. Options are
true
andfalse
. Defaults tofalse
. - error
Page StringTemplate - Base64 encoded template for an error page.
- log
Level String - The log level. Options are
full
,security
, andnone
. - logs
Account NumberId - Account where logs should be stored. Available only for Enterprise Plan customers that purchased the Logs Integration SKU. Numeric identifier of the account that purchased the logs integration SKU and which collects the logs. If not specified, operation will be performed on the account identified by the authentication parameters.
- naked
Domain StringSan For New Www Sites - Add naked domain SAN to Incapsula SSL certificates for new www sites. Options are
true
andfalse
. Defaults totrue
.
Note: This argument is deprecated. Use add_naked_domain_san_for_www_sites in the account_ssl_settings resource instead. - parent
Id Number - The newly created account's parent id. If not specified, the invoking account will be assigned as the parent.
- plan
Id String - An identifier of the plan to assign to the new account. For example, ent100 for the Enterprise 100 plan (values can be provided by your account manager).
- plan
Name String - The name of the plan associated with the account.
- ref
Id String - Customer specific identifier for this operation.
- support
All StringTls Versions - Allow sites in the account to support all TLS versions for connectivity between clients (visitors) and the Imperva service.
Note: This argument is deprecated. Use add_naked_domain_san_for_www_sites in the account_ssl_settings resource instead. - support
Level String - The support tier associated with the account.
- trial
End StringDate - The trial end date of a trial account.
- user
Name String - The account owner's name. For example: John Doe.
- wildcard
San StringFor New Sites - Add wildcard SAN to Incapsula SSL certificates for new sites. Options are
true
,false
anddefault
. Defaults todefault
.
Note: This argument is deprecated. Use use_wild_card_san_instead_of_fqdn in the account_ssl_settings resource instead.
Import
Account can be imported using the id
, e.g.:
$ pulumi import incapsula:index/account:Account demo 1234
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- incapsula imperva/terraform-provider-incapsula
- License
- Notes
- This Pulumi package is based on the
incapsula
Terraform Provider.