aws-sdk-chime 1.45.0 → 1.50.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fe6b45f7a78ca02b277f6a3c71747cd44e8982f8d467ffc3ac9f0a3083de50c5
4
- data.tar.gz: 0e82af24f4b2899a8f0203970b11d0c4bbaefd0d6d22a11a047b4383d1513283
3
+ metadata.gz: c09cdb75d4a88983a9fc6855526f9f425437bab02c7e0e0cb2347542668a1714
4
+ data.tar.gz: f50ac7793940c16b68104db72f5d15714470207e404296c8bcc7f37f083bdb02
5
5
  SHA512:
6
- metadata.gz: 3d54e5c2003e5c1b7638ca9c0cca0cd467b7dc4cfc983a7f3e494165e33f64fdbadecd57c3dc8a9f5d9323e92ce7ff7c17434298187d5ea508db1d2e5e725c13
7
- data.tar.gz: 91a3d88039c6f6bffa9b386640545bb3d814fda36df8f5abda6d17acb44423b5d4ef4e512ee7c9583aef1cc02b89d3a96214c52c55c95f3822726c5fbacecb60
6
+ metadata.gz: 2571f36292fe9f82bd213c2b83de8b9bc080c69c56959670983e76f308823d58518513ecd6e01ced7796882e116a3921a254d16ce59d798b69c2b3241dd97b2c
7
+ data.tar.gz: 2ab22bb9dd394a732dd11adfacaf43bbda210a82223521f6c601fa252cbdc9dcd86a96126757b3db16489cfbbd8c7daa3ada2a06f211d13bab02f9ee3f460286
data/CHANGELOG.md CHANGED
@@ -1,6 +1,31 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.50.0 (2021-07-07)
5
+ ------------------
6
+
7
+ * Feature - Releasing new APIs for AWS Chime MediaCapturePipeline
8
+
9
+ 1.49.0 (2021-06-24)
10
+ ------------------
11
+
12
+ * Feature - Adds EventIngestionUrl field to MediaPlacement
13
+
14
+ 1.48.0 (2021-06-17)
15
+ ------------------
16
+
17
+ * Feature - This release adds a new API UpdateSipMediaApplicationCall, to update an in-progress call for SipMediaApplication.
18
+
19
+ 1.47.0 (2021-06-10)
20
+ ------------------
21
+
22
+ * Feature - This SDK release adds support for UpdateAccount API to allow users to update their default license on Chime account.
23
+
24
+ 1.46.0 (2021-05-04)
25
+ ------------------
26
+
27
+ * Feature - This release adds the ability to search for and order international phone numbers for Amazon Chime SIP media applications.
28
+
4
29
  1.45.0 (2021-05-03)
5
30
  ------------------
6
31
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.45.0
1
+ 1.50.0
data/lib/aws-sdk-chime.rb CHANGED
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-chime/customizations'
48
48
  # @!group service
49
49
  module Aws::Chime
50
50
 
51
- GEM_VERSION = '1.45.0'
51
+ GEM_VERSION = '1.50.0'
52
52
 
53
53
  end
@@ -726,8 +726,9 @@ module Aws::Chime
726
726
  # Removes the suspension from up to 50 previously suspended users for
727
727
  # the specified Amazon Chime `EnterpriseLWA` account. Only users on
728
728
  # `EnterpriseLWA` accounts can be unsuspended using this action. For
729
- # more information about different account types, see [Managing Your
730
- # Amazon Chime Accounts][1] in the *Amazon Chime Administration Guide*.
729
+ # more information about different account types, see [ Managing Your
730
+ # Amazon Chime Accounts ][1] in the account types, in the *Amazon Chime
731
+ # Administration Guide*.
731
732
  #
732
733
  # Previously suspended users who are unsuspended using this action are
733
734
  # returned to `Registered` status. Users who are not previously
@@ -771,12 +772,12 @@ module Aws::Chime
771
772
  end
772
773
 
773
774
  # Updates phone number product types or calling names. You can update
774
- # one attribute at a time for each `UpdatePhoneNumberRequestItem` . For
775
- # example, you can update either the product type or the calling name.
775
+ # one attribute at a time for each `UpdatePhoneNumberRequestItem`. For
776
+ # example, you can update the product type or the calling name.
776
777
  #
777
- # For product types, choose from Amazon Chime Business Calling and
778
- # Amazon Chime Voice Connector. For toll-free numbers, you must use the
779
- # Amazon Chime Voice Connector product type.
778
+ # For toll-free numbers, you cannot use the Amazon Chime Business
779
+ # Calling product type. For numbers outside the U.S., you must use the
780
+ # Amazon Chime SIP Media Application Dial-In product type.
780
781
  #
781
782
  # Updates to outbound calling names can take up to 72 hours to complete.
782
783
  # Pending updates to outbound calling names must be complete before you
@@ -796,7 +797,7 @@ module Aws::Chime
796
797
  # update_phone_number_request_items: [ # required
797
798
  # {
798
799
  # phone_number_id: "NonEmptyString", # required
