Skip to content

Commit

Permalink
Merge: Add instances_retrievable/bindings_retrievable catalog fields …
Browse files Browse the repository at this point in the history
…added in v2.14

Merge branch 'drnic-retrievable'

Co-authored-by: Jack Newberry <[email protected]>
  • Loading branch information
Kieron Browne and jacknewberry committed Nov 27, 2018
2 parents 4048f6d + 4925f3b commit bfda5bd
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions catalog.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,18 @@ import (
)

type Service struct {
ID string `json:"id"`
Name string `json:"name"`
Description string `json:"description"`
Bindable bool `json:"bindable"`
Tags []string `json:"tags,omitempty"`
PlanUpdatable bool `json:"plan_updateable"`
Plans []ServicePlan `json:"plans"`
Requires []RequiredPermission `json:"requires,omitempty"`
Metadata *ServiceMetadata `json:"metadata,omitempty"`
DashboardClient *ServiceDashboardClient `json:"dashboard_client,omitempty"`
ID string `json:"id"`
Name string `json:"name"`
Description string `json:"description"`
Bindable bool `json:"bindable"`
InstancesRetrievable bool `json:"instances_retrievable,omitempty"`
BindingsRetrievable bool `json:"bindings_retrievable,omitempty"`
Tags []string `json:"tags,omitempty"`
PlanUpdatable bool `json:"plan_updateable"`
Plans []ServicePlan `json:"plans"`
Requires []RequiredPermission `json:"requires,omitempty"`
Metadata *ServiceMetadata `json:"metadata,omitempty"`
DashboardClient *ServiceDashboardClient `json:"dashboard_client,omitempty"`
}

type ServiceDashboardClient struct {
Expand Down

0 comments on commit bfda5bd

Please sign in to comment.