Skip to content

Commit

Permalink
Updated service API models for release.
Browse files Browse the repository at this point in the history
  • Loading branch information
AWS SDK for Ruby authored and Nobody committed Aug 28, 2018
1 parent 40d14fe commit 2cc78fa
Show file tree
Hide file tree
Showing 5 changed files with 847 additions and 14 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,10 @@
Unreleased Changes
------------------

* Feature - Aws::Glue - Updated the API, and documentation for AWS Glue.

* Feature - Aws::XRay - Updated the API, and documentation for AWS X-Ray.

2.11.118 (2018-08-27)
------------------

Expand Down
113 changes: 113 additions & 0 deletions aws-sdk-core/apis/glue/2017-03-31/api-2.json
Expand Up @@ -419,6 +419,22 @@
{"shape":"OperationTimeoutException"}
]
},
"DeleteResourcePolicy":{
"name":"DeleteResourcePolicy",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DeleteResourcePolicyRequest"},
"output":{"shape":"DeleteResourcePolicyResponse"},
"errors":[
{"shape":"EntityNotFoundException"},
{"shape":"InternalServiceException"},
{"shape":"OperationTimeoutException"},
{"shape":"InvalidInputException"},
{"shape":"ConditionCheckFailureException"}
]
},
"DeleteSecurityConfiguration":{
"name":"DeleteSecurityConfiguration",
"http":{
Expand Down Expand Up @@ -795,6 +811,21 @@
{"shape":"OperationTimeoutException"}
]
},
"GetResourcePolicy":{
"name":"GetResourcePolicy",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"GetResourcePolicyRequest"},
"output":{"shape":"GetResourcePolicyResponse"},
"errors":[
{"shape":"EntityNotFoundException"},
{"shape":"InternalServiceException"},
{"shape":"OperationTimeoutException"},
{"shape":"InvalidInputException"}
]
},
"GetSecurityConfiguration":{
"name":"GetSecurityConfiguration",
"http":{
Expand Down Expand Up @@ -978,6 +1009,22 @@
{"shape":"OperationTimeoutException"}
]
},
"PutResourcePolicy":{
"name":"PutResourcePolicy",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"PutResourcePolicyRequest"},
"output":{"shape":"PutResourcePolicyResponse"},
"errors":[
{"shape":"EntityNotFoundException"},
{"shape":"InternalServiceException"},
{"shape":"OperationTimeoutException"},
{"shape":"InvalidInputException"},
{"shape":"ConditionCheckFailureException"}
]
},
"ResetJobBookmark":{
"name":"ResetJobBookmark",
"http":{
Expand Down Expand Up @@ -1677,6 +1724,13 @@
"State":{"shape":"JobRunState"}
}
},
"ConditionCheckFailureException":{
"type":"structure",
"members":{
"Message":{"shape":"MessageString"}
},
"exception":true
},
"ConditionList":{
"type":"list",
"member":{"shape":"Condition"}
Expand Down Expand Up @@ -2280,6 +2334,17 @@
"members":{
}
},
"DeleteResourcePolicyRequest":{
"type":"structure",
"members":{
"PolicyHashCondition":{"shape":"HashString"}
}
},
"DeleteResourcePolicyResponse":{
"type":"structure",
"members":{
}
},
"DeleteSecurityConfigurationRequest":{
"type":"structure",
"required":["Name"],
Expand Down Expand Up @@ -2460,6 +2525,14 @@
}
},
"ExecutionTime":{"type":"integer"},
"ExistCondition":{
"type":"string",
"enum":[
"MUST_EXIST",
"NOT_EXIST",
"NONE"
]
},
"FieldType":{"type":"string"},
"FilterString":{
"type":"string",
Expand Down Expand Up @@ -2807,6 +2880,20 @@
"ScalaCode":{"shape":"ScalaCode"}
}
},
"GetResourcePolicyRequest":{
"type":"structure",
"members":{
}
},
"GetResourcePolicyResponse":{
"type":"structure",
"members":{
"PolicyInJson":{"shape":"PolicyJsonString"},
"PolicyHash":{"shape":"HashString"},
"CreateTime":{"shape":"Timestamp"},
"UpdateTime":{"shape":"Timestamp"}
}
},
"GetSecurityConfigurationRequest":{
"type":"structure",
"required":["Name"],
Expand Down Expand Up @@ -3011,6 +3098,12 @@
"min":1,
"pattern":"[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\r\\t]*"
},
"HashString":{
"type":"string",
"max":255,
"min":1,
"pattern":"[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\t]*"
},
"IdString":{
"type":"string",
"max":255,
Expand Down Expand Up @@ -3442,6 +3535,11 @@
"AvailabilityZone":{"shape":"NameString"}
}
},
"PolicyJsonString":{
"type":"string",
"max":10240,
"min":2
},
"Predecessor":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -3492,6 +3590,21 @@
"members":{
}
},
"PutResourcePolicyRequest":{
"type":"structure",
"required":["PolicyInJson"],
"members":{
"PolicyInJson":{"shape":"PolicyJsonString"},
"PolicyHashCondition":{"shape":"HashString"},
"PolicyExistsCondition":{"shape":"ExistCondition"}
}
},
"PutResourcePolicyResponse":{
"type":"structure",
"members":{
"PolicyHash":{"shape":"HashString"}
}
},
"PythonScript":{"type":"string"},
"ResetJobBookmarkRequest":{
"type":"structure",
Expand Down

0 comments on commit 2cc78fa

Please sign in to comment.