|
90 | 90 | }, |
91 | 91 | "database": { |
92 | 92 | "type": "string", |
93 | | - "description": "The name of the database to connect to in order to conenct to (defaults to `postgres`)." |
| 93 | + "description": "The name of the database to connect to in order to connect to (defaults to `postgres`)." |
94 | 94 | }, |
95 | 95 | "databaseUsername": { |
96 | 96 | "type": "string", |
|
347 | 347 | }, |
348 | 348 | "database": { |
349 | 349 | "type": "string", |
350 | | - "description": "The name of the database to connect to in order to conenct to (defaults to `postgres`)." |
| 350 | + "description": "The name of the database to connect to in order to connect to (defaults to `postgres`)." |
351 | 351 | }, |
352 | 352 | "databaseUsername": { |
353 | 353 | "type": "string", |
|
442 | 442 | }, |
443 | 443 | "database": { |
444 | 444 | "type": "string", |
445 | | - "description": "The name of the database to connect to in order to conenct to (defaults to `postgres`)." |
| 445 | + "description": "The name of the database to connect to in order to connect to (defaults to `postgres`)." |
446 | 446 | }, |
447 | 447 | "databaseUsername": { |
448 | 448 | "type": "string", |
|
678 | 678 | }, |
679 | 679 | "objectType": { |
680 | 680 | "type": "string", |
681 | | - "description": "The PostgreSQL object type to set the default privileges on (one of: table, sequence, function, type, schema).\n" |
| 681 | + "description": "The PostgreSQL object type to set the default privileges on (one of: table, sequence, function, routine, type, schema).\n" |
682 | 682 | }, |
683 | 683 | "owner": { |
684 | 684 | "type": "string", |
|
719 | 719 | }, |
720 | 720 | "objectType": { |
721 | 721 | "type": "string", |
722 | | - "description": "The PostgreSQL object type to set the default privileges on (one of: table, sequence, function, type, schema).\n", |
| 722 | + "description": "The PostgreSQL object type to set the default privileges on (one of: table, sequence, function, routine, type, schema).\n", |
723 | 723 | "willReplaceOnChanges": true |
724 | 724 | }, |
725 | 725 | "owner": { |
|
767 | 767 | }, |
768 | 768 | "objectType": { |
769 | 769 | "type": "string", |
770 | | - "description": "The PostgreSQL object type to set the default privileges on (one of: table, sequence, function, type, schema).\n", |
| 770 | + "description": "The PostgreSQL object type to set the default privileges on (one of: table, sequence, function, routine, type, schema).\n", |
771 | 771 | "willReplaceOnChanges": true |
772 | 772 | }, |
773 | 773 | "owner": { |
|
811 | 811 | }, |
812 | 812 | "objectType": { |
813 | 813 | "type": "string", |
814 | | - "description": "The PostgreSQL object type to set the default privileges on (one of: table, sequence, function, type, schema).\n" |
| 814 | + "description": "The PostgreSQL object type to set the default privileges on (one of: table, sequence, function, routine, type, schema).\n" |
815 | 815 | }, |
816 | 816 | "owner": { |
817 | 817 | "type": "string", |
|
852 | 852 | }, |
853 | 853 | "objectType": { |
854 | 854 | "type": "string", |
855 | | - "description": "The PostgreSQL object type to set the default privileges on (one of: table, sequence, function, type, schema).\n", |
| 855 | + "description": "The PostgreSQL object type to set the default privileges on (one of: table, sequence, function, routine, type, schema).\n", |
856 | 856 | "willReplaceOnChanges": true |
857 | 857 | }, |
858 | 858 | "owner": { |
|
900 | 900 | }, |
901 | 901 | "objectType": { |
902 | 902 | "type": "string", |
903 | | - "description": "The PostgreSQL object type to set the default privileges on (one of: table, sequence, function, type, schema).\n", |
| 903 | + "description": "The PostgreSQL object type to set the default privileges on (one of: table, sequence, function, routine, type, schema).\n", |
904 | 904 | "willReplaceOnChanges": true |
905 | 905 | }, |
906 | 906 | "owner": { |
|
1745 | 1745 | "description": "Sets the role's password. A password is only of use\nfor roles having the `login` attribute set to true.\n", |
1746 | 1746 | "secret": true |
1747 | 1747 | }, |
| 1748 | + "passwordWoVersion": { |
| 1749 | + "type": "string", |
| 1750 | + "description": "Prevents applies from updating the role password on every\napply unless the value changes. This version string should be updated whenever you want to\nchange the password specified in `password_wo`. Must be used together with `password_wo`.\nConflicts with `password`.\n" |
| 1751 | + }, |
1748 | 1752 | "replication": { |
1749 | 1753 | "type": "boolean", |
1750 | 1754 | "description": "Defines whether a role is allowed to initiate\nstreaming replication or put the system in and out of backup mode. Default\nvalue is `false`\n" |
|
1769 | 1773 | }, |
1770 | 1774 | "skipReassignOwned": { |
1771 | 1775 | "type": "boolean", |
1772 | | - "description": "When a PostgreSQL ROLE exists in multiple\ndatabases and the ROLE is dropped, a\n[`REASSIGN OWNED`](https://www.postgresql.org/docs/current/static/sql-reassign-owned.html) in\nmust be executed on each of the respective databases before the `DROP ROLE`\ncan be executed to dropped the ROLE from the catalog. This is the first and\nsecond steps taken when removing a ROLE from a database (the second step being\nan implicit\n[`DROP OWNED`](https://www.postgresql.org/docs/current/static/sql-drop-owned.html)).\n" |
| 1776 | + "description": "When a PostgreSQL ROLE exists in multiple\ndatabases and the ROLE is dropped, a\n[`REASSIGN OWNED`](https://www.postgresql.org/docs/current/static/sql-reassign-owned.html) in\nmust be executed on each of the respective databases before the `DROP ROLE`\ncan be executed to drop the ROLE from the catalog. This is the first and\nsecond steps taken when removing a ROLE from a database (the second step being\nan implicit\n[`DROP OWNED`](https://www.postgresql.org/docs/current/static/sql-drop-owned.html)).\n" |
1773 | 1777 | }, |
1774 | 1778 | "statementTimeout": { |
1775 | 1779 | "type": "integer", |
|
1837 | 1841 | "description": "Sets the role's password. A password is only of use\nfor roles having the `login` attribute set to true.\n", |
1838 | 1842 | "secret": true |
1839 | 1843 | }, |
| 1844 | + "passwordWoVersion": { |
| 1845 | + "type": "string", |
| 1846 | + "description": "Prevents applies from updating the role password on every\napply unless the value changes. This version string should be updated whenever you want to\nchange the password specified in `password_wo`. Must be used together with `password_wo`.\nConflicts with `password`.\n" |
| 1847 | + }, |
1840 | 1848 | "replication": { |
1841 | 1849 | "type": "boolean", |
1842 | 1850 | "description": "Defines whether a role is allowed to initiate\nstreaming replication or put the system in and out of backup mode. Default\nvalue is `false`\n" |
|
1861 | 1869 | }, |
1862 | 1870 | "skipReassignOwned": { |
1863 | 1871 | "type": "boolean", |
1864 | | - "description": "When a PostgreSQL ROLE exists in multiple\ndatabases and the ROLE is dropped, a\n[`REASSIGN OWNED`](https://www.postgresql.org/docs/current/static/sql-reassign-owned.html) in\nmust be executed on each of the respective databases before the `DROP ROLE`\ncan be executed to dropped the ROLE from the catalog. This is the first and\nsecond steps taken when removing a ROLE from a database (the second step being\nan implicit\n[`DROP OWNED`](https://www.postgresql.org/docs/current/static/sql-drop-owned.html)).\n" |
| 1872 | + "description": "When a PostgreSQL ROLE exists in multiple\ndatabases and the ROLE is dropped, a\n[`REASSIGN OWNED`](https://www.postgresql.org/docs/current/static/sql-reassign-owned.html) in\nmust be executed on each of the respective databases before the `DROP ROLE`\ncan be executed to drop the ROLE from the catalog. This is the first and\nsecond steps taken when removing a ROLE from a database (the second step being\nan implicit\n[`DROP OWNED`](https://www.postgresql.org/docs/current/static/sql-drop-owned.html)).\n" |
1865 | 1873 | }, |
1866 | 1874 | "statementTimeout": { |
1867 | 1875 | "type": "integer", |
|
1928 | 1936 | "description": "Sets the role's password. A password is only of use\nfor roles having the `login` attribute set to true.\n", |
1929 | 1937 | "secret": true |
1930 | 1938 | }, |
| 1939 | + "passwordWoVersion": { |
| 1940 | + "type": "string", |
| 1941 | + "description": "Prevents applies from updating the role password on every\napply unless the value changes. This version string should be updated whenever you want to\nchange the password specified in `password_wo`. Must be used together with `password_wo`.\nConflicts with `password`.\n" |
| 1942 | + }, |
1931 | 1943 | "replication": { |
1932 | 1944 | "type": "boolean", |
1933 | 1945 | "description": "Defines whether a role is allowed to initiate\nstreaming replication or put the system in and out of backup mode. Default\nvalue is `false`\n" |
|
1952 | 1964 | }, |
1953 | 1965 | "skipReassignOwned": { |
1954 | 1966 | "type": "boolean", |
1955 | | - "description": "When a PostgreSQL ROLE exists in multiple\ndatabases and the ROLE is dropped, a\n[`REASSIGN OWNED`](https://www.postgresql.org/docs/current/static/sql-reassign-owned.html) in\nmust be executed on each of the respective databases before the `DROP ROLE`\ncan be executed to dropped the ROLE from the catalog. This is the first and\nsecond steps taken when removing a ROLE from a database (the second step being\nan implicit\n[`DROP OWNED`](https://www.postgresql.org/docs/current/static/sql-drop-owned.html)).\n" |
| 1967 | + "description": "When a PostgreSQL ROLE exists in multiple\ndatabases and the ROLE is dropped, a\n[`REASSIGN OWNED`](https://www.postgresql.org/docs/current/static/sql-reassign-owned.html) in\nmust be executed on each of the respective databases before the `DROP ROLE`\ncan be executed to drop the ROLE from the catalog. This is the first and\nsecond steps taken when removing a ROLE from a database (the second step being\nan implicit\n[`DROP OWNED`](https://www.postgresql.org/docs/current/static/sql-drop-owned.html)).\n" |
1956 | 1968 | }, |
1957 | 1969 | "statementTimeout": { |
1958 | 1970 | "type": "integer", |
|
0 commit comments