Skip to content

Commit

Permalink
Release v1.44.81 (2022-08-19) (#4529)
Browse files Browse the repository at this point in the history
Release v1.44.81 (2022-08-19)
===

### Service Client Updates
* `service/connect`: Updates service API, documentation, and paginators
* `service/ivschat`: Updates service documentation
* `service/kendra`: Updates service API and documentation
  * This release adds support for a new authentication type - Personal Access Token (PAT) for confluence server.
* `service/lookoutmetrics`: Updates service API and documentation
  • Loading branch information
aws-sdk-go-automation committed Aug 19, 2022
1 parent b28bc2f commit 8abdb48
Show file tree
Hide file tree
Showing 21 changed files with 1,807 additions and 477 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
Release v1.44.81 (2022-08-19)
===

### Service Client Updates
* `service/connect`: Updates service API, documentation, and paginators
* `service/ivschat`: Updates service documentation
* `service/kendra`: Updates service API and documentation
* This release adds support for a new authentication type - Personal Access Token (PAT) for confluence server.
* `service/lookoutmetrics`: Updates service API and documentation

Release v1.44.80 (2022-08-18)
===

Expand Down
23 changes: 23 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.80"
const SDKVersion = "1.44.81"
71 changes: 71 additions & 0 deletions models/apis/connect/2017-08-08/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1685,6 +1685,22 @@
{"shape":"AccessDeniedException"}
]
},
"SearchSecurityProfiles":{
"name":"SearchSecurityProfiles",
"http":{
"method":"POST",
"requestUri":"/search-security-profiles"
},
"input":{"shape":"SearchSecurityProfilesRequest"},
"output":{"shape":"SearchSecurityProfilesResponse"},
"errors":[
{"shape":"InvalidRequestException"},
{"shape":"InvalidParameterException"},
{"shape":"ResourceNotFoundException"},
{"shape":"ThrottlingException"},
{"shape":"InternalServiceException"}
]
},
"SearchUsers":{
"name":"SearchUsers",
"http":{
Expand Down Expand Up @@ -7318,6 +7334,28 @@
"AvailableNumbersList":{"shape":"AvailableNumbersList"}
}
},
"SearchSecurityProfilesRequest":{
"type":"structure",
"required":["InstanceId"],
"members":{
"InstanceId":{"shape":"InstanceId"},
"NextToken":{"shape":"NextToken2500"},
"MaxResults":{
"shape":"MaxResult100",
"box":true
},
"SearchCriteria":{"shape":"SecurityProfileSearchCriteria"},
"SearchFilter":{"shape":"SecurityProfilesSearchFilter"}
}
},
"SearchSecurityProfilesResponse":{
"type":"structure",
"members":{
"SecurityProfiles":{"shape":"SecurityProfilesSearchSummaryList"},
"NextToken":{"shape":"NextToken2500"},
"ApproximateTotalCount":{"shape":"ApproximateTotalCount"}
}
},
"SearchUsersRequest":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -7402,6 +7440,29 @@
"max":128,
"min":1
},
"SecurityProfileSearchConditionList":{
"type":"list",
"member":{"shape":"SecurityProfileSearchCriteria"}
},
"SecurityProfileSearchCriteria":{
"type":"structure",
"members":{
"OrConditions":{"shape":"SecurityProfileSearchConditionList"},
"AndConditions":{"shape":"SecurityProfileSearchConditionList"},
"StringCondition":{"shape":"StringCondition"}
}
},
"SecurityProfileSearchSummary":{
"type":"structure",
"members":{
"Id":{"shape":"SecurityProfileId"},
"OrganizationResourceId":{"shape":"InstanceId"},
"Arn":{"shape":"ARN"},
"SecurityProfileName":{"shape":"SecurityProfileName"},
"Description":{"shape":"SecurityProfileDescription"},
"Tags":{"shape":"TagMap"}
}
},
"SecurityProfileSummary":{
"type":"structure",
"members":{
Expand All @@ -7414,6 +7475,16 @@
"type":"list",
"member":{"shape":"SecurityProfileSummary"}
},
"SecurityProfilesSearchFilter":{
"type":"structure",
"members":{
"TagFilter":{"shape":"ControlPlaneTagFilter"}
}
},
"SecurityProfilesSearchSummaryList":{
"type":"list",
"member":{"shape":"SecurityProfileSearchSummary"}
},
"SecurityToken":{
"type":"string",
"sensitive":true
Expand Down
Loading

0 comments on commit 8abdb48

Please sign in to comment.