799
- # product_type: "BusinessCalling", # accepts BusinessCalling, VoiceConnector
800
+ # product_type: "BusinessCalling", # accepts BusinessCalling, VoiceConnector, SipMediaApplicationDialIn
800
801
  # calling_name: "CallingName",
801
802
  # },
802
803
  # ],
@@ -1409,6 +1410,62 @@ module Aws::Chime
1409
1410
  req.send_request(options)
1410
1411
  end
1411
1412
 
1413
+ # Creates a media capture pipeline.
1414
+ #
1415
+ # @option params [required, String] :source_type
1416
+ # Source type from which the media artifacts will be captured. A Chime
1417
+ # SDK Meeting is the only supported source.
1418
+ #
1419
+ # @option params [required, String] :source_arn
1420
+ # ARN of the source from which the media artifacts are captured.
1421
+ #
1422
+ # @option params [required, String] :sink_type
1423
+ # Destination type to which the media artifacts are saved. You must use
1424
+ # an S3 bucket.
1425
+ #
1426
+ # @option params [required, String] :sink_arn
1427
+ # The ARN of the sink type.
1428
+ #
1429
+ # @option params [String] :client_request_token
1430
+ # The token assigned to the client making the pipeline request.
1431
+ #
1432
+ # **A suitable default value is auto-generated.** You should normally
1433
+ # not need to pass this option.**
1434
+ #
1435
+ # @return [Types::CreateMediaCapturePipelineResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1436
+ #
1437
+ # * {Types::CreateMediaCapturePipelineResponse#media_capture_pipeline #media_capture_pipeline} => Types::MediaCapturePipeline
1438
+ #
1439
+ # @example Request syntax with placeholder values
1440
+ #
1441
+ # resp = client.create_media_capture_pipeline({
1442
+ # source_type: "ChimeSdkMeeting", # required, accepts ChimeSdkMeeting
1443
+ # source_arn: "Arn", # required
1444
+ # sink_type: "S3Bucket", # required, accepts S3Bucket
1445
+ # sink_arn: "Arn", # required
1446
+ # client_request_token: "ClientRequestToken",
1447
+ # })
1448
+ #
1449
+ # @example Response structure
1450
+ #
1451
+ # resp.media_capture_pipeline.media_pipeline_id #=> String
1452
+ # resp.media_capture_pipeline.source_type #=> String, one of "ChimeSdkMeeting"
1453
+ # resp.media_capture_pipeline.source_arn #=> String
1454
+ # resp.media_capture_pipeline.status #=> String, one of "Initializing", "InProgress", "Failed", "Stopping", "Stopped"
1455
+ # resp.media_capture_pipeline.sink_type #=> String, one of "S3Bucket"
1456
+ # resp.media_capture_pipeline.sink_arn #=> String
1457
+ # resp.media_capture_pipeline.created_timestamp #=> Time
1458
+ # resp.media_capture_pipeline.updated_timestamp #=> Time
1459
+ #
1460
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/CreateMediaCapturePipeline AWS API Documentation
1461
+ #
1462
+ # @overload create_media_capture_pipeline(params = {})
1463
+ # @param [Hash] params ({})
1464
+ def create_media_capture_pipeline(params = {}, options = {})
1465
+ req = build_request(:create_media_capture_pipeline, params)
1466
+ req.send_request(options)
1467
+ end
1468
+
1412
1469
  # Creates a new Amazon Chime SDK meeting in the specified media Region
1413
1470
  # with no initial attendees. For more information about specifying media
1414
1471
  # Regions, see [Amazon Chime SDK Media Regions][1] in the *Amazon Chime
@@ -1484,6 +1541,7 @@ module Aws::Chime
1484
1541
  # resp.meeting.media_placement.screen_viewing_url #=> String
1485
1542
  # resp.meeting.media_placement.signaling_url #=> String
1486
1543
  # resp.meeting.media_placement.turn_control_url #=> String
1544
+ # resp.meeting.media_placement.event_ingestion_url #=> String
1487
1545
  # resp.meeting.media_region #=> String
1488
1546
  #
1489
1547
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/CreateMeeting AWS API Documentation
@@ -1640,6 +1698,7 @@ module Aws::Chime
1640
1698
  # resp.meeting.media_placement.screen_viewing_url #=> String
1641
1699
  # resp.meeting.media_placement.signaling_url #=> String
1642
1700
  # resp.meeting.media_placement.turn_control_url #=> String
1701
+ # resp.meeting.media_placement.event_ingestion_url #=> String
1643
1702
  # resp.meeting.media_region #=> String
1644
1703
  # resp.attendees #=> Array
1645
1704
  # resp.attendees[0].external_user_id #=> String
@@ -1659,10 +1718,10 @@ module Aws::Chime
1659
1718
  req.send_request(options)
1660
1719
  end
1661
1720
 
