aws-sdk-storagegateway 1.84.0 → 1.85.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: f64ee9df65e41c1eaf0c21123885d4d78afdc0a3461033e56754d2793a4eab32
4
- data.tar.gz: 5d885d4673f4d34835a4e5121b658fdfb3eb5d012fe94b326a69d6d198628c92
3
+ metadata.gz: afc887f67ac2c7e2b45423bfc8acb568ac737b538eee61548163b00fd8e78d32
4
+ data.tar.gz: a6958630f83540731532ce858495d22bd01c5559de5d80fb057477cf6d4925ba
5
5
  SHA512:
6
- metadata.gz: df6fab0f5754ffa618bc729a0a7ac710bd0504fc6b61190941ab23d39432ced39384eae20fd6d12169c50e749ee2b10b4296022f3a155811f9e7d6c5b02aaab2
7
- data.tar.gz: 6b8ff0fea0299d6ea1b348b5ac92fb299f764bf392ad942180c10ce54f820f74cc0b99efee60851c054dfc01336384363bf9c6a81e786a3f974d23db493dc535
6
+ metadata.gz: 6413465ca8247db7b665cb5baade032802b31e587b5d9c99ddf6851e4206b74e6a68db3f13c440f65b899ec016f2ede2fe267bbe8cb135d20a1944edbb22be5c
7
+ data.tar.gz: cffa016e97f23bcff524d77d186084b722054b54c9c0d88965da93250b28b3faf23281a1adb667a5bf45859d9631d687e8ebd4e89f62d9723bd8ee237e8267c2
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.85.0 (2024-05-21)
5
+ ------------------
6
+
7
+ * Feature - Added new SMBSecurityStrategy enum named MandatoryEncryptionNoAes128, new mode enforces encryption and disables AES 128-bit algorithums.
8
+
4
9
  1.84.0 (2024-05-13)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.84.0
1
+ 1.85.0
@@ -457,11 +457,12 @@ module Aws::StorageGateway
457
457
  #
458
458
  # @option params [required, String] :gateway_timezone
459
459
  # A value that indicates the time zone you want to set for the gateway.
460
- # The time zone is of the format "GMT-hr:mm" or "GMT+hr:mm". For
461
- # example, GMT-4:00 indicates the time is 4 hours behind GMT. GMT+2:00
462
- # indicates the time is 2 hours ahead of GMT. The time zone is used, for
463
- # example, for scheduling snapshots and your gateway's maintenance
464
- # schedule.
460
+ # The time zone is of the format "GMT", "GMT-hr:mm", or
461
+ # "GMT+hr:mm". For example, GMT indicates Greenwich Mean Time without
462
+ # any offset. GMT-4:00 indicates the time is 4 hours behind GMT.
463
+ # GMT+2:00 indicates the time is 2 hours ahead of GMT. The time zone is
464
+ # used, for example, for scheduling snapshots and your gateway's
465
+ # maintenance schedule.
465
466
  #
466
467
  # @option params [required, String] :gateway_region
467
468
  # A value that indicates the Amazon Web Services Region where you want
@@ -484,8 +485,8 @@ module Aws::StorageGateway
484
485
  # specified is critical to all later functions of the gateway and cannot
485
486
  # be changed after activation. The default value is `CACHED`.
486
487
  #
487
- # Valid Values: `STORED` \| `CACHED` \| `VTL` \| `VTL_SNOW` \| `FILE_S3`
488
- # \| `FILE_FSX_SMB`
488
+ # Valid Values: `STORED` \| `CACHED` \| `VTL` \| `FILE_S3` \|
489
+ # `FILE_FSX_SMB`
489
490
  #
490
491
  # @option params [String] :tape_drive_type
491
492
  # The value that indicates the type of tape drive to use for tape
@@ -3798,7 +3799,7 @@ module Aws::StorageGateway
3798
3799
  # resp.domain_name #=> String
