Skip to content

Commit c9131e3

Browse files
authored
feat(aws-android-sdk-connect): update models to latest (#3305)
1 parent f2f98e0 commit c9131e3

File tree

3 files changed

+15
-13
lines changed

3 files changed

+15
-13
lines changed

aws-android-sdk-connect/src/main/java/com/amazonaws/services/connect/model/AgentContactReference.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public class AgentContactReference implements Serializable {
5252
* <p>
5353
* <b>Constraints:</b><br/>
5454
* <b>Allowed Values: </b>INBOUND, OUTBOUND, TRANSFER, QUEUE_TRANSFER,
55-
* CALLBACK, API, DISCONNECT, MONITOR
55+
* CALLBACK, API, DISCONNECT, MONITOR, EXTERNAL_OUTBOUND
5656
*/
5757
private String initiationMethod;
5858

@@ -251,7 +251,7 @@ public AgentContactReference withChannel(Channel channel) {
251251
* <p>
252252
* <b>Constraints:</b><br/>
253253
* <b>Allowed Values: </b>INBOUND, OUTBOUND, TRANSFER, QUEUE_TRANSFER,
254-
* CALLBACK, API, DISCONNECT, MONITOR
254+
* CALLBACK, API, DISCONNECT, MONITOR, EXTERNAL_OUTBOUND
255255
*
256256
* @return <p>
257257
* How the contact was initiated.
@@ -269,7 +269,7 @@ public String getInitiationMethod() {
269269
* <p>
270270
* <b>Constraints:</b><br/>
271271
* <b>Allowed Values: </b>INBOUND, OUTBOUND, TRANSFER, QUEUE_TRANSFER,
272-
* CALLBACK, API, DISCONNECT, MONITOR
272+
* CALLBACK, API, DISCONNECT, MONITOR, EXTERNAL_OUTBOUND
273273
*
274274
* @param initiationMethod <p>
275275
* How the contact was initiated.
@@ -290,7 +290,7 @@ public void setInitiationMethod(String initiationMethod) {
290290
* <p>
291291
* <b>Constraints:</b><br/>
292292
* <b>Allowed Values: </b>INBOUND, OUTBOUND, TRANSFER, QUEUE_TRANSFER,
293-
* CALLBACK, API, DISCONNECT, MONITOR
293+
* CALLBACK, API, DISCONNECT, MONITOR, EXTERNAL_OUTBOUND
294294
*
295295
* @param initiationMethod <p>
296296
* How the contact was initiated.
@@ -311,7 +311,7 @@ public AgentContactReference withInitiationMethod(String initiationMethod) {
311311
* <p>
312312
* <b>Constraints:</b><br/>
313313
* <b>Allowed Values: </b>INBOUND, OUTBOUND, TRANSFER, QUEUE_TRANSFER,
314-
* CALLBACK, API, DISCONNECT, MONITOR
314+
* CALLBACK, API, DISCONNECT, MONITOR, EXTERNAL_OUTBOUND
315315
*
316316
* @param initiationMethod <p>
317317
* How the contact was initiated.
@@ -332,7 +332,7 @@ public void setInitiationMethod(ContactInitiationMethod initiationMethod) {
332332
* <p>
333333
* <b>Constraints:</b><br/>
334334
* <b>Allowed Values: </b>INBOUND, OUTBOUND, TRANSFER, QUEUE_TRANSFER,
335-
* CALLBACK, API, DISCONNECT, MONITOR
335+
* CALLBACK, API, DISCONNECT, MONITOR, EXTERNAL_OUTBOUND
336336
*
337337
* @param initiationMethod <p>
338338
* How the contact was initiated.

aws-android-sdk-connect/src/main/java/com/amazonaws/services/connect/model/Contact.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public class Contact implements Serializable {
6969
* <p>
7070
* <b>Constraints:</b><br/>
7171
* <b>Allowed Values: </b>INBOUND, OUTBOUND, TRANSFER, QUEUE_TRANSFER,
72-
* CALLBACK, API, DISCONNECT, MONITOR
72+
* CALLBACK, API, DISCONNECT, MONITOR, EXTERNAL_OUTBOUND
7373
*/
7474
private String initiationMethod;
7575

@@ -398,7 +398,7 @@ public Contact withPreviousContactId(String previousContactId) {
398398
* <p>
399399
* <b>Constraints:</b><br/>
400400
* <b>Allowed Values: </b>INBOUND, OUTBOUND, TRANSFER, QUEUE_TRANSFER,
401-
* CALLBACK, API, DISCONNECT, MONITOR
401+
* CALLBACK, API, DISCONNECT, MONITOR, EXTERNAL_OUTBOUND
402402
*
403403
* @return <p>
404404
* Indicates how the contact was initiated.
@@ -416,7 +416,7 @@ public String getInitiationMethod() {
416416
* <p>
417417
* <b>Constraints:</b><br/>
418418
* <b>Allowed Values: </b>INBOUND, OUTBOUND, TRANSFER, QUEUE_TRANSFER,
419-
* CALLBACK, API, DISCONNECT, MONITOR
419+
* CALLBACK, API, DISCONNECT, MONITOR, EXTERNAL_OUTBOUND
420420
*
421421
* @param initiationMethod <p>
422422
* Indicates how the contact was initiated.
@@ -437,7 +437,7 @@ public void setInitiationMethod(String initiationMethod) {
437437
* <p>
438438
* <b>Constraints:</b><br/>
439439
* <b>Allowed Values: </b>INBOUND, OUTBOUND, TRANSFER, QUEUE_TRANSFER,
440-
* CALLBACK, API, DISCONNECT, MONITOR
440+
* CALLBACK, API, DISCONNECT, MONITOR, EXTERNAL_OUTBOUND
441441
*
442442
* @param initiationMethod <p>
443443
* Indicates how the contact was initiated.
@@ -458,7 +458,7 @@ public Contact withInitiationMethod(String initiationMethod) {
458458
* <p>
459459
* <b>Constraints:</b><br/>
460460
* <b>Allowed Values: </b>INBOUND, OUTBOUND, TRANSFER, QUEUE_TRANSFER,
461-
* CALLBACK, API, DISCONNECT, MONITOR
461+
* CALLBACK, API, DISCONNECT, MONITOR, EXTERNAL_OUTBOUND
462462
*
463463
* @param initiationMethod <p>
464464
* Indicates how the contact was initiated.
@@ -479,7 +479,7 @@ public void setInitiationMethod(ContactInitiationMethod initiationMethod) {
479479
* <p>
480480
* <b>Constraints:</b><br/>
481481
* <b>Allowed Values: </b>INBOUND, OUTBOUND, TRANSFER, QUEUE_TRANSFER,
482-
* CALLBACK, API, DISCONNECT, MONITOR
482+
* CALLBACK, API, DISCONNECT, MONITOR, EXTERNAL_OUTBOUND
483483
*
484484
* @param initiationMethod <p>
485485
* Indicates how the contact was initiated.

aws-android-sdk-connect/src/main/java/com/amazonaws/services/connect/model/ContactInitiationMethod.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ public enum ContactInitiationMethod {
3030
CALLBACK("CALLBACK"),
3131
API("API"),
3232
DISCONNECT("DISCONNECT"),
33-
MONITOR("MONITOR");
33+
MONITOR("MONITOR"),
34+
EXTERNAL_OUTBOUND("EXTERNAL_OUTBOUND");
3435

3536
private String value;
3637

@@ -54,6 +55,7 @@ public String toString() {
5455
enumMap.put("API", API);
5556
enumMap.put("DISCONNECT", DISCONNECT);
5657
enumMap.put("MONITOR", MONITOR);
58+
enumMap.put("EXTERNAL_OUTBOUND", EXTERNAL_OUTBOUND);
5759
}
5860

5961
/**

0 commit comments

Comments
 (0)