aws-sdk-iotroborunner 1.0.0 → 1.1.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: 9533326634444400fc6a20dedafb1bdb79e72af663f246fc3bed978f2c9799dc
4
- data.tar.gz: 0767c8d0dc99548f50546ca3990cca66cd8ce705964dee65ea929a439d8db3d2
3
+ metadata.gz: 572b39a8bf761b62302a473bbd0ea432ddb3d991a8d00d664225e2c6469e56fc
4
+ data.tar.gz: c96c4c4ceb78a3c093f796eca7d031c7fcf0c23a782839a7e25b1d82c5053fc1
5
5
  SHA512:
6
- metadata.gz: bf917e44089f2d2ad8ed8b8d43352f75077ad85a10c5e75f91c9bf82d6d10e5cb47f63714c38c60d84aca53a9d3e0b296f44bc1ac0c70e8580162fe6435800de
7
- data.tar.gz: 7bd145bea981a0d5e7e717cb131a63c6e38b084f73662ab60d25e8229395e1347660fd15992a847c4e543c0d898142acdc88afd10a23733317de5d0787c391f9
6
+ metadata.gz: baf099acbc6ac48d3d37ddf9889c78faffe44ec63a80c7b14232096e45a44f3489c0a48458873fbcfb928570126585a3ccd459a710b99cb3b743dbec4b6d201a
7
+ data.tar.gz: 3cbef0689ae6ed73e9e725bd3f5e3f5a2e4b7a95a3678d5b5639dc534c274d6c10f008335b3314874aa3aa82ce5ca773e9aa68a1c6d480c0ee2972cd3259681b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.1.0 (2023-01-18)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code.
10
+
4
11
  1.0.0 (2022-11-18)
5
12
  ------------------
6
13
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.0
1
+ 1.1.0
@@ -1290,7 +1290,7 @@ module Aws::IoTRoboRunner
1290
1290
  params: params,
1291
1291
  config: config)
1292
1292
  context[:gem_name] = 'aws-sdk-iotroborunner'
1293
- context[:gem_version] = '1.0.0'
1293
+ context[:gem_version] = '1.1.0'
1294
1294
  Seahorse::Client::Request.new(handlers, context)
1295
1295
  end
1296
1296
 
@@ -9,103 +9,43 @@
9
9
 
10
10
  module Aws::IoTRoboRunner
11
11
  class EndpointProvider
