-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsubnet.go
50 lines (44 loc) · 1.64 KB
/
subnet.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*******************************************************************************
* IBM Confidential
* OCO Source Materials
* IBM Cloud Kubernetes Service, 5737-D43
* (C) Copyright IBM Corp. 2023 All Rights Reserved.
* The source code for this program is not published or otherwise divested of
* its trade secrets, irrespective of what has been deposited with
* the U.S. Copyright Office.
******************************************************************************/
// Package models ...
package models
import (
"github.com/IBM/ibmcloud-volume-interface/lib/provider"
)
// Subnet ...
type Subnet struct {
CRN string `json:"crn,omitempty"`
Href string `json:"href,omitempty"`
ID string `json:"id,omitempty"`
Name string `json:"name,omitempty"`
ResourceGroup *ResourceGroup `json:"resource_group,omitempty"`
VPC *provider.VPC `json:"vpc,omitempty"`
Zone *Zone `json:"zone,omitempty"`
}
// SubnetRef ...
type SubnetRef struct {
CRN string `json:"crn,omitempty"`
ID string `json:"id,omitempty"`
Href string `json:"href,omitempty"`
}
// SubnetList ...
type SubnetList struct {
First *HReference `json:"first,omitempty"`
Next *HReference `json:"next,omitempty"`
Subnets []Subnet `json:"subnets,omitempty"`
Limit int `json:"limit,omitempty"`
TotalCount int `json:"total_count,omitempty"`
}
// ListSubnetFilters ...
type ListSubnetFilters struct {
ResourceGroupID string `json:"resource_group.id,omitempty"`
VPCID string `json:"vpc.id,omitempty"`
ZoneName string `json:"zone.name,omitempty"`
}