aws-sdk-storagegateway 1.86.0 → 1.88.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: 756acb83b77a024fda515510eb73e429b005e9ac4d62f3fa2ce776152103df72
4
- data.tar.gz: 819a7d48e817252c0aedd7ff456b7aea0f614c88267cc39c82c43c151b8f64fa
3
+ metadata.gz: 7c438615b6a786cd0bf8260789858f8b13624f41e39a84a990d2ce3098f38098
4
+ data.tar.gz: 5dfae397c1445b83c7e0a0c4659289fe0003b5bf4789b2437ae029ed5588c93b
5
5
  SHA512:
6
- metadata.gz: 768bed7ff75709d40405c510bdf741a786ca7d6e0d57888feef9bc86eee19060625b71f511c44806a6488a63c655dc6217804c5dcd24b57cb4c05e0d9ee5ff3b
7
- data.tar.gz: ed874b0b9db9c04633104642f8f2927a844b21d47c2b659bde1cec41054f96d620bf9e30660f1f9ad0ab3169c6dad5f4814a41356f1106b7156cfc43c3c2a646
6
+ metadata.gz: ac371462c19039d44705260fd71eb05a8c540f345ad4298e8b04e1dd01949135484f258bdd2dd9d3a8b87f6872812a923356e8af32059141ea80368880c6b2ef
7
+ data.tar.gz: 39d0780e864fc8b3d8eca96b36894794ee80946f7259d31327417ed2e432f9b71cd479ce930e8f2b4a8bfff3f7a644ec8ab4b1aae6477b820eddd61600e0cf2e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.88.0 (2024-06-24)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.87.0 (2024-06-06)
10
+ ------------------
11
+
12
+ * Feature - Adds SoftwareUpdatePreferences to DescribeMaintenanceStartTime and UpdateMaintenanceStartTime, a structure which contains AutomaticUpdatePolicy.
13
+
4
14
  1.86.0 (2024-06-05)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.86.0
1
+ 1.88.0
@@ -89,6 +89,11 @@ module Aws::StorageGateway
89
89
 
90
90
  # @overload initialize(options)
91
91
  # @param [Hash] options
92
+ #
93
+ # @option options [Array<Seahorse::Client::Plugin>] :plugins ([]])
94
+ # A list of plugins to apply to the client. Each plugin is either a
95
+ # class name or an instance of a plugin class.
96
+ #
92
97
  # @option options [required, Aws::CredentialProvider] :credentials
93
98
  # Your AWS credentials. This can be an instance of any one of the
94
99
  # following classes:
@@ -209,7 +214,6 @@ module Aws::StorageGateway
209
214
  # 'https://example.com'
210
215
  # 'http://example.com:123'
211
216
  #
212
- #
213
217
  # @option options [Integer] :endpoint_cache_max_entries (1000)
214
218
  # Used for the maximum size limit of the LRU cache storing endpoints data
215
219
  # for endpoint discovery enabled operations. Defaults to 1000.
@@ -298,7 +302,6 @@ module Aws::StorageGateway
298
302
  # throttling. This is a provisional mode that may change behavior
299
303
  # in the future.
300
304
  #
301
- #
302
305
  # @option options [String] :sdk_ua_app_id
303
306
  # A unique and opaque application ID that is appended to the
304
307
  # User-Agent header as app/sdk_ua_app_id. It should have a
@@ -3582,9 +3585,10 @@ module Aws::StorageGateway
3582
3585
  req.send_request(options)
3583
3586
  end
3584
3587
 
3585
- # Returns your gateway's weekly maintenance start time including the
3586
- # day and time of the week. Note that values are in terms of the
3587
- # gateway's time zone.
3588
+ # Returns your gateway's maintenance window schedule information, with
3589
+ # values for monthly or weekly cadence, specific day and time to begin
3590
+ # maintenance, and which types of updates to apply. Time values returned
3591
+ # are for the gateway's time zone.
3588
3592
  #
3589
3593
  # @option params [required, String] :gateway_arn
3590
3594
  # The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
@@ -3599,6 +3603,7 @@ module Aws::StorageGateway
3599
3603
  # * {Types::DescribeMaintenanceStartTimeOutput#day_of_week #day_of_week} => Integer
3600
3604
  # * {Types::DescribeMaintenanceStartTimeOutput#day_of_month #day_of_month} => Integer
3601
3605
  # * {Types::DescribeMaintenanceStartTimeOutput#timezone #timezone} => String
3606
+ # * {Types::DescribeMaintenanceStartTimeOutput#software_update_preferences #software_update_preferences} => Types::SoftwareUpdatePreferences
3602
3607
  #
