aws-sdk-alexaforbusiness 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: 8c0a08aff69ab7b40c010b52b0bff1073b32766b9b6fe1938831df6cbfe94f42
4
- data.tar.gz: bfae1e99e647930698b0b1fdb89cd4caf70fd6e502d77deddb4bac90227ab4a6
3
+ metadata.gz: 75d59fe51a57209147d1470468a9adf913d22a53518e34c27d7114b99cc54396
4
+ data.tar.gz: 64b8c2f70b585eed4765588d1725d190b43d4dc8e28106a77c87bf3268804d62
5
5
  SHA512:
6
- metadata.gz: 8e38c6a56ad92ad2ecf33d3fe16c16bc626b8ab90b8816501079c9512954bdbc385b4979ccdd74df8ffed609d4b9723ad425943aff2cbcf4e748c7db097ccc97
7
- data.tar.gz: 33a76b2213228a0a6d30587ee947cfb06eb489a0d1d3d7b6be36178a2b3468e61fc6102faee6c9f52018caacfa89d4f3d42ad3992b673dbe9bab037f54d977a6
6
+ metadata.gz: '06958f3b19a3319a19aaa4988771382ee0e50e097039271c790750a8303af586c5876b4e3a4ce3f4a0c0ca301c554576e5d8c2a2213b6590f167a251e39146ba'
7
+ data.tar.gz: '036298916beebe4c4651f9c70d95f7f504b96b1b91398b4559077d52405c89088fd27a32399db5a70ea85d22d7a35f2a63671a86a2cc317e237e552e8337ca0d'
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.47.0 (2021-03-25)
5
+ ------------------
6
+
7
+ * 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.
8
+
4
9
  1.46.0 (2021-03-10)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.46.0
1
+ 1.47.0
@@ -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.47.0'
52
52
 
53
53
  end
@@ -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.47.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
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.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-03-10 00:00:00.000000000 Z
11
+ date: 2021-03-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -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: