aws-sdk-alexaforbusiness 1.26.0 → 1.27.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7057da133b876e55fa54db94fa195488aab87b57
4
- data.tar.gz: 8366f4b10b8386b3f68a29c1e1a0c35c9ad84839
3
+ metadata.gz: 17f2459977b689b2eee36fc5f3f7bcc86fe9f4ea
4
+ data.tar.gz: 5021427f5566736fb5b98821b5499964cc50d358
5
5
  SHA512:
6
- metadata.gz: f00be9492881767a3b7e3ffc4d84796747d936d851fe269d98367bc12ca7f1496293fc82c8e831c54c2544d66d07079e2f148bc6cf6e3a19f172fb4a37a957fb
7
- data.tar.gz: 500f08dc906e9a4ea34262b2ba1cadfc9269a6f1eb7330700a5dfe350f12ccb8a77fe59fea15aa8215b98334c1538ad89fcc4d721dc795278cf1d0300d1a4abc
6
+ metadata.gz: 2f78e300f329c6e6fd9e1e1da3e1d0db160bc6d185ef7869e15333da4eb0b26bf247b5a42d9c5c50df33cd34fccd20786d0025eabf6f2390804d66521ebd35ce
7
+ data.tar.gz: 2227fa42b68773b3ee35d606d587721ea821fd789c744a2e671a899c12c0d0b0b2adcf4072dfaf412a71295be75168f00bbb8230aa910878cda3fcccd1f245d9
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-alexaforbusiness/customizations'
42
42
  # @service
43
43
  module Aws::AlexaForBusiness
44
44
 
45
- GEM_VERSION = '1.26.0'
45
+ GEM_VERSION = '1.27.0'
46
46
 
47
47
  end
@@ -624,7 +624,16 @@ module Aws::AlexaForBusiness
624
624
  # device.
625
625
  #
626
626
  # @option params [String] :phone_number
627
- # The phone number of the contact in E.164 format.
627
+ # The phone number of the contact in E.164 format. The phone number type
628
+ # defaults to WORK. You can specify PhoneNumber or PhoneNumbers. We
629
+ # recommend that you use PhoneNumbers, which lets you specify the phone
630
+ # number type and multiple numbers.
631
+ #
632
+ # @option params [Array<Types::PhoneNumber>] :phone_numbers
633
+ # The list of phone numbers for the contact.
634
+ #
635
+ # @option params [Array<Types::SipAddress>] :sip_addresses
636
+ # The list of SIP addresses for the contact.
628
637
  #
629
638
  # @option params [String] :client_request_token
630
639
  # A unique, user-specified identifier for this request that ensures
@@ -643,7 +652,19 @@ module Aws::AlexaForBusiness
643
652
  # display_name: "ContactName",
644
653
  # first_name: "ContactName", # required
645
654
  # last_name: "ContactName",
646
- # phone_number: "E164PhoneNumber",
655
+ # phone_number: "RawPhoneNumber",
656
+ # phone_numbers: [
657
+ # {
658
+ # number: "RawPhoneNumber", # required
659
+ # type: "MOBILE", # required, accepts MOBILE, WORK, HOME
660
+ # },
661
+ # ],
662
+ # sip_addresses: [
663
+ # {
664
+ # uri: "SipUri", # required
665
+ # type: "WORK", # required, accepts WORK
666
+ # },
667
+ # ],
647
668
  # client_request_token: "ClientRequestToken",
648
669
  # })
649
670
  #
@@ -1109,6 +1130,11 @@ module Aws::AlexaForBusiness
1109
1130
  req.send_request(options)
1110
1131
  end
1111
1132
 
1133
+ # When this action is called for a specified shared device, it allows
1134
+ # authorized users to delete the device's entire previous history of
1135
+ # voice input data and associated response data. This action can be
1136
+ # called once every 24 hours for a specific shared device.
1137
+ #
1112
1138
  # When this action is called for a specified shared device, it allows
1113
1139
  # authorized users to delete the device's entire previous history of
1114
1140
  # voice input data. This action can be called once every 24 hours for a
@@ -1590,6 +1616,12 @@ module Aws::AlexaForBusiness
1590
1616
  # resp.contact.first_name #=> String