3603
3608
  #
3604
3609
  # @example Example: To describe gateway's maintenance start time
@@ -3632,6 +3637,7 @@ module Aws::StorageGateway
3632
3637
  # resp.day_of_week #=> Integer
3633
3638
  # resp.day_of_month #=> Integer
3634
3639
  # resp.timezone #=> String
3640
+ # resp.software_update_preferences.automatic_update_policy #=> String, one of "ALL_VERSIONS", "EMERGENCY_VERSIONS_ONLY"
3635
3641
  #
3636
3642
  # @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/DescribeMaintenanceStartTime AWS API Documentation
3637
3643
  #
@@ -6418,9 +6424,10 @@ module Aws::StorageGateway
6418
6424
  req.send_request(options)
6419
6425
  end
6420
6426
 
6421
- # Updates a gateway's metadata, which includes the gateway's name and
6422
- # time zone. To specify which gateway to update, use the Amazon Resource
6423
- # Name (ARN) of the gateway in your request.
6427
+ # Updates a gateway's metadata, which includes the gateway's name,
6428
+ # time zone, and metadata cache size. To specify which gateway to
6429
+ # update, use the Amazon Resource Name (ARN) of the gateway in your
6430
+ # request.
6424
6431
  #
6425
6432
  # <note markdown="1"> For gateways activated after September 2, 2015, the gateway's ARN
6426
6433
  # contains the gateway ID rather than the gateway name. However,
@@ -6450,7 +6457,14 @@ module Aws::StorageGateway
6450
6457
  # [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/WhatIsCloudWatchLogs.html
6451
6458
  #
6452
6459
  # @option params [String] :gateway_capacity
6453
- # Specifies the size of the gateway's metadata cache.
6460
+ # Specifies the size of the gateway's metadata cache. This setting
6461
+ # impacts gateway performance and hardware recommendations. For more
6462
+ # information, see [Performance guidance for gateways with multiple file
6463
+ # shares][1] in the *Amazon S3 File Gateway User Guide*.
6464
+ #
6465
+ #
6466
+ #
6467
+ # [1]: https://docs.aws.amazon.com/filegateway/latest/files3/performance-multiple-file-shares.html
6454
6468
  #
6455
6469
  # @return [Types::UpdateGatewayInformationOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6456
6470
  #
@@ -6562,21 +6576,36 @@ module Aws::StorageGateway
6562
6576
  req.send_request(options)
6563
6577
  end
6564
6578
 
6565
- # Updates a gateway's weekly maintenance start time information,
6566
- # including day and time of the week. The maintenance time is the time
6567
- # in your gateway's time zone.
6579
+ # Updates a gateway's maintenance window schedule, with settings for
6580
+ # monthly or weekly cadence, specific day and time to begin maintenance,
6581
+ # and which types of updates to apply. Time configuration uses the
6582
+ # gateway's time zone. You can pass values for a complete maintenance
6583
+ # schedule, or update policy, or both. Previous values will persist for
6584
+ # whichever setting you choose not to modify. If an incomplete or
6585
+ # invalid maintenance schedule is passed, the entire request will be
6586
+ # rejected with an error and no changes will occur.
6587
+ #
6588
+ # A complete maintenance schedule must include values for *both*
6589
+ # `MinuteOfHour` and `HourOfDay`, and *either* `DayOfMonth` *or*
6590
+ # `DayOfWeek`.
6591
+ #
6592
+ # <note markdown="1"> We recommend keeping maintenance updates turned on, except in specific
6593
+ # use cases where the brief disruptions caused by updating the gateway
6594
+ # could critically impact your deployment.
6595
+ #
6596
+ # </note>
6568
6597
  #
6569
6598
  # @option params [required, String] :gateway_arn
6570
6599
  # The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
6571
6600
  # operation to return a list of gateways for your account and Amazon Web
6572
6601
  # Services Region.
6573
6602
  #
6574
- # @option params [required, Integer] :hour_of_day
6603
+ # @option params [Integer] :hour_of_day
6575
6604
  # The hour component of the maintenance start time represented as *hh*,
6576
6605
  # where *hh* is the hour (00 to 23). The hour of the day is in the time
6577
6606
  # zone of the gateway.
6578
6607
  #
6579
- # @option params [required, Integer] :minute_of_hour
6608
+ # @option params [Integer] :minute_of_hour
6580
6609
  # The minute component of the maintenance start time represented as
6581
6610
  # *mm*, where *mm* is the minute (00 to 59). The minute of the hour is
6582
6611
  # in the time zone of the gateway.
