forked from pivotal-cf/brokerapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
service_broker.go
140 lines (96 loc) · 4.79 KB
/
service_broker.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
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
// Copyright (C) 2015-Present Pivotal Software, Inc. All rights reserved.
// This program and the accompanying materials are made available under
// the terms of the under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package brokerapi
import (
"github.com/pivotal-cf/brokerapi/domain"
"github.com/pivotal-cf/brokerapi/domain/apiresponses"
)
//go:generate counterfeiter -o fakes/auto_fake_service_broker.go -fake-name AutoFakeServiceBroker . ServiceBroker
//Deprecated: Use github.com/pivotal-cf/brokerapi/domain
//Each method of the ServiceBroker interface maps to an individual endpoint of the Open Service Broker API.
//
//The specification is available here: https://github.com/openservicebrokerapi/servicebroker/blob/v2.14/spec.md
//
//The OpenAPI documentation is available here: http://petstore.swagger.io/?url=https://raw.githubusercontent.com/openservicebrokerapi/servicebroker/v2.14/openapi.yaml
type ServiceBroker interface {
domain.ServiceBroker
}
//Deprecated: Use github.com/pivotal-cf/brokerapi/domain
type DetailsWithRawParameters interface {
domain.DetailsWithRawParameters
}
//Deprecated: Use github.com/pivotal-cf/brokerapi/domain
type DetailsWithRawContext interface {
domain.DetailsWithRawContext
}
//Deprecated: Use github.com/pivotal-cf/brokerapi/domain
type ProvisionDetails = domain.ProvisionDetails
//Deprecated: Use github.com/pivotal-cf/brokerapi/domain
type ProvisionedServiceSpec = domain.ProvisionedServiceSpec
//Deprecated: Use github.com/pivotal-cf/brokerapi/domain
type GetInstanceDetailsSpec = domain.GetInstanceDetailsSpec
//Deprecated: Use github.com/pivotal-cf/brokerapi/domain
type UnbindSpec = domain.UnbindSpec
//Deprecated: Use github.com/pivotal-cf/brokerapi/domain
type BindDetails = domain.BindDetails
//Deprecated: Use github.com/pivotal-cf/brokerapi/domain
type BindResource = domain.BindResource
//Deprecated: Use github.com/pivotal-cf/brokerapi/domain
type UnbindDetails = domain.UnbindDetails
//Deprecated: Use github.com/pivotal-cf/brokerapi/domain
type UpdateServiceSpec = domain.UpdateServiceSpec
//Deprecated: Use github.com/pivotal-cf/brokerapi/domain
type DeprovisionServiceSpec = domain.DeprovisionServiceSpec
//Deprecated: Use github.com/pivotal-cf/brokerapi/domain
type DeprovisionDetails = domain.DeprovisionDetails
//Deprecated: Use github.com/pivotal-cf/brokerapi/domain
type UpdateDetails = domain.UpdateDetails
//Deprecated: Use github.com/pivotal-cf/brokerapi/domain
type PreviousValues = domain.PreviousValues
//Deprecated: Use github.com/pivotal-cf/brokerapi/domain
type PollDetails = domain.PollDetails
//Deprecated: Use github.com/pivotal-cf/brokerapi/domain
type LastOperation = domain.LastOperation
//Deprecated: Use github.com/pivotal-cf/brokerapi/domain
type LastOperationState = domain.LastOperationState
//Deprecated: Use github.com/pivotal-cf/brokerapi/domain
const (
InProgress LastOperationState = "in progress"
Succeeded LastOperationState = "succeeded"
Failed LastOperationState = "failed"
)
//Deprecated: Use github.com/pivotal-cf/brokerapi/domain
type Binding = domain.Binding
//Deprecated: Use github.com/pivotal-cf/brokerapi/domain
type GetBindingSpec = domain.GetBindingSpec
//Deprecated: Use github.com/pivotal-cf/brokerapi/domain
type VolumeMount = domain.VolumeMount
//Deprecated: Use github.com/pivotal-cf/brokerapi/domain
type SharedDevice = domain.SharedDevice
//Deprecated: Use github.com/pivotal-cf/brokerapi/domain/apiresponses
var (
ErrInstanceAlreadyExists = apiresponses.ErrInstanceAlreadyExists
ErrInstanceDoesNotExist = apiresponses.ErrInstanceDoesNotExist
ErrInstanceLimitMet = apiresponses.ErrInstanceLimitMet
ErrBindingAlreadyExists = apiresponses.ErrBindingAlreadyExists
ErrBindingDoesNotExist = apiresponses.ErrBindingDoesNotExist
ErrBindingNotFound = apiresponses.ErrBindingNotFound
ErrAsyncRequired = apiresponses.ErrAsyncRequired
ErrPlanChangeNotSupported = apiresponses.ErrPlanChangeNotSupported
ErrRawParamsInvalid = apiresponses.ErrRawParamsInvalid
ErrAppGuidNotProvided = apiresponses.ErrAppGuidNotProvided
ErrPlanQuotaExceeded = apiresponses.ErrPlanQuotaExceeded
ErrServiceQuotaExceeded = apiresponses.ErrServiceQuotaExceeded
ErrConcurrentInstanceAccess = apiresponses.ErrConcurrentInstanceAccess
ErrMaintenanceInfoConflict = apiresponses.ErrMaintenanceInfoConflict
ErrMaintenanceInfoNilConflict = apiresponses.ErrMaintenanceInfoNilConflict
)