|
7 | 7 | ], |
8 | 8 | "homepage": "https://pulumi.io", |
9 | 9 | "license": "Apache-2.0", |
10 | | - "attribution": "This Pulumi package is based on the [`postgresql` Terraform Provider](https://github.com/terraform-providers/terraform-provider-postgresql).", |
| 10 | + "attribution": "This Pulumi package is based on the [`postgresql` Terraform Provider](https://github.com/cyrilgdn/terraform-provider-postgresql).", |
11 | 11 | "repository": "https://github.com/pulumi/pulumi-postgresql", |
12 | 12 | "meta": { |
13 | 13 | "moduleFormat": "(.*)(?:/[^/]*)" |
|
434 | 434 | "schema": { |
435 | 435 | "type": "string", |
436 | 436 | "description": "The database schema to set default privileges for this role\n" |
| 437 | + }, |
| 438 | + "withGrantOption": { |
| 439 | + "type": "boolean", |
| 440 | + "description": "Permit the grant recipient to grant it to others\n" |
437 | 441 | } |
438 | 442 | }, |
439 | 443 | "required": [ |
440 | 444 | "database", |
441 | 445 | "objectType", |
442 | 446 | "owner", |
443 | 447 | "privileges", |
444 | | - "role", |
445 | | - "schema" |
| 448 | + "role" |
446 | 449 | ], |
447 | 450 | "inputProperties": { |
448 | 451 | "database": { |
|
471 | 474 | "schema": { |
472 | 475 | "type": "string", |
473 | 476 | "description": "The database schema to set default privileges for this role\n" |
| 477 | + }, |
| 478 | + "withGrantOption": { |
| 479 | + "type": "boolean", |
| 480 | + "description": "Permit the grant recipient to grant it to others\n" |
474 | 481 | } |
475 | 482 | }, |
476 | 483 | "requiredInputs": [ |
477 | 484 | "database", |
478 | 485 | "objectType", |
479 | 486 | "owner", |
480 | 487 | "privileges", |
481 | | - "role", |
482 | | - "schema" |
| 488 | + "role" |
483 | 489 | ], |
484 | 490 | "stateInputs": { |
485 | 491 | "description": "Input properties used for looking up and filtering DefaultPrivileg resources.\n", |
|
510 | 516 | "schema": { |
511 | 517 | "type": "string", |
512 | 518 | "description": "The database schema to set default privileges for this role\n" |
| 519 | + }, |
| 520 | + "withGrantOption": { |
| 521 | + "type": "boolean", |
| 522 | + "description": "Permit the grant recipient to grant it to others\n" |
513 | 523 | } |
514 | 524 | }, |
515 | 525 | "type": "object" |
|
545 | 555 | "schema": { |
546 | 556 | "type": "string", |
547 | 557 | "description": "The database schema to set default privileges for this role.\n" |
| 558 | + }, |
| 559 | + "withGrantOption": { |
| 560 | + "type": "boolean", |
| 561 | + "description": "Permit the grant recipient to grant it to others\n" |
548 | 562 | } |
549 | 563 | }, |
550 | 564 | "required": [ |
551 | 565 | "database", |
552 | 566 | "objectType", |
553 | 567 | "owner", |
554 | 568 | "privileges", |
555 | | - "role", |
556 | | - "schema" |
| 569 | + "role" |
557 | 570 | ], |
558 | 571 | "inputProperties": { |
559 | 572 | "database": { |
|
582 | 595 | "schema": { |
583 | 596 | "type": "string", |
584 | 597 | "description": "The database schema to set default privileges for this role.\n" |
| 598 | + }, |
| 599 | + "withGrantOption": { |
| 600 | + "type": "boolean", |
| 601 | + "description": "Permit the grant recipient to grant it to others\n" |
585 | 602 | } |
586 | 603 | }, |
587 | 604 | "requiredInputs": [ |
588 | 605 | "database", |
589 | 606 | "objectType", |
590 | 607 | "owner", |
591 | 608 | "privileges", |
592 | | - "role", |
593 | | - "schema" |
| 609 | + "role" |
594 | 610 | ], |
595 | 611 | "stateInputs": { |
596 | 612 | "description": "Input properties used for looking up and filtering DefaultPrivileges resources.\n", |
|
621 | 637 | "schema": { |
622 | 638 | "type": "string", |
623 | 639 | "description": "The database schema to set default privileges for this role.\n" |
| 640 | + }, |
| 641 | + "withGrantOption": { |
| 642 | + "type": "boolean", |
| 643 | + "description": "Permit the grant recipient to grant it to others\n" |
624 | 644 | } |
625 | 645 | }, |
626 | 646 | "type": "object" |
|
914 | 934 | "type": "boolean", |
915 | 935 | "description": "Defines whether the password is stored\nencrypted in the system catalogs. Default value is `true`. NOTE: this value\nis always set (to the conservative and safe value), but may interfere with the\nbehavior of\n[PostgreSQL's `password_encryption` setting](https://www.postgresql.org/docs/current/static/runtime-config-connection.html#GUC-PASSWORD-ENCRYPTION).\n" |
916 | 936 | }, |
| 937 | + "idleInTransactionSessionTimeout": { |
| 938 | + "type": "integer", |
| 939 | + "description": "Terminate any session with an open transaction that has been idle for longer than the specified duration in milliseconds\n" |
| 940 | + }, |
917 | 941 | "inherit": { |
918 | 942 | "type": "boolean", |
919 | 943 | "description": "Defines whether a role \"inherits\" the privileges of\nroles it is a member of. Default value is `true`.\n" |
|
997 | 1021 | "type": "boolean", |
998 | 1022 | "description": "Defines whether the password is stored\nencrypted in the system catalogs. Default value is `true`. NOTE: this value\nis always set (to the conservative and safe value), but may interfere with the\nbehavior of\n[PostgreSQL's `password_encryption` setting](https://www.postgresql.org/docs/current/static/runtime-config-connection.html#GUC-PASSWORD-ENCRYPTION).\n" |
999 | 1023 | }, |
| 1024 | + "idleInTransactionSessionTimeout": { |
| 1025 | + "type": "integer", |
| 1026 | + "description": "Terminate any session with an open transaction that has been idle for longer than the specified duration in milliseconds\n" |
| 1027 | + }, |
1000 | 1028 | "inherit": { |
1001 | 1029 | "type": "boolean", |
1002 | 1030 | "description": "Defines whether a role \"inherits\" the privileges of\nroles it is a member of. Default value is `true`.\n" |
|
1079 | 1107 | "type": "boolean", |
1080 | 1108 | "description": "Defines whether the password is stored\nencrypted in the system catalogs. Default value is `true`. NOTE: this value\nis always set (to the conservative and safe value), but may interfere with the\nbehavior of\n[PostgreSQL's `password_encryption` setting](https://www.postgresql.org/docs/current/static/runtime-config-connection.html#GUC-PASSWORD-ENCRYPTION).\n" |
1081 | 1109 | }, |
| 1110 | + "idleInTransactionSessionTimeout": { |
| 1111 | + "type": "integer", |
| 1112 | + "description": "Terminate any session with an open transaction that has been idle for longer than the specified duration in milliseconds\n" |
| 1113 | + }, |
1082 | 1114 | "inherit": { |
1083 | 1115 | "type": "boolean", |
1084 | 1116 | "description": "Defines whether a role \"inherits\" the privileges of\nroles it is a member of. Default value is `true`.\n" |
|
1265 | 1297 | "disableUnionOutputTypes": true, |
1266 | 1298 | "packageDescription": "A Pulumi package for creating and managing postgresql cloud resources.", |
1267 | 1299 | "packageName": "", |
1268 | | - "readme": "\u003e This provider is a derived work of the [Terraform Provider](https://github.com/terraform-providers/terraform-provider-postgresql)\n\u003e distributed under [MPL 2.0](https://www.mozilla.org/en-US/MPL/2.0/). If you encounter a bug or missing feature,\n\u003e first check the [`pulumi/pulumi-postgresql` repo](https://github.com/pulumi/pulumi-postgresql/issues); however, if that doesn't turn up anything,\n\u003e please consult the source [`terraform-providers/terraform-provider-postgresql` repo](https://github.com/terraform-providers/terraform-provider-postgresql/issues).", |
| 1300 | + "readme": "\u003e This provider is a derived work of the [Terraform Provider](https://github.com/cyrilgdn/terraform-provider-postgresql)\n\u003e distributed under [MPL 2.0](https://www.mozilla.org/en-US/MPL/2.0/). If you encounter a bug or missing feature,\n\u003e first check the [`pulumi/pulumi-postgresql` repo](https://github.com/pulumi/pulumi-postgresql/issues); however, if that doesn't turn up anything,\n\u003e please consult the source [`cyrilgdn/terraform-provider-postgresql` repo](https://github.com/cyrilgdn/terraform-provider-postgresql/issues).", |
1269 | 1301 | "typescriptVersion": "" |
1270 | 1302 | }, |
1271 | 1303 | "python": { |
1272 | | - "readme": "\u003e This provider is a derived work of the [Terraform Provider](https://github.com/terraform-providers/terraform-provider-postgresql)\n\u003e distributed under [MPL 2.0](https://www.mozilla.org/en-US/MPL/2.0/). If you encounter a bug or missing feature,\n\u003e first check the [`pulumi/pulumi-postgresql` repo](https://github.com/pulumi/pulumi-postgresql/issues); however, if that doesn't turn up anything,\n\u003e please consult the source [`terraform-providers/terraform-provider-postgresql` repo](https://github.com/terraform-providers/terraform-provider-postgresql/issues).", |
| 1304 | + "readme": "\u003e This provider is a derived work of the [Terraform Provider](https://github.com/cyrilgdn/terraform-provider-postgresql)\n\u003e distributed under [MPL 2.0](https://www.mozilla.org/en-US/MPL/2.0/). If you encounter a bug or missing feature,\n\u003e first check the [`pulumi/pulumi-postgresql` repo](https://github.com/pulumi/pulumi-postgresql/issues); however, if that doesn't turn up anything,\n\u003e please consult the source [`cyrilgdn/terraform-provider-postgresql` repo](https://github.com/cyrilgdn/terraform-provider-postgresql/issues).", |
1273 | 1305 | "requires": { |
1274 | 1306 | "pulumi": "\u003e=2.15.0,\u003c3.0.0" |
1275 | 1307 | } |
|
0 commit comments