aws-sdk-greengrass 1.16.0 → 1.17.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: 8d7f629ae2bcfcc787ebdb80caaa2c12ff9c8b92
4
- data.tar.gz: cd494823e70cf57ff8c4e8c350bf04ba40e54854
3
+ metadata.gz: e40bba9f3c376e1130ed06040ec23dbafce902ad
4
+ data.tar.gz: 7bd549ee37d371800be4411a24523c1eae4b9044
5
5
  SHA512:
6
- metadata.gz: 89e0fa910b0641d01937f92d89f53d216ba8d3b665181419f18f7c8650c205b209f11677e23075381e35b7fa0c97da9ff0abe0ede86f057818299812669dcc6e
7
- data.tar.gz: daac89de24df4daec2be845bffb51f62287ead40d1e787f5f1a7d2edf9175e9adc349c61866f6520fd581ed9e483864fa8b6f80f1fc34160104587212c456c07
6
+ metadata.gz: 86938ce939e2f484c098eabc408fdebb725ed3fc6ce39cdb49184551efbccf0f2c4eda9a81d44bbfc242485f0e4995d7394b69978951418e11f118f26ec0e0e0
7
+ data.tar.gz: b93692eabe67f52934d4612bd80954f47f70341c017b32a9db23a1403d2b3046bac3eaa798a3668ab2236ae0b74d6bac563c744f8cca4f6339b53a37cdcaf7fd
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-greengrass/customizations'
42
42
  # @service
43
43
  module Aws::Greengrass
44
44
 
45
- GEM_VERSION = '1.16.0'
45
+ GEM_VERSION = '1.17.0'
46
46
 
47
47
  end
@@ -199,6 +199,49 @@ module Aws::Greengrass
199
199
  # When `true`, request parameters are validated before
200
200
  # sending the request.
201
201
  #
202
+ # @option options [URI::HTTP,String] :http_proxy A proxy to send
203
+ # requests through. Formatted like 'http://proxy.com:123'.
204
+ #
205
+ # @option options [Float] :http_open_timeout (15) The number of
206
+ # seconds to wait when opening a HTTP session before rasing a
207
+ # `Timeout::Error`.
208
+ #
209
+ # @option options [Integer] :http_read_timeout (60) The default
210
+ # number of seconds to wait for response data. This value can
211
+ # safely be set
212
+ # per-request on the session yeidled by {#session_for}.
213
+ #
214
+ # @option options [Float] :http_idle_timeout (5) The number of
215
+ # seconds a connection is allowed to sit idble before it is
216
+ # considered stale. Stale connections are closed and removed
217
+ # from the pool before making a request.
218
+ #
219
+ # @option options [Float] :http_continue_timeout (1) The number of
220
+ # seconds to wait for a 100-continue response before sending the
221
+ # request body. This option has no effect unless the request has
222
+ # "Expect" header set to "100-continue". Defaults to `nil` which
223
+ # disables this behaviour. This value can safely be set per
224
+ # request on the session yeidled by {#session_for}.
225
+ #
226
+ # @option options [Boolean] :http_wire_trace (false) When `true`,
227
+ # HTTP debug output will be sent to the `:logger`.
228
+ #
229
+ # @option options [Boolean] :ssl_verify_peer (true) When `true`,
230
+ # SSL peer certificates are verified when establishing a
231
+ # connection.
232
+ #
233
+ # @option options [String] :ssl_ca_bundle Full path to the SSL
234
+ # certificate authority bundle file that should be used when
235
+ # verifying peer certificates. If you do not pass
236
+ # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
237
+ # will be used if available.
238
+ #
239
+ # @option options [String] :ssl_ca_directory Full path of the
240
+ # directory that contains the unbundled SSL certificate
241
+ # authority files for verifying peer certificates. If you do
242
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
243
+ # system default will be used if available.
244
+ #
202
245
  def initialize(*args)
203
246
  super
204
247
  end
@@ -282,6 +325,8 @@ module Aws::Greengrass
282
325
  #