1662
- # Creates an order for phone numbers to be provisioned. Choose from
1663
- # Amazon Chime Business Calling and Amazon Chime Voice Connector product
1664
- # types. For toll-free numbers, you must use the Amazon Chime Voice
1665
- # Connector product type.
1721
+ # Creates an order for phone numbers to be provisioned. For toll-free
1722
+ # numbers, you cannot use the Amazon Chime Business Calling product
1723
+ # type. For numbers outside the U.S., you must use the Amazon Chime SIP
1724
+ # Media Application Dial-In product type.
1666
1725
  #
1667
1726
  # @option params [required, String] :product_type
1668
1727
  # The phone number product type.
@@ -1677,14 +1736,14 @@ module Aws::Chime
1677
1736
  # @example Request syntax with placeholder values
1678
1737
  #
1679
1738
  # resp = client.create_phone_number_order({
1680
- # product_type: "BusinessCalling", # required, accepts BusinessCalling, VoiceConnector
1739
+ # product_type: "BusinessCalling", # required, accepts BusinessCalling, VoiceConnector, SipMediaApplicationDialIn
1681
1740
  # e164_phone_numbers: ["E164PhoneNumber"], # required
1682
1741
  # })
1683
1742
  #
1684
1743
  # @example Response structure
1685
1744
  #
1686
1745
  # resp.phone_number_order.phone_number_order_id #=> String
1687
- # resp.phone_number_order.product_type #=> String, one of "BusinessCalling", "VoiceConnector"
1746
+ # resp.phone_number_order.product_type #=> String, one of "BusinessCalling", "VoiceConnector", "SipMediaApplicationDialIn"
1688
1747
  # resp.phone_number_order.status #=> String, one of "Processing", "Successful", "Failed", "Partial"
1689
1748
  # resp.phone_number_order.ordered_phone_numbers #=> Array
1690
1749
  # resp.phone_number_order.ordered_phone_numbers[0].e164_phone_number #=> String
@@ -2552,6 +2611,28 @@ module Aws::Chime
2552
2611
  req.send_request(options)
2553
2612
  end
2554
2613
 
2614
+ # Deletes the media capture pipeline.
2615
+ #
2616
+ # @option params [required, String] :media_pipeline_id
2617
+ # The ID of the media capture pipeline being deleted.
2618
+ #
2619
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2620
+ #
2621
+ # @example Request syntax with placeholder values
2622
+ #
2623
+ # resp = client.delete_media_capture_pipeline({
2624
+ # media_pipeline_id: "GuidString", # required
2625
+ # })
2626
+ #
2627
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/DeleteMediaCapturePipeline AWS API Documentation
2628
+ #
2629
+ # @overload delete_media_capture_pipeline(params = {})
2630
+ # @param [Hash] params ({})
2631
+ def delete_media_capture_pipeline(params = {}, options = {})
2632
+ req = build_request(:delete_media_capture_pipeline, params)
2633
+ req.send_request(options)
2634
+ end
2635
+
2555
2636
  # Deletes the specified Amazon Chime SDK meeting. The operation deletes
2556
2637
  # all attendees, disconnects all clients, and prevents new clients from
2557
2638
  # joining the meeting. For more information about the Amazon Chime SDK,
@@ -2582,7 +2663,7 @@ module Aws::Chime
2582
2663
  req.send_request(options)
2583
2664
  end
2584
2665
 
2585
- # Moves the specified phone number into the **Deletionqueue**. A phone
2666
+ # Moves the specified phone number into the **Deletion queue**. A phone
2586
2667
  # number must be disassociated from any users or Amazon Chime Voice
2587
2668
  # Connectors before it can be deleted.
2588
2669
  #
@@ -3782,6 +3863,41 @@ module Aws::Chime
3782
3863
  req.send_request(options)
3783
3864
  end
3784
3865
 
3866
+ # Gets an existing media capture pipeline.
3867
+ #
3868
+ # @option params [required, String] :media_pipeline_id
3869
+ # The ID of the pipeline that you want to get.
3870
+ #
3871
+ # @return [Types::GetMediaCapturePipelineResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3872
+ #
3873
+ # * {Types::GetMediaCapturePipelineResponse#media_capture_pipeline #media_capture_pipeline} => Types::MediaCapturePipeline
3874
+ #
3875
+ # @example Request syntax with placeholder values
3876
+ #
3877
+ # resp = client.get_media_capture_pipeline({
3878
+ # media_pipeline_id: "GuidString", # required
3879
+ # })
3880
+ #
3881
+ # @example Response structure
3882
+ #
3883
+ # resp.media_capture_pipeline.media_pipeline_id #=> String
3884
+ # resp.media_capture_pipeline.source_type #=> String, one of "ChimeSdkMeeting"
3885
+ # resp.media_capture_pipeline.source_arn #=> String
3886
+ # resp.media_capture_pipeline.status #=> String, one of "Initializing", "InProgress", "Failed", "Stopping", "Stopped"
3887
+ # resp.media_capture_pipeline.sink_type #=> String, one of "S3Bucket"
3888
+ # resp.media_capture_pipeline.sink_arn #=> String
3889
+ # resp.media_capture_pipeline.created_timestamp #=> Time
3890
+ # resp.media_capture_pipeline.updated_timestamp #=> Time
3891
+ #
3892
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/GetMediaCapturePipeline AWS API Documentation
3893
+ #
3894
+ # @overload get_media_capture_pipeline(params = {})
3895
+ # @param [Hash] params ({})
3896
+ def get_media_capture_pipeline(params = {}, options = {})
3897
+ req = build_request(:get_media_capture_pipeline, params)
3898
+ req.send_request(options)
3899
+ end
3900
+
3785
3901
  # Gets the Amazon Chime SDK meeting details for the specified meeting
