forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservice_plan_resource.go
40 lines (35 loc) · 1.48 KB
/
service_plan_resource.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
package resources
import "code.cloudfoundry.org/jsonry"
type ServicePlanCost struct {
Amount float64 `json:"amount"`
Currency string `json:"currency"`
Unit string `json:"unit"`
}
type ServicePlan struct {
// GUID is a unique service plan identifier.
GUID string `json:"guid"`
// Name is the name of the service plan.
Name string `json:"name"`
// Description of the Service Plan.
Description string `json:"description"`
// Whether the Service Plan is available
Available bool `json:"available"`
// VisibilityType can be "public", "admin", "organization" or "space"
VisibilityType ServicePlanVisibilityType `json:"visibility_type"`
// Free shows whether or not the Service Plan is free of charge.
Free bool `json:"free"`
// Cost shows the cost of a paid service plan
Costs []ServicePlanCost `json:"costs"`
// ServicePlanGUID is the GUID of the service offering
ServiceOfferingGUID string `jsonry:"relationships.service_offering.data.guid"`
// SpaceGUID is the space that a plan from a space-scoped broker relates to
SpaceGUID string `jsonry:"relationships.space.data.guid"`
// MaintenanceInfoDescription is the description of the associated version
MaintenanceInfoDescription string `jsonry:"maintenance_info.description"`
// MaintenanceInfoVersion is the version of the service plan
MaintenanceInfoVersion string `jsonry:"maintenance_info.version"`
Metadata *Metadata `json:"metadata"`
}
func (p *ServicePlan) UnmarshalJSON(data []byte) error {
return jsonry.Unmarshal(data, p)
}