This project provides both a client and a server .NET library for the Open Service Broker API specification. This specification allows developers, ISVs, and SaaS vendors a single, simple, and elegant way to deliver services to applications running within cloud native platforms such as Cloud Foundry, OpenShift, and Kubernetes.
The Client Library allows you to call Service Brokers that implement the API using idiomatic C# interfaces and type-safe DTOs.
The Server Library implements the API for you using ASP.NET Core. You simply need to provide implementations for a few interfaces, shielded from the HTTP-related details.
Add the NuGet package OpenServiceBroker.Client
to your project. You can then create an instance of the client like this:
var client = new OpenServiceBrokerClient(new Uri("http://example.com/"));
All operations that result in HTTP request are async
. Non-successful HTTP status codes are mapped to domain-specific exception types (BrokerException
and derived). Refer to the libraries XML documentation for details on which exceptions to expect on which invocations.
The Open Service Broker API specification allows for both synchronous/blocking and asynchronous/incomplete/deferred operations. To avoid confusion with the C# language concept of async
this library uses the terms "blocking" and "deferred" to describe these API features.
Instances of OpenServiceBrokerClient
have three properties that expose the same functionality in different ways:
.ServiceInstancesBlocking
allows you to request blocking responses from the server. However, you may encounterAsyncRequiredException
if the server does not support blocking operations..ServiceInstancesDeferred
allows you to request deferred responses from the server. However, you have to manually handle waiting/polling for the completion of operations..ServiceInstancesPolling
combines the advantages of both. It requests deferred responses from the server and transparently handles the waiting/polling for you. It is the recommended option for most use-cases.
Read the catalog:
var result = await client.Catalog.ReadAsync();
Provision a service instance:
var result = await client.ServiceInstancesPolling["123"].ProvisionAsync(new ServiceInstanceProvisionRequest
{
ServiceId = "abc",
PlanId = "xyz",
Context = new JObject
{
{"platform", "myplatform"}
},
Parameters = new JObject
{
{"some_option", "some value"}
}
});
Fetch a service instance:
var result = await client.ServiceInstancesPolling["123"].FetchAsync();
Update a service instance:
var result = await client.ServiceInstancesPolling["123"].UpdateAsync(new ServiceInstanceUpdateRequest
{
ServiceId = "abc",
PlanId = "xyz",
Context = new JObject
{
{"platform", "myplatform"}
},
Parameters = new JObject
{
{"some_option", "some value"}
}
});
Deprovision a service instance:
await client.ServiceInstancesPolling["123"].DeprovisionAsync(serviceId: "abc", planId: "xyz");
Create a service binding:
var result = await client.ServiceInstancesPolling["123"].ServiceBindings["456"].ProvisionAsync(new ServiceBindingRequest
{
ServiceId = "abc",
PlanId = "xyz",
BindResource = new ServiceBindingResourceObject
{
AppGuid = "e490c9df-6627-4699-8db8-55edc2a88e58"
},
Context = new JObject
{
{"platform", "myplatform"}
},
Parameters = new JObject
{
{"some_option", "some value"}
}
});
Fetch a service binding:
var result = await client.ServiceInstancesPolling["123"].ServiceBindings["456"].FetchAsync();
Delete a service binding:
await client.ServiceInstancesPolling["123"].ServiceBindings["456"].UnbindAsync(serviceId: "abc", planId: "xyz");
The Client Library specifies the API version it expects by setting the X-Broker-API-Version
header for all requests (as defined in the specification).
Currently the Client Library supports the 2.14
feature set but defaults to setting the version header to 2.13
for greater compatibility with older brokers. If the broker you are calling expects a different version and you are sure your request is compliant with that version of the specification you can override this:
client.SetApiVersion(new ApiVersion(2, 14));
Set up a regular ASP.NET Core 2.0+ project and add the NuGet package OpenServiceBroker.Server
. Then implement the following interfaces:
ICatalogService
- either
IServiceInstanceBlocking
orIServiceInstanceDeferred
or both - either
IServiceBindingBlocking
orIServiceBindingDeferred
or both
Register your implementations in the IServiceCollection
for dependency injection and finally call the .AddOpenServiceBroker()
extension method.
The Server Library inspects the X-Broker-API-Version
header for all requests (as defined in the specification). Currently it accepts all versions from 2.0
to 2.14
.
Register your interface implementations like this:
services.AddTransient<ICatalogService, MyCatalogService>()
.AddTransient<IServiceInstanceBlocking, MyServiceInstanceBlocking>()
.AddTransient<IServiceInstanceDeferred, MyServiceInstanceDeferred>()
.AddTransient<IServiceBindingBlocking, MyServiceBindingBlocking>()
.AddTransient<IServiceBindingDeferred, MyServiceBindingDeferred>()
.AddOpenServiceBroker();
The blog post Implementing a Service Broker in .NET walks you through creating a .NET Open Service Broker and testing it with Pivotal Cloud Foundry.