Skip to content

Commit

Permalink
Release v1.44.212 (2023-03-01) (#4743)
Browse files Browse the repository at this point in the history
Release v1.44.212 (2023-03-01)
===

### Service Client Updates
* `service/pricing`: Updates service API, documentation, and paginators
* `service/s3outposts`: Updates service API, documentation, and paginators
  • Loading branch information
aws-sdk-go-automation committed Mar 1, 2023
1 parent a771428 commit 7572d22
Show file tree
Hide file tree
Showing 20 changed files with 2,992 additions and 14 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
Release v1.44.212 (2023-03-01)
===

### Service Client Updates
* `service/pricing`: Updates service API, documentation, and paginators
* `service/s3outposts`: Updates service API, documentation, and paginators

Release v1.44.211 (2023-02-28)
===

Expand Down
3 changes: 3 additions & 0 deletions aws/endpoints/defaults.go

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

2 changes: 1 addition & 1 deletion aws/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.44.211"
const SDKVersion = "1.44.212"
127 changes: 127 additions & 0 deletions models/apis/pricing/2017-10-15/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,21 @@
{"shape":"ExpiredNextTokenException"}
]
},
"GetPriceListFileUrl":{
"name":"GetPriceListFileUrl",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"GetPriceListFileUrlRequest"},
"output":{"shape":"GetPriceListFileUrlResponse"},
"errors":[
{"shape":"InternalErrorException"},
{"shape":"InvalidParameterException"},
{"shape":"NotFoundException"},
{"shape":"AccessDeniedException"}
]
},
"GetProducts":{
"name":"GetProducts",
"http":{
Expand All @@ -61,9 +76,33 @@
{"shape":"InvalidNextTokenException"},
{"shape":"ExpiredNextTokenException"}
]
},
"ListPriceLists":{
"name":"ListPriceLists",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"ListPriceListsRequest"},
"output":{"shape":"ListPriceListsResponse"},
"errors":[
{"shape":"InternalErrorException"},
{"shape":"InvalidParameterException"},
{"shape":"NotFoundException"},
{"shape":"InvalidNextTokenException"},
{"shape":"ExpiredNextTokenException"},
{"shape":"AccessDeniedException"}
]
}
},
"shapes":{
"AccessDeniedException":{
"type":"structure",
"members":{
"Message":{"shape":"errorMessage"}
},
"exception":true
},
"AttributeNameList":{
"type":"list",
"member":{"shape":"String"}
Expand All @@ -83,6 +122,10 @@
"max":100,
"min":1
},
"CurrencyCode":{
"type":"string",
"pattern":"^[A-Z]{3}$"
},
"DescribeServicesRequest":{
"type":"structure",
"members":{
Expand All @@ -103,13 +146,23 @@
"NextToken":{"shape":"String"}
}
},
"EffectiveDate":{"type":"timestamp"},
"ExpiredNextTokenException":{
"type":"structure",
"members":{
"Message":{"shape":"errorMessage"}
},
"exception":true
},
"FileFormat":{
"type":"string",
"max":255,
"min":1
},
"FileFormats":{
"type":"list",
"member":{"shape":"FileFormat"}
},
"Filter":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -154,6 +207,23 @@
"NextToken":{"shape":"String"}
}
},
"GetPriceListFileUrlRequest":{
"type":"structure",
"required":[
"PriceListArn",
"FileFormat"
],
"members":{
"PriceListArn":{"shape":"PriceListArn"},
"FileFormat":{"shape":"FileFormat"}
}
},
"GetPriceListFileUrlResponse":{
"type":"structure",
"members":{
"Url":{"shape":"String"}
}
},
"GetProductsRequest":{
"type":"structure",
"required":["ServiceCode"],
Expand Down Expand Up @@ -197,13 +267,56 @@
},
"exception":true
},
"ListPriceListsRequest":{
"type":"structure",
"required":[
"ServiceCode",
"EffectiveDate",
"CurrencyCode"
],
"members":{
"ServiceCode":{"shape":"ServiceCode"},
"EffectiveDate":{"shape":"EffectiveDate"},
"RegionCode":{"shape":"RegionCode"},
"CurrencyCode":{"shape":"CurrencyCode"},
"NextToken":{"shape":"String"},
"MaxResults":{"shape":"MaxResults"}
}
},
"ListPriceListsResponse":{
"type":"structure",
"members":{
"PriceLists":{"shape":"PriceLists"},
"NextToken":{"shape":"String"}
}
},
"MaxResults":{
"type":"integer",
"max":100,
"min":1
},
"NotFoundException":{
"type":"structure",
"members":{
"Message":{"shape":"errorMessage"}
},
"exception":true
},
"PriceList":{
"type":"structure",
"members":{
"PriceListArn":{"shape":"PriceListArn"},
"RegionCode":{"shape":"RegionCode"},
"CurrencyCode":{"shape":"CurrencyCode"},
"FileFormats":{"shape":"FileFormats"}
}
},
"PriceListArn":{
"type":"string",
"max":2048,
"min":18,
"pattern":"^arn:.+:pricing::.*:price-list/.{1,255}/.{1,32}/[A-Z]{3}/[0-9]{14}/[^/]*$"
},
"PriceListJsonItem":{"type":"string"},
"PriceListJsonItems":{
"type":"list",
Expand All @@ -212,6 +325,15 @@
"jsonvalue":true
}
},
"PriceLists":{
"type":"list",
"member":{"shape":"PriceList"}
},
"RegionCode":{
"type":"string",
"max":255,
"min":1
},
"Service":{
"type":"structure",
"required":["ServiceCode"],
Expand All @@ -220,6 +342,11 @@
"AttributeNames":{"shape":"AttributeNameList"}
}
},
"ServiceCode":{
"type":"string",
"max":32,
"min":1
},
"ServiceList":{
"type":"list",
"member":{"shape":"Service"}
Expand Down

0 comments on commit 7572d22

Please sign in to comment.