@quantcdn/pulumi-quant 0.3.0 → 5.4.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/types/input.ts CHANGED
@@ -5,50 +5,387 @@ import * as pulumi from "@pulumi/pulumi";
5
5
  import * as inputs from "../types/input";
6
6
  import * as outputs from "../types/output";
7
7
 
8
- export interface AiGovernanceSpendLimits {
8
+ export interface AiAgentAgent {
9
+ agentId?: pulumi.Input<string>;
10
+ allowedCollections?: pulumi.Input<pulumi.Input<string>[]>;
11
+ allowedTools?: pulumi.Input<pulumi.Input<string>[]>;
12
+ assignedSkills?: pulumi.Input<pulumi.Input<string>[]>;
13
+ createdAt?: pulumi.Input<string>;
14
+ createdBy?: pulumi.Input<string>;
15
+ description?: pulumi.Input<string>;
16
+ group?: pulumi.Input<string>;
9
17
  /**
10
- * Daily budget in cents
18
+ * Guardrail preset name
11
19
  */
12
- dailyBudgetCents?: pulumi.Input<number>;
20
+ guardrailPreset?: pulumi.Input<string>;
13
21
  /**
14
- * Monthly budget in cents
22
+ * Whether the requesting org has a per-org overlay for this global agent
15
23
  */
16
- monthlyBudgetCents?: pulumi.Input<number>;
24
+ hasOverlay?: pulumi.Input<boolean>;
17
25
  /**
18
- * Per-user daily budget in cents
26
+ * Whether this is a platform-managed global agent
19
27
  */
20
- perUserDailyBudgetCents?: pulumi.Input<number>;
28
+ isGlobal?: pulumi.Input<boolean>;
21
29
  /**
22
- * Per-user monthly budget in cents
30
+ * Whether 1M context window is enabled
23
31
  */
32
+ longContext?: pulumi.Input<boolean>;
33
+ maxTokens?: pulumi.Input<number>;
34
+ modelId?: pulumi.Input<string>;
35
+ name?: pulumi.Input<string>;
36
+ systemPrompt?: pulumi.Input<string>;
37
+ temperature?: pulumi.Input<number>;
38
+ updatedAt?: pulumi.Input<string>;
39
+ }
40
+
41
+ export interface AiGovernanceConfig {
42
+ }
43
+
44
+ export interface AiGovernanceSpendLimits {
45
+ dailyBudgetCents?: pulumi.Input<number>;
46
+ monthlyBudgetCents?: pulumi.Input<number>;
47
+ perUserDailyBudgetCents?: pulumi.Input<number>;
24
48
  perUserMonthlyBudgetCents?: pulumi.Input<number>;
49
+ warningThresholdPercent?: pulumi.Input<number>;
50
+ }
51
+
52
+ export interface AiSkillFiles {
53
+ }
54
+
55
+ export interface AiSkillSkill {
56
+ allowedTools?: pulumi.Input<pulumi.Input<string>[]>;
57
+ content?: pulumi.Input<string>;
58
+ description?: pulumi.Input<string>;
59
+ disableModelInvocation?: pulumi.Input<boolean>;
60
+ files?: pulumi.Input<inputs.AiSkillSkillFiles>;
61
+ installedAt?: pulumi.Input<string>;
62
+ name?: pulumi.Input<string>;
63
+ namespace?: pulumi.Input<string>;
64
+ requiredTools?: pulumi.Input<pulumi.Input<string>[]>;
65
+ skillId?: pulumi.Input<string>;
66
+ source?: pulumi.Input<inputs.AiSkillSkillSource>;
67
+ tags?: pulumi.Input<pulumi.Input<string>[]>;
68
+ triggerCondition?: pulumi.Input<string>;
69
+ updatedAt?: pulumi.Input<string>;
70
+ }
71
+
72
+ export interface AiSkillSkillFiles {
73
+ }
74
+
75
+ export interface AiSkillSkillSource {
76
+ }
77
+
78
+ export interface AiVectorCollectionCollection {
79
+ collectionId?: pulumi.Input<string>;
80
+ createdAt?: pulumi.Input<string>;
81
+ description?: pulumi.Input<string>;
82
+ dimensions?: pulumi.Input<number>;
83
+ documentCount?: pulumi.Input<number>;
84
+ embeddingModel?: pulumi.Input<string>;
85
+ name?: pulumi.Input<string>;
86
+ updatedAt?: pulumi.Input<string>;
87
+ }
88
+
89
+ export interface AiVectorDocumentDocument {
25
90
  /**
26
- * Warning threshold as a percentage of budget (0-100)
91
+ * Document text content
27
92
  */
28
- warningThresholdPercent?: pulumi.Input<number>;
93
+ content: pulumi.Input<string>;
94
+ /**
95
+ * Stable document key for upsert
96
+ */
97
+ key?: pulumi.Input<string>;
98
+ metadata?: pulumi.Input<inputs.AiVectorDocumentDocumentMetadata>;
29
99
  }
30
100
 
31
- export interface AiSkillSource {
101
+ export interface AiVectorDocumentDocumentMetadata {
102
+ section?: pulumi.Input<string>;
103
+ sourceUrl?: pulumi.Input<string>;
104
+ tags?: pulumi.Input<pulumi.Input<string>[]>;
105
+ title?: pulumi.Input<string>;
106
+ }
107
+
108
+ export interface ApplicationComposeDefinition {
109
+ /**
110
+ * CPU architecture (X86_64 or ARM64)
111
+ */
112
+ architecture?: pulumi.Input<string>;
113
+ containers?: pulumi.Input<pulumi.Input<inputs.ApplicationComposeDefinitionContainer>[]>;
32
114
  /**
33
- * File path within the repository
115
+ * Optional. Enable cross-application networking within the same organization. When false (default): Uses shared/app-specific security group based on enableCrossEnvNetworking. When true: Uses org-specific security group to enable container-to-container communication with ALL applications in the same organization via service discovery (microservices architecture). This setting takes priority over enableCrossEnvNetworking.
34
116
  */
35
- path?: pulumi.Input<string>;
117
+ enableCrossAppNetworking?: pulumi.Input<boolean>;
36
118
  /**
37
- * GitHub repository in `org/repo` format
119
+ * Optional. Enable cross-environment networking within the same application. When false (default): Uses shared security group for complete isolation (most secure). When true: Uses app-specific security group to enable communication between environments of the same application (e.g., staging can connect to production database). Note: If enableCrossAppNetworking is true, this setting is overridden.
38
120
  */
39
- repo?: pulumi.Input<string>;
121
+ enableCrossEnvNetworking?: pulumi.Input<boolean>;
40
122
  /**
41
- * Source type: `github` or `skills.sh`
123
+ * Maximum number of instances
124
+ */
125
+ maxCapacity?: pulumi.Input<number>;
126
+ /**
127
+ * Minimum number of instances
128
+ */
129
+ minCapacity?: pulumi.Input<number>;
130
+ /**
131
+ * Spot instance strategy configuration for controlling cost vs reliability. Spot instances provide significant cost savings (~70%) but may be interrupted by AWS. Available for non-production environments.
132
+ */
133
+ spotConfiguration?: pulumi.Input<inputs.ApplicationComposeDefinitionSpotConfiguration>;
134
+ /**
135
+ * Task-level CPU units (e.g., 256, 512, 1024)
136
+ */
137
+ taskCpu?: pulumi.Input<number>;
138
+ /**
139
+ * Task-level memory in MB
140
+ */
141
+ taskMemory?: pulumi.Input<number>;
142
+ }
143
+
144
+ export interface ApplicationComposeDefinitionContainer {
145
+ commands?: pulumi.Input<pulumi.Input<string>[]>;
146
+ /**
147
+ * Container-level CPU units
148
+ */
149
+ cpu?: pulumi.Input<number>;
150
+ /**
151
+ * Container startup dependencies
152
+ */
153
+ dependsOns?: pulumi.Input<pulumi.Input<inputs.ApplicationComposeDefinitionContainerDependsOn>[]>;
154
+ entryPoints?: pulumi.Input<pulumi.Input<string>[]>;
155
+ /**
156
+ * Environment variables specific to this container
157
+ */
158
+ environments?: pulumi.Input<pulumi.Input<inputs.ApplicationComposeDefinitionContainerEnvironment>[]>;
159
+ essential?: pulumi.Input<boolean>;
160
+ /**
161
+ * List of container ports to expose
162
+ */
163
+ exposedPorts?: pulumi.Input<pulumi.Input<number>[]>;
164
+ /**
165
+ * Container health check configuration
166
+ */
167
+ healthCheck?: pulumi.Input<inputs.ApplicationComposeDefinitionContainerHealthCheck>;
168
+ imageReference: pulumi.Input<inputs.ApplicationComposeDefinitionContainerImageReference>;
169
+ /**
170
+ * Container-level memory hard limit (MiB)
171
+ */
172
+ memory?: pulumi.Input<number>;
173
+ /**
174
+ * Container-level memory soft limit (MiB)
175
+ */
176
+ memoryReservation?: pulumi.Input<number>;
177
+ mountPoints?: pulumi.Input<pulumi.Input<inputs.ApplicationComposeDefinitionContainerMountPoint>[]>;
178
+ /**
179
+ * Name of the container
180
+ */
181
+ name: pulumi.Input<string>;
182
+ /**
183
+ * Enable origin protection for all exposed ports on this container. Use originProtectionConfig for advanced options like IP allow lists.
184
+ */
185
+ originProtection?: pulumi.Input<boolean>;
186
+ /**
187
+ * Extended origin protection configuration with IP allow list support
188
+ */
189
+ originProtectionConfig?: pulumi.Input<inputs.ApplicationComposeDefinitionContainerOriginProtectionConfig>;
190
+ readonlyRootFilesystem?: pulumi.Input<boolean>;
191
+ /**
192
+ * Secrets mapped to environment variables
193
+ */
194
+ secrets?: pulumi.Input<pulumi.Input<inputs.ApplicationComposeDefinitionContainerSecret>[]>;
195
+ user?: pulumi.Input<string>;
196
+ workingDirectory?: pulumi.Input<string>;
197
+ }
198
+
199
+ export interface ApplicationComposeDefinitionContainerDependsOn {
200
+ /**
201
+ * The condition to wait for on the dependency
202
+ */
203
+ condition?: pulumi.Input<string>;
204
+ /**
205
+ * The name of the container this container depends on
206
+ */
207
+ containerName: pulumi.Input<string>;
208
+ }
209
+
210
+ export interface ApplicationComposeDefinitionContainerEnvironment {
211
+ /**
212
+ * Environment variable name
213
+ */
214
+ name: pulumi.Input<string>;
215
+ /**
216
+ * Environment variable value
217
+ */
218
+ value: pulumi.Input<string>;
219
+ }
220
+
221
+ export interface ApplicationComposeDefinitionContainerHealthCheck {
222
+ /**
223
+ * The command to run to determine if the container is healthy
224
+ */
225
+ commands?: pulumi.Input<pulumi.Input<string>[]>;
226
+ /**
227
+ * Time period (seconds) between health checks
228
+ */
229
+ interval?: pulumi.Input<number>;
230
+ /**
231
+ * Number of times to retry a failed health check
232
+ */
233
+ retries?: pulumi.Input<number>;
234
+ /**
235
+ * Grace period (seconds) to ignore unhealthy checks after container starts
236
+ */
237
+ startPeriod?: pulumi.Input<number>;
238
+ /**
239
+ * Time period (seconds) to wait for a health check to return
240
+ */
241
+ timeout?: pulumi.Input<number>;
242
+ }
243
+
244
+ export interface ApplicationComposeDefinitionContainerImageReference {
245
+ /**
246
+ * The image identifier. For 'internal' type, this is the image tag. For 'external' type, this is the full image name.
247
+ */
248
+ identifier: pulumi.Input<string>;
249
+ /**
250
+ * Specifies whether the image is internal (ECR) or external (e.g., Docker Hub)
42
251
  */
43
252
  type: pulumi.Input<string>;
253
+ }
254
+
255
+ export interface ApplicationComposeDefinitionContainerMountPoint {
44
256
  /**
45
- * skills.sh URL
257
+ * The path inside the container where the volume is mounted
46
258
  */
47
- url?: pulumi.Input<string>;
259
+ containerPath: pulumi.Input<string>;
260
+ readOnly?: pulumi.Input<boolean>;
261
+ /**
262
+ * The name of the logical volume
263
+ */
264
+ sourceVolume: pulumi.Input<string>;
265
+ }
266
+
267
+ export interface ApplicationComposeDefinitionContainerOriginProtectionConfig {
268
+ /**
269
+ * Whether origin protection is enabled. Defaults to true if this config object is provided.
270
+ */
271
+ enabled?: pulumi.Input<boolean>;
272
+ /**
273
+ * List of IP addresses or CIDR ranges that can bypass origin protection for direct access (e.g., VPN IPs)
274
+ */
275
+ ipAllows?: pulumi.Input<pulumi.Input<string>[]>;
276
+ }
277
+
278
+ export interface ApplicationComposeDefinitionContainerSecret {
279
+ /**
280
+ * The environment variable name to be set in the container
281
+ */
282
+ name: pulumi.Input<string>;
283
+ /**
284
+ * The key of the secret in the environment's 'app-secrets' store
285
+ */
286
+ valueFrom: pulumi.Input<string>;
287
+ }
288
+
289
+ export interface ApplicationComposeDefinitionSpotConfiguration {
290
+ /**
291
+ * Spot instance strategy. 'off' = On-Demand only (highest reliability, no savings). 'spot-only' = 100% Spot instances (~70% savings, default for non-prod). 'mixed-safe' = 50% Spot instances (~35% savings, requires multiple instances). 'mixed-aggressive' = 80% Spot instances (~56% savings, requires multiple instances).
292
+ */
293
+ strategy?: pulumi.Input<string>;
294
+ }
295
+
296
+ export interface ApplicationDatabase {
297
+ /**
298
+ * Database engine type (MySQL 8.4, Postgres)
299
+ */
300
+ engine?: pulumi.Input<string>;
301
+ /**
302
+ * RDS instance class
303
+ */
304
+ instanceClass?: pulumi.Input<string>;
305
+ /**
306
+ * Enable Multi-AZ deployment (higher availability and cost)
307
+ */
308
+ multiAz?: pulumi.Input<boolean>;
309
+ /**
310
+ * RDS instance endpoint address
311
+ */
312
+ rdsInstanceEndpoint?: pulumi.Input<string>;
313
+ /**
314
+ * Database engine
315
+ */
316
+ rdsInstanceEngine?: pulumi.Input<string>;
317
+ /**
318
+ * RDS instance identifier
319
+ */
320
+ rdsInstanceIdentifier?: pulumi.Input<string>;
321
+ /**
322
+ * RDS instance status
323
+ */
324
+ rdsInstanceStatus?: pulumi.Input<string>;
325
+ /**
326
+ * Allocated storage in GiB
327
+ */
328
+ storageGb?: pulumi.Input<number>;
329
+ }
330
+
331
+ export interface ApplicationDeploymentInformation {
332
+ /**
333
+ * Deployment creation timestamp
334
+ */
335
+ createdAt?: pulumi.Input<string>;
336
+ /**
337
+ * Deployment identifier
338
+ */
339
+ deploymentId?: pulumi.Input<string>;
340
+ /**
341
+ * Image tag deployed
342
+ */
343
+ imageTag?: pulumi.Input<string>;
344
+ /**
345
+ * Deployment status
346
+ */
347
+ status?: pulumi.Input<string>;
348
+ /**
349
+ * Task definition ARN used
350
+ */
351
+ taskDefinitionArn?: pulumi.Input<string>;
352
+ }
353
+
354
+ export interface ApplicationEnvironment {
355
+ /**
356
+ * Environment variable name
357
+ */
358
+ name?: pulumi.Input<string>;
359
+ /**
360
+ * Environment variable value
361
+ */
362
+ value?: pulumi.Input<string>;
363
+ }
364
+
365
+ export interface ApplicationFilesystem {
48
366
  /**
49
- * Pinned version tag
367
+ * EFS filesystem ID
50
368
  */
51
- version: pulumi.Input<string>;
369
+ filesystemId?: pulumi.Input<string>;
370
+ /**
371
+ * Mount path inside containers
372
+ */
373
+ mountPath?: pulumi.Input<string>;
374
+ /**
375
+ * Whether to create a shared filesystem
376
+ */
377
+ required?: pulumi.Input<boolean>;
378
+ }
379
+
380
+ export interface ApplicationImageReference {
381
+ /**
382
+ * Image identifier
383
+ */
384
+ identifier?: pulumi.Input<string>;
385
+ /**
386
+ * Image type
387
+ */
388
+ type?: pulumi.Input<string>;
52
389
  }
53
390
 
54
391
  export interface CrawlerAssets {
@@ -129,6 +466,253 @@ export interface DomainDnsValidationRecord {
129
466
  value?: pulumi.Input<string>;
130
467
  }
131
468
 
469
+ export interface EnvironmentAlbRouting {
470
+ }
471
+
472
+ export interface EnvironmentComposeDefinition {
473
+ /**
474
+ * CPU architecture (X86_64 or ARM64)
475
+ */
476
+ architecture?: pulumi.Input<string>;
477
+ containers?: pulumi.Input<pulumi.Input<inputs.EnvironmentComposeDefinitionContainer>[]>;
478
+ /**
479
+ * Optional. Enable cross-application networking within the same organization. When false (default): Uses shared/app-specific security group based on enableCrossEnvNetworking. When true: Uses org-specific security group to enable container-to-container communication with ALL applications in the same organization via service discovery (microservices architecture). This setting takes priority over enableCrossEnvNetworking.
480
+ */
481
+ enableCrossAppNetworking?: pulumi.Input<boolean>;
482
+ /**
483
+ * Optional. Enable cross-environment networking within the same application. When false (default): Uses shared security group for complete isolation (most secure). When true: Uses app-specific security group to enable communication between environments of the same application (e.g., staging can connect to production database). Note: If enableCrossAppNetworking is true, this setting is overridden.
484
+ */
485
+ enableCrossEnvNetworking?: pulumi.Input<boolean>;
486
+ /**
487
+ * Maximum number of instances
488
+ */
489
+ maxCapacity?: pulumi.Input<number>;
490
+ /**
491
+ * Minimum number of instances
492
+ */
493
+ minCapacity?: pulumi.Input<number>;
494
+ /**
495
+ * Spot instance strategy configuration for controlling cost vs reliability. Spot instances provide significant cost savings (~70%) but may be interrupted by AWS. Available for non-production environments.
496
+ */
497
+ spotConfiguration?: pulumi.Input<inputs.EnvironmentComposeDefinitionSpotConfiguration>;
498
+ /**
499
+ * Task-level CPU units (e.g., 256, 512, 1024)
500
+ */
501
+ taskCpu?: pulumi.Input<number>;
502
+ /**
503
+ * Task-level memory in MB
504
+ */
505
+ taskMemory?: pulumi.Input<number>;
506
+ }
507
+
508
+ export interface EnvironmentComposeDefinitionContainer {
509
+ commands?: pulumi.Input<pulumi.Input<string>[]>;
510
+ /**
511
+ * Container-level CPU units
512
+ */
513
+ cpu?: pulumi.Input<number>;
514
+ /**
515
+ * Container startup dependencies
516
+ */
517
+ dependsOns?: pulumi.Input<pulumi.Input<inputs.EnvironmentComposeDefinitionContainerDependsOn>[]>;
518
+ entryPoints?: pulumi.Input<pulumi.Input<string>[]>;
519
+ /**
520
+ * Environment variables specific to this container
521
+ */
522
+ environments?: pulumi.Input<pulumi.Input<inputs.EnvironmentComposeDefinitionContainerEnvironment>[]>;
523
+ essential?: pulumi.Input<boolean>;
524
+ /**
525
+ * List of container ports to expose
526
+ */
527
+ exposedPorts?: pulumi.Input<pulumi.Input<number>[]>;
528
+ /**
529
+ * Container health check configuration
530
+ */
531
+ healthCheck?: pulumi.Input<inputs.EnvironmentComposeDefinitionContainerHealthCheck>;
532
+ imageReference: pulumi.Input<inputs.EnvironmentComposeDefinitionContainerImageReference>;
533
+ /**
534
+ * Container-level memory hard limit (MiB)
535
+ */
536
+ memory?: pulumi.Input<number>;
537
+ /**
538
+ * Container-level memory soft limit (MiB)
539
+ */
540
+ memoryReservation?: pulumi.Input<number>;
541
+ mountPoints?: pulumi.Input<pulumi.Input<inputs.EnvironmentComposeDefinitionContainerMountPoint>[]>;
542
+ /**
543
+ * Name of the container
544
+ */
545
+ name: pulumi.Input<string>;
546
+ /**
547
+ * Enable origin protection for all exposed ports on this container. Use originProtectionConfig for advanced options like IP allow lists.
548
+ */
549
+ originProtection?: pulumi.Input<boolean>;
550
+ /**
551
+ * Extended origin protection configuration with IP allow list support
552
+ */
553
+ originProtectionConfig?: pulumi.Input<inputs.EnvironmentComposeDefinitionContainerOriginProtectionConfig>;
554
+ readonlyRootFilesystem?: pulumi.Input<boolean>;
555
+ /**
556
+ * Secrets mapped to environment variables
557
+ */
558
+ secrets?: pulumi.Input<pulumi.Input<inputs.EnvironmentComposeDefinitionContainerSecret>[]>;
559
+ user?: pulumi.Input<string>;
560
+ workingDirectory?: pulumi.Input<string>;
561
+ }
562
+
563
+ export interface EnvironmentComposeDefinitionContainerDependsOn {
564
+ /**
565
+ * The condition to wait for on the dependency
566
+ */
567
+ condition?: pulumi.Input<string>;
568
+ /**
569
+ * The name of the container this container depends on
570
+ */
571
+ containerName: pulumi.Input<string>;
572
+ }
573
+
574
+ export interface EnvironmentComposeDefinitionContainerEnvironment {
575
+ /**
576
+ * Environment variable name
577
+ */
578
+ name: pulumi.Input<string>;
579
+ /**
580
+ * Environment variable value
581
+ */
582
+ value: pulumi.Input<string>;
583
+ }
584
+
585
+ export interface EnvironmentComposeDefinitionContainerHealthCheck {
586
+ /**
587
+ * The command to run to determine if the container is healthy
588
+ */
589
+ commands?: pulumi.Input<pulumi.Input<string>[]>;
590
+ /**
591
+ * Time period (seconds) between health checks
592
+ */
593
+ interval?: pulumi.Input<number>;
594
+ /**
595
+ * Number of times to retry a failed health check
596
+ */
597
+ retries?: pulumi.Input<number>;
598
+ /**
599
+ * Grace period (seconds) to ignore unhealthy checks after container starts
600
+ */
601
+ startPeriod?: pulumi.Input<number>;
602
+ /**
603
+ * Time period (seconds) to wait for a health check to return
604
+ */
605
+ timeout?: pulumi.Input<number>;
606
+ }
607
+
608
+ export interface EnvironmentComposeDefinitionContainerImageReference {
609
+ /**
610
+ * The image identifier. For 'internal' type, this is the image tag. For 'external' type, this is the full image name.
611
+ */
612
+ identifier: pulumi.Input<string>;
613
+ /**
614
+ * Specifies whether the image is internal (ECR) or external (e.g., Docker Hub)
615
+ */
616
+ type: pulumi.Input<string>;
617
+ }
618
+
619
+ export interface EnvironmentComposeDefinitionContainerMountPoint {
620
+ /**
621
+ * The path inside the container where the volume is mounted
622
+ */
623
+ containerPath: pulumi.Input<string>;
624
+ readOnly?: pulumi.Input<boolean>;
625
+ /**
626
+ * The name of the logical volume
627
+ */
628
+ sourceVolume: pulumi.Input<string>;
629
+ }
630
+
631
+ export interface EnvironmentComposeDefinitionContainerOriginProtectionConfig {
632
+ /**
633
+ * Whether origin protection is enabled. Defaults to true if this config object is provided.
634
+ */
635
+ enabled?: pulumi.Input<boolean>;
636
+ /**
637
+ * List of IP addresses or CIDR ranges that can bypass origin protection for direct access (e.g., VPN IPs)
638
+ */
639
+ ipAllows?: pulumi.Input<pulumi.Input<string>[]>;
640
+ }
641
+
642
+ export interface EnvironmentComposeDefinitionContainerSecret {
643
+ /**
644
+ * The environment variable name to be set in the container
645
+ */
646
+ name: pulumi.Input<string>;
647
+ /**
648
+ * The key of the secret in the environment's 'app-secrets' store
649
+ */
650
+ valueFrom: pulumi.Input<string>;
651
+ }
652
+
653
+ export interface EnvironmentComposeDefinitionSpotConfiguration {
654
+ /**
655
+ * Spot instance strategy. 'off' = On-Demand only (highest reliability, no savings). 'spot-only' = 100% Spot instances (~70% savings, default for non-prod). 'mixed-safe' = 50% Spot instances (~35% savings, requires multiple instances). 'mixed-aggressive' = 80% Spot instances (~56% savings, requires multiple instances).
656
+ */
657
+ strategy?: pulumi.Input<string>;
658
+ }
659
+
660
+ export interface EnvironmentCron {
661
+ commands?: pulumi.Input<pulumi.Input<string>[]>;
662
+ description?: pulumi.Input<string>;
663
+ isEnabled?: pulumi.Input<boolean>;
664
+ name?: pulumi.Input<string>;
665
+ scheduleExpression?: pulumi.Input<string>;
666
+ targetContainerName?: pulumi.Input<string>;
667
+ }
668
+
669
+ export interface EnvironmentEnvironment {
670
+ /**
671
+ * Variable name
672
+ */
673
+ name?: pulumi.Input<string>;
674
+ /**
675
+ * Variable value
676
+ */
677
+ value?: pulumi.Input<string>;
678
+ }
679
+
680
+ export interface EnvironmentLoadBalancer {
681
+ }
682
+
683
+ export interface EnvironmentSecurityGroup {
684
+ }
685
+
686
+ export interface EnvironmentService {
687
+ }
688
+
689
+ export interface EnvironmentSpotConfiguration {
690
+ /**
691
+ * Spot instance strategy. 'off' = On-Demand only (highest reliability, no savings). 'spot-only' = 100% Spot instances (~70% savings, default for non-prod). 'mixed-safe' = 50% Spot instances (~35% savings, requires multiple instances). 'mixed-aggressive' = 80% Spot instances (~56% savings, requires multiple instances).
692
+ */
693
+ strategy?: pulumi.Input<string>;
694
+ }
695
+
696
+ export interface EnvironmentSubnet {
697
+ }
698
+
699
+ export interface EnvironmentTaskDefinition {
700
+ }
701
+
702
+ export interface EnvironmentVolume {
703
+ accessPointArn?: pulumi.Input<string>;
704
+ accessPointId?: pulumi.Input<string>;
705
+ createdAt?: pulumi.Input<string>;
706
+ description?: pulumi.Input<string>;
707
+ environmentEfsId?: pulumi.Input<string>;
708
+ rootDirectory?: pulumi.Input<string>;
709
+ volumeId?: pulumi.Input<string>;
710
+ volumeName?: pulumi.Input<string>;
711
+ }
712
+
713
+ export interface EnvironmentVpc {
714
+ }
715
+
132
716
  export interface RuleAuthActionConfig {
133
717
  /**
134
718
  * Authentication password
@@ -629,3 +1213,18 @@ export interface RuleServeStaticActionConfig {
629
1213
  */
630
1214
  staticFilePath?: pulumi.Input<string>;
631
1215
  }
1216
+
1217
+ export interface SlackBotBot {
1218
+ agentId?: pulumi.Input<string>;
1219
+ allowedChannels?: pulumi.Input<pulumi.Input<string>[]>;
1220
+ botId?: pulumi.Input<string>;
1221
+ connected?: pulumi.Input<boolean>;
1222
+ createdAt?: pulumi.Input<string>;
1223
+ keywords?: pulumi.Input<pulumi.Input<string>[]>;
1224
+ keywordsEnabled?: pulumi.Input<boolean>;
1225
+ sessionTtlDays?: pulumi.Input<number>;
1226
+ setupType?: pulumi.Input<string>;
1227
+ slashCommands?: pulumi.Input<pulumi.Input<string>[]>;
1228
+ status?: pulumi.Input<string>;
1229
+ updatedAt?: pulumi.Input<string>;
1230
+ }