aws-sdk-storagegateway 1.24.0 → 1.25.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
  SHA1:
3
- metadata.gz: b148c8b5586e107338a913878d82bac0860d5704
4
- data.tar.gz: 9c21f78b6a5740137ff9304fcb360925e69dbfd0
3
+ metadata.gz: 4c931b5fdf7b2ce0dbc817642f184909218d87b9
4
+ data.tar.gz: 39cb088faa04ccac9bac8fe58680984e3147a31c
5
5
  SHA512:
6
- metadata.gz: 204ca64a9b482994ff90ed8d3b16cb604c56d1f4c83345942b4b29910a79cceb8d8d1f5d96067b466e65056c171a9d669a3dc11a7a534b7a57f0bdcbe3dcccf5
7
- data.tar.gz: a6aafda25ac94f90581406a7af24f3d44418b800776e3ea6d1cd76814d0a388eed89ad02dfc5cddf14e060cc66bd0d40d4a3e09e82d12c3eac2b84e0300c319a
6
+ metadata.gz: 6f7c5b67198a8ce2c4b3678200dec292ec6c933c67d3ff5c334b5cec85688171069f10a3e223926ea7e2e730b818a2737248741b67d1c471a5a8d6e511b1e7b4
7
+ data.tar.gz: 96b37dab43903e4651b0526a55c4c2c08dcf2d86883bc3b698a85471403310b4ed2a3fa923508740319badf588c87735236aecc110edd03dd087fa96a64c8eeb
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-storagegateway/customizations'
42
42
  # @service
43
43
  module Aws::StorageGateway
44
44
 
45
- GEM_VERSION = '1.24.0'
45
+ GEM_VERSION = '1.25.0'
46
46
 
47
47
  end
@@ -5559,7 +5559,7 @@ module Aws::StorageGateway
5559
5559
  params: params,
5560
5560
  config: config)
5561
5561
  context[:gem_name] = 'aws-sdk-storagegateway'
5562
- context[:gem_version] = '1.24.0'
5562
+ context[:gem_version] = '1.25.0'
5563
5563
  Seahorse::Client::Request.new(handlers, context)
5564
5564
  end
5565
5565
 
@@ -790,6 +790,14 @@ module Aws::StorageGateway
790
790
 
791
791
  Initiators.member = Shapes::ShapeRef.new(shape: Initiator)
792
792
 
793
+ InternalServerError.add_member(:message, Shapes::ShapeRef.new(shape: string, location_name: "message"))
794
+ InternalServerError.add_member(:error, Shapes::ShapeRef.new(shape: StorageGatewayError, location_name: "error"))
795
+ InternalServerError.struct_class = Types::InternalServerError
796
+
797
+ InvalidGatewayRequestException.add_member(:message, Shapes::ShapeRef.new(shape: string, location_name: "message"))
798
+ InvalidGatewayRequestException.add_member(:error, Shapes::ShapeRef.new(shape: StorageGatewayError, location_name: "error"))
799
+ InvalidGatewayRequestException.struct_class = Types::InvalidGatewayRequestException
800
+
793
801
  JoinDomainInput.add_member(:gateway_arn, Shapes::ShapeRef.new(shape: GatewayARN, required: true, location_name: "GatewayARN"))
794
802
  JoinDomainInput.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, required: true, location_name: "DomainName"))
795
803
  JoinDomainInput.add_member(:organizational_unit, Shapes::ShapeRef.new(shape: OrganizationalUnit, location_name: "OrganizationalUnit"))
@@ -968,6 +976,10 @@ module Aws::StorageGateway
968
976
 
969
977
  SMBFileShareInfoList.member = Shapes::ShapeRef.new(shape: SMBFileShareInfo)
970
978
 
979
+ ServiceUnavailableError.add_member(:message, Shapes::ShapeRef.new(shape: string, location_name: "message"))
980
+ ServiceUnavailableError.add_member(:error, Shapes::ShapeRef.new(shape: StorageGatewayError, location_name: "error"))
981
+ ServiceUnavailableError.struct_class = Types::ServiceUnavailableError
982
+
971
983
  SetLocalConsolePasswordInput.add_member(:gateway_arn, Shapes::ShapeRef.new(shape: GatewayARN, required: true, location_name: "GatewayARN"))
972
984
  SetLocalConsolePasswordInput.add_member(:local_console_password, Shapes::ShapeRef.new(shape: LocalConsolePassword, required: true, location_name: "LocalConsolePassword"))
973
985
  SetLocalConsolePasswordInput.struct_class = Types::SetLocalConsolePasswordInput
@@ -10,5 +10,68 @@ module Aws::StorageGateway
10
10
 
11
11
  extend Aws::Errors::DynamicErrors
12
12
 
