@pulumi/random 4.14.0-alpha.1693465207 → 4.14.0-alpha.1693954409
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 +2 -2
- package/randomPassword.d.ts +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/random",
|
|
3
|
-
"version": "v4.14.0-alpha.
|
|
3
|
+
"version": "v4.14.0-alpha.1693954409+ecd134b6",
|
|
4
4
|
"description": "A Pulumi package to safely use randomness in Pulumi programs.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"scripts": {
|
|
13
13
|
"build": "tsc",
|
|
14
|
-
"install": "node scripts/install-pulumi-plugin.js resource random v4.14.0-alpha.
|
|
14
|
+
"install": "node scripts/install-pulumi-plugin.js resource random v4.14.0-alpha.1693954409+ecd134b6"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@pulumi/pulumi": "^3.0.0"
|
package/randomPassword.d.ts
CHANGED
|
@@ -100,7 +100,7 @@ export declare class RandomPassword extends pulumi.CustomResource {
|
|
|
100
100
|
*/
|
|
101
101
|
static isInstance(obj: any): obj is RandomPassword;
|
|
102
102
|
/**
|
|
103
|
-
* A bcrypt hash of the generated random string.
|
|
103
|
+
* A bcrypt hash of the generated random string. **NOTE**: If the generated random string is greater than 72 bytes in length, `bcryptHash` will contain a hash of the first 72 bytes.
|
|
104
104
|
*/
|
|
105
105
|
readonly bcryptHash: pulumi.Output<string>;
|
|
106
106
|
/**
|
|
@@ -173,7 +173,7 @@ export declare class RandomPassword extends pulumi.CustomResource {
|
|
|
173
173
|
*/
|
|
174
174
|
export interface RandomPasswordState {
|
|
175
175
|
/**
|
|
176
|
-
* A bcrypt hash of the generated random string.
|
|
176
|
+
* A bcrypt hash of the generated random string. **NOTE**: If the generated random string is greater than 72 bytes in length, `bcryptHash` will contain a hash of the first 72 bytes.
|
|
177
177
|
*/
|
|
178
178
|
bcryptHash?: pulumi.Input<string>;
|
|
179
179
|
/**
|