You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: provider/cmd/pulumi-resource-postgresql/schema.json
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -660,7 +660,7 @@
660
660
},
661
661
"dropCascade": {
662
662
"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"
664
664
},
665
665
"name": {
666
666
"type": "string",
@@ -688,7 +688,7 @@
688
688
},
689
689
"dropCascade": {
690
690
"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"
692
692
},
693
693
"name": {
694
694
"type": "string",
@@ -712,7 +712,7 @@
712
712
},
713
713
"dropCascade": {
714
714
"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"
Copy file name to clipboardExpand all lines: sdk/python/pulumi_postgresql/extension.py
+7-14Lines changed: 7 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -21,8 +21,7 @@ def __init__(__self__, *,
21
21
"""
22
22
The set of arguments for constructing a Extension resource.
23
23
: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)
26
25
:param pulumi.Input[str] name: The name of the extension.
27
26
:param pulumi.Input[str] schema: Sets the schema of an extension.
28
27
:param pulumi.Input[str] version: Sets the version number of the extension.
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)
59
57
"""
60
58
returnpulumi.get(self, "drop_cascade")
61
59
@@ -111,8 +109,7 @@ def __init__(__self__, *,
111
109
"""
112
110
Input properties used for looking up and filtering Extension resources.
113
111
: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)
116
113
:param pulumi.Input[str] name: The name of the extension.
117
114
:param pulumi.Input[str] schema: Sets the schema of an extension.
118
115
:param pulumi.Input[str] version: Sets the version number of the extension.
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)
149
145
"""
150
146
returnpulumi.get(self, "drop_cascade")
151
147
@@ -217,8 +213,7 @@ def __init__(__self__,
217
213
:param str resource_name: The name of the resource.
218
214
:param pulumi.ResourceOptions opts: Options for the resource.
219
215
: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)
222
217
:param pulumi.Input[str] name: The name of the extension.
223
218
:param pulumi.Input[str] schema: Sets the schema of an extension.
224
219
:param pulumi.Input[str] version: Sets the version number of the extension.
@@ -302,8 +297,7 @@ def get(resource_name: str,
302
297
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
303
298
:param pulumi.ResourceOptions opts: Options for the resource.
304
299
: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)
307
301
:param pulumi.Input[str] name: The name of the extension.
308
302
:param pulumi.Input[str] schema: Sets the schema of an extension.
309
303
:param pulumi.Input[str] version: Sets the version number of the extension.
0 commit comments