Skip to content

Latest commit

 

History

History
1579 lines (992 loc) · 64.1 KB

passwordPolicy.csharp.md

File metadata and controls

1579 lines (992 loc) · 64.1 KB

passwordPolicy Submodule

Constructs

PasswordPolicy

Represents a {@link https://registry.terraform.io/providers/snowflake-labs/snowflake/0.91.0/docs/resources/password_policy snowflake_password_policy}.

Initializers

using HashiCorp.Cdktf.Providers.Snowflake;

new PasswordPolicy(Construct Scope, string Id, PasswordPolicyConfig Config);
Name Type Description
Scope Constructs.Construct The scope in which to define this construct.
Id string The scoped construct ID.
Config PasswordPolicyConfig No description.

ScopeRequired
  • Type: Constructs.Construct

The scope in which to define this construct.


IdRequired
  • Type: string

The scoped construct ID.

Must be unique amongst siblings in the same scope


ConfigRequired

Methods

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".
ResetComment No description.
ResetHistory No description.
ResetId No description.
ResetIfNotExists No description.
ResetLockoutTimeMins No description.
ResetMaxAgeDays No description.
ResetMaxLength No description.
ResetMaxRetries No description.
ResetMinAgeDays No description.
ResetMinLength No description.
ResetMinLowerCaseChars No description.
ResetMinNumericChars No description.
ResetMinSpecialChars No description.
ResetMinUpperCaseChars No description.
ResetOrReplace No description.

ToString
private string ToString()

Returns a string representation of this construct.

AddOverride
private void AddOverride(string Path, object Value)
PathRequired
  • Type: string

ValueRequired
  • Type: object

OverrideLogicalId
private void OverrideLogicalId(string NewLogicalId)

Overrides the auto-generated logical ID with a specific ID.

NewLogicalIdRequired
  • Type: string

The new logical ID to use for this stack element.


ResetOverrideLogicalId
private void ResetOverrideLogicalId()

Resets a previously passed logical Id to use the auto-generated logical id again.

ToHclTerraform
private object ToHclTerraform()
ToMetadata
private object ToMetadata()
ToTerraform
private object ToTerraform()

Adds this resource to the terraform JSON output.

AddMoveTarget
private void AddMoveTarget(string MoveTarget)

Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.

MoveTargetRequired
  • Type: string

The string move target that will correspond to this resource.


GetAnyMapAttribute
private System.Collections.Generic.IDictionary<string, object> GetAnyMapAttribute(string TerraformAttribute)
TerraformAttributeRequired
  • Type: string

GetBooleanAttribute
private IResolvable GetBooleanAttribute(string TerraformAttribute)
TerraformAttributeRequired
  • Type: string

GetBooleanMapAttribute
private System.Collections.Generic.IDictionary<string, bool> GetBooleanMapAttribute(string TerraformAttribute)
TerraformAttributeRequired
  • Type: string

GetListAttribute
private string[] GetListAttribute(string TerraformAttribute)
TerraformAttributeRequired
  • Type: string

GetNumberAttribute
private double GetNumberAttribute(string TerraformAttribute)
TerraformAttributeRequired
  • Type: string

GetNumberListAttribute
private double[] GetNumberListAttribute(string TerraformAttribute)
TerraformAttributeRequired
  • Type: string

GetNumberMapAttribute
private System.Collections.Generic.IDictionary<string, double> GetNumberMapAttribute(string TerraformAttribute)
TerraformAttributeRequired
  • Type: string

GetStringAttribute
private string GetStringAttribute(string TerraformAttribute)
TerraformAttributeRequired
  • Type: string

GetStringMapAttribute
private System.Collections.Generic.IDictionary<string, string> GetStringMapAttribute(string TerraformAttribute)
TerraformAttributeRequired
  • Type: string

HasResourceMove
private object HasResourceMove()
ImportFrom
private void ImportFrom(string Id, TerraformProvider Provider = null)
IdRequired
  • Type: string

ProviderOptional
  • Type: HashiCorp.Cdktf.TerraformProvider

InterpolationForAttribute
private IResolvable InterpolationForAttribute(string TerraformAttribute)
TerraformAttributeRequired
  • Type: string

MoveFromId
private void MoveFromId(string Id)

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.

IdRequired
  • Type: string

Full id of resource being moved from, e.g. "aws_s3_bucket.example".


MoveTo
private void MoveTo(string MoveTarget, object Index = null)

Moves this resource to the target resource given by moveTarget.

MoveTargetRequired
  • Type: string

The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.


IndexOptional
  • Type: object

Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.


MoveToId
private void MoveToId(string Id)

Moves this resource to the resource corresponding to "id".

IdRequired
  • Type: string

Full id of resource to move to, e.g. "aws_s3_bucket.example".


ResetComment
private void ResetComment()
ResetHistory
private void ResetHistory()
ResetId
private void ResetId()
ResetIfNotExists
private void ResetIfNotExists()
ResetLockoutTimeMins
private void ResetLockoutTimeMins()
ResetMaxAgeDays
private void ResetMaxAgeDays()
ResetMaxLength
private void ResetMaxLength()
ResetMaxRetries
private void ResetMaxRetries()
ResetMinAgeDays
private void ResetMinAgeDays()
ResetMinLength
private void ResetMinLength()
ResetMinLowerCaseChars
private void ResetMinLowerCaseChars()
ResetMinNumericChars
private void ResetMinNumericChars()
ResetMinSpecialChars
private void ResetMinSpecialChars()
ResetMinUpperCaseChars
private void ResetMinUpperCaseChars()
ResetOrReplace
private void ResetOrReplace()

Static Functions

Name Description
IsConstruct Checks if x is a construct.
IsTerraformElement No description.
IsTerraformResource No description.
GenerateConfigForImport Generates CDKTF code for importing a PasswordPolicy resource upon running "cdktf plan ".

IsConstruct
using HashiCorp.Cdktf.Providers.Snowflake;

PasswordPolicy.IsConstruct(object X);

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.

XRequired
  • Type: object

Any object.


IsTerraformElement
using HashiCorp.Cdktf.Providers.Snowflake;

PasswordPolicy.IsTerraformElement(object X);
XRequired
  • Type: object

IsTerraformResource
using HashiCorp.Cdktf.Providers.Snowflake;

PasswordPolicy.IsTerraformResource(object X);
XRequired
  • Type: object

GenerateConfigForImport
using HashiCorp.Cdktf.Providers.Snowflake;

PasswordPolicy.GenerateConfigForImport(Construct Scope, string ImportToId, string ImportFromId, TerraformProvider Provider = null);

Generates CDKTF code for importing a PasswordPolicy resource upon running "cdktf plan ".

ScopeRequired
  • Type: Constructs.Construct

The scope in which to define this construct.


ImportToIdRequired
  • Type: string

The construct id used in the generated config for the PasswordPolicy to import.


ImportFromIdRequired
  • Type: string

The id of the existing PasswordPolicy that should be imported.

Refer to the {@link https://registry.terraform.io/providers/snowflake-labs/snowflake/0.91.0/docs/resources/password_policy#import import section} in the documentation of this resource for the id to use


ProviderOptional
  • Type: HashiCorp.Cdktf.TerraformProvider

? Optional instance of the provider where the PasswordPolicy to import is found.


Properties

Name Type Description
Node Constructs.Node The tree node.
CdktfStack HashiCorp.Cdktf.TerraformStack No description.
Fqn string No description.
FriendlyUniqueId string No description.
TerraformMetaArguments System.Collections.Generic.IDictionary<string, object> No description.
TerraformResourceType string No description.
TerraformGeneratorMetadata HashiCorp.Cdktf.TerraformProviderGeneratorMetadata No description.
Connection object No description.
Count object No description.
DependsOn string[] No description.
ForEach HashiCorp.Cdktf.ITerraformIterator No description.
Lifecycle HashiCorp.Cdktf.TerraformResourceLifecycle No description.
Provider HashiCorp.Cdktf.TerraformProvider No description.
Provisioners object[] No description.
QualifiedName string No description.
CommentInput string No description.
DatabaseInput string No description.
HistoryInput double No description.
IdInput string No description.
IfNotExistsInput object No description.
LockoutTimeMinsInput double No description.
MaxAgeDaysInput double No description.
MaxLengthInput double No description.
MaxRetriesInput double No description.
MinAgeDaysInput double No description.
MinLengthInput double No description.
MinLowerCaseCharsInput double No description.
MinNumericCharsInput double No description.
MinSpecialCharsInput double No description.
MinUpperCaseCharsInput double No description.
NameInput string No description.
OrReplaceInput object No description.
SchemaInput string No description.
Comment string No description.
Database string No description.
History double No description.
Id string No description.
IfNotExists object No description.
LockoutTimeMins double No description.
MaxAgeDays double No description.
MaxLength double No description.
MaxRetries double No description.
MinAgeDays double No description.
MinLength double No description.
MinLowerCaseChars double No description.
MinNumericChars double No description.
MinSpecialChars double No description.
MinUpperCaseChars double No description.
Name string No description.
OrReplace object No description.
Schema string No description.

NodeRequired
public Node Node { get; }
  • Type: Constructs.Node

The tree node.


CdktfStackRequired
public TerraformStack CdktfStack { get; }
  • Type: HashiCorp.Cdktf.TerraformStack

FqnRequired
public string Fqn { get; }
  • Type: string

FriendlyUniqueIdRequired
public string FriendlyUniqueId { get; }
  • Type: string

TerraformMetaArgumentsRequired
public System.Collections.Generic.IDictionary<string, object> TerraformMetaArguments { get; }
  • Type: System.Collections.Generic.IDictionary<string, object>

TerraformResourceTypeRequired
public string TerraformResourceType { get; }
  • Type: string

TerraformGeneratorMetadataOptional
public TerraformProviderGeneratorMetadata TerraformGeneratorMetadata { get; }
  • Type: HashiCorp.Cdktf.TerraformProviderGeneratorMetadata

ConnectionOptional
public object Connection { get; }
  • Type: object

CountOptional
public object Count { get; }
  • Type: object

DependsOnOptional
public string[] DependsOn { get; }
  • Type: string[]

ForEachOptional
public ITerraformIterator ForEach { get; }
  • Type: HashiCorp.Cdktf.ITerraformIterator

LifecycleOptional
public TerraformResourceLifecycle Lifecycle { get; }
  • Type: HashiCorp.Cdktf.TerraformResourceLifecycle

ProviderOptional
public TerraformProvider Provider { get; }
  • Type: HashiCorp.Cdktf.TerraformProvider

ProvisionersOptional
public object[] Provisioners { get; }
  • Type: object[]

QualifiedNameRequired
public string QualifiedName { get; }
  • Type: string

CommentInputOptional
public string CommentInput { get; }
  • Type: string

DatabaseInputOptional
public string DatabaseInput { get; }
  • Type: string

HistoryInputOptional
public double HistoryInput { get; }
  • Type: double

IdInputOptional
public string IdInput { get; }
  • Type: string

IfNotExistsInputOptional
public object IfNotExistsInput { get; }
  • Type: object

LockoutTimeMinsInputOptional
public double LockoutTimeMinsInput { get; }
  • Type: double

MaxAgeDaysInputOptional
public double MaxAgeDaysInput { get; }
  • Type: double

MaxLengthInputOptional
public double MaxLengthInput { get; }
  • Type: double

MaxRetriesInputOptional
public double MaxRetriesInput { get; }
  • Type: double

MinAgeDaysInputOptional
public double MinAgeDaysInput { get; }
  • Type: double

MinLengthInputOptional
public double MinLengthInput { get; }
  • Type: double

MinLowerCaseCharsInputOptional
public double MinLowerCaseCharsInput { get; }
  • Type: double

MinNumericCharsInputOptional
public double MinNumericCharsInput { get; }
  • Type: double

MinSpecialCharsInputOptional
public double MinSpecialCharsInput { get; }
  • Type: double

MinUpperCaseCharsInputOptional
public double MinUpperCaseCharsInput { get; }
  • Type: double

NameInputOptional
public string NameInput { get; }
  • Type: string

OrReplaceInputOptional
public object OrReplaceInput { get; }
  • Type: object

SchemaInputOptional
public string SchemaInput { get; }
  • Type: string

CommentRequired
public string Comment { get; }
  • Type: string

DatabaseRequired
public string Database { get; }
  • Type: string

HistoryRequired
public double History { get; }
  • Type: double

IdRequired
public string Id { get; }
  • Type: string

IfNotExistsRequired
public object IfNotExists { get; }
  • Type: object

LockoutTimeMinsRequired
public double LockoutTimeMins { get; }
  • Type: double

MaxAgeDaysRequired
public double MaxAgeDays { get; }
  • Type: double

MaxLengthRequired
public double MaxLength { get; }
  • Type: double

MaxRetriesRequired
public double MaxRetries { get; }
  • Type: double

MinAgeDaysRequired
public double MinAgeDays { get; }
  • Type: double

MinLengthRequired
public double MinLength { get; }
  • Type: double

MinLowerCaseCharsRequired
public double MinLowerCaseChars { get; }
  • Type: double

MinNumericCharsRequired
public double MinNumericChars { get; }
  • Type: double

MinSpecialCharsRequired
public double MinSpecialChars { get; }
  • Type: double

MinUpperCaseCharsRequired
public double MinUpperCaseChars { get; }
  • Type: double

NameRequired
public string Name { get; }
  • Type: string

OrReplaceRequired
public object OrReplace { get; }
  • Type: object

SchemaRequired
public string Schema { get; }
  • Type: string

Constants

Name Type Description
TfResourceType string No description.

TfResourceTypeRequired
public string TfResourceType { get; }
  • Type: string

Structs

PasswordPolicyConfig

Initializer

using HashiCorp.Cdktf.Providers.Snowflake;

new PasswordPolicyConfig {
    object Connection = null,
    object Count = null,
    ITerraformDependable[] DependsOn = null,
    ITerraformIterator ForEach = null,
    TerraformResourceLifecycle Lifecycle = null,
    TerraformProvider Provider = null,
    object[] Provisioners = null,
    string Database,
    string Name,
    string Schema,
    string Comment = null,
    double History = null,
    string Id = null,
    object IfNotExists = null,
    double LockoutTimeMins = null,
    double MaxAgeDays = null,
    double MaxLength = null,
    double MaxRetries = null,
    double MinAgeDays = null,
    double MinLength = null,
    double MinLowerCaseChars = null,
    double MinNumericChars = null,
    double MinSpecialChars = null,
    double MinUpperCaseChars = null,
    object OrReplace = null
};

Properties

Name Type Description
Connection object No description.
Count object No description.
DependsOn HashiCorp.Cdktf.ITerraformDependable[] No description.
ForEach HashiCorp.Cdktf.ITerraformIterator No description.
Lifecycle HashiCorp.Cdktf.TerraformResourceLifecycle No description.
Provider HashiCorp.Cdktf.TerraformProvider No description.
Provisioners object[] No description.
Database string The database this password policy belongs to.
Name string Identifier for the password policy; must be unique for your account.
Schema string The schema this password policy belongs to.
Comment string Adds a comment or overwrites an existing comment for the password policy.
History double Specifies the number of the most recent passwords that Snowflake stores.
Id string Docs at Terraform Registry: {@link https://registry.terraform.io/providers/snowflake-labs/snowflake/0.91.0/docs/resources/password_policy#id PasswordPolicy#id}.
IfNotExists object Prevent overwriting a previous password policy with the same name.
LockoutTimeMins double Specifies the number of minutes the user account will be locked after exhausting the designated number of password retries (i.e. PASSWORD_MAX_RETRIES). Supported range: 1 to 999, inclusive. Default: 15.
MaxAgeDays double Specifies the maximum number of days before the password must be changed.
MaxLength double Specifies the maximum number of characters the password must contain.
MaxRetries double Specifies the maximum number of attempts to enter a password before being locked out.
MinAgeDays double Specifies the number of days the user must wait before a recently changed password can be changed again.
MinLength double Specifies the minimum number of characters the password must contain. Supported range: 8 to 256, inclusive. Default: 8.
MinLowerCaseChars double Specifies the minimum number of lowercase characters the password must contain. Supported range: 0 to 256, inclusive. Default: 1.
MinNumericChars double Specifies the minimum number of numeric characters the password must contain. Supported range: 0 to 256, inclusive. Default: 1.
MinSpecialChars double Specifies the minimum number of special characters the password must contain. Supported range: 0 to 256, inclusive. Default: 1.
MinUpperCaseChars double Specifies the minimum number of uppercase characters the password must contain. Supported range: 0 to 256, inclusive. Default: 1.
OrReplace object Whether to override a previous password policy with the same name.

ConnectionOptional
public object Connection { get; set; }
  • Type: object

CountOptional
public object Count { get; set; }
  • Type: object

DependsOnOptional
public ITerraformDependable[] DependsOn { get; set; }
  • Type: HashiCorp.Cdktf.ITerraformDependable[]

ForEachOptional
public ITerraformIterator ForEach { get; set; }
  • Type: HashiCorp.Cdktf.ITerraformIterator

LifecycleOptional
public TerraformResourceLifecycle Lifecycle { get; set; }
  • Type: HashiCorp.Cdktf.TerraformResourceLifecycle

ProviderOptional
public TerraformProvider Provider { get; set; }
  • Type: HashiCorp.Cdktf.TerraformProvider

ProvisionersOptional
public object[] Provisioners { get; set; }
  • Type: object[]

DatabaseRequired
public string Database { get; set; }
  • Type: string

The database this password policy belongs to.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/snowflake-labs/snowflake/0.91.0/docs/resources/password_policy#database PasswordPolicy#database}


NameRequired
public string Name { get; set; }
  • Type: string

Identifier for the password policy; must be unique for your account.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/snowflake-labs/snowflake/0.91.0/docs/resources/password_policy#name PasswordPolicy#name}


SchemaRequired
public string Schema { get; set; }
  • Type: string

The schema this password policy belongs to.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/snowflake-labs/snowflake/0.91.0/docs/resources/password_policy#schema PasswordPolicy#schema}


CommentOptional
public string Comment { get; set; }
  • Type: string

Adds a comment or overwrites an existing comment for the password policy.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/snowflake-labs/snowflake/0.91.0/docs/resources/password_policy#comment PasswordPolicy#comment}


HistoryOptional
public double History { get; set; }
  • Type: double

Specifies the number of the most recent passwords that Snowflake stores.

These stored passwords cannot be repeated when a user updates their password value. The current password value does not count towards the history. When you increase the history value, Snowflake saves the previous values. When you decrease the value, Snowflake saves the stored values up to that value that is set. For example, if the history value is 8 and you change the history value to 3, Snowflake stores the most recent 3 passwords and deletes the 5 older password values from the history. Default: 0 Max: 24

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/snowflake-labs/snowflake/0.91.0/docs/resources/password_policy#history PasswordPolicy#history}


IdOptional
public string Id { get; set; }
  • Type: string

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/snowflake-labs/snowflake/0.91.0/docs/resources/password_policy#id PasswordPolicy#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.


IfNotExistsOptional
public object IfNotExists { get; set; }
  • Type: object

Prevent overwriting a previous password policy with the same name.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/snowflake-labs/snowflake/0.91.0/docs/resources/password_policy#if_not_exists PasswordPolicy#if_not_exists}


LockoutTimeMinsOptional
public double LockoutTimeMins { get; set; }
  • Type: double

Specifies the number of minutes the user account will be locked after exhausting the designated number of password retries (i.e. PASSWORD_MAX_RETRIES). Supported range: 1 to 999, inclusive. Default: 15.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/snowflake-labs/snowflake/0.91.0/docs/resources/password_policy#lockout_time_mins PasswordPolicy#lockout_time_mins}


MaxAgeDaysOptional
public double MaxAgeDays { get; set; }
  • Type: double

Specifies the maximum number of days before the password must be changed.

Supported range: 0 to 999, inclusive. A value of zero (i.e. 0) indicates that the password does not need to be changed. Snowflake does not recommend choosing this value for a default account-level password policy or for any user-level policy. Instead, choose a value that meets your internal security guidelines. Default: 90, which means the password must be changed every 90 days.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/snowflake-labs/snowflake/0.91.0/docs/resources/password_policy#max_age_days PasswordPolicy#max_age_days}


MaxLengthOptional
public double MaxLength { get; set; }
  • Type: double

Specifies the maximum number of characters the password must contain.

This number must be greater than or equal to the sum of PASSWORD_MIN_LENGTH, PASSWORD_MIN_UPPER_CASE_CHARS, and PASSWORD_MIN_LOWER_CASE_CHARS. Supported range: 8 to 256, inclusive. Default: 256

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/snowflake-labs/snowflake/0.91.0/docs/resources/password_policy#max_length PasswordPolicy#max_length}


MaxRetriesOptional
public double MaxRetries { get; set; }
  • Type: double

Specifies the maximum number of attempts to enter a password before being locked out.

Supported range: 1 to 10, inclusive. Default: 5

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/snowflake-labs/snowflake/0.91.0/docs/resources/password_policy#max_retries PasswordPolicy#max_retries}


MinAgeDaysOptional
public double MinAgeDays { get; set; }
  • Type: double

Specifies the number of days the user must wait before a recently changed password can be changed again.

Supported range: 0 to 999, inclusive. Default: 0

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/snowflake-labs/snowflake/0.91.0/docs/resources/password_policy#min_age_days PasswordPolicy#min_age_days}


MinLengthOptional
public double MinLength { get; set; }
  • Type: double

Specifies the minimum number of characters the password must contain. Supported range: 8 to 256, inclusive. Default: 8.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/snowflake-labs/snowflake/0.91.0/docs/resources/password_policy#min_length PasswordPolicy#min_length}


MinLowerCaseCharsOptional
public double MinLowerCaseChars { get; set; }
  • Type: double

Specifies the minimum number of lowercase characters the password must contain. Supported range: 0 to 256, inclusive. Default: 1.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/snowflake-labs/snowflake/0.91.0/docs/resources/password_policy#min_lower_case_chars PasswordPolicy#min_lower_case_chars}


MinNumericCharsOptional
public double MinNumericChars { get; set; }
  • Type: double

Specifies the minimum number of numeric characters the password must contain. Supported range: 0 to 256, inclusive. Default: 1.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/snowflake-labs/snowflake/0.91.0/docs/resources/password_policy#min_numeric_chars PasswordPolicy#min_numeric_chars}


MinSpecialCharsOptional
public double MinSpecialChars { get; set; }
  • Type: double

Specifies the minimum number of special characters the password must contain. Supported range: 0 to 256, inclusive. Default: 1.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/snowflake-labs/snowflake/0.91.0/docs/resources/password_policy#min_special_chars PasswordPolicy#min_special_chars}


MinUpperCaseCharsOptional
public double MinUpperCaseChars { get; set; }
  • Type: double

Specifies the minimum number of uppercase characters the password must contain. Supported range: 0 to 256, inclusive. Default: 1.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/snowflake-labs/snowflake/0.91.0/docs/resources/password_policy#min_upper_case_chars PasswordPolicy#min_upper_case_chars}


OrReplaceOptional
public object OrReplace { get; set; }
  • Type: object

Whether to override a previous password policy with the same name.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/snowflake-labs/snowflake/0.91.0/docs/resources/password_policy#or_replace PasswordPolicy#or_replace}