1591
1617
  # resp.contact.last_name #=> String
1592
1618
  # resp.contact.phone_number #=> String
1619
+ # resp.contact.phone_numbers #=> Array
1620
+ # resp.contact.phone_numbers[0].number #=> String
1621
+ # resp.contact.phone_numbers[0].type #=> String, one of "MOBILE", "WORK", "HOME"
1622
+ # resp.contact.sip_addresses #=> Array
1623
+ # resp.contact.sip_addresses[0].uri #=> String
1624
+ # resp.contact.sip_addresses[0].type #=> String, one of "WORK"
1593
1625
  #
1594
1626
  # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/GetContact AWS API Documentation
1595
1627
  #
@@ -2781,6 +2813,12 @@ module Aws::AlexaForBusiness
2781
2813
  # resp.contacts[0].first_name #=> String
2782
2814
  # resp.contacts[0].last_name #=> String
2783
2815
  # resp.contacts[0].phone_number #=> String
2816
+ # resp.contacts[0].phone_numbers #=> Array
2817
+ # resp.contacts[0].phone_numbers[0].number #=> String
2818
+ # resp.contacts[0].phone_numbers[0].type #=> String, one of "MOBILE", "WORK", "HOME"
2819
+ # resp.contacts[0].sip_addresses #=> Array
2820
+ # resp.contacts[0].sip_addresses[0].uri #=> String
2821
+ # resp.contacts[0].sip_addresses[0].type #=> String, one of "WORK"
2784
2822
  # resp.next_token #=> String
2785
2823
  # resp.total_count #=> Integer
2786
2824
  #
@@ -3298,7 +3336,7 @@ module Aws::AlexaForBusiness
3298
3336
  end
3299
3337
 
3300
3338
  # Sends an enrollment invitation email with a URL to a user. The URL is
3301
- # valid for 72 hours or until you call this operation again, whichever
3339
+ # valid for 30 days or until you call this operation again, whichever
3302
3340
  # comes first.
3303
3341
  #
3304
3342
  # @option params [String] :user_arn
@@ -3589,7 +3627,16 @@ module Aws::AlexaForBusiness
3589
3627
  # The updated last name of the contact.
3590
3628
  #
3591
3629
  # @option params [String] :phone_number
3592
- # The updated phone number of the contact.
3630
+ # The updated phone number of the contact. The phone number type
3631
+ # defaults to WORK. You can either specify PhoneNumber or PhoneNumbers.
3632
+ # We recommend that you use PhoneNumbers, which lets you specify the
3633
+ # phone number type and multiple numbers.
3634
+ #
3635
+ # @option params [Array<Types::PhoneNumber>] :phone_numbers
3636
+ # The list of phone numbers for the contact.
3637
+ #
3638
+ # @option params [Array<Types::SipAddress>] :sip_addresses
3639
+ # The list of SIP addresses for the contact.
3593
3640
  #
3594
3641
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
3595
3642
  #
@@ -3600,7 +3647,19 @@ module Aws::AlexaForBusiness
3600
3647
  # display_name: "ContactName",
3601
3648
  # first_name: "ContactName",
3602
3649
  # last_name: "ContactName",
3603
- # phone_number: "E164PhoneNumber",
3650
+ # phone_number: "RawPhoneNumber",
3651
+ # phone_numbers: [
3652
+ # {
3653
+ # number: "RawPhoneNumber", # required
3654
+ # type: "MOBILE", # required, accepts MOBILE, WORK, HOME
3655
+ # },
3656
+ # ],
3657
+ # sip_addresses: [
3658
+ # {
3659
+ # uri: "SipUri", # required
3660
+ # type: "WORK", # required, accepts WORK
3661
+ # },
3662
+ # ],
3604
3663
  # })
3605
3664
  #
3606
3665
  # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/UpdateContact AWS API Documentation
@@ -3901,7 +3960,7 @@ module Aws::AlexaForBusiness
3901
3960
  params: params,
3902
3961
  config: config)
3903
3962
  context[:gem_name] = 'aws-sdk-alexaforbusiness'
3904
- context[:gem_version] = '1.26.0'
3963
+ context[:gem_version] = '1.27.0'
3905
3964
  Seahorse::Client::Request.new(handlers, context)
