aws-sdk-alexaforbusiness 1.34.0 → 1.39.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/lib/aws-sdk-alexaforbusiness.rb +3 -1
- data/lib/aws-sdk-alexaforbusiness/client.rb +95 -25
- data/lib/aws-sdk-alexaforbusiness/client_api.rb +8 -2
- data/lib/aws-sdk-alexaforbusiness/errors.rb +2 -0
- data/lib/aws-sdk-alexaforbusiness/resource.rb +3 -7
- data/lib/aws-sdk-alexaforbusiness/types.rb +254 -6
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 398381f1919a97e2e3fbddc5ae12ba20e19bf98ed066b64d1c41ccbc7b690276
|
4
|
+
data.tar.gz: 804d8883b74d22afe063bf1730e2ca89042008a6ce97378694c2c39473c0d7d0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c7f075ba14545727a67481e5b07f655e58b7ba290f448e0a347eb4119b04fe7809d06b638213f72aa7d3e659fbde69193655bc9f54fef51188cd426c49a81dde
|
7
|
+
data.tar.gz: e1f0356ebafe6d1a0bb996dc796cb7677a863e318bbb9d9aa10fd067da7e5276992d871468288de65cfa9d429ea2b9cf97d747534a645e7c2695cacb91bd0501
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -45,6 +47,6 @@ require_relative 'aws-sdk-alexaforbusiness/customizations'
|
|
45
47
|
# @service
|
46
48
|
module Aws::AlexaForBusiness
|
47
49
|
|
48
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.39.0'
|
49
51
|
|
50
52
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
29
32
|
|
@@ -32,11 +35,11 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:alexaforbusiness)
|
|
32
35
|
module Aws::AlexaForBusiness
|
33
36
|
# An API client for AlexaForBusiness. To construct a client, you need to configure a `:region` and `:credentials`.
|
34
37
|
#
|
35
|
-
#
|
36
|
-
#
|
37
|
-
#
|
38
|
-
#
|
39
|
-
#
|
38
|
+
# client = Aws::AlexaForBusiness::Client.new(
|
39
|
+
# region: region_name,
|
40
|
+
# credentials: credentials,
|
41
|
+
# # ...
|
42
|
+
# )
|
40
43
|
#
|
41
44
|
# For details on configuring region and credentials see
|
42
45
|
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
@@ -69,6 +72,7 @@ module Aws::AlexaForBusiness
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
77
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
74
78
|
|
@@ -105,7 +109,7 @@ module Aws::AlexaForBusiness
|
|
105
109
|
# @option options [required, String] :region
|
106
110
|
# The AWS region to connect to. The configured `:region` is
|
107
111
|
# used to determine the service `:endpoint`. When not passed,
|
108
|
-
# a default `:region` is
|
112
|
+
# a default `:region` is searched for in the following locations:
|
109
113
|
#
|
110
114
|
# * `Aws.config[:region]`
|
111
115
|
# * `ENV['AWS_REGION']`
|
@@ -161,7 +165,7 @@ module Aws::AlexaForBusiness
|
|
161
165
|
# @option options [String] :endpoint
|
162
166
|
# The client endpoint is normally constructed from the `:region`
|
163
167
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
169
|
#
|
166
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +180,7 @@ module Aws::AlexaForBusiness
|
|
176
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
181
|
#
|
178
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
184
|
#
|
181
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
186
|
# The log formatter.
|
@@ -229,15 +233,19 @@ module Aws::AlexaForBusiness
|
|
229
233
|
#
|
230
234
|
# @option options [String] :retry_mode ("legacy")
|
231
235
|
# Specifies which retry algorithm to use. Values are:
|
232
|
-
#
|
233
|
-
#
|
234
|
-
#
|
235
|
-
#
|
236
|
-
#
|
237
|
-
#
|
238
|
-
#
|
239
|
-
#
|
240
|
-
#
|
236
|
+
#
|
237
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
238
|
+
# no retry mode is provided.
|
239
|
+
#
|
240
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
241
|
+
# This includes support for retry quotas, which limit the number of
|
242
|
+
# unsuccessful retries a client can make.
|
243
|
+
#
|
244
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
245
|
+
# functionality of `standard` mode along with automatic client side
|
246
|
+
# throttling. This is a provisional mode that may change behavior
|
247
|
+
# in the future.
|
248
|
+
#
|
241
249
|
#
|
242
250
|
# @option options [String] :secret_access_key
|
243
251
|
#
|
@@ -275,8 +283,7 @@ module Aws::AlexaForBusiness
|
|
275
283
|
#
|
276
284
|
# @option options [Integer] :http_read_timeout (60) The default
|
277
285
|
# number of seconds to wait for response data. This value can
|
278
|
-
# safely be set
|
279
|
-
# per-request on the session yielded by {#session_for}.
|
286
|
+
# safely be set per-request on the session.
|
280
287
|
#
|
281
288
|
# @option options [Float] :http_idle_timeout (5) The number of
|
282
289
|
# seconds a connection is allowed to sit idle before it is
|
@@ -288,7 +295,7 @@ module Aws::AlexaForBusiness
|
|
288
295
|
# request body. This option has no effect unless the request has
|
289
296
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
290
297
|
# disables this behaviour. This value can safely be set per
|
291
|
-
# request on the session
|
298
|
+
# request on the session.
|
292
299
|
#
|
293
300
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
294
301
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -567,6 +574,9 @@ module Aws::AlexaForBusiness
|
|
567
574
|
# **A suitable default value is auto-generated.** You should normally
|
568
575
|
# not need to pass this option.**
|
569
576
|
#
|
577
|
+
# @option params [Array<Types::Tag>] :tags
|
578
|
+
# The tags for the business report schedule.
|
579
|
+
#
|
570
580
|
# @return [Types::CreateBusinessReportScheduleResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
571
581
|
#
|
572
582
|
# * {Types::CreateBusinessReportScheduleResponse#schedule_arn #schedule_arn} => String
|
@@ -579,12 +589,18 @@ module Aws::AlexaForBusiness
|
|
579
589
|
# s3_key_prefix: "S3KeyPrefix",
|
580
590
|
# format: "CSV", # required, accepts CSV, CSV_ZIP
|
581
591
|
# content_range: { # required
|
582
|
-
# interval: "ONE_DAY", # accepts ONE_DAY, ONE_WEEK, THIRTY_DAYS
|
592
|
+
# interval: "ONE_DAY", # required, accepts ONE_DAY, ONE_WEEK, THIRTY_DAYS
|
583
593
|
# },
|
584
594
|
# recurrence: {
|
585
595
|
# start_date: "Date",
|
586
596
|
# },
|
587
597
|
# client_request_token: "ClientRequestToken",
|
598
|
+
# tags: [
|
599
|
+
# {
|
600
|
+
# key: "TagKey", # required
|
601
|
+
# value: "TagValue", # required
|
602
|
+
# },
|
603
|
+
# ],
|
588
604
|
# })
|
589
605
|
#
|
590
606
|
# @example Response structure
|
@@ -891,6 +907,9 @@ module Aws::AlexaForBusiness
|
|
891
907
|
# @option params [Types::CreateMeetingRoomConfiguration] :meeting_room_configuration
|
892
908
|
# The meeting room settings of a room profile.
|
893
909
|
#
|
910
|
+
# @option params [Array<Types::Tag>] :tags
|
911
|
+
# The tags for the profile.
|
912
|
+
#
|
894
913
|
# @return [Types::CreateProfileResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
895
914
|
#
|
896
915
|
# * {Types::CreateProfileResponse#profile_arn #profile_arn} => String
|
@@ -925,6 +944,12 @@ module Aws::AlexaForBusiness
|
|
925
944
|
# enabled: false, # required
|
926
945
|
# },
|
927
946
|
# },
|
947
|
+
# tags: [
|
948
|
+
# {
|
949
|
+
# key: "TagKey", # required
|
950
|
+
# value: "TagValue", # required
|
951
|
+
# },
|
952
|
+
# ],
|
928
953
|
# })
|
929
954
|
#
|
930
955
|
# @example Response structure
|
@@ -949,7 +974,7 @@ module Aws::AlexaForBusiness
|
|
949
974
|
# The description for the room.
|
950
975
|
#
|
951
976
|
# @option params [String] :profile_arn
|
952
|
-
# The profile ARN for the room.
|
977
|
+
# The profile ARN for the room. This is required.
|
953
978
|
#
|
954
979
|
# @option params [String] :provider_calendar_id
|
955
980
|
# The calendar ARN for the room.
|
@@ -1012,6 +1037,9 @@ module Aws::AlexaForBusiness
|
|
1012
1037
|
# **A suitable default value is auto-generated.** You should normally
|
1013
1038
|
# not need to pass this option.**
|
1014
1039
|
#
|
1040
|
+
# @option params [Array<Types::Tag>] :tags
|
1041
|
+
# The tags for the skill group.
|
1042
|
+
#
|
1015
1043
|
# @return [Types::CreateSkillGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1016
1044
|
#
|
1017
1045
|
# * {Types::CreateSkillGroupResponse#skill_group_arn #skill_group_arn} => String
|
@@ -1022,6 +1050,12 @@ module Aws::AlexaForBusiness
|
|
1022
1050
|
# skill_group_name: "SkillGroupName", # required
|
1023
1051
|
# description: "SkillGroupDescription",
|
1024
1052
|
# client_request_token: "ClientRequestToken",
|
1053
|
+
# tags: [
|
1054
|
+
# {
|
1055
|
+
# key: "TagKey", # required
|
1056
|
+
# value: "TagValue", # required
|
1057
|
+
# },
|
1058
|
+
# ],
|
1025
1059
|
# })
|
1026
1060
|
#
|
1027
1061
|
# @example Response structure
|
@@ -1729,7 +1763,7 @@ module Aws::AlexaForBusiness
|
|
1729
1763
|
# resp.device.device_status #=> String, one of "READY", "PENDING", "WAS_OFFLINE", "DEREGISTERED", "FAILED"
|
1730
1764
|
# resp.device.device_status_info.device_status_details #=> Array
|
1731
1765
|
# resp.device.device_status_info.device_status_details[0].feature #=> String, one of "BLUETOOTH", "VOLUME", "NOTIFICATIONS", "LISTS", "SKILLS", "NETWORK_PROFILE", "SETTINGS", "ALL"
|
1732
|
-
# 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"
|
1766
|
+
# 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", "PASSWORD_MANAGER_ACCESS_DENIED", "CERTIFICATE_AUTHORITY_ACCESS_DENIED"
|
1733
1767
|
# resp.device.device_status_info.connection_status #=> String, one of "ONLINE", "OFFLINE"
|
1734
1768
|
# resp.device.device_status_info.connection_status_updated_time #=> Time
|
1735
1769
|
# resp.device.network_profile_info.network_profile_arn #=> String
|
@@ -2038,6 +2072,8 @@ module Aws::AlexaForBusiness
|
|
2038
2072
|
# * {Types::ListBusinessReportSchedulesResponse#business_report_schedules #business_report_schedules} => Array<Types::BusinessReportSchedule>
|
2039
2073
|
# * {Types::ListBusinessReportSchedulesResponse#next_token #next_token} => String
|
2040
2074
|
#
|
2075
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2076
|
+
#
|
2041
2077
|
# @example Request syntax with placeholder values
|
2042
2078
|
#
|
2043
2079
|
# resp = client.list_business_report_schedules({
|
@@ -2086,6 +2122,8 @@ module Aws::AlexaForBusiness
|
|
2086
2122
|
# * {Types::ListConferenceProvidersResponse#conference_providers #conference_providers} => Array<Types::ConferenceProvider>
|
2087
2123
|
# * {Types::ListConferenceProvidersResponse#next_token #next_token} => String
|
2088
2124
|
#
|
2125
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2126
|
+
#
|
2089
2127
|
# @example Request syntax with placeholder values
|
2090
2128
|
#
|
2091
2129
|
# resp = client.list_conference_providers({
|
@@ -2147,6 +2185,8 @@ module Aws::AlexaForBusiness
|
|
2147
2185
|
# * {Types::ListDeviceEventsResponse#device_events #device_events} => Array<Types::DeviceEvent>
|
2148
2186
|
# * {Types::ListDeviceEventsResponse#next_token #next_token} => String
|
2149
2187
|
#
|
2188
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2189
|
+
#
|
2150
2190
|
# @example Request syntax with placeholder values
|
2151
2191
|
#
|
2152
2192
|
# resp = client.list_device_events({
|
@@ -2189,6 +2229,8 @@ module Aws::AlexaForBusiness
|
|
2189
2229
|
# * {Types::ListGatewayGroupsResponse#gateway_groups #gateway_groups} => Array<Types::GatewayGroupSummary>
|
2190
2230
|
# * {Types::ListGatewayGroupsResponse#next_token #next_token} => String
|
2191
2231
|
#
|
2232
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2233
|
+
#
|
2192
2234
|
# @example Request syntax with placeholder values
|
2193
2235
|
#
|
2194
2236
|
# resp = client.list_gateway_groups({
|
@@ -2232,6 +2274,8 @@ module Aws::AlexaForBusiness
|
|
2232
2274
|
# * {Types::ListGatewaysResponse#gateways #gateways} => Array<Types::GatewaySummary>
|
2233
2275
|
# * {Types::ListGatewaysResponse#next_token #next_token} => String
|
2234
2276
|
#
|
2277
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2278
|
+
#
|
2235
2279
|
# @example Request syntax with placeholder values
|
2236
2280
|
#
|
2237
2281
|
# resp = client.list_gateways({
|
@@ -2287,6 +2331,8 @@ module Aws::AlexaForBusiness
|
|
2287
2331
|
# * {Types::ListSkillsResponse#skill_summaries #skill_summaries} => Array<Types::SkillSummary>
|
2288
2332
|
# * {Types::ListSkillsResponse#next_token #next_token} => String
|
2289
2333
|
#
|
2334
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2335
|
+
#
|
2290
2336
|
# @example Request syntax with placeholder values
|
2291
2337
|
#
|
2292
2338
|
# resp = client.list_skills({
|
@@ -2329,6 +2375,8 @@ module Aws::AlexaForBusiness
|
|
2329
2375
|
# * {Types::ListSkillsStoreCategoriesResponse#category_list #category_list} => Array<Types::Category>
|
2330
2376
|
# * {Types::ListSkillsStoreCategoriesResponse#next_token #next_token} => String
|
2331
2377
|
#
|
2378
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2379
|
+
#
|
2332
2380
|
# @example Request syntax with placeholder values
|
2333
2381
|
#
|
2334
2382
|
# resp = client.list_skills_store_categories({
|
@@ -2369,6 +2417,8 @@ module Aws::AlexaForBusiness
|
|
2369
2417
|
# * {Types::ListSkillsStoreSkillsByCategoryResponse#skills_store_skills #skills_store_skills} => Array<Types::SkillsStoreSkill>
|
2370
2418
|
# * {Types::ListSkillsStoreSkillsByCategoryResponse#next_token #next_token} => String
|
2371
2419
|
#
|
2420
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2421
|
+
#
|
2372
2422
|
# @example Request syntax with placeholder values
|
2373
2423
|
#
|
2374
2424
|
# resp = client.list_skills_store_skills_by_category({
|
@@ -2432,6 +2482,8 @@ module Aws::AlexaForBusiness
|
|
2432
2482
|
# * {Types::ListSmartHomeAppliancesResponse#smart_home_appliances #smart_home_appliances} => Array<Types::SmartHomeAppliance>
|
2433
2483
|
# * {Types::ListSmartHomeAppliancesResponse#next_token #next_token} => String
|
2434
2484
|
#
|
2485
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2486
|
+
#
|
2435
2487
|
# @example Request syntax with placeholder values
|
2436
2488
|
#
|
2437
2489
|
# resp = client.list_smart_home_appliances({
|
@@ -2479,6 +2531,8 @@ module Aws::AlexaForBusiness
|
|
2479
2531
|
# * {Types::ListTagsResponse#tags #tags} => Array<Types::Tag>
|
2480
2532
|
# * {Types::ListTagsResponse#next_token #next_token} => String
|
2481
2533
|
#
|
2534
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2535
|
+
#
|
2482
2536
|
# @example Request syntax with placeholder values
|
2483
2537
|
#
|
2484
2538
|
# resp = client.list_tags({
|
@@ -2803,6 +2857,8 @@ module Aws::AlexaForBusiness
|
|
2803
2857
|
# * {Types::SearchAddressBooksResponse#next_token #next_token} => String
|
2804
2858
|
# * {Types::SearchAddressBooksResponse#total_count #total_count} => Integer
|
2805
2859
|
#
|
2860
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2861
|
+
#
|
2806
2862
|
# @example Request syntax with placeholder values
|
2807
2863
|
#
|
2808
2864
|
# resp = client.search_address_books({
|
@@ -2869,6 +2925,8 @@ module Aws::AlexaForBusiness
|
|
2869
2925
|
# * {Types::SearchContactsResponse#next_token #next_token} => String
|
2870
2926
|
# * {Types::SearchContactsResponse#total_count #total_count} => Integer
|
2871
2927
|
#
|
2928
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2929
|
+
#
|
2872
2930
|
# @example Request syntax with placeholder values
|
2873
2931
|
#
|
2874
2932
|
# resp = client.search_contacts({
|
@@ -2948,6 +3006,8 @@ module Aws::AlexaForBusiness
|
|
2948
3006
|
# * {Types::SearchDevicesResponse#next_token #next_token} => String
|
2949
3007
|
# * {Types::SearchDevicesResponse#total_count #total_count} => Integer
|
2950
3008
|
#
|
3009
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3010
|
+
#
|
2951
3011
|
# @example Request syntax with placeholder values
|
2952
3012
|
#
|
2953
3013
|
# resp = client.search_devices({
|
@@ -2983,7 +3043,7 @@ module Aws::AlexaForBusiness
|
|
2983
3043
|
# resp.devices[0].room_name #=> String
|
2984
3044
|
# resp.devices[0].device_status_info.device_status_details #=> Array
|
2985
3045
|
# resp.devices[0].device_status_info.device_status_details[0].feature #=> String, one of "BLUETOOTH", "VOLUME", "NOTIFICATIONS", "LISTS", "SKILLS", "NETWORK_PROFILE", "SETTINGS", "ALL"
|
2986
|
-
# 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"
|
3046
|
+
# 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", "PASSWORD_MANAGER_ACCESS_DENIED", "CERTIFICATE_AUTHORITY_ACCESS_DENIED"
|
2987
3047
|
# resp.devices[0].device_status_info.connection_status #=> String, one of "ONLINE", "OFFLINE"
|
2988
3048
|
# resp.devices[0].device_status_info.connection_status_updated_time #=> Time
|
2989
3049
|
# resp.devices[0].created_time #=> Time
|
@@ -3028,6 +3088,8 @@ module Aws::AlexaForBusiness
|
|
3028
3088
|
# * {Types::SearchNetworkProfilesResponse#next_token #next_token} => String
|
3029
3089
|
# * {Types::SearchNetworkProfilesResponse#total_count #total_count} => Integer
|
3030
3090
|
#
|
3091
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3092
|
+
#
|
3031
3093
|
# @example Request syntax with placeholder values
|
3032
3094
|
#
|
3033
3095
|
# resp = client.search_network_profiles({
|
@@ -3098,6 +3160,8 @@ module Aws::AlexaForBusiness
|
|
3098
3160
|
# * {Types::SearchProfilesResponse#next_token #next_token} => String
|
3099
3161
|
# * {Types::SearchProfilesResponse#total_count #total_count} => Integer
|
3100
3162
|
#
|
3163
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3164
|
+
#
|
3101
3165
|
# @example Request syntax with placeholder values
|
3102
3166
|
#
|
3103
3167
|
# resp = client.search_profiles({
|
@@ -3170,6 +3234,8 @@ module Aws::AlexaForBusiness
|
|
3170
3234
|
# * {Types::SearchRoomsResponse#next_token #next_token} => String
|
3171
3235
|
# * {Types::SearchRoomsResponse#total_count #total_count} => Integer
|
3172
3236
|
#
|
3237
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3238
|
+
#
|
3173
3239
|
# @example Request syntax with placeholder values
|
3174
3240
|
#
|
3175
3241
|
# resp = client.search_rooms({
|
@@ -3239,6 +3305,8 @@ module Aws::AlexaForBusiness
|
|
3239
3305
|
# * {Types::SearchSkillGroupsResponse#next_token #next_token} => String
|
3240
3306
|
# * {Types::SearchSkillGroupsResponse#total_count #total_count} => Integer
|
3241
3307
|
#
|
3308
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3309
|
+
#
|
3242
3310
|
# @example Request syntax with placeholder values
|
3243
3311
|
#
|
3244
3312
|
# resp = client.search_skill_groups({
|
@@ -3307,6 +3375,8 @@ module Aws::AlexaForBusiness
|
|
3307
3375
|
# * {Types::SearchUsersResponse#next_token #next_token} => String
|
3308
3376
|
# * {Types::SearchUsersResponse#total_count #total_count} => Integer
|
3309
3377
|
#
|
3378
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3379
|
+
#
|
3310
3380
|
# @example Request syntax with placeholder values
|
3311
3381
|
#
|
3312
3382
|
# resp = client.search_users({
|
@@ -4070,7 +4140,7 @@ module Aws::AlexaForBusiness
|
|
4070
4140
|
params: params,
|
4071
4141
|
config: config)
|
4072
4142
|
context[:gem_name] = 'aws-sdk-alexaforbusiness'
|
4073
|
-
context[:gem_version] = '1.
|
4143
|
+
context[:gem_version] = '1.39.0'
|
4074
4144
|
Seahorse::Client::Request.new(handlers, context)
|
4075
4145
|
end
|
4076
4146
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -150,6 +152,7 @@ module Aws::AlexaForBusiness
|
|
150
152
|
DeviceName = Shapes::StringShape.new(name: 'DeviceName')
|
151
153
|
DeviceNetworkProfileInfo = Shapes::StructureShape.new(name: 'DeviceNetworkProfileInfo')
|
152
154
|
DeviceNotRegisteredException = Shapes::StructureShape.new(name: 'DeviceNotRegisteredException')
|
155
|
+
DeviceRoomName = Shapes::StringShape.new(name: 'DeviceRoomName')
|
153
156
|
DeviceSerialNumber = Shapes::StringShape.new(name: 'DeviceSerialNumber')
|
154
157
|
DeviceSerialNumberForAVS = Shapes::StringShape.new(name: 'DeviceSerialNumberForAVS')
|
155
158
|
DeviceStatus = Shapes::StringShape.new(name: 'DeviceStatus')
|
@@ -521,7 +524,7 @@ module Aws::AlexaForBusiness
|
|
521
524
|
BusinessReport.add_member(:download_url, Shapes::ShapeRef.new(shape: BusinessReportDownloadUrl, location_name: "DownloadUrl"))
|
522
525
|
BusinessReport.struct_class = Types::BusinessReport
|
523
526
|
|
524
|
-
BusinessReportContentRange.add_member(:interval, Shapes::ShapeRef.new(shape: BusinessReportInterval, location_name: "Interval"))
|
527
|
+
BusinessReportContentRange.add_member(:interval, Shapes::ShapeRef.new(shape: BusinessReportInterval, required: true, location_name: "Interval"))
|
525
528
|
BusinessReportContentRange.struct_class = Types::BusinessReportContentRange
|
526
529
|
|
527
530
|
BusinessReportRecurrence.add_member(:start_date, Shapes::ShapeRef.new(shape: Date, location_name: "StartDate"))
|
@@ -605,6 +608,7 @@ module Aws::AlexaForBusiness
|
|
605
608
|
CreateBusinessReportScheduleRequest.add_member(:content_range, Shapes::ShapeRef.new(shape: BusinessReportContentRange, required: true, location_name: "ContentRange"))
|
606
609
|
CreateBusinessReportScheduleRequest.add_member(:recurrence, Shapes::ShapeRef.new(shape: BusinessReportRecurrence, location_name: "Recurrence"))
|
607
610
|
CreateBusinessReportScheduleRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
|
611
|
+
CreateBusinessReportScheduleRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
608
612
|
CreateBusinessReportScheduleRequest.struct_class = Types::CreateBusinessReportScheduleRequest
|
609
613
|
|
610
614
|
CreateBusinessReportScheduleResponse.add_member(:schedule_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "ScheduleArn"))
|
@@ -683,6 +687,7 @@ module Aws::AlexaForBusiness
|
|
683
687
|
CreateProfileRequest.add_member(:max_volume_limit, Shapes::ShapeRef.new(shape: MaxVolumeLimit, location_name: "MaxVolumeLimit"))
|
684
688
|
CreateProfileRequest.add_member(:pstn_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "PSTNEnabled"))
|
685
689
|
CreateProfileRequest.add_member(:meeting_room_configuration, Shapes::ShapeRef.new(shape: CreateMeetingRoomConfiguration, location_name: "MeetingRoomConfiguration"))
|
690
|
+
CreateProfileRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
686
691
|
CreateProfileRequest.struct_class = Types::CreateProfileRequest
|
687
692
|
|
688
693
|
CreateProfileResponse.add_member(:profile_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "ProfileArn"))
|
@@ -706,6 +711,7 @@ module Aws::AlexaForBusiness
|
|
706
711
|
CreateSkillGroupRequest.add_member(:skill_group_name, Shapes::ShapeRef.new(shape: SkillGroupName, required: true, location_name: "SkillGroupName"))
|
707
712
|
CreateSkillGroupRequest.add_member(:description, Shapes::ShapeRef.new(shape: SkillGroupDescription, location_name: "Description"))
|
708
713
|
CreateSkillGroupRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
|
714
|
+
CreateSkillGroupRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
709
715
|
CreateSkillGroupRequest.struct_class = Types::CreateSkillGroupRequest
|
710
716
|
|
711
717
|
CreateSkillGroupResponse.add_member(:skill_group_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "SkillGroupArn"))
|
@@ -825,7 +831,7 @@ module Aws::AlexaForBusiness
|
|
825
831
|
DeviceData.add_member(:network_profile_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "NetworkProfileArn"))
|
826
832
|
DeviceData.add_member(:network_profile_name, Shapes::ShapeRef.new(shape: NetworkProfileName, location_name: "NetworkProfileName"))
|
827
833
|
DeviceData.add_member(:room_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "RoomArn"))
|
828
|
-
DeviceData.add_member(:room_name, Shapes::ShapeRef.new(shape:
|
834
|
+
DeviceData.add_member(:room_name, Shapes::ShapeRef.new(shape: DeviceRoomName, location_name: "RoomName"))
|
829
835
|
DeviceData.add_member(:device_status_info, Shapes::ShapeRef.new(shape: DeviceStatusInfo, location_name: "DeviceStatusInfo"))
|
830
836
|
DeviceData.add_member(:created_time, Shapes::ShapeRef.new(shape: DeviceDataCreatedTime, location_name: "CreatedTime"))
|
831
837
|
DeviceData.struct_class = Types::DeviceData
|