aws-sdk-greengrass 1.33.0 → 1.38.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
  SHA256:
3
- metadata.gz: 2c63d26d95c0388869634b1cffab66d1acf93056c321bb694094f1ec172564d7
4
- data.tar.gz: 6e3610d571f05ab9cf4604e2e65c7422a04fb34bd2b13c5ad006b172968d146e
3
+ metadata.gz: d97648efe8b9d3716a764a2ba384ac3354b6295be8164299de6e1c3d08944e03
4
+ data.tar.gz: acfbf22f33a81eab1a6295686dc629a4b387972ae297cd9cd505655b065947a5
5
5
  SHA512:
6
- metadata.gz: 140416bc3c153bceb82e7901923cd59fbb1b354df38e07e7f9a10e4da31f7e4c6317ef575570fcb5a5d2ae73d127621869929c7a75ad64c9028c25b57541de50
7
- data.tar.gz: 5effac9f8fb2b5bd24aafbebe512d4fd0b39ccc56d7702e2b3053ec32eec5974ec0c96fb69950c7ace639b07ce492250f66acb6ae5a3594dc7d6c889f289eae8
6
+ metadata.gz: f37a16e463f9484ae50a593f3acbc92b934894db06f48e996b93fe26774762385b16f601a59f1364c12558f9a22367319e0a3ea051a39e5bd4c2bb558834dc14
7
+ data.tar.gz: 4db1caf3546e30b76718aac81251ebe28f3a2fb3e704b5195b40bef324919a6e25917689ee98e19a7973a60cad735895b304ce08d22bb33f3bb9fb0a8e5383fc
@@ -7,6 +7,7 @@
7
7
  #
8
8
  # WARNING ABOUT GENERATED CODE
9
9
 
10
+
10
11
  require 'aws-sdk-core'
11
12
  require 'aws-sigv4'
12
13
 
@@ -44,9 +45,9 @@ require_relative 'aws-sdk-greengrass/customizations'
44
45
  #
45
46
  # See {Errors} for more information.
46
47
  #
47
- # @service
48
+ # @!group service
48
49
  module Aws::Greengrass
49
50
 
50
- GEM_VERSION = '1.33.0'
51
+ GEM_VERSION = '1.38.0'
51
52
 
52
53
  end
@@ -85,13 +85,28 @@ module Aws::Greengrass
85
85
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
86
86
  # credentials.
87
87
  #
88
+ # * `Aws::SharedCredentials` - Used for loading static credentials from a
89
+ # shared file, such as `~/.aws/config`.
90
+ #
91
+ # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
92
+ #
93
+ # * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
94
+ # assume a role after providing credentials via the web.
95
+ #
96
+ # * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
97
+ # access token generated from `aws login`.
98
+ #
99
+ # * `Aws::ProcessCredentials` - Used for loading credentials from a
100
+ # process that outputs to stdout.
101
+ #
88
102
  # * `Aws::InstanceProfileCredentials` - Used for loading credentials
89
103
  # from an EC2 IMDS on an EC2 instance.
90
104
  #
91
- # * `Aws::SharedCredentials` - Used for loading credentials from a
92
- # shared file, such as `~/.aws/config`.
105
+ # * `Aws::ECSCredentials` - Used for loading credentials from
106
+ # instances running in ECS.
93
107
  #
94
- # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
108
+ # * `Aws::CognitoIdentityCredentials` - Used for loading credentials
109
+ # from the Cognito Identity service.
95
110
  #
96
111
  # When `:credentials` are not configured directly, the following
97
112
  # locations will be searched for credentials:
@@ -101,10 +116,10 @@ module Aws::Greengrass
101
116
  # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
102
117
  # * `~/.aws/credentials`
103
118
  # * `~/.aws/config`
104
- # * EC2 IMDS instance profile - When used by default, the timeouts are
105
- # very aggressive. Construct and pass an instance of
106
- # `Aws::InstanceProfileCredentails` to enable retries and extended
107
- # timeouts.
119
+ # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
+ # are very aggressive. Construct and pass an instance of
121
+ # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
+ # enable retries and extended timeouts.
108
123
  #
109
124
  # @option options [required, String] :region
110
125
  # The AWS region to connect to. The configured `:region` is
@@ -2747,6 +2762,34 @@ module Aws::Greengrass
2747
2762
  req.send_request(options)
2748
2763
  end
2749
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
+
2750
2793
  # Gets a paginated list of the deployments that have been started in a
2751
2794
  # bulk deployment operation, and their current deployment status.
2752
2795
  #
@@ -4011,6 +4054,33 @@ module Aws::Greengrass
4011
4054
  req.send_request(options)
4012
4055
  end
4013
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
+
4014
4084
  # @!endgroup
4015
4085
 
4016
4086
  # @param params ({})
@@ -4024,7 +4094,7 @@ module Aws::Greengrass
4024
4094
  params: params,
4025
4095
  config: config)
4026
4096
  context[:gem_name] = 'aws-sdk-greengrass'
4027
- context[:gem_version] = '1.33.0'
4097
+ context[:gem_version] = '1.38.0'
4028
4098
  Seahorse::Client::Request.new(handlers, context)
4029
4099
  end
4030
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.33.0
4
+ version: 1.38.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-06-23 00:00:00.000000000 Z
11
+ date: 2021-02-02 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.99.0
22
+ version: 3.112.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.99.0
32
+ version: 3.112.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement