aws-sdk-worklink 1.6.0 → 1.7.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: 71a73895ad1f056a974feecbf17c5ff7446a910c
4
- data.tar.gz: 7fee69fb8e5ba74cafac47902f116e1bc6070eb2
3
+ metadata.gz: 00c0fe8ce7430cdb4461c23af496a25b9c3c88b5
4
+ data.tar.gz: 0e64f94654edc83e00a941c4227aa65af2a90bcf
5
5
  SHA512:
6
- metadata.gz: 5c660498fa02cd6c2cb8f0bc7dd286444e2a869344050b3f083ea64f647957b886f4c06ae6380f9b3c23a0311fb32ad8e20520b43fad6e19f8bc5caa1a0e9631
7
- data.tar.gz: f2c06e871596b9b9924c414662195c55ae0e02bf8e88a60fea1b9e603135596a4e56289ba296c5dfad4ded349e8122fee8098713acb948ad7c4f067e01bf13e4
6
+ metadata.gz: e439ec1e2a5f1d0e960555f7efdcd7ea8ee8cf9170ff107a4bc58fcf0c0317a8fdd04d0388d199a70ea77fb2f222c945b4bf9c7fa9820825c43f1d5e57f054ba
7
+ data.tar.gz: 72bc1ec2f0d856fd2e8153f732181974c600d1abf0a2b733ecd8398c3b182ce6d8b6d27459ea9097cc85bc0306a6d1f517f43c62ee6b4031f959dd1474118079
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-worklink/customizations'
42
42
  # @service
43
43
  module Aws::WorkLink
44
44
 
45
- GEM_VERSION = '1.6.0'
45
+ GEM_VERSION = '1.7.0'
46
46
 
47
47
  end
@@ -1170,7 +1170,7 @@ module Aws::WorkLink
1170
1170
  params: params,
1171
1171
  config: config)
1172
1172
  context[:gem_name] = 'aws-sdk-worklink'
1173
- context[:gem_version] = '1.6.0'
1173
+ context[:gem_version] = '1.7.0'
1174
1174
  Seahorse::Client::Request.new(handlers, context)
1175
1175
  end
1176
1176
 
@@ -250,6 +250,12 @@ module Aws::WorkLink
250
250
 
251
251
  FleetSummaryList.member = Shapes::ShapeRef.new(shape: FleetSummary)
252
252
 
253
+ InternalServerErrorException.add_member(:message, Shapes::ShapeRef.new(shape: ExceptionMessage, location_name: "Message"))
254
+ InternalServerErrorException.struct_class = Types::InternalServerErrorException
255
+
256
+ InvalidRequestException.add_member(:message, Shapes::ShapeRef.new(shape: ExceptionMessage, location_name: "Message"))
257
+ InvalidRequestException.struct_class = Types::InvalidRequestException
258
+
253
259
  ListDevicesRequest.add_member(:fleet_arn, Shapes::ShapeRef.new(shape: FleetArn, required: true, location_name: "FleetArn"))
254
260
  ListDevicesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
255
261
  ListDevicesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
@@ -285,6 +291,12 @@ module Aws::WorkLink
285
291
  ListWebsiteCertificateAuthoritiesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
286
292
  ListWebsiteCertificateAuthoritiesResponse.struct_class = Types::ListWebsiteCertificateAuthoritiesResponse
287
293
 
294
+ ResourceAlreadyExistsException.add_member(:message, Shapes::ShapeRef.new(shape: ExceptionMessage, location_name: "Message"))
295
+ ResourceAlreadyExistsException.struct_class = Types::ResourceAlreadyExistsException
296
+
297
+ ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: ExceptionMessage, location_name: "Message"))
298
+ ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
299
+
288
300
  RestoreDomainAccessRequest.add_member(:fleet_arn, Shapes::ShapeRef.new(shape: FleetArn, required: true, location_name: "FleetArn"))
289
301
  RestoreDomainAccessRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, required: true, location_name: "DomainName"))
290
302
  RestoreDomainAccessRequest.struct_class = Types::RestoreDomainAccessRequest
@@ -307,6 +319,12 @@ module Aws::WorkLink
307
319
 
308
320
  SubnetIds.member = Shapes::ShapeRef.new(shape: SubnetId)
309
321
 
322
+ TooManyRequestsException.add_member(:message, Shapes::ShapeRef.new(shape: ExceptionMessage, location_name: "Message"))
323
+ TooManyRequestsException.struct_class = Types::TooManyRequestsException
324
+
325
+ UnauthorizedException.add_member(:message, Shapes::ShapeRef.new(shape: ExceptionMessage, location_name: "Message"))
326
+ UnauthorizedException.struct_class = Types::UnauthorizedException
327
+
310
328
  UpdateAuditStreamConfigurationRequest.add_member(:fleet_arn, Shapes::ShapeRef.new(shape: FleetArn, required: true, location_name: "FleetArn"))
311
329
  UpdateAuditStreamConfigurationRequest.add_member(:audit_stream_arn, Shapes::ShapeRef.new(shape: AuditStreamArn, location_name: "AuditStreamArn"))
312
330
  UpdateAuditStreamConfigurationRequest.struct_class = Types::UpdateAuditStreamConfigurationRequest
@@ -10,5 +10,101 @@ module Aws::WorkLink
10
10
 
11
11
  extend Aws::Errors::DynamicErrors
12
12
 
