-
Notifications
You must be signed in to change notification settings - Fork 0
/
model_server.go
30 lines (29 loc) · 1.13 KB
/
model_server.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*
* Laravel Forge
*
* The Forge API allows you to create and interact with servers and sites on Laravel Forge through a simple REST API.
*
* API version: 1.0.0
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
*/
package forge
type Server struct {
Id int32 `json:"id,omitempty"`
CredentialId int32 `json:"credential_id,omitempty"`
Name string `json:"name,omitempty"`
Size string `json:"size,omitempty"`
Region string `json:"region,omitempty"`
PhpVersion string `json:"php_version,omitempty"`
PhpCliVersion string `json:"php_cli_version,omitempty"`
OpcacheStatus string `json:"opcache_status,omitempty"`
DatabaseType string `json:"database_type,omitempty"`
IpAddress string `json:"ip_address,omitempty"`
PrivateIpAddress string `json:"private_ip_address,omitempty"`
BlackfireStatus string `json:"blackfire_status,omitempty"`
PapertrailStatus string `json:"papertrail_status,omitempty"`
Revoked string `json:"revoked,omitempty"`
CreatedAt string `json:"created_at,omitempty"`
IsReady string `json:"is_ready,omitempty"`
Network []int32 `json:"network,omitempty"`
Tags []string `json:"tags,omitempty"`
}