3799
3800
  # resp.active_directory_status #=> String, one of "ACCESS_DENIED", "DETACHED", "JOINED", "JOINING", "NETWORK_ERROR", "TIMEOUT", "UNKNOWN_ERROR"
3800
3801
  # resp.smb_guest_password_set #=> Boolean
3801
- # resp.smb_security_strategy #=> String, one of "ClientSpecified", "MandatorySigning", "MandatoryEncryption"
3802
+ # resp.smb_security_strategy #=> String, one of "ClientSpecified", "MandatorySigning", "MandatoryEncryption", "MandatoryEncryptionNoAes128"
3802
3803
  # resp.file_shares_visible #=> Boolean
3803
3804
  # resp.smb_local_groups.gateway_admins #=> Array
3804
3805
  # resp.smb_local_groups.gateway_admins[0] #=> String
@@ -5574,6 +5575,9 @@ module Aws::StorageGateway
5574
5575
  # `true`, the entire S3 bucket that the file share has access to is
5575
5576
  # refreshed.
5576
5577
  #
5578
+ # Do not include `/` when specifying folder names. For example, you
5579
+ # would specify `samplefolder` rather than `samplefolder/`.
5580
+ #
5577
5581
  # @option params [Boolean] :recursive
5578
5582
  # A value that specifies whether to recursively refresh folders in the
5579
5583
  # cache. The refresh includes folders that were in the cache the last
@@ -7140,7 +7144,7 @@ module Aws::StorageGateway
7140
7144
  #
7141
7145
  # resp = client.update_smb_security_strategy({
7142
7146
  # gateway_arn: "GatewayARN", # required
7143
- # smb_security_strategy: "ClientSpecified", # required, accepts ClientSpecified, MandatorySigning, MandatoryEncryption
7147
+ # smb_security_strategy: "ClientSpecified", # required, accepts ClientSpecified, MandatorySigning, MandatoryEncryption, MandatoryEncryptionNoAes128
7144
7148
  # })
7145
7149
  #
7146
7150
  # @example Response structure
@@ -7312,7 +7316,7 @@ module Aws::StorageGateway
7312
7316
  params: params,
7313
7317
  config: config)
7314
7318
  context[:gem_name] = 'aws-sdk-storagegateway'
7315
- context[:gem_version] = '1.84.0'
7319
+ context[:gem_version] = '1.85.0'
7316
7320
  Seahorse::Client::Request.new(handlers, context)
7317
7321
  end
7318
7322
 
@@ -50,10 +50,11 @@ module Aws::StorageGateway
50
50
  #
51
51
  # @!attribute [rw] gateway_timezone
52
52
  # A value that indicates the time zone you want to set for the
53
- # gateway. The time zone is of the format "GMT-hr:mm" or
54
- # "GMT+hr:mm". For example, GMT-4:00 indicates the time is 4 hours
55
- # behind GMT. GMT+2:00 indicates the time is 2 hours ahead of GMT. The
56
- # time zone is used, for example, for scheduling snapshots and your
53
+ # gateway. The time zone is of the format "GMT", "GMT-hr:mm", or
54
+ # "GMT+hr:mm". For example, GMT indicates Greenwich Mean Time
55
+ # without any offset. GMT-4:00 indicates the time is 4 hours behind
56
+ # GMT. GMT+2:00 indicates the time is 2 hours ahead of GMT. The time
57
+ # zone is used, for example, for scheduling snapshots and your
57
58
  # gateway's maintenance schedule.
58
59
  # @return [String]
59
60
  #
@@ -79,8 +80,8 @@ module Aws::StorageGateway
79
80
  # specified is critical to all later functions of the gateway and
80
81
  # cannot be changed after activation. The default value is `CACHED`.
81
82
  #