3786
3902
  # ID. For more information about the Amazon Chime SDK, see [Using the
3787
3903
  # Amazon Chime SDK][1] in the *Amazon Chime Developer Guide* .
@@ -3814,6 +3930,7 @@ module Aws::Chime
3814
3930
  # resp.meeting.media_placement.screen_viewing_url #=> String
3815
3931
  # resp.meeting.media_placement.signaling_url #=> String
3816
3932
  # resp.meeting.media_placement.turn_control_url #=> String
3933
+ # resp.meeting.media_placement.event_ingestion_url #=> String
3817
3934
  # resp.meeting.media_region #=> String
3818
3935
  #
3819
3936
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/GetMeeting AWS API Documentation
@@ -3864,8 +3981,9 @@ module Aws::Chime
3864
3981
  #
3865
3982
  # resp.phone_number.phone_number_id #=> String
3866
3983
  # resp.phone_number.e164_phone_number #=> String
3984
+ # resp.phone_number.country #=> String
3867
3985
  # resp.phone_number.type #=> String, one of "Local", "TollFree"
3868
- # resp.phone_number.product_type #=> String, one of "BusinessCalling", "VoiceConnector"
3986
+ # resp.phone_number.product_type #=> String, one of "BusinessCalling", "VoiceConnector", "SipMediaApplicationDialIn"
3869
3987
  # resp.phone_number.status #=> String, one of "AcquireInProgress", "AcquireFailed", "Unassigned", "Assigned", "ReleaseInProgress", "DeleteInProgress", "ReleaseFailed", "DeleteFailed"
3870
3988
  # resp.phone_number.capabilities.inbound_call #=> Boolean
3871
3989
  # resp.phone_number.capabilities.outbound_call #=> Boolean
@@ -3912,7 +4030,7 @@ module Aws::Chime
3912
4030
  # @example Response structure
3913
4031
  #
3914
4032
  # resp.phone_number_order.phone_number_order_id #=> String
3915
- # resp.phone_number_order.product_type #=> String, one of "BusinessCalling", "VoiceConnector"
4033
+ # resp.phone_number_order.product_type #=> String, one of "BusinessCalling", "VoiceConnector", "SipMediaApplicationDialIn"
3916
4034
  # resp.phone_number_order.status #=> String, one of "Processing", "Successful", "Failed", "Partial"
3917
4035
  # resp.phone_number_order.ordered_phone_numbers #=> Array
3918
4036
  # resp.phone_number_order.ordered_phone_numbers[0].e164_phone_number #=> String
@@ -4002,8 +4120,8 @@ module Aws::Chime
4002
4120
 
4003
4121
  # Gets the retention settings for the specified Amazon Chime Enterprise
4004
4122
  # account. For more information about retention settings, see [Managing
4005
- # Chat Retention Policies][1] in the *Amazon Chime Administration Guide*
4006
- # .
4123
+ # Chat Retention Policies][1] in the *Amazon Chime Administration
4124
+ # Guide*.
4007
4125
  #
4008
4126
  #
4009
4127
  #
@@ -4331,7 +4449,7 @@ module Aws::Chime
4331
4449
  end
4332
4450
 
4333
4451
  # Retrieves details for the specified Amazon Chime Voice Connector
4334
- # group, such as timestamps,name, and associated `VoiceConnectorItems` .
4452
+ # group, such as timestamps,name, and associated `VoiceConnectorItems`.
4335
4453
  #
4336
4454
  # @option params [required, String] :voice_connector_group_id
4337
4455
  # The Amazon Chime Voice Connector group ID.
@@ -4831,7 +4949,7 @@ module Aws::Chime
4831
4949
 
4832
4950
  # Lists the attendees for the specified Amazon Chime SDK meeting. For
4833
4951
  # more information about the Amazon Chime SDK, see [Using the Amazon
4834
- # Chime SDK][1] in the *Amazon Chime Developer Guide* .
4952
+ # Chime SDK][1] in the *Amazon Chime Developer Guide*.
4835
4953
  #
4836
4954
  #
4837
4955
  #
@@ -5110,7 +5228,7 @@ module Aws::Chime
5110
5228
 
5111
5229
  # List all the messages in a channel. Returns a paginated list of
5112
5230
  # `ChannelMessages`. By default, sorted by creation timestamp in
5113
- # descending order .
5231
+ # descending order.
5114
5232
  #
5115
5233
  # <note markdown="1"> Redacted messages appear in the results as empty, since they are only