@@ -6584,12 +6613,24 @@ module Aws::StorageGateway
6584
6613
  # @option params [Integer] :day_of_week
6585
6614
  # The day of the week component of the maintenance start time week
6586
6615
  # represented as an ordinal number from 0 to 6, where 0 represents
6587
- # Sunday and 6 Saturday.
6616
+ # Sunday and 6 represents Saturday.
6588
6617
  #
6589
6618
  # @option params [Integer] :day_of_month
6590
6619
  # The day of the month component of the maintenance start time
6591
6620
  # represented as an ordinal number from 1 to 28, where 1 represents the
6592
- # first day of the month and 28 represents the last day of the month.
6621
+ # first day of the month. It is not possible to set the maintenance
6622
+ # schedule to start on days 29 through 31.
6623
+ #
6624
+ # @option params [Types::SoftwareUpdatePreferences] :software_update_preferences
6625
+ # A set of variables indicating the software update preferences for the
6626
+ # gateway.
6627
+ #
6628
+ # Includes `AutomaticUpdatePolicy` field with the following inputs:
6629
+ #
6630
+ # `ALL_VERSIONS` - Enables regular gateway maintenance updates.
6631
+ #
6632
+ # `EMERGENCY_VERSIONS_ONLY` - Disables regular gateway maintenance
6633
+ # updates.
6593
6634
  #
6594
6635
  # @return [Types::UpdateMaintenanceStartTimeOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6595
6636
  #
@@ -6617,10 +6658,13 @@ module Aws::StorageGateway
6617
6658
  #
6618
6659
  # resp = client.update_maintenance_start_time({
6619
6660
  # gateway_arn: "GatewayARN", # required
6620
- # hour_of_day: 1, # required
6621
- # minute_of_hour: 1, # required
6661
+ # hour_of_day: 1,
6662
+ # minute_of_hour: 1,
6622
6663
  # day_of_week: 1,
6623
6664
  # day_of_month: 1,
6665
+ # software_update_preferences: {
6666
+ # automatic_update_policy: "ALL_VERSIONS", # accepts ALL_VERSIONS, EMERGENCY_VERSIONS_ONLY
6667
+ # },
6624
6668
  # })
6625
6669
  #
6626
6670
  # @example Response structure
@@ -7103,15 +7147,22 @@ module Aws::StorageGateway
7103
7147
  req.send_request(options)
7104
7148
  end
7105
7149
 
7106
- # Updates the SMB security strategy on a file gateway. This action is
7107
- # only supported in file gateways.
7150
+ # Updates the SMB security strategy level for an Amazon S3 file gateway.
7151
+ # This action is only supported for Amazon S3 file gateways.
7108
7152
  #
7109
- # <note markdown="1"> This API is called Security level in the User Guide.
7153
+ # <note markdown="1"> For information about configuring this setting using the Amazon Web
7154
+ # Services console, see [Setting a security level for your gateway][1]
7155
+ # in the *Amazon S3 File Gateway User Guide*.
7110
7156
  #
7111
- # A higher security level can affect performance of the gateway.
7157
+ # A higher security strategy level can affect performance of the
7158
+ # gateway.
7112
7159
  #
7113
7160
  # </note>
7114
7161
  #
7162
+ #
7163
+ #
7164
+ # [1]: https://docs.aws.amazon.com/filegateway/latest/files3/security-strategy.html
7165
+ #
7115
7166
  # @option params [required, String] :gateway_arn
7116
7167
  # The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
7117
7168
  # operation to return a list of gateways for your account and Amazon Web
@@ -7120,22 +7171,29 @@ module Aws::StorageGateway
7120
7171
  # @option params [required, String] :smb_security_strategy
7121
7172
  # Specifies the type of security strategy.
7122
7173
  #
7123
- # ClientSpecified: if you use this option, requests are established
7174
+ # `ClientSpecified`: If you choose this option, requests are established
7124
7175
  # based on what is negotiated by the client. This option is recommended
7125
7176
  # when you want to maximize compatibility across different clients in
7126
- # your environment. Supported only in S3 File Gateway.
7177
+ # your environment. Supported only for S3 File Gateway.
7127
7178
  #
7128
- # MandatorySigning: if you use this option, file gateway only allows
7129
- # connections from SMBv2 or SMBv3 clients that have signing enabled.
7130
- # This option works with SMB clients on Microsoft Windows Vista, Windows
7131
- # Server 2008 or newer.
7179
+ # `MandatorySigning`: If you choose this option, File Gateway only
7180
+ # allows connections from SMBv2 or SMBv3 clients that have signing
7181
+ # enabled. This option works with SMB clients on Microsoft Windows
7182
+ # Vista, Windows Server 2008 or newer.
7132
7183
  #
