@@ -116,26 +116,24 @@ types:
116
116
tags : unknown
117
117
build : optional<uuid>
118
118
build_tags : optional<unknown>
119
- runtime : optional<CreateActorRuntimeRequest>
120
- network : optional<CreateActorNetworkRequest>
121
- resources : optional<localCommons.Resources>
122
- lifecycle : optional<localCommons.Lifecycle>
123
-
124
- CreateActorRuntimeRequest :
125
- properties :
126
119
# arguments: optional<list<string>>
127
120
environment : optional<map<string, string>>
128
- network : optional<CreateActorRuntimeNetworkRequest>
129
-
130
- CreateActorRuntimeNetworkRequest :
131
- properties :
132
- endpoint_type : localCommons.EndpointType
133
-
134
- CreateActorNetworkRequest :
135
- properties :
136
- mode : optional<localCommons.NetworkMode>
121
+ network_mode : optional<localCommons.NetworkMode>
122
+ network_endpoint_type : localCommons.EndpointType
137
123
ports : optional<map<string, CreateActorPortRequest>>
138
- wait_ready : optional<boolean>
124
+ wait_for_network_ready : optional<boolean>
125
+ resources : optional<localCommons.Resources>
126
+ kill_timeout :
127
+ docs : >-
128
+ The duration to wait for in milliseconds before killing the actor.
129
+ This should be set to a safe default, and can be overridden during a
130
+ DELETE request if needed.
131
+ type : optional<long>
132
+ durable :
133
+ docs : >-
134
+ If true, the actor will try to reschedule itself automatically in the event of a crash or a
135
+ datacenter failover. The actor will not reschedule if it exits successfully.
136
+ type : optional<boolean>
139
137
140
138
CreateActorPortRequest :
141
139
properties :
0 commit comments