283
326
  # @option params [String] :name
284
327
  #
328
+ # @option params [Hash<String,String>] :tags
329
+ #
285
330
  # @return [Types::CreateConnectorDefinitionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
286
331
  #
287
332
  # * {Types::CreateConnectorDefinitionResponse#arn #arn} => String
@@ -308,6 +353,9 @@ module Aws::Greengrass
308
353
  # ],
309
354
  # },
310
355
  # name: "__string",
356
+ # tags: {
357
+ # "__string" => "__string",
358
+ # },
311
359
  # })
312
360
  #
313
361
  # @example Response structure
@@ -389,6 +437,8 @@ module Aws::Greengrass
389
437
  #
390
438
  # @option params [String] :name
391
439
  #
440
+ # @option params [Hash<String,String>] :tags
441
+ #
392
442
  # @return [Types::CreateCoreDefinitionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
393
443
  #
394
444
  # * {Types::CreateCoreDefinitionResponse#arn #arn} => String
@@ -414,6 +464,9 @@ module Aws::Greengrass
414
464
  # ],
415
465
  # },
416
466
  # name: "__string",
467
+ # tags: {
468
+ # "__string" => "__string",
469
+ # },
417
470
  # })
418
471
  #
419
472
  # @example Response structure
@@ -541,6 +594,8 @@ module Aws::Greengrass
541
594
  #
542
595
  # @option params [String] :name
543
596
  #
597
+ # @option params [Hash<String,String>] :tags
598
+ #
544
599
  # @return [Types::CreateDeviceDefinitionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
545
600
  #
546
601
  # * {Types::CreateDeviceDefinitionResponse#arn #arn} => String
@@ -566,6 +621,9 @@ module Aws::Greengrass
566
621
  # ],
567
622
  # },
568
623
  # name: "__string",
624
+ # tags: {
625
+ # "__string" => "__string",
626
+ # },
569
627
  # })
570
628
  #
571
629
  # @example Response structure
@@ -647,6 +705,8 @@ module Aws::Greengrass
647
705
  #
648
706
  # @option params [String] :name
649
707
  #
708
+ # @option params [Hash<String,String>] :tags
709
+ #
650
710
  # @return [Types::CreateFunctionDefinitionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
651
711
  #
652
712
  # * {Types::CreateFunctionDefinitionResponse#arn #arn} => String
@@ -706,6 +766,9 @@ module Aws::Greengrass
706
766
  # ],
707
767
  # },
708
768
  # name: "__string",
769
+ # tags: {
770
+ # "__string" => "__string",
771
+ # },
709
772
  # })
710
773
  #
711
774
  # @example Response structure
@@ -825,6 +888,8 @@ module Aws::Greengrass
825
888
  #
826
889
  # @option params [String] :name
827
890
  #
891
+ # @option params [Hash<String,String>] :tags
892
+ #
828
893
  # @return [Types::CreateGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
829
894
  #
830
895
  # * {Types::CreateGroupResponse#arn #arn} => String
@@ -849,6 +914,9 @@ module Aws::Greengrass
849
914
  # subscription_definition_version_arn: "__string",
850
915
  # },
851
916
  # name: "__string",
917
+ # tags: {
918
+ # "__string" => "__string",
919
+ # },
852
920
  # })
853
921
  #
854
922
  # @example Response structure
@@ -969,6 +1037,8 @@ module Aws::Greengrass
969
1037
  #
970
1038
  # @option params [String] :name
971
1039
  #
1040
+ # @option params [Hash<String,String>] :tags
1041
+ #
972
1042
  # @return [Types::CreateLoggerDefinitionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
973
1043
  #
974
1044
  # * {Types::CreateLoggerDefinitionResponse#arn #arn} => String
@@ -995,6 +1065,9 @@ module Aws::Greengrass
995
1065
  # ],
996
1066
  # },
997
1067
  # name: "__string",
1068
+ # tags: {
1069
+ # "__string" => "__string",
1070
+ # },
998
1071
  # })
999
1072
  #
