@pulumi/postgresql 3.12.0-alpha.1710996936 → 3.12.0-alpha.1711030252

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/postgresql",
3
- "version": "v3.12.0-alpha.1710996936+e12adafc",
3
+ "version": "v3.12.0-alpha.1711030252+6e6361de",
4
4
  "description": "A Pulumi package for creating and managing postgresql cloud resources.",
5
5
  "keywords": [
6
6
  "pulumi",
package/provider.d.ts CHANGED
@@ -47,7 +47,7 @@ export declare class Provider extends pulumi.ProviderResource {
47
47
  readonly password: pulumi.Output<string | undefined>;
48
48
  readonly scheme: pulumi.Output<string | undefined>;
49
49
  /**
50
- * @deprecated Rename PostgreSQL provider `ssl_mode` attribute to `sslmode`
50
+ * @deprecated Rename PostgreSQL provider `sslMode` attribute to `sslmode`
51
51
  */
52
52
  readonly sslMode: pulumi.Output<string | undefined>;
53
53
  /**
@@ -137,7 +137,7 @@ export interface ProviderArgs {
137
137
  port?: pulumi.Input<number>;
138
138
  scheme?: pulumi.Input<string>;
139
139
  /**
140
- * @deprecated Rename PostgreSQL provider `ssl_mode` attribute to `sslmode`
140
+ * @deprecated Rename PostgreSQL provider `sslMode` attribute to `sslmode`
141
141
  */
142
142
  sslMode?: pulumi.Input<string>;
143
143
  /**
package/role.d.ts CHANGED
@@ -42,7 +42,7 @@ export declare class Role extends pulumi.CustomResource {
42
42
  */
43
43
  readonly createRole: pulumi.Output<boolean | undefined>;
44
44
  /**
45
- * @deprecated Rename PostgreSQL role resource attribute "encrypted" to "encrypted_password"
45
+ * @deprecated Rename PostgreSQL role resource attribute "encrypted" to "encryptedPassword"
46
46
  */
47
47
  readonly encrypted: pulumi.Output<string | undefined>;
48
48
  /**
@@ -173,7 +173,7 @@ export interface RoleState {
173
173
  */
174
174
  createRole?: pulumi.Input<boolean>;
175
175
  /**
176
- * @deprecated Rename PostgreSQL role resource attribute "encrypted" to "encrypted_password"
176
+ * @deprecated Rename PostgreSQL role resource attribute "encrypted" to "encryptedPassword"
177
177
  */
178
178
  encrypted?: pulumi.Input<string>;
179
179
  /**
@@ -296,7 +296,7 @@ export interface RoleArgs {
296
296
  */
297
297
  createRole?: pulumi.Input<boolean>;
298
298
  /**
299
- * @deprecated Rename PostgreSQL role resource attribute "encrypted" to "encrypted_password"
299
+ * @deprecated Rename PostgreSQL role resource attribute "encrypted" to "encryptedPassword"
300
300
  */
301
301
  encrypted?: pulumi.Input<string>;
302
302
  /**
package/schema.d.ts CHANGED
@@ -42,7 +42,7 @@ export declare class Schema extends pulumi.CustomResource {
42
42
  * Can be specified multiple times for each policy. Each
43
43
  * policy block supports fields documented below.
44
44
  *
45
- * @deprecated Use postgresql_grant resource instead (with object_type="schema")
45
+ * @deprecated Use postgresql.Grant resource instead (with object_type="schema")
46
46
  */
47
47
  readonly policies: pulumi.Output<outputs.SchemaPolicy[]>;
48
48
  /**
@@ -83,7 +83,7 @@ export interface SchemaState {
83
83
  * Can be specified multiple times for each policy. Each
84
84
  * policy block supports fields documented below.
85
85
  *
86
- * @deprecated Use postgresql_grant resource instead (with object_type="schema")
86
+ * @deprecated Use postgresql.Grant resource instead (with object_type="schema")
87
87
  */
88
88
  policies?: pulumi.Input<pulumi.Input<inputs.SchemaPolicy>[]>;
89
89
  }
@@ -116,7 +116,7 @@ export interface SchemaArgs {
116
116
  * Can be specified multiple times for each policy. Each
117
117
  * policy block supports fields documented below.
118
118
  *
119
- * @deprecated Use postgresql_grant resource instead (with object_type="schema")
119
+ * @deprecated Use postgresql.Grant resource instead (with object_type="schema")
120
120
  */
121
121
  policies?: pulumi.Input<pulumi.Input<inputs.SchemaPolicy>[]>;
122
122
  }