Skip to content

Commit

Permalink
Release v1.44.218 (2023-03-09) (#4752)
Browse files Browse the repository at this point in the history
Release v1.44.218 (2023-03-09)
===

### Service Client Updates
* `service/codeartifact`: Updates service API and documentation
* `service/connect`: Updates service API, documentation, and paginators
* `service/evidently`: Updates service documentation
* `service/networkmanager`: Updates service documentation
* `service/quicksight`: Updates service API and documentation
  * This release has two changes: add state persistence feature for embedded dashboard and console in GenerateEmbedUrlForRegisteredUser API; add properties for hidden collapsed row dimensions in PivotTableOptions.
* `service/redshift-data`: Updates service API and documentation
* `service/sagemaker`: Updates service API and documentation
  * Amazon SageMaker Inference now allows SSM access to customer's model container by setting the "EnableSSMAccess" parameter for a ProductionVariant in CreateEndpointConfig API.
* `service/servicediscovery`: Updates service API
* `service/sesv2`: Updates service API and documentation
  • Loading branch information
aws-sdk-go-automation authored Mar 9, 2023
1 parent eec199e commit 264f021
Show file tree
Hide file tree
Showing 49 changed files with 5,840 additions and 3,544 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
Release v1.44.218 (2023-03-09)
===

### Service Client Updates
* `service/codeartifact`: Updates service API and documentation
* `service/connect`: Updates service API, documentation, and paginators
* `service/evidently`: Updates service documentation
* `service/networkmanager`: Updates service documentation
* `service/quicksight`: Updates service API and documentation
* This release has two changes: add state persistence feature for embedded dashboard and console in GenerateEmbedUrlForRegisteredUser API; add properties for hidden collapsed row dimensions in PivotTableOptions.
* `service/redshift-data`: Updates service API and documentation
* `service/sagemaker`: Updates service API and documentation
* Amazon SageMaker Inference now allows SSM access to customer's model container by setting the "EnableSSMAccess" parameter for a ProductionVariant in CreateEndpointConfig API.
* `service/servicediscovery`: Updates service API
* `service/sesv2`: Updates service API and documentation

Release v1.44.217 (2023-03-08)
===

Expand Down
9 changes: 9 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.217"
const SDKVersion = "1.44.218"
106 changes: 105 additions & 1 deletion models/apis/codeartifact/2018-09-22/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -507,6 +507,24 @@
{"shape":"ValidationException"}
]
},
"PublishPackageVersion":{
"name":"PublishPackageVersion",
"http":{
"method":"POST",
"requestUri":"/v1/package/version/publish"
},
"input":{"shape":"PublishPackageVersionRequest"},
"output":{"shape":"PublishPackageVersionResult"},
"errors":[
{"shape":"AccessDeniedException"},
{"shape":"ConflictException"},
{"shape":"InternalServerException"},
{"shape":"ResourceNotFoundException"},
{"shape":"ServiceQuotaExceededException"},
{"shape":"ThrottlingException"},
{"shape":"ValidationException"}
]
},
"PutDomainPermissionsPolicy":{
"name":"PutDomainPermissionsPolicy",
"http":{
Expand Down Expand Up @@ -2100,7 +2118,8 @@
"npm",
"pypi",
"maven",
"nuget"
"nuget",
"generic"
]
},
"PackageName":{
Expand Down Expand Up @@ -2273,6 +2292,85 @@
"min":1,
"pattern":"\\S+"
},
"PublishPackageVersionRequest":{
"type":"structure",
"required":[
"domain",
"repository",
"format",
"package",
"packageVersion",
"assetContent",
"assetName",
"assetSHA256"
],
"members":{
"domain":{
"shape":"DomainName",
"location":"querystring",
"locationName":"domain"
},
"domainOwner":{
"shape":"AccountId",
"location":"querystring",
"locationName":"domain-owner"
},
"repository":{
"shape":"RepositoryName",
"location":"querystring",
"locationName":"repository"
},
"format":{
"shape":"PackageFormat",
"location":"querystring",
"locationName":"format"
},
"namespace":{
"shape":"PackageNamespace",
"location":"querystring",
"locationName":"namespace"
},
"package":{
"shape":"PackageName",
"location":"querystring",
"locationName":"package"
},
"packageVersion":{
"shape":"PackageVersion",
"location":"querystring",
"locationName":"version"
},
"assetContent":{"shape":"Asset"},
"assetName":{
"shape":"AssetName",
"location":"querystring",
"locationName":"asset"
},
"assetSHA256":{
"shape":"SHA256",
"location":"header",
"locationName":"x-amz-content-sha256"
},
"unfinished":{
"shape":"BooleanOptional",
"location":"querystring",
"locationName":"unfinished"
}
},
"payload":"assetContent"
},
"PublishPackageVersionResult":{
"type":"structure",
"members":{
"format":{"shape":"PackageFormat"},
"namespace":{"shape":"PackageNamespace"},
"package":{"shape":"PackageName"},
"version":{"shape":"PackageVersion"},
"versionRevision":{"shape":"PackageVersionRevision"},
"status":{"shape":"PackageVersionStatus"},
"asset":{"shape":"AssetSummary"}
}
},
"PutDomainPermissionsPolicyRequest":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -2450,6 +2548,12 @@
]
},
"RetryAfterSeconds":{"type":"integer"},
"SHA256":{
"type":"string",
"max":64,
"min":64,
"pattern":"[0-9a-f]+"
},
"ServiceQuotaExceededException":{
"type":"structure",
"required":["message"],
Expand Down
84 changes: 59 additions & 25 deletions models/apis/codeartifact/2018-09-22/docs-2.json

Large diffs are not rendered by default.

Loading

0 comments on commit 264f021

Please sign in to comment.