3906
3965
  end
3907
3966
 
@@ -163,7 +163,6 @@ module Aws::AlexaForBusiness
163
163
  DisassociateSkillGroupFromRoomRequest = Shapes::StructureShape.new(name: 'DisassociateSkillGroupFromRoomRequest')
164
164
  DisassociateSkillGroupFromRoomResponse = Shapes::StructureShape.new(name: 'DisassociateSkillGroupFromRoomResponse')
165
165
  DistanceUnit = Shapes::StringShape.new(name: 'DistanceUnit')
166
- E164PhoneNumber = Shapes::StringShape.new(name: 'E164PhoneNumber')
167
166
  Email = Shapes::StringShape.new(name: 'Email')
168
167
  EnablementType = Shapes::StringShape.new(name: 'EnablementType')
169
168
  EnablementTypeFilter = Shapes::StringShape.new(name: 'EnablementTypeFilter')
@@ -273,6 +272,9 @@ module Aws::AlexaForBusiness
273
272
  OrganizationName = Shapes::StringShape.new(name: 'OrganizationName')
274
273
  OutboundPhoneNumber = Shapes::StringShape.new(name: 'OutboundPhoneNumber')
275
274
  PSTNDialIn = Shapes::StructureShape.new(name: 'PSTNDialIn')
275
+ PhoneNumber = Shapes::StructureShape.new(name: 'PhoneNumber')
276
+ PhoneNumberList = Shapes::ListShape.new(name: 'PhoneNumberList')
277
+ PhoneNumberType = Shapes::StringShape.new(name: 'PhoneNumberType')
276
278
  PrivacyPolicy = Shapes::StringShape.new(name: 'PrivacyPolicy')
277
279
  ProductDescription = Shapes::StringShape.new(name: 'ProductDescription')
278
280
  ProductId = Shapes::StringShape.new(name: 'ProductId')
@@ -289,6 +291,7 @@ module Aws::AlexaForBusiness
289
291
  PutRoomSkillParameterResponse = Shapes::StructureShape.new(name: 'PutRoomSkillParameterResponse')
290
292
  PutSkillAuthorizationRequest = Shapes::StructureShape.new(name: 'PutSkillAuthorizationRequest')
291
293
  PutSkillAuthorizationResponse = Shapes::StructureShape.new(name: 'PutSkillAuthorizationResponse')
294
+ RawPhoneNumber = Shapes::StringShape.new(name: 'RawPhoneNumber')
292
295
  RegisterAVSDeviceRequest = Shapes::StructureShape.new(name: 'RegisterAVSDeviceRequest')
293
296
  RegisterAVSDeviceResponse = Shapes::StructureShape.new(name: 'RegisterAVSDeviceResponse')
294
297
  RejectSkillRequest = Shapes::StructureShape.new(name: 'RejectSkillRequest')
@@ -337,6 +340,10 @@ module Aws::AlexaForBusiness
337
340
  SendInvitationResponse = Shapes::StructureShape.new(name: 'SendInvitationResponse')
338
341
  ShortDescription = Shapes::StringShape.new(name: 'ShortDescription')
339
342
  ShortSkillIdList = Shapes::ListShape.new(name: 'ShortSkillIdList')
343
+ SipAddress = Shapes::StructureShape.new(name: 'SipAddress')
344
+ SipAddressList = Shapes::ListShape.new(name: 'SipAddressList')
345
+ SipType = Shapes::StringShape.new(name: 'SipType')
346
+ SipUri = Shapes::StringShape.new(name: 'SipUri')
340
347
  SkillDetails = Shapes::StructureShape.new(name: 'SkillDetails')
341
348
  SkillGroup = Shapes::StructureShape.new(name: 'SkillGroup')
342
349
  SkillGroupData = Shapes::StructureShape.new(name: 'SkillGroupData')
@@ -544,14 +551,18 @@ module Aws::AlexaForBusiness
544
551
  Contact.add_member(:display_name, Shapes::ShapeRef.new(shape: ContactName, location_name: "DisplayName"))
545
552
  Contact.add_member(:first_name, Shapes::ShapeRef.new(shape: ContactName, location_name: "FirstName"))
