Update CHANGELOG.md for v1.4.0.

This commit is contained in:
Phillip Wittrock
2016-09-26 11:48:00 -07:00
parent 19a2a10354
commit 0e22d072a3
2 changed files with 120 additions and 44 deletions

View File

@@ -5142,6 +5142,23 @@ var OpenAPIDefinitions *common.OpenAPIDefinitions = &common.OpenAPIDefinitions{
Dependencies: []string{
"runtime.Object"},
},
"rbac.PolicyRuleBuilder": {
Schema: spec.Schema{
SchemaProps: spec.SchemaProps{
Description: "PolicyRuleBuilder let's us attach methods. A no-no for API types. We use it to construct rules in code. It's more compact than trying to write them out in a literal and allows us to perform some basic checking during construction",
Properties: map[string]spec.Schema{
"PolicyRule": {
SchemaProps: spec.SchemaProps{
Ref: spec.MustCreateRef("#/definitions/rbac.PolicyRule"),
},
},
},
Required: []string{"PolicyRule"},
},
},
Dependencies: []string{
"rbac.PolicyRule"},
},
"rbac.Role": {
Schema: spec.Schema{
SchemaProps: spec.SchemaProps{