1000
1073
  # @example Response structure
@@ -1076,6 +1149,8 @@ module Aws::Greengrass
1076
1149
  #
1077
1150
  # @option params [String] :name
1078
1151
  #
1152
+ # @option params [Hash<String,String>] :tags
1153
+ #
1079
1154
  # @return [Types::CreateResourceDefinitionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1080
1155
  #
1081
1156
  # * {Types::CreateResourceDefinitionResponse#arn #arn} => String
@@ -1128,6 +1203,9 @@ module Aws::Greengrass
1128
1203
  # ],
1129
1204
  # },
1130
1205
  # name: "__string",
1206
+ # tags: {
1207
+ # "__string" => "__string",
1208
+ # },
1131
1209
  # })
1132
1210
  #
1133
1211
  # @example Response structure
@@ -1294,6 +1372,8 @@ module Aws::Greengrass
1294
1372
  #
1295
1373
  # @option params [String] :name
1296
1374
  #
1375
+ # @option params [Hash<String,String>] :tags
1376
+ #
1297
1377
  # @return [Types::CreateSubscriptionDefinitionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1298
1378
  #
1299
1379
  # * {Types::CreateSubscriptionDefinitionResponse#arn #arn} => String
@@ -1319,6 +1399,9 @@ module Aws::Greengrass
1319
1399
  # ],
1320
1400
  # },
1321
1401
  # name: "__string",
1402
+ # tags: {
1403
+ # "__string" => "__string",
1404
+ # },
1322
1405
  # })
1323
1406
  #
1324
1407
  # @example Response structure
@@ -1387,6 +1470,34 @@ module Aws::Greengrass
1387
1470
  req.send_request(options)
1388
1471
  end
1389
1472
 
1473
+ # Add resource tags to a Greengrass Resource. Valid resources are Group,
1474
+ # Connector, Core, Device, Function, Logger, Subscription, and Resource
1475
+ # Defintions, and also BulkDeploymentIds.
1476
+ #
1477
+ # @option params [required, String] :resource_arn
1478
+ #
1479
+ # @option params [required, Hash<String,String>] :tags
1480
+ #
1481
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1482
+ #
1483
+ # @example Request syntax with placeholder values
1484
+ #
1485
+ # resp = client.tag_resource({
1486
+ # resource_arn: "__string", # required
1487
+ # tags: { # required
1488
+ # "__string" => "__string",
1489
+ # },
1490
+ # })
1491
+ #
1492
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/TagResource AWS API Documentation
1493
+ #
1494
+ # @overload tag_resource(params = {})
1495
+ # @param [Hash] params ({})
1496
+ def tag_resource(params = {}, options = {})
1497
+ req = build_request(:tag_resource, params)
1498
+ req.send_request(options)
1499
+ end
1500
+
1390
1501
  # Deletes a connector definition.
1391
1502
  #
1392
1503
  # @option params [required, String] :connector_definition_id
@@ -1555,6 +1666,30 @@ module Aws::Greengrass
1555
1666
  req.send_request(options)
1556
1667
  end
1557
1668
 
1669
+ # Remove resource tags from a Greengrass Resource.
1670
+ #
1671
+ # @option params [required, String] :resource_arn
1672
+ #
1673
+ # @option params [required, Array<String>] :tag_keys
1674
+ #
1675
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1676
+ #
1677
+ # @example Request syntax with placeholder values
1678
+ #
1679
+ # resp = client.untag_resource({
1680
+ # resource_arn: "__string", # required
1681
+ # tag_keys: ["__string"], # required
1682
+ # })
1683
+ #
1684
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/UntagResource AWS API Documentation
1685
+ #
1686
+ # @overload untag_resource(params = {})
1687
+ # @param [Hash] params ({})
1688
+ def untag_resource(params = {}, options = {})
1689
+ req = build_request(:untag_resource, params)
1690
+ req.send_request(options)
1691
+ end
1692
+
1558
1693
  # Disassociates the role from a group.
1559
1694
  #
1560
1695
  # @option params [required, String] :group_id