7133
- # MandatoryEncryption: if you use this option, file gateway only allows
7134
- # connections from SMBv3 clients that have encryption enabled. This
7135
- # option is highly recommended for environments that handle sensitive
7184
+ # `MandatoryEncryption`: If you choose this option, File Gateway only
7185
+ # allows connections from SMBv3 clients that have encryption enabled.
7186
+ # This option is recommended for environments that handle sensitive
7136
7187
  # data. This option works with SMB clients on Microsoft Windows 8,
7137
7188
  # Windows Server 2012 or newer.
7138
7189
  #
7190
+ # `MandatoryEncryptionNoAes128`: If you choose this option, File Gateway
7191
+ # only allows connections from SMBv3 clients that use 256-bit AES
7192
+ # encryption algorithms. 128-bit algorithms are not allowed. This option
7193
+ # is recommended for environments that handle sensitive data. It works
7194
+ # with SMB clients on Microsoft Windows 8, Windows Server 2012, or
7195
+ # later.
7196
+ #
7139
7197
  # @return [Types::UpdateSMBSecurityStrategyOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7140
7198
  #
7141
7199
  # * {Types::UpdateSMBSecurityStrategyOutput#gateway_arn #gateway_arn} => String
@@ -7316,7 +7374,7 @@ module Aws::StorageGateway
7316
7374
  params: params,
7317
7375
  config: config)
7318
7376
  context[:gem_name] = 'aws-sdk-storagegateway'
7319
- context[:gem_version] = '1.86.0'
7377
+ context[:gem_version] = '1.88.0'
7320
7378
  Seahorse::Client::Request.new(handlers, context)
7321
7379
  end
7322
7380
 
@@ -37,6 +37,7 @@ module Aws::StorageGateway
37
37
  AutomaticTapeCreationPolicyInfos = Shapes::ListShape.new(name: 'AutomaticTapeCreationPolicyInfos')
38
38
  AutomaticTapeCreationRule = Shapes::StructureShape.new(name: 'AutomaticTapeCreationRule')
39
39
  AutomaticTapeCreationRules = Shapes::ListShape.new(name: 'AutomaticTapeCreationRules')
40
+ AutomaticUpdatePolicy = Shapes::StringShape.new(name: 'AutomaticUpdatePolicy')
40
41
  AvailabilityMonitorTestStatus = Shapes::StringShape.new(name: 'AvailabilityMonitorTestStatus')
41
42
  BandwidthDownloadRateLimit = Shapes::IntegerShape.new(name: 'BandwidthDownloadRateLimit')
42
43
  BandwidthRateLimitInterval = Shapes::StructureShape.new(name: 'BandwidthRateLimitInterval')
@@ -300,6 +301,7 @@ module Aws::StorageGateway
300
301
  ShutdownGatewayOutput = Shapes::StructureShape.new(name: 'ShutdownGatewayOutput')
301
302
  SnapshotDescription = Shapes::StringShape.new(name: 'SnapshotDescription')
302
303
  SnapshotId = Shapes::StringShape.new(name: 'SnapshotId')
304
+ SoftwareUpdatePreferences = Shapes::StructureShape.new(name: 'SoftwareUpdatePreferences')
303
305
  SoftwareUpdatesEndDate = Shapes::StringShape.new(name: 'SoftwareUpdatesEndDate')
304
306
  SoftwareVersion = Shapes::StringShape.new(name: 'SoftwareVersion')
305
307
  Squash = Shapes::StringShape.new(name: 'Squash')
@@ -844,6 +846,7 @@ module Aws::StorageGateway
844
846
  DescribeMaintenanceStartTimeOutput.add_member(:day_of_week, Shapes::ShapeRef.new(shape: DayOfWeek, location_name: "DayOfWeek"))
845
847
  DescribeMaintenanceStartTimeOutput.add_member(:day_of_month, Shapes::ShapeRef.new(shape: DayOfMonth, location_name: "DayOfMonth"))
846
848
  DescribeMaintenanceStartTimeOutput.add_member(:timezone, Shapes::ShapeRef.new(shape: GatewayTimezone, location_name: "Timezone"))
849
+ DescribeMaintenanceStartTimeOutput.add_member(:software_update_preferences, Shapes::ShapeRef.new(shape: SoftwareUpdatePreferences, location_name: "SoftwareUpdatePreferences"))
847
850
  DescribeMaintenanceStartTimeOutput.struct_class = Types::DescribeMaintenanceStartTimeOutput