82
- # Valid Values: `STORED` \| `CACHED` \| `VTL` \| `VTL_SNOW` \|
83
- # `FILE_S3` \| `FILE_FSX_SMB`
83
+ # Valid Values: `STORED` \| `CACHED` \| `VTL` \| `FILE_S3` \|
84
+ # `FILE_FSX_SMB`
84
85
  # @return [String]
85
86
  #
86
87
  # @!attribute [rw] tape_drive_type
@@ -2854,6 +2855,10 @@ module Aws::StorageGateway
2854
2855
  # @!attribute [rw] host_environment
2855
2856
  # The type of hardware or software platform on which the gateway is
2856
2857
  # running.
2858
+ #
2859
+ # <note markdown="1"> Tape Gateway is no longer available on Snow Family devices.
2860
+ #
2861
+ # </note>
2857
2862
  # @return [String]
2858
2863
  #
2859
2864
  # @!attribute [rw] endpoint_type
@@ -3115,22 +3120,30 @@ module Aws::StorageGateway
3115
3120
  # @!attribute [rw] smb_security_strategy
3116
3121
  # The type of security strategy that was specified for file gateway.
3117
3122
  #
3118
- # * `ClientSpecified`: If you use this option, requests are
3123
+ # * `ClientSpecified`: If you choose this option, requests are
3119
3124
  # established based on what is negotiated by the client. This option
3120
3125
  # is recommended when you want to maximize compatibility across
3121
- # different clients in your environment. Only supported for S3 File
3122
- # Gateways.
3126
+ # different clients in your environment. Supported only for S3 File
3127
+ # Gateway.
3123
3128
  #
3124
- # * `MandatorySigning`: If you use this option, file gateway only
3129
+ # * `MandatorySigning`: If you use this option, File Gateway only
3125
3130
  # allows connections from SMBv2 or SMBv3 clients that have signing
3126
- # enabled. This option works with SMB clients on Microsoft Windows
3127
- # Vista, Windows Server 2008 or newer.
3131
+ # turned on. This option works with SMB clients on Microsoft Windows
3132
+ # Vista, Windows Server 2008, or later.
3133
+ #
3134
+ # * `MandatoryEncryption`: If you use this option, File Gateway only
3135
+ # allows connections from SMBv3 clients that have encryption turned
3136
+ # on. Both 256-bit and 128-bit algorithms are allowed. This option
3137
+ # is recommended for environments that handle sensitive data. It
3138
+ # works with SMB clients on Microsoft Windows 8, Windows Server
3139
+ # 2012, or later.
3128
3140
  #
3129
- # * `MandatoryEncryption`: If you use this option, file gateway only
3130
- # allows connections from SMBv3 clients that have encryption
3131
- # enabled. This option is highly recommended for environments that
3132
- # handle sensitive data. This option works with SMB clients on
3133
- # Microsoft Windows 8, Windows Server 2012 or newer.
3141
+ # * `EnforceEncryption`: If you use this option, File Gateway only
3142
+ # allows connections from SMBv3 clients that use 256-bit AES
3143
+ # encryption algorithms. 128-bit algorithms are not allowed. This
3144
+ # option is recommended for environments that handle sensitive data.
3145
+ # It works with SMB clients on Microsoft Windows 8, Windows Server
3146
+ # 2012, or later.
3134
3147
  # @return [String]
3135
3148
  #
3136
3149
  # @!attribute [rw] file_shares_visible
@@ -4062,6 +4075,10 @@ module Aws::StorageGateway
4062
4075
  # @!attribute [rw] host_environment
4063
4076
  # The type of hardware or software platform on which the gateway is
4064
4077
  # running.
4078
+ #
4079
+ # <note markdown="1"> Tape Gateway is no longer available on Snow Family devices.
4080
+ #
4081
+ # </note>
4065
4082
  # @return [String]
4066
4083
  #
4067
4084
  # @!attribute [rw] host_environment_id
@@ -5169,6 +5186,9 @@ module Aws::StorageGateway
5169
5186
  # folders at the root of the Amazon S3 bucket. If `Recursive` is set
