Represents a {@link https://registry.terraform.io/providers/hashicorp/google/6.17.0/docs/resources/netapp_active_directory google_netapp_active_directory}.
import { netappActiveDirectory } from '@cdktf/provider-google'
new netappActiveDirectory.NetappActiveDirectory(scope: Construct, id: string, config: NetappActiveDirectoryConfig)
Name | Type | Description |
---|---|---|
scope |
constructs.Construct |
The scope in which to define this construct. |
id |
string |
The scoped construct ID. |
config |
NetappActiveDirectoryConfig |
No description. |
- Type: constructs.Construct
The scope in which to define this construct.
- Type: string
The scoped construct ID.
Must be unique amongst siblings in the same scope
Name | Description |
---|---|
toString |
Returns a string representation of this construct. |
addOverride |
No description. |
overrideLogicalId |
Overrides the auto-generated logical ID with a specific ID. |
resetOverrideLogicalId |
Resets a previously passed logical Id to use the auto-generated logical id again. |
toHclTerraform |
No description. |
toMetadata |
No description. |
toTerraform |
Adds this resource to the terraform JSON output. |
addMoveTarget |
Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
getAnyMapAttribute |
No description. |
getBooleanAttribute |
No description. |
getBooleanMapAttribute |
No description. |
getListAttribute |
No description. |
getNumberAttribute |
No description. |
getNumberListAttribute |
No description. |
getNumberMapAttribute |
No description. |
getStringAttribute |
No description. |
getStringMapAttribute |
No description. |
hasResourceMove |
No description. |
importFrom |
No description. |
interpolationForAttribute |
No description. |
moveFromId |
Move the resource corresponding to "id" to this resource. |
moveTo |
Moves this resource to the target resource given by moveTarget. |
moveToId |
Moves this resource to the resource corresponding to "id". |
putTimeouts |
No description. |
resetAdministrators |
No description. |
resetAesEncryption |
No description. |
resetBackupOperators |
No description. |
resetDescription |
No description. |
resetEncryptDcConnections |
No description. |
resetId |
No description. |
resetKdcHostname |
No description. |
resetKdcIp |
No description. |
resetLabels |
No description. |
resetLdapSigning |
No description. |
resetNfsUsersWithLdap |
No description. |
resetOrganizationalUnit |
No description. |
resetProject |
No description. |
resetSecurityOperators |
No description. |
resetSite |
No description. |
resetTimeouts |
No description. |
public toString(): string
Returns a string representation of this construct.
public addOverride(path: string, value: any): void
- Type: string
- Type: any
public overrideLogicalId(newLogicalId: string): void
Overrides the auto-generated logical ID with a specific ID.
- Type: string
The new logical ID to use for this stack element.
public resetOverrideLogicalId(): void
Resets a previously passed logical Id to use the auto-generated logical id again.
public toHclTerraform(): any
public toMetadata(): any
public toTerraform(): any
Adds this resource to the terraform JSON output.
public addMoveTarget(moveTarget: string): void
Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
- Type: string
The string move target that will correspond to this resource.
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById
public importFrom(id: string, provider?: TerraformProvider): void
- Type: string
- Type: cdktf.TerraformProvider
public interpolationForAttribute(terraformAttribute: string): IResolvable
- Type: string
public moveFromId(id: string): void
Move the resource corresponding to "id" to this resource.
Note that the resource being moved from must be marked as moved using it's instance function.
- Type: string
Full id of resource being moved from, e.g. "aws_s3_bucket.example".
public moveTo(moveTarget: string, index?: string | number): void
Moves this resource to the target resource given by moveTarget.
- Type: string
The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
- Type: string | number
Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
public moveToId(id: string): void
Moves this resource to the resource corresponding to "id".
- Type: string
Full id of resource to move to, e.g. "aws_s3_bucket.example".
public putTimeouts(value: NetappActiveDirectoryTimeouts): void
public resetAdministrators(): void
public resetAesEncryption(): void
public resetBackupOperators(): void
public resetDescription(): void
public resetEncryptDcConnections(): void
public resetId(): void
public resetKdcHostname(): void
public resetKdcIp(): void
public resetLabels(): void
public resetLdapSigning(): void
public resetNfsUsersWithLdap(): void
public resetOrganizationalUnit(): void
public resetProject(): void
public resetSecurityOperators(): void
public resetSite(): void
public resetTimeouts(): void
Name | Description |
---|---|
isConstruct |
Checks if x is a construct. |
isTerraformElement |
No description. |
isTerraformResource |
No description. |
generateConfigForImport |
Generates CDKTF code for importing a NetappActiveDirectory resource upon running "cdktf plan ". |
import { netappActiveDirectory } from '@cdktf/provider-google'
netappActiveDirectory.NetappActiveDirectory.isConstruct(x: any)
Checks if x
is a construct.
Use this method instead of instanceof
to properly detect Construct
instances, even when the construct library is symlinked.
Explanation: in JavaScript, multiple copies of the constructs
library on
disk are seen as independent, completely different libraries. As a
consequence, the class Construct
in each copy of the constructs
library
is seen as a different class, and an instance of one class will not test as
instanceof
the other class. npm install
will not create installations
like this, but users may manually symlink construct libraries together or
use a monorepo tool: in those cases, multiple copies of the constructs
library can be accidentally installed, and instanceof
will behave
unpredictably. It is safest to avoid using instanceof
, and using
this type-testing method instead.
- Type: any
Any object.
import { netappActiveDirectory } from '@cdktf/provider-google'
netappActiveDirectory.NetappActiveDirectory.isTerraformElement(x: any)
- Type: any
import { netappActiveDirectory } from '@cdktf/provider-google'
netappActiveDirectory.NetappActiveDirectory.isTerraformResource(x: any)
- Type: any
import { netappActiveDirectory } from '@cdktf/provider-google'
netappActiveDirectory.NetappActiveDirectory.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider)
Generates CDKTF code for importing a NetappActiveDirectory resource upon running "cdktf plan ".
- Type: constructs.Construct
The scope in which to define this construct.
- Type: string
The construct id used in the generated config for the NetappActiveDirectory to import.
- Type: string
The id of the existing NetappActiveDirectory that should be imported.
Refer to the {@link https://registry.terraform.io/providers/hashicorp/google/6.17.0/docs/resources/netapp_active_directory#import import section} in the documentation of this resource for the id to use
- Type: cdktf.TerraformProvider
? Optional instance of the provider where the NetappActiveDirectory to import is found.
Name | Type | Description |
---|---|---|
node |
constructs.Node |
The tree node. |
cdktfStack |
cdktf.TerraformStack |
No description. |
fqn |
string |
No description. |
friendlyUniqueId |
string |
No description. |
terraformMetaArguments |
{[ key: string ]: any} |
No description. |
terraformResourceType |
string |
No description. |
terraformGeneratorMetadata |
cdktf.TerraformProviderGeneratorMetadata |
No description. |
connection |
cdktf.SSHProvisionerConnection | cdktf.WinrmProvisionerConnection |
No description. |
count |
number | cdktf.TerraformCount |
No description. |
dependsOn |
string[] |
No description. |
forEach |
cdktf.ITerraformIterator |
No description. |
lifecycle |
cdktf.TerraformResourceLifecycle |
No description. |
provider |
cdktf.TerraformProvider |
No description. |
provisioners |
cdktf.FileProvisioner | cdktf.LocalExecProvisioner | cdktf.RemoteExecProvisioner[] |
No description. |
createTime |
string |
No description. |
effectiveLabels |
cdktf.StringMap |
No description. |
state |
string |
No description. |
stateDetails |
string |
No description. |
terraformLabels |
cdktf.StringMap |
No description. |
timeouts |
NetappActiveDirectoryTimeoutsOutputReference |
No description. |
administratorsInput |
string[] |
No description. |
aesEncryptionInput |
boolean | cdktf.IResolvable |
No description. |
backupOperatorsInput |
string[] |
No description. |
descriptionInput |
string |
No description. |
dnsInput |
string |
No description. |
domainInput |
string |
No description. |
encryptDcConnectionsInput |
boolean | cdktf.IResolvable |
No description. |
idInput |
string |
No description. |
kdcHostnameInput |
string |
No description. |
kdcIpInput |
string |
No description. |
labelsInput |
{[ key: string ]: string} |
No description. |
ldapSigningInput |
boolean | cdktf.IResolvable |
No description. |
locationInput |
string |
No description. |
nameInput |
string |
No description. |
netBiosPrefixInput |
string |
No description. |
nfsUsersWithLdapInput |
boolean | cdktf.IResolvable |
No description. |
organizationalUnitInput |
string |
No description. |
passwordInput |
string |
No description. |
projectInput |
string |
No description. |
securityOperatorsInput |
string[] |
No description. |
siteInput |
string |
No description. |
timeoutsInput |
cdktf.IResolvable | NetappActiveDirectoryTimeouts |
No description. |
usernameInput |
string |
No description. |
administrators |
string[] |
No description. |
aesEncryption |
boolean | cdktf.IResolvable |
No description. |
backupOperators |
string[] |
No description. |
description |
string |
No description. |
dns |
string |
No description. |
domain |
string |
No description. |
encryptDcConnections |
boolean | cdktf.IResolvable |
No description. |
id |
string |
No description. |
kdcHostname |
string |
No description. |
kdcIp |
string |
No description. |
labels |
{[ key: string ]: string} |
No description. |
ldapSigning |
boolean | cdktf.IResolvable |
No description. |
location |
string |
No description. |
name |
string |
No description. |
netBiosPrefix |
string |
No description. |
nfsUsersWithLdap |
boolean | cdktf.IResolvable |
No description. |
organizationalUnit |
string |
No description. |
password |
string |
No description. |
project |
string |
No description. |
securityOperators |
string[] |
No description. |
site |
string |
No description. |
username |
string |
No description. |
public readonly node: Node;
- Type: constructs.Node
The tree node.
public readonly cdktfStack: TerraformStack;
- Type: cdktf.TerraformStack
public readonly fqn: string;
- Type: string
public readonly friendlyUniqueId: string;
- Type: string
public readonly terraformMetaArguments: {[ key: string ]: any};
- Type: {[ key: string ]: any}
public readonly terraformResourceType: string;
- Type: string
public readonly terraformGeneratorMetadata: TerraformProviderGeneratorMetadata;
- Type: cdktf.TerraformProviderGeneratorMetadata
public readonly connection: SSHProvisionerConnection | WinrmProvisionerConnection;
- Type: cdktf.SSHProvisionerConnection | cdktf.WinrmProvisionerConnection
public readonly count: number | TerraformCount;
- Type: number | cdktf.TerraformCount
public readonly dependsOn: string[];
- Type: string[]
public readonly forEach: ITerraformIterator;
- Type: cdktf.ITerraformIterator
public readonly lifecycle: TerraformResourceLifecycle;
- Type: cdktf.TerraformResourceLifecycle
public readonly provider: TerraformProvider;
- Type: cdktf.TerraformProvider
public readonly provisioners: FileProvisioner | LocalExecProvisioner | RemoteExecProvisioner[];
- Type: cdktf.FileProvisioner | cdktf.LocalExecProvisioner | cdktf.RemoteExecProvisioner[]
public readonly createTime: string;
- Type: string
public readonly effectiveLabels: StringMap;
- Type: cdktf.StringMap
public readonly state: string;
- Type: string
public readonly stateDetails: string;
- Type: string
public readonly terraformLabels: StringMap;
- Type: cdktf.StringMap
public readonly timeouts: NetappActiveDirectoryTimeoutsOutputReference;
public readonly administratorsInput: string[];
- Type: string[]
public readonly aesEncryptionInput: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly backupOperatorsInput: string[];
- Type: string[]
public readonly descriptionInput: string;
- Type: string
public readonly dnsInput: string;
- Type: string
public readonly domainInput: string;
- Type: string
public readonly encryptDcConnectionsInput: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly idInput: string;
- Type: string
public readonly kdcHostnameInput: string;
- Type: string
public readonly kdcIpInput: string;
- Type: string
public readonly labelsInput: {[ key: string ]: string};
- Type: {[ key: string ]: string}
public readonly ldapSigningInput: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly locationInput: string;
- Type: string
public readonly nameInput: string;
- Type: string
public readonly netBiosPrefixInput: string;
- Type: string
public readonly nfsUsersWithLdapInput: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly organizationalUnitInput: string;
- Type: string
public readonly passwordInput: string;
- Type: string
public readonly projectInput: string;
- Type: string
public readonly securityOperatorsInput: string[];
- Type: string[]
public readonly siteInput: string;
- Type: string
public readonly timeoutsInput: IResolvable | NetappActiveDirectoryTimeouts;
- Type: cdktf.IResolvable | NetappActiveDirectoryTimeouts
public readonly usernameInput: string;
- Type: string
public readonly administrators: string[];
- Type: string[]
public readonly aesEncryption: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly backupOperators: string[];
- Type: string[]
public readonly description: string;
- Type: string
public readonly dns: string;
- Type: string
public readonly domain: string;
- Type: string
public readonly encryptDcConnections: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly id: string;
- Type: string
public readonly kdcHostname: string;
- Type: string
public readonly kdcIp: string;
- Type: string
public readonly labels: {[ key: string ]: string};
- Type: {[ key: string ]: string}
public readonly ldapSigning: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly location: string;
- Type: string
public readonly name: string;
- Type: string
public readonly netBiosPrefix: string;
- Type: string
public readonly nfsUsersWithLdap: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly organizationalUnit: string;
- Type: string
public readonly password: string;
- Type: string
public readonly project: string;
- Type: string
public readonly securityOperators: string[];
- Type: string[]
public readonly site: string;
- Type: string
public readonly username: string;
- Type: string
Name | Type | Description |
---|---|---|
tfResourceType |
string |
No description. |
public readonly tfResourceType: string;
- Type: string
import { netappActiveDirectory } from '@cdktf/provider-google'
const netappActiveDirectoryConfig: netappActiveDirectory.NetappActiveDirectoryConfig = { ... }
Name | Type | Description |
---|---|---|
connection |
cdktf.SSHProvisionerConnection | cdktf.WinrmProvisionerConnection |
No description. |
count |
number | cdktf.TerraformCount |
No description. |
dependsOn |
cdktf.ITerraformDependable[] |
No description. |
forEach |
cdktf.ITerraformIterator |
No description. |
lifecycle |
cdktf.TerraformResourceLifecycle |
No description. |
provider |
cdktf.TerraformProvider |
No description. |
provisioners |
cdktf.FileProvisioner | cdktf.LocalExecProvisioner | cdktf.RemoteExecProvisioner[] |
No description. |
dns |
string |
Comma separated list of DNS server IP addresses for the Active Directory domain. |
domain |
string |
Fully qualified domain name for the Active Directory domain. |
location |
string |
Name of the region for the policy to apply to. |
name |
string |
The resource name of the Active Directory pool. Needs to be unique per location. |
netBiosPrefix |
string |
NetBIOS name prefix of the server to be created. |
password |
string |
Password for specified username. |
username |
string |
Username for the Active Directory account with permissions to create the compute account within the specified organizational unit. |
administrators |
string[] |
Domain user accounts to be added to the local Administrators group of the SMB service. |
aesEncryption |
boolean | cdktf.IResolvable |
Enables AES-128 and AES-256 encryption for Kerberos-based communication with Active Directory. |
backupOperators |
string[] |
Domain user/group accounts to be added to the Backup Operators group of the SMB service. |
description |
string |
An optional description of this resource. |
encryptDcConnections |
boolean | cdktf.IResolvable |
If enabled, traffic between the SMB server to Domain Controller (DC) will be encrypted. |
id |
string |
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.17.0/docs/resources/netapp_active_directory#id NetappActiveDirectory#id}. |
kdcHostname |
string |
Hostname of the Active Directory server used as Kerberos Key Distribution Center. Only required for volumes using kerberized NFSv4.1. |
kdcIp |
string |
IP address of the Active Directory server used as Kerberos Key Distribution Center. |
labels |
{[ key: string ]: string} |
Labels as key value pairs. Example: '{ "owner": "Bob", "department": "finance", "purpose": "testing" }'. |
ldapSigning |
boolean | cdktf.IResolvable |
Specifies whether or not the LDAP traffic needs to be signed. |
nfsUsersWithLdap |
boolean | cdktf.IResolvable |
Local UNIX users on clients without valid user information in Active Directory are blocked from access to LDAP enabled volumes. |
organizationalUnit |
string |
Name of the Organizational Unit where you intend to create the computer account for NetApp Volumes. |
project |
string |
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.17.0/docs/resources/netapp_active_directory#project NetappActiveDirectory#project}. |
securityOperators |
string[] |
Domain accounts that require elevated privileges such as 'SeSecurityPrivilege' to manage security logs. Comma-separated list. |
site |
string |
Specifies an Active Directory site to manage domain controller selection. |
timeouts |
NetappActiveDirectoryTimeouts |
timeouts block. |
public readonly connection: SSHProvisionerConnection | WinrmProvisionerConnection;
- Type: cdktf.SSHProvisionerConnection | cdktf.WinrmProvisionerConnection
public readonly count: number | TerraformCount;
- Type: number | cdktf.TerraformCount
public readonly dependsOn: ITerraformDependable[];
- Type: cdktf.ITerraformDependable[]
public readonly forEach: ITerraformIterator;
- Type: cdktf.ITerraformIterator
public readonly lifecycle: TerraformResourceLifecycle;
- Type: cdktf.TerraformResourceLifecycle
public readonly provider: TerraformProvider;
- Type: cdktf.TerraformProvider
public readonly provisioners: FileProvisioner | LocalExecProvisioner | RemoteExecProvisioner[];
- Type: cdktf.FileProvisioner | cdktf.LocalExecProvisioner | cdktf.RemoteExecProvisioner[]
public readonly dns: string;
- Type: string
Comma separated list of DNS server IP addresses for the Active Directory domain.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.17.0/docs/resources/netapp_active_directory#dns NetappActiveDirectory#dns}
public readonly domain: string;
- Type: string
Fully qualified domain name for the Active Directory domain.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.17.0/docs/resources/netapp_active_directory#domain NetappActiveDirectory#domain}
public readonly location: string;
- Type: string
Name of the region for the policy to apply to.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.17.0/docs/resources/netapp_active_directory#location NetappActiveDirectory#location}
public readonly name: string;
- Type: string
The resource name of the Active Directory pool. Needs to be unique per location.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.17.0/docs/resources/netapp_active_directory#name NetappActiveDirectory#name}
public readonly netBiosPrefix: string;
- Type: string
NetBIOS name prefix of the server to be created.
A five-character random ID is generated automatically, for example, -6f9a, and appended to the prefix. The full UNC share path will have the following format: '\NetBIOS_PREFIX-ABCD.DOMAIN_NAME\SHARE_NAME'
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.17.0/docs/resources/netapp_active_directory#net_bios_prefix NetappActiveDirectory#net_bios_prefix}
public readonly password: string;
- Type: string
Password for specified username.
Note - Manual changes done to the password will not be detected. Terraform will not re-apply the password, unless you use a new password in Terraform.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.17.0/docs/resources/netapp_active_directory#password NetappActiveDirectory#password}
public readonly username: string;
- Type: string
Username for the Active Directory account with permissions to create the compute account within the specified organizational unit.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.17.0/docs/resources/netapp_active_directory#username NetappActiveDirectory#username}
public readonly administrators: string[];
- Type: string[]
Domain user accounts to be added to the local Administrators group of the SMB service.
Comma-separated list of domain users or groups. The Domain Admin group is automatically added when the service joins your domain as a hidden group.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.17.0/docs/resources/netapp_active_directory#administrators NetappActiveDirectory#administrators}
public readonly aesEncryption: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
Enables AES-128 and AES-256 encryption for Kerberos-based communication with Active Directory.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.17.0/docs/resources/netapp_active_directory#aes_encryption NetappActiveDirectory#aes_encryption}
public readonly backupOperators: string[];
- Type: string[]
Domain user/group accounts to be added to the Backup Operators group of the SMB service.
The Backup Operators group allows members to backup and restore files regardless of whether they have read or write access to the files. Comma-separated list.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.17.0/docs/resources/netapp_active_directory#backup_operators NetappActiveDirectory#backup_operators}
public readonly description: string;
- Type: string
An optional description of this resource.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.17.0/docs/resources/netapp_active_directory#description NetappActiveDirectory#description}
public readonly encryptDcConnections: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
If enabled, traffic between the SMB server to Domain Controller (DC) will be encrypted.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.17.0/docs/resources/netapp_active_directory#encrypt_dc_connections NetappActiveDirectory#encrypt_dc_connections}
public readonly id: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.17.0/docs/resources/netapp_active_directory#id NetappActiveDirectory#id}.
Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.
public readonly kdcHostname: string;
- Type: string
Hostname of the Active Directory server used as Kerberos Key Distribution Center. Only required for volumes using kerberized NFSv4.1.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.17.0/docs/resources/netapp_active_directory#kdc_hostname NetappActiveDirectory#kdc_hostname}
public readonly kdcIp: string;
- Type: string
IP address of the Active Directory server used as Kerberos Key Distribution Center.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.17.0/docs/resources/netapp_active_directory#kdc_ip NetappActiveDirectory#kdc_ip}
public readonly labels: {[ key: string ]: string};
- Type: {[ key: string ]: string}
Labels as key value pairs. Example: '{ "owner": "Bob", "department": "finance", "purpose": "testing" }'.
Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field 'effective_labels' for all of the labels present on the resource.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.17.0/docs/resources/netapp_active_directory#labels NetappActiveDirectory#labels}
public readonly ldapSigning: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
Specifies whether or not the LDAP traffic needs to be signed.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.17.0/docs/resources/netapp_active_directory#ldap_signing NetappActiveDirectory#ldap_signing}
public readonly nfsUsersWithLdap: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
Local UNIX users on clients without valid user information in Active Directory are blocked from access to LDAP enabled volumes.
This option can be used to temporarily switch such volumes to AUTH_SYS authentication (user ID + 1-16 groups).
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.17.0/docs/resources/netapp_active_directory#nfs_users_with_ldap NetappActiveDirectory#nfs_users_with_ldap}
public readonly organizationalUnit: string;
- Type: string
Name of the Organizational Unit where you intend to create the computer account for NetApp Volumes.
Defaults to 'CN=Computers' if left empty.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.17.0/docs/resources/netapp_active_directory#organizational_unit NetappActiveDirectory#organizational_unit}
public readonly project: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.17.0/docs/resources/netapp_active_directory#project NetappActiveDirectory#project}.
public readonly securityOperators: string[];
- Type: string[]
Domain accounts that require elevated privileges such as 'SeSecurityPrivilege' to manage security logs. Comma-separated list.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.17.0/docs/resources/netapp_active_directory#security_operators NetappActiveDirectory#security_operators}
public readonly site: string;
- Type: string
Specifies an Active Directory site to manage domain controller selection.
Use when Active Directory domain controllers in multiple regions are configured. Defaults to 'Default-First-Site-Name' if left empty.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.17.0/docs/resources/netapp_active_directory#site NetappActiveDirectory#site}
public readonly timeouts: NetappActiveDirectoryTimeouts;
timeouts block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.17.0/docs/resources/netapp_active_directory#timeouts NetappActiveDirectory#timeouts}
import { netappActiveDirectory } from '@cdktf/provider-google'
const netappActiveDirectoryTimeouts: netappActiveDirectory.NetappActiveDirectoryTimeouts = { ... }
Name | Type | Description |
---|---|---|
create |
string |
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.17.0/docs/resources/netapp_active_directory#create NetappActiveDirectory#create}. |
delete |
string |
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.17.0/docs/resources/netapp_active_directory#delete NetappActiveDirectory#delete}. |
update |
string |
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.17.0/docs/resources/netapp_active_directory#update NetappActiveDirectory#update}. |
public readonly create: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.17.0/docs/resources/netapp_active_directory#create NetappActiveDirectory#create}.
public readonly delete: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.17.0/docs/resources/netapp_active_directory#delete NetappActiveDirectory#delete}.
public readonly update: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.17.0/docs/resources/netapp_active_directory#update NetappActiveDirectory#update}.
import { netappActiveDirectory } from '@cdktf/provider-google'
new netappActiveDirectory.NetappActiveDirectoryTimeoutsOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
Name | Description |
---|---|
computeFqn |
No description. |
getAnyMapAttribute |
No description. |
getBooleanAttribute |
No description. |
getBooleanMapAttribute |
No description. |
getListAttribute |
No description. |
getNumberAttribute |
No description. |
getNumberListAttribute |
No description. |
getNumberMapAttribute |
No description. |
getStringAttribute |
No description. |
getStringMapAttribute |
No description. |
interpolationForAttribute |
No description. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
resetCreate |
No description. |
resetDelete |
No description. |
resetUpdate |
No description. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
public resetCreate(): void
public resetDelete(): void
public resetUpdate(): void
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
createInput |
string |
No description. |
deleteInput |
string |
No description. |
updateInput |
string |
No description. |
create |
string |
No description. |
delete |
string |
No description. |
update |
string |
No description. |
internalValue |
cdktf.IResolvable | NetappActiveDirectoryTimeouts |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
public readonly createInput: string;
- Type: string
public readonly deleteInput: string;
- Type: string
public readonly updateInput: string;
- Type: string
public readonly create: string;
- Type: string
public readonly delete: string;
- Type: string
public readonly update: string;
- Type: string
public readonly internalValue: IResolvable | NetappActiveDirectoryTimeouts;
- Type: cdktf.IResolvable | NetappActiveDirectoryTimeouts