@@ -1642,6 +1777,7 @@ module Aws::Greengrass
1642
1777
  # * {Types::GetBulkDeploymentStatusResponse#created_at #created_at} => String
1643
1778
  # * {Types::GetBulkDeploymentStatusResponse#error_details #error_details} => Array&lt;Types::ErrorDetail&gt;
1644
1779
  # * {Types::GetBulkDeploymentStatusResponse#error_message #error_message} => String
1780
+ # * {Types::GetBulkDeploymentStatusResponse#tags #tags} => Hash&lt;String,String&gt;
1645
1781
  #
1646
1782
  # @example Request syntax with placeholder values
1647
1783
  #
@@ -1660,6 +1796,8 @@ module Aws::Greengrass
1660
1796
  # resp.error_details[0].detailed_error_code #=> String
1661
1797
  # resp.error_details[0].detailed_error_message #=> String
1662
1798
  # resp.error_message #=> String
1799
+ # resp.tags #=> Hash
1800
+ # resp.tags["__string"] #=> String
1663
1801
  #
1664
1802
  # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GetBulkDeploymentStatus AWS API Documentation
1665
1803
  #
@@ -1716,6 +1854,7 @@ module Aws::Greengrass
1716
1854
  # * {Types::GetConnectorDefinitionResponse#latest_version #latest_version} => String
1717
1855
  # * {Types::GetConnectorDefinitionResponse#latest_version_arn #latest_version_arn} => String
1718
1856
  # * {Types::GetConnectorDefinitionResponse#name #name} => String
1857
+ # * {Types::GetConnectorDefinitionResponse#tags #tags} => Hash&lt;String,String&gt;
1719
1858
  #
1720
1859
  # @example Request syntax with placeholder values
1721
1860
  #
@@ -1732,6 +1871,8 @@ module Aws::Greengrass
1732
1871
  # resp.latest_version #=> String
1733
1872
  # resp.latest_version_arn #=> String
1734
1873
  # resp.name #=> String
1874
+ # resp.tags #=> Hash
1875
+ # resp.tags["__string"] #=> String
1735
1876
  #
1736
1877
  # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GetConnectorDefinition AWS API Documentation
1737
1878
  #
@@ -1805,6 +1946,7 @@ module Aws::Greengrass
1805
1946
  # * {Types::GetCoreDefinitionResponse#latest_version #latest_version} => String
1806
1947
  # * {Types::GetCoreDefinitionResponse#latest_version_arn #latest_version_arn} => String
1807
1948
  # * {Types::GetCoreDefinitionResponse#name #name} => String
1949
+ # * {Types::GetCoreDefinitionResponse#tags #tags} => Hash&lt;String,String&gt;
1808
1950
  #
1809
1951
  # @example Request syntax with placeholder values
1810
1952
  #
@@ -1821,6 +1963,8 @@ module Aws::Greengrass
1821
1963
  # resp.latest_version #=> String
1822
1964
  # resp.latest_version_arn #=> String
1823
1965
  # resp.name #=> String
1966
+ # resp.tags #=> Hash
1967
+ # resp.tags["__string"] #=> String
1824
1968
  #
1825
1969
  # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GetCoreDefinition AWS API Documentation
1826
1970
  #
@@ -1928,6 +2072,7 @@ module Aws::Greengrass
1928
2072
  # * {Types::GetDeviceDefinitionResponse#latest_version #latest_version} => String
1929
2073
  # * {Types::GetDeviceDefinitionResponse#latest_version_arn #latest_version_arn} => String
1930
2074
  # * {Types::GetDeviceDefinitionResponse#name #name} => String
2075
+ # * {Types::GetDeviceDefinitionResponse#tags #tags} => Hash&lt;String,String&gt;
1931
2076
  #
1932
2077
  # @example Request syntax with placeholder values
1933
2078
  #
@@ -1944,6 +2089,8 @@ module Aws::Greengrass
1944
2089
  # resp.latest_version #=> String
1945
2090
  # resp.latest_version_arn #=> String
