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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
|
package schema
import "time"
// Firewall defines the schema of a Firewall.
type Firewall struct {
ID int64 `json:"id"`
Name string `json:"name"`
Labels map[string]string `json:"labels"`
Created time.Time `json:"created"`
Rules []FirewallRule `json:"rules"`
AppliedTo []FirewallResource `json:"applied_to"`
}
// FirewallRule defines the schema of a Firewall rule.
type FirewallRule struct {
Direction string `json:"direction"`
SourceIPs []string `json:"source_ips,omitempty"`
DestinationIPs []string `json:"destination_ips,omitempty"`
Protocol string `json:"protocol"`
Port *string `json:"port,omitempty"`
Description *string `json:"description,omitempty"`
}
// FirewallListResponse defines the schema of the response when listing Firewalls.
type FirewallListResponse struct {
Firewalls []Firewall `json:"firewalls"`
}
// FirewallGetResponse defines the schema of the response when retrieving a single Firewall.
type FirewallGetResponse struct {
Firewall Firewall `json:"firewall"`
}
// FirewallCreateRequest defines the schema of the request to create a Firewall.
type FirewallCreateRequest struct {
Name string `json:"name"`
Labels *map[string]string `json:"labels,omitempty"`
Rules []FirewallRule `json:"rules,omitempty"`
ApplyTo []FirewallResource `json:"apply_to,omitempty"`
}
// FirewallResource defines the schema of a resource to apply the new Firewall on.
type FirewallResource struct {
Type string `json:"type"`
Server *FirewallResourceServer `json:"server,omitempty"`
LabelSelector *FirewallResourceLabelSelector `json:"label_selector,omitempty"`
}
// FirewallResourceLabelSelector defines the schema of a LabelSelector to apply a Firewall on.
type FirewallResourceLabelSelector struct {
Selector string `json:"selector"`
}
// FirewallResourceServer defines the schema of a Server to apply a Firewall on.
type FirewallResourceServer struct {
ID int64 `json:"id"`
}
// FirewallCreateResponse defines the schema of the response when creating a Firewall.
type FirewallCreateResponse struct {
Firewall Firewall `json:"firewall"`
Actions []Action `json:"actions"`
}
// FirewallUpdateRequest defines the schema of the request to update a Firewall.
type FirewallUpdateRequest struct {
Name *string `json:"name,omitempty"`
Labels *map[string]string `json:"labels,omitempty"`
}
// FirewallUpdateResponse defines the schema of the response when updating a Firewall.
type FirewallUpdateResponse struct {
Firewall Firewall `json:"firewall"`
}
// FirewallActionSetRulesRequest defines the schema of the request when setting Firewall rules.
type FirewallActionSetRulesRequest struct {
Rules []FirewallRule `json:"rules"`
}
// FirewallActionSetRulesResponse defines the schema of the response when setting Firewall rules.
type FirewallActionSetRulesResponse struct {
Actions []Action `json:"actions"`
}
// FirewallActionApplyToResourcesRequest defines the schema of the request when applying a Firewall on resources.
type FirewallActionApplyToResourcesRequest struct {
ApplyTo []FirewallResource `json:"apply_to"`
}
// FirewallActionApplyToResourcesResponse defines the schema of the response when applying a Firewall on resources.
type FirewallActionApplyToResourcesResponse struct {
Actions []Action `json:"actions"`
}
// FirewallActionRemoveFromResourcesRequest defines the schema of the request when removing a Firewall from resources.
type FirewallActionRemoveFromResourcesRequest struct {
RemoveFrom []FirewallResource `json:"remove_from"`
}
// FirewallActionRemoveFromResourcesResponse defines the schema of the response when removing a Firewall from resources.
type FirewallActionRemoveFromResourcesResponse struct {
Actions []Action `json:"actions"`
}
|