546
553
  Contact.add_member(:last_name, Shapes::ShapeRef.new(shape: ContactName, location_name: "LastName"))
547
- Contact.add_member(:phone_number, Shapes::ShapeRef.new(shape: E164PhoneNumber, location_name: "PhoneNumber"))
554
+ Contact.add_member(:phone_number, Shapes::ShapeRef.new(shape: RawPhoneNumber, location_name: "PhoneNumber"))
555
+ Contact.add_member(:phone_numbers, Shapes::ShapeRef.new(shape: PhoneNumberList, location_name: "PhoneNumbers"))
556
+ Contact.add_member(:sip_addresses, Shapes::ShapeRef.new(shape: SipAddressList, location_name: "SipAddresses"))
548
557
  Contact.struct_class = Types::Contact
549
558
 
550
559
  ContactData.add_member(:contact_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "ContactArn"))
551
560
  ContactData.add_member(:display_name, Shapes::ShapeRef.new(shape: ContactName, location_name: "DisplayName"))
552
561
  ContactData.add_member(:first_name, Shapes::ShapeRef.new(shape: ContactName, location_name: "FirstName"))
553
562
  ContactData.add_member(:last_name, Shapes::ShapeRef.new(shape: ContactName, location_name: "LastName"))
554
- ContactData.add_member(:phone_number, Shapes::ShapeRef.new(shape: E164PhoneNumber, location_name: "PhoneNumber"))
563
+ ContactData.add_member(:phone_number, Shapes::ShapeRef.new(shape: RawPhoneNumber, location_name: "PhoneNumber"))
564
+ ContactData.add_member(:phone_numbers, Shapes::ShapeRef.new(shape: PhoneNumberList, location_name: "PhoneNumbers"))
565
+ ContactData.add_member(:sip_addresses, Shapes::ShapeRef.new(shape: SipAddressList, location_name: "SipAddresses"))
555
566
  ContactData.struct_class = Types::ContactData
556
567
 
557
568
  ContactDataList.member = Shapes::ShapeRef.new(shape: ContactData)
@@ -595,7 +606,9 @@ module Aws::AlexaForBusiness
595
606
  CreateContactRequest.add_member(:display_name, Shapes::ShapeRef.new(shape: ContactName, location_name: "DisplayName"))
596
607
  CreateContactRequest.add_member(:first_name, Shapes::ShapeRef.new(shape: ContactName, required: true, location_name: "FirstName"))
597
608
  CreateContactRequest.add_member(:last_name, Shapes::ShapeRef.new(shape: ContactName, location_name: "LastName"))
598
- CreateContactRequest.add_member(:phone_number, Shapes::ShapeRef.new(shape: E164PhoneNumber, location_name: "PhoneNumber"))
609
+ CreateContactRequest.add_member(:phone_number, Shapes::ShapeRef.new(shape: RawPhoneNumber, location_name: "PhoneNumber"))
610
+ CreateContactRequest.add_member(:phone_numbers, Shapes::ShapeRef.new(shape: PhoneNumberList, location_name: "PhoneNumbers"))
611
+ CreateContactRequest.add_member(:sip_addresses, Shapes::ShapeRef.new(shape: SipAddressList, location_name: "SipAddresses"))
599
612
  CreateContactRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
600
613
  CreateContactRequest.struct_class = Types::CreateContactRequest
601
614
 
@@ -1108,6 +1121,12 @@ module Aws::AlexaForBusiness
1108
1121
  PSTNDialIn.add_member(:one_click_pin_delay, Shapes::ShapeRef.new(shape: OneClickPinDelay, required: true, location_name: "OneClickPinDelay"))
1109
1122
  PSTNDialIn.struct_class = Types::PSTNDialIn
1110
1123
 
1124
+ PhoneNumber.add_member(:number, Shapes::ShapeRef.new(shape: RawPhoneNumber, required: true, location_name: "Number"))
1125
+ PhoneNumber.add_member(:type, Shapes::ShapeRef.new(shape: PhoneNumberType, required: true, location_name: "Type"))
1126
+ PhoneNumber.struct_class = Types::PhoneNumber
1127
+
1128
+ PhoneNumberList.member = Shapes::ShapeRef.new(shape: PhoneNumber)
1129
+
1111
1130
  Profile.add_member(:profile_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "ProfileArn"))