5116
5234
  # redacted, not deleted. Deleted messages do not appear in the results.
@@ -5374,6 +5492,51 @@ module Aws::Chime
5374
5492
  req.send_request(options)
5375
5493
  end
5376
5494
 
5495
+ # Returns a list of media capture pipelines.
5496
+ #
5497
+ # @option params [String] :next_token
5498
+ # The token used to retrieve the next page of results.
5499
+ #
5500
+ # @option params [Integer] :max_results
5501
+ # The maximum number of results to return in a single call. Valid Range:
5502
+ # 1 - 99.
5503
+ #
5504
+ # @return [Types::ListMediaCapturePipelinesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5505
+ #
5506
+ # * {Types::ListMediaCapturePipelinesResponse#media_capture_pipelines #media_capture_pipelines} => Array&lt;Types::MediaCapturePipeline&gt;
5507
+ # * {Types::ListMediaCapturePipelinesResponse#next_token #next_token} => String
5508
+ #
5509
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
5510
+ #
5511
+ # @example Request syntax with placeholder values
5512
+ #
5513
+ # resp = client.list_media_capture_pipelines({
5514
+ # next_token: "String",
5515
+ # max_results: 1,
5516
+ # })
5517
+ #
5518
+ # @example Response structure
5519
+ #
5520
+ # resp.media_capture_pipelines #=> Array
5521
+ # resp.media_capture_pipelines[0].media_pipeline_id #=> String
5522
+ # resp.media_capture_pipelines[0].source_type #=> String, one of "ChimeSdkMeeting"
5523
+ # resp.media_capture_pipelines[0].source_arn #=> String
5524
+ # resp.media_capture_pipelines[0].status #=> String, one of "Initializing", "InProgress", "Failed", "Stopping", "Stopped"
5525
+ # resp.media_capture_pipelines[0].sink_type #=> String, one of "S3Bucket"
5526
+ # resp.media_capture_pipelines[0].sink_arn #=> String
5527
+ # resp.media_capture_pipelines[0].created_timestamp #=> Time
5528
+ # resp.media_capture_pipelines[0].updated_timestamp #=> Time
5529
+ # resp.next_token #=> String
5530
+ #
5531
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/ListMediaCapturePipelines AWS API Documentation
5532
+ #
5533
+ # @overload list_media_capture_pipelines(params = {})
5534
+ # @param [Hash] params ({})
5535
+ def list_media_capture_pipelines(params = {}, options = {})
5536
+ req = build_request(:list_media_capture_pipelines, params)
5537
+ req.send_request(options)
5538
+ end
5539
+
5377
5540
  # Lists the tags applied to an Amazon Chime SDK meeting resource.
5378
5541
  #
5379
5542
  # @option params [required, String] :meeting_id
@@ -5406,7 +5569,7 @@ module Aws::Chime
5406
5569
 
5407
5570
  # Lists up to 100 active Amazon Chime SDK meetings. For more information
5408
5571
  # about the Amazon Chime SDK, see [Using the Amazon Chime SDK][1] in the
5409
- # *Amazon Chime Developer Guide* .
5572
+ # *Amazon Chime Developer Guide*.
5410
5573
  #
5411
5574
  #
5412
5575
  #
@@ -5444,6 +5607,7 @@ module Aws::Chime
5444
5607
  # resp.meetings[0].media_placement.screen_viewing_url #=> String
5445
5608
  # resp.meetings[0].media_placement.signaling_url #=> String
5446
5609
  # resp.meetings[0].media_placement.turn_control_url #=> String
5610
+ # resp.meetings[0].media_placement.event_ingestion_url #=> String
5447
5611
  # resp.meetings[0].media_region #=> String
5448
5612
  # resp.next_token #=> String
5449
5613
  #
@@ -5483,7 +5647,7 @@ module Aws::Chime
5483
5647
  #
5484
5648
  # resp.phone_number_orders #=> Array
5485
5649
  # resp.phone_number_orders[0].phone_number_order_id #=> String
5486
- # resp.phone_number_orders[0].product_type #=> String, one of "BusinessCalling", "VoiceConnector"
5650
+ # resp.phone_number_orders[0].product_type #=> String, one of "BusinessCalling", "VoiceConnector", "SipMediaApplicationDialIn"
5487
5651
  # resp.phone_number_orders[0].status #=> String, one of "Processing", "Successful", "Failed", "Partial"
5488
5652
  # resp.phone_number_orders[0].ordered_phone_numbers #=> Array
5489
5653
  # resp.phone_number_orders[0].ordered_phone_numbers[0].e164_phone_number #=> String
@@ -5534,7 +5698,7 @@ module Aws::Chime
5534
5698
  #
5535
5699
  # resp = client.list_phone_numbers({
5536
5700
  # status: "AcquireInProgress", # accepts AcquireInProgress, AcquireFailed, Unassigned, Assigned, ReleaseInProgress, DeleteInProgress, ReleaseFailed, DeleteFailed
