@pulumi/digitalocean 4.35.0 → 4.35.1

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.
@@ -87,7 +87,7 @@ export declare class DatabaseOpensearchConfig extends pulumi.CustomResource {
87
87
  */
88
88
  static isInstance(obj: any): obj is DatabaseOpensearchConfig;
89
89
  /**
90
- * Specifies whether ISM is enabled or not. Default: `true`
90
+ * Specifices whether to allow automatic creation of indices. Default: `true`
91
91
  */
92
92
  readonly actionAutoCreateIndexEnabled: pulumi.Output<boolean>;
93
93
  /**
@@ -256,7 +256,7 @@ export declare class DatabaseOpensearchConfig extends pulumi.CustomResource {
256
256
  */
257
257
  export interface DatabaseOpensearchConfigState {
258
258
  /**
259
- * Specifies whether ISM is enabled or not. Default: `true`
259
+ * Specifices whether to allow automatic creation of indices. Default: `true`
260
260
  */
261
261
  actionAutoCreateIndexEnabled?: pulumi.Input<boolean>;
262
262
  /**
@@ -417,7 +417,7 @@ export interface DatabaseOpensearchConfigState {
417
417
  */
418
418
  export interface DatabaseOpensearchConfigArgs {
419
419
  /**
420
- * Specifies whether ISM is enabled or not. Default: `true`
420
+ * Specifices whether to allow automatic creation of indices. Default: `true`
421
421
  */
422
422
  actionAutoCreateIndexEnabled?: pulumi.Input<boolean>;
423
423
  /**
package/droplet.d.ts CHANGED
@@ -171,7 +171,7 @@ export declare class Droplet extends pulumi.CustomResource {
171
171
  */
172
172
  readonly tags: pulumi.Output<string[] | undefined>;
173
173
  /**
174
- * A string of the desired User Data for the Droplet.
174
+ * A string of the desired User Data provided [during Droplet creation](https://docs.digitalocean.com/products/droplets/how-to/provide-user-data/). Changing this forces a new resource to be created.
175
175
  */
176
176
  readonly userData: pulumi.Output<string | undefined>;
177
177
  /**
@@ -319,7 +319,7 @@ export interface DropletState {
319
319
  */
320
320
  tags?: pulumi.Input<pulumi.Input<string>[]>;
321
321
  /**
322
- * A string of the desired User Data for the Droplet.
322
+ * A string of the desired User Data provided [during Droplet creation](https://docs.digitalocean.com/products/droplets/how-to/provide-user-data/). Changing this forces a new resource to be created.
323
323
  */
324
324
  userData?: pulumi.Input<string>;
325
325
  /**
@@ -425,7 +425,7 @@ export interface DropletArgs {
425
425
  */
426
426
  tags?: pulumi.Input<pulumi.Input<string>[]>;
427
427
  /**
428
- * A string of the desired User Data for the Droplet.
428
+ * A string of the desired User Data provided [during Droplet creation](https://docs.digitalocean.com/products/droplets/how-to/provide-user-data/). Changing this forces a new resource to be created.
429
429
  */
430
430
  userData?: pulumi.Input<string>;
431
431
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/digitalocean",
3
- "version": "4.35.0",
3
+ "version": "4.35.1",
4
4
  "description": "A Pulumi package for creating and managing DigitalOcean cloud resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -25,6 +25,6 @@
25
25
  "pulumi": {
26
26
  "resource": true,
27
27
  "name": "digitalocean",
28
- "version": "4.35.0"
28
+ "version": "4.35.1"
29
29
  }
30
30
  }