1112
1131
  Profile.add_member(:profile_name, Shapes::ShapeRef.new(shape: ProfileName, location_name: "ProfileName"))
1113
1132
  Profile.add_member(:is_default, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsDefault"))
@@ -1329,6 +1348,12 @@ module Aws::AlexaForBusiness
1329
1348
 
1330
1349
  ShortSkillIdList.member = Shapes::ShapeRef.new(shape: SkillId)
1331
1350
 
1351
+ SipAddress.add_member(:uri, Shapes::ShapeRef.new(shape: SipUri, required: true, location_name: "Uri"))
1352
+ SipAddress.add_member(:type, Shapes::ShapeRef.new(shape: SipType, required: true, location_name: "Type"))
1353
+ SipAddress.struct_class = Types::SipAddress
1354
+
1355
+ SipAddressList.member = Shapes::ShapeRef.new(shape: SipAddress)
1356
+
1332
1357
  SkillDetails.add_member(:product_description, Shapes::ShapeRef.new(shape: ProductDescription, location_name: "ProductDescription"))
1333
1358
  SkillDetails.add_member(:invocation_phrase, Shapes::ShapeRef.new(shape: InvocationPhrase, location_name: "InvocationPhrase"))
1334
1359
  SkillDetails.add_member(:release_date, Shapes::ShapeRef.new(shape: ReleaseDate, location_name: "ReleaseDate"))
@@ -1470,7 +1495,9 @@ module Aws::AlexaForBusiness
1470
1495
  UpdateContactRequest.add_member(:display_name, Shapes::ShapeRef.new(shape: ContactName, location_name: "DisplayName"))
1471
1496
  UpdateContactRequest.add_member(:first_name, Shapes::ShapeRef.new(shape: ContactName, location_name: "FirstName"))
1472
1497
  UpdateContactRequest.add_member(:last_name, Shapes::ShapeRef.new(shape: ContactName, location_name: "LastName"))
1473
- UpdateContactRequest.add_member(:phone_number, Shapes::ShapeRef.new(shape: E164PhoneNumber, location_name: "PhoneNumber"))
1498
+ UpdateContactRequest.add_member(:phone_number, Shapes::ShapeRef.new(shape: RawPhoneNumber, location_name: "PhoneNumber"))
1499
+ UpdateContactRequest.add_member(:phone_numbers, Shapes::ShapeRef.new(shape: PhoneNumberList, location_name: "PhoneNumbers"))
1500
+ UpdateContactRequest.add_member(:sip_addresses, Shapes::ShapeRef.new(shape: SipAddressList, location_name: "SipAddresses"))
1474
1501
  UpdateContactRequest.struct_class = Types::UpdateContactRequest
1475
1502
 
1476
1503
  UpdateContactResponse.struct_class = Types::UpdateContactResponse
@@ -555,9 +555,20 @@ module Aws::AlexaForBusiness
555
555
  # @return [String]
556
556
  #
557
557
  # @!attribute [rw] phone_number
558
- # The phone number of the contact.
558
+ # The phone number of the contact. The phone number type defaults to
559
+ # WORK. You can either specify PhoneNumber or PhoneNumbers. We
560
+ # recommend that you use PhoneNumbers, which lets you specify the
561
+ # phone number type and multiple numbers.
559
562
  # @return [String]
560
563
  #
564
+ # @!attribute [rw] phone_numbers
565
+ # The list of phone numbers for the contact.
566
+ # @return [Array<Types::PhoneNumber>]
567
+ #
568
+ # @!attribute [rw] sip_addresses
569
+ # The list of SIP addresses for the contact.
570
+ # @return [Array<Types::SipAddress>]
571
+ #
561
572
  # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/Contact AWS API Documentation
562
573
  #
563
574
  class Contact < Struct.new(
@@ -565,7 +576,9 @@ module Aws::AlexaForBusiness
565
576
  :display_name,
566
577
  :first_name,
567
578
  :last_name,
568
- :phone_number)
579
+ :phone_number,
580
+ :phone_numbers,
581
+ :sip_addresses)
569
582
  include Aws::Structure
570
583
  end
571
584
 