5537
- # product_type: "BusinessCalling", # accepts BusinessCalling, VoiceConnector
5701
+ # product_type: "BusinessCalling", # accepts BusinessCalling, VoiceConnector, SipMediaApplicationDialIn
5538
5702
  # filter_name: "AccountId", # accepts AccountId, UserId, VoiceConnectorId, VoiceConnectorGroupId, SipRuleId
5539
5703
  # filter_value: "String",
5540
5704
  # max_results: 1,
@@ -5546,8 +5710,9 @@ module Aws::Chime
5546
5710
  # resp.phone_numbers #=> Array
5547
5711
  # resp.phone_numbers[0].phone_number_id #=> String
5548
5712
  # resp.phone_numbers[0].e164_phone_number #=> String
5713
+ # resp.phone_numbers[0].country #=> String
5549
5714
  # resp.phone_numbers[0].type #=> String, one of "Local", "TollFree"
5550
- # resp.phone_numbers[0].product_type #=> String, one of "BusinessCalling", "VoiceConnector"
5715
+ # resp.phone_numbers[0].product_type #=> String, one of "BusinessCalling", "VoiceConnector", "SipMediaApplicationDialIn"
5551
5716
  # resp.phone_numbers[0].status #=> String, one of "AcquireInProgress", "AcquireFailed", "Unassigned", "Assigned", "ReleaseInProgress", "DeleteInProgress", "ReleaseFailed", "DeleteFailed"
5552
5717
  # resp.phone_numbers[0].capabilities.inbound_call #=> Boolean
5553
5718
  # resp.phone_numbers[0].capabilities.outbound_call #=> Boolean
@@ -5841,6 +6006,37 @@ module Aws::Chime
5841
6006
  req.send_request(options)
5842
6007
  end
5843
6008
 
6009
+ # Lists supported phone number countries.
6010
+ #
6011
+ # @option params [required, String] :product_type
6012
+ # The phone number product type.
6013
+ #
6014
+ # @return [Types::ListSupportedPhoneNumberCountriesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6015
+ #
6016
+ # * {Types::ListSupportedPhoneNumberCountriesResponse#phone_number_countries #phone_number_countries} => Array&lt;Types::PhoneNumberCountry&gt;
6017
+ #
6018
+ # @example Request syntax with placeholder values
6019
+ #
6020
+ # resp = client.list_supported_phone_number_countries({
6021
+ # product_type: "BusinessCalling", # required, accepts BusinessCalling, VoiceConnector, SipMediaApplicationDialIn
6022
+ # })
6023
+ #
6024
+ # @example Response structure
6025
+ #
6026
+ # resp.phone_number_countries #=> Array
6027
+ # resp.phone_number_countries[0].country_code #=> String
6028
+ # resp.phone_number_countries[0].supported_phone_number_types #=> Array
6029
+ # resp.phone_number_countries[0].supported_phone_number_types[0] #=> String, one of "Local", "TollFree"
6030
+ #
6031
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/ListSupportedPhoneNumberCountries AWS API Documentation
6032
+ #
6033
+ # @overload list_supported_phone_number_countries(params = {})
6034
+ # @param [Hash] params ({})
6035
+ def list_supported_phone_number_countries(params = {}, options = {})
6036
+ req = build_request(:list_supported_phone_number_countries, params)
6037
+ req.send_request(options)
6038
+ end
6039
+
5844
6040
  # Lists the tags applied to an Amazon Chime SDK meeting resource.
5845
6041
  #
5846
6042
  # @option params [required, String] :resource_arn
@@ -6207,13 +6403,13 @@ module Aws::Chime
6207
6403
  # account. We recommend using AWS CloudTrail to monitor usage of this
6208
6404
  # API for your account. For more information, see [Logging Amazon Chime
6209
6405
  # API Calls with AWS CloudTrail][1] in the *Amazon Chime Administration
6210
- # Guide* .
6406
+ # Guide*.
6211
6407
  #
6212
6408
  # To turn off existing retention settings, remove the number of days
6213
6409
  # from the corresponding **RetentionDays** field in the
6214
6410
  # **RetentionSettings** object. For more information about retention
6215
6411
  # settings, see [Managing Chat Retention Policies][2] in the *Amazon
6216
- # Chime Administration Guide* .
6412
+ # Chime Administration Guide*.
6217
6413
  #
6218
6414
  #
6219
6415
  #
@@ -6828,8 +7024,9 @@ module Aws::Chime
6828
7024
  #
6829
7025
  # resp.phone_number.phone_number_id #=> String
6830
7026
  # resp.phone_number.e164_phone_number #=> String
7027
+ # resp.phone_number.country #=> String
6831
7028
  # resp.phone_number.type #=> String, one of "Local", "TollFree"
6832
- # resp.phone_number.product_type #=> String, one of "BusinessCalling", "VoiceConnector"
7029
+ # resp.phone_number.product_type #=> String, one of "BusinessCalling", "VoiceConnector", "SipMediaApplicationDialIn"
6833
7030
  # resp.phone_number.status #=> String, one of "AcquireInProgress", "AcquireFailed", "Unassigned", "Assigned", "ReleaseInProgress", "DeleteInProgress", "ReleaseFailed", "DeleteFailed"
