Skip to content

Commit

Permalink
Release v1.44.167 (2022-12-23) (#4671)
Browse files Browse the repository at this point in the history
Release v1.44.167 (2022-12-23)
===

### Service Client Updates
* `service/connect`: Updates service API and documentation
* `service/connectparticipant`: Updates service API and documentation
* `service/detective`: Updates service API and documentation
* `service/fsx`: Updates service API and documentation
* `service/inspector2`: Updates service API
  • Loading branch information
aws-sdk-go-automation committed Dec 23, 2022
1 parent 06491f5 commit 811c54e
Show file tree
Hide file tree
Showing 26 changed files with 3,021 additions and 542 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,13 @@
Release v1.44.167 (2022-12-23)
===

### Service Client Updates
* `service/connect`: Updates service API and documentation
* `service/connectparticipant`: Updates service API and documentation
* `service/detective`: Updates service API and documentation
* `service/fsx`: Updates service API and documentation
* `service/inspector2`: Updates service API

Release v1.44.166 (2022-12-22)
===

Expand Down
117 changes: 111 additions & 6 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
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.44.166"
const SDKVersion = "1.44.167"
67 changes: 58 additions & 9 deletions models/apis/connect/2017-08-08/api-2.json
Expand Up @@ -2828,7 +2828,8 @@
"type":"structure",
"members":{
"StatusStartTimestamp":{"shape":"Timestamp"},
"StatusArn":{"shape":"ARN"}
"StatusArn":{"shape":"ARN"},
"StatusName":{"shape":"AgentStatusName"}
}
},
"AgentStatusState":{
Expand Down Expand Up @@ -2869,6 +2870,12 @@
"max":100,
"min":1
},
"AgentsMinOneMaxHundred":{
"type":"list",
"member":{"shape":"UserId"},
"max":100,
"min":1
},
"AliasArn":{
"type":"string",
"max":100,
Expand Down Expand Up @@ -4064,6 +4071,19 @@
"type":"list",
"member":{"shape":"CurrentMetricResult"}
},
"CurrentMetricSortCriteria":{
"type":"structure",
"members":{
"SortByMetric":{"shape":"CurrentMetricName"},
"SortOrder":{"shape":"SortOrder"}
}
},
"CurrentMetricSortCriteriaMaxOne":{
"type":"list",
"member":{"shape":"CurrentMetricSortCriteria"},
"max":1,
"min":0
},
"CurrentMetrics":{
"type":"list",
"member":{"shape":"CurrentMetric"}
Expand Down Expand Up @@ -4857,7 +4877,8 @@
"type":"structure",
"members":{
"Queue":{"shape":"QueueReference"},
"Channel":{"shape":"Channel"}
"Channel":{"shape":"Channel"},
"RoutingProfile":{"shape":"RoutingProfileReference"}
}
},
"DirectoryAlias":{
Expand Down Expand Up @@ -5167,7 +5188,8 @@
"type":"structure",
"members":{
"Queues":{"shape":"Queues"},
"Channels":{"shape":"Channels"}
"Channels":{"shape":"Channels"},
"RoutingProfiles":{"shape":"RoutingProfiles"}
}
},
"FunctionArn":{
Expand Down Expand Up @@ -5224,15 +5246,17 @@
"MaxResults":{
"shape":"MaxResult100",
"box":true
}
},
"SortCriteria":{"shape":"CurrentMetricSortCriteriaMaxOne"}
}
},
"GetCurrentMetricDataResponse":{
"type":"structure",
"members":{
"NextToken":{"shape":"NextToken"},
"MetricResults":{"shape":"CurrentMetricResults"},
"DataSnapshotTime":{"shape":"timestamp"}
"DataSnapshotTime":{"shape":"timestamp"},
"ApproximateTotalCount":{"shape":"ApproximateTotalCount"}
}
},
"GetCurrentUserDataRequest":{
Expand All @@ -5259,7 +5283,8 @@
"type":"structure",
"members":{
"NextToken":{"shape":"NextToken"},
"UserDataList":{"shape":"UserDataList"}
"UserDataList":{"shape":"UserDataList"},
"ApproximateTotalCount":{"shape":"ApproximateTotalCount"}
}
},
"GetFederationTokenRequest":{
Expand Down Expand Up @@ -5386,7 +5411,8 @@
"type":"string",
"enum":[
"QUEUE",
"CHANNEL"
"CHANNEL",
"ROUTING_PROFILE"
]
},
"Groupings":{
Expand Down Expand Up @@ -8142,6 +8168,12 @@
"type":"list",
"member":{"shape":"RoutingProfileSummary"}
},
"RoutingProfiles":{
"type":"list",
"member":{"shape":"RoutingProfileId"},
"max":100,
"min":1
},
"Rule":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -8520,6 +8552,13 @@
"member":{"shape":"TaskTemplateSingleSelectOption"}
},
"SnapshotVersion":{"type":"string"},
"SortOrder":{
"type":"string",
"enum":[
"ASCENDING",
"DESCENDING"
]
},
"SourceApplicationName":{
"type":"string",
"max":100,
Expand Down Expand Up @@ -10049,16 +10088,26 @@
"AvailableSlotsByChannel":{"shape":"ChannelToCountMap"},
"MaxSlotsByChannel":{"shape":"ChannelToCountMap"},
"ActiveSlotsByChannel":{"shape":"ChannelToCountMap"},
"Contacts":{"shape":"AgentContactReferenceList"}
"Contacts":{"shape":"AgentContactReferenceList"},
"NextStatus":{"shape":"AgentStatusName"}
}
},
"UserDataFilters":{
"type":"structure",
"members":{
"Queues":{"shape":"Queues"},
"ContactFilter":{"shape":"ContactFilter"}
"ContactFilter":{"shape":"ContactFilter"},
"RoutingProfiles":{"shape":"RoutingProfiles"},
"Agents":{"shape":"AgentsMinOneMaxHundred"},
"UserHierarchyGroups":{"shape":"UserDataHierarchyGroups"}
}
},
"UserDataHierarchyGroups":{
"type":"list",
"member":{"shape":"HierarchyGroupId"},
"max":1,
"min":1
},
"UserDataList":{
"type":"list",
"member":{"shape":"UserData"}
Expand Down

0 comments on commit 811c54e

Please sign in to comment.