1946
2091
  # resp.name #=> String
2092
+ # resp.tags #=> Hash
2093
+ # resp.tags["__string"] #=> String
1947
2094
  #
1948
2095
  # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GetDeviceDefinition AWS API Documentation
1949
2096
  #
@@ -2015,6 +2162,7 @@ module Aws::Greengrass
2015
2162
  # * {Types::GetFunctionDefinitionResponse#latest_version #latest_version} => String
2016
2163
  # * {Types::GetFunctionDefinitionResponse#latest_version_arn #latest_version_arn} => String
2017
2164
  # * {Types::GetFunctionDefinitionResponse#name #name} => String
2165
+ # * {Types::GetFunctionDefinitionResponse#tags #tags} => Hash&lt;String,String&gt;
2018
2166
  #
2019
2167
  # @example Request syntax with placeholder values
2020
2168
  #
@@ -2031,6 +2179,8 @@ module Aws::Greengrass
2031
2179
  # resp.latest_version #=> String
2032
2180
  # resp.latest_version_arn #=> String
2033
2181
  # resp.name #=> String
2182
+ # resp.tags #=> Hash
2183
+ # resp.tags["__string"] #=> String
2034
2184
  #
2035
2185
  # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GetFunctionDefinition AWS API Documentation
2036
2186
  #
@@ -2119,6 +2269,7 @@ module Aws::Greengrass
2119
2269
  # * {Types::GetGroupResponse#latest_version #latest_version} => String
2120
2270
  # * {Types::GetGroupResponse#latest_version_arn #latest_version_arn} => String
2121
2271
  # * {Types::GetGroupResponse#name #name} => String
2272
+ # * {Types::GetGroupResponse#tags #tags} => Hash&lt;String,String&gt;
2122
2273
  #
2123
2274
  # @example Request syntax with placeholder values
2124
2275
  #
@@ -2135,6 +2286,8 @@ module Aws::Greengrass
2135
2286
  # resp.latest_version #=> String
2136
2287
  # resp.latest_version_arn #=> String
2137
2288
  # resp.name #=> String
2289
+ # resp.tags #=> Hash
2290
+ # resp.tags["__string"] #=> String
2138
2291
  #
2139
2292
  # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GetGroup AWS API Documentation
2140
2293
  #
@@ -2268,6 +2421,7 @@ module Aws::Greengrass
2268
2421
  # * {Types::GetLoggerDefinitionResponse#latest_version #latest_version} => String
2269
2422
  # * {Types::GetLoggerDefinitionResponse#latest_version_arn #latest_version_arn} => String
2270
2423
  # * {Types::GetLoggerDefinitionResponse#name #name} => String
2424
+ # * {Types::GetLoggerDefinitionResponse#tags #tags} => Hash&lt;String,String&gt;
2271
2425
  #
2272
2426
  # @example Request syntax with placeholder values
2273
2427
  #
@@ -2284,6 +2438,8 @@ module Aws::Greengrass
2284
2438
  # resp.latest_version #=> String
2285
2439
  # resp.latest_version_arn #=> String
2286
2440
  # resp.name #=> String
2441
+ # resp.tags #=> Hash
2442
+ # resp.tags["__string"] #=> String
2287
2443
  #
2288
2444
  # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GetLoggerDefinition AWS API Documentation
2289
2445
  #
@@ -2354,6 +2510,7 @@ module Aws::Greengrass
2354
2510
  # * {Types::GetResourceDefinitionResponse#latest_version #latest_version} => String
2355
2511
  # * {Types::GetResourceDefinitionResponse#latest_version_arn #latest_version_arn} => String
2356
2512
  # * {Types::GetResourceDefinitionResponse#name #name} => String
2513
+ # * {Types::GetResourceDefinitionResponse#tags #tags} => Hash&lt;String,String&gt;
2357
2514
  #
2358
2515
  # @example Request syntax with placeholder values
2359
2516
  #
