@pulumi/random 4.3.0-alpha.1646129670 → 4.4.0-alpha.1651660284
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/package.json.dev +2 -2
- package/randomId.d.ts +20 -10
- package/randomId.js.map +1 -1
- package/randomInteger.d.ts +6 -3
- package/randomInteger.js.map +1 -1
- package/randomPassword.d.ts +46 -38
- package/randomPassword.js +1 -5
- package/randomPassword.js.map +1 -1
- package/randomPet.d.ts +6 -3
- package/randomPet.js.map +1 -1
- package/randomShuffle.d.ts +24 -9
- package/randomShuffle.js.map +1 -1
- package/randomString.d.ts +45 -33
- package/randomString.js.map +1 -1
- package/randomUuid.d.ts +6 -3
- package/randomUuid.js.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/random",
|
|
3
|
-
"version": "v4.
|
|
3
|
+
"version": "v4.4.0-alpha.1651660284+d0979aec",
|
|
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
|
+
"install": "node scripts/install-pulumi-plugin.js resource random v4.4.0-alpha.1651660284+d0979aec"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@pulumi/pulumi": "^3.0.0"
|
package/package.json.dev
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/random",
|
|
3
|
-
"version": "v4.
|
|
3
|
+
"version": "v4.4.0-alpha.1651660284+d0979aec",
|
|
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
|
+
"install": "node scripts/install-pulumi-plugin.js resource random v4.4.0-alpha.1651660284+d0979aec"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@pulumi/pulumi": "^3.0.0"
|
package/randomId.d.ts
CHANGED
|
@@ -72,7 +72,8 @@ export declare class RandomId extends pulumi.CustomResource {
|
|
|
72
72
|
*/
|
|
73
73
|
readonly b64Std: pulumi.Output<string>;
|
|
74
74
|
/**
|
|
75
|
-
* The generated id presented in base64, using the URL-friendly character set: case-sensitive letters, digits and the
|
|
75
|
+
* The generated id presented in base64, using the URL-friendly character set: case-sensitive letters, digits and the
|
|
76
|
+
* characters `_` and `-`.
|
|
76
77
|
*/
|
|
77
78
|
readonly b64Url: pulumi.Output<string>;
|
|
78
79
|
/**
|
|
@@ -84,17 +85,20 @@ export declare class RandomId extends pulumi.CustomResource {
|
|
|
84
85
|
*/
|
|
85
86
|
readonly dec: pulumi.Output<string>;
|
|
86
87
|
/**
|
|
87
|
-
* The generated id presented in padded hexadecimal digits. This result will always be twice as long as the requested byte
|
|
88
|
+
* The generated id presented in padded hexadecimal digits. This result will always be twice as long as the requested byte
|
|
89
|
+
* length.
|
|
88
90
|
*/
|
|
89
91
|
readonly hex: pulumi.Output<string>;
|
|
90
92
|
/**
|
|
91
|
-
* Arbitrary map of values that, when changed, will trigger recreation of resource. See the main provider
|
|
93
|
+
* Arbitrary map of values that, when changed, will trigger recreation of resource. See [the main provider
|
|
94
|
+
* documentation](../index.html) for more information.
|
|
92
95
|
*/
|
|
93
96
|
readonly keepers: pulumi.Output<{
|
|
94
97
|
[key: string]: any;
|
|
95
98
|
} | undefined>;
|
|
96
99
|
/**
|
|
97
|
-
* Arbitrary string to prefix the output value with. This string is supplied as-is, meaning it is not guaranteed to be
|
|
100
|
+
* Arbitrary string to prefix the output value with. This string is supplied as-is, meaning it is not guaranteed to be
|
|
101
|
+
* URL-safe or base64 encoded.
|
|
98
102
|
*/
|
|
99
103
|
readonly prefix: pulumi.Output<string | undefined>;
|
|
100
104
|
/**
|
|
@@ -115,7 +119,8 @@ export interface RandomIdState {
|
|
|
115
119
|
*/
|
|
116
120
|
b64Std?: pulumi.Input<string>;
|
|
117
121
|
/**
|
|
118
|
-
* The generated id presented in base64, using the URL-friendly character set: case-sensitive letters, digits and the
|
|
122
|
+
* The generated id presented in base64, using the URL-friendly character set: case-sensitive letters, digits and the
|
|
123
|
+
* characters `_` and `-`.
|
|
119
124
|
*/
|
|
120
125
|
b64Url?: pulumi.Input<string>;
|
|
121
126
|
/**
|
|
@@ -127,17 +132,20 @@ export interface RandomIdState {
|
|
|
127
132
|
*/
|
|
128
133
|
dec?: pulumi.Input<string>;
|
|
129
134
|
/**
|
|
130
|
-
* The generated id presented in padded hexadecimal digits. This result will always be twice as long as the requested byte
|
|
135
|
+
* The generated id presented in padded hexadecimal digits. This result will always be twice as long as the requested byte
|
|
136
|
+
* length.
|
|
131
137
|
*/
|
|
132
138
|
hex?: pulumi.Input<string>;
|
|
133
139
|
/**
|
|
134
|
-
* Arbitrary map of values that, when changed, will trigger recreation of resource. See the main provider
|
|
140
|
+
* Arbitrary map of values that, when changed, will trigger recreation of resource. See [the main provider
|
|
141
|
+
* documentation](../index.html) for more information.
|
|
135
142
|
*/
|
|
136
143
|
keepers?: pulumi.Input<{
|
|
137
144
|
[key: string]: any;
|
|
138
145
|
}>;
|
|
139
146
|
/**
|
|
140
|
-
* Arbitrary string to prefix the output value with. This string is supplied as-is, meaning it is not guaranteed to be
|
|
147
|
+
* Arbitrary string to prefix the output value with. This string is supplied as-is, meaning it is not guaranteed to be
|
|
148
|
+
* URL-safe or base64 encoded.
|
|
141
149
|
*/
|
|
142
150
|
prefix?: pulumi.Input<string>;
|
|
143
151
|
}
|
|
@@ -150,13 +158,15 @@ export interface RandomIdArgs {
|
|
|
150
158
|
*/
|
|
151
159
|
byteLength: pulumi.Input<number>;
|
|
152
160
|
/**
|
|
153
|
-
* Arbitrary map of values that, when changed, will trigger recreation of resource. See the main provider
|
|
161
|
+
* Arbitrary map of values that, when changed, will trigger recreation of resource. See [the main provider
|
|
162
|
+
* documentation](../index.html) for more information.
|
|
154
163
|
*/
|
|
155
164
|
keepers?: pulumi.Input<{
|
|
156
165
|
[key: string]: any;
|
|
157
166
|
}>;
|
|
158
167
|
/**
|
|
159
|
-
* Arbitrary string to prefix the output value with. This string is supplied as-is, meaning it is not guaranteed to be
|
|
168
|
+
* Arbitrary string to prefix the output value with. This string is supplied as-is, meaning it is not guaranteed to be
|
|
169
|
+
* URL-safe or base64 encoded.
|
|
160
170
|
*/
|
|
161
171
|
prefix?: pulumi.Input<string>;
|
|
162
172
|
}
|
package/randomId.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"randomId.js","sourceRoot":"","sources":["../randomId.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmDG;AACH,MAAa,QAAS,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"randomId.js","sourceRoot":"","sources":["../randomId.ts"],"names":[],"mappings":"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"}
|
package/randomInteger.d.ts
CHANGED
|
@@ -56,7 +56,8 @@ export declare class RandomInteger extends pulumi.CustomResource {
|
|
|
56
56
|
*/
|
|
57
57
|
static isInstance(obj: any): obj is RandomInteger;
|
|
58
58
|
/**
|
|
59
|
-
* Arbitrary map of values that, when changed, will trigger recreation of resource. See the main provider
|
|
59
|
+
* Arbitrary map of values that, when changed, will trigger recreation of resource. See [the main provider
|
|
60
|
+
* documentation](../index.html) for more information.
|
|
60
61
|
*/
|
|
61
62
|
readonly keepers: pulumi.Output<{
|
|
62
63
|
[key: string]: any;
|
|
@@ -91,7 +92,8 @@ export declare class RandomInteger extends pulumi.CustomResource {
|
|
|
91
92
|
*/
|
|
92
93
|
export interface RandomIntegerState {
|
|
93
94
|
/**
|
|
94
|
-
* Arbitrary map of values that, when changed, will trigger recreation of resource. See the main provider
|
|
95
|
+
* Arbitrary map of values that, when changed, will trigger recreation of resource. See [the main provider
|
|
96
|
+
* documentation](../index.html) for more information.
|
|
95
97
|
*/
|
|
96
98
|
keepers?: pulumi.Input<{
|
|
97
99
|
[key: string]: any;
|
|
@@ -118,7 +120,8 @@ export interface RandomIntegerState {
|
|
|
118
120
|
*/
|
|
119
121
|
export interface RandomIntegerArgs {
|
|
120
122
|
/**
|
|
121
|
-
* Arbitrary map of values that, when changed, will trigger recreation of resource. See the main provider
|
|
123
|
+
* Arbitrary map of values that, when changed, will trigger recreation of resource. See [the main provider
|
|
124
|
+
* documentation](../index.html) for more information.
|
|
122
125
|
*/
|
|
123
126
|
keepers?: pulumi.Input<{
|
|
124
127
|
[key: string]: any;
|
package/randomInteger.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"randomInteger.js","sourceRoot":"","sources":["../randomInteger.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAuCG;AACH,MAAa,aAAc,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"randomInteger.js","sourceRoot":"","sources":["../randomInteger.ts"],"names":[],"mappings":"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"}
|
package/randomPassword.d.ts
CHANGED
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
|
-
* Identical to random.RandomString with the exception that the result is treated as sensitive and, thus, _not_ displayed in console output.
|
|
4
|
-
*
|
|
5
|
-
* This resource *does* use a cryptographic random number generator.
|
|
6
|
-
*
|
|
7
3
|
* ## Example Usage
|
|
8
4
|
*
|
|
9
5
|
* ```typescript
|
|
@@ -14,7 +10,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
14
10
|
* const password = new random.RandomPassword("password", {
|
|
15
11
|
* length: 16,
|
|
16
12
|
* special: true,
|
|
17
|
-
* overrideSpecial:
|
|
13
|
+
* overrideSpecial: `!#$%&*()-_=+[]{}<>:?`,
|
|
18
14
|
* });
|
|
19
15
|
* const example = new aws.rds.Instance("example", {
|
|
20
16
|
* instanceClass: "db.t3.micro",
|
|
@@ -50,41 +46,45 @@ export declare class RandomPassword extends pulumi.CustomResource {
|
|
|
50
46
|
*/
|
|
51
47
|
static isInstance(obj: any): obj is RandomPassword;
|
|
52
48
|
/**
|
|
53
|
-
* Arbitrary map of values that, when changed, will trigger recreation of resource. See the main provider
|
|
49
|
+
* Arbitrary map of values that, when changed, will trigger recreation of resource. See [the main provider
|
|
50
|
+
* documentation](../index.html) for more information.
|
|
54
51
|
*/
|
|
55
52
|
readonly keepers: pulumi.Output<{
|
|
56
53
|
[key: string]: any;
|
|
57
54
|
} | undefined>;
|
|
58
55
|
/**
|
|
59
|
-
* The length of the string desired.
|
|
56
|
+
* The length of the string desired. The minimum value for length is 1 and, length must also be >= (`min_upper` +
|
|
57
|
+
* `min_lower` + `min_numeric` + `min_special`).
|
|
60
58
|
*/
|
|
61
59
|
readonly length: pulumi.Output<number>;
|
|
62
60
|
/**
|
|
63
|
-
* Include lowercase alphabet characters in the result.
|
|
61
|
+
* Include lowercase alphabet characters in the result. Default value is `true`.
|
|
64
62
|
*/
|
|
65
63
|
readonly lower: pulumi.Output<boolean | undefined>;
|
|
66
64
|
/**
|
|
67
|
-
* Minimum number of lowercase alphabet characters in the result.
|
|
65
|
+
* Minimum number of lowercase alphabet characters in the result. Default value is `0`.
|
|
68
66
|
*/
|
|
69
67
|
readonly minLower: pulumi.Output<number | undefined>;
|
|
70
68
|
/**
|
|
71
|
-
* Minimum number of numeric characters in the result.
|
|
69
|
+
* Minimum number of numeric characters in the result. Default value is `0`.
|
|
72
70
|
*/
|
|
73
71
|
readonly minNumeric: pulumi.Output<number | undefined>;
|
|
74
72
|
/**
|
|
75
|
-
* Minimum number of special characters in the result.
|
|
73
|
+
* Minimum number of special characters in the result. Default value is `0`.
|
|
76
74
|
*/
|
|
77
75
|
readonly minSpecial: pulumi.Output<number | undefined>;
|
|
78
76
|
/**
|
|
79
|
-
* Minimum number of uppercase alphabet characters in the result.
|
|
77
|
+
* Minimum number of uppercase alphabet characters in the result. Default value is `0`.
|
|
80
78
|
*/
|
|
81
79
|
readonly minUpper: pulumi.Output<number | undefined>;
|
|
82
80
|
/**
|
|
83
|
-
* Include numeric characters in the result.
|
|
81
|
+
* Include numeric characters in the result. Default value is `true`.
|
|
84
82
|
*/
|
|
85
83
|
readonly number: pulumi.Output<boolean | undefined>;
|
|
86
84
|
/**
|
|
87
|
-
* Supply your own list of special characters to use for string generation.
|
|
85
|
+
* Supply your own list of special characters to use for string generation. This overrides the default character list in
|
|
86
|
+
* the special argument. The `special` argument must still be set to true for any overwritten characters to be used in
|
|
87
|
+
* generation.
|
|
88
88
|
*/
|
|
89
89
|
readonly overrideSpecial: pulumi.Output<string | undefined>;
|
|
90
90
|
/**
|
|
@@ -92,11 +92,11 @@ export declare class RandomPassword extends pulumi.CustomResource {
|
|
|
92
92
|
*/
|
|
93
93
|
readonly result: pulumi.Output<string>;
|
|
94
94
|
/**
|
|
95
|
-
* Include special characters in the result. These are `!@#$%&*()-_=+[]{}
|
|
95
|
+
* Include special characters in the result. These are `!@#$%&*()-_=+[]{}<>:?`. Default value is `true`.
|
|
96
96
|
*/
|
|
97
97
|
readonly special: pulumi.Output<boolean | undefined>;
|
|
98
98
|
/**
|
|
99
|
-
* Include uppercase alphabet characters in the result.
|
|
99
|
+
* Include uppercase alphabet characters in the result. Default value is `true`.
|
|
100
100
|
*/
|
|
101
101
|
readonly upper: pulumi.Output<boolean | undefined>;
|
|
102
102
|
/**
|
|
@@ -113,41 +113,45 @@ export declare class RandomPassword extends pulumi.CustomResource {
|
|
|
113
113
|
*/
|
|
114
114
|
export interface RandomPasswordState {
|
|
115
115
|
/**
|
|
116
|
-
* Arbitrary map of values that, when changed, will trigger recreation of resource. See the main provider
|
|
116
|
+
* Arbitrary map of values that, when changed, will trigger recreation of resource. See [the main provider
|
|
117
|
+
* documentation](../index.html) for more information.
|
|
117
118
|
*/
|
|
118
119
|
keepers?: pulumi.Input<{
|
|
119
120
|
[key: string]: any;
|
|
120
121
|
}>;
|
|
121
122
|
/**
|
|
122
|
-
* The length of the string desired.
|
|
123
|
+
* The length of the string desired. The minimum value for length is 1 and, length must also be >= (`min_upper` +
|
|
124
|
+
* `min_lower` + `min_numeric` + `min_special`).
|
|
123
125
|
*/
|
|
124
126
|
length?: pulumi.Input<number>;
|
|
125
127
|
/**
|
|
126
|
-
* Include lowercase alphabet characters in the result.
|
|
128
|
+
* Include lowercase alphabet characters in the result. Default value is `true`.
|
|
127
129
|
*/
|
|
128
130
|
lower?: pulumi.Input<boolean>;
|
|
129
131
|
/**
|
|
130
|
-
* Minimum number of lowercase alphabet characters in the result.
|
|
132
|
+
* Minimum number of lowercase alphabet characters in the result. Default value is `0`.
|
|
131
133
|
*/
|
|
132
134
|
minLower?: pulumi.Input<number>;
|
|
133
135
|
/**
|
|
134
|
-
* Minimum number of numeric characters in the result.
|
|
136
|
+
* Minimum number of numeric characters in the result. Default value is `0`.
|
|
135
137
|
*/
|
|
136
138
|
minNumeric?: pulumi.Input<number>;
|
|
137
139
|
/**
|
|
138
|
-
* Minimum number of special characters in the result.
|
|
140
|
+
* Minimum number of special characters in the result. Default value is `0`.
|
|
139
141
|
*/
|
|
140
142
|
minSpecial?: pulumi.Input<number>;
|
|
141
143
|
/**
|
|
142
|
-
* Minimum number of uppercase alphabet characters in the result.
|
|
144
|
+
* Minimum number of uppercase alphabet characters in the result. Default value is `0`.
|
|
143
145
|
*/
|
|
144
146
|
minUpper?: pulumi.Input<number>;
|
|
145
147
|
/**
|
|
146
|
-
* Include numeric characters in the result.
|
|
148
|
+
* Include numeric characters in the result. Default value is `true`.
|
|
147
149
|
*/
|
|
148
150
|
number?: pulumi.Input<boolean>;
|
|
149
151
|
/**
|
|
150
|
-
* Supply your own list of special characters to use for string generation.
|
|
152
|
+
* Supply your own list of special characters to use for string generation. This overrides the default character list in
|
|
153
|
+
* the special argument. The `special` argument must still be set to true for any overwritten characters to be used in
|
|
154
|
+
* generation.
|
|
151
155
|
*/
|
|
152
156
|
overrideSpecial?: pulumi.Input<string>;
|
|
153
157
|
/**
|
|
@@ -155,11 +159,11 @@ export interface RandomPasswordState {
|
|
|
155
159
|
*/
|
|
156
160
|
result?: pulumi.Input<string>;
|
|
157
161
|
/**
|
|
158
|
-
* Include special characters in the result. These are `!@#$%&*()-_=+[]{}
|
|
162
|
+
* Include special characters in the result. These are `!@#$%&*()-_=+[]{}<>:?`. Default value is `true`.
|
|
159
163
|
*/
|
|
160
164
|
special?: pulumi.Input<boolean>;
|
|
161
165
|
/**
|
|
162
|
-
* Include uppercase alphabet characters in the result.
|
|
166
|
+
* Include uppercase alphabet characters in the result. Default value is `true`.
|
|
163
167
|
*/
|
|
164
168
|
upper?: pulumi.Input<boolean>;
|
|
165
169
|
}
|
|
@@ -168,49 +172,53 @@ export interface RandomPasswordState {
|
|
|
168
172
|
*/
|
|
169
173
|
export interface RandomPasswordArgs {
|
|
170
174
|
/**
|
|
171
|
-
* Arbitrary map of values that, when changed, will trigger recreation of resource. See the main provider
|
|
175
|
+
* Arbitrary map of values that, when changed, will trigger recreation of resource. See [the main provider
|
|
176
|
+
* documentation](../index.html) for more information.
|
|
172
177
|
*/
|
|
173
178
|
keepers?: pulumi.Input<{
|
|
174
179
|
[key: string]: any;
|
|
175
180
|
}>;
|
|
176
181
|
/**
|
|
177
|
-
* The length of the string desired.
|
|
182
|
+
* The length of the string desired. The minimum value for length is 1 and, length must also be >= (`min_upper` +
|
|
183
|
+
* `min_lower` + `min_numeric` + `min_special`).
|
|
178
184
|
*/
|
|
179
185
|
length: pulumi.Input<number>;
|
|
180
186
|
/**
|
|
181
|
-
* Include lowercase alphabet characters in the result.
|
|
187
|
+
* Include lowercase alphabet characters in the result. Default value is `true`.
|
|
182
188
|
*/
|
|
183
189
|
lower?: pulumi.Input<boolean>;
|
|
184
190
|
/**
|
|
185
|
-
* Minimum number of lowercase alphabet characters in the result.
|
|
191
|
+
* Minimum number of lowercase alphabet characters in the result. Default value is `0`.
|
|
186
192
|
*/
|
|
187
193
|
minLower?: pulumi.Input<number>;
|
|
188
194
|
/**
|
|
189
|
-
* Minimum number of numeric characters in the result.
|
|
195
|
+
* Minimum number of numeric characters in the result. Default value is `0`.
|
|
190
196
|
*/
|
|
191
197
|
minNumeric?: pulumi.Input<number>;
|
|
192
198
|
/**
|
|
193
|
-
* Minimum number of special characters in the result.
|
|
199
|
+
* Minimum number of special characters in the result. Default value is `0`.
|
|
194
200
|
*/
|
|
195
201
|
minSpecial?: pulumi.Input<number>;
|
|
196
202
|
/**
|
|
197
|
-
* Minimum number of uppercase alphabet characters in the result.
|
|
203
|
+
* Minimum number of uppercase alphabet characters in the result. Default value is `0`.
|
|
198
204
|
*/
|
|
199
205
|
minUpper?: pulumi.Input<number>;
|
|
200
206
|
/**
|
|
201
|
-
* Include numeric characters in the result.
|
|
207
|
+
* Include numeric characters in the result. Default value is `true`.
|
|
202
208
|
*/
|
|
203
209
|
number?: pulumi.Input<boolean>;
|
|
204
210
|
/**
|
|
205
|
-
* Supply your own list of special characters to use for string generation.
|
|
211
|
+
* Supply your own list of special characters to use for string generation. This overrides the default character list in
|
|
212
|
+
* the special argument. The `special` argument must still be set to true for any overwritten characters to be used in
|
|
213
|
+
* generation.
|
|
206
214
|
*/
|
|
207
215
|
overrideSpecial?: pulumi.Input<string>;
|
|
208
216
|
/**
|
|
209
|
-
* Include special characters in the result. These are `!@#$%&*()-_=+[]{}
|
|
217
|
+
* Include special characters in the result. These are `!@#$%&*()-_=+[]{}<>:?`. Default value is `true`.
|
|
210
218
|
*/
|
|
211
219
|
special?: pulumi.Input<boolean>;
|
|
212
220
|
/**
|
|
213
|
-
* Include uppercase alphabet characters in the result.
|
|
221
|
+
* Include uppercase alphabet characters in the result. Default value is `true`.
|
|
214
222
|
*/
|
|
215
223
|
upper?: pulumi.Input<boolean>;
|
|
216
224
|
}
|
package/randomPassword.js
CHANGED
|
@@ -6,10 +6,6 @@ exports.RandomPassword = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
-
* Identical to random.RandomString with the exception that the result is treated as sensitive and, thus, _not_ displayed in console output.
|
|
10
|
-
*
|
|
11
|
-
* This resource *does* use a cryptographic random number generator.
|
|
12
|
-
*
|
|
13
9
|
* ## Example Usage
|
|
14
10
|
*
|
|
15
11
|
* ```typescript
|
|
@@ -20,7 +16,7 @@ const utilities = require("./utilities");
|
|
|
20
16
|
* const password = new random.RandomPassword("password", {
|
|
21
17
|
* length: 16,
|
|
22
18
|
* special: true,
|
|
23
|
-
* overrideSpecial:
|
|
19
|
+
* overrideSpecial: `!#$%&*()-_=+[]{}<>:?`,
|
|
24
20
|
* });
|
|
25
21
|
* const example = new aws.rds.Instance("example", {
|
|
26
22
|
* instanceClass: "db.t3.micro",
|
package/randomPassword.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"randomPassword.js","sourceRoot":"","sources":["../randomPassword.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"randomPassword.js","sourceRoot":"","sources":["../randomPassword.ts"],"names":[],"mappings":"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"}
|
package/randomPet.d.ts
CHANGED
|
@@ -43,7 +43,8 @@ export declare class RandomPet extends pulumi.CustomResource {
|
|
|
43
43
|
*/
|
|
44
44
|
static isInstance(obj: any): obj is RandomPet;
|
|
45
45
|
/**
|
|
46
|
-
* Arbitrary map of values that, when changed, will trigger recreation of resource. See the main provider
|
|
46
|
+
* Arbitrary map of values that, when changed, will trigger recreation of resource. See [the main provider
|
|
47
|
+
* documentation](../index.html) for more information.
|
|
47
48
|
*/
|
|
48
49
|
readonly keepers: pulumi.Output<{
|
|
49
50
|
[key: string]: any;
|
|
@@ -74,7 +75,8 @@ export declare class RandomPet extends pulumi.CustomResource {
|
|
|
74
75
|
*/
|
|
75
76
|
export interface RandomPetState {
|
|
76
77
|
/**
|
|
77
|
-
* Arbitrary map of values that, when changed, will trigger recreation of resource. See the main provider
|
|
78
|
+
* Arbitrary map of values that, when changed, will trigger recreation of resource. See [the main provider
|
|
79
|
+
* documentation](../index.html) for more information.
|
|
78
80
|
*/
|
|
79
81
|
keepers?: pulumi.Input<{
|
|
80
82
|
[key: string]: any;
|
|
@@ -97,7 +99,8 @@ export interface RandomPetState {
|
|
|
97
99
|
*/
|
|
98
100
|
export interface RandomPetArgs {
|
|
99
101
|
/**
|
|
100
|
-
* Arbitrary map of values that, when changed, will trigger recreation of resource. See the main provider
|
|
102
|
+
* Arbitrary map of values that, when changed, will trigger recreation of resource. See [the main provider
|
|
103
|
+
* documentation](../index.html) for more information.
|
|
101
104
|
*/
|
|
102
105
|
keepers?: pulumi.Input<{
|
|
103
106
|
[key: string]: any;
|
package/randomPet.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"randomPet.js","sourceRoot":"","sources":["../randomPet.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,MAAa,SAAU,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"randomPet.js","sourceRoot":"","sources":["../randomPet.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,MAAa,SAAU,SAAQ,MAAM,CAAC,cAAc;IAsDhD,YAAY,IAAY,EAAE,WAA4C,EAAE,IAAmC;QACvG,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAyC,CAAC;YACxD,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;SACrE;aAAM;YACH,MAAM,IAAI,GAAG,WAAwC,CAAC;YACtD,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;SACnE;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,SAAS,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC9D,CAAC;IAvED;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAsB,EAAE,IAAmC;QACpH,OAAO,IAAI,SAAS,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAChE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,SAAS,CAAC,YAAY,CAAC;IAC1D,CAAC;;AA1BL,8BAyEC;AA3DG,gBAAgB;AACO,sBAAY,GAAG,kCAAkC,CAAC"}
|
package/randomShuffle.d.ts
CHANGED
|
@@ -46,13 +46,16 @@ export declare class RandomShuffle extends pulumi.CustomResource {
|
|
|
46
46
|
*/
|
|
47
47
|
readonly inputs: pulumi.Output<string[]>;
|
|
48
48
|
/**
|
|
49
|
-
* Arbitrary map of values that, when changed, will trigger recreation of resource. See the main provider
|
|
49
|
+
* Arbitrary map of values that, when changed, will trigger recreation of resource. See [the main provider
|
|
50
|
+
* documentation](../index.html) for more information.
|
|
50
51
|
*/
|
|
51
52
|
readonly keepers: pulumi.Output<{
|
|
52
53
|
[key: string]: any;
|
|
53
54
|
} | undefined>;
|
|
54
55
|
/**
|
|
55
|
-
* The number of results to return. Defaults to the number of items in the `input` list. If fewer items are requested, some
|
|
56
|
+
* The number of results to return. Defaults to the number of items in the `input` list. If fewer items are requested, some
|
|
57
|
+
* elements will be excluded from the result. If more items are requested, items will be repeated in the result but not
|
|
58
|
+
* more frequently than the number of items in the input list.
|
|
56
59
|
*/
|
|
57
60
|
readonly resultCount: pulumi.Output<number | undefined>;
|
|
58
61
|
/**
|
|
@@ -60,7 +63,9 @@ export declare class RandomShuffle extends pulumi.CustomResource {
|
|
|
60
63
|
*/
|
|
61
64
|
readonly results: pulumi.Output<string[]>;
|
|
62
65
|
/**
|
|
63
|
-
* Arbitrary string with which to seed the random number generator, in order to produce less-volatile permutations of the
|
|
66
|
+
* Arbitrary string with which to seed the random number generator, in order to produce less-volatile permutations of the
|
|
67
|
+
* list. **Important:** Even with an identical seed, it is not guaranteed that the same permutation will be produced across
|
|
68
|
+
* different versions of Terraform. This argument causes the result to be *less volatile*, but not fixed for all time.
|
|
64
69
|
*/
|
|
65
70
|
readonly seed: pulumi.Output<string | undefined>;
|
|
66
71
|
/**
|
|
@@ -81,13 +86,16 @@ export interface RandomShuffleState {
|
|
|
81
86
|
*/
|
|
82
87
|
inputs?: pulumi.Input<pulumi.Input<string>[]>;
|
|
83
88
|
/**
|
|
84
|
-
* Arbitrary map of values that, when changed, will trigger recreation of resource. See the main provider
|
|
89
|
+
* Arbitrary map of values that, when changed, will trigger recreation of resource. See [the main provider
|
|
90
|
+
* documentation](../index.html) for more information.
|
|
85
91
|
*/
|
|
86
92
|
keepers?: pulumi.Input<{
|
|
87
93
|
[key: string]: any;
|
|
88
94
|
}>;
|
|
89
95
|
/**
|
|
90
|
-
* The number of results to return. Defaults to the number of items in the `input` list. If fewer items are requested, some
|
|
96
|
+
* The number of results to return. Defaults to the number of items in the `input` list. If fewer items are requested, some
|
|
97
|
+
* elements will be excluded from the result. If more items are requested, items will be repeated in the result but not
|
|
98
|
+
* more frequently than the number of items in the input list.
|
|
91
99
|
*/
|
|
92
100
|
resultCount?: pulumi.Input<number>;
|
|
93
101
|
/**
|
|
@@ -95,7 +103,9 @@ export interface RandomShuffleState {
|
|
|
95
103
|
*/
|
|
96
104
|
results?: pulumi.Input<pulumi.Input<string>[]>;
|
|
97
105
|
/**
|
|
98
|
-
* Arbitrary string with which to seed the random number generator, in order to produce less-volatile permutations of the
|
|
106
|
+
* Arbitrary string with which to seed the random number generator, in order to produce less-volatile permutations of the
|
|
107
|
+
* list. **Important:** Even with an identical seed, it is not guaranteed that the same permutation will be produced across
|
|
108
|
+
* different versions of Terraform. This argument causes the result to be *less volatile*, but not fixed for all time.
|
|
99
109
|
*/
|
|
100
110
|
seed?: pulumi.Input<string>;
|
|
101
111
|
}
|
|
@@ -108,17 +118,22 @@ export interface RandomShuffleArgs {
|
|
|
108
118
|
*/
|
|
109
119
|
inputs: pulumi.Input<pulumi.Input<string>[]>;
|
|
110
120
|
/**
|
|
111
|
-
* Arbitrary map of values that, when changed, will trigger recreation of resource. See the main provider
|
|
121
|
+
* Arbitrary map of values that, when changed, will trigger recreation of resource. See [the main provider
|
|
122
|
+
* documentation](../index.html) for more information.
|
|
112
123
|
*/
|
|
113
124
|
keepers?: pulumi.Input<{
|
|
114
125
|
[key: string]: any;
|
|
115
126
|
}>;
|
|
116
127
|
/**
|
|
117
|
-
* The number of results to return. Defaults to the number of items in the `input` list. If fewer items are requested, some
|
|
128
|
+
* The number of results to return. Defaults to the number of items in the `input` list. If fewer items are requested, some
|
|
129
|
+
* elements will be excluded from the result. If more items are requested, items will be repeated in the result but not
|
|
130
|
+
* more frequently than the number of items in the input list.
|
|
118
131
|
*/
|
|
119
132
|
resultCount?: pulumi.Input<number>;
|
|
120
133
|
/**
|
|
121
|
-
* Arbitrary string with which to seed the random number generator, in order to produce less-volatile permutations of the
|
|
134
|
+
* Arbitrary string with which to seed the random number generator, in order to produce less-volatile permutations of the
|
|
135
|
+
* list. **Important:** Even with an identical seed, it is not guaranteed that the same permutation will be produced across
|
|
136
|
+
* different versions of Terraform. This argument causes the result to be *less volatile*, but not fixed for all time.
|
|
122
137
|
*/
|
|
123
138
|
seed?: pulumi.Input<string>;
|
|
124
139
|
}
|
package/randomShuffle.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"randomShuffle.js","sourceRoot":"","sources":["../randomShuffle.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,MAAa,aAAc,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"randomShuffle.js","sourceRoot":"","sources":["../randomShuffle.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,MAAa,aAAc,SAAQ,MAAM,CAAC,cAAc;IA8DpD,YAAY,IAAY,EAAE,WAAoD,EAAE,IAAmC;QAC/G,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA6C,CAAC;YAC5D,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;SAC3D;aAAM;YACH,MAAM,IAAI,GAAG,WAA4C,CAAC;YAC1D,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,MAAM,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnD,MAAM,IAAI,KAAK,CAAC,oCAAoC,CAAC,CAAC;aACzD;YACD,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,SAAS,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SACjD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,aAAa,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAClE,CAAC;IApFD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA0B,EAAE,IAAmC;QACxH,OAAO,IAAI,aAAa,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACpE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,aAAa,CAAC,YAAY,CAAC;IAC9D,CAAC;;AA1BL,sCAsFC;AAxEG,gBAAgB;AACO,0BAAY,GAAG,0CAA0C,CAAC"}
|
package/randomString.d.ts
CHANGED
|
@@ -44,41 +44,45 @@ export declare class RandomString extends pulumi.CustomResource {
|
|
|
44
44
|
*/
|
|
45
45
|
static isInstance(obj: any): obj is RandomString;
|
|
46
46
|
/**
|
|
47
|
-
* Arbitrary map of values that, when changed, will trigger recreation of resource. See the main provider
|
|
47
|
+
* Arbitrary map of values that, when changed, will trigger recreation of resource. See [the main provider
|
|
48
|
+
* documentation](../index.html) for more information.
|
|
48
49
|
*/
|
|
49
50
|
readonly keepers: pulumi.Output<{
|
|
50
51
|
[key: string]: any;
|
|
51
52
|
} | undefined>;
|
|
52
53
|
/**
|
|
53
|
-
* The length of the string desired.
|
|
54
|
+
* The length of the string desired. The minimum value for length is 1 and, length must also be >= (`min_upper` +
|
|
55
|
+
* `min_lower` + `min_numeric` + `min_special`).
|
|
54
56
|
*/
|
|
55
57
|
readonly length: pulumi.Output<number>;
|
|
56
58
|
/**
|
|
57
|
-
* Include lowercase alphabet characters in the result.
|
|
59
|
+
* Include lowercase alphabet characters in the result. Default value is `true`.
|
|
58
60
|
*/
|
|
59
61
|
readonly lower: pulumi.Output<boolean | undefined>;
|
|
60
62
|
/**
|
|
61
|
-
* Minimum number of lowercase alphabet characters in the result.
|
|
63
|
+
* Minimum number of lowercase alphabet characters in the result. Default value is `0`.
|
|
62
64
|
*/
|
|
63
65
|
readonly minLower: pulumi.Output<number | undefined>;
|
|
64
66
|
/**
|
|
65
|
-
* Minimum number of numeric characters in the result.
|
|
67
|
+
* Minimum number of numeric characters in the result. Default value is `0`.
|
|
66
68
|
*/
|
|
67
69
|
readonly minNumeric: pulumi.Output<number | undefined>;
|
|
68
70
|
/**
|
|
69
|
-
* Minimum number of special characters in the result.
|
|
71
|
+
* Minimum number of special characters in the result. Default value is `0`.
|
|
70
72
|
*/
|
|
71
73
|
readonly minSpecial: pulumi.Output<number | undefined>;
|
|
72
74
|
/**
|
|
73
|
-
* Minimum number of uppercase alphabet characters in the result.
|
|
75
|
+
* Minimum number of uppercase alphabet characters in the result. Default value is `0`.
|
|
74
76
|
*/
|
|
75
77
|
readonly minUpper: pulumi.Output<number | undefined>;
|
|
76
78
|
/**
|
|
77
|
-
* Include numeric characters in the result.
|
|
79
|
+
* Include numeric characters in the result. Default value is `true`.
|
|
78
80
|
*/
|
|
79
81
|
readonly number: pulumi.Output<boolean | undefined>;
|
|
80
82
|
/**
|
|
81
|
-
* Supply your own list of special characters to use for string generation.
|
|
83
|
+
* Supply your own list of special characters to use for string generation. This overrides the default character list in
|
|
84
|
+
* the special argument. The `special` argument must still be set to true for any overwritten characters to be used in
|
|
85
|
+
* generation.
|
|
82
86
|
*/
|
|
83
87
|
readonly overrideSpecial: pulumi.Output<string | undefined>;
|
|
84
88
|
/**
|
|
@@ -86,11 +90,11 @@ export declare class RandomString extends pulumi.CustomResource {
|
|
|
86
90
|
*/
|
|
87
91
|
readonly result: pulumi.Output<string>;
|
|
88
92
|
/**
|
|
89
|
-
* Include special characters in the result. These are `!@#$%&*()-_=+[]{}
|
|
93
|
+
* Include special characters in the result. These are `!@#$%&*()-_=+[]{}<>:?`. Default value is `true`.
|
|
90
94
|
*/
|
|
91
95
|
readonly special: pulumi.Output<boolean | undefined>;
|
|
92
96
|
/**
|
|
93
|
-
* Include uppercase alphabet characters in the result.
|
|
97
|
+
* Include uppercase alphabet characters in the result. Default value is `true`.
|
|
94
98
|
*/
|
|
95
99
|
readonly upper: pulumi.Output<boolean | undefined>;
|
|
96
100
|
/**
|
|
@@ -107,41 +111,45 @@ export declare class RandomString extends pulumi.CustomResource {
|
|
|
107
111
|
*/
|
|
108
112
|
export interface RandomStringState {
|
|
109
113
|
/**
|
|
110
|
-
* Arbitrary map of values that, when changed, will trigger recreation of resource. See the main provider
|
|
114
|
+
* Arbitrary map of values that, when changed, will trigger recreation of resource. See [the main provider
|
|
115
|
+
* documentation](../index.html) for more information.
|
|
111
116
|
*/
|
|
112
117
|
keepers?: pulumi.Input<{
|
|
113
118
|
[key: string]: any;
|
|
114
119
|
}>;
|
|
115
120
|
/**
|
|
116
|
-
* The length of the string desired.
|
|
121
|
+
* The length of the string desired. The minimum value for length is 1 and, length must also be >= (`min_upper` +
|
|
122
|
+
* `min_lower` + `min_numeric` + `min_special`).
|
|
117
123
|
*/
|
|
118
124
|
length?: pulumi.Input<number>;
|
|
119
125
|
/**
|
|
120
|
-
* Include lowercase alphabet characters in the result.
|
|
126
|
+
* Include lowercase alphabet characters in the result. Default value is `true`.
|
|
121
127
|
*/
|
|
122
128
|
lower?: pulumi.Input<boolean>;
|
|
123
129
|
/**
|
|
124
|
-
* Minimum number of lowercase alphabet characters in the result.
|
|
130
|
+
* Minimum number of lowercase alphabet characters in the result. Default value is `0`.
|
|
125
131
|
*/
|
|
126
132
|
minLower?: pulumi.Input<number>;
|
|
127
133
|
/**
|
|
128
|
-
* Minimum number of numeric characters in the result.
|
|
134
|
+
* Minimum number of numeric characters in the result. Default value is `0`.
|
|
129
135
|
*/
|
|
130
136
|
minNumeric?: pulumi.Input<number>;
|
|
131
137
|
/**
|
|
132
|
-
* Minimum number of special characters in the result.
|
|
138
|
+
* Minimum number of special characters in the result. Default value is `0`.
|
|
133
139
|
*/
|
|
134
140
|
minSpecial?: pulumi.Input<number>;
|
|
135
141
|
/**
|
|
136
|
-
* Minimum number of uppercase alphabet characters in the result.
|
|
142
|
+
* Minimum number of uppercase alphabet characters in the result. Default value is `0`.
|
|
137
143
|
*/
|
|
138
144
|
minUpper?: pulumi.Input<number>;
|
|
139
145
|
/**
|
|
140
|
-
* Include numeric characters in the result.
|
|
146
|
+
* Include numeric characters in the result. Default value is `true`.
|
|
141
147
|
*/
|
|
142
148
|
number?: pulumi.Input<boolean>;
|
|
143
149
|
/**
|
|
144
|
-
* Supply your own list of special characters to use for string generation.
|
|
150
|
+
* Supply your own list of special characters to use for string generation. This overrides the default character list in
|
|
151
|
+
* the special argument. The `special` argument must still be set to true for any overwritten characters to be used in
|
|
152
|
+
* generation.
|
|
145
153
|
*/
|
|
146
154
|
overrideSpecial?: pulumi.Input<string>;
|
|
147
155
|
/**
|
|
@@ -149,11 +157,11 @@ export interface RandomStringState {
|
|
|
149
157
|
*/
|
|
150
158
|
result?: pulumi.Input<string>;
|
|
151
159
|
/**
|
|
152
|
-
* Include special characters in the result. These are `!@#$%&*()-_=+[]{}
|
|
160
|
+
* Include special characters in the result. These are `!@#$%&*()-_=+[]{}<>:?`. Default value is `true`.
|
|
153
161
|
*/
|
|
154
162
|
special?: pulumi.Input<boolean>;
|
|
155
163
|
/**
|
|
156
|
-
* Include uppercase alphabet characters in the result.
|
|
164
|
+
* Include uppercase alphabet characters in the result. Default value is `true`.
|
|
157
165
|
*/
|
|
158
166
|
upper?: pulumi.Input<boolean>;
|
|
159
167
|
}
|
|
@@ -162,49 +170,53 @@ export interface RandomStringState {
|
|
|
162
170
|
*/
|
|
163
171
|
export interface RandomStringArgs {
|
|
164
172
|
/**
|
|
165
|
-
* Arbitrary map of values that, when changed, will trigger recreation of resource. See the main provider
|
|
173
|
+
* Arbitrary map of values that, when changed, will trigger recreation of resource. See [the main provider
|
|
174
|
+
* documentation](../index.html) for more information.
|
|
166
175
|
*/
|
|
167
176
|
keepers?: pulumi.Input<{
|
|
168
177
|
[key: string]: any;
|
|
169
178
|
}>;
|
|
170
179
|
/**
|
|
171
|
-
* The length of the string desired.
|
|
180
|
+
* The length of the string desired. The minimum value for length is 1 and, length must also be >= (`min_upper` +
|
|
181
|
+
* `min_lower` + `min_numeric` + `min_special`).
|
|
172
182
|
*/
|
|
173
183
|
length: pulumi.Input<number>;
|
|
174
184
|
/**
|
|
175
|
-
* Include lowercase alphabet characters in the result.
|
|
185
|
+
* Include lowercase alphabet characters in the result. Default value is `true`.
|
|
176
186
|
*/
|
|
177
187
|
lower?: pulumi.Input<boolean>;
|
|
178
188
|
/**
|
|
179
|
-
* Minimum number of lowercase alphabet characters in the result.
|
|
189
|
+
* Minimum number of lowercase alphabet characters in the result. Default value is `0`.
|
|
180
190
|
*/
|
|
181
191
|
minLower?: pulumi.Input<number>;
|
|
182
192
|
/**
|
|
183
|
-
* Minimum number of numeric characters in the result.
|
|
193
|
+
* Minimum number of numeric characters in the result. Default value is `0`.
|
|
184
194
|
*/
|
|
185
195
|
minNumeric?: pulumi.Input<number>;
|
|
186
196
|
/**
|
|
187
|
-
* Minimum number of special characters in the result.
|
|
197
|
+
* Minimum number of special characters in the result. Default value is `0`.
|
|
188
198
|
*/
|
|
189
199
|
minSpecial?: pulumi.Input<number>;
|
|
190
200
|
/**
|
|
191
|
-
* Minimum number of uppercase alphabet characters in the result.
|
|
201
|
+
* Minimum number of uppercase alphabet characters in the result. Default value is `0`.
|
|
192
202
|
*/
|
|
193
203
|
minUpper?: pulumi.Input<number>;
|
|
194
204
|
/**
|
|
195
|
-
* Include numeric characters in the result.
|
|
205
|
+
* Include numeric characters in the result. Default value is `true`.
|
|
196
206
|
*/
|
|
197
207
|
number?: pulumi.Input<boolean>;
|
|
198
208
|
/**
|
|
199
|
-
* Supply your own list of special characters to use for string generation.
|
|
209
|
+
* Supply your own list of special characters to use for string generation. This overrides the default character list in
|
|
210
|
+
* the special argument. The `special` argument must still be set to true for any overwritten characters to be used in
|
|
211
|
+
* generation.
|
|
200
212
|
*/
|
|
201
213
|
overrideSpecial?: pulumi.Input<string>;
|
|
202
214
|
/**
|
|
203
|
-
* Include special characters in the result. These are `!@#$%&*()-_=+[]{}
|
|
215
|
+
* Include special characters in the result. These are `!@#$%&*()-_=+[]{}<>:?`. Default value is `true`.
|
|
204
216
|
*/
|
|
205
217
|
special?: pulumi.Input<boolean>;
|
|
206
218
|
/**
|
|
207
|
-
* Include uppercase alphabet characters in the result.
|
|
219
|
+
* Include uppercase alphabet characters in the result. Default value is `true`.
|
|
208
220
|
*/
|
|
209
221
|
upper?: pulumi.Input<boolean>;
|
|
210
222
|
}
|
package/randomString.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"randomString.js","sourceRoot":"","sources":["../randomString.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BG;AACH,MAAa,YAAa,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"randomString.js","sourceRoot":"","sources":["../randomString.ts"],"names":[],"mappings":"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"}
|
package/randomUuid.d.ts
CHANGED
|
@@ -42,7 +42,8 @@ export declare class RandomUuid extends pulumi.CustomResource {
|
|
|
42
42
|
*/
|
|
43
43
|
static isInstance(obj: any): obj is RandomUuid;
|
|
44
44
|
/**
|
|
45
|
-
* Arbitrary map of values that, when changed, will trigger recreation of resource. See the main provider
|
|
45
|
+
* Arbitrary map of values that, when changed, will trigger recreation of resource. See [the main provider
|
|
46
|
+
* documentation](../index.html) for more information.
|
|
46
47
|
*/
|
|
47
48
|
readonly keepers: pulumi.Output<{
|
|
48
49
|
[key: string]: any;
|
|
@@ -65,7 +66,8 @@ export declare class RandomUuid extends pulumi.CustomResource {
|
|
|
65
66
|
*/
|
|
66
67
|
export interface RandomUuidState {
|
|
67
68
|
/**
|
|
68
|
-
* Arbitrary map of values that, when changed, will trigger recreation of resource. See the main provider
|
|
69
|
+
* Arbitrary map of values that, when changed, will trigger recreation of resource. See [the main provider
|
|
70
|
+
* documentation](../index.html) for more information.
|
|
69
71
|
*/
|
|
70
72
|
keepers?: pulumi.Input<{
|
|
71
73
|
[key: string]: any;
|
|
@@ -80,7 +82,8 @@ export interface RandomUuidState {
|
|
|
80
82
|
*/
|
|
81
83
|
export interface RandomUuidArgs {
|
|
82
84
|
/**
|
|
83
|
-
* Arbitrary map of values that, when changed, will trigger recreation of resource. See the main provider
|
|
85
|
+
* Arbitrary map of values that, when changed, will trigger recreation of resource. See [the main provider
|
|
86
|
+
* documentation](../index.html) for more information.
|
|
84
87
|
*/
|
|
85
88
|
keepers?: pulumi.Input<{
|
|
86
89
|
[key: string]: any;
|
package/randomUuid.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"randomUuid.js","sourceRoot":"","sources":["../randomUuid.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,MAAa,UAAW,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"randomUuid.js","sourceRoot":"","sources":["../randomUuid.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,MAAa,UAAW,SAAQ,MAAM,CAAC,cAAc;IA8CjD,YAAY,IAAY,EAAE,WAA8C,EAAE,IAAmC;QACzG,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA0C,CAAC;YACzD,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;SAC/D;aAAM;YACH,MAAM,IAAI,GAAG,WAAyC,CAAC;YACvD,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,QAAQ,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAChD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,UAAU,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC/D,CAAC;IA3DD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAuB,EAAE,IAAmC;QACrH,OAAO,IAAI,UAAU,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACjE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,UAAU,CAAC,YAAY,CAAC;IAC3D,CAAC;;AA1BL,gCA6DC;AA/CG,gBAAgB;AACO,uBAAY,GAAG,oCAAoC,CAAC"}
|