@@ -590,9 +603,20 @@ module Aws::AlexaForBusiness
590
603
  # @return [String]
591
604
  #
592
605
  # @!attribute [rw] phone_number
593
- # The phone number of the contact.
606
+ # The phone number of the contact. The phone number type defaults to
607
+ # WORK. You can specify PhoneNumber or PhoneNumbers. We recommend that
608
+ # you use PhoneNumbers, which lets you specify the phone number type
609
+ # and multiple numbers.
594
610
  # @return [String]
595
611
  #
612
+ # @!attribute [rw] phone_numbers
613
+ # The list of phone numbers for the contact.
614
+ # @return [Array<Types::PhoneNumber>]
615
+ #
616
+ # @!attribute [rw] sip_addresses
617
+ # The list of SIP addresses for the contact.
618
+ # @return [Array<Types::SipAddress>]
619
+ #
596
620
  # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/ContactData AWS API Documentation
597
621
  #
598
622
  class ContactData < Struct.new(
@@ -600,7 +624,9 @@ module Aws::AlexaForBusiness
600
624
  :display_name,
601
625
  :first_name,
602
626
  :last_name,
603
- :phone_number)
627
+ :phone_number,
628
+ :phone_numbers,
629
+ :sip_addresses)
604
630
  include Aws::Structure
605
631
  end
606
632
 
@@ -852,7 +878,19 @@ module Aws::AlexaForBusiness
852
878
  # display_name: "ContactName",
853
879
  # first_name: "ContactName", # required
854
880
  # last_name: "ContactName",
855
- # phone_number: "E164PhoneNumber",
881
+ # phone_number: "RawPhoneNumber",
882
+ # phone_numbers: [
883
+ # {
884
+ # number: "RawPhoneNumber", # required
885
+ # type: "MOBILE", # required, accepts MOBILE, WORK, HOME
886
+ # },
887
+ # ],
888
+ # sip_addresses: [
889
+ # {
890
+ # uri: "SipUri", # required
891
+ # type: "WORK", # required, accepts WORK
892
+ # },
893
+ # ],
856
894
  # client_request_token: "ClientRequestToken",
857
895
  # }
858
896
  #
@@ -871,9 +909,20 @@ module Aws::AlexaForBusiness
871
909
  # @return [String]
872
910
  #
873
911
  # @!attribute [rw] phone_number
874
- # The phone number of the contact in E.164 format.
912
+ # The phone number of the contact in E.164 format. The phone number
913
+ # type defaults to WORK. You can specify PhoneNumber or PhoneNumbers.
914
+ # We recommend that you use PhoneNumbers, which lets you specify the
915
+ # phone number type and multiple numbers.
875
916
  # @return [String]
876
917
  #
918
+ # @!attribute [rw] phone_numbers
919
+ # The list of phone numbers for the contact.
920
+ # @return [Array<Types::PhoneNumber>]
921
+ #
922
+ # @!attribute [rw] sip_addresses
923
+ # The list of SIP addresses for the contact.
924
+ # @return [Array<Types::SipAddress>]
925
+ #
877
926
  # @!attribute [rw] client_request_token
878
927
  # A unique, user-specified identifier for this request that ensures
879
928
  # idempotency.
@@ -889,6 +938,8 @@ module Aws::AlexaForBusiness
889
938
  :first_name,
890
939
  :last_name,
891
940
  :phone_number,
941
+ :phone_numbers,
942
+ :sip_addresses,
892
943
  :client_request_token)
893
944
  include Aws::Structure
894
945
  end
@@ -3376,6 +3427,33 @@ module Aws::AlexaForBusiness
3376
3427
  include Aws::Structure
3377
3428
  end
3378
3429
 
3430
+ # The phone number for the contact containing the raw number and phone
3431
+ # number type.
3432
+ #
3433
+ # @note When making an API call, you may pass PhoneNumber
3434
+ # data as a hash:
3435
+ #
3436
+ # {
3437
+ # number: "RawPhoneNumber", # required
3438
+ # type: "MOBILE", # required, accepts MOBILE, WORK, HOME
3439
+ # }
3440
+ #
3441
+ # @!attribute [rw] number
3442
+ # The raw value of the phone number.
3443
+ # @return [String]
3444
+ #
3445
+ # @!attribute [rw] type
3446
+ # The type of the phone number.
3447
+ # @return [String]
3448
+ #
3449
+ # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/PhoneNumber AWS API Documentation
3450
+ #
3451
+ class PhoneNumber < Struct.new(
3452
+ :number,
3453
+ :type)
3454
+ include Aws::Structure
3455
+ end
3456
+
3379
3457
  # A room profile with attributes.