848
851
 
849
852
  DescribeNFSFileSharesInput.add_member(:file_share_arn_list, Shapes::ShapeRef.new(shape: FileShareARNList, required: true, location_name: "FileShareARNList"))
@@ -1323,6 +1326,9 @@ module Aws::StorageGateway
1323
1326
  ShutdownGatewayOutput.add_member(:gateway_arn, Shapes::ShapeRef.new(shape: GatewayARN, location_name: "GatewayARN"))
1324
1327
  ShutdownGatewayOutput.struct_class = Types::ShutdownGatewayOutput
1325
1328
 
1329
+ SoftwareUpdatePreferences.add_member(:automatic_update_policy, Shapes::ShapeRef.new(shape: AutomaticUpdatePolicy, location_name: "AutomaticUpdatePolicy"))
1330
+ SoftwareUpdatePreferences.struct_class = Types::SoftwareUpdatePreferences
1331
+
1326
1332
  StartAvailabilityMonitorTestInput.add_member(:gateway_arn, Shapes::ShapeRef.new(shape: GatewayARN, required: true, location_name: "GatewayARN"))
1327
1333
  StartAvailabilityMonitorTestInput.struct_class = Types::StartAvailabilityMonitorTestInput
1328
1334
 
@@ -1484,10 +1490,11 @@ module Aws::StorageGateway
1484
1490
  UpdateGatewaySoftwareNowOutput.struct_class = Types::UpdateGatewaySoftwareNowOutput
1485
1491
 
1486
1492
  UpdateMaintenanceStartTimeInput.add_member(:gateway_arn, Shapes::ShapeRef.new(shape: GatewayARN, required: true, location_name: "GatewayARN"))
1487
- UpdateMaintenanceStartTimeInput.add_member(:hour_of_day, Shapes::ShapeRef.new(shape: HourOfDay, required: true, location_name: "HourOfDay"))
1488
- UpdateMaintenanceStartTimeInput.add_member(:minute_of_hour, Shapes::ShapeRef.new(shape: MinuteOfHour, required: true, location_name: "MinuteOfHour"))
1493
+ UpdateMaintenanceStartTimeInput.add_member(:hour_of_day, Shapes::ShapeRef.new(shape: HourOfDay, location_name: "HourOfDay"))
1494
+ UpdateMaintenanceStartTimeInput.add_member(:minute_of_hour, Shapes::ShapeRef.new(shape: MinuteOfHour, location_name: "MinuteOfHour"))
1489
1495
  UpdateMaintenanceStartTimeInput.add_member(:day_of_week, Shapes::ShapeRef.new(shape: DayOfWeek, location_name: "DayOfWeek"))
1490
1496
  UpdateMaintenanceStartTimeInput.add_member(:day_of_month, Shapes::ShapeRef.new(shape: DayOfMonth, location_name: "DayOfMonth"))
1497
+ UpdateMaintenanceStartTimeInput.add_member(:software_update_preferences, Shapes::ShapeRef.new(shape: SoftwareUpdatePreferences, location_name: "SoftwareUpdatePreferences"))
1491
1498
  UpdateMaintenanceStartTimeInput.struct_class = Types::UpdateMaintenanceStartTimeInput
1492
1499
 
1493
1500
  UpdateMaintenanceStartTimeOutput.add_member(:gateway_arn, Shapes::ShapeRef.new(shape: GatewayARN, location_name: "GatewayARN"))
@@ -1627,9 +1634,11 @@ module Aws::StorageGateway
1627
1634
 
