aws-sdk-chime 1.46.0 → 1.47.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
  SHA256:
3
- metadata.gz: e57b897a542a7c841f0a0d47543f45edc8eda6d25e1b23b5a9b33f578a78f1a8
4
- data.tar.gz: 84600065e1a01da356275129c6e6a4af9ae576d2aa69230abf3595cb1087f572
3
+ metadata.gz: 66c358319acb6cc6f4297d7b6386451f705db8e52a3ac015f5a35269d34a8591
4
+ data.tar.gz: 3a9e65d5492f6a7b9d562e8924deed8a2749726f6c397e35959aa5c6b965948d
5
5
  SHA512:
6
- metadata.gz: dfb53e4a05d4b3b047fb6776199c324082799b4d819f73b7a17116d5ffdd72bc01399eeca877e73aab0aad0b1d97bed53e9e95f17dc4ea2b3688210fa55cb174
7
- data.tar.gz: 0c8c775c6a168c9a873a41f1983368d3836ae346e5a8159b03a4343b6f77d68054ac9e7195786b769aa873a135568321816f54de14e2fb52a99fd6c31e0f8ac6
6
+ metadata.gz: 732f6e2b796294258fdabdb73305080d1451676d62177888ef155a87cefa739c1b176c9d88f3e29fabbdd308e48460bc718b582f352d602a850d73422522722b
7
+ data.tar.gz: 977d1d9395bf4fe9ad5c62578ebd2ad38bbc082b29c00d6cc985b41d2ff6b28e6172424dc563ea5b1072651f6741f384fd235ec31c07d91a098f00c3e12fe385
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.47.0 (2021-06-10)
5
+ ------------------
6
+
7
+ * Feature - This SDK release adds support for UpdateAccount API to allow users to update their default license on Chime account.
8
+
4
9
  1.46.0 (2021-05-04)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.46.0
1
+ 1.47.0
data/lib/aws-sdk-chime.rb CHANGED
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-chime/customizations'
48
48
  # @!group service
49
49
  module Aws::Chime
50
50
 
51
- GEM_VERSION = '1.46.0'
51
+ GEM_VERSION = '1.47.0'
52
52
 
53
53
  end
@@ -775,10 +775,10 @@ module Aws::Chime
775
775
  # example, you can update the product type or the calling name.
776
776
  #
777
777
  # For toll-free numbers, you cannot use the Amazon Chime Business
778
- # Calling product type. For numbers outside the US, you must use the
778
+ # Calling product type. For numbers outside the U.S., you must use the
779
779
  # Amazon Chime SIP Media Application Dial-In product type.
780
780
  #
781
- # Updates to outbound calling names can take 72 hours to complete.
781
+ # Updates to outbound calling names can take up to 72 hours to complete.
782
782
  # Pending updates to outbound calling names must be complete before you
783
783
  # can request another update.
784
784
  #
@@ -1661,7 +1661,7 @@ module Aws::Chime
1661
1661
 
1662
1662
  # Creates an order for phone numbers to be provisioned. For toll-free
1663
1663
  # numbers, you cannot use the Amazon Chime Business Calling product
1664
- # type. For numbers outside the US, you must use the Amazon Chime SIP
1664
+ # type. For numbers outside the U.S., you must use the Amazon Chime SIP
1665
1665
  # Media Application Dial-In product type.
1666
1666
  #
1667
1667
  # @option params [required, String] :product_type
@@ -7210,7 +7210,8 @@ module Aws::Chime
7210
7210
  end
7211
7211
 
7212
7212
  # Updates account details for the specified Amazon Chime account.
7213
- # Currently, only account name updates are supported for this action.
7213
+ # Currently, only account name and default license updates are supported
7214
+ # for this action.
7214
7215
  #
7215
7216
  # @option params [required, String] :account_id
7216
7217
  # The Amazon Chime account ID.
@@ -7218,6 +7219,10 @@ module Aws::Chime
7218
7219
  # @option params [String] :name
7219
7220
  # The new name for the specified Amazon Chime account.
7220
7221
  #
7222
+ # @option params [String] :default_license
7223
+ # The default license applied when you add users to an Amazon Chime
7224
+ # account.
7225
+ #
7221
7226
  # @return [Types::UpdateAccountResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7222
7227
  #
7223
7228
  # * {Types::UpdateAccountResponse#account #account} => Types::Account
@@ -7227,6 +7232,7 @@ module Aws::Chime
7227
7232
  # resp = client.update_account({
7228
7233
  # account_id: "NonEmptyString", # required
7229
7234
  # name: "AccountName",
7235
+ # default_license: "Basic", # accepts Basic, Plus, Pro, ProTrial
7230
7236
  # })
7231
7237
  #
7232
7238
  # @example Response structure
@@ -8126,7 +8132,7 @@ module Aws::Chime
8126
8132
  params: params,
8127
8133
  config: config)
8128
8134
  context[:gem_name] = 'aws-sdk-chime'
8129
- context[:gem_version] = '1.46.0'
8135
+ context[:gem_version] = '1.47.0'
8130
8136
  Seahorse::Client::Request.new(handlers, context)
8131
8137
  end
8132
8138
 
@@ -2340,6 +2340,7 @@ module Aws::Chime
2340
2340
 
2341
2341
  UpdateAccountRequest.add_member(:account_id, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location: "uri", location_name: "accountId"))
2342
2342
  UpdateAccountRequest.add_member(:name, Shapes::ShapeRef.new(shape: AccountName, location_name: "Name"))
2343
+ UpdateAccountRequest.add_member(:default_license, Shapes::ShapeRef.new(shape: License, location_name: "DefaultLicense"))
2343
2344
  UpdateAccountRequest.struct_class = Types::UpdateAccountRequest
2344
2345
 
2345
2346
  UpdateAccountResponse.add_member(:account, Shapes::ShapeRef.new(shape: Account, location_name: "Account"))
@@ -9186,6 +9186,7 @@ module Aws::Chime
9186
9186
  # {
9187
9187
  # account_id: "NonEmptyString", # required
9188
9188
  # name: "AccountName",
9189
+ # default_license: "Basic", # accepts Basic, Plus, Pro, ProTrial
9189
9190
  # }
9190
9191
  #
9191
9192
  # @!attribute [rw] account_id
@@ -9196,11 +9197,17 @@ module Aws::Chime
9196
9197
  # The new name for the specified Amazon Chime account.
9197
9198
  # @return [String]
9198
9199
  #
9200
+ # @!attribute [rw] default_license
9201
+ # The default license applied when you add users to an Amazon Chime
9202
+ # account.
9203
+ # @return [String]
9204
+ #
9199
9205
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/UpdateAccountRequest AWS API Documentation
9200
9206
  #
9201
9207
  class UpdateAccountRequest < Struct.new(
9202
9208
  :account_id,
9203
- :name)
9209
+ :name,
9210
+ :default_license)
9204
9211
  SENSITIVE = []
9205
9212
  include Aws::Structure
9206
9213
  end
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.46.0
4
+ version: 1.47.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: 2021-05-04 00:00:00.000000000 Z
11
+ date: 2021-06-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core