Skip to content

Commit

Permalink
Updated API models and rebuilt service gems.
Browse files Browse the repository at this point in the history
  • Loading branch information
AWS SDK for Ruby authored and Nobody committed Apr 21, 2022
1 parent 7859eee commit 0ac3d0a
Show file tree
Hide file tree
Showing 69 changed files with 5,623 additions and 465 deletions.
18 changes: 9 additions & 9 deletions apis/elasticache/2015-02-02/docs-2.json

Large diffs are not rendered by default.

180 changes: 180 additions & 0 deletions apis/glue/2017-03-31/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,20 @@
{"shape":"OperationTimeoutException"}
]
},
"BatchGetCustomEntityTypes":{
"name":"BatchGetCustomEntityTypes",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"BatchGetCustomEntityTypesRequest"},
"output":{"shape":"BatchGetCustomEntityTypesResponse"},
"errors":[
{"shape":"InvalidInputException"},
{"shape":"InternalServiceException"},
{"shape":"OperationTimeoutException"}
]
},
"BatchGetDevEndpoints":{
"name":"BatchGetDevEndpoints",
"http":{
Expand Down Expand Up @@ -328,6 +342,24 @@
{"shape":"ResourceNumberLimitExceededException"}
]
},
"CreateCustomEntityType":{
"name":"CreateCustomEntityType",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"CreateCustomEntityTypeRequest"},
"output":{"shape":"CreateCustomEntityTypeResponse"},
"errors":[
{"shape":"AccessDeniedException"},
{"shape":"AlreadyExistsException"},
{"shape":"IdempotentParameterMismatchException"},
{"shape":"InternalServiceException"},
{"shape":"InvalidInputException"},
{"shape":"OperationTimeoutException"},
{"shape":"ResourceNumberLimitExceededException"}
]
},
"CreateDatabase":{
"name":"CreateDatabase",
"http":{
Expand Down Expand Up @@ -682,6 +714,22 @@
{"shape":"OperationTimeoutException"}
]
},
"DeleteCustomEntityType":{
"name":"DeleteCustomEntityType",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DeleteCustomEntityTypeRequest"},
"output":{"shape":"DeleteCustomEntityTypeResponse"},
"errors":[
{"shape":"EntityNotFoundException"},
{"shape":"AccessDeniedException"},
{"shape":"InternalServiceException"},
{"shape":"InvalidInputException"},
{"shape":"OperationTimeoutException"}
]
},
"DeleteDatabase":{
"name":"DeleteDatabase",
"http":{
Expand Down Expand Up @@ -1125,6 +1173,22 @@
{"shape":"OperationTimeoutException"}
]
},
"GetCustomEntityType":{
"name":"GetCustomEntityType",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"GetCustomEntityTypeRequest"},
"output":{"shape":"GetCustomEntityTypeResponse"},
"errors":[
{"shape":"EntityNotFoundException"},
{"shape":"AccessDeniedException"},
{"shape":"InternalServiceException"},
{"shape":"InvalidInputException"},
{"shape":"OperationTimeoutException"}
]
},
"GetDataCatalogEncryptionSettings":{
"name":"GetDataCatalogEncryptionSettings",
"http":{
Expand Down Expand Up @@ -1889,6 +1953,20 @@
{"shape":"OperationTimeoutException"}
]
},
"ListCustomEntityTypes":{
"name":"ListCustomEntityTypes",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"ListCustomEntityTypesRequest"},
"output":{"shape":"ListCustomEntityTypesResponse"},
"errors":[
{"shape":"InvalidInputException"},
{"shape":"OperationTimeoutException"},
{"shape":"InternalServiceException"}
]
},
"ListDevEndpoints":{
"name":"ListDevEndpoints",
"http":{
Expand Down Expand Up @@ -3008,6 +3086,20 @@
"CrawlersNotFound":{"shape":"CrawlerNameList"}
}
},
"BatchGetCustomEntityTypesRequest":{
"type":"structure",
"required":["Names"],
"members":{
"Names":{"shape":"CustomEntityTypeNames"}
}
},
"BatchGetCustomEntityTypesResponse":{
"type":"structure",
"members":{
"CustomEntityTypes":{"shape":"CustomEntityTypes"},
"CustomEntityTypesNotFound":{"shape":"CustomEntityTypeNames"}
}
},
"BatchGetDevEndpointsRequest":{
"type":"structure",
"required":["DevEndpointNames"],
Expand Down Expand Up @@ -3818,6 +3910,12 @@
"Connections":{"shape":"OrchestrationStringList"}
}
},
"ContextWords":{
"type":"list",
"member":{"shape":"NameString"},
"max":20,
"min":1
},
"Crawl":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -4044,6 +4142,24 @@
"AllowSingleColumn":{"shape":"NullableBoolean"}
}
},
"CreateCustomEntityTypeRequest":{
"type":"structure",
"required":[
"Name",
"RegexString"
],
"members":{
"Name":{"shape":"NameString"},
"RegexString":{"shape":"NameString"},
"ContextWords":{"shape":"ContextWords"}
}
},
"CreateCustomEntityTypeResponse":{
"type":"structure",
"members":{
"Name":{"shape":"NameString"}
}
},
"CreateDatabaseRequest":{
"type":"structure",
"required":["DatabaseInput"],
Expand Down Expand Up @@ -4487,6 +4603,28 @@
"min":1,
"pattern":"[^\\r\\n]"
},
"CustomEntityType":{
"type":"structure",
"required":[
"Name",
"RegexString"
],
"members":{
"Name":{"shape":"NameString"},
"RegexString":{"shape":"NameString"},
"ContextWords":{"shape":"ContextWords"}
}
},
"CustomEntityTypeNames":{
"type":"list",
"member":{"shape":"NameString"},
"max":50,
"min":1
},
"CustomEntityTypes":{
"type":"list",
"member":{"shape":"CustomEntityType"}
},
"CustomPatterns":{
"type":"string",
"max":16000,
Expand Down Expand Up @@ -4706,6 +4844,19 @@
"members":{
}
},
"DeleteCustomEntityTypeRequest":{
"type":"structure",
"required":["Name"],
"members":{
"Name":{"shape":"NameString"}
}
},
"DeleteCustomEntityTypeResponse":{
"type":"structure",
"members":{
"Name":{"shape":"NameString"}
}
},
"DeleteDatabaseRequest":{
"type":"structure",
"required":["Name"],
Expand Down Expand Up @@ -5438,6 +5589,21 @@
"NextToken":{"shape":"Token"}
}
},
"GetCustomEntityTypeRequest":{
"type":"structure",
"required":["Name"],
"members":{
"Name":{"shape":"NameString"}
}
},
"GetCustomEntityTypeResponse":{
"type":"structure",
"members":{
"Name":{"shape":"NameString"},
"RegexString":{"shape":"NameString"},
"ContextWords":{"shape":"ContextWords"}
}
},
"GetDataCatalogEncryptionSettingsRequest":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -6750,6 +6916,20 @@
"NextToken":{"shape":"Token"}
}
},
"ListCustomEntityTypesRequest":{
"type":"structure",
"members":{
"NextToken":{"shape":"PaginationToken"},
"MaxResults":{"shape":"PageSize"}
}
},
"ListCustomEntityTypesResponse":{
"type":"structure",
"members":{
"CustomEntityTypes":{"shape":"CustomEntityTypes"},
"NextToken":{"shape":"PaginationToken"}
}
},
"ListDevEndpointsRequest":{
"type":"structure",
"members":{
Expand Down
Loading

0 comments on commit 0ac3d0a

Please sign in to comment.