@quantcdn/pulumi-quant 5.10.4 → 5.10.5
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/aiAgent.d.ts +32 -32
- package/aiAgent.d.ts.map +1 -1
- package/aiAgentOverlay.d.ts +28 -28
- package/aiAgentOverlay.d.ts.map +1 -1
- package/aiCustomTool.d.ts +26 -26
- package/aiCustomTool.d.ts.map +1 -1
- package/aiGovernance.d.ts +17 -17
- package/aiGovernance.d.ts.map +1 -1
- package/aiSkill.d.ts +27 -27
- package/aiSkill.d.ts.map +1 -1
- package/aiVectorCollection.d.ts +14 -14
- package/aiVectorCollection.d.ts.map +1 -1
- package/aiVectorDocument.d.ts +15 -15
- package/aiVectorDocument.d.ts.map +1 -1
- package/application.d.ts +22 -22
- package/application.d.ts.map +1 -1
- package/crawler.d.ts +57 -57
- package/crawler.d.ts.map +1 -1
- package/crawlerSchedule.d.ts +17 -17
- package/crawlerSchedule.d.ts.map +1 -1
- package/cronJob.d.ts +18 -18
- package/cronJob.d.ts.map +1 -1
- package/domain.d.ts +8 -8
- package/domain.d.ts.map +1 -1
- package/environment.d.ts +40 -40
- package/environment.d.ts.map +1 -1
- package/getProject.d.ts +1 -1
- package/getProject.d.ts.map +1 -1
- package/header.d.ts +4 -4
- package/header.d.ts.map +1 -1
- package/kvItem.d.ts +11 -11
- package/kvItem.d.ts.map +1 -1
- package/kvStore.d.ts +8 -8
- package/kvStore.d.ts.map +1 -1
- package/package.json +2 -2
- package/project.d.ts +24 -24
- package/project.d.ts.map +1 -1
- package/provider.d.ts +9 -9
- package/provider.d.ts.map +1 -1
- package/ruleAuth.d.ts +46 -46
- package/ruleAuth.d.ts.map +1 -1
- package/ruleBotChallenge.d.ts +49 -49
- package/ruleBotChallenge.d.ts.map +1 -1
- package/ruleContentFilter.d.ts +45 -45
- package/ruleContentFilter.d.ts.map +1 -1
- package/ruleCustomResponse.d.ts +51 -51
- package/ruleCustomResponse.d.ts.map +1 -1
- package/ruleFunction.d.ts +45 -45
- package/ruleFunction.d.ts.map +1 -1
- package/ruleHeaders.d.ts +45 -45
- package/ruleHeaders.d.ts.map +1 -1
- package/ruleProxy.d.ts +93 -93
- package/ruleProxy.d.ts.map +1 -1
- package/ruleRedirect.d.ts +47 -47
- package/ruleRedirect.d.ts.map +1 -1
- package/ruleServeStatic.d.ts +45 -45
- package/ruleServeStatic.d.ts.map +1 -1
- package/slackBot.d.ts +46 -46
- package/slackBot.d.ts.map +1 -1
- package/types/input.d.ts +340 -340
- package/types/input.d.ts.map +1 -1
- package/volume.d.ts +18 -18
- package/volume.d.ts.map +1 -1
package/types/input.d.ts
CHANGED
|
@@ -1,113 +1,113 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
import * as inputs from "../types/input";
|
|
3
3
|
export interface AiAgentAgent {
|
|
4
|
-
agentId?: pulumi.Input<string>;
|
|
5
|
-
allowedCollections?: pulumi.Input<pulumi.Input<string>[]>;
|
|
6
|
-
allowedTools?: pulumi.Input<pulumi.Input<string>[]>;
|
|
7
|
-
assignedSkills?: pulumi.Input<pulumi.Input<string>[]>;
|
|
8
|
-
createdAt?: pulumi.Input<string>;
|
|
9
|
-
createdBy?: pulumi.Input<string>;
|
|
10
|
-
description?: pulumi.Input<string>;
|
|
11
|
-
group?: pulumi.Input<string>;
|
|
4
|
+
agentId?: pulumi.Input<string | undefined>;
|
|
5
|
+
allowedCollections?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
6
|
+
allowedTools?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
7
|
+
assignedSkills?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
8
|
+
createdAt?: pulumi.Input<string | undefined>;
|
|
9
|
+
createdBy?: pulumi.Input<string | undefined>;
|
|
10
|
+
description?: pulumi.Input<string | undefined>;
|
|
11
|
+
group?: pulumi.Input<string | undefined>;
|
|
12
12
|
/**
|
|
13
13
|
* Guardrail preset name
|
|
14
14
|
*/
|
|
15
|
-
guardrailPreset?: pulumi.Input<string>;
|
|
15
|
+
guardrailPreset?: pulumi.Input<string | undefined>;
|
|
16
16
|
/**
|
|
17
17
|
* Whether the requesting org has a per-org overlay for this global agent
|
|
18
18
|
*/
|
|
19
|
-
hasOverlay?: pulumi.Input<boolean>;
|
|
19
|
+
hasOverlay?: pulumi.Input<boolean | undefined>;
|
|
20
20
|
/**
|
|
21
21
|
* Whether this is a platform-managed global agent
|
|
22
22
|
*/
|
|
23
|
-
isGlobal?: pulumi.Input<boolean>;
|
|
23
|
+
isGlobal?: pulumi.Input<boolean | undefined>;
|
|
24
24
|
/**
|
|
25
25
|
* Whether 1M context window is enabled
|
|
26
26
|
*/
|
|
27
|
-
longContext?: pulumi.Input<boolean>;
|
|
28
|
-
maxTokens?: pulumi.Input<number>;
|
|
29
|
-
modelId?: pulumi.Input<string>;
|
|
30
|
-
name?: pulumi.Input<string>;
|
|
31
|
-
systemPrompt?: pulumi.Input<string>;
|
|
32
|
-
temperature?: pulumi.Input<number>;
|
|
33
|
-
updatedAt?: pulumi.Input<string>;
|
|
27
|
+
longContext?: pulumi.Input<boolean | undefined>;
|
|
28
|
+
maxTokens?: pulumi.Input<number | undefined>;
|
|
29
|
+
modelId?: pulumi.Input<string | undefined>;
|
|
30
|
+
name?: pulumi.Input<string | undefined>;
|
|
31
|
+
systemPrompt?: pulumi.Input<string | undefined>;
|
|
32
|
+
temperature?: pulumi.Input<number | undefined>;
|
|
33
|
+
updatedAt?: pulumi.Input<string | undefined>;
|
|
34
34
|
}
|
|
35
35
|
export interface AiAgentOverlayBase {
|
|
36
|
-
agentId?: pulumi.Input<string>;
|
|
37
|
-
allowedTools?: pulumi.Input<pulumi.Input<string>[]>;
|
|
38
|
-
assignedSkillIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
39
|
-
modelId?: pulumi.Input<string>;
|
|
40
|
-
name?: pulumi.Input<string>;
|
|
36
|
+
agentId?: pulumi.Input<string | undefined>;
|
|
37
|
+
allowedTools?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
38
|
+
assignedSkillIds?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
39
|
+
modelId?: pulumi.Input<string | undefined>;
|
|
40
|
+
name?: pulumi.Input<string | undefined>;
|
|
41
41
|
}
|
|
42
42
|
export interface AiAgentOverlayOverlay {
|
|
43
|
-
additionalSkills?: pulumi.Input<pulumi.Input<string>[]>;
|
|
44
|
-
additionalTools?: pulumi.Input<pulumi.Input<string>[]>;
|
|
45
|
-
allowedCollections?: pulumi.Input<pulumi.Input<string>[]>;
|
|
46
|
-
disabledSkills?: pulumi.Input<pulumi.Input<string>[]>;
|
|
47
|
-
disabledTools?: pulumi.Input<pulumi.Input<string>[]>;
|
|
48
|
-
guardrailPreset?: pulumi.Input<string>;
|
|
49
|
-
maxTokens?: pulumi.Input<number>;
|
|
50
|
-
modelId?: pulumi.Input<string>;
|
|
51
|
-
systemPromptAppend?: pulumi.Input<string>;
|
|
52
|
-
temperature?: pulumi.Input<number>;
|
|
53
|
-
version?: pulumi.Input<number>;
|
|
43
|
+
additionalSkills?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
44
|
+
additionalTools?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
45
|
+
allowedCollections?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
46
|
+
disabledSkills?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
47
|
+
disabledTools?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
48
|
+
guardrailPreset?: pulumi.Input<string | undefined>;
|
|
49
|
+
maxTokens?: pulumi.Input<number | undefined>;
|
|
50
|
+
modelId?: pulumi.Input<string | undefined>;
|
|
51
|
+
systemPromptAppend?: pulumi.Input<string | undefined>;
|
|
52
|
+
temperature?: pulumi.Input<number | undefined>;
|
|
53
|
+
version?: pulumi.Input<number | undefined>;
|
|
54
54
|
}
|
|
55
55
|
export interface AiCustomToolTool {
|
|
56
|
-
category?: pulumi.Input<string>;
|
|
57
|
-
createdAt?: pulumi.Input<string>;
|
|
58
|
-
description?: pulumi.Input<string>;
|
|
56
|
+
category?: pulumi.Input<string | undefined>;
|
|
57
|
+
createdAt?: pulumi.Input<string | undefined>;
|
|
58
|
+
description?: pulumi.Input<string | undefined>;
|
|
59
59
|
/**
|
|
60
60
|
* The deployed edge function source code
|
|
61
61
|
*/
|
|
62
|
-
edgeFunctionCode?: pulumi.Input<string>;
|
|
63
|
-
edgeFunctionUrl?: pulumi.Input<string>;
|
|
64
|
-
inputSchema?: pulumi.Input<string>;
|
|
65
|
-
isAsync?: pulumi.Input<boolean>;
|
|
66
|
-
name?: pulumi.Input<string>;
|
|
67
|
-
outputSchema?: pulumi.Input<string>;
|
|
68
|
-
outputSchemaDescription?: pulumi.Input<string>;
|
|
69
|
-
responseMode?: pulumi.Input<string>;
|
|
62
|
+
edgeFunctionCode?: pulumi.Input<string | undefined>;
|
|
63
|
+
edgeFunctionUrl?: pulumi.Input<string | undefined>;
|
|
64
|
+
inputSchema?: pulumi.Input<string | undefined>;
|
|
65
|
+
isAsync?: pulumi.Input<boolean | undefined>;
|
|
66
|
+
name?: pulumi.Input<string | undefined>;
|
|
67
|
+
outputSchema?: pulumi.Input<string | undefined>;
|
|
68
|
+
outputSchemaDescription?: pulumi.Input<string | undefined>;
|
|
69
|
+
responseMode?: pulumi.Input<string | undefined>;
|
|
70
70
|
}
|
|
71
71
|
export interface AiGovernanceConfig {
|
|
72
72
|
}
|
|
73
73
|
export interface AiGovernanceSpendLimits {
|
|
74
|
-
dailyBudgetCents?: pulumi.Input<number>;
|
|
75
|
-
monthlyBudgetCents?: pulumi.Input<number>;
|
|
76
|
-
perUserDailyBudgetCents?: pulumi.Input<number>;
|
|
77
|
-
perUserMonthlyBudgetCents?: pulumi.Input<number>;
|
|
78
|
-
warningThresholdPercent?: pulumi.Input<number>;
|
|
74
|
+
dailyBudgetCents?: pulumi.Input<number | undefined>;
|
|
75
|
+
monthlyBudgetCents?: pulumi.Input<number | undefined>;
|
|
76
|
+
perUserDailyBudgetCents?: pulumi.Input<number | undefined>;
|
|
77
|
+
perUserMonthlyBudgetCents?: pulumi.Input<number | undefined>;
|
|
78
|
+
warningThresholdPercent?: pulumi.Input<number | undefined>;
|
|
79
79
|
}
|
|
80
80
|
export interface AiSkillFiles {
|
|
81
81
|
}
|
|
82
82
|
export interface AiSkillSkill {
|
|
83
|
-
allowedTools?: pulumi.Input<pulumi.Input<string>[]>;
|
|
84
|
-
content?: pulumi.Input<string>;
|
|
85
|
-
description?: pulumi.Input<string>;
|
|
86
|
-
disableModelInvocation?: pulumi.Input<boolean>;
|
|
87
|
-
files?: pulumi.Input<inputs.AiSkillSkillFiles>;
|
|
88
|
-
installedAt?: pulumi.Input<string>;
|
|
89
|
-
name?: pulumi.Input<string>;
|
|
90
|
-
namespace?: pulumi.Input<string>;
|
|
91
|
-
requiredTools?: pulumi.Input<pulumi.Input<string>[]>;
|
|
92
|
-
skillId?: pulumi.Input<string>;
|
|
93
|
-
source?: pulumi.Input<inputs.AiSkillSkillSource>;
|
|
94
|
-
tags?: pulumi.Input<pulumi.Input<string>[]>;
|
|
95
|
-
triggerCondition?: pulumi.Input<string>;
|
|
96
|
-
updatedAt?: pulumi.Input<string>;
|
|
83
|
+
allowedTools?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
84
|
+
content?: pulumi.Input<string | undefined>;
|
|
85
|
+
description?: pulumi.Input<string | undefined>;
|
|
86
|
+
disableModelInvocation?: pulumi.Input<boolean | undefined>;
|
|
87
|
+
files?: pulumi.Input<inputs.AiSkillSkillFiles | undefined>;
|
|
88
|
+
installedAt?: pulumi.Input<string | undefined>;
|
|
89
|
+
name?: pulumi.Input<string | undefined>;
|
|
90
|
+
namespace?: pulumi.Input<string | undefined>;
|
|
91
|
+
requiredTools?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
92
|
+
skillId?: pulumi.Input<string | undefined>;
|
|
93
|
+
source?: pulumi.Input<inputs.AiSkillSkillSource | undefined>;
|
|
94
|
+
tags?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
95
|
+
triggerCondition?: pulumi.Input<string | undefined>;
|
|
96
|
+
updatedAt?: pulumi.Input<string | undefined>;
|
|
97
97
|
}
|
|
98
98
|
export interface AiSkillSkillFiles {
|
|
99
99
|
}
|
|
100
100
|
export interface AiSkillSkillSource {
|
|
101
101
|
}
|
|
102
102
|
export interface AiVectorCollectionCollection {
|
|
103
|
-
collectionId?: pulumi.Input<string>;
|
|
104
|
-
createdAt?: pulumi.Input<string>;
|
|
105
|
-
description?: pulumi.Input<string>;
|
|
106
|
-
dimensions?: pulumi.Input<number>;
|
|
107
|
-
documentCount?: pulumi.Input<number>;
|
|
108
|
-
embeddingModel?: pulumi.Input<string>;
|
|
109
|
-
name?: pulumi.Input<string>;
|
|
110
|
-
updatedAt?: pulumi.Input<string>;
|
|
103
|
+
collectionId?: pulumi.Input<string | undefined>;
|
|
104
|
+
createdAt?: pulumi.Input<string | undefined>;
|
|
105
|
+
description?: pulumi.Input<string | undefined>;
|
|
106
|
+
dimensions?: pulumi.Input<number | undefined>;
|
|
107
|
+
documentCount?: pulumi.Input<number | undefined>;
|
|
108
|
+
embeddingModel?: pulumi.Input<string | undefined>;
|
|
109
|
+
name?: pulumi.Input<string | undefined>;
|
|
110
|
+
updatedAt?: pulumi.Input<string | undefined>;
|
|
111
111
|
}
|
|
112
112
|
export interface AiVectorDocumentDocument {
|
|
113
113
|
/**
|
|
@@ -117,84 +117,84 @@ export interface AiVectorDocumentDocument {
|
|
|
117
117
|
/**
|
|
118
118
|
* Stable document key for upsert
|
|
119
119
|
*/
|
|
120
|
-
key?: pulumi.Input<string>;
|
|
121
|
-
metadata?: pulumi.Input<inputs.AiVectorDocumentDocumentMetadata>;
|
|
120
|
+
key?: pulumi.Input<string | undefined>;
|
|
121
|
+
metadata?: pulumi.Input<inputs.AiVectorDocumentDocumentMetadata | undefined>;
|
|
122
122
|
}
|
|
123
123
|
export interface AiVectorDocumentDocumentMetadata {
|
|
124
|
-
section?: pulumi.Input<string>;
|
|
125
|
-
sourceUrl?: pulumi.Input<string>;
|
|
126
|
-
tags?: pulumi.Input<pulumi.Input<string>[]>;
|
|
127
|
-
title?: pulumi.Input<string>;
|
|
124
|
+
section?: pulumi.Input<string | undefined>;
|
|
125
|
+
sourceUrl?: pulumi.Input<string | undefined>;
|
|
126
|
+
tags?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
127
|
+
title?: pulumi.Input<string | undefined>;
|
|
128
128
|
}
|
|
129
129
|
export interface ApplicationComposeDefinition {
|
|
130
130
|
/**
|
|
131
131
|
* CPU architecture (X86_64 or ARM64)
|
|
132
132
|
*/
|
|
133
|
-
architecture?: pulumi.Input<string>;
|
|
134
|
-
containers?: pulumi.Input<pulumi.Input<inputs.ApplicationComposeDefinitionContainer>[]>;
|
|
133
|
+
architecture?: pulumi.Input<string | undefined>;
|
|
134
|
+
containers?: pulumi.Input<pulumi.Input<inputs.ApplicationComposeDefinitionContainer>[] | undefined>;
|
|
135
135
|
/**
|
|
136
136
|
* 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.
|
|
137
137
|
*/
|
|
138
|
-
enableCrossAppNetworking?: pulumi.Input<boolean>;
|
|
138
|
+
enableCrossAppNetworking?: pulumi.Input<boolean | undefined>;
|
|
139
139
|
/**
|
|
140
140
|
* 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.
|
|
141
141
|
*/
|
|
142
|
-
enableCrossEnvNetworking?: pulumi.Input<boolean>;
|
|
142
|
+
enableCrossEnvNetworking?: pulumi.Input<boolean | undefined>;
|
|
143
143
|
/**
|
|
144
144
|
* Maximum number of instances
|
|
145
145
|
*/
|
|
146
|
-
maxCapacity?: pulumi.Input<number>;
|
|
146
|
+
maxCapacity?: pulumi.Input<number | undefined>;
|
|
147
147
|
/**
|
|
148
148
|
* Minimum number of instances
|
|
149
149
|
*/
|
|
150
|
-
minCapacity?: pulumi.Input<number>;
|
|
150
|
+
minCapacity?: pulumi.Input<number | undefined>;
|
|
151
151
|
/**
|
|
152
152
|
* 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.
|
|
153
153
|
*/
|
|
154
|
-
spotConfiguration?: pulumi.Input<inputs.ApplicationComposeDefinitionSpotConfiguration>;
|
|
154
|
+
spotConfiguration?: pulumi.Input<inputs.ApplicationComposeDefinitionSpotConfiguration | undefined>;
|
|
155
155
|
/**
|
|
156
156
|
* Task-level CPU units (e.g., 256, 512, 1024)
|
|
157
157
|
*/
|
|
158
|
-
taskCpu?: pulumi.Input<number>;
|
|
158
|
+
taskCpu?: pulumi.Input<number | undefined>;
|
|
159
159
|
/**
|
|
160
160
|
* Task-level memory in MB
|
|
161
161
|
*/
|
|
162
|
-
taskMemory?: pulumi.Input<number>;
|
|
162
|
+
taskMemory?: pulumi.Input<number | undefined>;
|
|
163
163
|
}
|
|
164
164
|
export interface ApplicationComposeDefinitionContainer {
|
|
165
|
-
commands?: pulumi.Input<pulumi.Input<string>[]>;
|
|
165
|
+
commands?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
166
166
|
/**
|
|
167
167
|
* Container-level CPU units
|
|
168
168
|
*/
|
|
169
|
-
cpu?: pulumi.Input<number>;
|
|
169
|
+
cpu?: pulumi.Input<number | undefined>;
|
|
170
170
|
/**
|
|
171
171
|
* Container startup dependencies
|
|
172
172
|
*/
|
|
173
|
-
dependsOns?: pulumi.Input<pulumi.Input<inputs.ApplicationComposeDefinitionContainerDependsOn>[]>;
|
|
174
|
-
entryPoints?: pulumi.Input<pulumi.Input<string>[]>;
|
|
173
|
+
dependsOns?: pulumi.Input<pulumi.Input<inputs.ApplicationComposeDefinitionContainerDependsOn>[] | undefined>;
|
|
174
|
+
entryPoints?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
175
175
|
/**
|
|
176
176
|
* Environment variables specific to this container
|
|
177
177
|
*/
|
|
178
|
-
environments?: pulumi.Input<pulumi.Input<inputs.ApplicationComposeDefinitionContainerEnvironment>[]>;
|
|
179
|
-
essential?: pulumi.Input<boolean>;
|
|
178
|
+
environments?: pulumi.Input<pulumi.Input<inputs.ApplicationComposeDefinitionContainerEnvironment>[] | undefined>;
|
|
179
|
+
essential?: pulumi.Input<boolean | undefined>;
|
|
180
180
|
/**
|
|
181
181
|
* List of container ports to expose
|
|
182
182
|
*/
|
|
183
|
-
exposedPorts?: pulumi.Input<pulumi.Input<number>[]>;
|
|
183
|
+
exposedPorts?: pulumi.Input<pulumi.Input<number>[] | undefined>;
|
|
184
184
|
/**
|
|
185
185
|
* Container health check configuration
|
|
186
186
|
*/
|
|
187
|
-
healthCheck?: pulumi.Input<inputs.ApplicationComposeDefinitionContainerHealthCheck>;
|
|
187
|
+
healthCheck?: pulumi.Input<inputs.ApplicationComposeDefinitionContainerHealthCheck | undefined>;
|
|
188
188
|
imageReference: pulumi.Input<inputs.ApplicationComposeDefinitionContainerImageReference>;
|
|
189
189
|
/**
|
|
190
190
|
* Container-level memory hard limit (MiB)
|
|
191
191
|
*/
|
|
192
|
-
memory?: pulumi.Input<number>;
|
|
192
|
+
memory?: pulumi.Input<number | undefined>;
|
|
193
193
|
/**
|
|
194
194
|
* Container-level memory soft limit (MiB)
|
|
195
195
|
*/
|
|
196
|
-
memoryReservation?: pulumi.Input<number>;
|
|
197
|
-
mountPoints?: pulumi.Input<pulumi.Input<inputs.ApplicationComposeDefinitionContainerMountPoint>[]>;
|
|
196
|
+
memoryReservation?: pulumi.Input<number | undefined>;
|
|
197
|
+
mountPoints?: pulumi.Input<pulumi.Input<inputs.ApplicationComposeDefinitionContainerMountPoint>[] | undefined>;
|
|
198
198
|
/**
|
|
199
199
|
* Name of the container
|
|
200
200
|
*/
|
|
@@ -202,24 +202,24 @@ export interface ApplicationComposeDefinitionContainer {
|
|
|
202
202
|
/**
|
|
203
203
|
* Enable origin protection for all exposed ports on this container. Use originProtectionConfig for advanced options like IP allow lists.
|
|
204
204
|
*/
|
|
205
|
-
originProtection?: pulumi.Input<boolean>;
|
|
205
|
+
originProtection?: pulumi.Input<boolean | undefined>;
|
|
206
206
|
/**
|
|
207
207
|
* Extended origin protection configuration with IP allow list support
|
|
208
208
|
*/
|
|
209
|
-
originProtectionConfig?: pulumi.Input<inputs.ApplicationComposeDefinitionContainerOriginProtectionConfig>;
|
|
210
|
-
readonlyRootFilesystem?: pulumi.Input<boolean>;
|
|
209
|
+
originProtectionConfig?: pulumi.Input<inputs.ApplicationComposeDefinitionContainerOriginProtectionConfig | undefined>;
|
|
210
|
+
readonlyRootFilesystem?: pulumi.Input<boolean | undefined>;
|
|
211
211
|
/**
|
|
212
212
|
* Secrets mapped to environment variables
|
|
213
213
|
*/
|
|
214
|
-
secrets?: pulumi.Input<pulumi.Input<inputs.ApplicationComposeDefinitionContainerSecret>[]>;
|
|
215
|
-
user?: pulumi.Input<string>;
|
|
216
|
-
workingDirectory?: pulumi.Input<string>;
|
|
214
|
+
secrets?: pulumi.Input<pulumi.Input<inputs.ApplicationComposeDefinitionContainerSecret>[] | undefined>;
|
|
215
|
+
user?: pulumi.Input<string | undefined>;
|
|
216
|
+
workingDirectory?: pulumi.Input<string | undefined>;
|
|
217
217
|
}
|
|
218
218
|
export interface ApplicationComposeDefinitionContainerDependsOn {
|
|
219
219
|
/**
|
|
220
220
|
* The condition to wait for on the dependency
|
|
221
221
|
*/
|
|
222
|
-
condition?: pulumi.Input<string>;
|
|
222
|
+
condition?: pulumi.Input<string | undefined>;
|
|
223
223
|
/**
|
|
224
224
|
* The name of the container this container depends on
|
|
225
225
|
*/
|
|
@@ -239,23 +239,23 @@ export interface ApplicationComposeDefinitionContainerHealthCheck {
|
|
|
239
239
|
/**
|
|
240
240
|
* The command to run to determine if the container is healthy
|
|
241
241
|
*/
|
|
242
|
-
commands?: pulumi.Input<pulumi.Input<string>[]>;
|
|
242
|
+
commands?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
243
243
|
/**
|
|
244
244
|
* Time period (seconds) between health checks
|
|
245
245
|
*/
|
|
246
|
-
interval?: pulumi.Input<number>;
|
|
246
|
+
interval?: pulumi.Input<number | undefined>;
|
|
247
247
|
/**
|
|
248
248
|
* Number of times to retry a failed health check
|
|
249
249
|
*/
|
|
250
|
-
retries?: pulumi.Input<number>;
|
|
250
|
+
retries?: pulumi.Input<number | undefined>;
|
|
251
251
|
/**
|
|
252
252
|
* Grace period (seconds) to ignore unhealthy checks after container starts
|
|
253
253
|
*/
|
|
254
|
-
startPeriod?: pulumi.Input<number>;
|
|
254
|
+
startPeriod?: pulumi.Input<number | undefined>;
|
|
255
255
|
/**
|
|
256
256
|
* Time period (seconds) to wait for a health check to return
|
|
257
257
|
*/
|
|
258
|
-
timeout?: pulumi.Input<number>;
|
|
258
|
+
timeout?: pulumi.Input<number | undefined>;
|
|
259
259
|
}
|
|
260
260
|
export interface ApplicationComposeDefinitionContainerImageReference {
|
|
261
261
|
/**
|
|
@@ -272,7 +272,7 @@ export interface ApplicationComposeDefinitionContainerMountPoint {
|
|
|
272
272
|
* The path inside the container where the volume is mounted
|
|
273
273
|
*/
|
|
274
274
|
containerPath: pulumi.Input<string>;
|
|
275
|
-
readOnly?: pulumi.Input<boolean>;
|
|
275
|
+
readOnly?: pulumi.Input<boolean | undefined>;
|
|
276
276
|
/**
|
|
277
277
|
* The name of the logical volume
|
|
278
278
|
*/
|
|
@@ -282,11 +282,11 @@ export interface ApplicationComposeDefinitionContainerOriginProtectionConfig {
|
|
|
282
282
|
/**
|
|
283
283
|
* Whether origin protection is enabled. Defaults to true if this config object is provided.
|
|
284
284
|
*/
|
|
285
|
-
enabled?: pulumi.Input<boolean>;
|
|
285
|
+
enabled?: pulumi.Input<boolean | undefined>;
|
|
286
286
|
/**
|
|
287
287
|
* List of IP addresses or CIDR ranges that can bypass origin protection for direct access (e.g., VPN IPs)
|
|
288
288
|
*/
|
|
289
|
-
ipAllows?: pulumi.Input<pulumi.Input<string>[]>;
|
|
289
|
+
ipAllows?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
290
290
|
}
|
|
291
291
|
export interface ApplicationComposeDefinitionContainerSecret {
|
|
292
292
|
/**
|
|
@@ -302,169 +302,169 @@ export interface ApplicationComposeDefinitionSpotConfiguration {
|
|
|
302
302
|
/**
|
|
303
303
|
* 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).
|
|
304
304
|
*/
|
|
305
|
-
strategy?: pulumi.Input<string>;
|
|
305
|
+
strategy?: pulumi.Input<string | undefined>;
|
|
306
306
|
}
|
|
307
307
|
export interface ApplicationDatabase {
|
|
308
308
|
/**
|
|
309
309
|
* Database engine type (MySQL 8.4, Postgres)
|
|
310
310
|
*/
|
|
311
|
-
engine?: pulumi.Input<string>;
|
|
311
|
+
engine?: pulumi.Input<string | undefined>;
|
|
312
312
|
/**
|
|
313
313
|
* RDS instance class
|
|
314
314
|
*/
|
|
315
|
-
instanceClass?: pulumi.Input<string>;
|
|
315
|
+
instanceClass?: pulumi.Input<string | undefined>;
|
|
316
316
|
/**
|
|
317
317
|
* Enable Multi-AZ deployment (higher availability and cost)
|
|
318
318
|
*/
|
|
319
|
-
multiAz?: pulumi.Input<boolean>;
|
|
319
|
+
multiAz?: pulumi.Input<boolean | undefined>;
|
|
320
320
|
/**
|
|
321
321
|
* RDS instance endpoint address
|
|
322
322
|
*/
|
|
323
|
-
rdsInstanceEndpoint?: pulumi.Input<string>;
|
|
323
|
+
rdsInstanceEndpoint?: pulumi.Input<string | undefined>;
|
|
324
324
|
/**
|
|
325
325
|
* Database engine
|
|
326
326
|
*/
|
|
327
|
-
rdsInstanceEngine?: pulumi.Input<string>;
|
|
327
|
+
rdsInstanceEngine?: pulumi.Input<string | undefined>;
|
|
328
328
|
/**
|
|
329
329
|
* RDS instance identifier
|
|
330
330
|
*/
|
|
331
|
-
rdsInstanceIdentifier?: pulumi.Input<string>;
|
|
331
|
+
rdsInstanceIdentifier?: pulumi.Input<string | undefined>;
|
|
332
332
|
/**
|
|
333
333
|
* RDS instance status
|
|
334
334
|
*/
|
|
335
|
-
rdsInstanceStatus?: pulumi.Input<string>;
|
|
335
|
+
rdsInstanceStatus?: pulumi.Input<string | undefined>;
|
|
336
336
|
/**
|
|
337
337
|
* Allocated storage in GiB
|
|
338
338
|
*/
|
|
339
|
-
storageGb?: pulumi.Input<number>;
|
|
339
|
+
storageGb?: pulumi.Input<number | undefined>;
|
|
340
340
|
}
|
|
341
341
|
export interface ApplicationDeploymentInformation {
|
|
342
342
|
/**
|
|
343
343
|
* Deployment creation timestamp
|
|
344
344
|
*/
|
|
345
|
-
createdAt?: pulumi.Input<string>;
|
|
345
|
+
createdAt?: pulumi.Input<string | undefined>;
|
|
346
346
|
/**
|
|
347
347
|
* Deployment identifier
|
|
348
348
|
*/
|
|
349
|
-
deploymentId?: pulumi.Input<string>;
|
|
349
|
+
deploymentId?: pulumi.Input<string | undefined>;
|
|
350
350
|
/**
|
|
351
351
|
* Image tag deployed
|
|
352
352
|
*/
|
|
353
|
-
imageTag?: pulumi.Input<string>;
|
|
353
|
+
imageTag?: pulumi.Input<string | undefined>;
|
|
354
354
|
/**
|
|
355
355
|
* Deployment status
|
|
356
356
|
*/
|
|
357
|
-
status?: pulumi.Input<string>;
|
|
357
|
+
status?: pulumi.Input<string | undefined>;
|
|
358
358
|
/**
|
|
359
359
|
* Task definition ARN used
|
|
360
360
|
*/
|
|
361
|
-
taskDefinitionArn?: pulumi.Input<string>;
|
|
361
|
+
taskDefinitionArn?: pulumi.Input<string | undefined>;
|
|
362
362
|
}
|
|
363
363
|
export interface ApplicationEnvironment {
|
|
364
364
|
/**
|
|
365
365
|
* Environment variable name
|
|
366
366
|
*/
|
|
367
|
-
name?: pulumi.Input<string>;
|
|
367
|
+
name?: pulumi.Input<string | undefined>;
|
|
368
368
|
/**
|
|
369
369
|
* Environment variable value
|
|
370
370
|
*/
|
|
371
|
-
value?: pulumi.Input<string>;
|
|
371
|
+
value?: pulumi.Input<string | undefined>;
|
|
372
372
|
}
|
|
373
373
|
export interface ApplicationFilesystem {
|
|
374
374
|
/**
|
|
375
375
|
* EFS filesystem ID
|
|
376
376
|
*/
|
|
377
|
-
filesystemId?: pulumi.Input<string>;
|
|
377
|
+
filesystemId?: pulumi.Input<string | undefined>;
|
|
378
378
|
/**
|
|
379
379
|
* Mount path inside containers
|
|
380
380
|
*/
|
|
381
|
-
mountPath?: pulumi.Input<string>;
|
|
381
|
+
mountPath?: pulumi.Input<string | undefined>;
|
|
382
382
|
/**
|
|
383
383
|
* Whether to create a shared filesystem
|
|
384
384
|
*/
|
|
385
|
-
required?: pulumi.Input<boolean>;
|
|
385
|
+
required?: pulumi.Input<boolean | undefined>;
|
|
386
386
|
}
|
|
387
387
|
export interface ApplicationImageReference {
|
|
388
388
|
/**
|
|
389
389
|
* Image identifier
|
|
390
390
|
*/
|
|
391
|
-
identifier?: pulumi.Input<string>;
|
|
391
|
+
identifier?: pulumi.Input<string | undefined>;
|
|
392
392
|
/**
|
|
393
393
|
* Image type
|
|
394
394
|
*/
|
|
395
|
-
type?: pulumi.Input<string>;
|
|
395
|
+
type?: pulumi.Input<string | undefined>;
|
|
396
396
|
}
|
|
397
397
|
export interface CrawlerAssets {
|
|
398
398
|
/**
|
|
399
399
|
* Network intercept configuration for asset collection
|
|
400
400
|
*/
|
|
401
|
-
networkIntercept?: pulumi.Input<inputs.CrawlerAssetsNetworkIntercept>;
|
|
401
|
+
networkIntercept?: pulumi.Input<inputs.CrawlerAssetsNetworkIntercept | undefined>;
|
|
402
402
|
/**
|
|
403
403
|
* Parser configuration for asset extraction
|
|
404
404
|
*/
|
|
405
|
-
parser?: pulumi.Input<inputs.CrawlerAssetsParser>;
|
|
405
|
+
parser?: pulumi.Input<inputs.CrawlerAssetsParser | undefined>;
|
|
406
406
|
}
|
|
407
407
|
export interface CrawlerAssetsNetworkIntercept {
|
|
408
408
|
/**
|
|
409
409
|
* Enable network intercept
|
|
410
410
|
*/
|
|
411
|
-
enabled?: pulumi.Input<boolean>;
|
|
411
|
+
enabled?: pulumi.Input<boolean | undefined>;
|
|
412
412
|
/**
|
|
413
413
|
* Execute JavaScript during asset collection
|
|
414
414
|
*/
|
|
415
|
-
executeJs?: pulumi.Input<boolean>;
|
|
415
|
+
executeJs?: pulumi.Input<boolean | undefined>;
|
|
416
416
|
/**
|
|
417
417
|
* Request timeout in seconds
|
|
418
418
|
*/
|
|
419
|
-
timeout?: pulumi.Input<number>;
|
|
419
|
+
timeout?: pulumi.Input<number | undefined>;
|
|
420
420
|
}
|
|
421
421
|
export interface CrawlerAssetsParser {
|
|
422
422
|
/**
|
|
423
423
|
* Enable parser
|
|
424
424
|
*/
|
|
425
|
-
enabled?: pulumi.Input<boolean>;
|
|
425
|
+
enabled?: pulumi.Input<boolean | undefined>;
|
|
426
426
|
}
|
|
427
427
|
export interface CrawlerSitemap {
|
|
428
428
|
/**
|
|
429
429
|
* Recursively follow sitemap links
|
|
430
430
|
*/
|
|
431
|
-
recursive?: pulumi.Input<boolean>;
|
|
431
|
+
recursive?: pulumi.Input<boolean | undefined>;
|
|
432
432
|
/**
|
|
433
433
|
* Sitemap URL
|
|
434
434
|
*/
|
|
435
|
-
url?: pulumi.Input<string>;
|
|
435
|
+
url?: pulumi.Input<string | undefined>;
|
|
436
436
|
}
|
|
437
437
|
export interface DomainDnsGoLiveRecord {
|
|
438
438
|
/**
|
|
439
439
|
* Human-readable instructions for configuring this DNS record
|
|
440
440
|
*/
|
|
441
|
-
description?: pulumi.Input<string>;
|
|
441
|
+
description?: pulumi.Input<string | undefined>;
|
|
442
442
|
/**
|
|
443
443
|
* DNS record name/host (@ for apex/root domains, subdomain name for subdomains)
|
|
444
444
|
*/
|
|
445
|
-
name?: pulumi.Input<string>;
|
|
445
|
+
name?: pulumi.Input<string | undefined>;
|
|
446
446
|
/**
|
|
447
447
|
* DNS record type (CNAME, A, or ALIAS)
|
|
448
448
|
*/
|
|
449
|
-
type?: pulumi.Input<string>;
|
|
449
|
+
type?: pulumi.Input<string | undefined>;
|
|
450
450
|
/**
|
|
451
451
|
* DNS record value (IP addresses for A records, domain name for CNAME/ALIAS)
|
|
452
452
|
*/
|
|
453
|
-
value?: pulumi.Input<string>;
|
|
453
|
+
value?: pulumi.Input<string | undefined>;
|
|
454
454
|
}
|
|
455
455
|
export interface DomainDnsValidationRecord {
|
|
456
456
|
/**
|
|
457
457
|
* DNS record name (host/subdomain)
|
|
458
458
|
*/
|
|
459
|
-
name?: pulumi.Input<string>;
|
|
459
|
+
name?: pulumi.Input<string | undefined>;
|
|
460
460
|
/**
|
|
461
461
|
* DNS record type (typically CNAME)
|
|
462
462
|
*/
|
|
463
|
-
type?: pulumi.Input<string>;
|
|
463
|
+
type?: pulumi.Input<string | undefined>;
|
|
464
464
|
/**
|
|
465
465
|
* DNS record value to point to
|
|
466
466
|
*/
|
|
467
|
-
value?: pulumi.Input<string>;
|
|
467
|
+
value?: pulumi.Input<string | undefined>;
|
|
468
468
|
}
|
|
469
469
|
export interface EnvironmentAlbRouting {
|
|
470
470
|
}
|
|
@@ -472,71 +472,71 @@ export interface EnvironmentComposeDefinition {
|
|
|
472
472
|
/**
|
|
473
473
|
* CPU architecture (X86_64 or ARM64)
|
|
474
474
|
*/
|
|
475
|
-
architecture?: pulumi.Input<string>;
|
|
476
|
-
containers?: pulumi.Input<pulumi.Input<inputs.EnvironmentComposeDefinitionContainer>[]>;
|
|
475
|
+
architecture?: pulumi.Input<string | undefined>;
|
|
476
|
+
containers?: pulumi.Input<pulumi.Input<inputs.EnvironmentComposeDefinitionContainer>[] | undefined>;
|
|
477
477
|
/**
|
|
478
478
|
* 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.
|
|
479
479
|
*/
|
|
480
|
-
enableCrossAppNetworking?: pulumi.Input<boolean>;
|
|
480
|
+
enableCrossAppNetworking?: pulumi.Input<boolean | undefined>;
|
|
481
481
|
/**
|
|
482
482
|
* 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.
|
|
483
483
|
*/
|
|
484
|
-
enableCrossEnvNetworking?: pulumi.Input<boolean>;
|
|
484
|
+
enableCrossEnvNetworking?: pulumi.Input<boolean | undefined>;
|
|
485
485
|
/**
|
|
486
486
|
* Maximum number of instances
|
|
487
487
|
*/
|
|
488
|
-
maxCapacity?: pulumi.Input<number>;
|
|
488
|
+
maxCapacity?: pulumi.Input<number | undefined>;
|
|
489
489
|
/**
|
|
490
490
|
* Minimum number of instances
|
|
491
491
|
*/
|
|
492
|
-
minCapacity?: pulumi.Input<number>;
|
|
492
|
+
minCapacity?: pulumi.Input<number | undefined>;
|
|
493
493
|
/**
|
|
494
494
|
* 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.
|
|
495
495
|
*/
|
|
496
|
-
spotConfiguration?: pulumi.Input<inputs.EnvironmentComposeDefinitionSpotConfiguration>;
|
|
496
|
+
spotConfiguration?: pulumi.Input<inputs.EnvironmentComposeDefinitionSpotConfiguration | undefined>;
|
|
497
497
|
/**
|
|
498
498
|
* Task-level CPU units (e.g., 256, 512, 1024)
|
|
499
499
|
*/
|
|
500
|
-
taskCpu?: pulumi.Input<number>;
|
|
500
|
+
taskCpu?: pulumi.Input<number | undefined>;
|
|
501
501
|
/**
|
|
502
502
|
* Task-level memory in MB
|
|
503
503
|
*/
|
|
504
|
-
taskMemory?: pulumi.Input<number>;
|
|
504
|
+
taskMemory?: pulumi.Input<number | undefined>;
|
|
505
505
|
}
|
|
506
506
|
export interface EnvironmentComposeDefinitionContainer {
|
|
507
|
-
commands?: pulumi.Input<pulumi.Input<string>[]>;
|
|
507
|
+
commands?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
508
508
|
/**
|
|
509
509
|
* Container-level CPU units
|
|
510
510
|
*/
|
|
511
|
-
cpu?: pulumi.Input<number>;
|
|
511
|
+
cpu?: pulumi.Input<number | undefined>;
|
|
512
512
|
/**
|
|
513
513
|
* Container startup dependencies
|
|
514
514
|
*/
|
|
515
|
-
dependsOns?: pulumi.Input<pulumi.Input<inputs.EnvironmentComposeDefinitionContainerDependsOn>[]>;
|
|
516
|
-
entryPoints?: pulumi.Input<pulumi.Input<string>[]>;
|
|
515
|
+
dependsOns?: pulumi.Input<pulumi.Input<inputs.EnvironmentComposeDefinitionContainerDependsOn>[] | undefined>;
|
|
516
|
+
entryPoints?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
517
517
|
/**
|
|
518
518
|
* Environment variables specific to this container
|
|
519
519
|
*/
|
|
520
|
-
environments?: pulumi.Input<pulumi.Input<inputs.EnvironmentComposeDefinitionContainerEnvironment>[]>;
|
|
521
|
-
essential?: pulumi.Input<boolean>;
|
|
520
|
+
environments?: pulumi.Input<pulumi.Input<inputs.EnvironmentComposeDefinitionContainerEnvironment>[] | undefined>;
|
|
521
|
+
essential?: pulumi.Input<boolean | undefined>;
|
|
522
522
|
/**
|
|
523
523
|
* List of container ports to expose
|
|
524
524
|
*/
|
|
525
|
-
exposedPorts?: pulumi.Input<pulumi.Input<number>[]>;
|
|
525
|
+
exposedPorts?: pulumi.Input<pulumi.Input<number>[] | undefined>;
|
|
526
526
|
/**
|
|
527
527
|
* Container health check configuration
|
|
528
528
|
*/
|
|
529
|
-
healthCheck?: pulumi.Input<inputs.EnvironmentComposeDefinitionContainerHealthCheck>;
|
|
529
|
+
healthCheck?: pulumi.Input<inputs.EnvironmentComposeDefinitionContainerHealthCheck | undefined>;
|
|
530
530
|
imageReference: pulumi.Input<inputs.EnvironmentComposeDefinitionContainerImageReference>;
|
|
531
531
|
/**
|
|
532
532
|
* Container-level memory hard limit (MiB)
|
|
533
533
|
*/
|
|
534
|
-
memory?: pulumi.Input<number>;
|
|
534
|
+
memory?: pulumi.Input<number | undefined>;
|
|
535
535
|
/**
|
|
536
536
|
* Container-level memory soft limit (MiB)
|
|
537
537
|
*/
|
|
538
|
-
memoryReservation?: pulumi.Input<number>;
|
|
539
|
-
mountPoints?: pulumi.Input<pulumi.Input<inputs.EnvironmentComposeDefinitionContainerMountPoint>[]>;
|
|
538
|
+
memoryReservation?: pulumi.Input<number | undefined>;
|
|
539
|
+
mountPoints?: pulumi.Input<pulumi.Input<inputs.EnvironmentComposeDefinitionContainerMountPoint>[] | undefined>;
|
|
540
540
|
/**
|
|
541
541
|
* Name of the container
|
|
542
542
|
*/
|
|
@@ -544,24 +544,24 @@ export interface EnvironmentComposeDefinitionContainer {
|
|
|
544
544
|
/**
|
|
545
545
|
* Enable origin protection for all exposed ports on this container. Use originProtectionConfig for advanced options like IP allow lists.
|
|
546
546
|
*/
|
|
547
|
-
originProtection?: pulumi.Input<boolean>;
|
|
547
|
+
originProtection?: pulumi.Input<boolean | undefined>;
|
|
548
548
|
/**
|
|
549
549
|
* Extended origin protection configuration with IP allow list support
|
|
550
550
|
*/
|
|
551
|
-
originProtectionConfig?: pulumi.Input<inputs.EnvironmentComposeDefinitionContainerOriginProtectionConfig>;
|
|
552
|
-
readonlyRootFilesystem?: pulumi.Input<boolean>;
|
|
551
|
+
originProtectionConfig?: pulumi.Input<inputs.EnvironmentComposeDefinitionContainerOriginProtectionConfig | undefined>;
|
|
552
|
+
readonlyRootFilesystem?: pulumi.Input<boolean | undefined>;
|
|
553
553
|
/**
|
|
554
554
|
* Secrets mapped to environment variables
|
|
555
555
|
*/
|
|
556
|
-
secrets?: pulumi.Input<pulumi.Input<inputs.EnvironmentComposeDefinitionContainerSecret>[]>;
|
|
557
|
-
user?: pulumi.Input<string>;
|
|
558
|
-
workingDirectory?: pulumi.Input<string>;
|
|
556
|
+
secrets?: pulumi.Input<pulumi.Input<inputs.EnvironmentComposeDefinitionContainerSecret>[] | undefined>;
|
|
557
|
+
user?: pulumi.Input<string | undefined>;
|
|
558
|
+
workingDirectory?: pulumi.Input<string | undefined>;
|
|
559
559
|
}
|
|
560
560
|
export interface EnvironmentComposeDefinitionContainerDependsOn {
|
|
561
561
|
/**
|
|
562
562
|
* The condition to wait for on the dependency
|
|
563
563
|
*/
|
|
564
|
-
condition?: pulumi.Input<string>;
|
|
564
|
+
condition?: pulumi.Input<string | undefined>;
|
|
565
565
|
/**
|
|
566
566
|
* The name of the container this container depends on
|
|
567
567
|
*/
|
|
@@ -581,23 +581,23 @@ export interface EnvironmentComposeDefinitionContainerHealthCheck {
|
|
|
581
581
|
/**
|
|
582
582
|
* The command to run to determine if the container is healthy
|
|
583
583
|
*/
|
|
584
|
-
commands?: pulumi.Input<pulumi.Input<string>[]>;
|
|
584
|
+
commands?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
585
585
|
/**
|
|
586
586
|
* Time period (seconds) between health checks
|
|
587
587
|
*/
|
|
588
|
-
interval?: pulumi.Input<number>;
|
|
588
|
+
interval?: pulumi.Input<number | undefined>;
|
|
589
589
|
/**
|
|
590
590
|
* Number of times to retry a failed health check
|
|
591
591
|
*/
|
|
592
|
-
retries?: pulumi.Input<number>;
|
|
592
|
+
retries?: pulumi.Input<number | undefined>;
|
|
593
593
|
/**
|
|
594
594
|
* Grace period (seconds) to ignore unhealthy checks after container starts
|
|
595
595
|
*/
|
|
596
|
-
startPeriod?: pulumi.Input<number>;
|
|
596
|
+
startPeriod?: pulumi.Input<number | undefined>;
|
|
597
597
|
/**
|
|
598
598
|
* Time period (seconds) to wait for a health check to return
|
|
599
599
|
*/
|
|
600
|
-
timeout?: pulumi.Input<number>;
|
|
600
|
+
timeout?: pulumi.Input<number | undefined>;
|
|
601
601
|
}
|
|
602
602
|
export interface EnvironmentComposeDefinitionContainerImageReference {
|
|
603
603
|
/**
|
|
@@ -614,7 +614,7 @@ export interface EnvironmentComposeDefinitionContainerMountPoint {
|
|
|
614
614
|
* The path inside the container where the volume is mounted
|
|
615
615
|
*/
|
|
616
616
|
containerPath: pulumi.Input<string>;
|
|
617
|
-
readOnly?: pulumi.Input<boolean>;
|
|
617
|
+
readOnly?: pulumi.Input<boolean | undefined>;
|
|
618
618
|
/**
|
|
619
619
|
* The name of the logical volume
|
|
620
620
|
*/
|
|
@@ -624,11 +624,11 @@ export interface EnvironmentComposeDefinitionContainerOriginProtectionConfig {
|
|
|
624
624
|
/**
|
|
625
625
|
* Whether origin protection is enabled. Defaults to true if this config object is provided.
|
|
626
626
|
*/
|
|
627
|
-
enabled?: pulumi.Input<boolean>;
|
|
627
|
+
enabled?: pulumi.Input<boolean | undefined>;
|
|
628
628
|
/**
|
|
629
629
|
* List of IP addresses or CIDR ranges that can bypass origin protection for direct access (e.g., VPN IPs)
|
|
630
630
|
*/
|
|
631
|
-
ipAllows?: pulumi.Input<pulumi.Input<string>[]>;
|
|
631
|
+
ipAllows?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
632
632
|
}
|
|
633
633
|
export interface EnvironmentComposeDefinitionContainerSecret {
|
|
634
634
|
/**
|
|
@@ -644,25 +644,25 @@ export interface EnvironmentComposeDefinitionSpotConfiguration {
|
|
|
644
644
|
/**
|
|
645
645
|
* 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).
|
|
646
646
|
*/
|
|
647
|
-
strategy?: pulumi.Input<string>;
|
|
647
|
+
strategy?: pulumi.Input<string | undefined>;
|
|
648
648
|
}
|
|
649
649
|
export interface EnvironmentCron {
|
|
650
|
-
commands?: pulumi.Input<pulumi.Input<string>[]>;
|
|
651
|
-
description?: pulumi.Input<string>;
|
|
652
|
-
isEnabled?: pulumi.Input<boolean>;
|
|
653
|
-
name?: pulumi.Input<string>;
|
|
654
|
-
scheduleExpression?: pulumi.Input<string>;
|
|
655
|
-
targetContainerName?: pulumi.Input<string>;
|
|
650
|
+
commands?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
651
|
+
description?: pulumi.Input<string | undefined>;
|
|
652
|
+
isEnabled?: pulumi.Input<boolean | undefined>;
|
|
653
|
+
name?: pulumi.Input<string | undefined>;
|
|
654
|
+
scheduleExpression?: pulumi.Input<string | undefined>;
|
|
655
|
+
targetContainerName?: pulumi.Input<string | undefined>;
|
|
656
656
|
}
|
|
657
657
|
export interface EnvironmentEnvironment {
|
|
658
658
|
/**
|
|
659
659
|
* Variable name
|
|
660
660
|
*/
|
|
661
|
-
name?: pulumi.Input<string>;
|
|
661
|
+
name?: pulumi.Input<string | undefined>;
|
|
662
662
|
/**
|
|
663
663
|
* Variable value
|
|
664
664
|
*/
|
|
665
|
-
value?: pulumi.Input<string>;
|
|
665
|
+
value?: pulumi.Input<string | undefined>;
|
|
666
666
|
}
|
|
667
667
|
export interface EnvironmentLoadBalancer {
|
|
668
668
|
}
|
|
@@ -674,21 +674,21 @@ export interface EnvironmentSpotConfiguration {
|
|
|
674
674
|
/**
|
|
675
675
|
* 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).
|
|
676
676
|
*/
|
|
677
|
-
strategy?: pulumi.Input<string>;
|
|
677
|
+
strategy?: pulumi.Input<string | undefined>;
|
|
678
678
|
}
|
|
679
679
|
export interface EnvironmentSubnet {
|
|
680
680
|
}
|
|
681
681
|
export interface EnvironmentTaskDefinition {
|
|
682
682
|
}
|
|
683
683
|
export interface EnvironmentVolume {
|
|
684
|
-
accessPointArn?: pulumi.Input<string>;
|
|
685
|
-
accessPointId?: pulumi.Input<string>;
|
|
686
|
-
createdAt?: pulumi.Input<string>;
|
|
687
|
-
description?: pulumi.Input<string>;
|
|
688
|
-
environmentEfsId?: pulumi.Input<string>;
|
|
689
|
-
rootDirectory?: pulumi.Input<string>;
|
|
690
|
-
volumeId?: pulumi.Input<string>;
|
|
691
|
-
volumeName?: pulumi.Input<string>;
|
|
684
|
+
accessPointArn?: pulumi.Input<string | undefined>;
|
|
685
|
+
accessPointId?: pulumi.Input<string | undefined>;
|
|
686
|
+
createdAt?: pulumi.Input<string | undefined>;
|
|
687
|
+
description?: pulumi.Input<string | undefined>;
|
|
688
|
+
environmentEfsId?: pulumi.Input<string | undefined>;
|
|
689
|
+
rootDirectory?: pulumi.Input<string | undefined>;
|
|
690
|
+
volumeId?: pulumi.Input<string | undefined>;
|
|
691
|
+
volumeName?: pulumi.Input<string | undefined>;
|
|
692
692
|
}
|
|
693
693
|
export interface EnvironmentVpc {
|
|
694
694
|
}
|
|
@@ -696,47 +696,47 @@ export interface RuleAuthActionConfig {
|
|
|
696
696
|
/**
|
|
697
697
|
* Authentication password
|
|
698
698
|
*/
|
|
699
|
-
authPass?: pulumi.Input<string>;
|
|
699
|
+
authPass?: pulumi.Input<string | undefined>;
|
|
700
700
|
/**
|
|
701
701
|
* Authentication username
|
|
702
702
|
*/
|
|
703
|
-
authUser?: pulumi.Input<string>;
|
|
703
|
+
authUser?: pulumi.Input<string | undefined>;
|
|
704
704
|
}
|
|
705
705
|
export interface RuleBotChallengeActionConfig {
|
|
706
706
|
/**
|
|
707
707
|
* Challenge TTL in seconds
|
|
708
708
|
*/
|
|
709
|
-
robotChallengeChallengeTtl?: pulumi.Input<number>;
|
|
709
|
+
robotChallengeChallengeTtl?: pulumi.Input<number | undefined>;
|
|
710
710
|
/**
|
|
711
711
|
* Challenge type (invisible or checkbox)
|
|
712
712
|
*/
|
|
713
|
-
robotChallengeType?: pulumi.Input<string>;
|
|
713
|
+
robotChallengeType?: pulumi.Input<string | undefined>;
|
|
714
714
|
/**
|
|
715
715
|
* Verification TTL in seconds
|
|
716
716
|
*/
|
|
717
|
-
robotChallengeVerificationTtl?: pulumi.Input<number>;
|
|
717
|
+
robotChallengeVerificationTtl?: pulumi.Input<number | undefined>;
|
|
718
718
|
}
|
|
719
719
|
export interface RuleContentFilterActionConfig {
|
|
720
720
|
/**
|
|
721
721
|
* Function UUID
|
|
722
722
|
*/
|
|
723
|
-
fnUuid?: pulumi.Input<string>;
|
|
723
|
+
fnUuid?: pulumi.Input<string | undefined>;
|
|
724
724
|
}
|
|
725
725
|
export interface RuleCustomResponseActionConfig {
|
|
726
726
|
/**
|
|
727
727
|
* Custom response body content
|
|
728
728
|
*/
|
|
729
|
-
customResponseBody?: pulumi.Input<string>;
|
|
729
|
+
customResponseBody?: pulumi.Input<string | undefined>;
|
|
730
730
|
/**
|
|
731
731
|
* HTTP status code for custom response
|
|
732
732
|
*/
|
|
733
|
-
customResponseStatusCode?: pulumi.Input<number>;
|
|
733
|
+
customResponseStatusCode?: pulumi.Input<number | undefined>;
|
|
734
734
|
}
|
|
735
735
|
export interface RuleFunctionActionConfig {
|
|
736
736
|
/**
|
|
737
737
|
* Function UUID
|
|
738
738
|
*/
|
|
739
|
-
fnUuid?: pulumi.Input<string>;
|
|
739
|
+
fnUuid?: pulumi.Input<string | undefined>;
|
|
740
740
|
}
|
|
741
741
|
export interface RuleHeadersActionConfig {
|
|
742
742
|
/**
|
|
@@ -744,470 +744,470 @@ export interface RuleHeadersActionConfig {
|
|
|
744
744
|
*/
|
|
745
745
|
headers?: pulumi.Input<{
|
|
746
746
|
[key: string]: pulumi.Input<string>;
|
|
747
|
-
}>;
|
|
747
|
+
} | undefined>;
|
|
748
748
|
}
|
|
749
749
|
export interface RuleProxyActionConfig {
|
|
750
750
|
/**
|
|
751
751
|
* Quant Cloud application container (required when applicationProxy is true)
|
|
752
752
|
*/
|
|
753
|
-
applicationContainer?: pulumi.Input<string>;
|
|
753
|
+
applicationContainer?: pulumi.Input<string | undefined>;
|
|
754
754
|
/**
|
|
755
755
|
* Quant Cloud application environment (required when applicationProxy is true)
|
|
756
756
|
*/
|
|
757
|
-
applicationEnvironment?: pulumi.Input<string>;
|
|
757
|
+
applicationEnvironment?: pulumi.Input<string | undefined>;
|
|
758
758
|
/**
|
|
759
759
|
* Quant Cloud application name (required when applicationProxy is true)
|
|
760
760
|
*/
|
|
761
|
-
applicationName?: pulumi.Input<string>;
|
|
761
|
+
applicationName?: pulumi.Input<string | undefined>;
|
|
762
762
|
/**
|
|
763
763
|
* Quant Cloud application port (required when applicationProxy is true)
|
|
764
764
|
*/
|
|
765
|
-
applicationPort?: pulumi.Input<number>;
|
|
765
|
+
applicationPort?: pulumi.Input<number | undefined>;
|
|
766
766
|
/**
|
|
767
767
|
* Enable Quant Cloud application proxy mode
|
|
768
768
|
*/
|
|
769
|
-
applicationProxy?: pulumi.Input<boolean>;
|
|
769
|
+
applicationProxy?: pulumi.Input<boolean | undefined>;
|
|
770
770
|
/**
|
|
771
771
|
* Basic auth password
|
|
772
772
|
*/
|
|
773
|
-
authPass?: pulumi.Input<string>;
|
|
773
|
+
authPass?: pulumi.Input<string | undefined>;
|
|
774
774
|
/**
|
|
775
775
|
* Basic auth username
|
|
776
776
|
*/
|
|
777
|
-
authUser?: pulumi.Input<string>;
|
|
777
|
+
authUser?: pulumi.Input<string | undefined>;
|
|
778
778
|
/**
|
|
779
779
|
* Cache lifetime
|
|
780
780
|
*/
|
|
781
|
-
cacheLifetime?: pulumi.Input<string>;
|
|
781
|
+
cacheLifetime?: pulumi.Input<string | undefined>;
|
|
782
782
|
/**
|
|
783
783
|
* Disable SSL verification
|
|
784
784
|
*/
|
|
785
|
-
disableSslVerify?: pulumi.Input<boolean>;
|
|
785
|
+
disableSslVerify?: pulumi.Input<boolean | undefined>;
|
|
786
786
|
/**
|
|
787
787
|
* Failover cache lifetime
|
|
788
788
|
*/
|
|
789
|
-
failoverLifetime?: pulumi.Input<string>;
|
|
789
|
+
failoverLifetime?: pulumi.Input<string | undefined>;
|
|
790
790
|
/**
|
|
791
791
|
* Enable failover mode
|
|
792
792
|
*/
|
|
793
|
-
failoverMode?: pulumi.Input<boolean>;
|
|
793
|
+
failoverMode?: pulumi.Input<boolean | undefined>;
|
|
794
794
|
/**
|
|
795
795
|
* Status codes for failover (default: 200,404,301,302,304)
|
|
796
796
|
*/
|
|
797
|
-
failoverOriginStatusCodes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
797
|
+
failoverOriginStatusCodes?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
798
798
|
/**
|
|
799
799
|
* Failover TTFB threshold
|
|
800
800
|
*/
|
|
801
|
-
failoverOriginTtfb?: pulumi.Input<string>;
|
|
801
|
+
failoverOriginTtfb?: pulumi.Input<string | undefined>;
|
|
802
802
|
/**
|
|
803
803
|
* Host header override
|
|
804
804
|
*/
|
|
805
|
-
host?: pulumi.Input<string>;
|
|
805
|
+
host?: pulumi.Input<string | undefined>;
|
|
806
806
|
/**
|
|
807
807
|
* Headers to inject
|
|
808
808
|
*/
|
|
809
809
|
injectHeaders?: pulumi.Input<{
|
|
810
810
|
[key: string]: pulumi.Input<string>;
|
|
811
|
-
}>;
|
|
811
|
+
} | undefined>;
|
|
812
812
|
/**
|
|
813
813
|
* Notification type (none, slack)
|
|
814
814
|
*/
|
|
815
|
-
notify?: pulumi.Input<string>;
|
|
815
|
+
notify?: pulumi.Input<string | undefined>;
|
|
816
816
|
/**
|
|
817
817
|
* Notification configuration (required when notify is slack)
|
|
818
818
|
*/
|
|
819
|
-
notifyConfig?: pulumi.Input<inputs.RuleProxyActionConfigNotifyConfig>;
|
|
819
|
+
notifyConfig?: pulumi.Input<inputs.RuleProxyActionConfigNotifyConfig | undefined>;
|
|
820
820
|
/**
|
|
821
821
|
* Only proxy 404 responses
|
|
822
822
|
*/
|
|
823
|
-
onlyProxy404?: pulumi.Input<boolean>;
|
|
823
|
+
onlyProxy404?: pulumi.Input<boolean | undefined>;
|
|
824
824
|
/**
|
|
825
825
|
* Origin timeout
|
|
826
826
|
*/
|
|
827
|
-
originTimeout?: pulumi.Input<string>;
|
|
827
|
+
originTimeout?: pulumi.Input<string | undefined>;
|
|
828
828
|
/**
|
|
829
829
|
* Proxy alert enabled
|
|
830
830
|
*/
|
|
831
|
-
proxyAlertEnabled?: pulumi.Input<boolean>;
|
|
831
|
+
proxyAlertEnabled?: pulumi.Input<boolean | undefined>;
|
|
832
832
|
/**
|
|
833
833
|
* Proxy inline function enabled
|
|
834
834
|
*/
|
|
835
|
-
proxyInlineFnEnabled?: pulumi.Input<boolean>;
|
|
835
|
+
proxyInlineFnEnabled?: pulumi.Input<boolean | undefined>;
|
|
836
836
|
/**
|
|
837
837
|
* Headers to strip from response
|
|
838
838
|
*/
|
|
839
|
-
proxyStripHeaders?: pulumi.Input<pulumi.Input<string>[]>;
|
|
839
|
+
proxyStripHeaders?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
840
840
|
/**
|
|
841
841
|
* Headers to strip from request
|
|
842
842
|
*/
|
|
843
|
-
proxyStripRequestHeaders?: pulumi.Input<pulumi.Input<string>[]>;
|
|
843
|
+
proxyStripRequestHeaders?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
844
844
|
/**
|
|
845
845
|
* Quant Cloud application proxy selection (populated automatically when applicationProxy is enabled)
|
|
846
846
|
*/
|
|
847
|
-
quantCloudSelection?: pulumi.Input<inputs.RuleProxyActionConfigQuantCloudSelection>;
|
|
847
|
+
quantCloudSelection?: pulumi.Input<inputs.RuleProxyActionConfigQuantCloudSelection | undefined>;
|
|
848
848
|
/**
|
|
849
849
|
* Static error page content (HTML) to serve on origin errors
|
|
850
850
|
*/
|
|
851
|
-
staticErrorPage?: pulumi.Input<string>;
|
|
851
|
+
staticErrorPage?: pulumi.Input<string | undefined>;
|
|
852
852
|
/**
|
|
853
853
|
* Origin status codes that trigger static error page
|
|
854
854
|
*/
|
|
855
|
-
staticErrorPageStatusCodes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
855
|
+
staticErrorPageStatusCodes?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
856
856
|
/**
|
|
857
857
|
* Target URL to proxy to
|
|
858
858
|
*/
|
|
859
|
-
to?: pulumi.Input<string>;
|
|
859
|
+
to?: pulumi.Input<string | undefined>;
|
|
860
860
|
/**
|
|
861
861
|
* Web Application Firewall configuration
|
|
862
862
|
*/
|
|
863
|
-
wafConfig?: pulumi.Input<inputs.RuleProxyActionConfigWafConfig>;
|
|
863
|
+
wafConfig?: pulumi.Input<inputs.RuleProxyActionConfigWafConfig | undefined>;
|
|
864
864
|
/**
|
|
865
865
|
* WAF enabled
|
|
866
866
|
*/
|
|
867
|
-
wafEnabled?: pulumi.Input<boolean>;
|
|
867
|
+
wafEnabled?: pulumi.Input<boolean | undefined>;
|
|
868
868
|
}
|
|
869
869
|
export interface RuleProxyActionConfigNotifyConfig {
|
|
870
870
|
/**
|
|
871
871
|
* Slack webhook URL
|
|
872
872
|
*/
|
|
873
|
-
webhookUrl?: pulumi.Input<string>;
|
|
873
|
+
webhookUrl?: pulumi.Input<string | undefined>;
|
|
874
874
|
}
|
|
875
875
|
export interface RuleProxyActionConfigQuantCloudSelection {
|
|
876
876
|
/**
|
|
877
877
|
* Application name
|
|
878
878
|
*/
|
|
879
|
-
app?: pulumi.Input<string>;
|
|
879
|
+
app?: pulumi.Input<string | undefined>;
|
|
880
880
|
/**
|
|
881
881
|
* Container name
|
|
882
882
|
*/
|
|
883
|
-
container?: pulumi.Input<string>;
|
|
883
|
+
container?: pulumi.Input<string | undefined>;
|
|
884
884
|
/**
|
|
885
885
|
* Environment name
|
|
886
886
|
*/
|
|
887
|
-
env?: pulumi.Input<string>;
|
|
887
|
+
env?: pulumi.Input<string | undefined>;
|
|
888
888
|
/**
|
|
889
889
|
* Container port
|
|
890
890
|
*/
|
|
891
|
-
port?: pulumi.Input<number>;
|
|
891
|
+
port?: pulumi.Input<number | undefined>;
|
|
892
892
|
}
|
|
893
893
|
export interface RuleProxyActionConfigWafConfig {
|
|
894
894
|
/**
|
|
895
895
|
* IP addresses to allow
|
|
896
896
|
*/
|
|
897
|
-
allowIps?: pulumi.Input<pulumi.Input<string>[]>;
|
|
897
|
+
allowIps?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
898
898
|
/**
|
|
899
899
|
* WAF rule IDs to allow/whitelist
|
|
900
900
|
*/
|
|
901
|
-
allowRules?: pulumi.Input<pulumi.Input<string>[]>;
|
|
901
|
+
allowRules?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
902
902
|
/**
|
|
903
903
|
* ASN numbers to block
|
|
904
904
|
*/
|
|
905
|
-
blockAsns?: pulumi.Input<pulumi.Input<string>[]>;
|
|
905
|
+
blockAsns?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
906
906
|
/**
|
|
907
907
|
* IP addresses to block
|
|
908
908
|
*/
|
|
909
|
-
blockIps?: pulumi.Input<pulumi.Input<string>[]>;
|
|
909
|
+
blockIps?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
910
910
|
/**
|
|
911
911
|
* Enable predefined block lists
|
|
912
912
|
*/
|
|
913
|
-
blockLists?: pulumi.Input<inputs.RuleProxyActionConfigWafConfigBlockLists>;
|
|
913
|
+
blockLists?: pulumi.Input<inputs.RuleProxyActionConfigWafConfigBlockLists | undefined>;
|
|
914
914
|
/**
|
|
915
915
|
* Referer patterns to block
|
|
916
916
|
*/
|
|
917
|
-
blockReferers?: pulumi.Input<pulumi.Input<string>[]>;
|
|
917
|
+
blockReferers?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
918
918
|
/**
|
|
919
919
|
* User agent patterns to block
|
|
920
920
|
*/
|
|
921
|
-
blockUas?: pulumi.Input<pulumi.Input<string>[]>;
|
|
921
|
+
blockUas?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
922
922
|
/**
|
|
923
923
|
* Project Honey Pot HTTP:BL configuration
|
|
924
924
|
*/
|
|
925
|
-
httpbl?: pulumi.Input<inputs.RuleProxyActionConfigWafConfigHttpbl>;
|
|
925
|
+
httpbl?: pulumi.Input<inputs.RuleProxyActionConfigWafConfigHttpbl | undefined>;
|
|
926
926
|
/**
|
|
927
927
|
* WAF operation mode
|
|
928
928
|
*/
|
|
929
|
-
mode?: pulumi.Input<string>;
|
|
929
|
+
mode?: pulumi.Input<string | undefined>;
|
|
930
930
|
/**
|
|
931
931
|
* Email addresses for notifications
|
|
932
932
|
*/
|
|
933
|
-
notifyEmails?: pulumi.Input<pulumi.Input<string>[]>;
|
|
933
|
+
notifyEmails?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
934
934
|
/**
|
|
935
935
|
* Slack webhook URL for notifications
|
|
936
936
|
*/
|
|
937
|
-
notifySlack?: pulumi.Input<string>;
|
|
937
|
+
notifySlack?: pulumi.Input<string | undefined>;
|
|
938
938
|
/**
|
|
939
939
|
* Minimum hits per minute to trigger Slack notification
|
|
940
940
|
*/
|
|
941
|
-
notifySlackHitsRpm?: pulumi.Input<number>;
|
|
941
|
+
notifySlackHitsRpm?: pulumi.Input<number | undefined>;
|
|
942
942
|
/**
|
|
943
943
|
* OWASP paranoia level
|
|
944
944
|
*/
|
|
945
|
-
paranoiaLevel?: pulumi.Input<number>;
|
|
945
|
+
paranoiaLevel?: pulumi.Input<number | undefined>;
|
|
946
946
|
/**
|
|
947
947
|
* Rate limiting thresholds
|
|
948
948
|
*/
|
|
949
|
-
thresholds?: pulumi.Input<pulumi.Input<inputs.RuleProxyActionConfigWafConfigThreshold>[]>;
|
|
949
|
+
thresholds?: pulumi.Input<pulumi.Input<inputs.RuleProxyActionConfigWafConfigThreshold>[] | undefined>;
|
|
950
950
|
}
|
|
951
951
|
export interface RuleProxyActionConfigWafConfigBlockLists {
|
|
952
952
|
/**
|
|
953
953
|
* Block AI crawlers
|
|
954
954
|
*/
|
|
955
|
-
ai?: pulumi.Input<boolean>;
|
|
955
|
+
ai?: pulumi.Input<boolean | undefined>;
|
|
956
956
|
/**
|
|
957
957
|
* Block known bad IPs
|
|
958
958
|
*/
|
|
959
|
-
ip?: pulumi.Input<boolean>;
|
|
959
|
+
ip?: pulumi.Input<boolean | undefined>;
|
|
960
960
|
/**
|
|
961
961
|
* Block known bad referers
|
|
962
962
|
*/
|
|
963
|
-
referer?: pulumi.Input<boolean>;
|
|
963
|
+
referer?: pulumi.Input<boolean | undefined>;
|
|
964
964
|
/**
|
|
965
965
|
* Block known bad user agents
|
|
966
966
|
*/
|
|
967
|
-
userAgent?: pulumi.Input<boolean>;
|
|
967
|
+
userAgent?: pulumi.Input<boolean | undefined>;
|
|
968
968
|
}
|
|
969
969
|
export interface RuleProxyActionConfigWafConfigHttpbl {
|
|
970
970
|
/**
|
|
971
971
|
* Block email harvesters
|
|
972
972
|
*/
|
|
973
|
-
blockHarvester?: pulumi.Input<boolean>;
|
|
973
|
+
blockHarvester?: pulumi.Input<boolean | undefined>;
|
|
974
974
|
/**
|
|
975
975
|
* Block search engines
|
|
976
976
|
*/
|
|
977
|
-
blockSearchEngine?: pulumi.Input<boolean>;
|
|
977
|
+
blockSearchEngine?: pulumi.Input<boolean | undefined>;
|
|
978
978
|
/**
|
|
979
979
|
* Block spam sources
|
|
980
980
|
*/
|
|
981
|
-
blockSpam?: pulumi.Input<boolean>;
|
|
981
|
+
blockSpam?: pulumi.Input<boolean | undefined>;
|
|
982
982
|
/**
|
|
983
983
|
* Block suspicious IPs
|
|
984
984
|
*/
|
|
985
|
-
blockSuspicious?: pulumi.Input<boolean>;
|
|
985
|
+
blockSuspicious?: pulumi.Input<boolean | undefined>;
|
|
986
986
|
/**
|
|
987
987
|
* Enable HTTP:BL
|
|
988
988
|
*/
|
|
989
|
-
httpblEnabled?: pulumi.Input<boolean>;
|
|
989
|
+
httpblEnabled?: pulumi.Input<boolean | undefined>;
|
|
990
990
|
/**
|
|
991
991
|
* HTTP:BL API key
|
|
992
992
|
*/
|
|
993
|
-
httpblKey?: pulumi.Input<string>;
|
|
993
|
+
httpblKey?: pulumi.Input<string | undefined>;
|
|
994
994
|
}
|
|
995
995
|
export interface RuleProxyActionConfigWafConfigThreshold {
|
|
996
996
|
/**
|
|
997
997
|
* Cooldown period in seconds
|
|
998
998
|
*/
|
|
999
|
-
cooldown?: pulumi.Input<number>;
|
|
999
|
+
cooldown?: pulumi.Input<number | undefined>;
|
|
1000
1000
|
/**
|
|
1001
1001
|
* Hit count limit (for waf_hit_by_ip)
|
|
1002
1002
|
*/
|
|
1003
|
-
hits?: pulumi.Input<number>;
|
|
1003
|
+
hits?: pulumi.Input<number | undefined>;
|
|
1004
1004
|
/**
|
|
1005
1005
|
* Time window in minutes (for waf_hit_by_ip)
|
|
1006
1006
|
*/
|
|
1007
|
-
minutes?: pulumi.Input<number>;
|
|
1007
|
+
minutes?: pulumi.Input<number | undefined>;
|
|
1008
1008
|
/**
|
|
1009
1009
|
* Threshold enforcement mode
|
|
1010
1010
|
*/
|
|
1011
|
-
mode?: pulumi.Input<string>;
|
|
1011
|
+
mode?: pulumi.Input<string | undefined>;
|
|
1012
1012
|
/**
|
|
1013
1013
|
* Slack webhook for this threshold
|
|
1014
1014
|
*/
|
|
1015
|
-
notifySlack?: pulumi.Input<string>;
|
|
1015
|
+
notifySlack?: pulumi.Input<string | undefined>;
|
|
1016
1016
|
/**
|
|
1017
1017
|
* Requests per second limit (for ip/header)
|
|
1018
1018
|
*/
|
|
1019
|
-
rps?: pulumi.Input<number>;
|
|
1019
|
+
rps?: pulumi.Input<number | undefined>;
|
|
1020
1020
|
/**
|
|
1021
1021
|
* Threshold type
|
|
1022
1022
|
*/
|
|
1023
|
-
type?: pulumi.Input<string>;
|
|
1023
|
+
type?: pulumi.Input<string | undefined>;
|
|
1024
1024
|
/**
|
|
1025
1025
|
* Header name (for header type)
|
|
1026
1026
|
*/
|
|
1027
|
-
value?: pulumi.Input<string>;
|
|
1027
|
+
value?: pulumi.Input<string | undefined>;
|
|
1028
1028
|
}
|
|
1029
1029
|
export interface RuleProxyWafConfig {
|
|
1030
1030
|
/**
|
|
1031
1031
|
* IP addresses to allow
|
|
1032
1032
|
*/
|
|
1033
|
-
allowIps?: pulumi.Input<pulumi.Input<string>[]>;
|
|
1033
|
+
allowIps?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
1034
1034
|
/**
|
|
1035
1035
|
* WAF rule IDs to allow/whitelist
|
|
1036
1036
|
*/
|
|
1037
|
-
allowRules?: pulumi.Input<pulumi.Input<string>[]>;
|
|
1037
|
+
allowRules?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
1038
1038
|
/**
|
|
1039
1039
|
* ASN numbers to block
|
|
1040
1040
|
*/
|
|
1041
|
-
blockAsns?: pulumi.Input<pulumi.Input<string>[]>;
|
|
1041
|
+
blockAsns?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
1042
1042
|
/**
|
|
1043
1043
|
* IP addresses to block
|
|
1044
1044
|
*/
|
|
1045
|
-
blockIps?: pulumi.Input<pulumi.Input<string>[]>;
|
|
1045
|
+
blockIps?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
1046
1046
|
/**
|
|
1047
1047
|
* Enable predefined block lists
|
|
1048
1048
|
*/
|
|
1049
|
-
blockLists?: pulumi.Input<inputs.RuleProxyWafConfigBlockLists>;
|
|
1049
|
+
blockLists?: pulumi.Input<inputs.RuleProxyWafConfigBlockLists | undefined>;
|
|
1050
1050
|
/**
|
|
1051
1051
|
* Referer patterns to block
|
|
1052
1052
|
*/
|
|
1053
|
-
blockReferers?: pulumi.Input<pulumi.Input<string>[]>;
|
|
1053
|
+
blockReferers?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
1054
1054
|
/**
|
|
1055
1055
|
* User agent patterns to block
|
|
1056
1056
|
*/
|
|
1057
|
-
blockUas?: pulumi.Input<pulumi.Input<string>[]>;
|
|
1057
|
+
blockUas?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
1058
1058
|
/**
|
|
1059
1059
|
* Project Honey Pot HTTP:BL configuration
|
|
1060
1060
|
*/
|
|
1061
|
-
httpbl?: pulumi.Input<inputs.RuleProxyWafConfigHttpbl>;
|
|
1061
|
+
httpbl?: pulumi.Input<inputs.RuleProxyWafConfigHttpbl | undefined>;
|
|
1062
1062
|
/**
|
|
1063
1063
|
* WAF operation mode
|
|
1064
1064
|
*/
|
|
1065
|
-
mode?: pulumi.Input<string>;
|
|
1065
|
+
mode?: pulumi.Input<string | undefined>;
|
|
1066
1066
|
/**
|
|
1067
1067
|
* Email addresses for notifications
|
|
1068
1068
|
*/
|
|
1069
|
-
notifyEmails?: pulumi.Input<pulumi.Input<string>[]>;
|
|
1069
|
+
notifyEmails?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
1070
1070
|
/**
|
|
1071
1071
|
* Slack webhook URL for notifications
|
|
1072
1072
|
*/
|
|
1073
|
-
notifySlack?: pulumi.Input<string>;
|
|
1073
|
+
notifySlack?: pulumi.Input<string | undefined>;
|
|
1074
1074
|
/**
|
|
1075
1075
|
* Minimum hits per minute to trigger Slack notification
|
|
1076
1076
|
*/
|
|
1077
|
-
notifySlackHitsRpm?: pulumi.Input<number>;
|
|
1077
|
+
notifySlackHitsRpm?: pulumi.Input<number | undefined>;
|
|
1078
1078
|
/**
|
|
1079
1079
|
* OWASP paranoia level
|
|
1080
1080
|
*/
|
|
1081
|
-
paranoiaLevel?: pulumi.Input<number>;
|
|
1081
|
+
paranoiaLevel?: pulumi.Input<number | undefined>;
|
|
1082
1082
|
/**
|
|
1083
1083
|
* Rate limiting thresholds
|
|
1084
1084
|
*/
|
|
1085
|
-
thresholds?: pulumi.Input<pulumi.Input<inputs.RuleProxyWafConfigThreshold>[]>;
|
|
1085
|
+
thresholds?: pulumi.Input<pulumi.Input<inputs.RuleProxyWafConfigThreshold>[] | undefined>;
|
|
1086
1086
|
}
|
|
1087
1087
|
export interface RuleProxyWafConfigBlockLists {
|
|
1088
1088
|
/**
|
|
1089
1089
|
* Block AI crawlers
|
|
1090
1090
|
*/
|
|
1091
|
-
ai?: pulumi.Input<boolean>;
|
|
1091
|
+
ai?: pulumi.Input<boolean | undefined>;
|
|
1092
1092
|
/**
|
|
1093
1093
|
* Block known bad IPs
|
|
1094
1094
|
*/
|
|
1095
|
-
ip?: pulumi.Input<boolean>;
|
|
1095
|
+
ip?: pulumi.Input<boolean | undefined>;
|
|
1096
1096
|
/**
|
|
1097
1097
|
* Block known bad referers
|
|
1098
1098
|
*/
|
|
1099
|
-
referer?: pulumi.Input<boolean>;
|
|
1099
|
+
referer?: pulumi.Input<boolean | undefined>;
|
|
1100
1100
|
/**
|
|
1101
1101
|
* Block known bad user agents
|
|
1102
1102
|
*/
|
|
1103
|
-
userAgent?: pulumi.Input<boolean>;
|
|
1103
|
+
userAgent?: pulumi.Input<boolean | undefined>;
|
|
1104
1104
|
}
|
|
1105
1105
|
export interface RuleProxyWafConfigHttpbl {
|
|
1106
1106
|
/**
|
|
1107
1107
|
* Block email harvesters
|
|
1108
1108
|
*/
|
|
1109
|
-
blockHarvester?: pulumi.Input<boolean>;
|
|
1109
|
+
blockHarvester?: pulumi.Input<boolean | undefined>;
|
|
1110
1110
|
/**
|
|
1111
1111
|
* Block search engines
|
|
1112
1112
|
*/
|
|
1113
|
-
blockSearchEngine?: pulumi.Input<boolean>;
|
|
1113
|
+
blockSearchEngine?: pulumi.Input<boolean | undefined>;
|
|
1114
1114
|
/**
|
|
1115
1115
|
* Block spam sources
|
|
1116
1116
|
*/
|
|
1117
|
-
blockSpam?: pulumi.Input<boolean>;
|
|
1117
|
+
blockSpam?: pulumi.Input<boolean | undefined>;
|
|
1118
1118
|
/**
|
|
1119
1119
|
* Block suspicious IPs
|
|
1120
1120
|
*/
|
|
1121
|
-
blockSuspicious?: pulumi.Input<boolean>;
|
|
1121
|
+
blockSuspicious?: pulumi.Input<boolean | undefined>;
|
|
1122
1122
|
/**
|
|
1123
1123
|
* Enable HTTP:BL
|
|
1124
1124
|
*/
|
|
1125
|
-
httpblEnabled?: pulumi.Input<boolean>;
|
|
1125
|
+
httpblEnabled?: pulumi.Input<boolean | undefined>;
|
|
1126
1126
|
/**
|
|
1127
1127
|
* HTTP:BL API key
|
|
1128
1128
|
*/
|
|
1129
|
-
httpblKey?: pulumi.Input<string>;
|
|
1129
|
+
httpblKey?: pulumi.Input<string | undefined>;
|
|
1130
1130
|
}
|
|
1131
1131
|
export interface RuleProxyWafConfigThreshold {
|
|
1132
1132
|
/**
|
|
1133
1133
|
* Cooldown period in seconds
|
|
1134
1134
|
*/
|
|
1135
|
-
cooldown?: pulumi.Input<number>;
|
|
1135
|
+
cooldown?: pulumi.Input<number | undefined>;
|
|
1136
1136
|
/**
|
|
1137
1137
|
* Hit count limit (for waf_hit_by_ip)
|
|
1138
1138
|
*/
|
|
1139
|
-
hits?: pulumi.Input<number>;
|
|
1139
|
+
hits?: pulumi.Input<number | undefined>;
|
|
1140
1140
|
/**
|
|
1141
1141
|
* Time window in minutes (for waf_hit_by_ip)
|
|
1142
1142
|
*/
|
|
1143
|
-
minutes?: pulumi.Input<number>;
|
|
1143
|
+
minutes?: pulumi.Input<number | undefined>;
|
|
1144
1144
|
/**
|
|
1145
1145
|
* Threshold enforcement mode
|
|
1146
1146
|
*/
|
|
1147
|
-
mode?: pulumi.Input<string>;
|
|
1147
|
+
mode?: pulumi.Input<string | undefined>;
|
|
1148
1148
|
/**
|
|
1149
1149
|
* Slack webhook for this threshold
|
|
1150
1150
|
*/
|
|
1151
|
-
notifySlack?: pulumi.Input<string>;
|
|
1151
|
+
notifySlack?: pulumi.Input<string | undefined>;
|
|
1152
1152
|
/**
|
|
1153
1153
|
* Requests per second limit (for ip/header)
|
|
1154
1154
|
*/
|
|
1155
|
-
rps?: pulumi.Input<number>;
|
|
1155
|
+
rps?: pulumi.Input<number | undefined>;
|
|
1156
1156
|
/**
|
|
1157
1157
|
* Threshold type
|
|
1158
1158
|
*/
|
|
1159
|
-
type?: pulumi.Input<string>;
|
|
1159
|
+
type?: pulumi.Input<string | undefined>;
|
|
1160
1160
|
/**
|
|
1161
1161
|
* Header name (for header type)
|
|
1162
1162
|
*/
|
|
1163
|
-
value?: pulumi.Input<string>;
|
|
1163
|
+
value?: pulumi.Input<string | undefined>;
|
|
1164
1164
|
}
|
|
1165
1165
|
export interface RuleRedirectActionConfig {
|
|
1166
1166
|
/**
|
|
1167
1167
|
* HTTP status code for redirect
|
|
1168
1168
|
*/
|
|
1169
|
-
statusCode?: pulumi.Input<string>;
|
|
1169
|
+
statusCode?: pulumi.Input<string | undefined>;
|
|
1170
1170
|
/**
|
|
1171
1171
|
* Redirect destination URL
|
|
1172
1172
|
*/
|
|
1173
|
-
to?: pulumi.Input<string>;
|
|
1173
|
+
to?: pulumi.Input<string | undefined>;
|
|
1174
1174
|
}
|
|
1175
1175
|
export interface RuleServeStaticActionConfig {
|
|
1176
1176
|
/**
|
|
1177
1177
|
* Path to the static file to serve
|
|
1178
1178
|
*/
|
|
1179
|
-
staticFilePath?: pulumi.Input<string>;
|
|
1179
|
+
staticFilePath?: pulumi.Input<string | undefined>;
|
|
1180
1180
|
}
|
|
1181
1181
|
export interface SlackBotAgentAccessControl {
|
|
1182
1182
|
}
|
|
1183
1183
|
export interface SlackBotBot {
|
|
1184
|
-
agentAccessControl?: pulumi.Input<inputs.SlackBotBotAgentAccessControl>;
|
|
1185
|
-
allowGuests?: pulumi.Input<boolean>;
|
|
1186
|
-
allowedChannels?: pulumi.Input<pulumi.Input<string>[]>;
|
|
1187
|
-
allowedCollections?: pulumi.Input<pulumi.Input<string>[]>;
|
|
1188
|
-
allowedSubAgents?: pulumi.Input<pulumi.Input<string>[]>;
|
|
1189
|
-
allowedTools?: pulumi.Input<pulumi.Input<string>[]>;
|
|
1190
|
-
allowedUsers?: pulumi.Input<pulumi.Input<string>[]>;
|
|
1191
|
-
assignedSkills?: pulumi.Input<pulumi.Input<string>[]>;
|
|
1192
|
-
botId?: pulumi.Input<string>;
|
|
1193
|
-
connected?: pulumi.Input<boolean>;
|
|
1194
|
-
createdAt?: pulumi.Input<string>;
|
|
1195
|
-
deniedUsers?: pulumi.Input<pulumi.Input<string>[]>;
|
|
1196
|
-
filterPolicies?: pulumi.Input<pulumi.Input<string>[]>;
|
|
1197
|
-
guardrailPreset?: pulumi.Input<string>;
|
|
1198
|
-
homeTabContent?: pulumi.Input<string>;
|
|
1199
|
-
keywords?: pulumi.Input<pulumi.Input<string>[]>;
|
|
1200
|
-
keywordsEnabled?: pulumi.Input<boolean>;
|
|
1201
|
-
longContext?: pulumi.Input<boolean>;
|
|
1202
|
-
maxTokens?: pulumi.Input<number>;
|
|
1203
|
-
modelId?: pulumi.Input<string>;
|
|
1204
|
-
name?: pulumi.Input<string>;
|
|
1205
|
-
sessionTtlDays?: pulumi.Input<number>;
|
|
1206
|
-
setupType?: pulumi.Input<string>;
|
|
1207
|
-
status?: pulumi.Input<string>;
|
|
1208
|
-
systemPrompt?: pulumi.Input<string>;
|
|
1209
|
-
temperature?: pulumi.Input<number>;
|
|
1210
|
-
updatedAt?: pulumi.Input<string>;
|
|
1184
|
+
agentAccessControl?: pulumi.Input<inputs.SlackBotBotAgentAccessControl | undefined>;
|
|
1185
|
+
allowGuests?: pulumi.Input<boolean | undefined>;
|
|
1186
|
+
allowedChannels?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
1187
|
+
allowedCollections?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
1188
|
+
allowedSubAgents?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
1189
|
+
allowedTools?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
1190
|
+
allowedUsers?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
1191
|
+
assignedSkills?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
1192
|
+
botId?: pulumi.Input<string | undefined>;
|
|
1193
|
+
connected?: pulumi.Input<boolean | undefined>;
|
|
1194
|
+
createdAt?: pulumi.Input<string | undefined>;
|
|
1195
|
+
deniedUsers?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
1196
|
+
filterPolicies?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
1197
|
+
guardrailPreset?: pulumi.Input<string | undefined>;
|
|
1198
|
+
homeTabContent?: pulumi.Input<string | undefined>;
|
|
1199
|
+
keywords?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
1200
|
+
keywordsEnabled?: pulumi.Input<boolean | undefined>;
|
|
1201
|
+
longContext?: pulumi.Input<boolean | undefined>;
|
|
1202
|
+
maxTokens?: pulumi.Input<number | undefined>;
|
|
1203
|
+
modelId?: pulumi.Input<string | undefined>;
|
|
1204
|
+
name?: pulumi.Input<string | undefined>;
|
|
1205
|
+
sessionTtlDays?: pulumi.Input<number | undefined>;
|
|
1206
|
+
setupType?: pulumi.Input<string | undefined>;
|
|
1207
|
+
status?: pulumi.Input<string | undefined>;
|
|
1208
|
+
systemPrompt?: pulumi.Input<string | undefined>;
|
|
1209
|
+
temperature?: pulumi.Input<number | undefined>;
|
|
1210
|
+
updatedAt?: pulumi.Input<string | undefined>;
|
|
1211
1211
|
}
|
|
1212
1212
|
export interface SlackBotBotAgentAccessControl {
|
|
1213
1213
|
}
|