@@ -2370,6 +2527,8 @@ module Aws::Greengrass
2370
2527
  # resp.latest_version #=> String
2371
2528
  # resp.latest_version_arn #=> String
2372
2529
  # resp.name #=> String
2530
+ # resp.tags #=> Hash
2531
+ # resp.tags["__string"] #=> String
2373
2532
  #
2374
2533
  # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GetResourceDefinition AWS API Documentation
2375
2534
  #
@@ -2469,6 +2628,7 @@ module Aws::Greengrass
2469
2628
  # * {Types::GetSubscriptionDefinitionResponse#latest_version #latest_version} => String
2470
2629
  # * {Types::GetSubscriptionDefinitionResponse#latest_version_arn #latest_version_arn} => String
2471
2630
  # * {Types::GetSubscriptionDefinitionResponse#name #name} => String
2631
+ # * {Types::GetSubscriptionDefinitionResponse#tags #tags} => Hash&lt;String,String&gt;
2472
2632
  #
2473
2633
  # @example Request syntax with placeholder values
2474
2634
  #
@@ -2485,6 +2645,8 @@ module Aws::Greengrass
2485
2645
  # resp.latest_version #=> String
2486
2646
  # resp.latest_version_arn #=> String
2487
2647
  # resp.name #=> String
2648
+ # resp.tags #=> Hash
2649
+ # resp.tags["__string"] #=> String
2488
2650
  #
2489
2651
  # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GetSubscriptionDefinition AWS API Documentation
2490
2652
  #
@@ -2693,6 +2855,8 @@ module Aws::Greengrass
2693
2855
  # resp.definitions[0].latest_version #=> String
2694
2856
  # resp.definitions[0].latest_version_arn #=> String
2695
2857
  # resp.definitions[0].name #=> String
2858
+ # resp.definitions[0].tags #=> Hash
2859
+ # resp.definitions[0].tags["__string"] #=> String
2696
2860
  # resp.next_token #=> String
2697
2861
  #
2698
2862
  # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/ListConnectorDefinitions AWS API Documentation
@@ -2771,6 +2935,8 @@ module Aws::Greengrass
2771
2935
  # resp.definitions[0].latest_version #=> String
2772
2936
  # resp.definitions[0].latest_version_arn #=> String
2773
2937
  # resp.definitions[0].name #=> String
2938
+ # resp.definitions[0].tags #=> Hash
2939
+ # resp.definitions[0].tags["__string"] #=> String
2774
2940
  # resp.next_token #=> String
2775
2941
  #
2776
2942
  # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/ListCoreDefinitions AWS API Documentation
@@ -2889,6 +3055,8 @@ module Aws::Greengrass
2889
3055
  # resp.definitions[0].latest_version #=> String
2890
3056
  # resp.definitions[0].latest_version_arn #=> String
2891
3057
  # resp.definitions[0].name #=> String
3058
+ # resp.definitions[0].tags #=> Hash
3059
+ # resp.definitions[0].tags["__string"] #=> String
2892
3060
  # resp.next_token #=> String
2893
3061
  #
2894
3062
  # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/ListDeviceDefinitions AWS API Documentation
@@ -2967,6 +3135,8 @@ module Aws::Greengrass
2967
3135
  # resp.definitions[0].latest_version #=> String
2968
3136
  # resp.definitions[0].latest_version_arn #=> String
2969
3137
  # resp.definitions[0].name #=> String
3138
+ # resp.definitions[0].tags #=> Hash
3139
+ # resp.definitions[0].tags["__string"] #=> String
2970
3140
  # resp.next_token #=> String
2971
3141
  #
2972
3142
  # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/ListFunctionDefinitions AWS API Documentation
@@ -3152,6 +3322,8 @@ module Aws::Greengrass
3152
3322
  # resp.definitions[0].latest_version #=> String
3153
3323
  # resp.definitions[0].latest_version_arn #=> String
3154
3324
  # resp.definitions[0].name #=> String
3325
+ # resp.definitions[0].tags #=> Hash
3326
+ # resp.definitions[0].tags["__string"] #=> String
3155
3327
  # resp.next_token #=> String
