Skip to content

Commit

Permalink
Release v1.44.168 (2022-12-27) (#4673)
Browse files Browse the repository at this point in the history
Release v1.44.168 (2022-12-27)
===

### Service Client Updates
* `service/memorydb`: Updates service API, documentation, and paginators
* `service/transfer`: Updates service API
  * Add additional operations to throw ThrottlingExceptions
  • Loading branch information
aws-sdk-go-automation committed Dec 27, 2022
1 parent 811c54e commit 5ce492c
Show file tree
Hide file tree
Showing 14 changed files with 2,800 additions and 411 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,11 @@
Release v1.44.168 (2022-12-27)
===

### Service Client Updates
* `service/memorydb`: Updates service API, documentation, and paginators
* `service/transfer`: Updates service API
* Add additional operations to throw ThrottlingExceptions

Release v1.44.167 (2022-12-23)
===

Expand Down
2 changes: 1 addition & 1 deletion aws/version.go
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.44.167"
const SDKVersion = "1.44.168"
171 changes: 171 additions & 0 deletions models/apis/memorydb/2021-01-01/api-2.json
Expand Up @@ -340,6 +340,36 @@
{"shape":"InvalidParameterCombinationException"}
]
},
"DescribeReservedNodes":{
"name":"DescribeReservedNodes",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DescribeReservedNodesRequest"},
"output":{"shape":"DescribeReservedNodesResponse"},
"errors":[
{"shape":"ReservedNodeNotFoundFault"},
{"shape":"ServiceLinkedRoleNotFoundFault"},
{"shape":"InvalidParameterValueException"},
{"shape":"InvalidParameterCombinationException"}
]
},
"DescribeReservedNodesOfferings":{
"name":"DescribeReservedNodesOfferings",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DescribeReservedNodesOfferingsRequest"},
"output":{"shape":"DescribeReservedNodesOfferingsResponse"},
"errors":[
{"shape":"ReservedNodesOfferingNotFoundFault"},
{"shape":"ServiceLinkedRoleNotFoundFault"},
{"shape":"InvalidParameterValueException"},
{"shape":"InvalidParameterCombinationException"}
]
},
"DescribeServiceUpdates":{
"name":"DescribeServiceUpdates",
"http":{
Expand Down Expand Up @@ -448,6 +478,24 @@
{"shape":"ACLNotFoundFault"}
]
},
"PurchaseReservedNodesOffering":{
"name":"PurchaseReservedNodesOffering",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"PurchaseReservedNodesOfferingRequest"},
"output":{"shape":"PurchaseReservedNodesOfferingResponse"},
"errors":[
{"shape":"ReservedNodesOfferingNotFoundFault"},
{"shape":"ReservedNodeAlreadyExistsFault"},
{"shape":"ReservedNodeQuotaExceededFault"},
{"shape":"ServiceLinkedRoleNotFoundFault"},
{"shape":"TagQuotaPerResourceExceeded"},
{"shape":"InvalidParameterValueException"},
{"shape":"InvalidParameterCombinationException"}
]
},
"ResetParameterGroup":{
"name":"ResetParameterGroup",
"http":{
Expand Down Expand Up @@ -1148,6 +1196,43 @@
"Parameters":{"shape":"ParametersList"}
}
},
"DescribeReservedNodesOfferingsRequest":{
"type":"structure",
"members":{
"ReservedNodesOfferingId":{"shape":"String"},
"NodeType":{"shape":"String"},
"Duration":{"shape":"String"},
"OfferingType":{"shape":"String"},
"MaxResults":{"shape":"IntegerOptional"},
"NextToken":{"shape":"String"}
}
},
"DescribeReservedNodesOfferingsResponse":{
"type":"structure",
"members":{
"NextToken":{"shape":"String"},
"ReservedNodesOfferings":{"shape":"ReservedNodesOfferingList"}
}
},
"DescribeReservedNodesRequest":{
"type":"structure",
"members":{
"ReservationId":{"shape":"String"},
"ReservedNodesOfferingId":{"shape":"String"},
"NodeType":{"shape":"String"},
"Duration":{"shape":"String"},
"OfferingType":{"shape":"String"},
"MaxResults":{"shape":"IntegerOptional"},
"NextToken":{"shape":"String"}
}
},
"DescribeReservedNodesResponse":{
"type":"structure",
"members":{
"NextToken":{"shape":"String"},
"ReservedNodes":{"shape":"ReservedNodeList"}
}
},
"DescribeServiceUpdatesRequest":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -1540,12 +1625,98 @@
"type":"list",
"member":{"shape":"PendingModifiedServiceUpdate"}
},
"PurchaseReservedNodesOfferingRequest":{
"type":"structure",
"required":["ReservedNodesOfferingId"],
"members":{
"ReservedNodesOfferingId":{"shape":"String"},
"ReservationId":{"shape":"String"},
"NodeCount":{"shape":"IntegerOptional"},
"Tags":{"shape":"TagList"}
}
},
"PurchaseReservedNodesOfferingResponse":{
"type":"structure",
"members":{
"ReservedNode":{"shape":"ReservedNode"}
}
},
"RecurringCharge":{
"type":"structure",
"members":{
"RecurringChargeAmount":{"shape":"Double"},
"RecurringChargeFrequency":{"shape":"String"}
}
},
"RecurringChargeList":{
"type":"list",
"member":{"shape":"RecurringCharge"}
},
"ReplicaConfigurationRequest":{
"type":"structure",
"members":{
"ReplicaCount":{"shape":"Integer"}
}
},
"ReservedNode":{
"type":"structure",
"members":{
"ReservationId":{"shape":"String"},
"ReservedNodesOfferingId":{"shape":"String"},
"NodeType":{"shape":"String"},
"StartTime":{"shape":"TStamp"},
"Duration":{"shape":"Integer"},
"FixedPrice":{"shape":"Double"},
"NodeCount":{"shape":"Integer"},
"OfferingType":{"shape":"String"},
"State":{"shape":"String"},
"RecurringCharges":{"shape":"RecurringChargeList"},
"ARN":{"shape":"String"}
}
},
"ReservedNodeAlreadyExistsFault":{
"type":"structure",
"members":{
},
"exception":true
},
"ReservedNodeList":{
"type":"list",
"member":{"shape":"ReservedNode"}
},
"ReservedNodeNotFoundFault":{
"type":"structure",
"members":{
},
"exception":true
},
"ReservedNodeQuotaExceededFault":{
"type":"structure",
"members":{
},
"exception":true
},
"ReservedNodesOffering":{
"type":"structure",
"members":{
"ReservedNodesOfferingId":{"shape":"String"},
"NodeType":{"shape":"String"},
"Duration":{"shape":"Integer"},
"FixedPrice":{"shape":"Double"},
"OfferingType":{"shape":"String"},
"RecurringCharges":{"shape":"RecurringChargeList"}
}
},
"ReservedNodesOfferingList":{
"type":"list",
"member":{"shape":"ReservedNodesOffering"}
},
"ReservedNodesOfferingNotFoundFault":{
"type":"structure",
"members":{
},
"exception":true
},
"ResetParameterGroupRequest":{
"type":"structure",
"required":["ParameterGroupName"],
Expand Down

0 comments on commit 5ce492c

Please sign in to comment.