Skip to content

Commit

Permalink
Auto generated swagger spec/docs/protobuf/conversions
Browse files Browse the repository at this point in the history
  • Loading branch information
Ravi Sankar Penta committed Feb 22, 2017
1 parent 894c582 commit 999de59
Show file tree
Hide file tree
Showing 21 changed files with 1,119 additions and 1,068 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 5 additions & 4 deletions api/swagger-spec/oapi-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -26533,13 +26533,14 @@
"v1.EgressNetworkPolicyPeer": {
"id": "v1.EgressNetworkPolicyPeer",
"description": "EgressNetworkPolicyPeer specifies a target to apply egress network policy to",
"required": [
"cidrSelector"
],
"properties": {
"cidrSelector": {
"type": "string",
"description": "cidrSelector is the CIDR range to allow/deny traffic to"
"description": "cidrSelector is the CIDR range to allow/deny traffic to. If this is set, dnsName must be unset"
},
"dnsName": {
"type": "string",
"description": "dnsName is the domain name to allow/deny traffic to. If this is set, cidrSelector must be unset"
}
}
},
Expand Down
9 changes: 7 additions & 2 deletions api/swagger-spec/openshift-openapi-spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -49998,11 +49998,16 @@
"v1.EgressNetworkPolicyPeer": {
"description": "EgressNetworkPolicyPeer specifies a target to apply egress network policy to",
"required": [
"cidrSelector"
"cidrSelector",
"dnsName"
],
"properties": {
"cidrSelector": {
"description": "cidrSelector is the CIDR range to allow/deny traffic to",
"description": "cidrSelector is the CIDR range to allow/deny traffic to. If this is set, dnsName must be unset",
"type": "string"
},
"dnsName": {
"description": "dnsName is the domain name to allow/deny traffic to. If this is set, cidrSelector must be unset",
"type": "string"
}
}
Expand Down
259 changes: 129 additions & 130 deletions pkg/authorization/api/v1/generated.pb.go

Large diffs are not rendered by default.

417 changes: 208 additions & 209 deletions pkg/build/api/v1/generated.pb.go

Large diffs are not rendered by default.

316 changes: 157 additions & 159 deletions pkg/deploy/api/v1/generated.pb.go

Large diffs are not rendered by default.

277 changes: 138 additions & 139 deletions pkg/image/api/v1/generated.pb.go

Large diffs are not rendered by default.

146 changes: 73 additions & 73 deletions pkg/oauth/api/v1/generated.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 8 additions & 2 deletions pkg/openapi/zz_generated.openapi.go
Original file line number Diff line number Diff line change
Expand Up @@ -11644,13 +11644,19 @@ var OpenAPIDefinitions *common.OpenAPIDefinitions = &common.OpenAPIDefinitions{
Properties: map[string]spec.Schema{
"cidrSelector": {
SchemaProps: spec.SchemaProps{
Description: "cidrSelector is the CIDR range to allow/deny traffic to",
Description: "cidrSelector is the CIDR range to allow/deny traffic to. If this is set, dnsName must be unset",
Type: []string{"string"},
Format: "",
},
},
"dnsName": {
SchemaProps: spec.SchemaProps{
Description: "dnsName is the domain name to allow/deny traffic to. If this is set, cidrSelector must be unset",
Type: []string{"string"},
Format: "",
},
},
},
Required: []string{"cidrSelector"},
},
},
Dependencies: []string{},
Expand Down
Loading

0 comments on commit 999de59

Please sign in to comment.