aws-sdk-greengrass 1.24.0 → 1.25.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-greengrass.rb +1 -1
- data/lib/aws-sdk-greengrass/client.rb +8 -4
- data/lib/aws-sdk-greengrass/client_api.rb +1 -0
- data/lib/aws-sdk-greengrass/types.rb +11 -5
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 30349cad230ad4f9649fe67fadd726e5d21a9342
|
|
4
|
+
data.tar.gz: 8a4214557d1396e1fa29cd4248c6466114973d02
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 91a3d7b98258a8d6e68d5757f77d78aa71336d69d19fd321e122c00a6ca97679b9bbbe878af914ab9b0ccdccf45a29389c06a6601d3b5dfe3194fbf8249b321c
|
|
7
|
+
data.tar.gz: 424c22ec7bdb8d5e38065651918cf251ef9f39fae2a1cfc15fa07f6f8a7627b66b5163478885e2f120204188791f3bc98be6bcd0dbb3fe82e4095eb1fe2e5b5f
|
data/lib/aws-sdk-greengrass.rb
CHANGED
|
@@ -1348,6 +1348,7 @@ module Aws::Greengrass
|
|
|
1348
1348
|
#
|
|
1349
1349
|
# * {Types::CreateSoftwareUpdateJobResponse#iot_job_arn #iot_job_arn} => String
|
|
1350
1350
|
# * {Types::CreateSoftwareUpdateJobResponse#iot_job_id #iot_job_id} => String
|
|
1351
|
+
# * {Types::CreateSoftwareUpdateJobResponse#platform_software_version #platform_software_version} => String
|
|
1351
1352
|
#
|
|
1352
1353
|
# @example Request syntax with placeholder values
|
|
1353
1354
|
#
|
|
@@ -1365,6 +1366,7 @@ module Aws::Greengrass
|
|
|
1365
1366
|
#
|
|
1366
1367
|
# resp.iot_job_arn #=> String
|
|
1367
1368
|
# resp.iot_job_id #=> String
|
|
1369
|
+
# resp.platform_software_version #=> String
|
|
1368
1370
|
#
|
|
1369
1371
|
# @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/CreateSoftwareUpdateJob AWS API Documentation
|
|
1370
1372
|
#
|
|
@@ -3606,9 +3608,11 @@ module Aws::Greengrass
|
|
|
3606
3608
|
req.send_request(options)
|
|
3607
3609
|
end
|
|
3608
3610
|
|
|
3609
|
-
#
|
|
3610
|
-
#
|
|
3611
|
-
#
|
|
3611
|
+
# Adds tags to a Greengrass resource. Valid resources are 'Group',
|
|
3612
|
+
# 'ConnectorDefinition', 'CoreDefinition', 'DeviceDefinition',
|
|
3613
|
+
# 'FunctionDefinition', 'LoggerDefinition',
|
|
3614
|
+
# 'SubscriptionDefinition', 'ResourceDefinition', and
|
|
3615
|
+
# 'BulkDeployment'.
|
|
3612
3616
|
#
|
|
3613
3617
|
# @option params [required, String] :resource_arn
|
|
3614
3618
|
#
|
|
@@ -3942,7 +3946,7 @@ module Aws::Greengrass
|
|
|
3942
3946
|
params: params,
|
|
3943
3947
|
config: config)
|
|
3944
3948
|
context[:gem_name] = 'aws-sdk-greengrass'
|
|
3945
|
-
context[:gem_version] = '1.
|
|
3949
|
+
context[:gem_version] = '1.25.0'
|
|
3946
3950
|
Seahorse::Client::Request.new(handlers, context)
|
|
3947
3951
|
end
|
|
3948
3952
|
|
|
@@ -559,6 +559,7 @@ module Aws::Greengrass
|
|
|
559
559
|
|
|
560
560
|
CreateSoftwareUpdateJobResponse.add_member(:iot_job_arn, Shapes::ShapeRef.new(shape: __string, location_name: "IotJobArn"))
|
|
561
561
|
CreateSoftwareUpdateJobResponse.add_member(:iot_job_id, Shapes::ShapeRef.new(shape: __string, location_name: "IotJobId"))
|
|
562
|
+
CreateSoftwareUpdateJobResponse.add_member(:platform_software_version, Shapes::ShapeRef.new(shape: __string, location_name: "PlatformSoftwareVersion"))
|
|
562
563
|
CreateSoftwareUpdateJobResponse.struct_class = Types::CreateSoftwareUpdateJobResponse
|
|
563
564
|
|
|
564
565
|
CreateSubscriptionDefinitionRequest.add_member(:amzn_client_token, Shapes::ShapeRef.new(shape: __string, location: "header", location_name: "X-Amzn-Client-Token"))
|
|
@@ -1630,11 +1630,17 @@ module Aws::Greengrass
|
|
|
1630
1630
|
# The IoT Job Id corresponding to this update.
|
|
1631
1631
|
# @return [String]
|
|
1632
1632
|
#
|
|
1633
|
+
# @!attribute [rw] platform_software_version
|
|
1634
|
+
# The software version installed on the device or devices after the
|
|
1635
|
+
# update.
|
|
1636
|
+
# @return [String]
|
|
1637
|
+
#
|
|
1633
1638
|
# @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/CreateSoftwareUpdateJobResponse AWS API Documentation
|
|
1634
1639
|
#
|
|
1635
1640
|
class CreateSoftwareUpdateJobResponse < Struct.new(
|
|
1636
1641
|
:iot_job_arn,
|
|
1637
|
-
:iot_job_id
|
|
1642
|
+
:iot_job_id,
|
|
1643
|
+
:platform_software_version)
|
|
1638
1644
|
include Aws::Structure
|
|
1639
1645
|
end
|
|
1640
1646
|
|
|
@@ -3424,11 +3430,11 @@ module Aws::Greengrass
|
|
|
3424
3430
|
# @return [Types::GroupVersion]
|
|
3425
3431
|
#
|
|
3426
3432
|
# @!attribute [rw] id
|
|
3427
|
-
# The ID of the group version.
|
|
3433
|
+
# The ID of the group that the version is associated with.
|
|
3428
3434
|
# @return [String]
|
|
3429
3435
|
#
|
|
3430
3436
|
# @!attribute [rw] version
|
|
3431
|
-
# The
|
|
3437
|
+
# The ID of the group version.
|
|
3432
3438
|
# @return [String]
|
|
3433
3439
|
#
|
|
3434
3440
|
# @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GetGroupVersionResponse AWS API Documentation
|
|
@@ -5864,11 +5870,11 @@ module Aws::Greengrass
|
|
|
5864
5870
|
# @return [String]
|
|
5865
5871
|
#
|
|
5866
5872
|
# @!attribute [rw] id
|
|
5867
|
-
# The ID of the version.
|
|
5873
|
+
# The ID of the parent definition that the version is associated with.
|
|
5868
5874
|
# @return [String]
|
|
5869
5875
|
#
|
|
5870
5876
|
# @!attribute [rw] version
|
|
5871
|
-
# The
|
|
5877
|
+
# The ID of the version.
|
|
5872
5878
|
# @return [String]
|
|
5873
5879
|
#
|
|
5874
5880
|
# @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/VersionInformation AWS API Documentation
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-greengrass
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
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-
|
|
11
|
+
date: 2019-09-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|