-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathservice_broker.go
More file actions
143 lines (98 loc) · 5.04 KB
/
service_broker.go
File metadata and controls
143 lines (98 loc) · 5.04 KB
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
141
142
143
// 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 (
"code.cloudfoundry.org/brokerapi/v13/domain"
"code.cloudfoundry.org/brokerapi/v13/domain/apiresponses"
)
//go:generate go run github.com/maxbrunsfeld/counterfeiter/v6 -generate
//counterfeiter:generate -o fakes/auto_fake_service_broker.go -fake-name AutoFakeServiceBroker . ServiceBroker
// Deprecated: Use code.cloudfoundry.org/brokerapi/v13/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 code.cloudfoundry.org/brokerapi/v13/domain
type DetailsWithRawParameters interface {
domain.DetailsWithRawParameters
}
// Deprecated: Use code.cloudfoundry.org/brokerapi/v13/domain
type DetailsWithRawContext interface {
domain.DetailsWithRawContext
}
// Deprecated: Use code.cloudfoundry.org/brokerapi/v13/domain
type ProvisionDetails = domain.ProvisionDetails
// Deprecated: Use code.cloudfoundry.org/brokerapi/v13/domain
type ProvisionedServiceSpec = domain.ProvisionedServiceSpec
// Deprecated: Use code.cloudfoundry.org/brokerapi/v13/domain
type GetInstanceDetailsSpec = domain.GetInstanceDetailsSpec
// Deprecated: Use code.cloudfoundry.org/brokerapi/v13/domain
type UnbindSpec = domain.UnbindSpec
// Deprecated: Use code.cloudfoundry.org/brokerapi/v13/domain
type BindDetails = domain.BindDetails
// Deprecated: Use code.cloudfoundry.org/brokerapi/v13/domain
type BindResource = domain.BindResource
// Deprecated: Use code.cloudfoundry.org/brokerapi/v13/domain
type UnbindDetails = domain.UnbindDetails
// Deprecated: Use code.cloudfoundry.org/brokerapi/v13/domain
type UpdateServiceSpec = domain.UpdateServiceSpec
// Deprecated: Use code.cloudfoundry.org/brokerapi/v13/domain
type DeprovisionServiceSpec = domain.DeprovisionServiceSpec
// Deprecated: Use code.cloudfoundry.org/brokerapi/v13/domain
type DeprovisionDetails = domain.DeprovisionDetails
// Deprecated: Use code.cloudfoundry.org/brokerapi/v13/domain
type UpdateDetails = domain.UpdateDetails
// Deprecated: Use code.cloudfoundry.org/brokerapi/v13/domain
type PreviousValues = domain.PreviousValues
// Deprecated: Use code.cloudfoundry.org/brokerapi/v13/domain
type PollDetails = domain.PollDetails
// Deprecated: Use code.cloudfoundry.org/brokerapi/v13/domain
type LastOperation = domain.LastOperation
// Deprecated: Use code.cloudfoundry.org/brokerapi/v13/domain
type LastOperationState = domain.LastOperationState
// Deprecated: Use code.cloudfoundry.org/brokerapi/v13/domain
const (
InProgress LastOperationState = "in progress"
Succeeded LastOperationState = "succeeded"
Failed LastOperationState = "failed"
)
// Deprecated: Use code.cloudfoundry.org/brokerapi/v13/domain
type Binding = domain.Binding
// Deprecated: Use code.cloudfoundry.org/brokerapi/v13/domain
type GetBindingSpec = domain.GetBindingSpec
// Deprecated: Use code.cloudfoundry.org/brokerapi/v13/domain
type VolumeMount = domain.VolumeMount
// Deprecated: Use code.cloudfoundry.org/brokerapi/v13/domain
type SharedDevice = domain.SharedDevice
// Deprecated: Use code.cloudfoundry.org/brokerapi/v13/domain/apiresponses
var (
ErrInstanceAlreadyExists = apiresponses.ErrInstanceAlreadyExists
ErrInstanceDoesNotExist = apiresponses.ErrInstanceDoesNotExist
ErrInstanceNotFound = apiresponses.ErrInstanceNotFound
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
)