1628
1635
  api.metadata = {
1629
1636
  "apiVersion" => "2013-06-30",
1637
+ "auth" => ["aws.auth#sigv4"],
1630
1638
  "endpointPrefix" => "storagegateway",
1631
1639
  "jsonVersion" => "1.1",
1632
1640
  "protocol" => "json",
1641
+ "protocols" => ["json"],
1633
1642
  "serviceFullName" => "AWS Storage Gateway",
1634
1643
  "serviceId" => "Storage Gateway",
1635
1644
  "signatureVersion" => "v4",
@@ -2944,6 +2944,8 @@ module Aws::StorageGateway
2944
2944
 
2945
2945
  # A JSON object containing the following fields:
2946
2946
  #
2947
+ # * DescribeMaintenanceStartTimeOutput$SoftwareUpdatePreferences
2948
+ #
2947
2949
  # * DescribeMaintenanceStartTimeOutput$DayOfMonth
2948
2950
  #
2949
2951
  # * DescribeMaintenanceStartTimeOutput$DayOfWeek
@@ -2981,8 +2983,8 @@ module Aws::StorageGateway
2981
2983
  # @!attribute [rw] day_of_month
2982
2984
  # The day of the month component of the maintenance start time
2983
2985
  # represented as an ordinal number from 1 to 28, where 1 represents
2984
- # the first day of the month and 28 represents the last day of the
2985
- # month.
2986
+ # the first day of the month. It is not possible to set the
2987
+ # maintenance schedule to start on days 29 through 31.
2986
2988
  # @return [Integer]
2987
2989
  #
2988
2990
  # @!attribute [rw] timezone
@@ -2991,6 +2993,18 @@ module Aws::StorageGateway
2991
2993
  # of the gateway.
2992
2994
  # @return [String]
2993
2995
  #
2996
+ # @!attribute [rw] software_update_preferences
2997
+ # A set of variables indicating the software update preferences for
2998
+ # the gateway.
2999
+ #
3000
+ # Includes `AutomaticUpdatePolicy` field with the following inputs:
3001
+ #
3002
+ # `ALL_VERSIONS` - Enables regular gateway maintenance updates.
3003
+ #
3004
+ # `EMERGENCY_VERSIONS_ONLY` - Disables regular gateway maintenance
3005
+ # updates.
3006
+ # @return [Types::SoftwareUpdatePreferences]
3007
+ #
2994
3008
  # @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/DescribeMaintenanceStartTimeOutput AWS API Documentation
2995
3009
  #
2996
3010
  class DescribeMaintenanceStartTimeOutput < Struct.new(
@@ -2999,7 +3013,8 @@ module Aws::StorageGateway
2999
3013
  :minute_of_hour,
3000
3014
  :day_of_week,
3001
3015
  :day_of_month,
3002
- :timezone)
3016
+ :timezone,
3017
+ :software_update_preferences)
3003
3018
  SENSITIVE = []
3004
3019
  include Aws::Structure
3005
3020
  end
@@ -3126,24 +3141,24 @@ module Aws::StorageGateway
3126
3141
  # different clients in your environment. Supported only for S3 File
3127
3142
  # Gateway.
3128
3143
  #
3129
- # * `MandatorySigning`: If you use this option, File Gateway only
3144
+ # * `MandatorySigning`: If you choose this option, File Gateway only
3130
3145
  # allows connections from SMBv2 or SMBv3 clients that have signing
3131
3146
  # turned on. This option works with SMB clients on Microsoft Windows
3132
3147
  # Vista, Windows Server 2008, or later.
3133
3148
  #
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.
3140
- #
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
3149
+ # * `MandatoryEncryption`: If you choose this option, File Gateway
3150
+ # only allows connections from SMBv3 clients that have encryption
3151
+ # turned on. Both 256-bit and 128-bit algorithms are allowed. This
3144
3152
  # option is recommended for environments that handle sensitive data.
3145
3153
  # It works with SMB clients on Microsoft Windows 8, Windows Server
3146
3154
  # 2012, or later.
3155
+ #
3156
+ # * `MandatoryEncryptionNoAes128`: If you choose this option, File
3157
+ # Gateway only allows connections from SMBv3 clients that use
3158
+ # 256-bit AES encryption algorithms. 128-bit algorithms are not
3159
+ # allowed. This option is recommended for environments that handle
3160
+ # sensitive data. It works with SMB clients on Microsoft Windows 8,
3161
+ # Windows Server 2012, or later.
3147
3162
  # @return [String]
3148
3163
  #
3149
3164
  # @!attribute [rw] file_shares_visible
@@ -5821,6 +5836,26 @@ module Aws::StorageGateway
5821
5836
  include Aws::Structure
5822
5837
  end
5823
5838
 
5839
+ # A set of variables indicating the software update preferences for the
5840
+ # gateway.
5841
+ #
5842
+ # @!attribute [rw] automatic_update_policy
5843
+ # Indicates the automatic update policy for a gateway.
5844
+ #
5845
+ # `ALL_VERSIONS` - Enables regular gateway maintenance updates.
5846
+ #
5847
+ # `EMERGENCY_VERSIONS_ONLY` - Disables regular gateway maintenance
5848
+ # updates.
5849
+ # @return [String]
5850
+ #
5851
+ # @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/SoftwareUpdatePreferences AWS API Documentation
5852
+ #
5853
+ class SoftwareUpdatePreferences < Struct.new(
5854
+ :automatic_update_policy)
5855
+ SENSITIVE = []
5856
+ include Aws::Structure
5857
+ end
5858
+
5824
5859
  # @!attribute [rw] gateway_arn
