.requirements/PSNeo4j/0.0.31/PSNeo4j.ConfigSchema.ps1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
[pscustomobject]@{ BaseUri = @{ Type = [string] Default = 'http://127.0.0.1:7474' } Credential = @{ Type = [System.Management.Automation.PSCredential] Default = New-Object System.Management.Automation.PSCredential('neo4j',$(ConvertTo-SecureString 'neo4j' -asPlainText -Force)) } Streaming = @{ Type = [System.Boolean] Default = $True } As = @{ Type = [string] Default = 'Parsed' } MetaProperties = @{ Type = [System.String[]] Default = 'type' } MergePrefix = @{ Type = [string] Default = 'Neo4j' } ParseDate = @{ Type = [string] Default = 'NoParse' } } |