Skip to content

Commit 36e1c08

Browse files
authored
Merge pull request #122 from pulumi/stack72/v1.13.0
Upgrade to v1.13.0 of the Postgresql Terraform Provider
2 parents 6eb8d19 + ced3867 commit 36e1c08

File tree

8 files changed

+25
-41
lines changed

8 files changed

+25
-41
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## HEAD (Unreleased)
2-
_(none)_
2+
* Upgrade to v1.13.0 Postgresql Terraform Provider
33

44
---
55

provider/cmd/pulumi-resource-postgresql/schema.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -660,7 +660,7 @@
660660
},
661661
"dropCascade": {
662662
"type": "boolean",
663-
"description": "When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those\nobjects\n"
663+
"description": "When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those objects. (Default: false)\n"
664664
},
665665
"name": {
666666
"type": "string",
@@ -688,7 +688,7 @@
688688
},
689689
"dropCascade": {
690690
"type": "boolean",
691-
"description": "When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those\nobjects\n"
691+
"description": "When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those objects. (Default: false)\n"
692692
},
693693
"name": {
694694
"type": "string",
@@ -712,7 +712,7 @@
712712
},
713713
"dropCascade": {
714714
"type": "boolean",
715-
"description": "When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those\nobjects\n"
715+
"description": "When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those objects. (Default: false)\n"
716716
},
717717
"name": {
718718
"type": "string",

provider/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ require (
1010
github.com/pulumi/pulumi/sdk/v3 v3.0.0
1111
)
1212

13-
replace github.com/cyrilgdn/terraform-provider-postgresql => github.com/pulumi/terraform-provider-postgresql v1.12.1-0.20210427104043-992355c7085a
13+
replace github.com/cyrilgdn/terraform-provider-postgresql => github.com/pulumi/terraform-provider-postgresql v1.12.1-0.20210521144903-50145d01c91a

provider/go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -715,6 +715,8 @@ github.com/pulumi/terraform-provider-postgresql v1.12.1-0.20210330162646-5e21079
715715
github.com/pulumi/terraform-provider-postgresql v1.12.1-0.20210330162646-5e21079b520e/go.mod h1:AkUW9q5G+E3/IWW2gxKbmN1y9L2AKw1LvPGFG8rtmko=
716716
github.com/pulumi/terraform-provider-postgresql v1.12.1-0.20210427104043-992355c7085a h1:mHZ9sU8Des4bCjkly8CYSQfcC9m4Y6mfF24g0JuRSOo=
717717
github.com/pulumi/terraform-provider-postgresql v1.12.1-0.20210427104043-992355c7085a/go.mod h1:AkUW9q5G+E3/IWW2gxKbmN1y9L2AKw1LvPGFG8rtmko=
718+
github.com/pulumi/terraform-provider-postgresql v1.12.1-0.20210521144903-50145d01c91a h1:4gWyO/dRvNybvzYnQpd20OK7fR3YNMj/yedTc6ancDQ=
719+
github.com/pulumi/terraform-provider-postgresql v1.12.1-0.20210521144903-50145d01c91a/go.mod h1:AkUW9q5G+E3/IWW2gxKbmN1y9L2AKw1LvPGFG8rtmko=
718720
github.com/rjeczalik/notify v0.9.2 h1:MiTWrPj55mNDHEiIX5YUSKefw/+lCQVoAFmD6oQm5w8=
719721
github.com/rjeczalik/notify v0.9.2/go.mod h1:aErll2f0sUX9PXZnVNyeiObbmTlk5jnMoCa4QEjJeqM=
720722
github.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af h1:gu+uRPtBe88sKxUCEXRoeCvVG90TJmwhiqRpvdhQFng=

sdk/dotnet/Extension.cs

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,7 @@ public partial class Extension : Pulumi.CustomResource
4141
public Output<string> Database { get; private set; } = null!;
4242

4343
/// <summary>
44-
/// When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those
45-
/// objects
44+
/// When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those objects. (Default: false)
4645
/// </summary>
4746
[Output("dropCascade")]
4847
public Output<bool?> DropCascade { get; private set; } = null!;
@@ -118,8 +117,7 @@ public sealed class ExtensionArgs : Pulumi.ResourceArgs
118117
public Input<string>? Database { get; set; }
119118

120119
/// <summary>
121-
/// When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those
122-
/// objects
120+
/// When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those objects. (Default: false)
123121
/// </summary>
124122
[Input("dropCascade")]
125123
public Input<bool>? DropCascade { get; set; }
@@ -156,8 +154,7 @@ public sealed class ExtensionState : Pulumi.ResourceArgs
156154
public Input<string>? Database { get; set; }
157155

158156
/// <summary>
159-
/// When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those
160-
/// objects
157+
/// When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those objects. (Default: false)
161158
/// </summary>
162159
[Input("dropCascade")]
163160
public Input<bool>? DropCascade { get; set; }

sdk/go/postgresql/extension.go

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,7 @@ type Extension struct {
3838

3939
// Which database to create the extension on. Defaults to provider database.
4040
Database pulumi.StringOutput `pulumi:"database"`
41-
// When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those
42-
// objects
41+
// When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those objects. (Default: false)
4342
DropCascade pulumi.BoolPtrOutput `pulumi:"dropCascade"`
4443
// The name of the extension.
4544
Name pulumi.StringOutput `pulumi:"name"`
@@ -80,8 +79,7 @@ func GetExtension(ctx *pulumi.Context,
8079
type extensionState struct {
8180
// Which database to create the extension on. Defaults to provider database.
8281
Database *string `pulumi:"database"`
83-
// When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those
84-
// objects
82+
// When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those objects. (Default: false)
8583
DropCascade *bool `pulumi:"dropCascade"`
8684
// The name of the extension.
8785
Name *string `pulumi:"name"`
@@ -94,8 +92,7 @@ type extensionState struct {
9492
type ExtensionState struct {
9593
// Which database to create the extension on. Defaults to provider database.
9694
Database pulumi.StringPtrInput
97-
// When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those
98-
// objects
95+
// When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those objects. (Default: false)
9996
DropCascade pulumi.BoolPtrInput
10097
// The name of the extension.
10198
Name pulumi.StringPtrInput
@@ -112,8 +109,7 @@ func (ExtensionState) ElementType() reflect.Type {
112109
type extensionArgs struct {
113110
// Which database to create the extension on. Defaults to provider database.
114111
Database *string `pulumi:"database"`
115-
// When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those
116-
// objects
112+
// When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those objects. (Default: false)
117113
DropCascade *bool `pulumi:"dropCascade"`
118114
// The name of the extension.
119115
Name *string `pulumi:"name"`
@@ -127,8 +123,7 @@ type extensionArgs struct {
127123
type ExtensionArgs struct {
128124
// Which database to create the extension on. Defaults to provider database.
129125
Database pulumi.StringPtrInput
130-
// When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those
131-
// objects
126+
// When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those objects. (Default: false)
132127
DropCascade pulumi.BoolPtrInput
133128
// The name of the extension.
134129
Name pulumi.StringPtrInput

sdk/nodejs/extension.ts

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,7 @@ export class Extension extends pulumi.CustomResource {
5050
*/
5151
public readonly database!: pulumi.Output<string>;
5252
/**
53-
* When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those
54-
* objects
53+
* When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those objects. (Default: false)
5554
*/
5655
public readonly dropCascade!: pulumi.Output<boolean | undefined>;
5756
/**
@@ -109,8 +108,7 @@ export interface ExtensionState {
109108
*/
110109
readonly database?: pulumi.Input<string>;
111110
/**
112-
* When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those
113-
* objects
111+
* When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those objects. (Default: false)
114112
*/
115113
readonly dropCascade?: pulumi.Input<boolean>;
116114
/**
@@ -136,8 +134,7 @@ export interface ExtensionArgs {
136134
*/
137135
readonly database?: pulumi.Input<string>;
138136
/**
139-
* When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those
140-
* objects
137+
* When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those objects. (Default: false)
141138
*/
142139
readonly dropCascade?: pulumi.Input<boolean>;
143140
/**

sdk/python/pulumi_postgresql/extension.py

Lines changed: 7 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ def __init__(__self__, *,
2121
"""
2222
The set of arguments for constructing a Extension resource.
2323
:param pulumi.Input[str] database: Which database to create the extension on. Defaults to provider database.
24-
:param pulumi.Input[bool] drop_cascade: When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those
25-
objects
24+
:param pulumi.Input[bool] drop_cascade: When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those objects. (Default: false)
2625
:param pulumi.Input[str] name: The name of the extension.
2726
:param pulumi.Input[str] schema: Sets the schema of an extension.
2827
:param pulumi.Input[str] version: Sets the version number of the extension.
@@ -54,8 +53,7 @@ def database(self, value: Optional[pulumi.Input[str]]):
5453
@pulumi.getter(name="dropCascade")
5554
def drop_cascade(self) -> Optional[pulumi.Input[bool]]:
5655
"""
57-
When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those
58-
objects
56+
When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those objects. (Default: false)
5957
"""
6058
return pulumi.get(self, "drop_cascade")
6159

@@ -111,8 +109,7 @@ def __init__(__self__, *,
111109
"""
112110
Input properties used for looking up and filtering Extension resources.
113111
:param pulumi.Input[str] database: Which database to create the extension on. Defaults to provider database.
114-
:param pulumi.Input[bool] drop_cascade: When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those
115-
objects
112+
:param pulumi.Input[bool] drop_cascade: When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those objects. (Default: false)
116113
:param pulumi.Input[str] name: The name of the extension.
117114
:param pulumi.Input[str] schema: Sets the schema of an extension.
118115
:param pulumi.Input[str] version: Sets the version number of the extension.
@@ -144,8 +141,7 @@ def database(self, value: Optional[pulumi.Input[str]]):
144141
@pulumi.getter(name="dropCascade")
145142
def drop_cascade(self) -> Optional[pulumi.Input[bool]]:
146143
"""
147-
When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those
148-
objects
144+
When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those objects. (Default: false)
149145
"""
150146
return pulumi.get(self, "drop_cascade")
151147

@@ -217,8 +213,7 @@ def __init__(__self__,
217213
:param str resource_name: The name of the resource.
218214
:param pulumi.ResourceOptions opts: Options for the resource.
219215
:param pulumi.Input[str] database: Which database to create the extension on. Defaults to provider database.
220-
:param pulumi.Input[bool] drop_cascade: When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those
221-
objects
216+
:param pulumi.Input[bool] drop_cascade: When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those objects. (Default: false)
222217
:param pulumi.Input[str] name: The name of the extension.
223218
:param pulumi.Input[str] schema: Sets the schema of an extension.
224219
:param pulumi.Input[str] version: Sets the version number of the extension.
@@ -302,8 +297,7 @@ def get(resource_name: str,
302297
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
303298
:param pulumi.ResourceOptions opts: Options for the resource.
304299
:param pulumi.Input[str] database: Which database to create the extension on. Defaults to provider database.
305-
:param pulumi.Input[bool] drop_cascade: When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those
306-
objects
300+
:param pulumi.Input[bool] drop_cascade: When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those objects. (Default: false)
307301
:param pulumi.Input[str] name: The name of the extension.
308302
:param pulumi.Input[str] schema: Sets the schema of an extension.
309303
:param pulumi.Input[str] version: Sets the version number of the extension.
@@ -331,8 +325,7 @@ def database(self) -> pulumi.Output[str]:
331325
@pulumi.getter(name="dropCascade")
332326
def drop_cascade(self) -> pulumi.Output[Optional[bool]]:
333327
"""
334-
When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those
335-
objects
328+
When true, will also drop all the objects that depend on the extension, and in turn all objects that depend on those objects. (Default: false)
336329
"""
337330
return pulumi.get(self, "drop_cascade")
338331

0 commit comments

Comments
 (0)