You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Introduce max_service_credential_bindings_per_app_service_instance
Config property allows more than one binding per app and service
instance (default remains 1).
* Introduce strategy parameter for binding creation
Add optional strategy parameter (single | multiple) to the binding
creation API. Allow multiple bindings when strategy = "multiple" and
max_service_credential_bindings_per_app_service_instance is greater than
1.
Copy file name to clipboardExpand all lines: docs/v3/source/includes/resources/service_credential_bindings/_create.md.erb
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -116,6 +116,7 @@ Name | Type | Description
116
116
Name | Type | Description |
117
117
---- | ---- | ----------- |
118
118
**relationships.app** | [_to-one relationship_](#to-one-relationships) | The app to be bound. Required when type is `app`
119
+
**strategy** | string | Strategy for creating the service credential binding. Valid values are `single` (default) and `multiple` (experimental). Only valid when type is `app`.
119
120
**parameters** | _object_ | A JSON object that is passed to the service broker
120
121
**metadata.labels** | [_label object_](#labels) | Labels applied to the service credential binding
121
122
**metadata.annotations** | [_annotation object_](#annotations) | Annotations applied to the service credential binding
Copy file name to clipboardExpand all lines: docs/v3/source/includes/resources/service_credential_bindings/_header.md
+1-2Lines changed: 1 addition & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,9 +4,8 @@ Service credential bindings are used to make the details of the connection to a
4
4
5
5
Service credential bindings can be of type `app` or `key`.
6
6
7
-
A service credential binding is of type `app` when it is a binding between a [service instance](#service-instances) and an [application](#apps)
7
+
A service credential binding is of type `app` when it is a binding between a [service instance](#service-instances) and an [application](#apps).
8
8
Not all services support this binding, as some services deliver value to users directly without integration with an application.
9
9
Field `broker_catalog.features.bindable` from [service plan](#the-service-plan-object) of the service instance can be used to determine if it is bindable.
10
10
11
11
A service credential binding is of type `key` when it only retrieves the details of the service instance and makes them available to the developer.
0 commit comments