@pulumi/random 4.17.0-alpha.1715235818 → 4.17.0-alpha.1715304675

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/random",
3
- "version": "v4.17.0-alpha.1715235818+0e4425f",
3
+ "version": "v4.17.0-alpha.1715304675+7ebfe49",
4
4
  "description": "A Pulumi package to safely use randomness in Pulumi programs.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -52,7 +52,7 @@ export declare class RandomShuffle extends pulumi.CustomResource {
52
52
  */
53
53
  readonly resultCount: pulumi.Output<number | undefined>;
54
54
  /**
55
- * Random permutation of the list of strings given in `input`. The number of elements is determined by `result_count` if
55
+ * Random permutation of the list of strings given in `input`. The number of elements is determined by `resultCount` if
56
56
  * set, or the number of elements in `input`.
57
57
  */
58
58
  readonly results: pulumi.Output<string[]>;
@@ -88,7 +88,7 @@ export interface RandomShuffleState {
88
88
  */
89
89
  resultCount?: pulumi.Input<number>;
90
90
  /**
91
- * Random permutation of the list of strings given in `input`. The number of elements is determined by `result_count` if
91
+ * Random permutation of the list of strings given in `input`. The number of elements is determined by `resultCount` if
92
92
  * set, or the number of elements in `input`.
93
93
  */
94
94
  results?: pulumi.Input<pulumi.Input<string>[]>;