12
- def initialize(rule_set = nil)
13
- @@rule_set ||= begin
14
- endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
15
- Aws::Endpoints::RuleSet.new(
16
- version: endpoint_rules['version'],
17
- service_id: endpoint_rules['serviceId'],
18
- parameters: endpoint_rules['parameters'],
19
- rules: endpoint_rules['rules']
20
- )
12
+ def resolve_endpoint(parameters)
13
+ region = parameters.region
14
+ use_dual_stack = parameters.use_dual_stack
15
+ use_fips = parameters.use_fips
16
+ endpoint = parameters.endpoint
17
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
+ if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
19
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
+ end
22
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
23
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
24
+ end
25
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
26
+ end
27
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
28
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
29
+ return Aws::Endpoints::Endpoint.new(url: "https://iotroborunner-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
+ end
31
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
32
+ end
33
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ return Aws::Endpoints::Endpoint.new(url: "https://iotroborunner-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
36
+ end
37
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
38
+ end
39
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
40
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
41
+ return Aws::Endpoints::Endpoint.new(url: "https://iotroborunner.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
42
+ end
43
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
44
+ end
45
+ return Aws::Endpoints::Endpoint.new(url: "https://iotroborunner.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
21
46
  end
22
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
23
- end
47
+ raise ArgumentError, 'No endpoint could be resolved'
24
48
 
25
- def resolve_endpoint(parameters)
26
- @provider.resolve_endpoint(parameters)
27
49
  end
28
-
29
- # @api private
30
- RULES = <<-JSON
31
- eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
32
- bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
33
- dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
34
- cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
35
- dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
36
- ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
37
- ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
38
- ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
39
- aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
40
- OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
41
- UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
42
- dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
43
- UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
44
- dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
45
- ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
46
- IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
47
- aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
48
- bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
49
- ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
50
- Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
51
- cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
52
- InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
53
- aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
54
- cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
55
- InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
56
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
57
- UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
58
- SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
59
- eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
60
- InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
61
- LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
62
- ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
63
- b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
64
- fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
65
- RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
66
- ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
67
- ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
68
- ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
69
- dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
70
- dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
71
- Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
72
- In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
73
- YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
74
- YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
75
- cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
76
- dCI6eyJ1cmwiOiJodHRwczovL2lvdHJvYm9ydW5uZXItZmlwcy57UmVnaW9u
77
- fS57UGFydGl0aW9uUmVzdWx0I2R1YWxTdGFja0Ruc1N1ZmZpeH0iLCJwcm9w
78
- ZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19
79
- LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoiRklQUyBhbmQgRHVhbFN0YWNr
80
- IGFyZSBlbmFibGVkLCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3Vw
81
- cG9ydCBvbmUgb3IgYm90aCIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRp
82
- b25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJV
83
- c2VGSVBTIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29u
84
- ZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUs
85
- eyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1
86
- bHQifSwic3VwcG9ydHNGSVBTIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVz
87
- IjpbeyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6
88
- Ly9pb3Ryb2JvcnVubmVyLWZpcHMue1JlZ2lvbn0ue1BhcnRpdGlvblJlc3Vs
89
- dCNkbnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwi
90
- dHlwZSI6ImVuZHBvaW50In1dfSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6
91
- IkZJUFMgaXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qg
92
- c3VwcG9ydCBGSVBTIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMi
93
- Olt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1
94
- YWxTdGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNv
95
- bmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVl
96
- LHsiZm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVz
97
- dWx0In0sInN1cHBvcnRzRHVhbFN0YWNrIl19XX1dLCJ0eXBlIjoidHJlZSIs
98
- InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoi
99
- aHR0cHM6Ly9pb3Ryb2JvcnVubmVyLntSZWdpb259LntQYXJ0aXRpb25SZXN1
100
- bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFk
101
- ZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRpb25zIjpb
102
- XSwiZXJyb3IiOiJEdWFsU3RhY2sgaXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0
103
- aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBEdWFsU3RhY2siLCJ0eXBlIjoiZXJy
104
- b3IifV19LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0
105
- dHBzOi8vaW90cm9ib3J1bm5lci57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0
106
- I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0
107
- eXBlIjoiZW5kcG9pbnQifV19XX0=
108
-
109
- JSON
110
50
  end
111
51
  end
@@ -23,15 +23,6 @@ module Aws::IoTRoboRunner
23
23
 
24
24
  # Cartesian coordinates in 3D space relative to the RoboRunner origin.
25
25
  #
26
- # @note When making an API call, you may pass CartesianCoordinates
27
- # data as a hash:
28
- #
29
- # {
30
- # x: 1.0, # required
31
- # y: 1.0, # required
32
- # z: 1.0,
33
- # }
34
- #
35
26
  # @!attribute [rw] x
36
27
  # X coordinate.
37
28
  # @return [Float]
@@ -63,17 +54,6 @@ module Aws::IoTRoboRunner
63
54
  include Aws::Structure
64
55
  end
65
56
 
66
- # @note When making an API call, you may pass CreateDestinationRequest
67
- # data as a hash:
68
- #
69
- # {
70
- # client_token: "IdempotencyToken",
71
- # name: "Name", # required
72
- # site: "SiteGenericIdentifier", # required
73
- # state: "ENABLED", # accepts ENABLED, DISABLED, DECOMMISSIONED
74
- # additional_fixed_properties: "DestinationAdditionalFixedProperties",
75
- # }
76
- #
77
57
  # @!attribute [rw] client_token
78
58
  # Token used for detecting replayed requests. Replayed requests will
79
59
  # not be performed multiple times.
@@ -139,16 +119,6 @@ module Aws::IoTRoboRunner
139
119
  include Aws::Structure
140
120
  end
141
121
 
142
- # @note When making an API call, you may pass CreateSiteRequest
143
- # data as a hash:
144
- #
145
- # {
146
- # client_token: "IdempotencyToken",
147
- # name: "Name", # required
148
- # country_code: "SiteCountryCode", # required
149
- # description: "SiteDescription",
150
- # }
151
- #
152
122
  # @!attribute [rw] client_token
153
123
  # Token used for detecting replayed requests. Replayed requests will
154
124
  # not be performed multiple times.
@@ -204,16 +174,6 @@ module Aws::IoTRoboRunner
204
174
  include Aws::Structure
205
175
  end
206
176
 
207
- # @note When making an API call, you may pass CreateWorkerFleetRequest
208
- # data as a hash:
209
- #
210
- # {
211
- # client_token: "IdempotencyToken",
212
- # name: "Name", # required
213
- # site: "SiteGenericIdentifier", # required
214
- # additional_fixed_properties: "WorkerFleetAdditionalFixedProperties",
215
- # }
216
- #
217
177
  # @!attribute [rw] client_token
218
178
  # Token used for detecting replayed requests. Replayed requests will
219
179
  # not be performed multiple times.
@@ -269,33 +229,6 @@ module Aws::IoTRoboRunner
269
229
  include Aws::Structure
270
230
  end
271
231
 
272
- # @note When making an API call, you may pass CreateWorkerRequest
273
- # data as a hash:
274
- #
275
- # {
276
- # client_token: "IdempotencyToken",
277
- # name: "Name", # required
278
- # fleet: "WorkerFleetGenericIdentifier", # required
279
- # additional_transient_properties: "WorkerAdditionalTransientPropertiesJson",
280
- # additional_fixed_properties: "WorkerAdditionalFixedPropertiesJson",
281
- # vendor_properties: {
282
- # vendor_worker_id: "VendorWorkerId", # required
283
- # vendor_worker_ip_address: "VendorWorkerIpAddress",
284
- # vendor_additional_transient_properties: "VendorAdditionalTransientPropertiesJson",
285
- # vendor_additional_fixed_properties: "VendorAdditionalFixedPropertiesJson",
286
- # },
287
- # position: {
288
- # cartesian_coordinates: {
289
- # x: 1.0, # required
290
- # y: 1.0, # required
291
- # z: 1.0,
292
- # },
293
- # },
294
- # orientation: {
295
- # degrees: 1.0,
296
- # },
297
- # }
298
- #
299
232
  # @!attribute [rw] client_token
300
233
  # Token used for detecting replayed requests. Replayed requests will
301
234
  # not be performed multiple times.
@@ -377,13 +310,6 @@ module Aws::IoTRoboRunner
377
310
  include Aws::Structure
378
311
  end
379
312
 
380
- # @note When making an API call, you may pass DeleteDestinationRequest
381
- # data as a hash:
382
- #
383
- # {
384
- # id: "DestinationGenericIdentifier", # required
385
- # }
386
- #
387
313
  # @!attribute [rw] id
388
314
  # Destination ARN.
389
315
  # @return [String]
@@ -396,13 +322,6 @@ module Aws::IoTRoboRunner
396
322
 
397
323
  class DeleteDestinationResponse < Aws::EmptyStructure; end
398
324
 
399
- # @note When making an API call, you may pass DeleteSiteRequest
400
- # data as a hash:
401
- #
402
- # {
403
- # id: "SiteGenericIdentifier", # required
404
- # }
405
- #
406
325
  # @!attribute [rw] id
407
326
  # Site ARN.
408
327
  # @return [String]
@@ -415,13 +334,6 @@ module Aws::IoTRoboRunner
415
334
 
416
335
  class DeleteSiteResponse < Aws::EmptyStructure; end
417
336
 
418
- # @note When making an API call, you may pass DeleteWorkerFleetRequest
419
- # data as a hash:
420
- #
421
- # {
422
- # id: "WorkerFleetGenericIdentifier", # required
423
- # }
424
- #
425
337
  # @!attribute [rw] id
426
338
  # Full ARN of the worker fleet.
427
339
  # @return [String]
@@ -434,13 +346,6 @@ module Aws::IoTRoboRunner
434
346
 
435
347
  class DeleteWorkerFleetResponse < Aws::EmptyStructure; end
436
348
 
437
- # @note When making an API call, you may pass DeleteWorkerRequest
438
- # data as a hash:
439
- #
440
- # {
441
- # id: "WorkerGenericIdentifier", # required
442
- # }
443
- #
444
349
  # @!attribute [rw] id
445
350
  # Full ARN of the worker.
446
351
  # @return [String]
@@ -501,13 +406,6 @@ module Aws::IoTRoboRunner
501
406
  include Aws::Structure
502
407
  end
503
408
 
504
- # @note When making an API call, you may pass GetDestinationRequest
505
- # data as a hash:
506
- #
507
- # {
508
- # id: "DestinationGenericIdentifier", # required
509
- # }
510
- #
511
409
  # @!attribute [rw] id
512
410
  # Destination ARN.
513
411
  # @return [String]
@@ -564,13 +462,6 @@ module Aws::IoTRoboRunner
564
462
  include Aws::Structure
565
463
  end
566
464
 
567
- # @note When making an API call, you may pass GetSiteRequest
568
- # data as a hash:
569
- #
570
- # {
571
- # id: "SiteGenericIdentifier", # required
572
- # }
573
- #
574
465
  # @!attribute [rw] id
575
466
  # Site ARN.
576
467
  # @return [String]
@@ -622,13 +513,6 @@ module Aws::IoTRoboRunner
622
513
  include Aws::Structure
623
514
  end
624
515
 
625
- # @note When making an API call, you may pass GetWorkerFleetRequest
626
- # data as a hash:
627
- #
628
- # {
629
- # id: "WorkerFleetGenericIdentifier", # required
630
- # }
631
- #
632
516
  # @!attribute [rw] id
633
517
  # Full ARN of the worker fleet.
634
518
  # @return [String]
@@ -680,13 +564,6 @@ module Aws::IoTRoboRunner
680
564
  include Aws::Structure
681
565
  end
682
566
 
683
- # @note When making an API call, you may pass GetWorkerRequest
684
- # data as a hash:
685
- #
686
- # {
687
- # id: "WorkerGenericIdentifier", # required
688
- # }
689
- #
690
567
  # @!attribute [rw] id
691
568
  # Full ARN of the worker.
692
569
  # @return [String]
@@ -775,16 +652,6 @@ module Aws::IoTRoboRunner
775
652
  include Aws::Structure
776
653
  end
777
654
 
778
- # @note When making an API call, you may pass ListDestinationsRequest
779
- # data as a hash:
780
- #
781
- # {
782
- # site: "SiteGenericIdentifier", # required
783
- # max_results: 1,
784
- # next_token: "PaginationToken",
785
- # state: "ENABLED", # accepts ENABLED, DISABLED, DECOMMISSIONED
786
- # }
787
- #
788
655
  # @!attribute [rw] site
789
656
  # Site ARN.
790
657
  # @return [String]
@@ -827,14 +694,6 @@ module Aws::IoTRoboRunner
827
694
  include Aws::Structure
828
695
  end
829
696
 
830
- # @note When making an API call, you may pass ListSitesRequest
831
- # data as a hash:
832
- #
833
- # {
834
- # max_results: 1,
835
- # next_token: "PaginationToken",
836
- # }
837
- #
838
697
  # @!attribute [rw] max_results
839
698
  # Maximum number of results to retrieve in a single ListSites call.
840
699
  # @return [Integer]
@@ -867,15 +726,6 @@ module Aws::IoTRoboRunner
867
726
  include Aws::Structure
868
727
  end
869
728
 
870
- # @note When making an API call, you may pass ListWorkerFleetsRequest
871
- # data as a hash:
872
- #
873
- # {
874
- # site: "SiteGenericIdentifier", # required
875
- # max_results: 1,
876
- # next_token: "PaginationToken",
877
- # }
878
- #
879
729
  # @!attribute [rw] site
880
730
  # Site ARN.
881
731
  # @return [String]
@@ -914,16 +764,6 @@ module Aws::IoTRoboRunner
914
764
  include Aws::Structure
915
765
  end
916
766
 
917
- # @note When making an API call, you may pass ListWorkersRequest
918
- # data as a hash:
919
- #
920
- # {
921
- # site: "SiteGenericIdentifier", # required
922
- # max_results: 1,
923
- # next_token: "PaginationToken",
924
- # fleet: "WorkerFleetGenericIdentifier",
925
- # }
926
- #
927
767
  # @!attribute [rw] site
928
768
  # Site ARN.
929
769
  # @return [String]
@@ -1072,16 +912,6 @@ module Aws::IoTRoboRunner
1072
912
  include Aws::Structure
1073
913
  end
1074
914
 
1075
- # @note When making an API call, you may pass UpdateDestinationRequest
1076
- # data as a hash:
1077
- #
1078
- # {
1079
- # id: "DestinationGenericIdentifier", # required
1080
- # name: "Name",
1081
- # state: "ENABLED", # accepts ENABLED, DISABLED, DECOMMISSIONED
1082
- # additional_fixed_properties: "DestinationAdditionalFixedProperties",
1083
- # }
1084
- #
1085
915
  # @!attribute [rw] id
1086
916
  # Destination ARN.
1087
917
  # @return [String]
@@ -1144,16 +974,6 @@ module Aws::IoTRoboRunner
1144
974
  include Aws::Structure
1145
975
  end
1146
976
 
1147
- # @note When making an API call, you may pass UpdateSiteRequest
1148
- # data as a hash:
1149
- #
1150
- # {
1151
- # id: "SiteGenericIdentifier", # required
1152
- # name: "Name",
1153
- # country_code: "SiteCountryCode",
1154
- # description: "SiteDescription",
1155
- # }
1156
- #
1157
977
  # @!attribute [rw] id
1158
978
  # Site ARN.
1159
979
  # @return [String]
@@ -1216,15 +1036,6 @@ module Aws::IoTRoboRunner
1216
1036
  include Aws::Structure
1217
1037
  end
1218
1038
 
1219
- # @note When making an API call, you may pass UpdateWorkerFleetRequest
1220
- # data as a hash:
1221
- #
1222
- # {
1223
- # id: "WorkerFleetGenericIdentifier", # required
1224
- # name: "Name",
1225
- # additional_fixed_properties: "WorkerFleetAdditionalFixedProperties",
1226
- # }
1227
- #
1228
1039
  # @!attribute [rw] id
1229
1040
  # Full ARN of the worker fleet.
1230
1041
  # @return [String]
@@ -1277,32 +1088,6 @@ module Aws::IoTRoboRunner
1277
1088
  include Aws::Structure
1278
1089
  end
1279
1090
 
1280
- # @note When making an API call, you may pass UpdateWorkerRequest
1281
- # data as a hash:
1282
- #
1283
- # {
1284
- # id: "WorkerGenericIdentifier", # required
1285
- # name: "Name",
1286
- # additional_transient_properties: "WorkerAdditionalTransientPropertiesJson",
1287
- # additional_fixed_properties: "WorkerAdditionalFixedPropertiesJson",
1288
- # vendor_properties: {
1289
- # vendor_worker_id: "VendorWorkerId", # required
1290
- # vendor_worker_ip_address: "VendorWorkerIpAddress",
1291
- # vendor_additional_transient_properties: "VendorAdditionalTransientPropertiesJson",
1292
- # vendor_additional_fixed_properties: "VendorAdditionalFixedPropertiesJson",
1293
- # },
1294
- # position: {
1295
- # cartesian_coordinates: {
1296
- # x: 1.0, # required
1297
- # y: 1.0, # required
1298
- # z: 1.0,
1299
- # },
1300
- # },
1301
- # orientation: {
1302
- # degrees: 1.0,
1303
- # },
1304
- # }
1305
- #
1306
1091
  # @!attribute [rw] id
1307
1092
  # Full ARN of the worker.
1308
1093
  # @return [String]
@@ -1415,16 +1200,6 @@ module Aws::IoTRoboRunner
1415
1200
 
1416
1201
  # Properties of the worker that are provided by the vendor FMS.
1417
1202
  #
1418
- # @note When making an API call, you may pass VendorProperties
1419
- # data as a hash:
1420
- #
1421
- # {
1422
- # vendor_worker_id: "VendorWorkerId", # required
1423
- # vendor_worker_ip_address: "VendorWorkerIpAddress",
1424
- # vendor_additional_transient_properties: "VendorAdditionalTransientPropertiesJson",
1425
- # vendor_additional_fixed_properties: "VendorAdditionalFixedPropertiesJson",
1426
- # }
1427
- #
1428
1203
  # @!attribute [rw] vendor_worker_id
1429
1204
  # The worker ID defined by the vendor FMS.
1430
1205
  # @return [String]
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-iotroborunner/customizations'
52
52
  # @!group service
53
53
  module Aws::IoTRoboRunner
54
54
 
55
- GEM_VERSION = '1.0.0'
55
+ GEM_VERSION = '1.1.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-iotroborunner
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.1.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: 2022-11-18 00:00:00.000000000 Z
11
+ date: 2023-01-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core