13
+ class InternalServerError < ServiceError
14
+
15
+ # @param [Seahorse::Client::RequestContext] context
16
+ # @param [String] message
17
+ # @param [Aws::StorageGateway::Types::InternalServerError] data
18
+ def initialize(context, message, data = Aws::EmptyStructure.new)
19
+ super(context, message, data)
20
+ end
21
+
22
+ # @return [String]
23
+ def message
24
+ @message || @data[:message]
25
+ end
26
+
27
+ # @return [String]
28
+ def error
29
+ @data[:error]
30
+ end
31
+
32
+ end
33
+
34
+ class InvalidGatewayRequestException < ServiceError
35
+
36
+ # @param [Seahorse::Client::RequestContext] context
37
+ # @param [String] message
38
+ # @param [Aws::StorageGateway::Types::InvalidGatewayRequestException] data
39
+ def initialize(context, message, data = Aws::EmptyStructure.new)
40
+ super(context, message, data)
41
+ end
42
+
43
+ # @return [String]
44
+ def message
45
+ @message || @data[:message]
46
+ end
47
+
48
+ # @return [String]
49
+ def error
50
+ @data[:error]
51
+ end
52
+
53
+ end
54
+
55
+ class ServiceUnavailableError < ServiceError
56
+
57
+ # @param [Seahorse::Client::RequestContext] context
58
+ # @param [String] message
59
+ # @param [Aws::StorageGateway::Types::ServiceUnavailableError] data
60
+ def initialize(context, message, data = Aws::EmptyStructure.new)
61
+ super(context, message, data)
62
+ end
63
+
64
+ # @return [String]
65
+ def message
66
+ @message || @data[:message]
67
+ end
68
+
69
+ # @return [String]
70
+ def error
71
+ @data[:error]
72
+ end
73
+
74
+ end
75
+
13
76
  end
14
77
  end
@@ -3225,6 +3225,46 @@ module Aws::StorageGateway
3225
3225
  include Aws::Structure
3226
3226
  end
3227
3227
 
3228
+ # An internal server error has occurred during the request. For more
3229
+ # information, see the error and message fields.
3230
+ #
3231
+ # @!attribute [rw] message
3232
+ # A human-readable message describing the error that occurred.
3233
+ # @return [String]
3234
+ #
3235
+ # @!attribute [rw] error
3236
+ # A StorageGatewayError that provides more information about the cause
3237
+ # of the error.
3238
+ # @return [Types::StorageGatewayError]
3239
+ #
3240
+ # @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/InternalServerError AWS API Documentation
3241
+ #
3242
+ class InternalServerError < Struct.new(
3243
+ :message,
3244
+ :error)
3245
+ include Aws::Structure
3246
+ end
3247
+
3248
+ # An exception occurred because an invalid gateway request was issued to
3249
+ # the service. For more information, see the error and message fields.
3250
+ #
3251
+ # @!attribute [rw] message
3252
+ # A human-readable message describing the error that occurred.
3253
+ # @return [String]
3254
+ #
3255
+ # @!attribute [rw] error
3256
+ # A StorageGatewayError that provides more detail about the cause of
3257
+ # the error.
3258
+ # @return [Types::StorageGatewayError]
3259
+ #
3260
+ # @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/InvalidGatewayRequestException AWS API Documentation
3261
+ #
3262
+ class InvalidGatewayRequestException < Struct.new(
3263
+ :message,
3264
+ :error)
3265
+ include Aws::Structure
3266
+ end
3267
+
3228
3268
  # JoinDomainInput
3229
3269
  #
3230
3270
  # @note When making an API call, you may pass JoinDomainInput
@@ -4357,6 +4397,26 @@ module Aws::StorageGateway
4357
4397
  include Aws::Structure
4358
4398
  end
4359
4399
 
4400
+ # An internal server error has occurred because the service is
4401
+ # unavailable. For more information, see the error and message fields.
4402
+ #
4403
+ # @!attribute [rw] message
4404
+ # A human-readable message describing the error that occurred.
4405
+ # @return [String]
4406
+ #
4407
+ # @!attribute [rw] error
4408
+ # A StorageGatewayError that provides more information about the cause
4409
+ # of the error.
4410
+ # @return [Types::StorageGatewayError]
4411
+ #
4412
+ # @see http://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/ServiceUnavailableError AWS API Documentation
4413
+ #
4414
+ class ServiceUnavailableError < Struct.new(
4415
+ :message,
4416
+ :error)
4417
+ include Aws::Structure
4418
+ end
4419
+
4360
4420
  # SetLocalConsolePasswordInput
4361
4421
  #
4362
4422
  # @note When making an API call, you may pass SetLocalConsolePasswordInput
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.24.0
4
+ version: 1.25.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: 2019-05-15 00:00:00.000000000 Z
11
+ date: 2019-05-21 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.52.1
22
+ version: 3.53.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.52.1
32
+ version: 3.53.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement