aws-sdk-chime 1.0.0 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-chime.rb +1 -1
- data/lib/aws-sdk-chime/client.rb +32 -2
- data/lib/aws-sdk-chime/client_api.rb +1 -0
- data/lib/aws-sdk-chime/types.rb +6 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c00da8d5a4aae8cd59c26a17b027183d142e94e8
|
4
|
+
data.tar.gz: 06ea897fbcd8a131f413c6baa535a6cd3449ded1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ebb62da066fbb12378dd271db5a0a88935da86004a3a1eac565771f72f6adafe6f9049d68de0c871e2529dd3bdea4a31fc6235b58eb8badc9d49839f0ef8d66a
|
7
|
+
data.tar.gz: 4c14a900cb9e9015127395ecc008a2ef7f4be98b4ecbcbcd2d562f3614b933b97ae150439ef1b835e855ea257eae43ad46ecf4cd76eae31ec99d9372ea04ff60
|
data/lib/aws-sdk-chime.rb
CHANGED
data/lib/aws-sdk-chime/client.rb
CHANGED
@@ -15,6 +15,7 @@ require 'aws-sdk-core/plugins/helpful_socket_errors.rb'
|
|
15
15
|
require 'aws-sdk-core/plugins/retry_errors.rb'
|
16
16
|
require 'aws-sdk-core/plugins/global_configuration.rb'
|
17
17
|
require 'aws-sdk-core/plugins/regional_endpoint.rb'
|
18
|
+
require 'aws-sdk-core/plugins/endpoint_discovery.rb'
|
18
19
|
require 'aws-sdk-core/plugins/response_paging.rb'
|
19
20
|
require 'aws-sdk-core/plugins/stub_responses.rb'
|
20
21
|
require 'aws-sdk-core/plugins/idempotency_token.rb'
|
@@ -45,6 +46,7 @@ module Aws::Chime
|
|
45
46
|
add_plugin(Aws::Plugins::RetryErrors)
|
46
47
|
add_plugin(Aws::Plugins::GlobalConfiguration)
|
47
48
|
add_plugin(Aws::Plugins::RegionalEndpoint)
|
49
|
+
add_plugin(Aws::Plugins::EndpointDiscovery)
|
48
50
|
add_plugin(Aws::Plugins::ResponsePaging)
|
49
51
|
add_plugin(Aws::Plugins::StubResponses)
|
50
52
|
add_plugin(Aws::Plugins::IdempotencyToken)
|
@@ -98,6 +100,10 @@ module Aws::Chime
|
|
98
100
|
#
|
99
101
|
# @option options [String] :access_key_id
|
100
102
|
#
|
103
|
+
# @option options [Boolean] :active_endpoint_cache (false)
|
104
|
+
# When set to `true`, a thread polling for endpoints will be running in
|
105
|
+
# the background every 60 secs (default). Defaults to `false`.
|
106
|
+
#
|
101
107
|
# @option options [Boolean] :client_side_monitoring (false)
|
102
108
|
# When `true`, client-side metrics will be collected for all API requests from
|
103
109
|
# this client.
|
@@ -123,6 +129,21 @@ module Aws::Chime
|
|
123
129
|
# option. You should only configure an `:endpoint` when connecting
|
124
130
|
# to test endpoints. This should be avalid HTTP(S) URI.
|
125
131
|
#
|
132
|
+
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
133
|
+
# Used for the maximum size limit of the LRU cache storing endpoints data
|
134
|
+
# for endpoint discovery enabled operations. Defaults to 1000.
|
135
|
+
#
|
136
|
+
# @option options [Integer] :endpoint_cache_max_threads (10)
|
137
|
+
# Used for the maximum threads in use for polling endpoints to be cached, defaults to 10.
|
138
|
+
#
|
139
|
+
# @option options [Integer] :endpoint_cache_poll_interval (60)
|
140
|
+
# When :endpoint_discovery and :active_endpoint_cache is enabled,
|
141
|
+
# Use this option to config the time interval in seconds for making
|
142
|
+
# requests fetching endpoints information. Defaults to 60 sec.
|
143
|
+
#
|
144
|
+
# @option options [Boolean] :endpoint_discovery (false)
|
145
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available. Defaults to `false`.
|
146
|
+
#
|
126
147
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
127
148
|
# The log formatter.
|
128
149
|
#
|
@@ -475,6 +496,9 @@ module Aws::Chime
|
|
475
496
|
# Retrieves details for the specified user ID, such as primary email
|
476
497
|
# address, license type, and personal meeting PIN.
|
477
498
|
#
|
499
|
+
# To retrieve user details with an email address instead of a user ID,
|
500
|
+
# use the ListUsers action, and then filter by email address.
|
501
|
+
#
|
478
502
|
# @option params [required, String] :account_id
|
479
503
|
# The Amazon Chime account ID.
|
480
504
|
#
|
@@ -606,11 +630,16 @@ module Aws::Chime
|
|
606
630
|
req.send_request(options)
|
607
631
|
end
|
608
632
|
|
609
|
-
# Lists the users that belong to the specified Amazon Chime account.
|
633
|
+
# Lists the users that belong to the specified Amazon Chime account. You
|
634
|
+
# can specify an email address to list only the user that the email
|
635
|
+
# address belongs to.
|
610
636
|
#
|
611
637
|
# @option params [required, String] :account_id
|
612
638
|
# The Amazon Chime account ID.
|
613
639
|
#
|
640
|
+
# @option params [String] :user_email
|
641
|
+
# Optional. The user email address used to filter results. Maximum 1.
|
642
|
+
#
|
614
643
|
# @option params [Integer] :max_results
|
615
644
|
# The maximum number of results to return in a single call. Defaults to
|
616
645
|
# 100.
|
@@ -627,6 +656,7 @@ module Aws::Chime
|
|
627
656
|
#
|
628
657
|
# resp = client.list_users({
|
629
658
|
# account_id: "NonEmptyString", # required
|
659
|
+
# user_email: "EmailAddress",
|
630
660
|
# max_results: 1,
|
631
661
|
# next_token: "String",
|
632
662
|
# })
|
@@ -861,7 +891,7 @@ module Aws::Chime
|
|
861
891
|
params: params,
|
862
892
|
config: config)
|
863
893
|
context[:gem_name] = 'aws-sdk-chime'
|
864
|
-
context[:gem_version] = '1.
|
894
|
+
context[:gem_version] = '1.1.0'
|
865
895
|
Seahorse::Client::Request.new(handlers, context)
|
866
896
|
end
|
867
897
|
|
@@ -175,6 +175,7 @@ module Aws::Chime
|
|
175
175
|
ListAccountsResponse.struct_class = Types::ListAccountsResponse
|
176
176
|
|
177
177
|
ListUsersRequest.add_member(:account_id, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location: "uri", location_name: "accountId"))
|
178
|
+
ListUsersRequest.add_member(:user_email, Shapes::ShapeRef.new(shape: EmailAddress, location: "querystring", location_name: "user-email"))
|
178
179
|
ListUsersRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: ProfileServiceMaxResults, location: "querystring", location_name: "max-results"))
|
179
180
|
ListUsersRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location: "querystring", location_name: "next-token"))
|
180
181
|
ListUsersRequest.struct_class = Types::ListUsersRequest
|
data/lib/aws-sdk-chime/types.rb
CHANGED
@@ -481,6 +481,7 @@ module Aws::Chime
|
|
481
481
|
#
|
482
482
|
# {
|
483
483
|
# account_id: "NonEmptyString", # required
|
484
|
+
# user_email: "EmailAddress",
|
484
485
|
# max_results: 1,
|
485
486
|
# next_token: "String",
|
486
487
|
# }
|
@@ -489,6 +490,10 @@ module Aws::Chime
|
|
489
490
|
# The Amazon Chime account ID.
|
490
491
|
# @return [String]
|
491
492
|
#
|
493
|
+
# @!attribute [rw] user_email
|
494
|
+
# Optional. The user email address used to filter results. Maximum 1.
|
495
|
+
# @return [String]
|
496
|
+
#
|
492
497
|
# @!attribute [rw] max_results
|
493
498
|
# The maximum number of results to return in a single call. Defaults
|
494
499
|
# to 100.
|
@@ -502,6 +507,7 @@ module Aws::Chime
|
|
502
507
|
#
|
503
508
|
class ListUsersRequest < Struct.new(
|
504
509
|
:account_id,
|
510
|
+
:user_email,
|
505
511
|
:max_results,
|
506
512
|
:next_token)
|
507
513
|
include Aws::Structure
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-chime
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.1.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: 2018-
|
11
|
+
date: 2018-11-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|