You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* add regions
* Update src/lib/regions.ts
Co-authored-by: Han Qiao <[email protected]>
* Update src/lib/types.ts
Co-authored-by: Han Qiao <[email protected]>
* dep
* dep
* more work on types
* rerun npm gen:types
* Revert "rerun npm gen:types"
This reverts commit 0980180.
* chore: update mock response for unit tests
---------
Co-authored-by: Han Qiao <[email protected]>
Co-authored-by: Qiao Han <[email protected]>
/** A file that will be written to the Machine. One of RawValue or SecretName must be set. */
212
236
exportinterfaceApiFile{
213
237
/**
214
238
* GuestPath is the path on the machine where the file will be written and must be an absolute path.
215
-
* i.e. /full/path/to/file.json
239
+
* For example: /full/path/to/file.json
216
240
*/
217
241
guest_path?: string
218
-
/** RawValue containts the base64 encoded string of the file contents. */
242
+
/** The base64 encoded string of the file contents. */
219
243
raw_value?: string
220
-
/** SecretName is the name of the secret that contains the base64 encoded file contents. */
244
+
/** The name of the secret that contains the base64 encoded file contents. */
221
245
secret_name?: string
222
246
}
223
247
224
248
exportinterfaceApiHTTPOptions{
225
249
compress?: boolean
250
+
h2_backend?: boolean
226
251
response?: ApiHTTPResponseOptions
227
252
}
228
253
229
254
exportinterfaceApiHTTPResponseOptions{
230
255
headers?: Record<string,any>
231
256
}
232
257
258
+
/** An optional object that defines one or more named checks. The key for each check is the check name. */
233
259
exportinterfaceApiMachineCheck{
260
+
/** The time to wait after a VM starts before checking its health */
234
261
grace_period?: string
235
262
headers?: ApiMachineHTTPHeader[]
263
+
/** The time between connectivity checks */
236
264
interval?: string
265
+
/** For http checks, the HTTP method to use to when making the request */
237
266
method?: string
267
+
/** For http checks, the path to send the request to */
238
268
path?: string
269
+
/** The port to connect to, often the same as internal_port */
239
270
port?: number
271
+
/** For http checks, whether to use http or https */
240
272
protocol?: string
273
+
/** The maximum time a connection can take before being reported as failing its health check */
241
274
timeout?: string
275
+
/** If the protocol is https, the hostname to use for TLS certificate validation */
242
276
tls_server_name?: string
277
+
/** For http checks with https protocol, whether or not to verify the TLS certificate */
243
278
tls_skip_verify?: boolean
279
+
/** tcp or http */
244
280
type?: string
245
281
}
246
282
247
283
exportinterfaceApiMachineConfig{
284
+
/** Optional boolean telling the Machine to destroy itself once it’s complete (default false) */
248
285
auto_destroy?: boolean
249
286
checks?: Record<string,ApiMachineCheck>
250
287
/** Deprecated: use Service.Autostart instead */
251
288
disable_machine_autostart?: boolean
252
289
dns?: ApiDNSConfig
253
-
/**
254
-
* Fields managed from fly.toml
255
-
* If you add anything here, ensure appconfig.Config.ToMachine() is updated
256
-
*/
290
+
/** An object filled with key/value pairs to be set as environment variables */
257
291
env?: Record<string,string>
258
292
files?: ApiFile[]
259
293
guest?: ApiMachineGuest
260
-
host_dedication_id?: string
261
-
/** Set by fly deploy or fly machines commands */
294
+
/** The docker image to run */
262
295
image?: string
263
296
init?: ApiMachineInit
264
297
metadata?: Record<string,string>
265
298
metrics?: ApiMachineMetrics
266
299
mounts?: ApiMachineMount[]
267
300
processes?: ApiMachineProcess[]
301
+
/** The Machine restart policy defines whether and how flyd restarts a Machine after its main process exits. See https://fly.io/docs/machines/guides-examples/machine-restart-policy/. */
268
302
restart?: ApiMachineRestart
269
-
/**
270
-
* The following fields can only be set or updated by `fly machines run|update` commands
271
-
* "fly deploy" must preserve them, if you add anything here, ensure it is propagated on deploys
/** For http checks, an array of objects with string field Name and array of strings field Values. The key/value pairs specify header and header values that will get passed with the check call. */
/** The Machine restart policy defines whether and how flyd restarts a Machine after its main process exits. See https://fly.io/docs/machines/guides-examples/machine-restart-policy/. */
340
378
exportinterfaceApiMachineRestart{
341
-
/** MaxRetries is only relevant with the on-failure policy. */
379
+
/** When policy is on-failure, the maximum number of times to attempt to restart the Machine before letting it stop. */
342
380
max_retries?: number
343
-
policy?: string
381
+
/**
382
+
* * no - Never try to restart a Machine automatically when its main process exits, whether that’s on purpose or on a crash.
383
+
* * always - Always restart a Machine automatically and never let it enter a stopped state, even when the main process exits cleanly.
384
+
* * on-failure - Try up to MaxRetries times to automatically restart the Machine if it exits with a non-zero exit code. Default when no explicit policy is set, and for Machines with schedules.
* * no - Never try to restart a Machine automatically when its main process exits, whether that’s on purpose or on a crash.
451
+
* * always - Always restart a Machine automatically and never let it enter a stopped state, even when the main process exits cleanly.
452
+
* * on-failure - Try up to MaxRetries times to automatically restart the Machine if it exits with a non-zero exit code. Default when no explicit policy is set, and for Machines with schedules.
453
+
*/
454
+
exportenumApiMachineRestartPolicyEnum{
455
+
No='no',
456
+
Always='always',
457
+
OnFailure='on-failure',
458
+
}
459
+
401
460
exportinterfaceAppsListParams{
402
461
/** The org slug, or 'personal', to filter apps */
0 commit comments