aws-sdk-alexaforbusiness 1.24.0 → 1.25.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a50a6c3ca09dd0022096cd19ea8a29dca3b40fb2
|
4
|
+
data.tar.gz: 88073132ea6dbcea1148d3b20f5f948325503711
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 45878e8c63b46c81967f5cd88e7af788f39cf655bfc3f65ea8dec7709960e819e6478a48b5d4bfa0c49fbfe95da90ed2acdca79b516c31e672c7ed50e3f4eb87
|
7
|
+
data.tar.gz: 1e95fcd1001780067f131bb6db393c492756d21705285f1034b428420e720de917f92bbe712f991b0d2c08a60998ac8814bb7e8e28e12bc17a8200e12c9508ce
|
@@ -310,6 +310,32 @@ module Aws::AlexaForBusiness
|
|
310
310
|
req.send_request(options)
|
311
311
|
end
|
312
312
|
|
313
|
+
# Associates a device with the specified network profile.
|
314
|
+
#
|
315
|
+
# @option params [required, String] :device_arn
|
316
|
+
# The device ARN.
|
317
|
+
#
|
318
|
+
# @option params [required, String] :network_profile_arn
|
319
|
+
# The ARN of the network profile to associate with a device.
|
320
|
+
#
|
321
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
322
|
+
#
|
323
|
+
# @example Request syntax with placeholder values
|
324
|
+
#
|
325
|
+
# resp = client.associate_device_with_network_profile({
|
326
|
+
# device_arn: "Arn", # required
|
327
|
+
# network_profile_arn: "Arn", # required
|
328
|
+
# })
|
329
|
+
#
|
330
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/AssociateDeviceWithNetworkProfile AWS API Documentation
|
331
|
+
#
|
332
|
+
# @overload associate_device_with_network_profile(params = {})
|
333
|
+
# @param [Hash] params ({})
|
334
|
+
def associate_device_with_network_profile(params = {}, options = {})
|
335
|
+
req = build_request(:associate_device_with_network_profile, params)
|
336
|
+
req.send_request(options)
|
337
|
+
end
|
338
|
+
|
313
339
|
# Associates a device with a given room. This applies all the settings
|
314
340
|
# from the room profile to the device, and all the skills in any skill
|
315
341
|
# groups added to that room. This operation requires the device to be
|
@@ -670,6 +696,82 @@ module Aws::AlexaForBusiness
|
|
670
696
|
req.send_request(options)
|
671
697
|
end
|
672
698
|
|
699
|
+
# Creates a network profile with the specified details.
|
700
|
+
#
|
701
|
+
# @option params [required, String] :network_profile_name
|
702
|
+
# The name of the network profile associated with a device.
|
703
|
+
#
|
704
|
+
# @option params [String] :description
|
705
|
+
# Detailed information about a device's network profile.
|
706
|
+
#
|
707
|
+
# @option params [required, String] :ssid
|
708
|
+
# The SSID of the Wi-Fi network.
|
709
|
+
#
|
710
|
+
# @option params [required, String] :security_type
|
711
|
+
# The security type of the Wi-Fi network. This can be WPA2\_ENTERPRISE,
|
712
|
+
# WPA2\_PSK, WPA\_PSK, WEP, or OPEN.
|
713
|
+
#
|
714
|
+
# @option params [String] :eap_method
|
715
|
+
# The authentication standard that is used in the EAP framework.
|
716
|
+
# Currently, EAP\_TLS is supported.
|
717
|
+
#
|
718
|
+
# @option params [String] :current_password
|
719
|
+
# The current password of the Wi-Fi network.
|
720
|
+
#
|
721
|
+
# @option params [String] :next_password
|
722
|
+
# The next, or subsequent, password of the Wi-Fi network. This password
|
723
|
+
# is asynchronously transmitted to the device and is used when the
|
724
|
+
# password of the network changes to NextPassword.
|
725
|
+
#
|
726
|
+
# @option params [String] :certificate_authority_arn
|
727
|
+
# The ARN of the Private Certificate Authority (PCA) created in AWS
|
728
|
+
# Certificate Manager (ACM). This is used to issue certificates to the
|
729
|
+
# devices.
|
730
|
+
#
|
731
|
+
# @option params [Array<String>] :trust_anchors
|
732
|
+
# The root certificates of your authentication server that is installed
|
733
|
+
# on your devices and used to trust your authentication server during
|
734
|
+
# EAP negotiation.
|
735
|
+
#
|
736
|
+
# @option params [required, String] :client_request_token
|
737
|
+
# A unique, user-specified identifier for the request that ensures
|
738
|
+
# idempotency.
|
739
|
+
#
|
740
|
+
# **A suitable default value is auto-generated.** You should normally
|
741
|
+
# not need to pass this option.**
|
742
|
+
#
|
743
|
+
# @return [Types::CreateNetworkProfileResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
744
|
+
#
|
745
|
+
# * {Types::CreateNetworkProfileResponse#network_profile_arn #network_profile_arn} => String
|
746
|
+
#
|
747
|
+
# @example Request syntax with placeholder values
|
748
|
+
#
|
749
|
+
# resp = client.create_network_profile({
|
750
|
+
# network_profile_name: "NetworkProfileName", # required
|
751
|
+
# description: "NetworkProfileDescription",
|
752
|
+
# ssid: "NetworkSsid", # required
|
753
|
+
# security_type: "OPEN", # required, accepts OPEN, WEP, WPA_PSK, WPA2_PSK, WPA2_ENTERPRISE
|
754
|
+
# eap_method: "EAP_TLS", # accepts EAP_TLS
|
755
|
+
# current_password: "CurrentWiFiPassword",
|
756
|
+
# next_password: "NextWiFiPassword",
|
757
|
+
# certificate_authority_arn: "Arn",
|
758
|
+
# trust_anchors: ["TrustAnchor"],
|
759
|
+
# client_request_token: "ClientRequestToken", # required
|
760
|
+
# })
|
761
|
+
#
|
762
|
+
# @example Response structure
|
763
|
+
#
|
764
|
+
# resp.network_profile_arn #=> String
|
765
|
+
#
|
766
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/CreateNetworkProfile AWS API Documentation
|
767
|
+
#
|
768
|
+
# @overload create_network_profile(params = {})
|
769
|
+
# @param [Hash] params ({})
|
770
|
+
def create_network_profile(params = {}, options = {})
|
771
|
+
req = build_request(:create_network_profile, params)
|
772
|
+
req.send_request(options)
|
773
|
+
end
|
774
|
+
|
673
775
|
# Creates a new room profile with the specified details.
|
674
776
|
#
|
675
777
|
# @option params [required, String] :profile_name
|
@@ -1005,8 +1107,8 @@ module Aws::AlexaForBusiness
|
|
1005
1107
|
|
1006
1108
|
# When this action is called for a specified shared device, it allows
|
1007
1109
|
# authorized users to delete the device's entire previous history of
|
1008
|
-
# voice input data
|
1009
|
-
#
|
1110
|
+
# voice input data. This action can be called once every 24 hours for a
|
1111
|
+
# specific shared device.
|
1010
1112
|
#
|
1011
1113
|
# @option params [required, String] :device_arn
|
1012
1114
|
# The ARN of the device.
|
@@ -1054,6 +1156,28 @@ module Aws::AlexaForBusiness
|
|
1054
1156
|
req.send_request(options)
|
1055
1157
|
end
|
1056
1158
|
|
1159
|
+
# Deletes a network profile by the network profile ARN.
|
1160
|
+
#
|
1161
|
+
# @option params [required, String] :network_profile_arn
|
1162
|
+
# The ARN of the network profile associated with a device.
|
1163
|
+
#
|
1164
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1165
|
+
#
|
1166
|
+
# @example Request syntax with placeholder values
|
1167
|
+
#
|
1168
|
+
# resp = client.delete_network_profile({
|
1169
|
+
# network_profile_arn: "Arn", # required
|
1170
|
+
# })
|
1171
|
+
#
|
1172
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/DeleteNetworkProfile AWS API Documentation
|
1173
|
+
#
|
1174
|
+
# @overload delete_network_profile(params = {})
|
1175
|
+
# @param [Hash] params ({})
|
1176
|
+
def delete_network_profile(params = {}, options = {})
|
1177
|
+
req = build_request(:delete_network_profile, params)
|
1178
|
+
req.send_request(options)
|
1179
|
+
end
|
1180
|
+
|
1057
1181
|
# Deletes a room profile by the profile ARN.
|
1058
1182
|
#
|
1059
1183
|
# @option params [String] :profile_arn
|
@@ -1496,10 +1620,14 @@ module Aws::AlexaForBusiness
|
|
1496
1620
|
# resp.device.software_version #=> String
|
1497
1621
|
# resp.device.mac_address #=> String
|
1498
1622
|
# resp.device.room_arn #=> String
|
1499
|
-
# resp.device.device_status #=> String, one of "READY", "PENDING", "WAS_OFFLINE", "DEREGISTERED"
|
1623
|
+
# resp.device.device_status #=> String, one of "READY", "PENDING", "WAS_OFFLINE", "DEREGISTERED", "FAILED"
|
1500
1624
|
# resp.device.device_status_info.device_status_details #=> Array
|
1625
|
+
# resp.device.device_status_info.device_status_details[0].feature #=> String, one of "BLUETOOTH", "VOLUME", "NOTIFICATIONS", "LISTS", "SKILLS", "NETWORK_PROFILE", "SETTINGS", "ALL"
|
1501
1626
|
# resp.device.device_status_info.device_status_details[0].code #=> String, one of "DEVICE_SOFTWARE_UPDATE_NEEDED", "DEVICE_WAS_OFFLINE", "CREDENTIALS_ACCESS_FAILURE", "TLS_VERSION_MISMATCH", "ASSOCIATION_REJECTION", "AUTHENTICATION_FAILURE", "DHCP_FAILURE", "INTERNET_UNAVAILABLE", "DNS_FAILURE", "UNKNOWN_FAILURE", "CERTIFICATE_ISSUING_LIMIT_EXCEEDED", "INVALID_CERTIFICATE_AUTHORITY", "NETWORK_PROFILE_NOT_FOUND", "INVALID_PASSWORD_STATE", "PASSWORD_NOT_FOUND"
|
1502
1627
|
# resp.device.device_status_info.connection_status #=> String, one of "ONLINE", "OFFLINE"
|
1628
|
+
# resp.device.network_profile_info.network_profile_arn #=> String
|
1629
|
+
# resp.device.network_profile_info.certificate_arn #=> String
|
1630
|
+
# resp.device.network_profile_info.certificate_expiration_time #=> Time
|
1503
1631
|
#
|
1504
1632
|
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/GetDevice AWS API Documentation
|
1505
1633
|
#
|
@@ -1597,6 +1725,44 @@ module Aws::AlexaForBusiness
|
|
1597
1725
|
req.send_request(options)
|
1598
1726
|
end
|
1599
1727
|
|
1728
|
+
# Gets the network profile details by the network profile ARN.
|
1729
|
+
#
|
1730
|
+
# @option params [required, String] :network_profile_arn
|
1731
|
+
# The ARN of the network profile associated with a device.
|
1732
|
+
#
|
1733
|
+
# @return [Types::GetNetworkProfileResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1734
|
+
#
|
1735
|
+
# * {Types::GetNetworkProfileResponse#network_profile #network_profile} => Types::NetworkProfile
|
1736
|
+
#
|
1737
|
+
# @example Request syntax with placeholder values
|
1738
|
+
#
|
1739
|
+
# resp = client.get_network_profile({
|
1740
|
+
# network_profile_arn: "Arn", # required
|
1741
|
+
# })
|
1742
|
+
#
|
1743
|
+
# @example Response structure
|
1744
|
+
#
|
1745
|
+
# resp.network_profile.network_profile_arn #=> String
|
1746
|
+
# resp.network_profile.network_profile_name #=> String
|
1747
|
+
# resp.network_profile.description #=> String
|
1748
|
+
# resp.network_profile.ssid #=> String
|
1749
|
+
# resp.network_profile.security_type #=> String, one of "OPEN", "WEP", "WPA_PSK", "WPA2_PSK", "WPA2_ENTERPRISE"
|
1750
|
+
# resp.network_profile.eap_method #=> String, one of "EAP_TLS"
|
1751
|
+
# resp.network_profile.current_password #=> String
|
1752
|
+
# resp.network_profile.next_password #=> String
|
1753
|
+
# resp.network_profile.certificate_authority_arn #=> String
|
1754
|
+
# resp.network_profile.trust_anchors #=> Array
|
1755
|
+
# resp.network_profile.trust_anchors[0] #=> String
|
1756
|
+
#
|
1757
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/GetNetworkProfile AWS API Documentation
|
1758
|
+
#
|
1759
|
+
# @overload get_network_profile(params = {})
|
1760
|
+
# @param [Hash] params ({})
|
1761
|
+
def get_network_profile(params = {}, options = {})
|
1762
|
+
req = build_request(:get_network_profile, params)
|
1763
|
+
req.send_request(options)
|
1764
|
+
end
|
1765
|
+
|
1600
1766
|
# Gets the details of a room profile by profile ARN.
|
1601
1767
|
#
|
1602
1768
|
# @option params [String] :profile_arn
|
@@ -2641,13 +2807,15 @@ module Aws::AlexaForBusiness
|
|
2641
2807
|
# @option params [Array<Types::Filter>] :filters
|
2642
2808
|
# The filters to use to list a specified set of devices. Supported
|
2643
2809
|
# filter keys are DeviceName, DeviceStatus, DeviceStatusDetailCode,
|
2644
|
-
# RoomName, DeviceType, DeviceSerialNumber, UnassociatedOnly,
|
2645
|
-
# ConnectionStatus (ONLINE and OFFLINE)
|
2810
|
+
# RoomName, DeviceType, DeviceSerialNumber, UnassociatedOnly,
|
2811
|
+
# ConnectionStatus (ONLINE and OFFLINE), NetworkProfileName,
|
2812
|
+
# NetworkProfileArn, Feature, and FailureCode.
|
2646
2813
|
#
|
2647
2814
|
# @option params [Array<Types::Sort>] :sort_criteria
|
2648
2815
|
# The sort order to use in listing the specified set of devices.
|
2649
2816
|
# Supported sort keys are DeviceName, DeviceStatus, RoomName,
|
2650
|
-
# DeviceType, DeviceSerialNumber,
|
2817
|
+
# DeviceType, DeviceSerialNumber, ConnectionStatus, NetworkProfileName,
|
2818
|
+
# NetworkProfileArn, Feature, and FailureCode.
|
2651
2819
|
#
|
2652
2820
|
# @return [Types::SearchDevicesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2653
2821
|
#
|
@@ -2683,10 +2851,13 @@ module Aws::AlexaForBusiness
|
|
2683
2851
|
# resp.devices[0].device_name #=> String
|
2684
2852
|
# resp.devices[0].software_version #=> String
|
2685
2853
|
# resp.devices[0].mac_address #=> String
|
2686
|
-
# resp.devices[0].device_status #=> String, one of "READY", "PENDING", "WAS_OFFLINE", "DEREGISTERED"
|
2854
|
+
# resp.devices[0].device_status #=> String, one of "READY", "PENDING", "WAS_OFFLINE", "DEREGISTERED", "FAILED"
|
2855
|
+
# resp.devices[0].network_profile_arn #=> String
|
2856
|
+
# resp.devices[0].network_profile_name #=> String
|
2687
2857
|
# resp.devices[0].room_arn #=> String
|
2688
2858
|
# resp.devices[0].room_name #=> String
|
2689
2859
|
# resp.devices[0].device_status_info.device_status_details #=> Array
|
2860
|
+
# resp.devices[0].device_status_info.device_status_details[0].feature #=> String, one of "BLUETOOTH", "VOLUME", "NOTIFICATIONS", "LISTS", "SKILLS", "NETWORK_PROFILE", "SETTINGS", "ALL"
|
2690
2861
|
# resp.devices[0].device_status_info.device_status_details[0].code #=> String, one of "DEVICE_SOFTWARE_UPDATE_NEEDED", "DEVICE_WAS_OFFLINE", "CREDENTIALS_ACCESS_FAILURE", "TLS_VERSION_MISMATCH", "ASSOCIATION_REJECTION", "AUTHENTICATION_FAILURE", "DHCP_FAILURE", "INTERNET_UNAVAILABLE", "DNS_FAILURE", "UNKNOWN_FAILURE", "CERTIFICATE_ISSUING_LIMIT_EXCEEDED", "INVALID_CERTIFICATE_AUTHORITY", "NETWORK_PROFILE_NOT_FOUND", "INVALID_PASSWORD_STATE", "PASSWORD_NOT_FOUND"
|
2691
2862
|
# resp.devices[0].device_status_info.connection_status #=> String, one of "ONLINE", "OFFLINE"
|
2692
2863
|
# resp.next_token #=> String
|
@@ -2701,6 +2872,76 @@ module Aws::AlexaForBusiness
|
|
2701
2872
|
req.send_request(options)
|
2702
2873
|
end
|
2703
2874
|
|
2875
|
+
# Searches network profiles and lists the ones that meet a set of filter
|
2876
|
+
# and sort criteria.
|
2877
|
+
#
|
2878
|
+
# @option params [String] :next_token
|
2879
|
+
# An optional token returned from a prior request. Use this token for
|
2880
|
+
# pagination of results from this action. If this parameter is
|
2881
|
+
# specified, the response includes only results beyond the token, up to
|
2882
|
+
# the value specified by MaxResults.
|
2883
|
+
#
|
2884
|
+
# @option params [Integer] :max_results
|
2885
|
+
# The maximum number of results to include in the response. If more
|
2886
|
+
# results exist than the specified MaxResults value, a token is included
|
2887
|
+
# in the response so that the remaining results can be retrieved.
|
2888
|
+
#
|
2889
|
+
# @option params [Array<Types::Filter>] :filters
|
2890
|
+
# The filters to use to list a specified set of network profiles. Valid
|
2891
|
+
# filters are NetworkProfileName, Ssid, and SecurityType.
|
2892
|
+
#
|
2893
|
+
# @option params [Array<Types::Sort>] :sort_criteria
|
2894
|
+
# The sort order to use to list the specified set of network profiles.
|
2895
|
+
# Valid sort criteria includes NetworkProfileName, Ssid, and
|
2896
|
+
# SecurityType.
|
2897
|
+
#
|
2898
|
+
# @return [Types::SearchNetworkProfilesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2899
|
+
#
|
2900
|
+
# * {Types::SearchNetworkProfilesResponse#network_profiles #network_profiles} => Array<Types::NetworkProfileData>
|
2901
|
+
# * {Types::SearchNetworkProfilesResponse#next_token #next_token} => String
|
2902
|
+
# * {Types::SearchNetworkProfilesResponse#total_count #total_count} => Integer
|
2903
|
+
#
|
2904
|
+
# @example Request syntax with placeholder values
|
2905
|
+
#
|
2906
|
+
# resp = client.search_network_profiles({
|
2907
|
+
# next_token: "NextToken",
|
2908
|
+
# max_results: 1,
|
2909
|
+
# filters: [
|
2910
|
+
# {
|
2911
|
+
# key: "FilterKey", # required
|
2912
|
+
# values: ["FilterValue"], # required
|
2913
|
+
# },
|
2914
|
+
# ],
|
2915
|
+
# sort_criteria: [
|
2916
|
+
# {
|
2917
|
+
# key: "SortKey", # required
|
2918
|
+
# value: "ASC", # required, accepts ASC, DESC
|
2919
|
+
# },
|
2920
|
+
# ],
|
2921
|
+
# })
|
2922
|
+
#
|
2923
|
+
# @example Response structure
|
2924
|
+
#
|
2925
|
+
# resp.network_profiles #=> Array
|
2926
|
+
# resp.network_profiles[0].network_profile_arn #=> String
|
2927
|
+
# resp.network_profiles[0].network_profile_name #=> String
|
2928
|
+
# resp.network_profiles[0].description #=> String
|
2929
|
+
# resp.network_profiles[0].ssid #=> String
|
2930
|
+
# resp.network_profiles[0].security_type #=> String, one of "OPEN", "WEP", "WPA_PSK", "WPA2_PSK", "WPA2_ENTERPRISE"
|
2931
|
+
# resp.network_profiles[0].eap_method #=> String, one of "EAP_TLS"
|
2932
|
+
# resp.network_profiles[0].certificate_authority_arn #=> String
|
2933
|
+
# resp.next_token #=> String
|
2934
|
+
# resp.total_count #=> Integer
|
2935
|
+
#
|
2936
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/SearchNetworkProfiles AWS API Documentation
|
2937
|
+
#
|
2938
|
+
# @overload search_network_profiles(params = {})
|
2939
|
+
# @param [Hash] params ({})
|
2940
|
+
def search_network_profiles(params = {}, options = {})
|
2941
|
+
req = build_request(:search_network_profiles, params)
|
2942
|
+
req.send_request(options)
|
2943
|
+
end
|
2944
|
+
|
2704
2945
|
# Searches room profiles and lists the ones that meet a set of filter
|
2705
2946
|
# criteria.
|
2706
2947
|
#
|
@@ -3076,8 +3317,23 @@ module Aws::AlexaForBusiness
|
|
3076
3317
|
req.send_request(options)
|
3077
3318
|
end
|
3078
3319
|
|
3079
|
-
# Resets a device and its account to the known default settings
|
3080
|
-
#
|
3320
|
+
# Resets a device and its account to the known default settings. This
|
3321
|
+
# clears all information and settings set by previous users in the
|
3322
|
+
# following ways:
|
3323
|
+
#
|
3324
|
+
# * Bluetooth - This unpairs all bluetooth devices paired with your echo
|
3325
|
+
# device.
|
3326
|
+
#
|
3327
|
+
# * Volume - This resets the echo device's volume to the default value.
|
3328
|
+
#
|
3329
|
+
# * Notifications - This clears all notifications from your echo device.
|
3330
|
+
#
|
3331
|
+
# * Lists - This clears all to-do items from your echo device.
|
3332
|
+
#
|
3333
|
+
# * Settings - This internally syncs the room's profile (if the device
|
3334
|
+
# is assigned to a room), contacts, address books, delegation access
|
3335
|
+
# for account linking, and communications (if enabled on the room
|
3336
|
+
# profile).
|
3081
3337
|
#
|
3082
3338
|
# @option params [String] :room_arn
|
3083
3339
|
# The ARN of the room with which the device to sync is associated.
|
@@ -3096,7 +3352,7 @@ module Aws::AlexaForBusiness
|
|
3096
3352
|
# resp = client.start_device_sync({
|
3097
3353
|
# room_arn: "Arn",
|
3098
3354
|
# device_arn: "Arn",
|
3099
|
-
# features: ["BLUETOOTH"], # required, accepts BLUETOOTH, VOLUME, NOTIFICATIONS, LISTS, SKILLS, ALL
|
3355
|
+
# features: ["BLUETOOTH"], # required, accepts BLUETOOTH, VOLUME, NOTIFICATIONS, LISTS, SKILLS, NETWORK_PROFILE, SETTINGS, ALL
|
3100
3356
|
# })
|
3101
3357
|
#
|
3102
3358
|
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/StartDeviceSync AWS API Documentation
|
@@ -3445,6 +3701,58 @@ module Aws::AlexaForBusiness
|
|
3445
3701
|
req.send_request(options)
|
3446
3702
|
end
|
3447
3703
|
|
3704
|
+
# Updates a network profile by the network profile ARN.
|
3705
|
+
#
|
3706
|
+
# @option params [required, String] :network_profile_arn
|
3707
|
+
# The ARN of the network profile associated with a device.
|
3708
|
+
#
|
3709
|
+
# @option params [String] :network_profile_name
|
3710
|
+
# The name of the network profile associated with a device.
|
3711
|
+
#
|
3712
|
+
# @option params [String] :description
|
3713
|
+
# Detailed information about a device's network profile.
|
3714
|
+
#
|
3715
|
+
# @option params [String] :current_password
|
3716
|
+
# The current password of the Wi-Fi network.
|
3717
|
+
#
|
3718
|
+
# @option params [String] :next_password
|
3719
|
+
# The next, or subsequent, password of the Wi-Fi network. This password
|
3720
|
+
# is asynchronously transmitted to the device and is used when the
|
3721
|
+
# password of the network changes to NextPassword.
|
3722
|
+
#
|
3723
|
+
# @option params [String] :certificate_authority_arn
|
3724
|
+
# The ARN of the Private Certificate Authority (PCA) created in AWS
|
3725
|
+
# Certificate Manager (ACM). This is used to issue certificates to the
|
3726
|
+
# devices.
|
3727
|
+
#
|
3728
|
+
# @option params [Array<String>] :trust_anchors
|
3729
|
+
# The root certificate(s) of your authentication server that will be
|
3730
|
+
# installed on your devices and used to trust your authentication server
|
3731
|
+
# during EAP negotiation.
|
3732
|
+
#
|
3733
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
3734
|
+
#
|
3735
|
+
# @example Request syntax with placeholder values
|
3736
|
+
#
|
3737
|
+
# resp = client.update_network_profile({
|
3738
|
+
# network_profile_arn: "Arn", # required
|
3739
|
+
# network_profile_name: "NetworkProfileName",
|
3740
|
+
# description: "NetworkProfileDescription",
|
3741
|
+
# current_password: "CurrentWiFiPassword",
|
3742
|
+
# next_password: "NextWiFiPassword",
|
3743
|
+
# certificate_authority_arn: "Arn",
|
3744
|
+
# trust_anchors: ["TrustAnchor"],
|
3745
|
+
# })
|
3746
|
+
#
|
3747
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/alexaforbusiness-2017-11-09/UpdateNetworkProfile AWS API Documentation
|
3748
|
+
#
|
3749
|
+
# @overload update_network_profile(params = {})
|
3750
|
+
# @param [Hash] params ({})
|
3751
|
+
def update_network_profile(params = {}, options = {})
|
3752
|
+
req = build_request(:update_network_profile, params)
|
3753
|
+
req.send_request(options)
|
3754
|
+
end
|
3755
|
+
|
3448
3756
|
# Updates an existing room profile by room profile ARN.
|
3449
3757
|
#
|
3450
3758
|
# @option params [String] :profile_arn
|
@@ -3589,7 +3897,7 @@ module Aws::AlexaForBusiness
|
|
3589
3897
|
params: params,
|
3590
3898
|
config: config)
|
3591
3899
|
context[:gem_name] = 'aws-sdk-alexaforbusiness'
|
3592
|
-
context[:gem_version] = '1.
|
3900
|
+
context[:gem_version] = '1.25.0'
|
3593
3901
|
Seahorse::Client::Request.new(handlers, context)
|
3594
3902
|
end
|
3595
3903
|
|
@@ -27,6 +27,8 @@ module Aws::AlexaForBusiness
|
|
27
27
|
Arn = Shapes::StringShape.new(name: 'Arn')
|
28
28
|
AssociateContactWithAddressBookRequest = Shapes::StructureShape.new(name: 'AssociateContactWithAddressBookRequest')
|
29
29
|
AssociateContactWithAddressBookResponse = Shapes::StructureShape.new(name: 'AssociateContactWithAddressBookResponse')
|
30
|
+
AssociateDeviceWithNetworkProfileRequest = Shapes::StructureShape.new(name: 'AssociateDeviceWithNetworkProfileRequest')
|
31
|
+
AssociateDeviceWithNetworkProfileResponse = Shapes::StructureShape.new(name: 'AssociateDeviceWithNetworkProfileResponse')
|
30
32
|
AssociateDeviceWithRoomRequest = Shapes::StructureShape.new(name: 'AssociateDeviceWithRoomRequest')
|
31
33
|
AssociateDeviceWithRoomResponse = Shapes::StructureShape.new(name: 'AssociateDeviceWithRoomResponse')
|
32
34
|
AssociateSkillGroupWithRoomRequest = Shapes::StructureShape.new(name: 'AssociateSkillGroupWithRoomRequest')
|
@@ -60,6 +62,7 @@ module Aws::AlexaForBusiness
|
|
60
62
|
CategoryId = Shapes::IntegerShape.new(name: 'CategoryId')
|
61
63
|
CategoryList = Shapes::ListShape.new(name: 'CategoryList')
|
62
64
|
CategoryName = Shapes::StringShape.new(name: 'CategoryName')
|
65
|
+
CertificateTime = Shapes::TimestampShape.new(name: 'CertificateTime')
|
63
66
|
ClientId = Shapes::StringShape.new(name: 'ClientId')
|
64
67
|
ClientRequestToken = Shapes::StringShape.new(name: 'ClientRequestToken')
|
65
68
|
CommsProtocol = Shapes::StringShape.new(name: 'CommsProtocol')
|
@@ -86,6 +89,8 @@ module Aws::AlexaForBusiness
|
|
86
89
|
CreateContactResponse = Shapes::StructureShape.new(name: 'CreateContactResponse')
|
87
90
|
CreateGatewayGroupRequest = Shapes::StructureShape.new(name: 'CreateGatewayGroupRequest')
|
88
91
|
CreateGatewayGroupResponse = Shapes::StructureShape.new(name: 'CreateGatewayGroupResponse')
|
92
|
+
CreateNetworkProfileRequest = Shapes::StructureShape.new(name: 'CreateNetworkProfileRequest')
|
93
|
+
CreateNetworkProfileResponse = Shapes::StructureShape.new(name: 'CreateNetworkProfileResponse')
|
89
94
|
CreateProfileRequest = Shapes::StructureShape.new(name: 'CreateProfileRequest')
|
90
95
|
CreateProfileResponse = Shapes::StructureShape.new(name: 'CreateProfileResponse')
|
91
96
|
CreateRoomRequest = Shapes::StructureShape.new(name: 'CreateRoomRequest')
|
@@ -94,6 +99,7 @@ module Aws::AlexaForBusiness
|
|
94
99
|
CreateSkillGroupResponse = Shapes::StructureShape.new(name: 'CreateSkillGroupResponse')
|
95
100
|
CreateUserRequest = Shapes::StructureShape.new(name: 'CreateUserRequest')
|
96
101
|
CreateUserResponse = Shapes::StructureShape.new(name: 'CreateUserResponse')
|
102
|
+
CurrentWiFiPassword = Shapes::StringShape.new(name: 'CurrentWiFiPassword')
|
97
103
|
CustomerS3BucketName = Shapes::StringShape.new(name: 'CustomerS3BucketName')
|
98
104
|
Date = Shapes::StringShape.new(name: 'Date')
|
99
105
|
DeleteAddressBookRequest = Shapes::StructureShape.new(name: 'DeleteAddressBookRequest')
|
@@ -110,6 +116,8 @@ module Aws::AlexaForBusiness
|
|
110
116
|
DeleteDeviceUsageDataResponse = Shapes::StructureShape.new(name: 'DeleteDeviceUsageDataResponse')
|
111
117
|
DeleteGatewayGroupRequest = Shapes::StructureShape.new(name: 'DeleteGatewayGroupRequest')
|
112
118
|
DeleteGatewayGroupResponse = Shapes::StructureShape.new(name: 'DeleteGatewayGroupResponse')
|
119
|
+
DeleteNetworkProfileRequest = Shapes::StructureShape.new(name: 'DeleteNetworkProfileRequest')
|
120
|
+
DeleteNetworkProfileResponse = Shapes::StructureShape.new(name: 'DeleteNetworkProfileResponse')
|
113
121
|
DeleteProfileRequest = Shapes::StructureShape.new(name: 'DeleteProfileRequest')
|
114
122
|
DeleteProfileResponse = Shapes::StructureShape.new(name: 'DeleteProfileResponse')
|
115
123
|
DeleteRoomRequest = Shapes::StructureShape.new(name: 'DeleteRoomRequest')
|
@@ -133,6 +141,7 @@ module Aws::AlexaForBusiness
|
|
133
141
|
DeviceEventType = Shapes::StringShape.new(name: 'DeviceEventType')
|
134
142
|
DeviceEventValue = Shapes::StringShape.new(name: 'DeviceEventValue')
|
135
143
|
DeviceName = Shapes::StringShape.new(name: 'DeviceName')
|
144
|
+
DeviceNetworkProfileInfo = Shapes::StructureShape.new(name: 'DeviceNetworkProfileInfo')
|
136
145
|
DeviceNotRegisteredException = Shapes::StructureShape.new(name: 'DeviceNotRegisteredException')
|
137
146
|
DeviceSerialNumber = Shapes::StringShape.new(name: 'DeviceSerialNumber')
|
138
147
|
DeviceSerialNumberForAVS = Shapes::StringShape.new(name: 'DeviceSerialNumberForAVS')
|
@@ -201,6 +210,8 @@ module Aws::AlexaForBusiness
|
|
201
210
|
GetGatewayResponse = Shapes::StructureShape.new(name: 'GetGatewayResponse')
|
202
211
|
GetInvitationConfigurationRequest = Shapes::StructureShape.new(name: 'GetInvitationConfigurationRequest')
|
203
212
|
GetInvitationConfigurationResponse = Shapes::StructureShape.new(name: 'GetInvitationConfigurationResponse')
|
213
|
+
GetNetworkProfileRequest = Shapes::StructureShape.new(name: 'GetNetworkProfileRequest')
|
214
|
+
GetNetworkProfileResponse = Shapes::StructureShape.new(name: 'GetNetworkProfileResponse')
|
204
215
|
GetProfileRequest = Shapes::StructureShape.new(name: 'GetProfileRequest')
|
205
216
|
GetProfileResponse = Shapes::StructureShape.new(name: 'GetProfileResponse')
|
206
217
|
GetRoomRequest = Shapes::StructureShape.new(name: 'GetRoomRequest')
|
@@ -213,6 +224,8 @@ module Aws::AlexaForBusiness
|
|
213
224
|
IconUrl = Shapes::StringShape.new(name: 'IconUrl')
|
214
225
|
InvalidCertificateAuthorityException = Shapes::StructureShape.new(name: 'InvalidCertificateAuthorityException')
|
215
226
|
InvalidDeviceException = Shapes::StructureShape.new(name: 'InvalidDeviceException')
|
227
|
+
InvalidSecretsManagerResourceException = Shapes::StructureShape.new(name: 'InvalidSecretsManagerResourceException')
|
228
|
+
InvalidServiceLinkedRoleStateException = Shapes::StructureShape.new(name: 'InvalidServiceLinkedRoleStateException')
|
216
229
|
InvalidUserStatusException = Shapes::StructureShape.new(name: 'InvalidUserStatusException')
|
217
230
|
InvocationPhrase = Shapes::StringShape.new(name: 'InvocationPhrase')
|
218
231
|
Key = Shapes::StringShape.new(name: 'Key')
|
@@ -243,8 +256,17 @@ module Aws::AlexaForBusiness
|
|
243
256
|
MaxVolumeLimit = Shapes::IntegerShape.new(name: 'MaxVolumeLimit')
|
244
257
|
MeetingSetting = Shapes::StructureShape.new(name: 'MeetingSetting')
|
245
258
|
NameInUseException = Shapes::StructureShape.new(name: 'NameInUseException')
|
259
|
+
NetworkEapMethod = Shapes::StringShape.new(name: 'NetworkEapMethod')
|
260
|
+
NetworkProfile = Shapes::StructureShape.new(name: 'NetworkProfile')
|
261
|
+
NetworkProfileData = Shapes::StructureShape.new(name: 'NetworkProfileData')
|
262
|
+
NetworkProfileDataList = Shapes::ListShape.new(name: 'NetworkProfileDataList')
|
263
|
+
NetworkProfileDescription = Shapes::StringShape.new(name: 'NetworkProfileDescription')
|
264
|
+
NetworkProfileName = Shapes::StringShape.new(name: 'NetworkProfileName')
|
265
|
+
NetworkSecurityType = Shapes::StringShape.new(name: 'NetworkSecurityType')
|
266
|
+
NetworkSsid = Shapes::StringShape.new(name: 'NetworkSsid')
|
246
267
|
NewInThisVersionBulletPoints = Shapes::ListShape.new(name: 'NewInThisVersionBulletPoints')
|
247
268
|
NextToken = Shapes::StringShape.new(name: 'NextToken')
|
269
|
+
NextWiFiPassword = Shapes::StringShape.new(name: 'NextWiFiPassword')
|
248
270
|
NotFoundException = Shapes::StructureShape.new(name: 'NotFoundException')
|
249
271
|
OneClickIdDelay = Shapes::StringShape.new(name: 'OneClickIdDelay')
|
250
272
|
OneClickPinDelay = Shapes::StringShape.new(name: 'OneClickPinDelay')
|
@@ -299,6 +321,8 @@ module Aws::AlexaForBusiness
|
|
299
321
|
SearchContactsResponse = Shapes::StructureShape.new(name: 'SearchContactsResponse')
|
300
322
|
SearchDevicesRequest = Shapes::StructureShape.new(name: 'SearchDevicesRequest')
|
301
323
|
SearchDevicesResponse = Shapes::StructureShape.new(name: 'SearchDevicesResponse')
|
324
|
+
SearchNetworkProfilesRequest = Shapes::StructureShape.new(name: 'SearchNetworkProfilesRequest')
|
325
|
+
SearchNetworkProfilesResponse = Shapes::StructureShape.new(name: 'SearchNetworkProfilesResponse')
|
302
326
|
SearchProfilesRequest = Shapes::StructureShape.new(name: 'SearchProfilesRequest')
|
303
327
|
SearchProfilesResponse = Shapes::StructureShape.new(name: 'SearchProfilesResponse')
|
304
328
|
SearchRoomsRequest = Shapes::StructureShape.new(name: 'SearchRoomsRequest')
|
@@ -359,6 +383,8 @@ module Aws::AlexaForBusiness
|
|
359
383
|
TimeToLiveInSeconds = Shapes::IntegerShape.new(name: 'TimeToLiveInSeconds')
|
360
384
|
Timezone = Shapes::StringShape.new(name: 'Timezone')
|
361
385
|
TotalCount = Shapes::IntegerShape.new(name: 'TotalCount')
|
386
|
+
TrustAnchor = Shapes::StringShape.new(name: 'TrustAnchor')
|
387
|
+
TrustAnchorList = Shapes::ListShape.new(name: 'TrustAnchorList')
|
362
388
|
UnauthorizedException = Shapes::StructureShape.new(name: 'UnauthorizedException')
|
363
389
|
UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
|
364
390
|
UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
|
@@ -376,6 +402,8 @@ module Aws::AlexaForBusiness
|
|
376
402
|
UpdateGatewayGroupResponse = Shapes::StructureShape.new(name: 'UpdateGatewayGroupResponse')
|
377
403
|
UpdateGatewayRequest = Shapes::StructureShape.new(name: 'UpdateGatewayRequest')
|
378
404
|
UpdateGatewayResponse = Shapes::StructureShape.new(name: 'UpdateGatewayResponse')
|
405
|
+
UpdateNetworkProfileRequest = Shapes::StructureShape.new(name: 'UpdateNetworkProfileRequest')
|
406
|
+
UpdateNetworkProfileResponse = Shapes::StructureShape.new(name: 'UpdateNetworkProfileResponse')
|
379
407
|
UpdateProfileRequest = Shapes::StructureShape.new(name: 'UpdateProfileRequest')
|
380
408
|
UpdateProfileResponse = Shapes::StructureShape.new(name: 'UpdateProfileResponse')
|
381
409
|
UpdateRoomRequest = Shapes::StructureShape.new(name: 'UpdateRoomRequest')
|
@@ -407,6 +435,9 @@ module Aws::AlexaForBusiness
|
|
407
435
|
|
408
436
|
AddressBookDataList.member = Shapes::ShapeRef.new(shape: AddressBookData)
|
409
437
|
|
438
|
+
AlreadyExistsException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
439
|
+
AlreadyExistsException.struct_class = Types::AlreadyExistsException
|
440
|
+
|
410
441
|
ApproveSkillRequest.add_member(:skill_id, Shapes::ShapeRef.new(shape: SkillId, required: true, location_name: "SkillId"))
|
411
442
|
ApproveSkillRequest.struct_class = Types::ApproveSkillRequest
|
412
443
|
|
@@ -418,6 +449,12 @@ module Aws::AlexaForBusiness
|
|
418
449
|
|
419
450
|
AssociateContactWithAddressBookResponse.struct_class = Types::AssociateContactWithAddressBookResponse
|
420
451
|
|
452
|
+
AssociateDeviceWithNetworkProfileRequest.add_member(:device_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "DeviceArn"))
|
453
|
+
AssociateDeviceWithNetworkProfileRequest.add_member(:network_profile_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "NetworkProfileArn"))
|
454
|
+
AssociateDeviceWithNetworkProfileRequest.struct_class = Types::AssociateDeviceWithNetworkProfileRequest
|
455
|
+
|
456
|
+
AssociateDeviceWithNetworkProfileResponse.struct_class = Types::AssociateDeviceWithNetworkProfileResponse
|
457
|
+
|
421
458
|
AssociateDeviceWithRoomRequest.add_member(:device_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "DeviceArn"))
|
422
459
|
AssociateDeviceWithRoomRequest.add_member(:room_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "RoomArn"))
|
423
460
|
AssociateDeviceWithRoomRequest.struct_class = Types::AssociateDeviceWithRoomRequest
|
@@ -487,6 +524,9 @@ module Aws::AlexaForBusiness
|
|
487
524
|
|
488
525
|
CategoryList.member = Shapes::ShapeRef.new(shape: Category)
|
489
526
|
|
527
|
+
ConcurrentModificationException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
528
|
+
ConcurrentModificationException.struct_class = Types::ConcurrentModificationException
|
529
|
+
|
490
530
|
ConferencePreference.add_member(:default_conference_provider_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "DefaultConferenceProviderArn"))
|
491
531
|
ConferencePreference.struct_class = Types::ConferencePreference
|
492
532
|
|
@@ -570,6 +610,21 @@ module Aws::AlexaForBusiness
|
|
570
610
|
CreateGatewayGroupResponse.add_member(:gateway_group_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "GatewayGroupArn"))
|
571
611
|
CreateGatewayGroupResponse.struct_class = Types::CreateGatewayGroupResponse
|
572
612
|
|
613
|
+
CreateNetworkProfileRequest.add_member(:network_profile_name, Shapes::ShapeRef.new(shape: NetworkProfileName, required: true, location_name: "NetworkProfileName"))
|
614
|
+
CreateNetworkProfileRequest.add_member(:description, Shapes::ShapeRef.new(shape: NetworkProfileDescription, location_name: "Description"))
|
615
|
+
CreateNetworkProfileRequest.add_member(:ssid, Shapes::ShapeRef.new(shape: NetworkSsid, required: true, location_name: "Ssid"))
|
616
|
+
CreateNetworkProfileRequest.add_member(:security_type, Shapes::ShapeRef.new(shape: NetworkSecurityType, required: true, location_name: "SecurityType"))
|
617
|
+
CreateNetworkProfileRequest.add_member(:eap_method, Shapes::ShapeRef.new(shape: NetworkEapMethod, location_name: "EapMethod"))
|
618
|
+
CreateNetworkProfileRequest.add_member(:current_password, Shapes::ShapeRef.new(shape: CurrentWiFiPassword, location_name: "CurrentPassword"))
|
619
|
+
CreateNetworkProfileRequest.add_member(:next_password, Shapes::ShapeRef.new(shape: NextWiFiPassword, location_name: "NextPassword"))
|
620
|
+
CreateNetworkProfileRequest.add_member(:certificate_authority_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "CertificateAuthorityArn"))
|
621
|
+
CreateNetworkProfileRequest.add_member(:trust_anchors, Shapes::ShapeRef.new(shape: TrustAnchorList, location_name: "TrustAnchors"))
|
622
|
+
CreateNetworkProfileRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, required: true, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
|
623
|
+
CreateNetworkProfileRequest.struct_class = Types::CreateNetworkProfileRequest
|
624
|
+
|
625
|
+
CreateNetworkProfileResponse.add_member(:network_profile_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "NetworkProfileArn"))
|
626
|
+
CreateNetworkProfileResponse.struct_class = Types::CreateNetworkProfileResponse
|
627
|
+
|
573
628
|
CreateProfileRequest.add_member(:profile_name, Shapes::ShapeRef.new(shape: ProfileName, required: true, location_name: "ProfileName"))
|
574
629
|
CreateProfileRequest.add_member(:timezone, Shapes::ShapeRef.new(shape: Timezone, required: true, location_name: "Timezone"))
|
575
630
|
CreateProfileRequest.add_member(:address, Shapes::ShapeRef.new(shape: Address, required: true, location_name: "Address"))
|
@@ -651,6 +706,11 @@ module Aws::AlexaForBusiness
|
|
651
706
|
|
652
707
|
DeleteGatewayGroupResponse.struct_class = Types::DeleteGatewayGroupResponse
|
653
708
|
|
709
|
+
DeleteNetworkProfileRequest.add_member(:network_profile_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "NetworkProfileArn"))
|
710
|
+
DeleteNetworkProfileRequest.struct_class = Types::DeleteNetworkProfileRequest
|
711
|
+
|
712
|
+
DeleteNetworkProfileResponse.struct_class = Types::DeleteNetworkProfileResponse
|
713
|
+
|
654
714
|
DeleteProfileRequest.add_member(:profile_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "ProfileArn"))
|
655
715
|
DeleteProfileRequest.struct_class = Types::DeleteProfileRequest
|
656
716
|
|
@@ -700,6 +760,7 @@ module Aws::AlexaForBusiness
|
|
700
760
|
Device.add_member(:room_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "RoomArn"))
|
701
761
|
Device.add_member(:device_status, Shapes::ShapeRef.new(shape: DeviceStatus, location_name: "DeviceStatus"))
|
702
762
|
Device.add_member(:device_status_info, Shapes::ShapeRef.new(shape: DeviceStatusInfo, location_name: "DeviceStatusInfo"))
|
763
|
+
Device.add_member(:network_profile_info, Shapes::ShapeRef.new(shape: DeviceNetworkProfileInfo, location_name: "NetworkProfileInfo"))
|
703
764
|
Device.struct_class = Types::Device
|
704
765
|
|
705
766
|
DeviceData.add_member(:device_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "DeviceArn"))
|
@@ -709,6 +770,8 @@ module Aws::AlexaForBusiness
|
|
709
770
|
DeviceData.add_member(:software_version, Shapes::ShapeRef.new(shape: SoftwareVersion, location_name: "SoftwareVersion"))
|
710
771
|
DeviceData.add_member(:mac_address, Shapes::ShapeRef.new(shape: MacAddress, location_name: "MacAddress"))
|
711
772
|
DeviceData.add_member(:device_status, Shapes::ShapeRef.new(shape: DeviceStatus, location_name: "DeviceStatus"))
|
773
|
+
DeviceData.add_member(:network_profile_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "NetworkProfileArn"))
|
774
|
+
DeviceData.add_member(:network_profile_name, Shapes::ShapeRef.new(shape: NetworkProfileName, location_name: "NetworkProfileName"))
|
712
775
|
DeviceData.add_member(:room_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "RoomArn"))
|
713
776
|
DeviceData.add_member(:room_name, Shapes::ShapeRef.new(shape: RoomName, location_name: "RoomName"))
|
714
777
|
DeviceData.add_member(:device_status_info, Shapes::ShapeRef.new(shape: DeviceStatusInfo, location_name: "DeviceStatusInfo"))
|
@@ -723,6 +786,15 @@ module Aws::AlexaForBusiness
|
|
723
786
|
|
724
787
|
DeviceEventList.member = Shapes::ShapeRef.new(shape: DeviceEvent)
|
725
788
|
|
789
|
+
DeviceNetworkProfileInfo.add_member(:network_profile_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "NetworkProfileArn"))
|
790
|
+
DeviceNetworkProfileInfo.add_member(:certificate_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "CertificateArn"))
|
791
|
+
DeviceNetworkProfileInfo.add_member(:certificate_expiration_time, Shapes::ShapeRef.new(shape: CertificateTime, location_name: "CertificateExpirationTime"))
|
792
|
+
DeviceNetworkProfileInfo.struct_class = Types::DeviceNetworkProfileInfo
|
793
|
+
|
794
|
+
DeviceNotRegisteredException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
795
|
+
DeviceNotRegisteredException.struct_class = Types::DeviceNotRegisteredException
|
796
|
+
|
797
|
+
DeviceStatusDetail.add_member(:feature, Shapes::ShapeRef.new(shape: Feature, location_name: "Feature"))
|
726
798
|
DeviceStatusDetail.add_member(:code, Shapes::ShapeRef.new(shape: DeviceStatusDetailCode, location_name: "Code"))
|
727
799
|
DeviceStatusDetail.struct_class = Types::DeviceStatusDetail
|
728
800
|
|
@@ -853,6 +925,12 @@ module Aws::AlexaForBusiness
|
|
853
925
|
GetInvitationConfigurationResponse.add_member(:private_skill_ids, Shapes::ShapeRef.new(shape: ShortSkillIdList, location_name: "PrivateSkillIds"))
|
854
926
|
GetInvitationConfigurationResponse.struct_class = Types::GetInvitationConfigurationResponse
|
855
927
|
|
928
|
+
GetNetworkProfileRequest.add_member(:network_profile_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "NetworkProfileArn"))
|
929
|
+
GetNetworkProfileRequest.struct_class = Types::GetNetworkProfileRequest
|
930
|
+
|
931
|
+
GetNetworkProfileResponse.add_member(:network_profile, Shapes::ShapeRef.new(shape: NetworkProfile, location_name: "NetworkProfile"))
|
932
|
+
GetNetworkProfileResponse.struct_class = Types::GetNetworkProfileResponse
|
933
|
+
|
856
934
|
GetProfileRequest.add_member(:profile_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "ProfileArn"))
|
857
935
|
GetProfileRequest.struct_class = Types::GetProfileRequest
|
858
936
|
|
@@ -883,6 +961,24 @@ module Aws::AlexaForBusiness
|
|
883
961
|
IPDialIn.add_member(:comms_protocol, Shapes::ShapeRef.new(shape: CommsProtocol, required: true, location_name: "CommsProtocol"))
|
884
962
|
IPDialIn.struct_class = Types::IPDialIn
|
885
963
|
|
964
|
+
InvalidCertificateAuthorityException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
965
|
+
InvalidCertificateAuthorityException.struct_class = Types::InvalidCertificateAuthorityException
|
966
|
+
|
967
|
+
InvalidDeviceException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
968
|
+
InvalidDeviceException.struct_class = Types::InvalidDeviceException
|
969
|
+
|
970
|
+
InvalidSecretsManagerResourceException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
971
|
+
InvalidSecretsManagerResourceException.struct_class = Types::InvalidSecretsManagerResourceException
|
972
|
+
|
973
|
+
InvalidServiceLinkedRoleStateException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
974
|
+
InvalidServiceLinkedRoleStateException.struct_class = Types::InvalidServiceLinkedRoleStateException
|
975
|
+
|
976
|
+
InvalidUserStatusException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
977
|
+
InvalidUserStatusException.struct_class = Types::InvalidUserStatusException
|
978
|
+
|
979
|
+
LimitExceededException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
980
|
+
LimitExceededException.struct_class = Types::LimitExceededException
|
981
|
+
|
886
982
|
ListBusinessReportSchedulesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
887
983
|
ListBusinessReportSchedulesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
|
888
984
|
ListBusinessReportSchedulesRequest.struct_class = Types::ListBusinessReportSchedulesRequest
|
@@ -975,8 +1071,37 @@ module Aws::AlexaForBusiness
|
|
975
1071
|
MeetingSetting.add_member(:require_pin, Shapes::ShapeRef.new(shape: RequirePin, required: true, location_name: "RequirePin"))
|
976
1072
|
MeetingSetting.struct_class = Types::MeetingSetting
|
977
1073
|
|
1074
|
+
NameInUseException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
1075
|
+
NameInUseException.struct_class = Types::NameInUseException
|
1076
|
+
|
1077
|
+
NetworkProfile.add_member(:network_profile_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "NetworkProfileArn"))
|
1078
|
+
NetworkProfile.add_member(:network_profile_name, Shapes::ShapeRef.new(shape: NetworkProfileName, location_name: "NetworkProfileName"))
|
1079
|
+
NetworkProfile.add_member(:description, Shapes::ShapeRef.new(shape: NetworkProfileDescription, location_name: "Description"))
|
1080
|
+
NetworkProfile.add_member(:ssid, Shapes::ShapeRef.new(shape: NetworkSsid, location_name: "Ssid"))
|
1081
|
+
NetworkProfile.add_member(:security_type, Shapes::ShapeRef.new(shape: NetworkSecurityType, location_name: "SecurityType"))
|
1082
|
+
NetworkProfile.add_member(:eap_method, Shapes::ShapeRef.new(shape: NetworkEapMethod, location_name: "EapMethod"))
|
1083
|
+
NetworkProfile.add_member(:current_password, Shapes::ShapeRef.new(shape: CurrentWiFiPassword, location_name: "CurrentPassword"))
|
1084
|
+
NetworkProfile.add_member(:next_password, Shapes::ShapeRef.new(shape: NextWiFiPassword, location_name: "NextPassword"))
|
1085
|
+
NetworkProfile.add_member(:certificate_authority_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "CertificateAuthorityArn"))
|
1086
|
+
NetworkProfile.add_member(:trust_anchors, Shapes::ShapeRef.new(shape: TrustAnchorList, location_name: "TrustAnchors"))
|
1087
|
+
NetworkProfile.struct_class = Types::NetworkProfile
|
1088
|
+
|
1089
|
+
NetworkProfileData.add_member(:network_profile_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "NetworkProfileArn"))
|
1090
|
+
NetworkProfileData.add_member(:network_profile_name, Shapes::ShapeRef.new(shape: NetworkProfileName, location_name: "NetworkProfileName"))
|
1091
|
+
NetworkProfileData.add_member(:description, Shapes::ShapeRef.new(shape: NetworkProfileDescription, location_name: "Description"))
|
1092
|
+
NetworkProfileData.add_member(:ssid, Shapes::ShapeRef.new(shape: NetworkSsid, location_name: "Ssid"))
|
1093
|
+
NetworkProfileData.add_member(:security_type, Shapes::ShapeRef.new(shape: NetworkSecurityType, location_name: "SecurityType"))
|
1094
|
+
NetworkProfileData.add_member(:eap_method, Shapes::ShapeRef.new(shape: NetworkEapMethod, location_name: "EapMethod"))
|
1095
|
+
NetworkProfileData.add_member(:certificate_authority_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "CertificateAuthorityArn"))
|
1096
|
+
NetworkProfileData.struct_class = Types::NetworkProfileData
|
1097
|
+
|
1098
|
+
NetworkProfileDataList.member = Shapes::ShapeRef.new(shape: NetworkProfileData)
|
1099
|
+
|
978
1100
|
NewInThisVersionBulletPoints.member = Shapes::ShapeRef.new(shape: BulletPoint)
|
979
1101
|
|
1102
|
+
NotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
1103
|
+
NotFoundException.struct_class = Types::NotFoundException
|
1104
|
+
|
980
1105
|
PSTNDialIn.add_member(:country_code, Shapes::ShapeRef.new(shape: CountryCode, required: true, location_name: "CountryCode"))
|
981
1106
|
PSTNDialIn.add_member(:phone_number, Shapes::ShapeRef.new(shape: OutboundPhoneNumber, required: true, location_name: "PhoneNumber"))
|
982
1107
|
PSTNDialIn.add_member(:one_click_id_delay, Shapes::ShapeRef.new(shape: OneClickIdDelay, required: true, location_name: "OneClickIdDelay"))
|
@@ -1059,6 +1184,13 @@ module Aws::AlexaForBusiness
|
|
1059
1184
|
ResolveRoomResponse.add_member(:room_skill_parameters, Shapes::ShapeRef.new(shape: RoomSkillParameters, location_name: "RoomSkillParameters"))
|
1060
1185
|
ResolveRoomResponse.struct_class = Types::ResolveRoomResponse
|
1061
1186
|
|
1187
|
+
ResourceAssociatedException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
1188
|
+
ResourceAssociatedException.struct_class = Types::ResourceAssociatedException
|
1189
|
+
|
1190
|
+
ResourceInUseException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
1191
|
+
ResourceInUseException.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken"))
|
1192
|
+
ResourceInUseException.struct_class = Types::ResourceInUseException
|
1193
|
+
|
1062
1194
|
Reviews.key = Shapes::ShapeRef.new(shape: ReviewKey)
|
1063
1195
|
Reviews.value = Shapes::ShapeRef.new(shape: ReviewValue)
|
1064
1196
|
|
@@ -1126,6 +1258,17 @@ module Aws::AlexaForBusiness
|
|
1126
1258
|
SearchDevicesResponse.add_member(:total_count, Shapes::ShapeRef.new(shape: TotalCount, location_name: "TotalCount"))
|
1127
1259
|
SearchDevicesResponse.struct_class = Types::SearchDevicesResponse
|
1128
1260
|
|
1261
|
+
SearchNetworkProfilesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
1262
|
+
SearchNetworkProfilesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
|
1263
|
+
SearchNetworkProfilesRequest.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "Filters"))
|
1264
|
+
SearchNetworkProfilesRequest.add_member(:sort_criteria, Shapes::ShapeRef.new(shape: SortList, location_name: "SortCriteria"))
|
1265
|
+
SearchNetworkProfilesRequest.struct_class = Types::SearchNetworkProfilesRequest
|
1266
|
+
|
1267
|
+
SearchNetworkProfilesResponse.add_member(:network_profiles, Shapes::ShapeRef.new(shape: NetworkProfileDataList, location_name: "NetworkProfiles"))
|
1268
|
+
SearchNetworkProfilesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
1269
|
+
SearchNetworkProfilesResponse.add_member(:total_count, Shapes::ShapeRef.new(shape: TotalCount, location_name: "TotalCount"))
|
1270
|
+
SearchNetworkProfilesResponse.struct_class = Types::SearchNetworkProfilesResponse
|
1271
|
+
|
1129
1272
|
SearchProfilesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
1130
1273
|
SearchProfilesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
|
1131
1274
|
SearchProfilesRequest.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "Filters"))
|
@@ -1210,6 +1353,9 @@ module Aws::AlexaForBusiness
|
|
1210
1353
|
|
1211
1354
|
SkillGroupDataList.member = Shapes::ShapeRef.new(shape: SkillGroupData)
|
1212
1355
|
|
1356
|
+
SkillNotLinkedException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
1357
|
+
SkillNotLinkedException.struct_class = Types::SkillNotLinkedException
|
1358
|
+
|
1213
1359
|
SkillSummary.add_member(:skill_id, Shapes::ShapeRef.new(shape: SkillId, location_name: "SkillId"))
|
1214
1360
|
SkillSummary.add_member(:skill_name, Shapes::ShapeRef.new(shape: SkillName, location_name: "SkillName"))
|
1215
1361
|
SkillSummary.add_member(:supports_linking, Shapes::ShapeRef.new(shape: boolean, location_name: "SupportsLinking"))
|
@@ -1283,6 +1429,11 @@ module Aws::AlexaForBusiness
|
|
1283
1429
|
|
1284
1430
|
TextList.member = Shapes::ShapeRef.new(shape: Text)
|
1285
1431
|
|
1432
|
+
TrustAnchorList.member = Shapes::ShapeRef.new(shape: TrustAnchor)
|
1433
|
+
|
1434
|
+
UnauthorizedException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
1435
|
+
UnauthorizedException.struct_class = Types::UnauthorizedException
|
1436
|
+
|
1286
1437
|
UntagResourceRequest.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "Arn"))
|
1287
1438
|
UntagResourceRequest.add_member(:tag_keys, Shapes::ShapeRef.new(shape: TagKeyList, required: true, location_name: "TagKeys"))
|
1288
1439
|
UntagResourceRequest.struct_class = Types::UntagResourceRequest
|
@@ -1345,6 +1496,17 @@ module Aws::AlexaForBusiness
|
|
1345
1496
|
|
1346
1497
|
UpdateGatewayResponse.struct_class = Types::UpdateGatewayResponse
|
1347
1498
|
|
1499
|
+
UpdateNetworkProfileRequest.add_member(:network_profile_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "NetworkProfileArn"))
|
1500
|
+
UpdateNetworkProfileRequest.add_member(:network_profile_name, Shapes::ShapeRef.new(shape: NetworkProfileName, location_name: "NetworkProfileName"))
|
1501
|
+
UpdateNetworkProfileRequest.add_member(:description, Shapes::ShapeRef.new(shape: NetworkProfileDescription, location_name: "Description"))
|
1502
|
+
UpdateNetworkProfileRequest.add_member(:current_password, Shapes::ShapeRef.new(shape: CurrentWiFiPassword, location_name: "CurrentPassword"))
|
1503
|
+
UpdateNetworkProfileRequest.add_member(:next_password, Shapes::ShapeRef.new(shape: NextWiFiPassword, location_name: "NextPassword"))
|
1504
|
+
UpdateNetworkProfileRequest.add_member(:certificate_authority_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "CertificateAuthorityArn"))
|
1505
|
+
UpdateNetworkProfileRequest.add_member(:trust_anchors, Shapes::ShapeRef.new(shape: TrustAnchorList, location_name: "TrustAnchors"))
|
1506
|
+
UpdateNetworkProfileRequest.struct_class = Types::UpdateNetworkProfileRequest
|
1507
|
+
|
1508
|
+
UpdateNetworkProfileResponse.struct_class = Types::UpdateNetworkProfileResponse
|
1509
|
+
|
1348
1510
|
UpdateProfileRequest.add_member(:profile_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "ProfileArn"))
|
1349
1511
|
UpdateProfileRequest.add_member(:profile_name, Shapes::ShapeRef.new(shape: ProfileName, location_name: "ProfileName"))
|
1350
1512
|
UpdateProfileRequest.add_member(:is_default, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsDefault"))
|
@@ -1424,6 +1586,17 @@ module Aws::AlexaForBusiness
|
|
1424
1586
|
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
1425
1587
|
end)
|
1426
1588
|
|
1589
|
+
api.add_operation(:associate_device_with_network_profile, Seahorse::Model::Operation.new.tap do |o|
|
1590
|
+
o.name = "AssociateDeviceWithNetworkProfile"
|
1591
|
+
o.http_method = "POST"
|
1592
|
+
o.http_request_uri = "/"
|
1593
|
+
o.input = Shapes::ShapeRef.new(shape: AssociateDeviceWithNetworkProfileRequest)
|
1594
|
+
o.output = Shapes::ShapeRef.new(shape: AssociateDeviceWithNetworkProfileResponse)
|
1595
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
1596
|
+
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
1597
|
+
o.errors << Shapes::ShapeRef.new(shape: DeviceNotRegisteredException)
|
1598
|
+
end)
|
1599
|
+
|
1427
1600
|
api.add_operation(:associate_device_with_room, Seahorse::Model::Operation.new.tap do |o|
|
1428
1601
|
o.name = "AssociateDeviceWithRoom"
|
1429
1602
|
o.http_method = "POST"
|
@@ -1513,6 +1686,19 @@ module Aws::AlexaForBusiness
|
|
1513
1686
|
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
1514
1687
|
end)
|
1515
1688
|
|
1689
|
+
api.add_operation(:create_network_profile, Seahorse::Model::Operation.new.tap do |o|
|
1690
|
+
o.name = "CreateNetworkProfile"
|
1691
|
+
o.http_method = "POST"
|
1692
|
+
o.http_request_uri = "/"
|
1693
|
+
o.input = Shapes::ShapeRef.new(shape: CreateNetworkProfileRequest)
|
1694
|
+
o.output = Shapes::ShapeRef.new(shape: CreateNetworkProfileResponse)
|
1695
|
+
o.errors << Shapes::ShapeRef.new(shape: AlreadyExistsException)
|
1696
|
+
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
1697
|
+
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
1698
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidCertificateAuthorityException)
|
1699
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidServiceLinkedRoleStateException)
|
1700
|
+
end)
|
1701
|
+
|
1516
1702
|
api.add_operation(:create_profile, Seahorse::Model::Operation.new.tap do |o|
|
1517
1703
|
o.name = "CreateProfile"
|
1518
1704
|
o.http_method = "POST"
|
@@ -1626,6 +1812,17 @@ module Aws::AlexaForBusiness
|
|
1626
1812
|
o.errors << Shapes::ShapeRef.new(shape: ResourceAssociatedException)
|
1627
1813
|
end)
|
1628
1814
|
|
1815
|
+
api.add_operation(:delete_network_profile, Seahorse::Model::Operation.new.tap do |o|
|
1816
|
+
o.name = "DeleteNetworkProfile"
|
1817
|
+
o.http_method = "POST"
|
1818
|
+
o.http_request_uri = "/"
|
1819
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteNetworkProfileRequest)
|
1820
|
+
o.output = Shapes::ShapeRef.new(shape: DeleteNetworkProfileResponse)
|
1821
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
|
1822
|
+
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
1823
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
1824
|
+
end)
|
1825
|
+
|
1629
1826
|
api.add_operation(:delete_profile, Seahorse::Model::Operation.new.tap do |o|
|
1630
1827
|
o.name = "DeleteProfile"
|
1631
1828
|
o.http_method = "POST"
|
@@ -1813,6 +2010,16 @@ module Aws::AlexaForBusiness
|
|
1813
2010
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
1814
2011
|
end)
|
1815
2012
|
|
2013
|
+
api.add_operation(:get_network_profile, Seahorse::Model::Operation.new.tap do |o|
|
2014
|
+
o.name = "GetNetworkProfile"
|
2015
|
+
o.http_method = "POST"
|
2016
|
+
o.http_request_uri = "/"
|
2017
|
+
o.input = Shapes::ShapeRef.new(shape: GetNetworkProfileRequest)
|
2018
|
+
o.output = Shapes::ShapeRef.new(shape: GetNetworkProfileResponse)
|
2019
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
2020
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidSecretsManagerResourceException)
|
2021
|
+
end)
|
2022
|
+
|
1816
2023
|
api.add_operation(:get_profile, Seahorse::Model::Operation.new.tap do |o|
|
1817
2024
|
o.name = "GetProfile"
|
1818
2025
|
o.http_method = "POST"
|
@@ -2112,6 +2319,20 @@ module Aws::AlexaForBusiness
|
|
2112
2319
|
)
|
2113
2320
|
end)
|
2114
2321
|
|
2322
|
+
api.add_operation(:search_network_profiles, Seahorse::Model::Operation.new.tap do |o|
|
2323
|
+
o.name = "SearchNetworkProfiles"
|
2324
|
+
o.http_method = "POST"
|
2325
|
+
o.http_request_uri = "/"
|
2326
|
+
o.input = Shapes::ShapeRef.new(shape: SearchNetworkProfilesRequest)
|
2327
|
+
o.output = Shapes::ShapeRef.new(shape: SearchNetworkProfilesResponse)
|
2328
|
+
o[:pager] = Aws::Pager.new(
|
2329
|
+
limit_key: "max_results",
|
2330
|
+
tokens: {
|
2331
|
+
"next_token" => "next_token"
|
2332
|
+
}
|
2333
|
+
)
|
2334
|
+
end)
|
2335
|
+
|
2115
2336
|
api.add_operation(:search_profiles, Seahorse::Model::Operation.new.tap do |o|
|
2116
2337
|
o.name = "SearchProfiles"
|
2117
2338
|
o.http_method = "POST"
|
@@ -2296,6 +2517,19 @@ module Aws::AlexaForBusiness
|
|
2296
2517
|
o.errors << Shapes::ShapeRef.new(shape: NameInUseException)
|
2297
2518
|
end)
|
2298
2519
|
|
2520
|
+
api.add_operation(:update_network_profile, Seahorse::Model::Operation.new.tap do |o|
|
2521
|
+
o.name = "UpdateNetworkProfile"
|
2522
|
+
o.http_method = "POST"
|
2523
|
+
o.http_request_uri = "/"
|
2524
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateNetworkProfileRequest)
|
2525
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateNetworkProfileResponse)
|
2526
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
2527
|
+
o.errors << Shapes::ShapeRef.new(shape: NameInUseException)
|
2528
|
+
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
2529
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidCertificateAuthorityException)
|
2530
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidSecretsManagerResourceException)
|
2531
|
+
end)
|
2532
|
+
|
2299
2533
|
api.add_operation(:update_profile, Seahorse::Model::Operation.new.tap do |o|
|
2300
2534
|
o.name = "UpdateProfile"
|
2301
2535
|
o.http_method = "POST"
|