Skip to content
This repository has been archived by the owner on Oct 17, 2024. It is now read-only.

feat(sam): serverless api model type fix #515

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
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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