aws-sdk-greengrass 1.35.0 → 1.36.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-greengrass.rb +1 -1
- data/lib/aws-sdk-greengrass/client.rb +56 -1
- data/lib/aws-sdk-greengrass/client_api.rb +55 -0
- data/lib/aws-sdk-greengrass/types.rb +131 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bfb02b18b01e9cb19e972565e3442a8b718f19f2cb5d3ef39b2a88a366fea18c
|
4
|
+
data.tar.gz: c39244a0775cbbda2ab75a5e6369edaa3129feec08631325469d42dad9e4557d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5e9300100b6c48e01e131e360b8ae6345eb13a9f3ff5827e012e7d68e178e50cd3dcde6c998a2883a06d6929ce4a66e227e1a40807387e536ab11324d464427b
|
7
|
+
data.tar.gz: a93fb6e8e7c25da8375cb910fdd39780f5d3c32d03026071c3da4e8073e5a52a1d05f4b4aee6bee972849e59484adc48e8a9d846a668e8605342380f1cc694db
|
data/lib/aws-sdk-greengrass.rb
CHANGED
@@ -2762,6 +2762,34 @@ module Aws::Greengrass
|
|
2762
2762
|
req.send_request(options)
|
2763
2763
|
end
|
2764
2764
|
|
2765
|
+
# Get the runtime configuration of a thing.
|
2766
|
+
#
|
2767
|
+
# @option params [required, String] :thing_name
|
2768
|
+
#
|
2769
|
+
# @return [Types::GetThingRuntimeConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2770
|
+
#
|
2771
|
+
# * {Types::GetThingRuntimeConfigurationResponse#runtime_configuration #runtime_configuration} => Types::RuntimeConfiguration
|
2772
|
+
#
|
2773
|
+
# @example Request syntax with placeholder values
|
2774
|
+
#
|
2775
|
+
# resp = client.get_thing_runtime_configuration({
|
2776
|
+
# thing_name: "__string", # required
|
2777
|
+
# })
|
2778
|
+
#
|
2779
|
+
# @example Response structure
|
2780
|
+
#
|
2781
|
+
# resp.runtime_configuration.telemetry_configuration.configuration_sync_status #=> String, one of "InSync", "OutOfSync"
|
2782
|
+
# resp.runtime_configuration.telemetry_configuration.telemetry #=> String, one of "On", "Off"
|
2783
|
+
#
|
2784
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GetThingRuntimeConfiguration AWS API Documentation
|
2785
|
+
#
|
2786
|
+
# @overload get_thing_runtime_configuration(params = {})
|
2787
|
+
# @param [Hash] params ({})
|
2788
|
+
def get_thing_runtime_configuration(params = {}, options = {})
|
2789
|
+
req = build_request(:get_thing_runtime_configuration, params)
|
2790
|
+
req.send_request(options)
|
2791
|
+
end
|
2792
|
+
|
2765
2793
|
# Gets a paginated list of the deployments that have been started in a
|
2766
2794
|
# bulk deployment operation, and their current deployment status.
|
2767
2795
|
#
|
@@ -4026,6 +4054,33 @@ module Aws::Greengrass
|
|
4026
4054
|
req.send_request(options)
|
4027
4055
|
end
|
4028
4056
|
|
4057
|
+
# Updates the runtime configuration of a thing.
|
4058
|
+
#
|
4059
|
+
# @option params [Types::TelemetryConfigurationUpdate] :telemetry_configuration
|
4060
|
+
# Configuration settings for running telemetry.
|
4061
|
+
#
|
4062
|
+
# @option params [required, String] :thing_name
|
4063
|
+
#
|
4064
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
4065
|
+
#
|
4066
|
+
# @example Request syntax with placeholder values
|
4067
|
+
#
|
4068
|
+
# resp = client.update_thing_runtime_configuration({
|
4069
|
+
# telemetry_configuration: {
|
4070
|
+
# telemetry: "On", # required, accepts On, Off
|
4071
|
+
# },
|
4072
|
+
# thing_name: "__string", # required
|
4073
|
+
# })
|
4074
|
+
#
|
4075
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/UpdateThingRuntimeConfiguration AWS API Documentation
|
4076
|
+
#
|
4077
|
+
# @overload update_thing_runtime_configuration(params = {})
|
4078
|
+
# @param [Hash] params ({})
|
4079
|
+
def update_thing_runtime_configuration(params = {}, options = {})
|
4080
|
+
req = build_request(:update_thing_runtime_configuration, params)
|
4081
|
+
req.send_request(options)
|
4082
|
+
end
|
4083
|
+
|
4029
4084
|
# @!endgroup
|
4030
4085
|
|
4031
4086
|
# @param params ({})
|
@@ -4039,7 +4094,7 @@ module Aws::Greengrass
|
|
4039
4094
|
params: params,
|
4040
4095
|
config: config)
|
4041
4096
|
context[:gem_name] = 'aws-sdk-greengrass'
|
4042
|
-
context[:gem_version] = '1.
|
4097
|
+
context[:gem_version] = '1.36.0'
|
4043
4098
|
Seahorse::Client::Request.new(handlers, context)
|
4044
4099
|
end
|
4045
4100
|
|
@@ -24,6 +24,7 @@ module Aws::Greengrass
|
|
24
24
|
BulkDeploymentResults = Shapes::ListShape.new(name: 'BulkDeploymentResults')
|
25
25
|
BulkDeploymentStatus = Shapes::StringShape.new(name: 'BulkDeploymentStatus')
|
26
26
|
BulkDeployments = Shapes::ListShape.new(name: 'BulkDeployments')
|
27
|
+
ConfigurationSyncStatus = Shapes::StringShape.new(name: 'ConfigurationSyncStatus')
|
27
28
|
ConnectivityInfo = Shapes::StructureShape.new(name: 'ConnectivityInfo')
|
28
29
|
Connector = Shapes::StructureShape.new(name: 'Connector')
|
29
30
|
ConnectorDefinitionVersion = Shapes::StructureShape.new(name: 'ConnectorDefinitionVersion')
|
@@ -153,6 +154,8 @@ module Aws::Greengrass
|
|
153
154
|
GetSubscriptionDefinitionResponse = Shapes::StructureShape.new(name: 'GetSubscriptionDefinitionResponse')
|
154
155
|
GetSubscriptionDefinitionVersionRequest = Shapes::StructureShape.new(name: 'GetSubscriptionDefinitionVersionRequest')
|
155
156
|
GetSubscriptionDefinitionVersionResponse = Shapes::StructureShape.new(name: 'GetSubscriptionDefinitionVersionResponse')
|
157
|
+
GetThingRuntimeConfigurationRequest = Shapes::StructureShape.new(name: 'GetThingRuntimeConfigurationRequest')
|
158
|
+
GetThingRuntimeConfigurationResponse = Shapes::StructureShape.new(name: 'GetThingRuntimeConfigurationResponse')
|
156
159
|
GroupCertificateAuthorityProperties = Shapes::StructureShape.new(name: 'GroupCertificateAuthorityProperties')
|
157
160
|
GroupCertificateConfiguration = Shapes::StructureShape.new(name: 'GroupCertificateConfiguration')
|
158
161
|
GroupInformation = Shapes::StructureShape.new(name: 'GroupInformation')
|
@@ -218,6 +221,8 @@ module Aws::Greengrass
|
|
218
221
|
ResourceDataContainer = Shapes::StructureShape.new(name: 'ResourceDataContainer')
|
219
222
|
ResourceDefinitionVersion = Shapes::StructureShape.new(name: 'ResourceDefinitionVersion')
|
220
223
|
ResourceDownloadOwnerSetting = Shapes::StructureShape.new(name: 'ResourceDownloadOwnerSetting')
|
224
|
+
RuntimeConfiguration = Shapes::StructureShape.new(name: 'RuntimeConfiguration')
|
225
|
+
RuntimeConfigurationUpdate = Shapes::StructureShape.new(name: 'RuntimeConfigurationUpdate')
|
221
226
|
S3MachineLearningModelResourceData = Shapes::StructureShape.new(name: 'S3MachineLearningModelResourceData')
|
222
227
|
S3UrlSignerRole = Shapes::StringShape.new(name: 'S3UrlSignerRole')
|
223
228
|
SageMakerMachineLearningModelResourceData = Shapes::StructureShape.new(name: 'SageMakerMachineLearningModelResourceData')
|
@@ -231,6 +236,9 @@ module Aws::Greengrass
|
|
231
236
|
SubscriptionDefinitionVersion = Shapes::StructureShape.new(name: 'SubscriptionDefinitionVersion')
|
232
237
|
TagResourceRequest = Shapes::StructureShape.new(name: 'TagResourceRequest')
|
233
238
|
Tags = Shapes::MapShape.new(name: 'Tags')
|
239
|
+
Telemetry = Shapes::StringShape.new(name: 'Telemetry')
|
240
|
+
TelemetryConfiguration = Shapes::StructureShape.new(name: 'TelemetryConfiguration')
|
241
|
+
TelemetryConfigurationUpdate = Shapes::StructureShape.new(name: 'TelemetryConfigurationUpdate')
|
234
242
|
UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
|
235
243
|
UpdateAgentLogLevel = Shapes::StringShape.new(name: 'UpdateAgentLogLevel')
|
236
244
|
UpdateConnectivityInfoRequest = Shapes::StructureShape.new(name: 'UpdateConnectivityInfoRequest')
|
@@ -256,6 +264,8 @@ module Aws::Greengrass
|
|
256
264
|
UpdateTargets = Shapes::ListShape.new(name: 'UpdateTargets')
|
257
265
|
UpdateTargetsArchitecture = Shapes::StringShape.new(name: 'UpdateTargetsArchitecture')
|
258
266
|
UpdateTargetsOperatingSystem = Shapes::StringShape.new(name: 'UpdateTargetsOperatingSystem')
|
267
|
+
UpdateThingRuntimeConfigurationRequest = Shapes::StructureShape.new(name: 'UpdateThingRuntimeConfigurationRequest')
|
268
|
+
UpdateThingRuntimeConfigurationResponse = Shapes::StructureShape.new(name: 'UpdateThingRuntimeConfigurationResponse')
|
259
269
|
VersionInformation = Shapes::StructureShape.new(name: 'VersionInformation')
|
260
270
|
__boolean = Shapes::BooleanShape.new(name: '__boolean')
|
261
271
|
__double = Shapes::FloatShape.new(name: '__double')
|
@@ -982,6 +992,12 @@ module Aws::Greengrass
|
|
982
992
|
GetSubscriptionDefinitionVersionResponse.add_member(:version, Shapes::ShapeRef.new(shape: __string, location_name: "Version"))
|
983
993
|
GetSubscriptionDefinitionVersionResponse.struct_class = Types::GetSubscriptionDefinitionVersionResponse
|
984
994
|
|
995
|
+
GetThingRuntimeConfigurationRequest.add_member(:thing_name, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "ThingName"))
|
996
|
+
GetThingRuntimeConfigurationRequest.struct_class = Types::GetThingRuntimeConfigurationRequest
|
997
|
+
|
998
|
+
GetThingRuntimeConfigurationResponse.add_member(:runtime_configuration, Shapes::ShapeRef.new(shape: RuntimeConfiguration, location_name: "RuntimeConfiguration"))
|
999
|
+
GetThingRuntimeConfigurationResponse.struct_class = Types::GetThingRuntimeConfigurationResponse
|
1000
|
+
|
985
1001
|
GroupCertificateAuthorityProperties.add_member(:group_certificate_authority_arn, Shapes::ShapeRef.new(shape: __string, location_name: "GroupCertificateAuthorityArn"))
|
986
1002
|
GroupCertificateAuthorityProperties.add_member(:group_certificate_authority_id, Shapes::ShapeRef.new(shape: __string, location_name: "GroupCertificateAuthorityId"))
|
987
1003
|
GroupCertificateAuthorityProperties.struct_class = Types::GroupCertificateAuthorityProperties
|
@@ -1250,6 +1266,12 @@ module Aws::Greengrass
|
|
1250
1266
|
ResourceDownloadOwnerSetting.add_member(:group_permission, Shapes::ShapeRef.new(shape: Permission, required: true, location_name: "GroupPermission"))
|
1251
1267
|
ResourceDownloadOwnerSetting.struct_class = Types::ResourceDownloadOwnerSetting
|
1252
1268
|
|
1269
|
+
RuntimeConfiguration.add_member(:telemetry_configuration, Shapes::ShapeRef.new(shape: TelemetryConfiguration, location_name: "TelemetryConfiguration"))
|
1270
|
+
RuntimeConfiguration.struct_class = Types::RuntimeConfiguration
|
1271
|
+
|
1272
|
+
RuntimeConfigurationUpdate.add_member(:telemetry_configuration, Shapes::ShapeRef.new(shape: TelemetryConfigurationUpdate, location_name: "TelemetryConfiguration"))
|
1273
|
+
RuntimeConfigurationUpdate.struct_class = Types::RuntimeConfigurationUpdate
|
1274
|
+
|
1253
1275
|
S3MachineLearningModelResourceData.add_member(:destination_path, Shapes::ShapeRef.new(shape: __string, location_name: "DestinationPath"))
|
1254
1276
|
S3MachineLearningModelResourceData.add_member(:owner_setting, Shapes::ShapeRef.new(shape: ResourceDownloadOwnerSetting, location_name: "OwnerSetting"))
|
1255
1277
|
S3MachineLearningModelResourceData.add_member(:s3_uri, Shapes::ShapeRef.new(shape: __string, location_name: "S3Uri"))
|
@@ -1295,6 +1317,13 @@ module Aws::Greengrass
|
|
1295
1317
|
Tags.key = Shapes::ShapeRef.new(shape: __string)
|
1296
1318
|
Tags.value = Shapes::ShapeRef.new(shape: __string)
|
1297
1319
|
|
1320
|
+
TelemetryConfiguration.add_member(:configuration_sync_status, Shapes::ShapeRef.new(shape: ConfigurationSyncStatus, location_name: "ConfigurationSyncStatus"))
|
1321
|
+
TelemetryConfiguration.add_member(:telemetry, Shapes::ShapeRef.new(shape: Telemetry, required: true, location_name: "Telemetry"))
|
1322
|
+
TelemetryConfiguration.struct_class = Types::TelemetryConfiguration
|
1323
|
+
|
1324
|
+
TelemetryConfigurationUpdate.add_member(:telemetry, Shapes::ShapeRef.new(shape: Telemetry, required: true, location_name: "Telemetry"))
|
1325
|
+
TelemetryConfigurationUpdate.struct_class = Types::TelemetryConfigurationUpdate
|
1326
|
+
|
1298
1327
|
UntagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "resource-arn"))
|
1299
1328
|
UntagResourceRequest.add_member(:tag_keys, Shapes::ShapeRef.new(shape: __listOf__string, required: true, location: "querystring", location_name: "tagKeys"))
|
1300
1329
|
UntagResourceRequest.struct_class = Types::UntagResourceRequest
|
@@ -1366,6 +1395,12 @@ module Aws::Greengrass
|
|
1366
1395
|
|
1367
1396
|
UpdateTargets.member = Shapes::ShapeRef.new(shape: __string)
|
1368
1397
|
|
1398
|
+
UpdateThingRuntimeConfigurationRequest.add_member(:telemetry_configuration, Shapes::ShapeRef.new(shape: TelemetryConfigurationUpdate, location_name: "TelemetryConfiguration"))
|
1399
|
+
UpdateThingRuntimeConfigurationRequest.add_member(:thing_name, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "ThingName"))
|
1400
|
+
UpdateThingRuntimeConfigurationRequest.struct_class = Types::UpdateThingRuntimeConfigurationRequest
|
1401
|
+
|
1402
|
+
UpdateThingRuntimeConfigurationResponse.struct_class = Types::UpdateThingRuntimeConfigurationResponse
|
1403
|
+
|
1369
1404
|
VersionInformation.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "Arn"))
|
1370
1405
|
VersionInformation.add_member(:creation_timestamp, Shapes::ShapeRef.new(shape: __string, location_name: "CreationTimestamp"))
|
1371
1406
|
VersionInformation.add_member(:id, Shapes::ShapeRef.new(shape: __string, location_name: "Id"))
|
@@ -1916,6 +1951,16 @@ module Aws::Greengrass
|
|
1916
1951
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
1917
1952
|
end)
|
1918
1953
|
|
1954
|
+
api.add_operation(:get_thing_runtime_configuration, Seahorse::Model::Operation.new.tap do |o|
|
1955
|
+
o.name = "GetThingRuntimeConfiguration"
|
1956
|
+
o.http_method = "GET"
|
1957
|
+
o.http_request_uri = "/greengrass/things/{ThingName}/runtimeconfig"
|
1958
|
+
o.input = Shapes::ShapeRef.new(shape: GetThingRuntimeConfigurationRequest)
|
1959
|
+
o.output = Shapes::ShapeRef.new(shape: GetThingRuntimeConfigurationResponse)
|
1960
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
1961
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
|
1962
|
+
end)
|
1963
|
+
|
1919
1964
|
api.add_operation(:list_bulk_deployment_detailed_reports, Seahorse::Model::Operation.new.tap do |o|
|
1920
1965
|
o.name = "ListBulkDeploymentDetailedReports"
|
1921
1966
|
o.http_method = "GET"
|
@@ -2234,6 +2279,16 @@ module Aws::Greengrass
|
|
2234
2279
|
o.output = Shapes::ShapeRef.new(shape: UpdateSubscriptionDefinitionResponse)
|
2235
2280
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
2236
2281
|
end)
|
2282
|
+
|
2283
|
+
api.add_operation(:update_thing_runtime_configuration, Seahorse::Model::Operation.new.tap do |o|
|
2284
|
+
o.name = "UpdateThingRuntimeConfiguration"
|
2285
|
+
o.http_method = "PUT"
|
2286
|
+
o.http_request_uri = "/greengrass/things/{ThingName}/runtimeconfig"
|
2287
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateThingRuntimeConfigurationRequest)
|
2288
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateThingRuntimeConfigurationResponse)
|
2289
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
2290
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
|
2291
|
+
end)
|
2237
2292
|
end
|
2238
2293
|
|
2239
2294
|
end
|
@@ -3961,6 +3961,38 @@ module Aws::Greengrass
|
|
3961
3961
|
include Aws::Structure
|
3962
3962
|
end
|
3963
3963
|
|
3964
|
+
# @note When making an API call, you may pass GetThingRuntimeConfigurationRequest
|
3965
|
+
# data as a hash:
|
3966
|
+
#
|
3967
|
+
# {
|
3968
|
+
# thing_name: "__string", # required
|
3969
|
+
# }
|
3970
|
+
#
|
3971
|
+
# @!attribute [rw] thing_name
|
3972
|
+
# @return [String]
|
3973
|
+
#
|
3974
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GetThingRuntimeConfigurationRequest AWS API Documentation
|
3975
|
+
#
|
3976
|
+
class GetThingRuntimeConfigurationRequest < Struct.new(
|
3977
|
+
:thing_name)
|
3978
|
+
SENSITIVE = []
|
3979
|
+
include Aws::Structure
|
3980
|
+
end
|
3981
|
+
|
3982
|
+
# The runtime configuration for a thing.
|
3983
|
+
#
|
3984
|
+
# @!attribute [rw] runtime_configuration
|
3985
|
+
# Runtime configuration for a thing.
|
3986
|
+
# @return [Types::RuntimeConfiguration]
|
3987
|
+
#
|
3988
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/GetThingRuntimeConfigurationResponse AWS API Documentation
|
3989
|
+
#
|
3990
|
+
class GetThingRuntimeConfigurationResponse < Struct.new(
|
3991
|
+
:runtime_configuration)
|
3992
|
+
SENSITIVE = []
|
3993
|
+
include Aws::Structure
|
3994
|
+
end
|
3995
|
+
|
3964
3996
|
# Information about a certificate authority for a group.
|
3965
3997
|
#
|
3966
3998
|
# @!attribute [rw] group_certificate_authority_arn
|
@@ -5519,6 +5551,34 @@ module Aws::Greengrass
|
|
5519
5551
|
include Aws::Structure
|
5520
5552
|
end
|
5521
5553
|
|
5554
|
+
# Runtime configuration for a thing.
|
5555
|
+
#
|
5556
|
+
# @!attribute [rw] telemetry_configuration
|
5557
|
+
# Configuration for telemetry service.
|
5558
|
+
# @return [Types::TelemetryConfiguration]
|
5559
|
+
#
|
5560
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/RuntimeConfiguration AWS API Documentation
|
5561
|
+
#
|
5562
|
+
class RuntimeConfiguration < Struct.new(
|
5563
|
+
:telemetry_configuration)
|
5564
|
+
SENSITIVE = []
|
5565
|
+
include Aws::Structure
|
5566
|
+
end
|
5567
|
+
|
5568
|
+
# Runtime configuration for a thing.
|
5569
|
+
#
|
5570
|
+
# @!attribute [rw] telemetry_configuration
|
5571
|
+
# Configuration for telemetry service.
|
5572
|
+
# @return [Types::TelemetryConfigurationUpdate]
|
5573
|
+
#
|
5574
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/RuntimeConfigurationUpdate AWS API Documentation
|
5575
|
+
#
|
5576
|
+
class RuntimeConfigurationUpdate < Struct.new(
|
5577
|
+
:telemetry_configuration)
|
5578
|
+
SENSITIVE = []
|
5579
|
+
include Aws::Structure
|
5580
|
+
end
|
5581
|
+
|
5522
5582
|
# Attributes that define an Amazon S3 machine learning resource.
|
5523
5583
|
#
|
5524
5584
|
# @note When making an API call, you may pass S3MachineLearningModelResourceData
|
@@ -5818,6 +5878,47 @@ module Aws::Greengrass
|
|
5818
5878
|
include Aws::Structure
|
5819
5879
|
end
|
5820
5880
|
|
5881
|
+
# Configuration settings for running telemetry.
|
5882
|
+
#
|
5883
|
+
# @!attribute [rw] configuration_sync_status
|
5884
|
+
# Synchronization status of the device reported configuration with the
|
5885
|
+
# desired configuration.
|
5886
|
+
# @return [String]
|
5887
|
+
#
|
5888
|
+
# @!attribute [rw] telemetry
|
5889
|
+
# Configure telemetry to be on or off.
|
5890
|
+
# @return [String]
|
5891
|
+
#
|
5892
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/TelemetryConfiguration AWS API Documentation
|
5893
|
+
#
|
5894
|
+
class TelemetryConfiguration < Struct.new(
|
5895
|
+
:configuration_sync_status,
|
5896
|
+
:telemetry)
|
5897
|
+
SENSITIVE = []
|
5898
|
+
include Aws::Structure
|
5899
|
+
end
|
5900
|
+
|
5901
|
+
# Configuration settings for running telemetry.
|
5902
|
+
#
|
5903
|
+
# @note When making an API call, you may pass TelemetryConfigurationUpdate
|
5904
|
+
# data as a hash:
|
5905
|
+
#
|
5906
|
+
# {
|
5907
|
+
# telemetry: "On", # required, accepts On, Off
|
5908
|
+
# }
|
5909
|
+
#
|
5910
|
+
# @!attribute [rw] telemetry
|
5911
|
+
# Configure telemetry to be on or off.
|
5912
|
+
# @return [String]
|
5913
|
+
#
|
5914
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/TelemetryConfigurationUpdate AWS API Documentation
|
5915
|
+
#
|
5916
|
+
class TelemetryConfigurationUpdate < Struct.new(
|
5917
|
+
:telemetry)
|
5918
|
+
SENSITIVE = []
|
5919
|
+
include Aws::Structure
|
5920
|
+
end
|
5921
|
+
|
5821
5922
|
# @note When making an API call, you may pass UntagResourceRequest
|
5822
5923
|
# data as a hash:
|
5823
5924
|
#
|
@@ -6151,6 +6252,36 @@ module Aws::Greengrass
|
|
6151
6252
|
#
|
6152
6253
|
class UpdateSubscriptionDefinitionResponse < Aws::EmptyStructure; end
|
6153
6254
|
|
6255
|
+
# @note When making an API call, you may pass UpdateThingRuntimeConfigurationRequest
|
6256
|
+
# data as a hash:
|
6257
|
+
#
|
6258
|
+
# {
|
6259
|
+
# telemetry_configuration: {
|
6260
|
+
# telemetry: "On", # required, accepts On, Off
|
6261
|
+
# },
|
6262
|
+
# thing_name: "__string", # required
|
6263
|
+
# }
|
6264
|
+
#
|
6265
|
+
# @!attribute [rw] telemetry_configuration
|
6266
|
+
# Configuration settings for running telemetry.
|
6267
|
+
# @return [Types::TelemetryConfigurationUpdate]
|
6268
|
+
#
|
6269
|
+
# @!attribute [rw] thing_name
|
6270
|
+
# @return [String]
|
6271
|
+
#
|
6272
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/UpdateThingRuntimeConfigurationRequest AWS API Documentation
|
6273
|
+
#
|
6274
|
+
class UpdateThingRuntimeConfigurationRequest < Struct.new(
|
6275
|
+
:telemetry_configuration,
|
6276
|
+
:thing_name)
|
6277
|
+
SENSITIVE = []
|
6278
|
+
include Aws::Structure
|
6279
|
+
end
|
6280
|
+
|
6281
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/UpdateThingRuntimeConfigurationResponse AWS API Documentation
|
6282
|
+
#
|
6283
|
+
class UpdateThingRuntimeConfigurationResponse < Aws::EmptyStructure; end
|
6284
|
+
|
6154
6285
|
# Information about a version.
|
6155
6286
|
#
|
6156
6287
|
# @!attribute [rw] arn
|
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.36.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: 2020-09-
|
11
|
+
date: 2020-09-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|