5170
5187
  # to `true`, the entire S3 bucket that the file share has access to is
5171
5188
  # refreshed.
5189
+ #
5190
+ # Do not include `/` when specifying folder names. For example, you
5191
+ # would specify `samplefolder` rather than `samplefolder/`.
5172
5192
  # @return [Array<String>]
5173
5193
  #
5174
5194
  # @!attribute [rw] recursive
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-storagegateway/customizations'
52
52
  # @!group service
53
53
  module Aws::StorageGateway
54
54
 
55
- GEM_VERSION = '1.84.0'
55
+ GEM_VERSION = '1.85.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -716,7 +716,7 @@ module Aws
716
716
  def domain_name: () -> ::String
717
717
  def active_directory_status: () -> ("ACCESS_DENIED" | "DETACHED" | "JOINED" | "JOINING" | "NETWORK_ERROR" | "TIMEOUT" | "UNKNOWN_ERROR")
718
718
  def smb_guest_password_set: () -> bool
719
- def smb_security_strategy: () -> ("ClientSpecified" | "MandatorySigning" | "MandatoryEncryption")
719
+ def smb_security_strategy: () -> ("ClientSpecified" | "MandatorySigning" | "MandatoryEncryption" | "MandatoryEncryptionNoAes128")
720
720
  def file_shares_visible: () -> bool
721
721
  def smb_local_groups: () -> Types::SMBLocalGroups
722
722
  end
@@ -1350,7 +1350,7 @@ module Aws
1350
1350
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#update_smb_security_strategy-instance_method
1351
1351
  def update_smb_security_strategy: (
1352
1352
  gateway_arn: ::String,
1353
- smb_security_strategy: ("ClientSpecified" | "MandatorySigning" | "MandatoryEncryption")
1353
+ smb_security_strategy: ("ClientSpecified" | "MandatorySigning" | "MandatoryEncryption" | "MandatoryEncryptionNoAes128")
1354
1354
  ) -> _UpdateSMBSecurityStrategyResponseSuccess
1355
1355
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateSMBSecurityStrategyResponseSuccess
1356
1356
 
data/sig/types.rbs CHANGED
@@ -638,7 +638,7 @@ module Aws::StorageGateway
638
638
  attr_accessor domain_name: ::String
639
639
  attr_accessor active_directory_status: ("ACCESS_DENIED" | "DETACHED" | "JOINED" | "JOINING" | "NETWORK_ERROR" | "TIMEOUT" | "UNKNOWN_ERROR")
640
640
  attr_accessor smb_guest_password_set: bool
641
- attr_accessor smb_security_strategy: ("ClientSpecified" | "MandatorySigning" | "MandatoryEncryption")
641
+ attr_accessor smb_security_strategy: ("ClientSpecified" | "MandatorySigning" | "MandatoryEncryption" | "MandatoryEncryptionNoAes128")
642
642
  attr_accessor file_shares_visible: bool
643
643
  attr_accessor smb_local_groups: Types::SMBLocalGroups
644
644
  SENSITIVE: []
@@ -1501,7 +1501,7 @@ module Aws::StorageGateway
1501
1501
 
1502
1502
  class UpdateSMBSecurityStrategyInput
1503
1503
  attr_accessor gateway_arn: ::String
1504
- attr_accessor smb_security_strategy: ("ClientSpecified" | "MandatorySigning" | "MandatoryEncryption")
1504
+ attr_accessor smb_security_strategy: ("ClientSpecified" | "MandatorySigning" | "MandatoryEncryption" | "MandatoryEncryptionNoAes128")
1505
1505
  SENSITIVE: []
1506
1506
  end
1507
1507
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-storagegateway
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.84.0
4
+ version: 1.85.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: 2024-05-13 00:00:00.000000000 Z
11
+ date: 2024-05-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core