6834
7031
  # resp.phone_number.capabilities.inbound_call #=> Boolean
6835
7032
  # resp.phone_number.capabilities.outbound_call #=> Boolean
@@ -6856,41 +7053,56 @@ module Aws::Chime
6856
7053
  req.send_request(options)
6857
7054
  end
6858
7055
 
6859
- # Searches phone numbers that can be ordered.
7056
+ # Searches for phone numbers that can be ordered. For US numbers,
7057
+ # provide at least one of the following search filters: `AreaCode`,
7058
+ # `City`, `State`, or `TollFreePrefix`. If you provide `City`, you must
7059
+ # also provide `State`. Numbers outside the US only support the
7060
+ # `PhoneNumberType` filter, which you must use.
6860
7061
  #
6861
7062
  # @option params [String] :area_code
6862
- # The area code used to filter results.
7063
+ # The area code used to filter results. Only applies to the US.
6863
7064
  #
6864
7065
  # @option params [String] :city
6865
- # The city used to filter results.
7066
+ # The city used to filter results. Only applies to the US.
6866
7067
  #
6867
7068
  # @option params [String] :country
6868
- # The country used to filter results.
7069
+ # The country used to filter results. Defaults to the US Format: ISO
7070
+ # 3166-1 alpha-2.
6869
7071
  #
6870
7072
  # @option params [String] :state
6871
- # The state used to filter results.
7073
+ # The state used to filter results. Required only if you provide `City`.
7074
+ # Only applies to the US.
6872
7075
  #
6873
7076
  # @option params [String] :toll_free_prefix
6874
- # The toll-free prefix that you use to filter results.
7077
+ # The toll-free prefix that you use to filter results. Only applies to
7078
+ # the US.
7079
+ #
7080
+ # @option params [String] :phone_number_type
7081
+ # The phone number type used to filter results. Required for non-US
7082
+ # numbers.
6875
7083
  #
6876
7084
  # @option params [Integer] :max_results
6877
7085
  # The maximum number of results to return in a single call.
6878
7086
  #
6879
7087
  # @option params [String] :next_token
6880
- # The token to use to retrieve the next page of results.
7088
+ # The token used to retrieve the next page of results.
6881
7089
  #
6882
7090
  # @return [Types::SearchAvailablePhoneNumbersResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6883
7091
  #
6884
7092
  # * {Types::SearchAvailablePhoneNumbersResponse#e164_phone_numbers #e164_phone_numbers} => Array&lt;String&gt;
7093
+ # * {Types::SearchAvailablePhoneNumbersResponse#next_token #next_token} => String
7094
+ #
7095
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
6885
7096
  #
6886
7097
  # @example Request syntax with placeholder values
6887
7098
  #
6888
7099
  # resp = client.search_available_phone_numbers({
6889
7100
  # area_code: "String",
6890
7101
  # city: "String",
6891
- # country: "String",
7102
+ # country: "Alpha2CountryCode",
6892
7103
  # state: "String",
6893
7104
  # toll_free_prefix: "TollFreePrefix",
7105
+ # phone_number_type: "Local", # accepts Local, TollFree
6894
7106
  # max_results: 1,
6895
7107
  # next_token: "String",
6896
7108
  # })
@@ -6899,6 +7111,7 @@ module Aws::Chime
6899
7111
  #
6900
7112
  # resp.e164_phone_numbers #=> Array
6901
7113
  # resp.e164_phone_numbers[0] #=> String
7114
+ # resp.next_token #=> String
6902
7115
  #
6903
7116
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/SearchAvailablePhoneNumbers AWS API Documentation
6904
7117
  #
@@ -7160,7 +7373,8 @@ module Aws::Chime
7160
7373
  end
7161
7374
 
7162
7375
  # Updates account details for the specified Amazon Chime account.
7163
- # Currently, only account name updates are supported for this action.
7376
+ # Currently, only account name and default license updates are supported
7377
+ # for this action.
7164
7378
  #
7165
7379
  # @option params [required, String] :account_id
7166
7380
  # The Amazon Chime account ID.
@@ -7168,6 +7382,10 @@ module Aws::Chime
7168
7382
  # @option params [String] :name
7169
7383
  # The new name for the specified Amazon Chime account.
7170
7384
  #
7385
+ # @option params [String] :default_license
7386
+ # The default license applied when you add users to an Amazon Chime
7387
+ # account.
7388
+ #
7171
7389
  # @return [Types::UpdateAccountResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7172
7390
  #
7173
7391
  # * {Types::UpdateAccountResponse#account #account} => Types::Account
@@ -7177,6 +7395,7 @@ module Aws::Chime
7177
7395
  # resp = client.update_account({
7178
7396
  # account_id: "NonEmptyString", # required
7179
7397
  # name: "AccountName",
7398
+ # default_license: "Basic", # accepts Basic, Plus, Pro, ProTrial
7180
7399
  # })
7181
7400
  #
7182
7401
  # @example Response structure
@@ -7534,10 +7753,11 @@ module Aws::Chime
7534
7753
  # detail at a time. For example, you can update either the product type
7535
7754
  # or the calling name in one action.
7536
7755
  #
7537
- # For toll-free numbers, you must use the Amazon Chime Voice Connector
7538
- # product type.
7756
+ # For toll-free numbers, you cannot use the Amazon Chime Business
7757
+ # Calling product type. For numbers outside the U.S., you must use the
7758
+ # Amazon Chime SIP Media Application Dial-In product type.
7539
7759
  #
7540
- # Updates to outbound calling names can take up to 72 hours to complete.
7760
+ # Updates to outbound calling names can take 72 hours to complete.
7541
7761
  # Pending updates to outbound calling names must be complete before you
7542
7762
  # can request another update.
7543
7763
  #
@@ -7558,7 +7778,7 @@ module Aws::Chime
7558
7778
  #
7559
7779
  # resp = client.update_phone_number({
7560
7780
  # phone_number_id: "String", # required
7561
- # product_type: "BusinessCalling", # accepts BusinessCalling, VoiceConnector
7781
+ # product_type: "BusinessCalling", # accepts BusinessCalling, VoiceConnector, SipMediaApplicationDialIn
7562
7782
  # calling_name: "CallingName",
7563
7783
  # })
7564
7784
  #
@@ -7566,8 +7786,9 @@ module Aws::Chime
7566
7786
  #
7567
7787
  # resp.phone_number.phone_number_id #=> String
7568
7788
  # resp.phone_number.e164_phone_number #=> String
7789
+ # resp.phone_number.country #=> String
7569
7790
  # resp.phone_number.type #=> String, one of "Local", "TollFree"
7570
- # resp.phone_number.product_type #=> String, one of "BusinessCalling", "VoiceConnector"
7791
+ # resp.phone_number.product_type #=> String, one of "BusinessCalling", "VoiceConnector", "SipMediaApplicationDialIn"
7571
7792
  # resp.phone_number.status #=> String, one of "AcquireInProgress", "AcquireFailed", "Unassigned", "Assigned", "ReleaseInProgress", "DeleteInProgress", "ReleaseFailed", "DeleteFailed"
7572
7793
  # resp.phone_number.capabilities.inbound_call #=> Boolean
7573
7794
  # resp.phone_number.capabilities.outbound_call #=> Boolean
@@ -7815,6 +8036,47 @@ module Aws::Chime
7815
8036
  req.send_request(options)
7816
8037
  end
7817
8038
 
8039
+ # Allows you to trigger a Lambda function at any time while a call is
8040
+ # active, and replace the current actions with new actions returned by
8041
+ # the invocation.
8042
+ #
8043
+ # @option params [required, String] :sip_media_application_id
8044
+ # The ID of the SIP media application handling the call.
8045
+ #
8046
+ # @option params [required, String] :transaction_id
8047
+ # The ID of the call transaction.
8048
+ #
8049
+ # @option params [required, Hash<String,String>] :arguments
8050
+ # Arguments made available to the Lambda function as part of the
8051
+ # `CALL_UPDATE_REQUESTED` event. Can contain 0-20 key-value pairs.
8052
+ #
8053
+ # @return [Types::UpdateSipMediaApplicationCallResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8054
+ #
8055
+ # * {Types::UpdateSipMediaApplicationCallResponse#sip_media_application_call #sip_media_application_call} => Types::SipMediaApplicationCall
8056
+ #
8057
+ # @example Request syntax with placeholder values
8058
+ #
8059
+ # resp = client.update_sip_media_application_call({
8060
+ # sip_media_application_id: "NonEmptyString", # required
8061
+ # transaction_id: "NonEmptyString", # required
8062
+ # arguments: { # required
8063
+ # "SensitiveString" => "SensitiveString",
8064
+ # },
8065
+ # })
8066
+ #
8067
+ # @example Response structure
8068
+ #
8069
+ # resp.sip_media_application_call.transaction_id #=> String
8070
+ #
8071
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/UpdateSipMediaApplicationCall AWS API Documentation
8072
+ #
8073
+ # @overload update_sip_media_application_call(params = {})
8074
+ # @param [Hash] params ({})
8075
+ def update_sip_media_application_call(params = {}, options = {})
8076
+ req = build_request(:update_sip_media_application_call, params)
8077
+ req.send_request(options)
8078
+ end
8079
+
7818
8080
  # Updates the details of the specified SIP rule.
7819
8081
  #
7820
8082
  # @option params [required, String] :sip_rule_id
@@ -8074,7 +8336,7 @@ module Aws::Chime
8074
8336
  params: params,
8075
8337
  config: config)
8076
8338
  context[:gem_name] = 'aws-sdk-chime'
8077
- context[:gem_version] = '1.45.0'
8339
+ context[:gem_version] = '1.50.0'
8078
8340
  Seahorse::Client::Request.new(handlers, context)
8079
8341
  end
8080
8342