aws-sdk-robomaker 1.7.0 → 1.8.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 +4 -4
- data/lib/aws-sdk-robomaker.rb +1 -1
- data/lib/aws-sdk-robomaker/client.rb +1 -1
- data/lib/aws-sdk-robomaker/client_api.rb +24 -0
- data/lib/aws-sdk-robomaker/errors.rb +128 -0
- data/lib/aws-sdk-robomaker/types.rb +103 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0ca14fe390f39eff0d0fe07c575a56873ecd351b
|
4
|
+
data.tar.gz: 58a27fb46c049da16da5ff3b6caa746467db8296
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: be97ba4dac86645462ceb778032677a8f6b950d010dbda13ab5a7edefe346df37576444fe734c38b1f7526b8ece9afc10eacb1fdbea4843142ed1209edfa0975
|
7
|
+
data.tar.gz: 9946c1564f410d49eba56ea1a209fb36df7962193ab89d7be633d3b5ac514e836cdf4ba488def0959c3952a92e887ec45ce8d2c038b40c74245fd8efc826e48f
|
data/lib/aws-sdk-robomaker.rb
CHANGED
@@ -2303,7 +2303,7 @@ module Aws::RoboMaker
|
|
2303
2303
|
params: params,
|
2304
2304
|
config: config)
|
2305
2305
|
context[:gem_name] = 'aws-sdk-robomaker'
|
2306
|
-
context[:gem_version] = '1.
|
2306
|
+
context[:gem_version] = '1.8.0'
|
2307
2307
|
Seahorse::Client::Request.new(handlers, context)
|
2308
2308
|
end
|
2309
2309
|
|
@@ -195,6 +195,9 @@ module Aws::RoboMaker
|
|
195
195
|
|
196
196
|
CancelSimulationJobResponse.struct_class = Types::CancelSimulationJobResponse
|
197
197
|
|
198
|
+
ConcurrentDeploymentException.add_member(:message, Shapes::ShapeRef.new(shape: errorMessage, location_name: "message"))
|
199
|
+
ConcurrentDeploymentException.struct_class = Types::ConcurrentDeploymentException
|
200
|
+
|
198
201
|
CreateDeploymentJobRequest.add_member(:deployment_config, Shapes::ShapeRef.new(shape: DeploymentConfig, location_name: "deploymentConfig"))
|
199
202
|
CreateDeploymentJobRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, required: true, location_name: "clientRequestToken", metadata: {"idempotencyToken"=>true}))
|
200
203
|
CreateDeploymentJobRequest.add_member(:fleet, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "fleet"))
|
@@ -503,11 +506,23 @@ module Aws::RoboMaker
|
|
503
506
|
|
504
507
|
Fleets.member = Shapes::ShapeRef.new(shape: Fleet)
|
505
508
|
|
509
|
+
IdempotentParameterMismatchException.add_member(:message, Shapes::ShapeRef.new(shape: errorMessage, location_name: "message"))
|
510
|
+
IdempotentParameterMismatchException.struct_class = Types::IdempotentParameterMismatchException
|
511
|
+
|
512
|
+
InternalServerException.add_member(:message, Shapes::ShapeRef.new(shape: errorMessage, location_name: "message"))
|
513
|
+
InternalServerException.struct_class = Types::InternalServerException
|
514
|
+
|
515
|
+
InvalidParameterException.add_member(:message, Shapes::ShapeRef.new(shape: errorMessage, location_name: "message"))
|
516
|
+
InvalidParameterException.struct_class = Types::InvalidParameterException
|
517
|
+
|
506
518
|
LaunchConfig.add_member(:package_name, Shapes::ShapeRef.new(shape: Command, required: true, location_name: "packageName"))
|
507
519
|
LaunchConfig.add_member(:launch_file, Shapes::ShapeRef.new(shape: Command, required: true, location_name: "launchFile"))
|
508
520
|
LaunchConfig.add_member(:environment_variables, Shapes::ShapeRef.new(shape: EnvironmentVariableMap, location_name: "environmentVariables"))
|
509
521
|
LaunchConfig.struct_class = Types::LaunchConfig
|
510
522
|
|
523
|
+
LimitExceededException.add_member(:message, Shapes::ShapeRef.new(shape: errorMessage, location_name: "message"))
|
524
|
+
LimitExceededException.struct_class = Types::LimitExceededException
|
525
|
+
|
511
526
|
ListDeploymentJobsRequest.add_member(:filters, Shapes::ShapeRef.new(shape: Filters, location_name: "filters"))
|
512
527
|
ListDeploymentJobsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
|
513
528
|
ListDeploymentJobsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "maxResults"))
|
@@ -592,6 +607,12 @@ module Aws::RoboMaker
|
|
592
607
|
RenderingEngine.add_member(:version, Shapes::ShapeRef.new(shape: RenderingEngineVersionType, location_name: "version"))
|
593
608
|
RenderingEngine.struct_class = Types::RenderingEngine
|
594
609
|
|
610
|
+
ResourceAlreadyExistsException.add_member(:message, Shapes::ShapeRef.new(shape: errorMessage, location_name: "message"))
|
611
|
+
ResourceAlreadyExistsException.struct_class = Types::ResourceAlreadyExistsException
|
612
|
+
|
613
|
+
ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: errorMessage, location_name: "message"))
|
614
|
+
ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
|
615
|
+
|
595
616
|
RestartSimulationJobRequest.add_member(:job, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "job"))
|
596
617
|
RestartSimulationJobRequest.struct_class = Types::RestartSimulationJobRequest
|
597
618
|
|
@@ -737,6 +758,9 @@ module Aws::RoboMaker
|
|
737
758
|
|
738
759
|
TagResourceResponse.struct_class = Types::TagResourceResponse
|
739
760
|
|
761
|
+
ThrottlingException.add_member(:message, Shapes::ShapeRef.new(shape: errorMessage, location_name: "message"))
|
762
|
+
ThrottlingException.struct_class = Types::ThrottlingException
|
763
|
+
|
740
764
|
UntagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location: "uri", location_name: "resourceArn"))
|
741
765
|
UntagResourceRequest.add_member(:tag_keys, Shapes::ShapeRef.new(shape: TagKeyList, required: true, location: "querystring", location_name: "tagKeys"))
|
742
766
|
UntagResourceRequest.struct_class = Types::UntagResourceRequest
|
@@ -10,5 +10,133 @@ module Aws::RoboMaker
|
|
10
10
|
|
11
11
|
extend Aws::Errors::DynamicErrors
|
12
12
|
|
13
|
+
class ConcurrentDeploymentException < ServiceError
|
14
|
+
|
15
|
+
# @param [Seahorse::Client::RequestContext] context
|
16
|
+
# @param [String] message
|
17
|
+
# @param [Aws::RoboMaker::Types::ConcurrentDeploymentException] 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 IdempotentParameterMismatchException < ServiceError
|
30
|
+
|
31
|
+
# @param [Seahorse::Client::RequestContext] context
|
32
|
+
# @param [String] message
|
33
|
+
# @param [Aws::RoboMaker::Types::IdempotentParameterMismatchException] 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 InternalServerException < ServiceError
|
46
|
+
|
47
|
+
# @param [Seahorse::Client::RequestContext] context
|
48
|
+
# @param [String] message
|
49
|
+
# @param [Aws::RoboMaker::Types::InternalServerException] 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 InvalidParameterException < ServiceError
|
62
|
+
|
63
|
+
# @param [Seahorse::Client::RequestContext] context
|
64
|
+
# @param [String] message
|
65
|
+
# @param [Aws::RoboMaker::Types::InvalidParameterException] 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 LimitExceededException < ServiceError
|
78
|
+
|
79
|
+
# @param [Seahorse::Client::RequestContext] context
|
80
|
+
# @param [String] message
|
81
|
+
# @param [Aws::RoboMaker::Types::LimitExceededException] 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 ResourceAlreadyExistsException < ServiceError
|
94
|
+
|
95
|
+
# @param [Seahorse::Client::RequestContext] context
|
96
|
+
# @param [String] message
|
97
|
+
# @param [Aws::RoboMaker::Types::ResourceAlreadyExistsException] 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
|
+
|
109
|
+
class ResourceNotFoundException < ServiceError
|
110
|
+
|
111
|
+
# @param [Seahorse::Client::RequestContext] context
|
112
|
+
# @param [String] message
|
113
|
+
# @param [Aws::RoboMaker::Types::ResourceNotFoundException] data
|
114
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
115
|
+
super(context, message, data)
|
116
|
+
end
|
117
|
+
|
118
|
+
# @return [String]
|
119
|
+
def message
|
120
|
+
@message || @data[:message]
|
121
|
+
end
|
122
|
+
|
123
|
+
end
|
124
|
+
|
125
|
+
class ThrottlingException < ServiceError
|
126
|
+
|
127
|
+
# @param [Seahorse::Client::RequestContext] context
|
128
|
+
# @param [String] message
|
129
|
+
# @param [Aws::RoboMaker::Types::ThrottlingException] data
|
130
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
131
|
+
super(context, message, data)
|
132
|
+
end
|
133
|
+
|
134
|
+
# @return [String]
|
135
|
+
def message
|
136
|
+
@message || @data[:message]
|
137
|
+
end
|
138
|
+
|
139
|
+
end
|
140
|
+
|
13
141
|
end
|
14
142
|
end
|
@@ -65,6 +65,18 @@ module Aws::RoboMaker
|
|
65
65
|
#
|
66
66
|
class CancelSimulationJobResponse < Aws::EmptyStructure; end
|
67
67
|
|
68
|
+
# The failure percentage threshold percentage was met.
|
69
|
+
#
|
70
|
+
# @!attribute [rw] message
|
71
|
+
# @return [String]
|
72
|
+
#
|
73
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ConcurrentDeploymentException AWS API Documentation
|
74
|
+
#
|
75
|
+
class ConcurrentDeploymentException < Struct.new(
|
76
|
+
:message)
|
77
|
+
include Aws::Structure
|
78
|
+
end
|
79
|
+
|
68
80
|
# @note When making an API call, you may pass CreateDeploymentJobRequest
|
69
81
|
# data as a hash:
|
70
82
|
#
|
@@ -1913,6 +1925,46 @@ module Aws::RoboMaker
|
|
1913
1925
|
include Aws::Structure
|
1914
1926
|
end
|
1915
1927
|
|
1928
|
+
# The request uses the same client token as a previous, but
|
1929
|
+
# non-identical request. Do not reuse a client token with different
|
1930
|
+
# requests, unless the requests are identical.
|
1931
|
+
#
|
1932
|
+
# @!attribute [rw] message
|
1933
|
+
# @return [String]
|
1934
|
+
#
|
1935
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/IdempotentParameterMismatchException AWS API Documentation
|
1936
|
+
#
|
1937
|
+
class IdempotentParameterMismatchException < Struct.new(
|
1938
|
+
:message)
|
1939
|
+
include Aws::Structure
|
1940
|
+
end
|
1941
|
+
|
1942
|
+
# AWS RoboMaker experienced a service issue. Try your call again.
|
1943
|
+
#
|
1944
|
+
# @!attribute [rw] message
|
1945
|
+
# @return [String]
|
1946
|
+
#
|
1947
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/InternalServerException AWS API Documentation
|
1948
|
+
#
|
1949
|
+
class InternalServerException < Struct.new(
|
1950
|
+
:message)
|
1951
|
+
include Aws::Structure
|
1952
|
+
end
|
1953
|
+
|
1954
|
+
# A parameter specified in a request is not valid, is unsupported, or
|
1955
|
+
# cannot be used. The returned message provides an explanation of the
|
1956
|
+
# error value.
|
1957
|
+
#
|
1958
|
+
# @!attribute [rw] message
|
1959
|
+
# @return [String]
|
1960
|
+
#
|
1961
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/InvalidParameterException AWS API Documentation
|
1962
|
+
#
|
1963
|
+
class InvalidParameterException < Struct.new(
|
1964
|
+
:message)
|
1965
|
+
include Aws::Structure
|
1966
|
+
end
|
1967
|
+
|
1916
1968
|
# Information about a launch configuration.
|
1917
1969
|
#
|
1918
1970
|
# @note When making an API call, you may pass LaunchConfig
|
@@ -1947,6 +1999,20 @@ module Aws::RoboMaker
|
|
1947
1999
|
include Aws::Structure
|
1948
2000
|
end
|
1949
2001
|
|
2002
|
+
# The requested resource exceeds the maximum number allowed, or the
|
2003
|
+
# number of concurrent stream requests exceeds the maximum number
|
2004
|
+
# allowed.
|
2005
|
+
#
|
2006
|
+
# @!attribute [rw] message
|
2007
|
+
# @return [String]
|
2008
|
+
#
|
2009
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/LimitExceededException AWS API Documentation
|
2010
|
+
#
|
2011
|
+
class LimitExceededException < Struct.new(
|
2012
|
+
:message)
|
2013
|
+
include Aws::Structure
|
2014
|
+
end
|
2015
|
+
|
1950
2016
|
# @note When making an API call, you may pass ListDeploymentJobsRequest
|
1951
2017
|
# data as a hash:
|
1952
2018
|
#
|
@@ -2604,6 +2670,30 @@ module Aws::RoboMaker
|
|
2604
2670
|
include Aws::Structure
|
2605
2671
|
end
|
2606
2672
|
|
2673
|
+
# The specified resource already exists.
|
2674
|
+
#
|
2675
|
+
# @!attribute [rw] message
|
2676
|
+
# @return [String]
|
2677
|
+
#
|
2678
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ResourceAlreadyExistsException AWS API Documentation
|
2679
|
+
#
|
2680
|
+
class ResourceAlreadyExistsException < Struct.new(
|
2681
|
+
:message)
|
2682
|
+
include Aws::Structure
|
2683
|
+
end
|
2684
|
+
|
2685
|
+
# The specified resource does not exist.
|
2686
|
+
#
|
2687
|
+
# @!attribute [rw] message
|
2688
|
+
# @return [String]
|
2689
|
+
#
|
2690
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ResourceNotFoundException AWS API Documentation
|
2691
|
+
#
|
2692
|
+
class ResourceNotFoundException < Struct.new(
|
2693
|
+
:message)
|
2694
|
+
include Aws::Structure
|
2695
|
+
end
|
2696
|
+
|
2607
2697
|
# @note When making an API call, you may pass RestartSimulationJobRequest
|
2608
2698
|
# data as a hash:
|
2609
2699
|
#
|
@@ -3284,6 +3374,19 @@ module Aws::RoboMaker
|
|
3284
3374
|
#
|
3285
3375
|
class TagResourceResponse < Aws::EmptyStructure; end
|
3286
3376
|
|
3377
|
+
# AWS RoboMaker is temporarily unable to process the request. Try your
|
3378
|
+
# call again.
|
3379
|
+
#
|
3380
|
+
# @!attribute [rw] message
|
3381
|
+
# @return [String]
|
3382
|
+
#
|
3383
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ThrottlingException AWS API Documentation
|
3384
|
+
#
|
3385
|
+
class ThrottlingException < Struct.new(
|
3386
|
+
:message)
|
3387
|
+
include Aws::Structure
|
3388
|
+
end
|
3389
|
+
|
3287
3390
|
# @note When making an API call, you may pass UntagResourceRequest
|
3288
3391
|
# data as a hash:
|
3289
3392
|
#
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-robomaker
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.8.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-
|
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.
|
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.
|
32
|
+
version: 3.53.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|