aws-sdk-workmail 1.89.0 → 1.90.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: aa17ac528086b79cb289afa5f77f8fd1c932d09a36a4db3a1f198d56198ca56c
4
- data.tar.gz: 1c9e0920f9b07454b0cb00ed8e8c9220263c5f36f21ab179eaf5b5fedea1ef82
3
+ metadata.gz: 4006fa3226e8afc58efad378ea3ab8daf91fc0cefe2cee2a09802933c1761bb5
4
+ data.tar.gz: 786b3f53df4eb666e4f14d222fbbfcd26257471a299fc7cfd142cec1b6f66ebe
5
5
  SHA512:
6
- metadata.gz: 10995e2452a207ef835378d40340e963231823280c4f8331dc51a81b202b9d20931fbd96cfe4c83a0e0d80f3e545516f195e5f63349e1f843321b101f181d9d4
7
- data.tar.gz: 2c25c0f8720bfa9b446776b18a0afe8a4974c106fd00979e54236ffdd4fdf1dabf0695ae5b2ffe0cc606e80dd86fc4f74b75d8b53176dcd8f621637322fb931a
6
+ metadata.gz: 6b9051620588aa8782e02855734a5c91634c770a740c8670fd0cf26a1483ebec49229e417479d029470e6d30a2528003ca98fc41fadf61c0457e4c33a5eec2a0
7
+ data.tar.gz: fc8c14e166ae21baf7f804464eaed528f61c8b73650c6666f6c4a924cbc95aba802a1bf6bda66fa6e99c771802597e5705decc253a420a206930f8dab544809f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.90.0 (2025-09-02)
5
+ ------------------
6
+
7
+ * Feature - Make RoleArn an optional parameter for the PutEmailMonitoringConfiguration API, and add UnsupportedOperationException to RegisterToWorkMail.
8
+
4
9
  1.89.0 (2025-08-27)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.89.0
1
+ 1.90.0
@@ -3797,9 +3797,10 @@ module Aws::WorkMail
3797
3797
  # The ID of the organization for which the email monitoring
3798
3798
  # configuration is set.
3799
3799
  #
3800
- # @option params [required, String] :role_arn
3800
+ # @option params [String] :role_arn
3801
3801
  # The Amazon Resource Name (ARN) of the IAM Role associated with the
3802
- # email monitoring configuration.
3802
+ # email monitoring configuration. If absent, the IAM Role Arn of
3803
+ # AWSServiceRoleForAmazonWorkMailEvents will be used.
3803
3804
  #
3804
3805
  # @option params [required, String] :log_group_arn
3805
3806
  # The Amazon Resource Name (ARN) of the CloudWatch Log group associated
@@ -3811,7 +3812,7 @@ module Aws::WorkMail
3811
3812
  #
3812
3813
  # resp = client.put_email_monitoring_configuration({
3813
3814
  # organization_id: "OrganizationId", # required
3814
- # role_arn: "RoleArn", # required
3815
+ # role_arn: "RoleArn",
3815
3816
  # log_group_arn: "LogGroupArn", # required
3816
3817
  # })
3817
3818
  #
@@ -4898,7 +4899,7 @@ module Aws::WorkMail
4898
4899
  tracer: tracer
4899
4900
  )
4900
4901
  context[:gem_name] = 'aws-sdk-workmail'
4901
- context[:gem_version] = '1.89.0'
4902
+ context[:gem_version] = '1.90.0'
4902
4903
  Seahorse::Client::Request.new(handlers, context)
4903
4904
  end
4904
4905
 
@@ -1339,7 +1339,7 @@ module Aws::WorkMail
1339
1339
  PutAccessControlRuleResponse.struct_class = Types::PutAccessControlRuleResponse
1340
1340
 
1341
1341
  PutEmailMonitoringConfigurationRequest.add_member(:organization_id, Shapes::ShapeRef.new(shape: OrganizationId, required: true, location_name: "OrganizationId"))
1342
- PutEmailMonitoringConfigurationRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "RoleArn"))
1342
+ PutEmailMonitoringConfigurationRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "RoleArn"))
1343
1343
  PutEmailMonitoringConfigurationRequest.add_member(:log_group_arn, Shapes::ShapeRef.new(shape: LogGroupArn, required: true, location_name: "LogGroupArn"))
1344
1344
  PutEmailMonitoringConfigurationRequest.struct_class = Types::PutEmailMonitoringConfigurationRequest
1345
1345
 
@@ -2669,6 +2669,7 @@ module Aws::WorkMail
2669
2669
  o.errors << Shapes::ShapeRef.new(shape: MailDomainStateException)
2670
2670
  o.errors << Shapes::ShapeRef.new(shape: OrganizationNotFoundException)
2671
2671
  o.errors << Shapes::ShapeRef.new(shape: OrganizationStateException)
2672
+ o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationException)
2672
2673
  end)
2673
2674
 
2674
2675
  api.add_operation(:reset_password, Seahorse::Model::Operation.new.tap do |o|
@@ -4433,7 +4433,8 @@ module Aws::WorkMail
4433
4433
  #
4434
4434
  # @!attribute [rw] role_arn
4435
4435
  # The Amazon Resource Name (ARN) of the IAM Role associated with the
4436
- # email monitoring configuration.
4436
+ # email monitoring configuration. If absent, the IAM Role Arn of
4437
+ # AWSServiceRoleForAmazonWorkMailEvents will be used.
4437
4438
  # @return [String]
4438
4439
  #
4439
4440
  # @!attribute [rw] log_group_arn
@@ -54,7 +54,7 @@ module Aws::WorkMail
54
54
  autoload :EndpointProvider, 'aws-sdk-workmail/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-workmail/endpoints'
56
56
 
57
- GEM_VERSION = '1.89.0'
57
+ GEM_VERSION = '1.90.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -1056,7 +1056,7 @@ module Aws
1056
1056
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkMail/Client.html#put_email_monitoring_configuration-instance_method
1057
1057
  def put_email_monitoring_configuration: (
1058
1058
  organization_id: ::String,
1059
- role_arn: ::String,
1059
+ ?role_arn: ::String,
1060
1060
  log_group_arn: ::String
1061
1061
  ) -> _PutEmailMonitoringConfigurationResponseSuccess
1062
1062
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutEmailMonitoringConfigurationResponseSuccess
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-workmail
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.89.0
4
+ version: 1.90.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services