5825
5860
  # The Amazon Resource Name (ARN) of the gateway. Use the ListGateways
5826
5861
  # operation to return a list of gateways for your account and Amazon
@@ -6594,7 +6629,14 @@ module Aws::StorageGateway
6594
6629
  # @return [String]
6595
6630
  #
6596
6631
  # @!attribute [rw] gateway_capacity
6597
- # Specifies the size of the gateway's metadata cache.
6632
+ # Specifies the size of the gateway's metadata cache. This setting
6633
+ # impacts gateway performance and hardware recommendations. For more
6634
+ # information, see [Performance guidance for gateways with multiple
6635
+ # file shares][1] in the *Amazon S3 File Gateway User Guide*.
6636
+ #
6637
+ #
6638
+ #
6639
+ # [1]: https://docs.aws.amazon.com/filegateway/latest/files3/performance-multiple-file-shares.html
6598
6640
  # @return [String]
6599
6641
  #
6600
6642
  # @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/UpdateGatewayInformationInput AWS API Documentation
@@ -6667,6 +6709,8 @@ module Aws::StorageGateway
6667
6709
 
6668
6710
  # A JSON object containing the following fields:
6669
6711
  #
6712
+ # * UpdateMaintenanceStartTimeInput$SoftwareUpdatePreferences
6713
+ #
6670
6714
  # * UpdateMaintenanceStartTimeInput$DayOfMonth
6671
6715
  #
6672
6716
  # * UpdateMaintenanceStartTimeInput$DayOfWeek
@@ -6696,16 +6740,28 @@ module Aws::StorageGateway
6696
6740
  # @!attribute [rw] day_of_week
6697
6741
  # The day of the week component of the maintenance start time week
6698
6742
  # represented as an ordinal number from 0 to 6, where 0 represents
6699
- # Sunday and 6 Saturday.
6743
+ # Sunday and 6 represents Saturday.
6700
6744
  # @return [Integer]
6701
6745
  #
6702
6746
  # @!attribute [rw] day_of_month
6703
6747
  # The day of the month component of the maintenance start time
6704
6748
  # represented as an ordinal number from 1 to 28, where 1 represents
6705
- # the first day of the month and 28 represents the last day of the
6706
- # month.
6749
+ # the first day of the month. It is not possible to set the
6750
+ # maintenance schedule to start on days 29 through 31.
6707
6751
  # @return [Integer]
6708
6752
  #
6753
+ # @!attribute [rw] software_update_preferences
6754
+ # A set of variables indicating the software update preferences for
6755
+ # the gateway.
6756
+ #
6757
+ # Includes `AutomaticUpdatePolicy` field with the following inputs:
6758
+ #
6759
+ # `ALL_VERSIONS` - Enables regular gateway maintenance updates.
6760
+ #
6761
+ # `EMERGENCY_VERSIONS_ONLY` - Disables regular gateway maintenance
6762
+ # updates.
6763
+ # @return [Types::SoftwareUpdatePreferences]
6764
+ #
6709
6765
  # @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/UpdateMaintenanceStartTimeInput AWS API Documentation
6710
6766
  #
6711
6767
  class UpdateMaintenanceStartTimeInput < Struct.new(
@@ -6713,7 +6769,8 @@ module Aws::StorageGateway
6713
6769
  :hour_of_day,
6714
6770
  :minute_of_hour,
6715
6771
  :day_of_week,
6716
- :day_of_month)
6772
+ :day_of_month,
6773
+ :software_update_preferences)
6717
6774
  SENSITIVE = []
6718
6775
  include Aws::Structure
6719
6776
  end
@@ -7192,21 +7249,29 @@ module Aws::StorageGateway
7192
7249
  # @!attribute [rw] smb_security_strategy
7193
7250
  # Specifies the type of security strategy.
7194
7251
  #
7195
- # ClientSpecified: if you use this option, requests are established
7196
- # based on what is negotiated by the client. This option is
7197
- # recommended when you want to maximize compatibility across different
7198
- # clients in your environment. Supported only in S3 File Gateway.
7252
+ # `ClientSpecified`: If you choose this option, requests are
7253
+ # established based on what is negotiated by the client. This option
7254
+ # is recommended when you want to maximize compatibility across
7255
+ # different clients in your environment. Supported only for S3 File
7256
+ # Gateway.
7199
7257
  #
7200
- # MandatorySigning: if you use this option, file gateway only allows
7201
- # connections from SMBv2 or SMBv3 clients that have signing enabled.
7202
- # This option works with SMB clients on Microsoft Windows Vista,
7203
- # Windows Server 2008 or newer.
7258
+ # `MandatorySigning`: If you choose this option, File Gateway only
7259
+ # allows connections from SMBv2 or SMBv3 clients that have signing
7260
+ # enabled. This option works with SMB clients on Microsoft Windows
7261
+ # Vista, Windows Server 2008 or newer.
7204
7262
  #
7205
- # MandatoryEncryption: if you use this option, file gateway only
7263
+ # `MandatoryEncryption`: If you choose this option, File Gateway only
7206
7264
  # allows connections from SMBv3 clients that have encryption enabled.
7207
- # This option is highly recommended for environments that handle
7208
- # sensitive data. This option works with SMB clients on Microsoft
7209
- # Windows 8, Windows Server 2012 or newer.
7265
+ # This option is recommended for environments that handle sensitive
7266
+ # data. This option works with SMB clients on Microsoft Windows 8,
7267
+ # Windows Server 2012 or newer.
7268
+ #
7269
+ # `MandatoryEncryptionNoAes128`: If you choose this option, File
7270
+ # Gateway only allows connections from SMBv3 clients that use 256-bit
7271
+ # AES encryption algorithms. 128-bit algorithms are not allowed. This
7272
+ # option is recommended for environments that handle sensitive data.
7273
+ # It works with SMB clients on Microsoft Windows 8, Windows Server
7274
+ # 2012, or later.
7210
7275
  # @return [String]
7211
7276
  #
7212
7277
  # @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/UpdateSMBSecurityStrategyInput AWS API Documentation
@@ -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.86.0'
55
+ GEM_VERSION = '1.88.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -683,6 +683,7 @@ module Aws
683
683
  def day_of_week: () -> ::Integer
684
684
  def day_of_month: () -> ::Integer
685
685
  def timezone: () -> ::String
686
+ def software_update_preferences: () -> Types::SoftwareUpdatePreferences
686
687
  end
687
688
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#describe_maintenance_start_time-instance_method
688
689
  def describe_maintenance_start_time: (
@@ -1251,10 +1252,13 @@ module Aws
1251
1252
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/StorageGateway/Client.html#update_maintenance_start_time-instance_method
1252
1253
  def update_maintenance_start_time: (
1253
1254
  gateway_arn: ::String,
1254
- hour_of_day: ::Integer,
1255
- minute_of_hour: ::Integer,
1255
+ ?hour_of_day: ::Integer,
1256
+ ?minute_of_hour: ::Integer,
1256
1257
  ?day_of_week: ::Integer,
1257
- ?day_of_month: ::Integer
1258
+ ?day_of_month: ::Integer,
1259
+ ?software_update_preferences: {
1260
+ automatic_update_policy: ("ALL_VERSIONS" | "EMERGENCY_VERSIONS_ONLY")?
1261
+ }
1258
1262
  ) -> _UpdateMaintenanceStartTimeResponseSuccess
1259
1263
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateMaintenanceStartTimeResponseSuccess
1260
1264
 
data/sig/types.rbs CHANGED
@@ -605,6 +605,7 @@ module Aws::StorageGateway
605
605
  attr_accessor day_of_week: ::Integer
606
606
  attr_accessor day_of_month: ::Integer
607
607
  attr_accessor timezone: ::String
608
+ attr_accessor software_update_preferences: Types::SoftwareUpdatePreferences
608
609
  SENSITIVE: []
609
610
  end
610
611
 
@@ -1219,6 +1220,11 @@ module Aws::StorageGateway
1219
1220
  SENSITIVE: []
1220
1221
  end
1221
1222
 
1223
+ class SoftwareUpdatePreferences
1224
+ attr_accessor automatic_update_policy: ("ALL_VERSIONS" | "EMERGENCY_VERSIONS_ONLY")
1225
+ SENSITIVE: []
1226
+ end
1227
+
1222
1228
  class StartAvailabilityMonitorTestInput
1223
1229
  attr_accessor gateway_arn: ::String
1224
1230
  SENSITIVE: []
@@ -1417,6 +1423,7 @@ module Aws::StorageGateway
1417
1423
  attr_accessor minute_of_hour: ::Integer
1418
1424
  attr_accessor day_of_week: ::Integer
1419
1425
  attr_accessor day_of_month: ::Integer
1426
+ attr_accessor software_update_preferences: Types::SoftwareUpdatePreferences
1420
1427
  SENSITIVE: []
1421
1428
  end
1422
1429
 
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.86.0
4
+ version: 1.88.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-06-05 00:00:00.000000000 Z
11
+ date: 2024-06-24 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.197.0
22
+ version: 3.198.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.197.0
32
+ version: 3.198.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement