Skip to content

Commit

Permalink
Updated API models and rebuilt service gems.
Browse files Browse the repository at this point in the history
  • Loading branch information
aws-sdk-ruby-automation committed May 14, 2024
1 parent 398a614 commit a0a7ef3
Show file tree
Hide file tree
Showing 41 changed files with 1,507 additions and 329 deletions.
135 changes: 134 additions & 1 deletion apis/connect/2017-08-08/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -2815,6 +2815,38 @@
{"shape":"AccessDeniedException"}
]
},
"SearchContactFlowModules":{
"name":"SearchContactFlowModules",
"http":{
"method":"POST",
"requestUri":"/search-contact-flow-modules"
},
"input":{"shape":"SearchContactFlowModulesRequest"},
"output":{"shape":"SearchContactFlowModulesResponse"},
"errors":[
{"shape":"InvalidRequestException"},
{"shape":"InvalidParameterException"},
{"shape":"ResourceNotFoundException"},
{"shape":"ThrottlingException"},
{"shape":"InternalServiceException"}
]
},
"SearchContactFlows":{
"name":"SearchContactFlows",
"http":{
"method":"POST",
"requestUri":"/search-contact-flows"
},
"input":{"shape":"SearchContactFlowsRequest"},
"output":{"shape":"SearchContactFlowsResponse"},
"errors":[
{"shape":"InvalidRequestException"},
{"shape":"InvalidParameterException"},
{"shape":"ResourceNotFoundException"},
{"shape":"ThrottlingException"},
{"shape":"InternalServiceException"}
]
},
"SearchContacts":{
"name":"SearchContacts",
"http":{
Expand Down Expand Up @@ -5166,6 +5198,7 @@
"Name":{"shape":"ContactFlowName"},
"Type":{"shape":"ContactFlowType"},
"State":{"shape":"ContactFlowState"},
"Status":{"shape":"ContactFlowStatus"},
"Description":{"shape":"ContactFlowDescription"},
"Content":{"shape":"ContactFlowContent"},
"Tags":{"shape":"TagMap"}
Expand Down Expand Up @@ -5212,6 +5245,28 @@
"min":1,
"pattern":".*\\S.*"
},
"ContactFlowModuleSearchConditionList":{
"type":"list",
"member":{"shape":"ContactFlowModuleSearchCriteria"}
},
"ContactFlowModuleSearchCriteria":{
"type":"structure",
"members":{
"OrConditions":{"shape":"ContactFlowModuleSearchConditionList"},
"AndConditions":{"shape":"ContactFlowModuleSearchConditionList"},
"StringCondition":{"shape":"StringCondition"}
}
},
"ContactFlowModuleSearchFilter":{
"type":"structure",
"members":{
"TagFilter":{"shape":"ControlPlaneTagFilter"}
}
},
"ContactFlowModuleSearchSummaryList":{
"type":"list",
"member":{"shape":"ContactFlowModule"}
},
"ContactFlowModuleState":{
"type":"string",
"enum":[
Expand Down Expand Up @@ -5251,21 +5306,54 @@
"error":{"httpStatusCode":404},
"exception":true
},
"ContactFlowSearchConditionList":{
"type":"list",
"member":{"shape":"ContactFlowSearchCriteria"}
},
"ContactFlowSearchCriteria":{
"type":"structure",
"members":{
"OrConditions":{"shape":"ContactFlowSearchConditionList"},
"AndConditions":{"shape":"ContactFlowSearchConditionList"},
"StringCondition":{"shape":"StringCondition"},
"TypeCondition":{"shape":"ContactFlowType"},
"StateCondition":{"shape":"ContactFlowState"},
"StatusCondition":{"shape":"ContactFlowStatus"}
}
},
"ContactFlowSearchFilter":{
"type":"structure",
"members":{
"TagFilter":{"shape":"ControlPlaneTagFilter"}
}
},
"ContactFlowSearchSummaryList":{
"type":"list",
"member":{"shape":"ContactFlow"}
},
"ContactFlowState":{
"type":"string",
"enum":[
"ACTIVE",
"ARCHIVED"
]
},
"ContactFlowStatus":{
"type":"string",
"enum":[
"PUBLISHED",
"SAVED"
]
},
"ContactFlowSummary":{
"type":"structure",
"members":{
"Id":{"shape":"ContactFlowId"},
"Arn":{"shape":"ARN"},
"Name":{"shape":"ContactFlowName"},
"ContactFlowType":{"shape":"ContactFlowType"},
"ContactFlowState":{"shape":"ContactFlowState"}
"ContactFlowState":{"shape":"ContactFlowState"},
"ContactFlowStatus":{"shape":"ContactFlowStatus"}
}
},
"ContactFlowSummaryList":{
Expand Down Expand Up @@ -5515,6 +5603,7 @@
"Type":{"shape":"ContactFlowType"},
"Description":{"shape":"ContactFlowDescription"},
"Content":{"shape":"ContactFlowContent"},
"Status":{"shape":"ContactFlowStatus"},
"Tags":{"shape":"TagMap"}
}
},
Expand Down Expand Up @@ -13093,6 +13182,50 @@
"AvailableNumbersList":{"shape":"AvailableNumbersList"}
}
},
"SearchContactFlowModulesRequest":{
"type":"structure",
"required":["InstanceId"],
"members":{
"InstanceId":{"shape":"InstanceId"},
"NextToken":{"shape":"NextToken2500"},
"MaxResults":{
"shape":"MaxResult100",
"box":true
},
"SearchFilter":{"shape":"ContactFlowModuleSearchFilter"},
"SearchCriteria":{"shape":"ContactFlowModuleSearchCriteria"}
}
},
"SearchContactFlowModulesResponse":{
"type":"structure",
"members":{
"ContactFlowModules":{"shape":"ContactFlowModuleSearchSummaryList"},
"NextToken":{"shape":"NextToken2500"},
"ApproximateTotalCount":{"shape":"ApproximateTotalCount"}
}
},
"SearchContactFlowsRequest":{
"type":"structure",
"required":["InstanceId"],
"members":{
"InstanceId":{"shape":"InstanceId"},
"NextToken":{"shape":"NextToken2500"},
"MaxResults":{
"shape":"MaxResult100",
"box":true
},
"SearchFilter":{"shape":"ContactFlowSearchFilter"},
"SearchCriteria":{"shape":"ContactFlowSearchCriteria"}
}
},
"SearchContactFlowsResponse":{
"type":"structure",
"members":{
"ContactFlows":{"shape":"ContactFlowSearchSummaryList"},
"NextToken":{"shape":"NextToken2500"},
"ApproximateTotalCount":{"shape":"ApproximateTotalCount"}
}
},
"SearchContactsMatchType":{
"type":"string",
"enum":[
Expand Down

0 comments on commit a0a7ef3

Please sign in to comment.