Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding documentation for service plan schemas. #890

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion docs/v2/events/list_service_plan_create_events.html
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,16 @@ <h4>Body</h4>
"unique_id": "guid",
"public": true,
"active": true,
"bindable": true
"bindable": true,
"schemas": {
"service_instance": {
"create": {},
"update": {}
},
"service_binding": {
"create": {}
}
}
},
"space_guid": "",
"organization_guid": ""
Expand Down
11 changes: 10 additions & 1 deletion docs/v2/service_plans/list_all_service_plans.html
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,16 @@ <h4>Body</h4>
"active": true,
"bindable": true,
"service_url": "/v2/services/1ccab853-87c9-45a6-bf99-603032d17fe5",
"service_instances_url": "/v2/service_plans/6fecf53b-7553-4cb3-b97e-930f9c4e3385/service_instances"
"service_instances_url": "/v2/service_plans/6fecf53b-7553-4cb3-b97e-930f9c4e3385/service_instances",
"schemas": {
"service_instance": {
"create": {},
"update": {}
},
"service_binding": {
"create": {}
}
}
}
}
]
Expand Down
11 changes: 10 additions & 1 deletion docs/v2/service_plans/retrieve_a_particular_service_plan.html
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,16 @@ <h4>Body</h4>
"active": true,
"bindable": true,
"service_url": "/v2/services/a00cacc0-0ca6-422e-91d3-6b22bcd33450",
"service_instances_url": "/v2/service_plans/775d0046-7505-40a4-bfad-ca472485e332/service_instances"
"service_instances_url": "/v2/service_plans/775d0046-7505-40a4-bfad-ca472485e332/service_instances",
"schemas": {
"service_instance": {
"create": {},
"update": {}
},
"service_binding": {
"create": {}
}
}
}
}</pre>

Expand Down
14 changes: 11 additions & 3 deletions docs/v2/service_plans/updating_a_service_plan.html
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,7 @@ <h4>Body</h4>
<td class=" ">
<span class="name">public</span>
</td>
<td>
<span class="description">A boolean describing that the plan is visible to the all users</span>
<td> <span class="description">A boolean describing that the plan is visible to the all users</span>
</td>
<td>
<span class="default">true</span>
Expand Down Expand Up @@ -172,7 +171,16 @@ <h4>Body</h4>
"active": true,
"bindable": true,
"service_url": "/v2/services/518cf8f5-9002-4c63-aab1-6ad2737444b1",
"service_instances_url": "/v2/service_plans/078cb2c1-e036-4dca-a3b7-ad7f3f36f9cc/service_instances"
"service_instances_url": "/v2/service_plans/078cb2c1-e036-4dca-a3b7-ad7f3f36f9cc/service_instances",
"schemas": {
"service_instance": {
"create": {},
"update": {}
},
"service_binding": {
"create": {}
}
}
}
}</pre>

Expand Down
11 changes: 10 additions & 1 deletion docs/v2/services/list_all_service_plans_for_the_service.html
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,16 @@ <h4>Body</h4>
"public": true,
"active": true,
"service_url": "/v2/services/66039cd9-3d8b-46b3-8d70-62eb197b7a39",
"service_instances_url": "/v2/service_plans/377cf4c4-3987-4fdb-aa65-1104cec440d6/service_instances"
"service_instances_url": "/v2/service_plans/377cf4c4-3987-4fdb-aa65-1104cec440d6/service_instances",
"schemas": {
"service_instance": {
"create": {},
"update": {}
},
"service_binding": {
"create": {}
}
}
}
}
]
Expand Down