3380
3458
  #
3381
3459
  # @!attribute [rw] profile_arn
@@ -4635,6 +4713,33 @@ module Aws::AlexaForBusiness
4635
4713
  #
4636
4714
  class SendInvitationResponse < Aws::EmptyStructure; end
4637
4715
 
4716
+ # The SIP address for the contact containing the URI and SIP address
4717
+ # type.
4718
+ #
4719
+ # @note When making an API call, you may pass SipAddress
4720
+ # data as a hash:
4721
+ #
4722
+ # {
4723
+ # uri: "SipUri", # required
4724
+ # type: "WORK", # required, accepts WORK
4725
+ # }
4726
+ #
4727
+ # @!attribute [rw] uri
4728
+ # The URI for the SIP address.
4729
+ # @return [String]
4730
+ #
4731
+ # @!attribute [rw] type
4732
+ # The type of the SIP address.
4733
+ # @return [String]
4734
+ #
4735
+ # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/SipAddress AWS API Documentation
4736
+ #
4737
+ class SipAddress < Struct.new(
4738
+ :uri,
4739
+ :type)
4740
+ include Aws::Structure
4741
+ end
4742
+
4638
4743
  # Granular information about the skill.
4639
4744
  #
4640
4745
  # @!attribute [rw] product_description
@@ -5250,7 +5355,19 @@ module Aws::AlexaForBusiness
5250
5355
  # display_name: "ContactName",
5251
5356
  # first_name: "ContactName",
5252
5357
  # last_name: "ContactName",
5253
- # phone_number: "E164PhoneNumber",
5358
+ # phone_number: "RawPhoneNumber",
5359
+ # phone_numbers: [
5360
+ # {
5361
+ # number: "RawPhoneNumber", # required
5362
+ # type: "MOBILE", # required, accepts MOBILE, WORK, HOME
5363
+ # },
5364
+ # ],
5365
+ # sip_addresses: [
5366
+ # {
5367
+ # uri: "SipUri", # required
5368
+ # type: "WORK", # required, accepts WORK
5369
+ # },
5370
+ # ],
5254
5371
  # }
5255
5372
  #
5256
5373
  # @!attribute [rw] contact_arn
@@ -5270,9 +5387,20 @@ module Aws::AlexaForBusiness
5270
5387
  # @return [String]
5271
5388
  #
5272
5389
  # @!attribute [rw] phone_number
5273
- # The updated phone number of the contact.
5390
+ # The updated phone number of the contact. The phone number type
5391
+ # defaults to WORK. You can either specify PhoneNumber or
5392
+ # PhoneNumbers. We recommend that you use PhoneNumbers, which lets you
5393
+ # specify the phone number type and multiple numbers.
5274
5394
  # @return [String]
5275
5395
  #
5396
+ # @!attribute [rw] phone_numbers
5397
+ # The list of phone numbers for the contact.
5398
+ # @return [Array<Types::PhoneNumber>]
5399
+ #
5400
+ # @!attribute [rw] sip_addresses
5401
+ # The list of SIP addresses for the contact.
5402
+ # @return [Array<Types::SipAddress>]
5403
+ #
5276
5404
  # @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/UpdateContactRequest AWS API Documentation
5277
5405
  #
5278
5406
  class UpdateContactRequest < Struct.new(
@@ -5280,7 +5408,9 @@ module Aws::AlexaForBusiness
5280
5408
  :display_name,
5281
5409
  :first_name,
5282
5410
  :last_name,
5283
- :phone_number)
5411
+ :phone_number,
5412
+ :phone_numbers,
5413
+ :sip_addresses)
5284
5414
  include Aws::Structure
5285
5415
  end
5286
5416
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-alexaforbusiness
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.26.0
4
+ version: 1.27.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-06-17 00:00:00.000000000 Z
11
+ date: 2019-06-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core