@pulumi/cloudflare 6.11.0-alpha.1761117052 → 6.11.0-alpha.1761159851
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/types/input.d.ts +234 -0
- package/types/output.d.ts +234 -0
- package/workerScript.d.ts +15 -0
- package/workerScript.js +4 -0
- package/workerScript.js.map +1 -1
- package/workersScript.d.ts +15 -0
- package/workersScript.js +4 -0
- package/workersScript.js.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/cloudflare",
|
|
3
|
-
"version": "6.11.0-alpha.
|
|
3
|
+
"version": "6.11.0-alpha.1761159851",
|
|
4
4
|
"description": "A Pulumi package for creating and managing Cloudflare cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -23,6 +23,6 @@
|
|
|
23
23
|
"pulumi": {
|
|
24
24
|
"resource": true,
|
|
25
25
|
"name": "cloudflare",
|
|
26
|
-
"version": "6.11.0-alpha.
|
|
26
|
+
"version": "6.11.0-alpha.1761159851"
|
|
27
27
|
}
|
|
28
28
|
}
|
package/types/input.d.ts
CHANGED
|
@@ -11174,6 +11174,123 @@ export interface WorkerScriptLimits {
|
|
|
11174
11174
|
*/
|
|
11175
11175
|
cpuMs?: pulumi.Input<number>;
|
|
11176
11176
|
}
|
|
11177
|
+
export interface WorkerScriptMigrations {
|
|
11178
|
+
/**
|
|
11179
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
11180
|
+
* A list of classes to delete Durable Object namespaces from.
|
|
11181
|
+
*/
|
|
11182
|
+
deletedClasses?: pulumi.Input<pulumi.Input<string>[]>;
|
|
11183
|
+
/**
|
|
11184
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
11185
|
+
* A list of classes to create Durable Object namespaces from.
|
|
11186
|
+
*/
|
|
11187
|
+
newClasses?: pulumi.Input<pulumi.Input<string>[]>;
|
|
11188
|
+
/**
|
|
11189
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
11190
|
+
* A list of classes to create Durable Object namespaces with SQLite from.
|
|
11191
|
+
*/
|
|
11192
|
+
newSqliteClasses?: pulumi.Input<pulumi.Input<string>[]>;
|
|
11193
|
+
/**
|
|
11194
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
11195
|
+
* Tag to set as the latest migration tag.
|
|
11196
|
+
*/
|
|
11197
|
+
newTag?: pulumi.Input<string>;
|
|
11198
|
+
/**
|
|
11199
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
11200
|
+
* Tag used to verify against the latest migration tag for this Worker. If they don't match, the upload is rejected.
|
|
11201
|
+
*/
|
|
11202
|
+
oldTag?: pulumi.Input<string>;
|
|
11203
|
+
/**
|
|
11204
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
11205
|
+
* A list of classes with Durable Object namespaces that were renamed.
|
|
11206
|
+
*/
|
|
11207
|
+
renamedClasses?: pulumi.Input<pulumi.Input<inputs.WorkerScriptMigrationsRenamedClass>[]>;
|
|
11208
|
+
/**
|
|
11209
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
11210
|
+
* Migrations to apply in order.
|
|
11211
|
+
*/
|
|
11212
|
+
steps?: pulumi.Input<pulumi.Input<inputs.WorkerScriptMigrationsStep>[]>;
|
|
11213
|
+
/**
|
|
11214
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
11215
|
+
* A list of transfers for Durable Object namespaces from a different Worker and class to a class defined in this Worker.
|
|
11216
|
+
*/
|
|
11217
|
+
transferredClasses?: pulumi.Input<pulumi.Input<inputs.WorkerScriptMigrationsTransferredClass>[]>;
|
|
11218
|
+
}
|
|
11219
|
+
export interface WorkerScriptMigrationsRenamedClass {
|
|
11220
|
+
/**
|
|
11221
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
11222
|
+
*/
|
|
11223
|
+
from?: pulumi.Input<string>;
|
|
11224
|
+
/**
|
|
11225
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
11226
|
+
*/
|
|
11227
|
+
to?: pulumi.Input<string>;
|
|
11228
|
+
}
|
|
11229
|
+
export interface WorkerScriptMigrationsStep {
|
|
11230
|
+
/**
|
|
11231
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
11232
|
+
* A list of classes to delete Durable Object namespaces from.
|
|
11233
|
+
*/
|
|
11234
|
+
deletedClasses?: pulumi.Input<pulumi.Input<string>[]>;
|
|
11235
|
+
/**
|
|
11236
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
11237
|
+
* A list of classes to create Durable Object namespaces from.
|
|
11238
|
+
*/
|
|
11239
|
+
newClasses?: pulumi.Input<pulumi.Input<string>[]>;
|
|
11240
|
+
/**
|
|
11241
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
11242
|
+
* A list of classes to create Durable Object namespaces with SQLite from.
|
|
11243
|
+
*/
|
|
11244
|
+
newSqliteClasses?: pulumi.Input<pulumi.Input<string>[]>;
|
|
11245
|
+
/**
|
|
11246
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
11247
|
+
* A list of classes with Durable Object namespaces that were renamed.
|
|
11248
|
+
*/
|
|
11249
|
+
renamedClasses?: pulumi.Input<pulumi.Input<inputs.WorkerScriptMigrationsStepRenamedClass>[]>;
|
|
11250
|
+
/**
|
|
11251
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
11252
|
+
* A list of transfers for Durable Object namespaces from a different Worker and class to a class defined in this Worker.
|
|
11253
|
+
*/
|
|
11254
|
+
transferredClasses?: pulumi.Input<pulumi.Input<inputs.WorkerScriptMigrationsStepTransferredClass>[]>;
|
|
11255
|
+
}
|
|
11256
|
+
export interface WorkerScriptMigrationsStepRenamedClass {
|
|
11257
|
+
/**
|
|
11258
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
11259
|
+
*/
|
|
11260
|
+
from?: pulumi.Input<string>;
|
|
11261
|
+
/**
|
|
11262
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
11263
|
+
*/
|
|
11264
|
+
to?: pulumi.Input<string>;
|
|
11265
|
+
}
|
|
11266
|
+
export interface WorkerScriptMigrationsStepTransferredClass {
|
|
11267
|
+
/**
|
|
11268
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
11269
|
+
*/
|
|
11270
|
+
from?: pulumi.Input<string>;
|
|
11271
|
+
/**
|
|
11272
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
11273
|
+
*/
|
|
11274
|
+
fromScript?: pulumi.Input<string>;
|
|
11275
|
+
/**
|
|
11276
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
11277
|
+
*/
|
|
11278
|
+
to?: pulumi.Input<string>;
|
|
11279
|
+
}
|
|
11280
|
+
export interface WorkerScriptMigrationsTransferredClass {
|
|
11281
|
+
/**
|
|
11282
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
11283
|
+
*/
|
|
11284
|
+
from?: pulumi.Input<string>;
|
|
11285
|
+
/**
|
|
11286
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
11287
|
+
*/
|
|
11288
|
+
fromScript?: pulumi.Input<string>;
|
|
11289
|
+
/**
|
|
11290
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
11291
|
+
*/
|
|
11292
|
+
to?: pulumi.Input<string>;
|
|
11293
|
+
}
|
|
11177
11294
|
export interface WorkerScriptNamedHandler {
|
|
11178
11295
|
/**
|
|
11179
11296
|
* The names of handlers exported as part of the named export.
|
|
@@ -11806,6 +11923,123 @@ export interface WorkersScriptLimits {
|
|
|
11806
11923
|
*/
|
|
11807
11924
|
cpuMs?: pulumi.Input<number>;
|
|
11808
11925
|
}
|
|
11926
|
+
export interface WorkersScriptMigrations {
|
|
11927
|
+
/**
|
|
11928
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
11929
|
+
* A list of classes to delete Durable Object namespaces from.
|
|
11930
|
+
*/
|
|
11931
|
+
deletedClasses?: pulumi.Input<pulumi.Input<string>[]>;
|
|
11932
|
+
/**
|
|
11933
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
11934
|
+
* A list of classes to create Durable Object namespaces from.
|
|
11935
|
+
*/
|
|
11936
|
+
newClasses?: pulumi.Input<pulumi.Input<string>[]>;
|
|
11937
|
+
/**
|
|
11938
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
11939
|
+
* A list of classes to create Durable Object namespaces with SQLite from.
|
|
11940
|
+
*/
|
|
11941
|
+
newSqliteClasses?: pulumi.Input<pulumi.Input<string>[]>;
|
|
11942
|
+
/**
|
|
11943
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
11944
|
+
* Tag to set as the latest migration tag.
|
|
11945
|
+
*/
|
|
11946
|
+
newTag?: pulumi.Input<string>;
|
|
11947
|
+
/**
|
|
11948
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
11949
|
+
* Tag used to verify against the latest migration tag for this Worker. If they don't match, the upload is rejected.
|
|
11950
|
+
*/
|
|
11951
|
+
oldTag?: pulumi.Input<string>;
|
|
11952
|
+
/**
|
|
11953
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
11954
|
+
* A list of classes with Durable Object namespaces that were renamed.
|
|
11955
|
+
*/
|
|
11956
|
+
renamedClasses?: pulumi.Input<pulumi.Input<inputs.WorkersScriptMigrationsRenamedClass>[]>;
|
|
11957
|
+
/**
|
|
11958
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
11959
|
+
* Migrations to apply in order.
|
|
11960
|
+
*/
|
|
11961
|
+
steps?: pulumi.Input<pulumi.Input<inputs.WorkersScriptMigrationsStep>[]>;
|
|
11962
|
+
/**
|
|
11963
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
11964
|
+
* A list of transfers for Durable Object namespaces from a different Worker and class to a class defined in this Worker.
|
|
11965
|
+
*/
|
|
11966
|
+
transferredClasses?: pulumi.Input<pulumi.Input<inputs.WorkersScriptMigrationsTransferredClass>[]>;
|
|
11967
|
+
}
|
|
11968
|
+
export interface WorkersScriptMigrationsRenamedClass {
|
|
11969
|
+
/**
|
|
11970
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
11971
|
+
*/
|
|
11972
|
+
from?: pulumi.Input<string>;
|
|
11973
|
+
/**
|
|
11974
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
11975
|
+
*/
|
|
11976
|
+
to?: pulumi.Input<string>;
|
|
11977
|
+
}
|
|
11978
|
+
export interface WorkersScriptMigrationsStep {
|
|
11979
|
+
/**
|
|
11980
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
11981
|
+
* A list of classes to delete Durable Object namespaces from.
|
|
11982
|
+
*/
|
|
11983
|
+
deletedClasses?: pulumi.Input<pulumi.Input<string>[]>;
|
|
11984
|
+
/**
|
|
11985
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
11986
|
+
* A list of classes to create Durable Object namespaces from.
|
|
11987
|
+
*/
|
|
11988
|
+
newClasses?: pulumi.Input<pulumi.Input<string>[]>;
|
|
11989
|
+
/**
|
|
11990
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
11991
|
+
* A list of classes to create Durable Object namespaces with SQLite from.
|
|
11992
|
+
*/
|
|
11993
|
+
newSqliteClasses?: pulumi.Input<pulumi.Input<string>[]>;
|
|
11994
|
+
/**
|
|
11995
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
11996
|
+
* A list of classes with Durable Object namespaces that were renamed.
|
|
11997
|
+
*/
|
|
11998
|
+
renamedClasses?: pulumi.Input<pulumi.Input<inputs.WorkersScriptMigrationsStepRenamedClass>[]>;
|
|
11999
|
+
/**
|
|
12000
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
12001
|
+
* A list of transfers for Durable Object namespaces from a different Worker and class to a class defined in this Worker.
|
|
12002
|
+
*/
|
|
12003
|
+
transferredClasses?: pulumi.Input<pulumi.Input<inputs.WorkersScriptMigrationsStepTransferredClass>[]>;
|
|
12004
|
+
}
|
|
12005
|
+
export interface WorkersScriptMigrationsStepRenamedClass {
|
|
12006
|
+
/**
|
|
12007
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
12008
|
+
*/
|
|
12009
|
+
from?: pulumi.Input<string>;
|
|
12010
|
+
/**
|
|
12011
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
12012
|
+
*/
|
|
12013
|
+
to?: pulumi.Input<string>;
|
|
12014
|
+
}
|
|
12015
|
+
export interface WorkersScriptMigrationsStepTransferredClass {
|
|
12016
|
+
/**
|
|
12017
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
12018
|
+
*/
|
|
12019
|
+
from?: pulumi.Input<string>;
|
|
12020
|
+
/**
|
|
12021
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
12022
|
+
*/
|
|
12023
|
+
fromScript?: pulumi.Input<string>;
|
|
12024
|
+
/**
|
|
12025
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
12026
|
+
*/
|
|
12027
|
+
to?: pulumi.Input<string>;
|
|
12028
|
+
}
|
|
12029
|
+
export interface WorkersScriptMigrationsTransferredClass {
|
|
12030
|
+
/**
|
|
12031
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
12032
|
+
*/
|
|
12033
|
+
from?: pulumi.Input<string>;
|
|
12034
|
+
/**
|
|
12035
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
12036
|
+
*/
|
|
12037
|
+
fromScript?: pulumi.Input<string>;
|
|
12038
|
+
/**
|
|
12039
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
12040
|
+
*/
|
|
12041
|
+
to?: pulumi.Input<string>;
|
|
12042
|
+
}
|
|
11809
12043
|
export interface WorkersScriptNamedHandler {
|
|
11810
12044
|
/**
|
|
11811
12045
|
* The names of handlers exported as part of the named export.
|
package/types/output.d.ts
CHANGED
|
@@ -31151,6 +31151,123 @@ export interface WorkerScriptLimits {
|
|
|
31151
31151
|
*/
|
|
31152
31152
|
cpuMs?: number;
|
|
31153
31153
|
}
|
|
31154
|
+
export interface WorkerScriptMigrations {
|
|
31155
|
+
/**
|
|
31156
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
31157
|
+
* A list of classes to delete Durable Object namespaces from.
|
|
31158
|
+
*/
|
|
31159
|
+
deletedClasses?: string[];
|
|
31160
|
+
/**
|
|
31161
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
31162
|
+
* A list of classes to create Durable Object namespaces from.
|
|
31163
|
+
*/
|
|
31164
|
+
newClasses?: string[];
|
|
31165
|
+
/**
|
|
31166
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
31167
|
+
* A list of classes to create Durable Object namespaces with SQLite from.
|
|
31168
|
+
*/
|
|
31169
|
+
newSqliteClasses?: string[];
|
|
31170
|
+
/**
|
|
31171
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
31172
|
+
* Tag to set as the latest migration tag.
|
|
31173
|
+
*/
|
|
31174
|
+
newTag?: string;
|
|
31175
|
+
/**
|
|
31176
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
31177
|
+
* Tag used to verify against the latest migration tag for this Worker. If they don't match, the upload is rejected.
|
|
31178
|
+
*/
|
|
31179
|
+
oldTag?: string;
|
|
31180
|
+
/**
|
|
31181
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
31182
|
+
* A list of classes with Durable Object namespaces that were renamed.
|
|
31183
|
+
*/
|
|
31184
|
+
renamedClasses?: outputs.WorkerScriptMigrationsRenamedClass[];
|
|
31185
|
+
/**
|
|
31186
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
31187
|
+
* Migrations to apply in order.
|
|
31188
|
+
*/
|
|
31189
|
+
steps?: outputs.WorkerScriptMigrationsStep[];
|
|
31190
|
+
/**
|
|
31191
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
31192
|
+
* A list of transfers for Durable Object namespaces from a different Worker and class to a class defined in this Worker.
|
|
31193
|
+
*/
|
|
31194
|
+
transferredClasses?: outputs.WorkerScriptMigrationsTransferredClass[];
|
|
31195
|
+
}
|
|
31196
|
+
export interface WorkerScriptMigrationsRenamedClass {
|
|
31197
|
+
/**
|
|
31198
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
31199
|
+
*/
|
|
31200
|
+
from?: string;
|
|
31201
|
+
/**
|
|
31202
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
31203
|
+
*/
|
|
31204
|
+
to?: string;
|
|
31205
|
+
}
|
|
31206
|
+
export interface WorkerScriptMigrationsStep {
|
|
31207
|
+
/**
|
|
31208
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
31209
|
+
* A list of classes to delete Durable Object namespaces from.
|
|
31210
|
+
*/
|
|
31211
|
+
deletedClasses?: string[];
|
|
31212
|
+
/**
|
|
31213
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
31214
|
+
* A list of classes to create Durable Object namespaces from.
|
|
31215
|
+
*/
|
|
31216
|
+
newClasses?: string[];
|
|
31217
|
+
/**
|
|
31218
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
31219
|
+
* A list of classes to create Durable Object namespaces with SQLite from.
|
|
31220
|
+
*/
|
|
31221
|
+
newSqliteClasses?: string[];
|
|
31222
|
+
/**
|
|
31223
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
31224
|
+
* A list of classes with Durable Object namespaces that were renamed.
|
|
31225
|
+
*/
|
|
31226
|
+
renamedClasses?: outputs.WorkerScriptMigrationsStepRenamedClass[];
|
|
31227
|
+
/**
|
|
31228
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
31229
|
+
* A list of transfers for Durable Object namespaces from a different Worker and class to a class defined in this Worker.
|
|
31230
|
+
*/
|
|
31231
|
+
transferredClasses?: outputs.WorkerScriptMigrationsStepTransferredClass[];
|
|
31232
|
+
}
|
|
31233
|
+
export interface WorkerScriptMigrationsStepRenamedClass {
|
|
31234
|
+
/**
|
|
31235
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
31236
|
+
*/
|
|
31237
|
+
from?: string;
|
|
31238
|
+
/**
|
|
31239
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
31240
|
+
*/
|
|
31241
|
+
to?: string;
|
|
31242
|
+
}
|
|
31243
|
+
export interface WorkerScriptMigrationsStepTransferredClass {
|
|
31244
|
+
/**
|
|
31245
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
31246
|
+
*/
|
|
31247
|
+
from?: string;
|
|
31248
|
+
/**
|
|
31249
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
31250
|
+
*/
|
|
31251
|
+
fromScript?: string;
|
|
31252
|
+
/**
|
|
31253
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
31254
|
+
*/
|
|
31255
|
+
to?: string;
|
|
31256
|
+
}
|
|
31257
|
+
export interface WorkerScriptMigrationsTransferredClass {
|
|
31258
|
+
/**
|
|
31259
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
31260
|
+
*/
|
|
31261
|
+
from?: string;
|
|
31262
|
+
/**
|
|
31263
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
31264
|
+
*/
|
|
31265
|
+
fromScript?: string;
|
|
31266
|
+
/**
|
|
31267
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
31268
|
+
*/
|
|
31269
|
+
to?: string;
|
|
31270
|
+
}
|
|
31154
31271
|
export interface WorkerScriptNamedHandler {
|
|
31155
31272
|
/**
|
|
31156
31273
|
* The names of handlers exported as part of the named export.
|
|
@@ -31783,6 +31900,123 @@ export interface WorkersScriptLimits {
|
|
|
31783
31900
|
*/
|
|
31784
31901
|
cpuMs?: number;
|
|
31785
31902
|
}
|
|
31903
|
+
export interface WorkersScriptMigrations {
|
|
31904
|
+
/**
|
|
31905
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
31906
|
+
* A list of classes to delete Durable Object namespaces from.
|
|
31907
|
+
*/
|
|
31908
|
+
deletedClasses?: string[];
|
|
31909
|
+
/**
|
|
31910
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
31911
|
+
* A list of classes to create Durable Object namespaces from.
|
|
31912
|
+
*/
|
|
31913
|
+
newClasses?: string[];
|
|
31914
|
+
/**
|
|
31915
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
31916
|
+
* A list of classes to create Durable Object namespaces with SQLite from.
|
|
31917
|
+
*/
|
|
31918
|
+
newSqliteClasses?: string[];
|
|
31919
|
+
/**
|
|
31920
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
31921
|
+
* Tag to set as the latest migration tag.
|
|
31922
|
+
*/
|
|
31923
|
+
newTag?: string;
|
|
31924
|
+
/**
|
|
31925
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
31926
|
+
* Tag used to verify against the latest migration tag for this Worker. If they don't match, the upload is rejected.
|
|
31927
|
+
*/
|
|
31928
|
+
oldTag?: string;
|
|
31929
|
+
/**
|
|
31930
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
31931
|
+
* A list of classes with Durable Object namespaces that were renamed.
|
|
31932
|
+
*/
|
|
31933
|
+
renamedClasses?: outputs.WorkersScriptMigrationsRenamedClass[];
|
|
31934
|
+
/**
|
|
31935
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
31936
|
+
* Migrations to apply in order.
|
|
31937
|
+
*/
|
|
31938
|
+
steps?: outputs.WorkersScriptMigrationsStep[];
|
|
31939
|
+
/**
|
|
31940
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
31941
|
+
* A list of transfers for Durable Object namespaces from a different Worker and class to a class defined in this Worker.
|
|
31942
|
+
*/
|
|
31943
|
+
transferredClasses?: outputs.WorkersScriptMigrationsTransferredClass[];
|
|
31944
|
+
}
|
|
31945
|
+
export interface WorkersScriptMigrationsRenamedClass {
|
|
31946
|
+
/**
|
|
31947
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
31948
|
+
*/
|
|
31949
|
+
from?: string;
|
|
31950
|
+
/**
|
|
31951
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
31952
|
+
*/
|
|
31953
|
+
to?: string;
|
|
31954
|
+
}
|
|
31955
|
+
export interface WorkersScriptMigrationsStep {
|
|
31956
|
+
/**
|
|
31957
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
31958
|
+
* A list of classes to delete Durable Object namespaces from.
|
|
31959
|
+
*/
|
|
31960
|
+
deletedClasses?: string[];
|
|
31961
|
+
/**
|
|
31962
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
31963
|
+
* A list of classes to create Durable Object namespaces from.
|
|
31964
|
+
*/
|
|
31965
|
+
newClasses?: string[];
|
|
31966
|
+
/**
|
|
31967
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
31968
|
+
* A list of classes to create Durable Object namespaces with SQLite from.
|
|
31969
|
+
*/
|
|
31970
|
+
newSqliteClasses?: string[];
|
|
31971
|
+
/**
|
|
31972
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
31973
|
+
* A list of classes with Durable Object namespaces that were renamed.
|
|
31974
|
+
*/
|
|
31975
|
+
renamedClasses?: outputs.WorkersScriptMigrationsStepRenamedClass[];
|
|
31976
|
+
/**
|
|
31977
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
31978
|
+
* A list of transfers for Durable Object namespaces from a different Worker and class to a class defined in this Worker.
|
|
31979
|
+
*/
|
|
31980
|
+
transferredClasses?: outputs.WorkersScriptMigrationsStepTransferredClass[];
|
|
31981
|
+
}
|
|
31982
|
+
export interface WorkersScriptMigrationsStepRenamedClass {
|
|
31983
|
+
/**
|
|
31984
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
31985
|
+
*/
|
|
31986
|
+
from?: string;
|
|
31987
|
+
/**
|
|
31988
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
31989
|
+
*/
|
|
31990
|
+
to?: string;
|
|
31991
|
+
}
|
|
31992
|
+
export interface WorkersScriptMigrationsStepTransferredClass {
|
|
31993
|
+
/**
|
|
31994
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
31995
|
+
*/
|
|
31996
|
+
from?: string;
|
|
31997
|
+
/**
|
|
31998
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
31999
|
+
*/
|
|
32000
|
+
fromScript?: string;
|
|
32001
|
+
/**
|
|
32002
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
32003
|
+
*/
|
|
32004
|
+
to?: string;
|
|
32005
|
+
}
|
|
32006
|
+
export interface WorkersScriptMigrationsTransferredClass {
|
|
32007
|
+
/**
|
|
32008
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
32009
|
+
*/
|
|
32010
|
+
from?: string;
|
|
32011
|
+
/**
|
|
32012
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
32013
|
+
*/
|
|
32014
|
+
fromScript?: string;
|
|
32015
|
+
/**
|
|
32016
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
32017
|
+
*/
|
|
32018
|
+
to?: string;
|
|
32019
|
+
}
|
|
31786
32020
|
export interface WorkersScriptNamedHandler {
|
|
31787
32021
|
/**
|
|
31788
32022
|
* The names of handlers exported as part of the named export.
|
package/workerScript.d.ts
CHANGED
|
@@ -118,6 +118,11 @@ export declare class WorkerScript extends pulumi.CustomResource {
|
|
|
118
118
|
* The tag of the Durable Object migration that was most recently applied for this Worker.
|
|
119
119
|
*/
|
|
120
120
|
readonly migrationTag: pulumi.Output<string>;
|
|
121
|
+
/**
|
|
122
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
123
|
+
* Migrations to apply for Durable Objects associated with this Worker.
|
|
124
|
+
*/
|
|
125
|
+
readonly migrations: pulumi.Output<outputs.WorkerScriptMigrations | undefined>;
|
|
121
126
|
/**
|
|
122
127
|
* When the script was last modified.
|
|
123
128
|
*/
|
|
@@ -250,6 +255,11 @@ export interface WorkerScriptState {
|
|
|
250
255
|
* The tag of the Durable Object migration that was most recently applied for this Worker.
|
|
251
256
|
*/
|
|
252
257
|
migrationTag?: pulumi.Input<string>;
|
|
258
|
+
/**
|
|
259
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
260
|
+
* Migrations to apply for Durable Objects associated with this Worker.
|
|
261
|
+
*/
|
|
262
|
+
migrations?: pulumi.Input<inputs.WorkerScriptMigrations>;
|
|
253
263
|
/**
|
|
254
264
|
* When the script was last modified.
|
|
255
265
|
*/
|
|
@@ -345,6 +355,11 @@ export interface WorkerScriptArgs {
|
|
|
345
355
|
* Name of the uploaded file that contains the main module (e.g. the file exporting a `fetch` handler). Indicates a `module syntax` Worker.
|
|
346
356
|
*/
|
|
347
357
|
mainModule?: pulumi.Input<string>;
|
|
358
|
+
/**
|
|
359
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
360
|
+
* Migrations to apply for Durable Objects associated with this Worker.
|
|
361
|
+
*/
|
|
362
|
+
migrations?: pulumi.Input<inputs.WorkerScriptMigrations>;
|
|
348
363
|
/**
|
|
349
364
|
* Observability settings for the Worker.
|
|
350
365
|
*/
|
package/workerScript.js
CHANGED
|
@@ -71,6 +71,7 @@ class WorkerScript extends pulumi.CustomResource {
|
|
|
71
71
|
resourceInputs["logpush"] = state?.logpush;
|
|
72
72
|
resourceInputs["mainModule"] = state?.mainModule;
|
|
73
73
|
resourceInputs["migrationTag"] = state?.migrationTag;
|
|
74
|
+
resourceInputs["migrations"] = state?.migrations;
|
|
74
75
|
resourceInputs["modifiedOn"] = state?.modifiedOn;
|
|
75
76
|
resourceInputs["namedHandlers"] = state?.namedHandlers;
|
|
76
77
|
resourceInputs["observability"] = state?.observability;
|
|
@@ -103,6 +104,7 @@ class WorkerScript extends pulumi.CustomResource {
|
|
|
103
104
|
resourceInputs["limits"] = args?.limits;
|
|
104
105
|
resourceInputs["logpush"] = args?.logpush;
|
|
105
106
|
resourceInputs["mainModule"] = args?.mainModule;
|
|
107
|
+
resourceInputs["migrations"] = args?.migrations ? pulumi.secret(args.migrations) : undefined;
|
|
106
108
|
resourceInputs["observability"] = args?.observability;
|
|
107
109
|
resourceInputs["placement"] = args?.placement;
|
|
108
110
|
resourceInputs["scriptName"] = args?.scriptName;
|
|
@@ -122,6 +124,8 @@ class WorkerScript extends pulumi.CustomResource {
|
|
|
122
124
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
123
125
|
const aliasOpts = { aliases: [{ type: "cloudflare:index/workerScript:WorkerScript" }] };
|
|
124
126
|
opts = pulumi.mergeOptions(opts, aliasOpts);
|
|
127
|
+
const secretOpts = { additionalSecretOutputs: ["migrations"] };
|
|
128
|
+
opts = pulumi.mergeOptions(opts, secretOpts);
|
|
125
129
|
super(WorkerScript.__pulumiType, name, resourceInputs, opts);
|
|
126
130
|
}
|
|
127
131
|
}
|
package/workerScript.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"workerScript.js","sourceRoot":"","sources":["../workerScript.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;GAYG;AACH,MAAa,YAAa,SAAQ,MAAM,CAAC,cAAc;IACnD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAyB,EAAE,IAAmC;QACvH,MAAM,CAAC,GAAG,CAAC,IAAI,CAAC,qJAAqJ,CAAC,CAAA;QACtK,OAAO,IAAI,YAAY,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACnE,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,YAAY,CAAC,YAAY,CAAC;IAC7D,CAAC;
|
|
1
|
+
{"version":3,"file":"workerScript.js","sourceRoot":"","sources":["../workerScript.ts"],"names":[],"mappings":"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"}
|
package/workersScript.d.ts
CHANGED
|
@@ -116,6 +116,11 @@ export declare class WorkersScript extends pulumi.CustomResource {
|
|
|
116
116
|
* The tag of the Durable Object migration that was most recently applied for this Worker.
|
|
117
117
|
*/
|
|
118
118
|
readonly migrationTag: pulumi.Output<string>;
|
|
119
|
+
/**
|
|
120
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
121
|
+
* Migrations to apply for Durable Objects associated with this Worker.
|
|
122
|
+
*/
|
|
123
|
+
readonly migrations: pulumi.Output<outputs.WorkersScriptMigrations | undefined>;
|
|
119
124
|
/**
|
|
120
125
|
* When the script was last modified.
|
|
121
126
|
*/
|
|
@@ -247,6 +252,11 @@ export interface WorkersScriptState {
|
|
|
247
252
|
* The tag of the Durable Object migration that was most recently applied for this Worker.
|
|
248
253
|
*/
|
|
249
254
|
migrationTag?: pulumi.Input<string>;
|
|
255
|
+
/**
|
|
256
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
257
|
+
* Migrations to apply for Durable Objects associated with this Worker.
|
|
258
|
+
*/
|
|
259
|
+
migrations?: pulumi.Input<inputs.WorkersScriptMigrations>;
|
|
250
260
|
/**
|
|
251
261
|
* When the script was last modified.
|
|
252
262
|
*/
|
|
@@ -342,6 +352,11 @@ export interface WorkersScriptArgs {
|
|
|
342
352
|
* Name of the uploaded file that contains the main module (e.g. the file exporting a `fetch` handler). Indicates a `module syntax` Worker.
|
|
343
353
|
*/
|
|
344
354
|
mainModule?: pulumi.Input<string>;
|
|
355
|
+
/**
|
|
356
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
357
|
+
* Migrations to apply for Durable Objects associated with this Worker.
|
|
358
|
+
*/
|
|
359
|
+
migrations?: pulumi.Input<inputs.WorkersScriptMigrations>;
|
|
345
360
|
/**
|
|
346
361
|
* Observability settings for the Worker.
|
|
347
362
|
*/
|
package/workersScript.js
CHANGED
|
@@ -66,6 +66,7 @@ class WorkersScript extends pulumi.CustomResource {
|
|
|
66
66
|
resourceInputs["logpush"] = state?.logpush;
|
|
67
67
|
resourceInputs["mainModule"] = state?.mainModule;
|
|
68
68
|
resourceInputs["migrationTag"] = state?.migrationTag;
|
|
69
|
+
resourceInputs["migrations"] = state?.migrations;
|
|
69
70
|
resourceInputs["modifiedOn"] = state?.modifiedOn;
|
|
70
71
|
resourceInputs["namedHandlers"] = state?.namedHandlers;
|
|
71
72
|
resourceInputs["observability"] = state?.observability;
|
|
@@ -98,6 +99,7 @@ class WorkersScript extends pulumi.CustomResource {
|
|
|
98
99
|
resourceInputs["limits"] = args?.limits;
|
|
99
100
|
resourceInputs["logpush"] = args?.logpush;
|
|
100
101
|
resourceInputs["mainModule"] = args?.mainModule;
|
|
102
|
+
resourceInputs["migrations"] = args?.migrations ? pulumi.secret(args.migrations) : undefined;
|
|
101
103
|
resourceInputs["observability"] = args?.observability;
|
|
102
104
|
resourceInputs["placement"] = args?.placement;
|
|
103
105
|
resourceInputs["scriptName"] = args?.scriptName;
|
|
@@ -117,6 +119,8 @@ class WorkersScript extends pulumi.CustomResource {
|
|
|
117
119
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
118
120
|
const aliasOpts = { aliases: [{ type: "cloudflare:index/workerScript:WorkerScript" }] };
|
|
119
121
|
opts = pulumi.mergeOptions(opts, aliasOpts);
|
|
122
|
+
const secretOpts = { additionalSecretOutputs: ["migrations"] };
|
|
123
|
+
opts = pulumi.mergeOptions(opts, secretOpts);
|
|
120
124
|
super(WorkersScript.__pulumiType, name, resourceInputs, opts);
|
|
121
125
|
}
|
|
122
126
|
}
|
package/workersScript.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"workersScript.js","sourceRoot":"","sources":["../workersScript.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;GAUG;AACH,MAAa,aAAc,SAAQ,MAAM,CAAC,cAAc;IACpD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA0B,EAAE,IAAmC;QACxH,OAAO,IAAI,aAAa,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,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;
|
|
1
|
+
{"version":3,"file":"workersScript.js","sourceRoot":"","sources":["../workersScript.ts"],"names":[],"mappings":"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"}
|