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
{{ message }}
This repository was archived by the owner on Jun 2, 2021. It is now read-only.
Copy file name to clipboardExpand all lines: docs/v3/source/includes/resources/service_plans/_object.md.erb
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ Name | Type | Description
18
18
**costs** | _array of [cost objects](#the-service-plan-cost)_ | The cost of the Service Plan as obtained from the Service Broker Catalog.
19
19
**created_at** | _datetime_ | The time with zone when the object was created.
20
20
**updated_at** | _datetime_ | The time with zone when the object was last updated.
21
-
**maintenance_info** | _[maintenance_info object](#the-maintenance-info-object-for-service-plans)_ | Information about the version of this service instance.
21
+
**maintenance_info** | _[maintenance_info object](#the-maintenance-info-object-for-service-plans)_ | Information about the version of this service plan.
22
22
**broker_catalog** | _[broker catalog object](#the-service-plan-broker-catalog)_ | This object contains information obtained from the Service Broker Catalog.
23
23
**schemas** | _[schemas object](#the-service-plan-schemas)_ | Schema definitions for Service Instances and Service Bindings for the Service Plan.
24
24
**relationships.service_offering** | [_to-one relationship_](#to-one-relationships) | The Service Offering that this Service Plan relates to.
Copy file name to clipboardExpand all lines: docs/v3/source/includes/upgrade_guide/upgrade_guide.md
+41-6Lines changed: 41 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -438,6 +438,15 @@ In V2, the endpoint to apply a security group to a space only includes the lifec
438
438
439
439
In V3, the endpoint to apply a security group to a space includes the lifecycle. For example to unbind a security group from the running lifecycle, one would `DELETE /v3/security_groups/:guid/relationships/running_spaces/:space_guid`.
440
440
441
+
### Service Brokers in V3
442
+
443
+
#### Create, Update and Delete
444
+
445
+
446
+
In V3 these endpoints are now asynchronous. See [Asynchronous operations](#asynchronous-operations) and [Service Broker Jobs](#service-broker-jobs) for more information.
447
+
448
+
Read more about the [service broker resource](#service-brokers).
449
+
441
450
### Service Offerings in V3
442
451
443
452
Services endpoints are now replaced by [Service Offerings endpoints](#service-offerings) at `/v3/service_offerings`
@@ -451,32 +460,58 @@ Some services related endpoints nested in other resources have been translated t
451
460
`GET /v2/services/:guid/service_plans` is now a filter on the `Service Plan` resource: `GET /v3/service_plans?service_offering_guids=guid`. This link can also be found in the object's `links` section.
452
461
453
462
454
-
In V2, `service_broker_name and service_broker_guid` where top level attributes in the response. V3 returns this values only if requested using the [`fields` syntax](#fields). Refer to [Service Offerings endpoints](#service-offerings) for further information. A link to the `Service Broker` resource is included in the object's `relationships` section.
463
+
In V2, `service_broker_name` was returned in the response. V3 returns this value only if requested using the [`fields` syntax](#fields). Refer to [Service Offerings endpoints](#service-offerings) for further information. A link to the `Service Broker` resource is included in the object's `links` section.
455
464
456
465
The structure of the Service Offering object as well as some attribute names have changed from V2 to V3:
Read more about the [service offering resource](#service-offerings).
471
481
472
-
### Service Brokers in V3
482
+
### Service Plans in V3
473
483
474
-
#### Create, Update and Delete
484
+
Some service plans related endpoints nested in other resources have been translated to filters on `service_plans`, with the advantage that filters accept multiple values and can be combined.
In V3 these endpoints are now asynchronous. See [Asynchronous operations](#asynchronous-operations) and [Service Broker Jobs](#service-broker-jobs) for more information.
488
+
Changing plan visibility to `Public` is not a PUT operation anymore. To change visibility use the [Service Plan Visibility resource](#service-plan-visibility)
489
+
490
+
The structure of the Service Plan object as well as some attribute names have changed from V2 to V3:
491
+
492
+
|**V2**|**V3**|
493
+
|---|---|
494
+
active | available
495
+
bindable | broker_catalog.features.bindable
496
+
extra | broker_catalog.metadata
497
+
public | `visibility_type == 'public'` (see [Visibility types](#list-of-visibility-types))
0 commit comments