3156
3328
  #
3157
3329
  # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/ListLoggerDefinitions AWS API Documentation
@@ -3230,6 +3402,8 @@ module Aws::Greengrass
3230
3402
  # resp.definitions[0].latest_version #=> String
3231
3403
  # resp.definitions[0].latest_version_arn #=> String
3232
3404
  # resp.definitions[0].name #=> String
3405
+ # resp.definitions[0].tags #=> Hash
3406
+ # resp.definitions[0].tags["__string"] #=> String
3233
3407
  # resp.next_token #=> String
3234
3408
  #
3235
3409
  # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/ListResourceDefinitions AWS API Documentation
@@ -3308,6 +3482,8 @@ module Aws::Greengrass
3308
3482
  # resp.definitions[0].latest_version #=> String
3309
3483
  # resp.definitions[0].latest_version_arn #=> String
3310
3484
  # resp.definitions[0].name #=> String
3485
+ # resp.definitions[0].tags #=> Hash
3486
+ # resp.definitions[0].tags["__string"] #=> String
3311
3487
  # resp.next_token #=> String
3312
3488
  #
3313
3489
  # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/ListSubscriptionDefinitions AWS API Documentation
@@ -3319,6 +3495,34 @@ module Aws::Greengrass
3319
3495
  req.send_request(options)
3320
3496
  end
3321
3497
 
3498
+ # Retrieves a list of resource tags for a resource arn.
3499
+ #
3500
+ # @option params [required, String] :resource_arn
3501
+ #
3502
+ # @return [Types::ListTagsForResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3503
+ #
3504
+ # * {Types::ListTagsForResourceResponse#tags #tags} => Hash&lt;String,String&gt;
3505
+ #
3506
+ # @example Request syntax with placeholder values
3507
+ #
3508
+ # resp = client.list_tags_for_resource({
3509
+ # resource_arn: "__string", # required
3510
+ # })
3511
+ #
3512
+ # @example Response structure
3513
+ #
3514
+ # resp.tags #=> Hash
3515
+ # resp.tags["__string"] #=> String
3516
+ #
3517
+ # @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/ListTagsForResource AWS API Documentation
3518
+ #
3519
+ # @overload list_tags_for_resource(params = {})
3520
+ # @param [Hash] params ({})
3521
+ def list_tags_for_resource(params = {}, options = {})
3522
+ req = build_request(:list_tags_for_resource, params)
3523
+ req.send_request(options)
3524
+ end
3525
+
3322
3526
  # Resets a group's deployments.
3323
3527
  #
3324
3528
  # @option params [String] :amzn_client_token
@@ -3381,6 +3585,8 @@ module Aws::Greengrass
3381
3585
  # Currently, AWS IoT Greengrass supports only ''NewDeployment''
3382
3586
  # deployment types.
3383
3587
  #
3588
+ # @option params [Hash<String,String>] :tags
3589
+ #
3384
3590
  # @return [Types::StartBulkDeploymentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3385
3591
  #
3386
3592
  # * {Types::StartBulkDeploymentResponse#bulk_deployment_arn #bulk_deployment_arn} => String
@@ -3392,6 +3598,9 @@ module Aws::Greengrass
3392
3598
  # amzn_client_token: "__string",
3393
3599
  # execution_role_arn: "__string",
3394
3600
  # input_file_uri: "__string",
3601
+ # tags: {
3602
+ # "__string" => "__string",
3603
+ # },
3395
3604
  # })
3396
3605
  #
3397
3606
  # @example Response structure
@@ -3716,7 +3925,7 @@ module Aws::Greengrass
3716
3925
  params: params,
3717
3926
  config: config)
3718
3927
  context[:gem_name] = 'aws-sdk-greengrass'
3719
- context[:gem_version] = '1.16.0'
3928
+ context[:gem_version] = '1.17.0'
3720
3929
  Seahorse::Client::Request.new(handlers, context)
3721
3930
  end
3722
3931