Skip to content

Commit

Permalink
feat(sam): serverless api model type fix (awslabs#515)
Browse files Browse the repository at this point in the history
Co-authored-by: Rúben Fonseca <fonseka@gmail.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
3 people committed Feb 1, 2023
1 parent 5559a7b commit 43e87d9
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion cloudformation/global/api.go

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

2 changes: 1 addition & 1 deletion cloudformation/serverless/aws-serverless-api.go

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

2 changes: 1 addition & 1 deletion generate/sam-2016-10-31.json
Expand Up @@ -402,7 +402,7 @@
"Documentation": "https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/sam-resource-api.html#sam-api-models",
"Required": false,
"Type": "Map",
"PrimitiveItemType": "String",
"PrimitiveItemType": "Map",
"UpdateType": "Immutable"
},
"Tags": {
Expand Down
4 changes: 2 additions & 2 deletions schema/sam.go
Expand Up @@ -144572,7 +144572,7 @@ var SamSchema = `{
"additionalProperties": true,
"patternProperties": {
"^[a-zA-Z0-9]+$": {
"type": "string"
"type": "object"
}
},
"type": "object"
Expand Down Expand Up @@ -157367,7 +157367,7 @@ var SamSchema = `{
"additionalProperties": true,
"patternProperties": {
"^[a-zA-Z0-9]+$": {
"type": "string"
"type": "object"
}
},
"type": "object"
Expand Down
4 changes: 2 additions & 2 deletions schema/sam.schema.json
Expand Up @@ -144567,7 +144567,7 @@
"additionalProperties": true,
"patternProperties": {
"^[a-zA-Z0-9]+$": {
"type": "string"
"type": "object"
}
},
"type": "object"
Expand Down Expand Up @@ -157362,7 +157362,7 @@
"additionalProperties": true,
"patternProperties": {
"^[a-zA-Z0-9]+$": {
"type": "string"
"type": "object"
}
},
"type": "object"
Expand Down

0 comments on commit 43e87d9

Please sign in to comment.