@upcloud/pulumi-upcloud 0.9.0-alpha.1764174545 → 0.10.0
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/fileStorage.d.ts +12 -20
- package/fileStorage.js +12 -10
- package/fileStorage.js.map +1 -1
- package/fileStorageShare.d.ts +75 -0
- package/fileStorageShare.js +62 -0
- package/fileStorageShare.js.map +1 -0
- package/fileStorageShareAcl.d.ts +99 -0
- package/fileStorageShareAcl.js +72 -0
- package/fileStorageShareAcl.js.map +1 -0
- package/index.d.ts +6 -0
- package/index.js +12 -2
- package/index.js.map +1 -1
- package/managedDatabaseMysql.d.ts +19 -19
- package/managedDatabaseOpensearch.d.ts +19 -19
- package/managedDatabasePostgresql.d.ts +19 -19
- package/managedDatabaseValkey.d.ts +19 -19
- package/managedObjectStoragePolicy.d.ts +3 -3
- package/package.json +2 -2
- package/types/input.d.ts +32 -32
- package/types/output.d.ts +93 -93
|
@@ -68,11 +68,11 @@ export declare class ManagedDatabaseMysql extends pulumi.CustomResource {
|
|
|
68
68
|
*/
|
|
69
69
|
readonly components: pulumi.Output<outputs.ManagedDatabaseMysqlComponent[]>;
|
|
70
70
|
/**
|
|
71
|
-
* User defined key-value pairs to classify the
|
|
71
|
+
* User defined key-value pairs to classify the database.
|
|
72
72
|
*/
|
|
73
73
|
readonly labels: pulumi.Output<{
|
|
74
74
|
[key: string]: string;
|
|
75
|
-
}
|
|
75
|
+
}>;
|
|
76
76
|
/**
|
|
77
77
|
* Maintenance window day of week. Lower case weekday name (monday, tuesday, ...)
|
|
78
78
|
*/
|
|
@@ -100,21 +100,21 @@ export declare class ManagedDatabaseMysql extends pulumi.CustomResource {
|
|
|
100
100
|
/**
|
|
101
101
|
* The administrative power state of the service
|
|
102
102
|
*/
|
|
103
|
-
readonly powered: pulumi.Output<boolean
|
|
103
|
+
readonly powered: pulumi.Output<boolean>;
|
|
104
104
|
/**
|
|
105
105
|
* Primary database name
|
|
106
106
|
*/
|
|
107
107
|
readonly primaryDatabase: pulumi.Output<string>;
|
|
108
108
|
/**
|
|
109
|
-
* Database
|
|
109
|
+
* Database engine properties.
|
|
110
110
|
*/
|
|
111
|
-
readonly properties: pulumi.Output<outputs.ManagedDatabaseMysqlProperties>;
|
|
111
|
+
readonly properties: pulumi.Output<outputs.ManagedDatabaseMysqlProperties | undefined>;
|
|
112
112
|
/**
|
|
113
113
|
* Hostname to the service instance
|
|
114
114
|
*/
|
|
115
115
|
readonly serviceHost: pulumi.Output<string>;
|
|
116
116
|
/**
|
|
117
|
-
* Primary
|
|
117
|
+
* Primary password to the service instance
|
|
118
118
|
*/
|
|
119
119
|
readonly servicePassword: pulumi.Output<string>;
|
|
120
120
|
/**
|
|
@@ -130,19 +130,19 @@ export declare class ManagedDatabaseMysql extends pulumi.CustomResource {
|
|
|
130
130
|
*/
|
|
131
131
|
readonly serviceUsername: pulumi.Output<string>;
|
|
132
132
|
/**
|
|
133
|
-
*
|
|
133
|
+
* The current state of the service
|
|
134
134
|
*/
|
|
135
135
|
readonly state: pulumi.Output<string>;
|
|
136
136
|
/**
|
|
137
137
|
* If set to true, prevents the managed service from being powered off, or deleted.
|
|
138
138
|
*/
|
|
139
|
-
readonly terminationProtection: pulumi.Output<boolean
|
|
139
|
+
readonly terminationProtection: pulumi.Output<boolean>;
|
|
140
140
|
/**
|
|
141
|
-
* Title of
|
|
141
|
+
* Title of the managed database instance
|
|
142
142
|
*/
|
|
143
143
|
readonly title: pulumi.Output<string>;
|
|
144
144
|
/**
|
|
145
|
-
* Type of the
|
|
145
|
+
* Type of the managed database instance
|
|
146
146
|
*/
|
|
147
147
|
readonly type: pulumi.Output<string>;
|
|
148
148
|
/**
|
|
@@ -171,7 +171,7 @@ export interface ManagedDatabaseMysqlState {
|
|
|
171
171
|
*/
|
|
172
172
|
components?: pulumi.Input<pulumi.Input<inputs.ManagedDatabaseMysqlComponent>[]>;
|
|
173
173
|
/**
|
|
174
|
-
* User defined key-value pairs to classify the
|
|
174
|
+
* User defined key-value pairs to classify the database.
|
|
175
175
|
*/
|
|
176
176
|
labels?: pulumi.Input<{
|
|
177
177
|
[key: string]: pulumi.Input<string>;
|
|
@@ -209,7 +209,7 @@ export interface ManagedDatabaseMysqlState {
|
|
|
209
209
|
*/
|
|
210
210
|
primaryDatabase?: pulumi.Input<string>;
|
|
211
211
|
/**
|
|
212
|
-
* Database
|
|
212
|
+
* Database engine properties.
|
|
213
213
|
*/
|
|
214
214
|
properties?: pulumi.Input<inputs.ManagedDatabaseMysqlProperties>;
|
|
215
215
|
/**
|
|
@@ -217,7 +217,7 @@ export interface ManagedDatabaseMysqlState {
|
|
|
217
217
|
*/
|
|
218
218
|
serviceHost?: pulumi.Input<string>;
|
|
219
219
|
/**
|
|
220
|
-
* Primary
|
|
220
|
+
* Primary password to the service instance
|
|
221
221
|
*/
|
|
222
222
|
servicePassword?: pulumi.Input<string>;
|
|
223
223
|
/**
|
|
@@ -233,7 +233,7 @@ export interface ManagedDatabaseMysqlState {
|
|
|
233
233
|
*/
|
|
234
234
|
serviceUsername?: pulumi.Input<string>;
|
|
235
235
|
/**
|
|
236
|
-
*
|
|
236
|
+
* The current state of the service
|
|
237
237
|
*/
|
|
238
238
|
state?: pulumi.Input<string>;
|
|
239
239
|
/**
|
|
@@ -241,11 +241,11 @@ export interface ManagedDatabaseMysqlState {
|
|
|
241
241
|
*/
|
|
242
242
|
terminationProtection?: pulumi.Input<boolean>;
|
|
243
243
|
/**
|
|
244
|
-
* Title of
|
|
244
|
+
* Title of the managed database instance
|
|
245
245
|
*/
|
|
246
246
|
title?: pulumi.Input<string>;
|
|
247
247
|
/**
|
|
248
|
-
* Type of the
|
|
248
|
+
* Type of the managed database instance
|
|
249
249
|
*/
|
|
250
250
|
type?: pulumi.Input<string>;
|
|
251
251
|
/**
|
|
@@ -262,7 +262,7 @@ export interface ManagedDatabaseMysqlArgs {
|
|
|
262
262
|
*/
|
|
263
263
|
additionalDiskSpaceGib?: pulumi.Input<number>;
|
|
264
264
|
/**
|
|
265
|
-
* User defined key-value pairs to classify the
|
|
265
|
+
* User defined key-value pairs to classify the database.
|
|
266
266
|
*/
|
|
267
267
|
labels?: pulumi.Input<{
|
|
268
268
|
[key: string]: pulumi.Input<string>;
|
|
@@ -292,7 +292,7 @@ export interface ManagedDatabaseMysqlArgs {
|
|
|
292
292
|
*/
|
|
293
293
|
powered?: pulumi.Input<boolean>;
|
|
294
294
|
/**
|
|
295
|
-
* Database
|
|
295
|
+
* Database engine properties.
|
|
296
296
|
*/
|
|
297
297
|
properties?: pulumi.Input<inputs.ManagedDatabaseMysqlProperties>;
|
|
298
298
|
/**
|
|
@@ -300,7 +300,7 @@ export interface ManagedDatabaseMysqlArgs {
|
|
|
300
300
|
*/
|
|
301
301
|
terminationProtection?: pulumi.Input<boolean>;
|
|
302
302
|
/**
|
|
303
|
-
* Title of
|
|
303
|
+
* Title of the managed database instance
|
|
304
304
|
*/
|
|
305
305
|
title: pulumi.Input<string>;
|
|
306
306
|
/**
|
|
@@ -64,11 +64,11 @@ export declare class ManagedDatabaseOpensearch extends pulumi.CustomResource {
|
|
|
64
64
|
*/
|
|
65
65
|
readonly extendedAccessControl: pulumi.Output<boolean>;
|
|
66
66
|
/**
|
|
67
|
-
* User defined key-value pairs to classify the
|
|
67
|
+
* User defined key-value pairs to classify the database.
|
|
68
68
|
*/
|
|
69
69
|
readonly labels: pulumi.Output<{
|
|
70
70
|
[key: string]: string;
|
|
71
|
-
}
|
|
71
|
+
}>;
|
|
72
72
|
/**
|
|
73
73
|
* Maintenance window day of week. Lower case weekday name (monday, tuesday, ...)
|
|
74
74
|
*/
|
|
@@ -96,21 +96,21 @@ export declare class ManagedDatabaseOpensearch extends pulumi.CustomResource {
|
|
|
96
96
|
/**
|
|
97
97
|
* The administrative power state of the service
|
|
98
98
|
*/
|
|
99
|
-
readonly powered: pulumi.Output<boolean
|
|
99
|
+
readonly powered: pulumi.Output<boolean>;
|
|
100
100
|
/**
|
|
101
101
|
* Primary database name
|
|
102
102
|
*/
|
|
103
103
|
readonly primaryDatabase: pulumi.Output<string>;
|
|
104
104
|
/**
|
|
105
|
-
* Database
|
|
105
|
+
* Database engine properties.
|
|
106
106
|
*/
|
|
107
|
-
readonly properties: pulumi.Output<outputs.ManagedDatabaseOpensearchProperties>;
|
|
107
|
+
readonly properties: pulumi.Output<outputs.ManagedDatabaseOpensearchProperties | undefined>;
|
|
108
108
|
/**
|
|
109
109
|
* Hostname to the service instance
|
|
110
110
|
*/
|
|
111
111
|
readonly serviceHost: pulumi.Output<string>;
|
|
112
112
|
/**
|
|
113
|
-
* Primary
|
|
113
|
+
* Primary password to the service instance
|
|
114
114
|
*/
|
|
115
115
|
readonly servicePassword: pulumi.Output<string>;
|
|
116
116
|
/**
|
|
@@ -126,19 +126,19 @@ export declare class ManagedDatabaseOpensearch extends pulumi.CustomResource {
|
|
|
126
126
|
*/
|
|
127
127
|
readonly serviceUsername: pulumi.Output<string>;
|
|
128
128
|
/**
|
|
129
|
-
*
|
|
129
|
+
* The current state of the service
|
|
130
130
|
*/
|
|
131
131
|
readonly state: pulumi.Output<string>;
|
|
132
132
|
/**
|
|
133
133
|
* If set to true, prevents the managed service from being powered off, or deleted.
|
|
134
134
|
*/
|
|
135
|
-
readonly terminationProtection: pulumi.Output<boolean
|
|
135
|
+
readonly terminationProtection: pulumi.Output<boolean>;
|
|
136
136
|
/**
|
|
137
|
-
* Title of
|
|
137
|
+
* Title of the managed database instance
|
|
138
138
|
*/
|
|
139
139
|
readonly title: pulumi.Output<string>;
|
|
140
140
|
/**
|
|
141
|
-
* Type of the
|
|
141
|
+
* Type of the managed database instance
|
|
142
142
|
*/
|
|
143
143
|
readonly type: pulumi.Output<string>;
|
|
144
144
|
/**
|
|
@@ -175,7 +175,7 @@ export interface ManagedDatabaseOpensearchState {
|
|
|
175
175
|
*/
|
|
176
176
|
extendedAccessControl?: pulumi.Input<boolean>;
|
|
177
177
|
/**
|
|
178
|
-
* User defined key-value pairs to classify the
|
|
178
|
+
* User defined key-value pairs to classify the database.
|
|
179
179
|
*/
|
|
180
180
|
labels?: pulumi.Input<{
|
|
181
181
|
[key: string]: pulumi.Input<string>;
|
|
@@ -213,7 +213,7 @@ export interface ManagedDatabaseOpensearchState {
|
|
|
213
213
|
*/
|
|
214
214
|
primaryDatabase?: pulumi.Input<string>;
|
|
215
215
|
/**
|
|
216
|
-
* Database
|
|
216
|
+
* Database engine properties.
|
|
217
217
|
*/
|
|
218
218
|
properties?: pulumi.Input<inputs.ManagedDatabaseOpensearchProperties>;
|
|
219
219
|
/**
|
|
@@ -221,7 +221,7 @@ export interface ManagedDatabaseOpensearchState {
|
|
|
221
221
|
*/
|
|
222
222
|
serviceHost?: pulumi.Input<string>;
|
|
223
223
|
/**
|
|
224
|
-
* Primary
|
|
224
|
+
* Primary password to the service instance
|
|
225
225
|
*/
|
|
226
226
|
servicePassword?: pulumi.Input<string>;
|
|
227
227
|
/**
|
|
@@ -237,7 +237,7 @@ export interface ManagedDatabaseOpensearchState {
|
|
|
237
237
|
*/
|
|
238
238
|
serviceUsername?: pulumi.Input<string>;
|
|
239
239
|
/**
|
|
240
|
-
*
|
|
240
|
+
* The current state of the service
|
|
241
241
|
*/
|
|
242
242
|
state?: pulumi.Input<string>;
|
|
243
243
|
/**
|
|
@@ -245,11 +245,11 @@ export interface ManagedDatabaseOpensearchState {
|
|
|
245
245
|
*/
|
|
246
246
|
terminationProtection?: pulumi.Input<boolean>;
|
|
247
247
|
/**
|
|
248
|
-
* Title of
|
|
248
|
+
* Title of the managed database instance
|
|
249
249
|
*/
|
|
250
250
|
title?: pulumi.Input<string>;
|
|
251
251
|
/**
|
|
252
|
-
* Type of the
|
|
252
|
+
* Type of the managed database instance
|
|
253
253
|
*/
|
|
254
254
|
type?: pulumi.Input<string>;
|
|
255
255
|
/**
|
|
@@ -274,7 +274,7 @@ export interface ManagedDatabaseOpensearchArgs {
|
|
|
274
274
|
*/
|
|
275
275
|
extendedAccessControl?: pulumi.Input<boolean>;
|
|
276
276
|
/**
|
|
277
|
-
* User defined key-value pairs to classify the
|
|
277
|
+
* User defined key-value pairs to classify the database.
|
|
278
278
|
*/
|
|
279
279
|
labels?: pulumi.Input<{
|
|
280
280
|
[key: string]: pulumi.Input<string>;
|
|
@@ -304,7 +304,7 @@ export interface ManagedDatabaseOpensearchArgs {
|
|
|
304
304
|
*/
|
|
305
305
|
powered?: pulumi.Input<boolean>;
|
|
306
306
|
/**
|
|
307
|
-
* Database
|
|
307
|
+
* Database engine properties.
|
|
308
308
|
*/
|
|
309
309
|
properties?: pulumi.Input<inputs.ManagedDatabaseOpensearchProperties>;
|
|
310
310
|
/**
|
|
@@ -312,7 +312,7 @@ export interface ManagedDatabaseOpensearchArgs {
|
|
|
312
312
|
*/
|
|
313
313
|
terminationProtection?: pulumi.Input<boolean>;
|
|
314
314
|
/**
|
|
315
|
-
* Title of
|
|
315
|
+
* Title of the managed database instance
|
|
316
316
|
*/
|
|
317
317
|
title: pulumi.Input<string>;
|
|
318
318
|
/**
|
|
@@ -56,11 +56,11 @@ export declare class ManagedDatabasePostgresql extends pulumi.CustomResource {
|
|
|
56
56
|
*/
|
|
57
57
|
readonly components: pulumi.Output<outputs.ManagedDatabasePostgresqlComponent[]>;
|
|
58
58
|
/**
|
|
59
|
-
* User defined key-value pairs to classify the
|
|
59
|
+
* User defined key-value pairs to classify the database.
|
|
60
60
|
*/
|
|
61
61
|
readonly labels: pulumi.Output<{
|
|
62
62
|
[key: string]: string;
|
|
63
|
-
}
|
|
63
|
+
}>;
|
|
64
64
|
/**
|
|
65
65
|
* Maintenance window day of week. Lower case weekday name (monday, tuesday, ...)
|
|
66
66
|
*/
|
|
@@ -88,21 +88,21 @@ export declare class ManagedDatabasePostgresql extends pulumi.CustomResource {
|
|
|
88
88
|
/**
|
|
89
89
|
* The administrative power state of the service
|
|
90
90
|
*/
|
|
91
|
-
readonly powered: pulumi.Output<boolean
|
|
91
|
+
readonly powered: pulumi.Output<boolean>;
|
|
92
92
|
/**
|
|
93
93
|
* Primary database name
|
|
94
94
|
*/
|
|
95
95
|
readonly primaryDatabase: pulumi.Output<string>;
|
|
96
96
|
/**
|
|
97
|
-
* Database
|
|
97
|
+
* Database engine properties.
|
|
98
98
|
*/
|
|
99
|
-
readonly properties: pulumi.Output<outputs.ManagedDatabasePostgresqlProperties>;
|
|
99
|
+
readonly properties: pulumi.Output<outputs.ManagedDatabasePostgresqlProperties | undefined>;
|
|
100
100
|
/**
|
|
101
101
|
* Hostname to the service instance
|
|
102
102
|
*/
|
|
103
103
|
readonly serviceHost: pulumi.Output<string>;
|
|
104
104
|
/**
|
|
105
|
-
* Primary
|
|
105
|
+
* Primary password to the service instance
|
|
106
106
|
*/
|
|
107
107
|
readonly servicePassword: pulumi.Output<string>;
|
|
108
108
|
/**
|
|
@@ -122,19 +122,19 @@ export declare class ManagedDatabasePostgresql extends pulumi.CustomResource {
|
|
|
122
122
|
*/
|
|
123
123
|
readonly sslmode: pulumi.Output<string>;
|
|
124
124
|
/**
|
|
125
|
-
*
|
|
125
|
+
* The current state of the service
|
|
126
126
|
*/
|
|
127
127
|
readonly state: pulumi.Output<string>;
|
|
128
128
|
/**
|
|
129
129
|
* If set to true, prevents the managed service from being powered off, or deleted.
|
|
130
130
|
*/
|
|
131
|
-
readonly terminationProtection: pulumi.Output<boolean
|
|
131
|
+
readonly terminationProtection: pulumi.Output<boolean>;
|
|
132
132
|
/**
|
|
133
|
-
* Title of
|
|
133
|
+
* Title of the managed database instance
|
|
134
134
|
*/
|
|
135
135
|
readonly title: pulumi.Output<string>;
|
|
136
136
|
/**
|
|
137
|
-
* Type of the
|
|
137
|
+
* Type of the managed database instance
|
|
138
138
|
*/
|
|
139
139
|
readonly type: pulumi.Output<string>;
|
|
140
140
|
/**
|
|
@@ -163,7 +163,7 @@ export interface ManagedDatabasePostgresqlState {
|
|
|
163
163
|
*/
|
|
164
164
|
components?: pulumi.Input<pulumi.Input<inputs.ManagedDatabasePostgresqlComponent>[]>;
|
|
165
165
|
/**
|
|
166
|
-
* User defined key-value pairs to classify the
|
|
166
|
+
* User defined key-value pairs to classify the database.
|
|
167
167
|
*/
|
|
168
168
|
labels?: pulumi.Input<{
|
|
169
169
|
[key: string]: pulumi.Input<string>;
|
|
@@ -201,7 +201,7 @@ export interface ManagedDatabasePostgresqlState {
|
|
|
201
201
|
*/
|
|
202
202
|
primaryDatabase?: pulumi.Input<string>;
|
|
203
203
|
/**
|
|
204
|
-
* Database
|
|
204
|
+
* Database engine properties.
|
|
205
205
|
*/
|
|
206
206
|
properties?: pulumi.Input<inputs.ManagedDatabasePostgresqlProperties>;
|
|
207
207
|
/**
|
|
@@ -209,7 +209,7 @@ export interface ManagedDatabasePostgresqlState {
|
|
|
209
209
|
*/
|
|
210
210
|
serviceHost?: pulumi.Input<string>;
|
|
211
211
|
/**
|
|
212
|
-
* Primary
|
|
212
|
+
* Primary password to the service instance
|
|
213
213
|
*/
|
|
214
214
|
servicePassword?: pulumi.Input<string>;
|
|
215
215
|
/**
|
|
@@ -229,7 +229,7 @@ export interface ManagedDatabasePostgresqlState {
|
|
|
229
229
|
*/
|
|
230
230
|
sslmode?: pulumi.Input<string>;
|
|
231
231
|
/**
|
|
232
|
-
*
|
|
232
|
+
* The current state of the service
|
|
233
233
|
*/
|
|
234
234
|
state?: pulumi.Input<string>;
|
|
235
235
|
/**
|
|
@@ -237,11 +237,11 @@ export interface ManagedDatabasePostgresqlState {
|
|
|
237
237
|
*/
|
|
238
238
|
terminationProtection?: pulumi.Input<boolean>;
|
|
239
239
|
/**
|
|
240
|
-
* Title of
|
|
240
|
+
* Title of the managed database instance
|
|
241
241
|
*/
|
|
242
242
|
title?: pulumi.Input<string>;
|
|
243
243
|
/**
|
|
244
|
-
* Type of the
|
|
244
|
+
* Type of the managed database instance
|
|
245
245
|
*/
|
|
246
246
|
type?: pulumi.Input<string>;
|
|
247
247
|
/**
|
|
@@ -258,7 +258,7 @@ export interface ManagedDatabasePostgresqlArgs {
|
|
|
258
258
|
*/
|
|
259
259
|
additionalDiskSpaceGib?: pulumi.Input<number>;
|
|
260
260
|
/**
|
|
261
|
-
* User defined key-value pairs to classify the
|
|
261
|
+
* User defined key-value pairs to classify the database.
|
|
262
262
|
*/
|
|
263
263
|
labels?: pulumi.Input<{
|
|
264
264
|
[key: string]: pulumi.Input<string>;
|
|
@@ -288,7 +288,7 @@ export interface ManagedDatabasePostgresqlArgs {
|
|
|
288
288
|
*/
|
|
289
289
|
powered?: pulumi.Input<boolean>;
|
|
290
290
|
/**
|
|
291
|
-
* Database
|
|
291
|
+
* Database engine properties.
|
|
292
292
|
*/
|
|
293
293
|
properties?: pulumi.Input<inputs.ManagedDatabasePostgresqlProperties>;
|
|
294
294
|
/**
|
|
@@ -296,7 +296,7 @@ export interface ManagedDatabasePostgresqlArgs {
|
|
|
296
296
|
*/
|
|
297
297
|
terminationProtection?: pulumi.Input<boolean>;
|
|
298
298
|
/**
|
|
299
|
-
* Title of
|
|
299
|
+
* Title of the managed database instance
|
|
300
300
|
*/
|
|
301
301
|
title: pulumi.Input<string>;
|
|
302
302
|
/**
|
|
@@ -54,11 +54,11 @@ export declare class ManagedDatabaseValkey extends pulumi.CustomResource {
|
|
|
54
54
|
*/
|
|
55
55
|
readonly components: pulumi.Output<outputs.ManagedDatabaseValkeyComponent[]>;
|
|
56
56
|
/**
|
|
57
|
-
* User defined key-value pairs to classify the
|
|
57
|
+
* User defined key-value pairs to classify the database.
|
|
58
58
|
*/
|
|
59
59
|
readonly labels: pulumi.Output<{
|
|
60
60
|
[key: string]: string;
|
|
61
|
-
}
|
|
61
|
+
}>;
|
|
62
62
|
/**
|
|
63
63
|
* Maintenance window day of week. Lower case weekday name (monday, tuesday, ...)
|
|
64
64
|
*/
|
|
@@ -86,21 +86,21 @@ export declare class ManagedDatabaseValkey extends pulumi.CustomResource {
|
|
|
86
86
|
/**
|
|
87
87
|
* The administrative power state of the service
|
|
88
88
|
*/
|
|
89
|
-
readonly powered: pulumi.Output<boolean
|
|
89
|
+
readonly powered: pulumi.Output<boolean>;
|
|
90
90
|
/**
|
|
91
91
|
* Primary database name
|
|
92
92
|
*/
|
|
93
93
|
readonly primaryDatabase: pulumi.Output<string>;
|
|
94
94
|
/**
|
|
95
|
-
* Database
|
|
95
|
+
* Database engine properties.
|
|
96
96
|
*/
|
|
97
|
-
readonly properties: pulumi.Output<outputs.ManagedDatabaseValkeyProperties>;
|
|
97
|
+
readonly properties: pulumi.Output<outputs.ManagedDatabaseValkeyProperties | undefined>;
|
|
98
98
|
/**
|
|
99
99
|
* Hostname to the service instance
|
|
100
100
|
*/
|
|
101
101
|
readonly serviceHost: pulumi.Output<string>;
|
|
102
102
|
/**
|
|
103
|
-
* Primary
|
|
103
|
+
* Primary password to the service instance
|
|
104
104
|
*/
|
|
105
105
|
readonly servicePassword: pulumi.Output<string>;
|
|
106
106
|
/**
|
|
@@ -116,19 +116,19 @@ export declare class ManagedDatabaseValkey extends pulumi.CustomResource {
|
|
|
116
116
|
*/
|
|
117
117
|
readonly serviceUsername: pulumi.Output<string>;
|
|
118
118
|
/**
|
|
119
|
-
*
|
|
119
|
+
* The current state of the service
|
|
120
120
|
*/
|
|
121
121
|
readonly state: pulumi.Output<string>;
|
|
122
122
|
/**
|
|
123
123
|
* If set to true, prevents the managed service from being powered off, or deleted.
|
|
124
124
|
*/
|
|
125
|
-
readonly terminationProtection: pulumi.Output<boolean
|
|
125
|
+
readonly terminationProtection: pulumi.Output<boolean>;
|
|
126
126
|
/**
|
|
127
|
-
* Title of
|
|
127
|
+
* Title of the managed database instance
|
|
128
128
|
*/
|
|
129
129
|
readonly title: pulumi.Output<string>;
|
|
130
130
|
/**
|
|
131
|
-
* Type of the
|
|
131
|
+
* Type of the managed database instance
|
|
132
132
|
*/
|
|
133
133
|
readonly type: pulumi.Output<string>;
|
|
134
134
|
/**
|
|
@@ -157,7 +157,7 @@ export interface ManagedDatabaseValkeyState {
|
|
|
157
157
|
*/
|
|
158
158
|
components?: pulumi.Input<pulumi.Input<inputs.ManagedDatabaseValkeyComponent>[]>;
|
|
159
159
|
/**
|
|
160
|
-
* User defined key-value pairs to classify the
|
|
160
|
+
* User defined key-value pairs to classify the database.
|
|
161
161
|
*/
|
|
162
162
|
labels?: pulumi.Input<{
|
|
163
163
|
[key: string]: pulumi.Input<string>;
|
|
@@ -195,7 +195,7 @@ export interface ManagedDatabaseValkeyState {
|
|
|
195
195
|
*/
|
|
196
196
|
primaryDatabase?: pulumi.Input<string>;
|
|
197
197
|
/**
|
|
198
|
-
* Database
|
|
198
|
+
* Database engine properties.
|
|
199
199
|
*/
|
|
200
200
|
properties?: pulumi.Input<inputs.ManagedDatabaseValkeyProperties>;
|
|
201
201
|
/**
|
|
@@ -203,7 +203,7 @@ export interface ManagedDatabaseValkeyState {
|
|
|
203
203
|
*/
|
|
204
204
|
serviceHost?: pulumi.Input<string>;
|
|
205
205
|
/**
|
|
206
|
-
* Primary
|
|
206
|
+
* Primary password to the service instance
|
|
207
207
|
*/
|
|
208
208
|
servicePassword?: pulumi.Input<string>;
|
|
209
209
|
/**
|
|
@@ -219,7 +219,7 @@ export interface ManagedDatabaseValkeyState {
|
|
|
219
219
|
*/
|
|
220
220
|
serviceUsername?: pulumi.Input<string>;
|
|
221
221
|
/**
|
|
222
|
-
*
|
|
222
|
+
* The current state of the service
|
|
223
223
|
*/
|
|
224
224
|
state?: pulumi.Input<string>;
|
|
225
225
|
/**
|
|
@@ -227,11 +227,11 @@ export interface ManagedDatabaseValkeyState {
|
|
|
227
227
|
*/
|
|
228
228
|
terminationProtection?: pulumi.Input<boolean>;
|
|
229
229
|
/**
|
|
230
|
-
* Title of
|
|
230
|
+
* Title of the managed database instance
|
|
231
231
|
*/
|
|
232
232
|
title?: pulumi.Input<string>;
|
|
233
233
|
/**
|
|
234
|
-
* Type of the
|
|
234
|
+
* Type of the managed database instance
|
|
235
235
|
*/
|
|
236
236
|
type?: pulumi.Input<string>;
|
|
237
237
|
/**
|
|
@@ -248,7 +248,7 @@ export interface ManagedDatabaseValkeyArgs {
|
|
|
248
248
|
*/
|
|
249
249
|
additionalDiskSpaceGib?: pulumi.Input<number>;
|
|
250
250
|
/**
|
|
251
|
-
* User defined key-value pairs to classify the
|
|
251
|
+
* User defined key-value pairs to classify the database.
|
|
252
252
|
*/
|
|
253
253
|
labels?: pulumi.Input<{
|
|
254
254
|
[key: string]: pulumi.Input<string>;
|
|
@@ -278,7 +278,7 @@ export interface ManagedDatabaseValkeyArgs {
|
|
|
278
278
|
*/
|
|
279
279
|
powered?: pulumi.Input<boolean>;
|
|
280
280
|
/**
|
|
281
|
-
* Database
|
|
281
|
+
* Database engine properties.
|
|
282
282
|
*/
|
|
283
283
|
properties?: pulumi.Input<inputs.ManagedDatabaseValkeyProperties>;
|
|
284
284
|
/**
|
|
@@ -286,7 +286,7 @@ export interface ManagedDatabaseValkeyArgs {
|
|
|
286
286
|
*/
|
|
287
287
|
terminationProtection?: pulumi.Input<boolean>;
|
|
288
288
|
/**
|
|
289
|
-
* Title of
|
|
289
|
+
* Title of the managed database instance
|
|
290
290
|
*/
|
|
291
291
|
title: pulumi.Input<string>;
|
|
292
292
|
/**
|
|
@@ -54,7 +54,7 @@ export declare class ManagedObjectStoragePolicy extends pulumi.CustomResource {
|
|
|
54
54
|
*/
|
|
55
55
|
readonly defaultVersionId: pulumi.Output<string>;
|
|
56
56
|
/**
|
|
57
|
-
* Description of the policy.
|
|
57
|
+
* Description of the policy. This property is immutable after creation.
|
|
58
58
|
*/
|
|
59
59
|
readonly description: pulumi.Output<string | undefined>;
|
|
60
60
|
/**
|
|
@@ -107,7 +107,7 @@ export interface ManagedObjectStoragePolicyState {
|
|
|
107
107
|
*/
|
|
108
108
|
defaultVersionId?: pulumi.Input<string>;
|
|
109
109
|
/**
|
|
110
|
-
* Description of the policy.
|
|
110
|
+
* Description of the policy. This property is immutable after creation.
|
|
111
111
|
*/
|
|
112
112
|
description?: pulumi.Input<string>;
|
|
113
113
|
/**
|
|
@@ -136,7 +136,7 @@ export interface ManagedObjectStoragePolicyState {
|
|
|
136
136
|
*/
|
|
137
137
|
export interface ManagedObjectStoragePolicyArgs {
|
|
138
138
|
/**
|
|
139
|
-
* Description of the policy.
|
|
139
|
+
* Description of the policy. This property is immutable after creation.
|
|
140
140
|
*/
|
|
141
141
|
description?: pulumi.Input<string>;
|
|
142
142
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@upcloud/pulumi-upcloud",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.0",
|
|
4
4
|
"description": "A Pulumi package for creating and managing UpCloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"pulumi": {
|
|
25
25
|
"resource": true,
|
|
26
26
|
"name": "upcloud",
|
|
27
|
-
"version": "0.
|
|
27
|
+
"version": "0.10.0",
|
|
28
28
|
"server": "github://api.github.com/UpCloudLtd/pulumi-upcloud"
|
|
29
29
|
}
|
|
30
30
|
}
|