Skip to content

Commit

Permalink
Merge pull request #627 from jhernand/update_to_model_0_0_191
Browse files Browse the repository at this point in the history
Update to model 0.0.191
  • Loading branch information
jhernand authored Apr 11, 2022
2 parents 22572ec + 77f4a82 commit 8539617
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
export CGO_ENABLED=0

# Details of the model to use:
model_version:=v0.0.190
model_version:=v0.0.191
model_url:=https://github.com/openshift-online/ocm-api-model.git

# Details of the metamodel to use:
Expand Down
10 changes: 5 additions & 5 deletions openapi/service_logs/v1/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -403,11 +403,11 @@
"Severity": {
"type": "string",
"enum": [
"debug",
"error",
"fatal",
"info",
"warning"
"Debug",
"Error",
"Fatal",
"Info",
"Warning"
]
},
"Error": {
Expand Down
10 changes: 5 additions & 5 deletions servicelogs/v1/openapi.go
Original file line number Diff line number Diff line change
Expand Up @@ -856,12 +856,12 @@ var OpenAPI = []byte{
0x74, 0x79, 0x22, 0x3a, 0x20, 0x7b, 0xa, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22,
0x74, 0x79, 0x70, 0x65, 0x22, 0x3a, 0x20, 0x22, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x22, 0x2c,
0xa, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x65, 0x6e, 0x75, 0x6d, 0x22, 0x3a,
0x20, 0x5b, 0xa, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x64, 0x65,
0x20, 0x5b, 0xa, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x44, 0x65,
0x62, 0x75, 0x67, 0x22, 0x2c, 0xa, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x22, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x22, 0x2c, 0xa, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x22, 0x66, 0x61, 0x74, 0x61, 0x6c, 0x22, 0x2c, 0xa, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x69, 0x6e, 0x66, 0x6f, 0x22, 0x2c, 0xa, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x77, 0x61, 0x72, 0x6e, 0x69, 0x6e, 0x67,
0x22, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x22, 0x2c, 0xa, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x22, 0x46, 0x61, 0x74, 0x61, 0x6c, 0x22, 0x2c, 0xa, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x2c, 0xa, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x57, 0x61, 0x72, 0x6e, 0x69, 0x6e, 0x67,
0x22, 0xa, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x5d, 0xa, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x7d, 0x2c, 0xa, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x45, 0x72, 0x72, 0x6f,
0x72, 0x22, 0x3a, 0x20, 0x7b, 0xa, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x74,
Expand Down
10 changes: 5 additions & 5 deletions servicelogs/v1/severity_type.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ type Severity string

const (
//
SeverityDebug Severity = "debug"
SeverityDebug Severity = "Debug"
//
SeverityError Severity = "error"
SeverityError Severity = "Error"
//
SeverityFatal Severity = "fatal"
SeverityFatal Severity = "Fatal"
//
SeverityInfo Severity = "info"
SeverityInfo Severity = "Info"
//
SeverityWarning Severity = "warning"
SeverityWarning Severity = "Warning"
)

0 comments on commit 8539617

Please sign in to comment.