Skip to content

Latest commit

 

History

History
30 lines (25 loc) · 2.3 KB

File metadata and controls

30 lines (25 loc) · 2.3 KB

openapi.model.Instance

Load the model package

import 'package:openapi/api.dart';

Properties

Name Type Description Notes
id String The unique identifier of the instance.
name String If set, the user-provided name of the instance. [optional]
ip String The public IPv4 address of the instance. [optional]
privateIp String The private IPv4 address of the instance. [optional]
status InstanceStatus
sshKeyNames List The names of the SSH keys that are allowed to access the instance. [default to const []]
fileSystemNames List The names of the filesystems mounted to the instance. If no filesystems are mounted, this array is empty. [default to const []]
fileSystemMounts List The filesystems, along with the mount paths, mounted to the instances. If no filesystems are mounted, this parameter will be missing from the response. [optional] [default to const []]
region Region The region in which the instance is deployed.
instanceType InstanceType Detailed information about the instance's instance type.
hostname String The hostname assigned to this instance, which resolves to the instance's IP. [optional]
jupyterToken String The secret token used to log into the JupyterLab server hosted on the instance. [optional]
jupyterUrl String The URL that opens the JupyterLab environment on the instance. [optional]
actions InstanceActionAvailability A set of status objects representing the current availability of common instance operations.
tags List Key/value pairs representing the instance's tags. [optional] [default to const []]
firewallRulesets List The firewall rulesets associated with this instance. [optional] [default to const []]

[Back to Model list] [Back to API list] [Back to README]