13
+ class InternalServerErrorException < ServiceError
14
+
15
+ # @param [Seahorse::Client::RequestContext] context
16
+ # @param [String] message
17
+ # @param [Aws::WorkLink::Types::InternalServerErrorException] 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
+ end
28
+
29
+ class InvalidRequestException < ServiceError
30
+
31
+ # @param [Seahorse::Client::RequestContext] context
32
+ # @param [String] message
33
+ # @param [Aws::WorkLink::Types::InvalidRequestException] data
34
+ def initialize(context, message, data = Aws::EmptyStructure.new)
35
+ super(context, message, data)
36
+ end
37
+
38
+ # @return [String]
39
+ def message
40
+ @message || @data[:message]
41
+ end
42
+
43
+ end
44
+
45
+ class ResourceAlreadyExistsException < ServiceError
46
+
47
+ # @param [Seahorse::Client::RequestContext] context
48
+ # @param [String] message
49
+ # @param [Aws::WorkLink::Types::ResourceAlreadyExistsException] data
50
+ def initialize(context, message, data = Aws::EmptyStructure.new)
51
+ super(context, message, data)
52
+ end
53
+
54
+ # @return [String]
55
+ def message
56
+ @message || @data[:message]
57
+ end
58
+
59
+ end
60
+
61
+ class ResourceNotFoundException < ServiceError
62
+
63
+ # @param [Seahorse::Client::RequestContext] context
64
+ # @param [String] message
65
+ # @param [Aws::WorkLink::Types::ResourceNotFoundException] data
66
+ def initialize(context, message, data = Aws::EmptyStructure.new)
67
+ super(context, message, data)
68
+ end
69
+
70
+ # @return [String]
71
+ def message
72
+ @message || @data[:message]
73
+ end
74
+
75
+ end
76
+
77
+ class TooManyRequestsException < ServiceError
78
+
79
+ # @param [Seahorse::Client::RequestContext] context
80
+ # @param [String] message
81
+ # @param [Aws::WorkLink::Types::TooManyRequestsException] data
82
+ def initialize(context, message, data = Aws::EmptyStructure.new)
83
+ super(context, message, data)
84
+ end
85
+
86
+ # @return [String]
87
+ def message
88
+ @message || @data[:message]
89
+ end
90
+
91
+ end
92
+
93
+ class UnauthorizedException < ServiceError
94
+
95
+ # @param [Seahorse::Client::RequestContext] context
96
+ # @param [String] message
97
+ # @param [Aws::WorkLink::Types::UnauthorizedException] data
98
+ def initialize(context, message, data = Aws::EmptyStructure.new)
99
+ super(context, message, data)
100
+ end
101
+
102
+ # @return [String]
103
+ def message
104
+ @message || @data[:message]
105
+ end
106
+
107
+ end
108
+
13
109
  end
14
110
  end
@@ -666,6 +666,30 @@ module Aws::WorkLink
666
666
  include Aws::Structure
667
667
  end
668
668
 
669
+ # The service is temporarily unavailable.
670
+ #
671
+ # @!attribute [rw] message
672
+ # @return [String]
673
+ #
674
+ # @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/InternalServerErrorException AWS API Documentation
675
+ #
676
+ class InternalServerErrorException < Struct.new(
677
+ :message)
678
+ include Aws::Structure
679
+ end
680
+
681
+ # The request is not valid.
682
+ #
683
+ # @!attribute [rw] message
684
+ # @return [String]
685
+ #
686
+ # @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/InvalidRequestException AWS API Documentation
687
+ #
688
+ class InvalidRequestException < Struct.new(
689
+ :message)
690
+ include Aws::Structure
691
+ end
692
+
669
693
  # @note When making an API call, you may pass ListDevicesRequest
670
694
  # data as a hash:
671
695
  #
@@ -852,6 +876,30 @@ module Aws::WorkLink
852
876
  include Aws::Structure
853
877
  end
854
878
 
879
+ # The resource already exists.
880
+ #
881
+ # @!attribute [rw] message
882
+ # @return [String]
883
+ #
884
+ # @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/ResourceAlreadyExistsException AWS API Documentation
885
+ #
886
+ class ResourceAlreadyExistsException < Struct.new(
887
+ :message)
888
+ include Aws::Structure
889
+ end
890
+
891
+ # The requested resource was not found.
892
+ #
893
+ # @!attribute [rw] message
894
+ # @return [String]
895
+ #
896
+ # @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/ResourceNotFoundException AWS API Documentation
897
+ #
898
+ class ResourceNotFoundException < Struct.new(
899
+ :message)
900
+ include Aws::Structure
901
+ end
902
+
855
903
  # @note When making an API call, you may pass RestoreDomainAccessRequest
856
904
  # data as a hash:
857
905
  #
@@ -936,6 +984,30 @@ module Aws::WorkLink
936
984
  #
937
985
  class SignOutUserResponse < Aws::EmptyStructure; end
938
986
 
987
+ # The number of requests exceeds the limit.
988
+ #
989
+ # @!attribute [rw] message
990
+ # @return [String]
991
+ #
992
+ # @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/TooManyRequestsException AWS API Documentation
993
+ #
994
+ class TooManyRequestsException < Struct.new(
995
+ :message)
996
+ include Aws::Structure
997
+ end
998
+
999
+ # You are not authorized to perform this action.
1000
+ #
1001
+ # @!attribute [rw] message
1002
+ # @return [String]
1003
+ #
1004
+ # @see http://docs.aws.amazon.com/goto/WebAPI/worklink-2018-09-25/UnauthorizedException AWS API Documentation
1005
+ #
1006
+ class UnauthorizedException < Struct.new(
1007
+ :message)
1008
+ include Aws::Structure
1009
+ end
1010
+
939
1011
  # @note When making an API call, you may pass UpdateAuditStreamConfigurationRequest
940
1012
  # data as a hash:
941
1013
  #
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-worklink
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.0
4
+ version: 1.7.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