aws-sdk-alexaforbusiness 1.46.0 → 1.50.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8c0a08aff69ab7b40c010b52b0bff1073b32766b9b6fe1938831df6cbfe94f42
4
- data.tar.gz: bfae1e99e647930698b0b1fdb89cd4caf70fd6e502d77deddb4bac90227ab4a6
3
+ metadata.gz: df24446cad6463d7d4207b21a88aa7dc47dcbbb8f0a0da22a16aaf4cb88b741b
4
+ data.tar.gz: 4ebf11cf9030ff7c675332aa68d5453777c1bad2537654f38fbc6d4012dfb7f6
5
5
  SHA512:
6
- metadata.gz: 8e38c6a56ad92ad2ecf33d3fe16c16bc626b8ab90b8816501079c9512954bdbc385b4979ccdd74df8ffed609d4b9723ad425943aff2cbcf4e748c7db097ccc97
7
- data.tar.gz: 33a76b2213228a0a6d30587ee947cfb06eb489a0d1d3d7b6be36178a2b3468e61fc6102faee6c9f52018caacfa89d4f3d42ad3992b673dbe9bab037f54d977a6
6
+ metadata.gz: bacc2ae5b19b16b01dba367f4715407f076a3a11b1a8772a1a5d5849d44fb1d3fd9b37aa7747d83f19aee5c66beaec53fc516163bac6b804285e09a1492c7fd8
7
+ data.tar.gz: ba797a02e0becd4e83146061924d5ebe83d373301e8376869673ed2d69a53bca16675ef5d5c127ccad93a62b834d4cbbd199e78cb9cf9f38e6a0bbcd63cc75b1
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.50.0 (2021-09-01)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.49.0 (2021-07-30)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.48.0 (2021-07-28)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.47.0 (2021-03-25)
20
+ ------------------
21
+
22
+ * Feature - Added support for enabling and disabling data retention in the CreateProfile and UpdateProfile APIs and retrieving the state of data retention for a profile in the GetProfile API.
23
+
4
24
  1.46.0 (2021-03-10)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.46.0
1
+ 1.50.0
@@ -969,6 +969,9 @@ module Aws::AlexaForBusiness
969
969
  # @option params [Boolean] :pstn_enabled
970
970
  # Whether PSTN calling is enabled.
971
971
  #
972
+ # @option params [Boolean] :data_retention_opt_in
973
+ # Whether data retention of the profile is enabled.
974
+ #
972
975
  # @option params [Types::CreateMeetingRoomConfiguration] :meeting_room_configuration
973
976
  # The meeting room settings of a room profile.
974
977
  #
@@ -993,6 +996,7 @@ module Aws::AlexaForBusiness
993
996
  # setup_mode_disabled: false,
994
997
  # max_volume_limit: 1,
995
998
  # pstn_enabled: false,
999
+ # data_retention_opt_in: false,
996
1000
  # meeting_room_configuration: {
997
1001
  # room_utilization_metrics_enabled: false,
998
1002
  # end_of_meeting_reminder: {
@@ -1998,6 +2002,7 @@ module Aws::AlexaForBusiness
1998
2002
  # resp.profile.setup_mode_disabled #=> Boolean
1999
2003
  # resp.profile.max_volume_limit #=> Integer
2000
2004
  # resp.profile.pstn_enabled #=> Boolean
2005
+ # resp.profile.data_retention_opt_in #=> Boolean
2001
2006
  # resp.profile.address_book_arn #=> String
2002
2007
  # resp.profile.meeting_room_configuration.room_utilization_metrics_enabled #=> Boolean
2003
2008
  # resp.profile.meeting_room_configuration.end_of_meeting_reminder.reminder_at_minutes #=> Array
@@ -4100,6 +4105,9 @@ module Aws::AlexaForBusiness
4100
4105
  # @option params [Boolean] :pstn_enabled
4101
4106
  # Whether the PSTN setting of the room profile is enabled.
4102
4107
  #
4108
+ # @option params [Boolean] :data_retention_opt_in
4109
+ # Whether data retention of the profile is enabled.
4110
+ #
4103
4111
  # @option params [Types::UpdateMeetingRoomConfiguration] :meeting_room_configuration
4104
4112
  # The updated meeting room settings of a room profile.
4105
4113
  #
@@ -4120,6 +4128,7 @@ module Aws::AlexaForBusiness
4120
4128
  # setup_mode_disabled: false,
4121
4129
  # max_volume_limit: 1,
4122
4130
  # pstn_enabled: false,
4131
+ # data_retention_opt_in: false,
4123
4132
  # meeting_room_configuration: {
4124
4133
  # room_utilization_metrics_enabled: false,
4125
4134
  # end_of_meeting_reminder: {
@@ -4228,7 +4237,7 @@ module Aws::AlexaForBusiness
4228
4237
  params: params,
4229
4238
  config: config)
4230
4239
  context[:gem_name] = 'aws-sdk-alexaforbusiness'
4231
- context[:gem_version] = '1.46.0'
4240
+ context[:gem_version] = '1.50.0'
4232
4241
  Seahorse::Client::Request.new(handlers, context)
4233
4242
  end
4234
4243
 
@@ -691,6 +691,7 @@ module Aws::AlexaForBusiness
691
691
  CreateProfileRequest.add_member(:setup_mode_disabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "SetupModeDisabled"))
692
692
  CreateProfileRequest.add_member(:max_volume_limit, Shapes::ShapeRef.new(shape: MaxVolumeLimit, location_name: "MaxVolumeLimit"))
693
693
  CreateProfileRequest.add_member(:pstn_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "PSTNEnabled"))
694
+ CreateProfileRequest.add_member(:data_retention_opt_in, Shapes::ShapeRef.new(shape: Boolean, location_name: "DataRetentionOptIn"))
694
695
  CreateProfileRequest.add_member(:meeting_room_configuration, Shapes::ShapeRef.new(shape: CreateMeetingRoomConfiguration, location_name: "MeetingRoomConfiguration"))
695
696
  CreateProfileRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
696
697
  CreateProfileRequest.struct_class = Types::CreateProfileRequest
@@ -1208,6 +1209,7 @@ module Aws::AlexaForBusiness
1208
1209
  Profile.add_member(:setup_mode_disabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "SetupModeDisabled"))
1209
1210
  Profile.add_member(:max_volume_limit, Shapes::ShapeRef.new(shape: MaxVolumeLimit, location_name: "MaxVolumeLimit"))
1210
1211
  Profile.add_member(:pstn_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "PSTNEnabled"))
1212
+ Profile.add_member(:data_retention_opt_in, Shapes::ShapeRef.new(shape: Boolean, location_name: "DataRetentionOptIn"))
1211
1213
  Profile.add_member(:address_book_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "AddressBookArn"))
1212
1214
  Profile.add_member(:meeting_room_configuration, Shapes::ShapeRef.new(shape: MeetingRoomConfiguration, location_name: "MeetingRoomConfiguration"))
1213
1215
  Profile.struct_class = Types::Profile
@@ -1639,6 +1641,7 @@ module Aws::AlexaForBusiness
1639
1641
  UpdateProfileRequest.add_member(:setup_mode_disabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "SetupModeDisabled"))
1640
1642
  UpdateProfileRequest.add_member(:max_volume_limit, Shapes::ShapeRef.new(shape: MaxVolumeLimit, location_name: "MaxVolumeLimit"))
1641
1643
  UpdateProfileRequest.add_member(:pstn_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "PSTNEnabled"))
1644
+ UpdateProfileRequest.add_member(:data_retention_opt_in, Shapes::ShapeRef.new(shape: Boolean, location_name: "DataRetentionOptIn"))
1642
1645
  UpdateProfileRequest.add_member(:meeting_room_configuration, Shapes::ShapeRef.new(shape: UpdateMeetingRoomConfiguration, location_name: "MeetingRoomConfiguration"))
1643
1646
  UpdateProfileRequest.struct_class = Types::UpdateProfileRequest
1644
1647
 
@@ -1341,6 +1341,7 @@ module Aws::AlexaForBusiness
1341
1341
  # setup_mode_disabled: false,
1342
1342
  # max_volume_limit: 1,
1343
1343
  # pstn_enabled: false,
1344
+ # data_retention_opt_in: false,
1344
1345
  # meeting_room_configuration: {
1345
1346
  # room_utilization_metrics_enabled: false,
1346
1347
  # end_of_meeting_reminder: {
@@ -1414,6 +1415,10 @@ module Aws::AlexaForBusiness
1414
1415
  # Whether PSTN calling is enabled.
1415
1416
  # @return [Boolean]
1416
1417
  #
1418
+ # @!attribute [rw] data_retention_opt_in
1419
+ # Whether data retention of the profile is enabled.
1420
+ # @return [Boolean]
1421
+ #
1417
1422
  # @!attribute [rw] meeting_room_configuration
1418
1423
  # The meeting room settings of a room profile.
1419
1424
  # @return [Types::CreateMeetingRoomConfiguration]
@@ -1436,6 +1441,7 @@ module Aws::AlexaForBusiness
1436
1441
  :setup_mode_disabled,
1437
1442
  :max_volume_limit,
1438
1443
  :pstn_enabled,
1444
+ :data_retention_opt_in,
1439
1445
  :meeting_room_configuration,
1440
1446
  :tags)
1441
1447
  SENSITIVE = []
@@ -4010,6 +4016,10 @@ module Aws::AlexaForBusiness
4010
4016
  # The PSTN setting of a room profile.
4011
4017
  # @return [Boolean]
4012
4018
  #
4019
+ # @!attribute [rw] data_retention_opt_in
4020
+ # Whether data retention of the profile is enabled.
4021
+ # @return [Boolean]
4022
+ #
4013
4023
  # @!attribute [rw] address_book_arn
4014
4024
  # The ARN of the address book.
4015
4025
  # @return [String]
@@ -4033,6 +4043,7 @@ module Aws::AlexaForBusiness
4033
4043
  :setup_mode_disabled,
4034
4044
  :max_volume_limit,
4035
4045
  :pstn_enabled,
4046
+ :data_retention_opt_in,
4036
4047
  :address_book_arn,
4037
4048
  :meeting_room_configuration)
4038
4049
  SENSITIVE = []
@@ -6351,6 +6362,7 @@ module Aws::AlexaForBusiness
6351
6362
  # setup_mode_disabled: false,
6352
6363
  # max_volume_limit: 1,
6353
6364
  # pstn_enabled: false,
6365
+ # data_retention_opt_in: false,
6354
6366
  # meeting_room_configuration: {
6355
6367
  # room_utilization_metrics_enabled: false,
6356
6368
  # end_of_meeting_reminder: {
@@ -6419,6 +6431,10 @@ module Aws::AlexaForBusiness
6419
6431
  # Whether the PSTN setting of the room profile is enabled.
6420
6432
  # @return [Boolean]
6421
6433
  #
6434
+ # @!attribute [rw] data_retention_opt_in
6435
+ # Whether data retention of the profile is enabled.
6436
+ # @return [Boolean]
6437
+ #
6422
6438
  # @!attribute [rw] meeting_room_configuration
6423
6439
  # The updated meeting room settings of a room profile.
6424
6440
  # @return [Types::UpdateMeetingRoomConfiguration]
@@ -6438,6 +6454,7 @@ module Aws::AlexaForBusiness
6438
6454
  :setup_mode_disabled,
6439
6455
  :max_volume_limit,
6440
6456
  :pstn_enabled,
6457
+ :data_retention_opt_in,
6441
6458
  :meeting_room_configuration)
6442
6459
  SENSITIVE = []
6443
6460
  include Aws::Structure
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-alexaforbusiness/customizations'
48
48
  # @!group service
49
49
  module Aws::AlexaForBusiness
50
50
 
51
- GEM_VERSION = '1.46.0'
51
+ GEM_VERSION = '1.50.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-alexaforbusiness
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.46.0
4
+ version: 1.50.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-03-10 00:00:00.000000000 Z
11
+ date: 2021-09-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.112.0
22
+ version: 3.120.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.112.0
32
+ version: 3.120.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -66,8 +66,8 @@ homepage: https://github.com/aws/aws-sdk-ruby
66
66
  licenses:
67
67
  - Apache-2.0
68
68
  metadata:
69
- source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-alexaforbusiness
70
- changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-alexaforbusiness/CHANGELOG.md
69
+ source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-alexaforbusiness
70
+ changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-alexaforbusiness/CHANGELOG.md
71
71
  post_install_message:
72
72
  rdoc_options: []
73
73
  require_paths:
@@ -76,15 +76,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
76
76
  requirements:
77
77
  - - ">="
78
78
  - !ruby/object:Gem::Version
79
- version: '0'
79
+ version: '2.3'
80
80
  required_rubygems_version: !ruby/object:Gem::Requirement
81
81
  requirements:
82
82
  - - ">="
83
83
  - !ruby/object:Gem::Version
84
84
  version: '0'
85
85
  requirements: []
86
- rubyforge_project:
87
- rubygems_version: 2.7.6.2
86
+ rubygems_version: 3.1.6
88
87
  signing_key:
89
88
  specification_version: 4
90
89
  summary: AWS SDK for Ruby - Alexa For Business