aws-sdk-greengrass 1.28.0 → 1.33.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 +5 -5
- data/lib/aws-sdk-greengrass.rb +9 -4
- data/lib/aws-sdk-greengrass/client.rb +72 -14
- data/lib/aws-sdk-greengrass/client_api.rb +2 -0
- data/lib/aws-sdk-greengrass/errors.rb +26 -2
- data/lib/aws-sdk-greengrass/resource.rb +3 -0
- data/lib/aws-sdk-greengrass/types.rb +207 -0
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 2c63d26d95c0388869634b1cffab66d1acf93056c321bb694094f1ec172564d7
|
4
|
+
data.tar.gz: 6e3610d571f05ab9cf4604e2e65c7422a04fb34bd2b13c5ad006b172968d146e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 140416bc3c153bceb82e7901923cd59fbb1b354df38e07e7f9a10e4da31f7e4c6317ef575570fcb5a5d2ae73d127621869929c7a75ad64c9028c25b57541de50
|
7
|
+
data.tar.gz: 5effac9f8fb2b5bd24aafbebe512d4fd0b39ccc56d7702e2b3053ec32eec5974ec0c96fb69950c7ace639b07ce492250f66acb6ae5a3594dc7d6c889f289eae8
|
data/lib/aws-sdk-greengrass.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,17 +26,20 @@ require_relative 'aws-sdk-greengrass/customizations'
|
|
24
26
|
# methods each accept a hash of request parameters and return a response
|
25
27
|
# structure.
|
26
28
|
#
|
29
|
+
# greengrass = Aws::Greengrass::Client.new
|
30
|
+
# resp = greengrass.associate_role_to_group(params)
|
31
|
+
#
|
27
32
|
# See {Client} for more information.
|
28
33
|
#
|
29
34
|
# # Errors
|
30
35
|
#
|
31
|
-
# Errors returned from AWS Greengrass
|
32
|
-
# extend {Errors::ServiceError}.
|
36
|
+
# Errors returned from AWS Greengrass are defined in the
|
37
|
+
# {Errors} module and all extend {Errors::ServiceError}.
|
33
38
|
#
|
34
39
|
# begin
|
35
40
|
# # do stuff
|
36
41
|
# rescue Aws::Greengrass::Errors::ServiceError
|
37
|
-
# # rescues all
|
42
|
+
# # rescues all AWS Greengrass API errors
|
38
43
|
# end
|
39
44
|
#
|
40
45
|
# See {Errors} for more information.
|
@@ -42,6 +47,6 @@ require_relative 'aws-sdk-greengrass/customizations'
|
|
42
47
|
# @service
|
43
48
|
module Aws::Greengrass
|
44
49
|
|
45
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.33.0'
|
46
51
|
|
47
52
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,12 +26,25 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
29
32
|
|
30
33
|
Aws::Plugins::GlobalConfiguration.add_identifier(:greengrass)
|
31
34
|
|
32
35
|
module Aws::Greengrass
|
36
|
+
# An API client for Greengrass. To construct a client, you need to configure a `:region` and `:credentials`.
|
37
|
+
#
|
38
|
+
# client = Aws::Greengrass::Client.new(
|
39
|
+
# region: region_name,
|
40
|
+
# credentials: credentials,
|
41
|
+
# # ...
|
42
|
+
# )
|
43
|
+
#
|
44
|
+
# For details on configuring region and credentials see
|
45
|
+
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
46
|
+
#
|
47
|
+
# See {#initialize} for a full list of supported configuration options.
|
33
48
|
class Client < Seahorse::Client::Base
|
34
49
|
|
35
50
|
include Aws::ClientStubs
|
@@ -57,6 +72,7 @@ module Aws::Greengrass
|
|
57
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
58
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
59
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
60
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
61
77
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
62
78
|
|
@@ -93,7 +109,7 @@ module Aws::Greengrass
|
|
93
109
|
# @option options [required, String] :region
|
94
110
|
# The AWS region to connect to. The configured `:region` is
|
95
111
|
# used to determine the service `:endpoint`. When not passed,
|
96
|
-
# a default `:region` is
|
112
|
+
# a default `:region` is searched for in the following locations:
|
97
113
|
#
|
98
114
|
# * `Aws.config[:region]`
|
99
115
|
# * `ENV['AWS_REGION']`
|
@@ -108,6 +124,12 @@ module Aws::Greengrass
|
|
108
124
|
# When set to `true`, a thread polling for endpoints will be running in
|
109
125
|
# the background every 60 secs (default). Defaults to `false`.
|
110
126
|
#
|
127
|
+
# @option options [Boolean] :adaptive_retry_wait_to_fill (true)
|
128
|
+
# Used only in `adaptive` retry mode. When true, the request will sleep
|
129
|
+
# until there is sufficent client side capacity to retry the request.
|
130
|
+
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
131
|
+
# not retry instead of sleeping.
|
132
|
+
#
|
111
133
|
# @option options [Boolean] :client_side_monitoring (false)
|
112
134
|
# When `true`, client-side metrics will be collected for all API requests from
|
113
135
|
# this client.
|
@@ -132,6 +154,10 @@ module Aws::Greengrass
|
|
132
154
|
# When `true`, an attempt is made to coerce request parameters into
|
133
155
|
# the required types.
|
134
156
|
#
|
157
|
+
# @option options [Boolean] :correct_clock_skew (true)
|
158
|
+
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
159
|
+
# a clock skew correction and retry requests with skewed client clocks.
|
160
|
+
#
|
135
161
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
136
162
|
# Set to true to disable SDK automatically adding host prefix
|
137
163
|
# to default service endpoint when available.
|
@@ -139,7 +165,7 @@ module Aws::Greengrass
|
|
139
165
|
# @option options [String] :endpoint
|
140
166
|
# The client endpoint is normally constructed from the `:region`
|
141
167
|
# option. You should only configure an `:endpoint` when connecting
|
142
|
-
# to test endpoints. This should be
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
143
169
|
#
|
144
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
145
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -154,7 +180,7 @@ module Aws::Greengrass
|
|
154
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
155
181
|
#
|
156
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
157
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
158
184
|
#
|
159
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
160
186
|
# The log formatter.
|
@@ -166,15 +192,29 @@ module Aws::Greengrass
|
|
166
192
|
# The Logger instance to send log messages to. If this option
|
167
193
|
# is not set, logging will be disabled.
|
168
194
|
#
|
195
|
+
# @option options [Integer] :max_attempts (3)
|
196
|
+
# An integer representing the maximum number attempts that will be made for
|
197
|
+
# a single request, including the initial attempt. For example,
|
198
|
+
# setting this value to 5 will result in a request being retried up to
|
199
|
+
# 4 times. Used in `standard` and `adaptive` retry modes.
|
200
|
+
#
|
169
201
|
# @option options [String] :profile ("default")
|
170
202
|
# Used when loading credentials from the shared credentials file
|
171
203
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
172
204
|
#
|
205
|
+
# @option options [Proc] :retry_backoff
|
206
|
+
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
207
|
+
# This option is only used in the `legacy` retry mode.
|
208
|
+
#
|
173
209
|
# @option options [Float] :retry_base_delay (0.3)
|
174
|
-
# The base delay in seconds used by the default backoff function.
|
210
|
+
# The base delay in seconds used by the default backoff function. This option
|
211
|
+
# is only used in the `legacy` retry mode.
|
175
212
|
#
|
176
213
|
# @option options [Symbol] :retry_jitter (:none)
|
177
|
-
# A delay randomiser function used by the default backoff function.
|
214
|
+
# A delay randomiser function used by the default backoff function.
|
215
|
+
# Some predefined functions can be referenced by name - :none, :equal, :full,
|
216
|
+
# otherwise a Proc that takes and returns a number. This option is only used
|
217
|
+
# in the `legacy` retry mode.
|
178
218
|
#
|
179
219
|
# @see https://www.awsarchitectureblog.com/2015/03/backoff.html
|
180
220
|
#
|
@@ -182,11 +222,30 @@ module Aws::Greengrass
|
|
182
222
|
# The maximum number of times to retry failed requests. Only
|
183
223
|
# ~ 500 level server errors and certain ~ 400 level client errors
|
184
224
|
# are retried. Generally, these are throttling errors, data
|
185
|
-
# checksum errors, networking errors, timeout errors
|
186
|
-
# errors from expired credentials.
|
225
|
+
# checksum errors, networking errors, timeout errors, auth errors,
|
226
|
+
# endpoint discovery, and errors from expired credentials.
|
227
|
+
# This option is only used in the `legacy` retry mode.
|
187
228
|
#
|
188
229
|
# @option options [Integer] :retry_max_delay (0)
|
189
|
-
# The maximum number of seconds to delay between retries (0 for no limit)
|
230
|
+
# The maximum number of seconds to delay between retries (0 for no limit)
|
231
|
+
# used by the default backoff function. This option is only used in the
|
232
|
+
# `legacy` retry mode.
|
233
|
+
#
|
234
|
+
# @option options [String] :retry_mode ("legacy")
|
235
|
+
# Specifies which retry algorithm to use. Values are:
|
236
|
+
#
|
237
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
238
|
+
# no retry mode is provided.
|
239
|
+
#
|
240
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
241
|
+
# This includes support for retry quotas, which limit the number of
|
242
|
+
# unsuccessful retries a client can make.
|
243
|
+
#
|
244
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
245
|
+
# functionality of `standard` mode along with automatic client side
|
246
|
+
# throttling. This is a provisional mode that may change behavior
|
247
|
+
# in the future.
|
248
|
+
#
|
190
249
|
#
|
191
250
|
# @option options [String] :secret_access_key
|
192
251
|
#
|
@@ -209,16 +268,15 @@ module Aws::Greengrass
|
|
209
268
|
# requests through. Formatted like 'http://proxy.com:123'.
|
210
269
|
#
|
211
270
|
# @option options [Float] :http_open_timeout (15) The number of
|
212
|
-
# seconds to wait when opening a HTTP session before
|
271
|
+
# seconds to wait when opening a HTTP session before raising a
|
213
272
|
# `Timeout::Error`.
|
214
273
|
#
|
215
274
|
# @option options [Integer] :http_read_timeout (60) The default
|
216
275
|
# number of seconds to wait for response data. This value can
|
217
|
-
# safely be set
|
218
|
-
# per-request on the session yeidled by {#session_for}.
|
276
|
+
# safely be set per-request on the session.
|
219
277
|
#
|
220
278
|
# @option options [Float] :http_idle_timeout (5) The number of
|
221
|
-
# seconds a connection is allowed to sit
|
279
|
+
# seconds a connection is allowed to sit idle before it is
|
222
280
|
# considered stale. Stale connections are closed and removed
|
223
281
|
# from the pool before making a request.
|
224
282
|
#
|
@@ -227,7 +285,7 @@ module Aws::Greengrass
|
|
227
285
|
# request body. This option has no effect unless the request has
|
228
286
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
229
287
|
# disables this behaviour. This value can safely be set per
|
230
|
-
# request on the session
|
288
|
+
# request on the session.
|
231
289
|
#
|
232
290
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
233
291
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -3966,7 +4024,7 @@ module Aws::Greengrass
|
|
3966
4024
|
params: params,
|
3967
4025
|
config: config)
|
3968
4026
|
context[:gem_name] = 'aws-sdk-greengrass'
|
3969
|
-
context[:gem_version] = '1.
|
4027
|
+
context[:gem_version] = '1.33.0'
|
3970
4028
|
Seahorse::Client::Request.new(handlers, context)
|
3971
4029
|
end
|
3972
4030
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -6,6 +8,30 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::Greengrass
|
11
|
+
|
12
|
+
# When Greengrass returns an error response, the Ruby SDK constructs and raises an error.
|
13
|
+
# These errors all extend Aws::Greengrass::Errors::ServiceError < {Aws::Errors::ServiceError}
|
14
|
+
#
|
15
|
+
# You can rescue all Greengrass errors using ServiceError:
|
16
|
+
#
|
17
|
+
# begin
|
18
|
+
# # do stuff
|
19
|
+
# rescue Aws::Greengrass::Errors::ServiceError
|
20
|
+
# # rescues all Greengrass API errors
|
21
|
+
# end
|
22
|
+
#
|
23
|
+
#
|
24
|
+
# ## Request Context
|
25
|
+
# ServiceError objects have a {Aws::Errors::ServiceError#context #context} method that returns
|
26
|
+
# information about the request that generated the error.
|
27
|
+
# See {Seahorse::Client::RequestContext} for more information.
|
28
|
+
#
|
29
|
+
# ## Error Classes
|
30
|
+
# * {BadRequestException}
|
31
|
+
# * {InternalServerErrorException}
|
32
|
+
#
|
33
|
+
# Additionally, error classes are dynamically generated for service errors based on the error code
|
34
|
+
# if they are not defined above.
|
9
35
|
module Errors
|
10
36
|
|
11
37
|
extend Aws::Errors::DynamicErrors
|
@@ -28,7 +54,6 @@ module Aws::Greengrass
|
|
28
54
|
def message
|
29
55
|
@message || @data[:message]
|
30
56
|
end
|
31
|
-
|
32
57
|
end
|
33
58
|
|
34
59
|
class InternalServerErrorException < ServiceError
|
@@ -49,7 +74,6 @@ module Aws::Greengrass
|
|
49
74
|
def message
|
50
75
|
@message || @data[:message]
|
51
76
|
end
|
52
|
-
|
53
77
|
end
|
54
78
|
|
55
79
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -6,6 +8,7 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::Greengrass
|
11
|
+
|
9
12
|
class Resource
|
10
13
|
|
11
14
|
# @param options ({})
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -29,6 +31,7 @@ module Aws::Greengrass
|
|
29
31
|
class AssociateRoleToGroupRequest < Struct.new(
|
30
32
|
:group_id,
|
31
33
|
:role_arn)
|
34
|
+
SENSITIVE = []
|
32
35
|
include Aws::Structure
|
33
36
|
end
|
34
37
|
|
@@ -41,6 +44,7 @@ module Aws::Greengrass
|
|
41
44
|
#
|
42
45
|
class AssociateRoleToGroupResponse < Struct.new(
|
43
46
|
:associated_at)
|
47
|
+
SENSITIVE = []
|
44
48
|
include Aws::Structure
|
45
49
|
end
|
46
50
|
|
@@ -59,6 +63,7 @@ module Aws::Greengrass
|
|
59
63
|
#
|
60
64
|
class AssociateServiceRoleToAccountRequest < Struct.new(
|
61
65
|
:role_arn)
|
66
|
+
SENSITIVE = []
|
62
67
|
include Aws::Structure
|
63
68
|
end
|
64
69
|
|
@@ -70,6 +75,7 @@ module Aws::Greengrass
|
|
70
75
|
#
|
71
76
|
class AssociateServiceRoleToAccountResponse < Struct.new(
|
72
77
|
:associated_at)
|
78
|
+
SENSITIVE = []
|
73
79
|
include Aws::Structure
|
74
80
|
end
|
75
81
|
|
@@ -87,6 +93,7 @@ module Aws::Greengrass
|
|
87
93
|
class BadRequestException < Struct.new(
|
88
94
|
:error_details,
|
89
95
|
:message)
|
96
|
+
SENSITIVE = []
|
90
97
|
include Aws::Structure
|
91
98
|
end
|
92
99
|
|
@@ -112,6 +119,7 @@ module Aws::Greengrass
|
|
112
119
|
:bulk_deployment_arn,
|
113
120
|
:bulk_deployment_id,
|
114
121
|
:created_at)
|
122
|
+
SENSITIVE = []
|
115
123
|
include Aws::Structure
|
116
124
|
end
|
117
125
|
|
@@ -143,6 +151,7 @@ module Aws::Greengrass
|
|
143
151
|
:invalid_input_records,
|
144
152
|
:records_processed,
|
145
153
|
:retry_attempts)
|
154
|
+
SENSITIVE = []
|
146
155
|
include Aws::Structure
|
147
156
|
end
|
148
157
|
|
@@ -193,6 +202,7 @@ module Aws::Greengrass
|
|
193
202
|
:error_details,
|
194
203
|
:error_message,
|
195
204
|
:group_arn)
|
205
|
+
SENSITIVE = []
|
196
206
|
include Aws::Structure
|
197
207
|
end
|
198
208
|
|
@@ -231,6 +241,7 @@ module Aws::Greengrass
|
|
231
241
|
:id,
|
232
242
|
:metadata,
|
233
243
|
:port_number)
|
244
|
+
SENSITIVE = []
|
234
245
|
include Aws::Structure
|
235
246
|
end
|
236
247
|
|
@@ -269,6 +280,7 @@ module Aws::Greengrass
|
|
269
280
|
:connector_arn,
|
270
281
|
:id,
|
271
282
|
:parameters)
|
283
|
+
SENSITIVE = []
|
272
284
|
include Aws::Structure
|
273
285
|
end
|
274
286
|
|
@@ -299,6 +311,7 @@ module Aws::Greengrass
|
|
299
311
|
#
|
300
312
|
class ConnectorDefinitionVersion < Struct.new(
|
301
313
|
:connectors)
|
314
|
+
SENSITIVE = []
|
302
315
|
include Aws::Structure
|
303
316
|
end
|
304
317
|
|
@@ -340,6 +353,7 @@ module Aws::Greengrass
|
|
340
353
|
:id,
|
341
354
|
:sync_shadow,
|
342
355
|
:thing_arn)
|
356
|
+
SENSITIVE = []
|
343
357
|
include Aws::Structure
|
344
358
|
end
|
345
359
|
|
@@ -367,6 +381,7 @@ module Aws::Greengrass
|
|
367
381
|
#
|
368
382
|
class CoreDefinitionVersion < Struct.new(
|
369
383
|
:cores)
|
384
|
+
SENSITIVE = []
|
370
385
|
include Aws::Structure
|
371
386
|
end
|
372
387
|
|
@@ -414,6 +429,7 @@ module Aws::Greengrass
|
|
414
429
|
:initial_version,
|
415
430
|
:name,
|
416
431
|
:tags)
|
432
|
+
SENSITIVE = []
|
417
433
|
include Aws::Structure
|
418
434
|
end
|
419
435
|
|
@@ -448,6 +464,7 @@ module Aws::Greengrass
|
|
448
464
|
:latest_version,
|
449
465
|
:latest_version_arn,
|
450
466
|
:name)
|
467
|
+
SENSITIVE = []
|
451
468
|
include Aws::Structure
|
452
469
|
end
|
453
470
|
|
@@ -483,6 +500,7 @@ module Aws::Greengrass
|
|
483
500
|
:amzn_client_token,
|
484
501
|
:connector_definition_id,
|
485
502
|
:connectors)
|
503
|
+
SENSITIVE = []
|
486
504
|
include Aws::Structure
|
487
505
|
end
|
488
506
|
|
@@ -505,6 +523,7 @@ module Aws::Greengrass
|
|
505
523
|
:creation_timestamp,
|
506
524
|
:id,
|
507
525
|
:version)
|
526
|
+
SENSITIVE = []
|
508
527
|
include Aws::Structure
|
509
528
|
end
|
510
529
|
|
@@ -550,6 +569,7 @@ module Aws::Greengrass
|
|
550
569
|
:initial_version,
|
551
570
|
:name,
|
552
571
|
:tags)
|
572
|
+
SENSITIVE = []
|
553
573
|
include Aws::Structure
|
554
574
|
end
|
555
575
|
|
@@ -584,6 +604,7 @@ module Aws::Greengrass
|
|
584
604
|
:latest_version,
|
585
605
|
:latest_version_arn,
|
586
606
|
:name)
|
607
|
+
SENSITIVE = []
|
587
608
|
include Aws::Structure
|
588
609
|
end
|
589
610
|
|
@@ -618,6 +639,7 @@ module Aws::Greengrass
|
|
618
639
|
:amzn_client_token,
|
619
640
|
:core_definition_id,
|
620
641
|
:cores)
|
642
|
+
SENSITIVE = []
|
621
643
|
include Aws::Structure
|
622
644
|
end
|
623
645
|
|
@@ -640,6 +662,7 @@ module Aws::Greengrass
|
|
640
662
|
:creation_timestamp,
|
641
663
|
:id,
|
642
664
|
:version)
|
665
|
+
SENSITIVE = []
|
643
666
|
include Aws::Structure
|
644
667
|
end
|
645
668
|
|
@@ -684,6 +707,7 @@ module Aws::Greengrass
|
|
684
707
|
:deployment_type,
|
685
708
|
:group_id,
|
686
709
|
:group_version_id)
|
710
|
+
SENSITIVE = []
|
687
711
|
include Aws::Structure
|
688
712
|
end
|
689
713
|
|
@@ -700,6 +724,7 @@ module Aws::Greengrass
|
|
700
724
|
class CreateDeploymentResponse < Struct.new(
|
701
725
|
:deployment_arn,
|
702
726
|
:deployment_id)
|
727
|
+
SENSITIVE = []
|
703
728
|
include Aws::Structure
|
704
729
|
end
|
705
730
|
|
@@ -745,6 +770,7 @@ module Aws::Greengrass
|
|
745
770
|
:initial_version,
|
746
771
|
:name,
|
747
772
|
:tags)
|
773
|
+
SENSITIVE = []
|
748
774
|
include Aws::Structure
|
749
775
|
end
|
750
776
|
|
@@ -779,6 +805,7 @@ module Aws::Greengrass
|
|
779
805
|
:latest_version,
|
780
806
|
:latest_version_arn,
|
781
807
|
:name)
|
808
|
+
SENSITIVE = []
|
782
809
|
include Aws::Structure
|
783
810
|
end
|
784
811
|
|
@@ -813,6 +840,7 @@ module Aws::Greengrass
|
|
813
840
|
:amzn_client_token,
|
814
841
|
:device_definition_id,
|
815
842
|
:devices)
|
843
|
+
SENSITIVE = []
|
816
844
|
include Aws::Structure
|
817
845
|
end
|
818
846
|
|
@@ -835,6 +863,7 @@ module Aws::Greengrass
|
|
835
863
|
:creation_timestamp,
|
836
864
|
:id,
|
837
865
|
:version)
|
866
|
+
SENSITIVE = []
|
838
867
|
include Aws::Structure
|
839
868
|
end
|
840
869
|
|
@@ -914,6 +943,7 @@ module Aws::Greengrass
|
|
914
943
|
:initial_version,
|
915
944
|
:name,
|
916
945
|
:tags)
|
946
|
+
SENSITIVE = []
|
917
947
|
include Aws::Structure
|
918
948
|
end
|
919
949
|
|
@@ -948,6 +978,7 @@ module Aws::Greengrass
|
|
948
978
|
:latest_version,
|
949
979
|
:latest_version_arn,
|
950
980
|
:name)
|
981
|
+
SENSITIVE = []
|
951
982
|
include Aws::Structure
|
952
983
|
end
|
953
984
|
|
@@ -1022,6 +1053,7 @@ module Aws::Greengrass
|
|
1022
1053
|
:default_config,
|
1023
1054
|
:function_definition_id,
|
1024
1055
|
:functions)
|
1056
|
+
SENSITIVE = []
|
1025
1057
|
include Aws::Structure
|
1026
1058
|
end
|
1027
1059
|
|
@@ -1044,6 +1076,7 @@ module Aws::Greengrass
|
|
1044
1076
|
:creation_timestamp,
|
1045
1077
|
:id,
|
1046
1078
|
:version)
|
1079
|
+
SENSITIVE = []
|
1047
1080
|
include Aws::Structure
|
1048
1081
|
end
|
1049
1082
|
|
@@ -1066,6 +1099,7 @@ module Aws::Greengrass
|
|
1066
1099
|
class CreateGroupCertificateAuthorityRequest < Struct.new(
|
1067
1100
|
:amzn_client_token,
|
1068
1101
|
:group_id)
|
1102
|
+
SENSITIVE = []
|
1069
1103
|
include Aws::Structure
|
1070
1104
|
end
|
1071
1105
|
|
@@ -1077,6 +1111,7 @@ module Aws::Greengrass
|
|
1077
1111
|
#
|
1078
1112
|
class CreateGroupCertificateAuthorityResponse < Struct.new(
|
1079
1113
|
:group_certificate_authority_arn)
|
1114
|
+
SENSITIVE = []
|
1080
1115
|
include Aws::Structure
|
1081
1116
|
end
|
1082
1117
|
|
@@ -1121,6 +1156,7 @@ module Aws::Greengrass
|
|
1121
1156
|
:initial_version,
|
1122
1157
|
:name,
|
1123
1158
|
:tags)
|
1159
|
+
SENSITIVE = []
|
1124
1160
|
include Aws::Structure
|
1125
1161
|
end
|
1126
1162
|
|
@@ -1155,6 +1191,7 @@ module Aws::Greengrass
|
|
1155
1191
|
:latest_version,
|
1156
1192
|
:latest_version_arn,
|
1157
1193
|
:name)
|
1194
|
+
SENSITIVE = []
|
1158
1195
|
include Aws::Structure
|
1159
1196
|
end
|
1160
1197
|
|
@@ -1212,6 +1249,7 @@ module Aws::Greengrass
|
|
1212
1249
|
:logger_definition_version_arn,
|
1213
1250
|
:resource_definition_version_arn,
|
1214
1251
|
:subscription_definition_version_arn)
|
1252
|
+
SENSITIVE = []
|
1215
1253
|
include Aws::Structure
|
1216
1254
|
end
|
1217
1255
|
|
@@ -1234,6 +1272,7 @@ module Aws::Greengrass
|
|
1234
1272
|
:creation_timestamp,
|
1235
1273
|
:id,
|
1236
1274
|
:version)
|
1275
|
+
SENSITIVE = []
|
1237
1276
|
include Aws::Structure
|
1238
1277
|
end
|
1239
1278
|
|
@@ -1280,6 +1319,7 @@ module Aws::Greengrass
|
|
1280
1319
|
:initial_version,
|
1281
1320
|
:name,
|
1282
1321
|
:tags)
|
1322
|
+
SENSITIVE = []
|
1283
1323
|
include Aws::Structure
|
1284
1324
|
end
|
1285
1325
|
|
@@ -1314,6 +1354,7 @@ module Aws::Greengrass
|
|
1314
1354
|
:latest_version,
|
1315
1355
|
:latest_version_arn,
|
1316
1356
|
:name)
|
1357
|
+
SENSITIVE = []
|
1317
1358
|
include Aws::Structure
|
1318
1359
|
end
|
1319
1360
|
|
@@ -1349,6 +1390,7 @@ module Aws::Greengrass
|
|
1349
1390
|
:amzn_client_token,
|
1350
1391
|
:logger_definition_id,
|
1351
1392
|
:loggers)
|
1393
|
+
SENSITIVE = []
|
1352
1394
|
include Aws::Structure
|
1353
1395
|
end
|
1354
1396
|
|
@@ -1371,6 +1413,7 @@ module Aws::Greengrass
|
|
1371
1413
|
:creation_timestamp,
|
1372
1414
|
:id,
|
1373
1415
|
:version)
|
1416
|
+
SENSITIVE = []
|
1374
1417
|
include Aws::Structure
|
1375
1418
|
end
|
1376
1419
|
|
@@ -1451,6 +1494,7 @@ module Aws::Greengrass
|
|
1451
1494
|
:initial_version,
|
1452
1495
|
:name,
|
1453
1496
|
:tags)
|
1497
|
+
SENSITIVE = []
|
1454
1498
|
include Aws::Structure
|
1455
1499
|
end
|
1456
1500
|
|
@@ -1485,6 +1529,7 @@ module Aws::Greengrass
|
|
1485
1529
|
:latest_version,
|
1486
1530
|
:latest_version_arn,
|
1487
1531
|
:name)
|
1532
|
+
SENSITIVE = []
|
1488
1533
|
include Aws::Structure
|
1489
1534
|
end
|
1490
1535
|
|
@@ -1554,6 +1599,7 @@ module Aws::Greengrass
|
|
1554
1599
|
:amzn_client_token,
|
1555
1600
|
:resource_definition_id,
|
1556
1601
|
:resources)
|
1602
|
+
SENSITIVE = []
|
1557
1603
|
include Aws::Structure
|
1558
1604
|
end
|
1559
1605
|
|
@@ -1576,6 +1622,7 @@ module Aws::Greengrass
|
|
1576
1622
|
:creation_timestamp,
|
1577
1623
|
:id,
|
1578
1624
|
:version)
|
1625
|
+
SENSITIVE = []
|
1579
1626
|
include Aws::Structure
|
1580
1627
|
end
|
1581
1628
|
|
@@ -1635,6 +1682,7 @@ module Aws::Greengrass
|
|
1635
1682
|
:update_targets,
|
1636
1683
|
:update_targets_architecture,
|
1637
1684
|
:update_targets_operating_system)
|
1685
|
+
SENSITIVE = []
|
1638
1686
|
include Aws::Structure
|
1639
1687
|
end
|
1640
1688
|
|
@@ -1657,6 +1705,7 @@ module Aws::Greengrass
|
|
1657
1705
|
:iot_job_arn,
|
1658
1706
|
:iot_job_id,
|
1659
1707
|
:platform_software_version)
|
1708
|
+
SENSITIVE = []
|
1660
1709
|
include Aws::Structure
|
1661
1710
|
end
|
1662
1711
|
|
@@ -1702,6 +1751,7 @@ module Aws::Greengrass
|
|
1702
1751
|
:initial_version,
|
1703
1752
|
:name,
|
1704
1753
|
:tags)
|
1754
|
+
SENSITIVE = []
|
1705
1755
|
include Aws::Structure
|
1706
1756
|
end
|
1707
1757
|
|
@@ -1736,6 +1786,7 @@ module Aws::Greengrass
|
|
1736
1786
|
:latest_version,
|
1737
1787
|
:latest_version_arn,
|
1738
1788
|
:name)
|
1789
|
+
SENSITIVE = []
|
1739
1790
|
include Aws::Structure
|
1740
1791
|
end
|
1741
1792
|
|
@@ -1770,6 +1821,7 @@ module Aws::Greengrass
|
|
1770
1821
|
:amzn_client_token,
|
1771
1822
|
:subscription_definition_id,
|
1772
1823
|
:subscriptions)
|
1824
|
+
SENSITIVE = []
|
1773
1825
|
include Aws::Structure
|
1774
1826
|
end
|
1775
1827
|
|
@@ -1792,6 +1844,7 @@ module Aws::Greengrass
|
|
1792
1844
|
:creation_timestamp,
|
1793
1845
|
:id,
|
1794
1846
|
:version)
|
1847
|
+
SENSITIVE = []
|
1795
1848
|
include Aws::Structure
|
1796
1849
|
end
|
1797
1850
|
|
@@ -1842,6 +1895,7 @@ module Aws::Greengrass
|
|
1842
1895
|
:latest_version_arn,
|
1843
1896
|
:name,
|
1844
1897
|
:tags)
|
1898
|
+
SENSITIVE = []
|
1845
1899
|
include Aws::Structure
|
1846
1900
|
end
|
1847
1901
|
|
@@ -1859,6 +1913,7 @@ module Aws::Greengrass
|
|
1859
1913
|
#
|
1860
1914
|
class DeleteConnectorDefinitionRequest < Struct.new(
|
1861
1915
|
:connector_definition_id)
|
1916
|
+
SENSITIVE = []
|
1862
1917
|
include Aws::Structure
|
1863
1918
|
end
|
1864
1919
|
|
@@ -1880,6 +1935,7 @@ module Aws::Greengrass
|
|
1880
1935
|
#
|
1881
1936
|
class DeleteCoreDefinitionRequest < Struct.new(
|
1882
1937
|
:core_definition_id)
|
1938
|
+
SENSITIVE = []
|
1883
1939
|
include Aws::Structure
|
1884
1940
|
end
|
1885
1941
|
|
@@ -1901,6 +1957,7 @@ module Aws::Greengrass
|
|
1901
1957
|
#
|
1902
1958
|
class DeleteDeviceDefinitionRequest < Struct.new(
|
1903
1959
|
:device_definition_id)
|
1960
|
+
SENSITIVE = []
|
1904
1961
|
include Aws::Structure
|
1905
1962
|
end
|
1906
1963
|
|
@@ -1922,6 +1979,7 @@ module Aws::Greengrass
|
|
1922
1979
|
#
|
1923
1980
|
class DeleteFunctionDefinitionRequest < Struct.new(
|
1924
1981
|
:function_definition_id)
|
1982
|
+
SENSITIVE = []
|
1925
1983
|
include Aws::Structure
|
1926
1984
|
end
|
1927
1985
|
|
@@ -1943,6 +2001,7 @@ module Aws::Greengrass
|
|
1943
2001
|
#
|
1944
2002
|
class DeleteGroupRequest < Struct.new(
|
1945
2003
|
:group_id)
|
2004
|
+
SENSITIVE = []
|
1946
2005
|
include Aws::Structure
|
1947
2006
|
end
|
1948
2007
|
|
@@ -1964,6 +2023,7 @@ module Aws::Greengrass
|
|
1964
2023
|
#
|
1965
2024
|
class DeleteLoggerDefinitionRequest < Struct.new(
|
1966
2025
|
:logger_definition_id)
|
2026
|
+
SENSITIVE = []
|
1967
2027
|
include Aws::Structure
|
1968
2028
|
end
|
1969
2029
|
|
@@ -1985,6 +2045,7 @@ module Aws::Greengrass
|
|
1985
2045
|
#
|
1986
2046
|
class DeleteResourceDefinitionRequest < Struct.new(
|
1987
2047
|
:resource_definition_id)
|
2048
|
+
SENSITIVE = []
|
1988
2049
|
include Aws::Structure
|
1989
2050
|
end
|
1990
2051
|
|
@@ -2006,6 +2067,7 @@ module Aws::Greengrass
|
|
2006
2067
|
#
|
2007
2068
|
class DeleteSubscriptionDefinitionRequest < Struct.new(
|
2008
2069
|
:subscription_definition_id)
|
2070
|
+
SENSITIVE = []
|
2009
2071
|
include Aws::Structure
|
2010
2072
|
end
|
2011
2073
|
|
@@ -2044,6 +2106,7 @@ module Aws::Greengrass
|
|
2044
2106
|
:deployment_id,
|
2045
2107
|
:deployment_type,
|
2046
2108
|
:group_arn)
|
2109
|
+
SENSITIVE = []
|
2047
2110
|
include Aws::Structure
|
2048
2111
|
end
|
2049
2112
|
|
@@ -2085,6 +2148,7 @@ module Aws::Greengrass
|
|
2085
2148
|
:id,
|
2086
2149
|
:sync_shadow,
|
2087
2150
|
:thing_arn)
|
2151
|
+
SENSITIVE = []
|
2088
2152
|
include Aws::Structure
|
2089
2153
|
end
|
2090
2154
|
|
@@ -2112,6 +2176,7 @@ module Aws::Greengrass
|
|
2112
2176
|
#
|
2113
2177
|
class DeviceDefinitionVersion < Struct.new(
|
2114
2178
|
:devices)
|
2179
|
+
SENSITIVE = []
|
2115
2180
|
include Aws::Structure
|
2116
2181
|
end
|
2117
2182
|
|
@@ -2129,6 +2194,7 @@ module Aws::Greengrass
|
|
2129
2194
|
#
|
2130
2195
|
class DisassociateRoleFromGroupRequest < Struct.new(
|
2131
2196
|
:group_id)
|
2197
|
+
SENSITIVE = []
|
2132
2198
|
include Aws::Structure
|
2133
2199
|
end
|
2134
2200
|
|
@@ -2141,6 +2207,7 @@ module Aws::Greengrass
|
|
2141
2207
|
#
|
2142
2208
|
class DisassociateRoleFromGroupResponse < Struct.new(
|
2143
2209
|
:disassociated_at)
|
2210
|
+
SENSITIVE = []
|
2144
2211
|
include Aws::Structure
|
2145
2212
|
end
|
2146
2213
|
|
@@ -2158,6 +2225,7 @@ module Aws::Greengrass
|
|
2158
2225
|
#
|
2159
2226
|
class DisassociateServiceRoleFromAccountResponse < Struct.new(
|
2160
2227
|
:disassociated_at)
|
2228
|
+
SENSITIVE = []
|
2161
2229
|
include Aws::Structure
|
2162
2230
|
end
|
2163
2231
|
|
@@ -2182,6 +2250,7 @@ module Aws::Greengrass
|
|
2182
2250
|
class ErrorDetail < Struct.new(
|
2183
2251
|
:detailed_error_code,
|
2184
2252
|
:detailed_error_message)
|
2253
|
+
SENSITIVE = []
|
2185
2254
|
include Aws::Structure
|
2186
2255
|
end
|
2187
2256
|
|
@@ -2242,6 +2311,7 @@ module Aws::Greengrass
|
|
2242
2311
|
:function_arn,
|
2243
2312
|
:function_configuration,
|
2244
2313
|
:id)
|
2314
|
+
SENSITIVE = []
|
2245
2315
|
include Aws::Structure
|
2246
2316
|
end
|
2247
2317
|
|
@@ -2322,6 +2392,7 @@ module Aws::Greengrass
|
|
2322
2392
|
:memory_size,
|
2323
2393
|
:pinned,
|
2324
2394
|
:timeout)
|
2395
|
+
SENSITIVE = []
|
2325
2396
|
include Aws::Structure
|
2326
2397
|
end
|
2327
2398
|
|
@@ -2379,6 +2450,7 @@ module Aws::Greengrass
|
|
2379
2450
|
:execution,
|
2380
2451
|
:resource_access_policies,
|
2381
2452
|
:variables)
|
2453
|
+
SENSITIVE = []
|
2382
2454
|
include Aws::Structure
|
2383
2455
|
end
|
2384
2456
|
|
@@ -2406,6 +2478,7 @@ module Aws::Greengrass
|
|
2406
2478
|
#
|
2407
2479
|
class FunctionDefaultConfig < Struct.new(
|
2408
2480
|
:execution)
|
2481
|
+
SENSITIVE = []
|
2409
2482
|
include Aws::Structure
|
2410
2483
|
end
|
2411
2484
|
|
@@ -2446,6 +2519,7 @@ module Aws::Greengrass
|
|
2446
2519
|
class FunctionDefaultExecutionConfig < Struct.new(
|
2447
2520
|
:isolation_mode,
|
2448
2521
|
:run_as)
|
2522
|
+
SENSITIVE = []
|
2449
2523
|
include Aws::Structure
|
2450
2524
|
end
|
2451
2525
|
|
@@ -2514,6 +2588,7 @@ module Aws::Greengrass
|
|
2514
2588
|
class FunctionDefinitionVersion < Struct.new(
|
2515
2589
|
:default_config,
|
2516
2590
|
:functions)
|
2591
|
+
SENSITIVE = []
|
2517
2592
|
include Aws::Structure
|
2518
2593
|
end
|
2519
2594
|
|
@@ -2554,6 +2629,7 @@ module Aws::Greengrass
|
|
2554
2629
|
class FunctionExecutionConfig < Struct.new(
|
2555
2630
|
:isolation_mode,
|
2556
2631
|
:run_as)
|
2632
|
+
SENSITIVE = []
|
2557
2633
|
include Aws::Structure
|
2558
2634
|
end
|
2559
2635
|
|
@@ -2587,6 +2663,7 @@ module Aws::Greengrass
|
|
2587
2663
|
class FunctionRunAsConfig < Struct.new(
|
2588
2664
|
:gid,
|
2589
2665
|
:uid)
|
2666
|
+
SENSITIVE = []
|
2590
2667
|
include Aws::Structure
|
2591
2668
|
end
|
2592
2669
|
|
@@ -2605,6 +2682,7 @@ module Aws::Greengrass
|
|
2605
2682
|
class GeneralError < Struct.new(
|
2606
2683
|
:error_details,
|
2607
2684
|
:message)
|
2685
|
+
SENSITIVE = []
|
2608
2686
|
include Aws::Structure
|
2609
2687
|
end
|
2610
2688
|
|
@@ -2622,6 +2700,7 @@ module Aws::Greengrass
|
|
2622
2700
|
#
|
2623
2701
|
class GetAssociatedRoleRequest < Struct.new(
|
2624
2702
|
:group_id)
|
2703
|
+
SENSITIVE = []
|
2625
2704
|
include Aws::Structure
|
2626
2705
|
end
|
2627
2706
|
|
@@ -2638,6 +2717,7 @@ module Aws::Greengrass
|
|
2638
2717
|
class GetAssociatedRoleResponse < Struct.new(
|
2639
2718
|
:associated_at,
|
2640
2719
|
:role_arn)
|
2720
|
+
SENSITIVE = []
|
2641
2721
|
include Aws::Structure
|
2642
2722
|
end
|
2643
2723
|
|
@@ -2655,6 +2735,7 @@ module Aws::Greengrass
|
|
2655
2735
|
#
|
2656
2736
|
class GetBulkDeploymentStatusRequest < Struct.new(
|
2657
2737
|
:bulk_deployment_id)
|
2738
|
+
SENSITIVE = []
|
2658
2739
|
include Aws::Structure
|
2659
2740
|
end
|
2660
2741
|
|
@@ -2694,6 +2775,7 @@ module Aws::Greengrass
|
|
2694
2775
|
:error_details,
|
2695
2776
|
:error_message,
|
2696
2777
|
:tags)
|
2778
|
+
SENSITIVE = []
|
2697
2779
|
include Aws::Structure
|
2698
2780
|
end
|
2699
2781
|
|
@@ -2711,6 +2793,7 @@ module Aws::Greengrass
|
|
2711
2793
|
#
|
2712
2794
|
class GetConnectivityInfoRequest < Struct.new(
|
2713
2795
|
:thing_name)
|
2796
|
+
SENSITIVE = []
|
2714
2797
|
include Aws::Structure
|
2715
2798
|
end
|
2716
2799
|
|
@@ -2729,6 +2812,7 @@ module Aws::Greengrass
|
|
2729
2812
|
class GetConnectivityInfoResponse < Struct.new(
|
2730
2813
|
:connectivity_info,
|
2731
2814
|
:message)
|
2815
|
+
SENSITIVE = []
|
2732
2816
|
include Aws::Structure
|
2733
2817
|
end
|
2734
2818
|
|
@@ -2746,6 +2830,7 @@ module Aws::Greengrass
|
|
2746
2830
|
#
|
2747
2831
|
class GetConnectorDefinitionRequest < Struct.new(
|
2748
2832
|
:connector_definition_id)
|
2833
|
+
SENSITIVE = []
|
2749
2834
|
include Aws::Structure
|
2750
2835
|
end
|
2751
2836
|
|
@@ -2785,6 +2870,7 @@ module Aws::Greengrass
|
|
2785
2870
|
:latest_version_arn,
|
2786
2871
|
:name,
|
2787
2872
|
:tags)
|
2873
|
+
SENSITIVE = []
|
2788
2874
|
include Aws::Structure
|
2789
2875
|
end
|
2790
2876
|
|
@@ -2812,6 +2898,7 @@ module Aws::Greengrass
|
|
2812
2898
|
:connector_definition_id,
|
2813
2899
|
:connector_definition_version_id,
|
2814
2900
|
:next_token)
|
2901
|
+
SENSITIVE = []
|
2815
2902
|
include Aws::Structure
|
2816
2903
|
end
|
2817
2904
|
|
@@ -2852,6 +2939,7 @@ module Aws::Greengrass
|
|
2852
2939
|
:id,
|
2853
2940
|
:next_token,
|
2854
2941
|
:version)
|
2942
|
+
SENSITIVE = []
|
2855
2943
|
include Aws::Structure
|
2856
2944
|
end
|
2857
2945
|
|
@@ -2869,6 +2957,7 @@ module Aws::Greengrass
|
|
2869
2957
|
#
|
2870
2958
|
class GetCoreDefinitionRequest < Struct.new(
|
2871
2959
|
:core_definition_id)
|
2960
|
+
SENSITIVE = []
|
2872
2961
|
include Aws::Structure
|
2873
2962
|
end
|
2874
2963
|
|
@@ -2908,6 +2997,7 @@ module Aws::Greengrass
|
|
2908
2997
|
:latest_version_arn,
|
2909
2998
|
:name,
|
2910
2999
|
:tags)
|
3000
|
+
SENSITIVE = []
|
2911
3001
|
include Aws::Structure
|
2912
3002
|
end
|
2913
3003
|
|
@@ -2930,6 +3020,7 @@ module Aws::Greengrass
|
|
2930
3020
|
class GetCoreDefinitionVersionRequest < Struct.new(
|
2931
3021
|
:core_definition_id,
|
2932
3022
|
:core_definition_version_id)
|
3023
|
+
SENSITIVE = []
|
2933
3024
|
include Aws::Structure
|
2934
3025
|
end
|
2935
3026
|
|
@@ -2968,6 +3059,7 @@ module Aws::Greengrass
|
|
2968
3059
|
:id,
|
2969
3060
|
:next_token,
|
2970
3061
|
:version)
|
3062
|
+
SENSITIVE = []
|
2971
3063
|
include Aws::Structure
|
2972
3064
|
end
|
2973
3065
|
|
@@ -2990,6 +3082,7 @@ module Aws::Greengrass
|
|
2990
3082
|
class GetDeploymentStatusRequest < Struct.new(
|
2991
3083
|
:deployment_id,
|
2992
3084
|
:group_id)
|
3085
|
+
SENSITIVE = []
|
2993
3086
|
include Aws::Structure
|
2994
3087
|
end
|
2995
3088
|
|
@@ -3025,6 +3118,7 @@ module Aws::Greengrass
|
|
3025
3118
|
:error_details,
|
3026
3119
|
:error_message,
|
3027
3120
|
:updated_at)
|
3121
|
+
SENSITIVE = []
|
3028
3122
|
include Aws::Structure
|
3029
3123
|
end
|
3030
3124
|
|
@@ -3042,6 +3136,7 @@ module Aws::Greengrass
|
|
3042
3136
|
#
|
3043
3137
|
class GetDeviceDefinitionRequest < Struct.new(
|
3044
3138
|
:device_definition_id)
|
3139
|
+
SENSITIVE = []
|
3045
3140
|
include Aws::Structure
|
3046
3141
|
end
|
3047
3142
|
|
@@ -3081,6 +3176,7 @@ module Aws::Greengrass
|
|
3081
3176
|
:latest_version_arn,
|
3082
3177
|
:name,
|
3083
3178
|
:tags)
|
3179
|
+
SENSITIVE = []
|
3084
3180
|
include Aws::Structure
|
3085
3181
|
end
|
3086
3182
|
|
@@ -3108,6 +3204,7 @@ module Aws::Greengrass
|
|
3108
3204
|
:device_definition_id,
|
3109
3205
|
:device_definition_version_id,
|
3110
3206
|
:next_token)
|
3207
|
+
SENSITIVE = []
|
3111
3208
|
include Aws::Structure
|
3112
3209
|
end
|
3113
3210
|
|
@@ -3146,6 +3243,7 @@ module Aws::Greengrass
|
|
3146
3243
|
:id,
|
3147
3244
|
:next_token,
|
3148
3245
|
:version)
|
3246
|
+
SENSITIVE = []
|
3149
3247
|
include Aws::Structure
|
3150
3248
|
end
|
3151
3249
|
|
@@ -3163,6 +3261,7 @@ module Aws::Greengrass
|
|
3163
3261
|
#
|
3164
3262
|
class GetFunctionDefinitionRequest < Struct.new(
|
3165
3263
|
:function_definition_id)
|
3264
|
+
SENSITIVE = []
|
3166
3265
|
include Aws::Structure
|
3167
3266
|
end
|
3168
3267
|
|
@@ -3202,6 +3301,7 @@ module Aws::Greengrass
|
|
3202
3301
|
:latest_version_arn,
|
3203
3302
|
:name,
|
3204
3303
|
:tags)
|
3304
|
+
SENSITIVE = []
|
3205
3305
|
include Aws::Structure
|
3206
3306
|
end
|
3207
3307
|
|
@@ -3229,6 +3329,7 @@ module Aws::Greengrass
|
|
3229
3329
|
:function_definition_id,
|
3230
3330
|
:function_definition_version_id,
|
3231
3331
|
:next_token)
|
3332
|
+
SENSITIVE = []
|
3232
3333
|
include Aws::Structure
|
3233
3334
|
end
|
3234
3335
|
|
@@ -3269,6 +3370,7 @@ module Aws::Greengrass
|
|
3269
3370
|
:id,
|
3270
3371
|
:next_token,
|
3271
3372
|
:version)
|
3373
|
+
SENSITIVE = []
|
3272
3374
|
include Aws::Structure
|
3273
3375
|
end
|
3274
3376
|
|
@@ -3291,6 +3393,7 @@ module Aws::Greengrass
|
|
3291
3393
|
class GetGroupCertificateAuthorityRequest < Struct.new(
|
3292
3394
|
:certificate_authority_id,
|
3293
3395
|
:group_id)
|
3396
|
+
SENSITIVE = []
|
3294
3397
|
include Aws::Structure
|
3295
3398
|
end
|
3296
3399
|
|
@@ -3314,6 +3417,7 @@ module Aws::Greengrass
|
|
3314
3417
|
:group_certificate_authority_arn,
|
3315
3418
|
:group_certificate_authority_id,
|
3316
3419
|
:pem_encoded_certificate)
|
3420
|
+
SENSITIVE = []
|
3317
3421
|
include Aws::Structure
|
3318
3422
|
end
|
3319
3423
|
|
@@ -3331,6 +3435,7 @@ module Aws::Greengrass
|
|
3331
3435
|
#
|
3332
3436
|
class GetGroupCertificateConfigurationRequest < Struct.new(
|
3333
3437
|
:group_id)
|
3438
|
+
SENSITIVE = []
|
3334
3439
|
include Aws::Structure
|
3335
3440
|
end
|
3336
3441
|
|
@@ -3349,6 +3454,7 @@ module Aws::Greengrass
|
|
3349
3454
|
:certificate_authority_expiry_in_milliseconds,
|
3350
3455
|
:certificate_expiry_in_milliseconds,
|
3351
3456
|
:group_id)
|
3457
|
+
SENSITIVE = []
|
3352
3458
|
include Aws::Structure
|
3353
3459
|
end
|
3354
3460
|
|
@@ -3366,6 +3472,7 @@ module Aws::Greengrass
|
|
3366
3472
|
#
|
3367
3473
|
class GetGroupRequest < Struct.new(
|
3368
3474
|
:group_id)
|
3475
|
+
SENSITIVE = []
|
3369
3476
|
include Aws::Structure
|
3370
3477
|
end
|
3371
3478
|
|
@@ -3405,6 +3512,7 @@ module Aws::Greengrass
|
|
3405
3512
|
:latest_version_arn,
|
3406
3513
|
:name,
|
3407
3514
|
:tags)
|
3515
|
+
SENSITIVE = []
|
3408
3516
|
include Aws::Structure
|
3409
3517
|
end
|
3410
3518
|
|
@@ -3427,6 +3535,7 @@ module Aws::Greengrass
|
|
3427
3535
|
class GetGroupVersionRequest < Struct.new(
|
3428
3536
|
:group_id,
|
3429
3537
|
:group_version_id)
|
3538
|
+
SENSITIVE = []
|
3430
3539
|
include Aws::Structure
|
3431
3540
|
end
|
3432
3541
|
|
@@ -3461,6 +3570,7 @@ module Aws::Greengrass
|
|
3461
3570
|
:definition,
|
3462
3571
|
:id,
|
3463
3572
|
:version)
|
3573
|
+
SENSITIVE = []
|
3464
3574
|
include Aws::Structure
|
3465
3575
|
end
|
3466
3576
|
|
@@ -3478,6 +3588,7 @@ module Aws::Greengrass
|
|
3478
3588
|
#
|
3479
3589
|
class GetLoggerDefinitionRequest < Struct.new(
|
3480
3590
|
:logger_definition_id)
|
3591
|
+
SENSITIVE = []
|
3481
3592
|
include Aws::Structure
|
3482
3593
|
end
|
3483
3594
|
|
@@ -3517,6 +3628,7 @@ module Aws::Greengrass
|
|
3517
3628
|
:latest_version_arn,
|
3518
3629
|
:name,
|
3519
3630
|
:tags)
|
3631
|
+
SENSITIVE = []
|
3520
3632
|
include Aws::Structure
|
3521
3633
|
end
|
3522
3634
|
|
@@ -3544,6 +3656,7 @@ module Aws::Greengrass
|
|
3544
3656
|
:logger_definition_id,
|
3545
3657
|
:logger_definition_version_id,
|
3546
3658
|
:next_token)
|
3659
|
+
SENSITIVE = []
|
3547
3660
|
include Aws::Structure
|
3548
3661
|
end
|
3549
3662
|
|
@@ -3578,6 +3691,7 @@ module Aws::Greengrass
|
|
3578
3691
|
:definition,
|
3579
3692
|
:id,
|
3580
3693
|
:version)
|
3694
|
+
SENSITIVE = []
|
3581
3695
|
include Aws::Structure
|
3582
3696
|
end
|
3583
3697
|
|
@@ -3595,6 +3709,7 @@ module Aws::Greengrass
|
|
3595
3709
|
#
|
3596
3710
|
class GetResourceDefinitionRequest < Struct.new(
|
3597
3711
|
:resource_definition_id)
|
3712
|
+
SENSITIVE = []
|
3598
3713
|
include Aws::Structure
|
3599
3714
|
end
|
3600
3715
|
|
@@ -3634,6 +3749,7 @@ module Aws::Greengrass
|
|
3634
3749
|
:latest_version_arn,
|
3635
3750
|
:name,
|
3636
3751
|
:tags)
|
3752
|
+
SENSITIVE = []
|
3637
3753
|
include Aws::Structure
|
3638
3754
|
end
|
3639
3755
|
|
@@ -3656,6 +3772,7 @@ module Aws::Greengrass
|
|
3656
3772
|
class GetResourceDefinitionVersionRequest < Struct.new(
|
3657
3773
|
:resource_definition_id,
|
3658
3774
|
:resource_definition_version_id)
|
3775
|
+
SENSITIVE = []
|
3659
3776
|
include Aws::Structure
|
3660
3777
|
end
|
3661
3778
|
|
@@ -3690,6 +3807,7 @@ module Aws::Greengrass
|
|
3690
3807
|
:definition,
|
3691
3808
|
:id,
|
3692
3809
|
:version)
|
3810
|
+
SENSITIVE = []
|
3693
3811
|
include Aws::Structure
|
3694
3812
|
end
|
3695
3813
|
|
@@ -3712,6 +3830,7 @@ module Aws::Greengrass
|
|
3712
3830
|
class GetServiceRoleForAccountResponse < Struct.new(
|
3713
3831
|
:associated_at,
|
3714
3832
|
:role_arn)
|
3833
|
+
SENSITIVE = []
|
3715
3834
|
include Aws::Structure
|
3716
3835
|
end
|
3717
3836
|
|
@@ -3729,6 +3848,7 @@ module Aws::Greengrass
|
|
3729
3848
|
#
|
3730
3849
|
class GetSubscriptionDefinitionRequest < Struct.new(
|
3731
3850
|
:subscription_definition_id)
|
3851
|
+
SENSITIVE = []
|
3732
3852
|
include Aws::Structure
|
3733
3853
|
end
|
3734
3854
|
|
@@ -3768,6 +3888,7 @@ module Aws::Greengrass
|
|
3768
3888
|
:latest_version_arn,
|
3769
3889
|
:name,
|
3770
3890
|
:tags)
|
3891
|
+
SENSITIVE = []
|
3771
3892
|
include Aws::Structure
|
3772
3893
|
end
|
3773
3894
|
|
@@ -3795,6 +3916,7 @@ module Aws::Greengrass
|
|
3795
3916
|
:next_token,
|
3796
3917
|
:subscription_definition_id,
|
3797
3918
|
:subscription_definition_version_id)
|
3919
|
+
SENSITIVE = []
|
3798
3920
|
include Aws::Structure
|
3799
3921
|
end
|
3800
3922
|
|
@@ -3835,6 +3957,7 @@ module Aws::Greengrass
|
|
3835
3957
|
:id,
|
3836
3958
|
:next_token,
|
3837
3959
|
:version)
|
3960
|
+
SENSITIVE = []
|
3838
3961
|
include Aws::Structure
|
3839
3962
|
end
|
3840
3963
|
|
@@ -3853,6 +3976,7 @@ module Aws::Greengrass
|
|
3853
3976
|
class GroupCertificateAuthorityProperties < Struct.new(
|
3854
3977
|
:group_certificate_authority_arn,
|
3855
3978
|
:group_certificate_authority_id)
|
3979
|
+
SENSITIVE = []
|
3856
3980
|
include Aws::Structure
|
3857
3981
|
end
|
3858
3982
|
|
@@ -3878,6 +4002,7 @@ module Aws::Greengrass
|
|
3878
4002
|
:certificate_authority_expiry_in_milliseconds,
|
3879
4003
|
:certificate_expiry_in_milliseconds,
|
3880
4004
|
:group_id)
|
4005
|
+
SENSITIVE = []
|
3881
4006
|
include Aws::Structure
|
3882
4007
|
end
|
3883
4008
|
|
@@ -3923,6 +4048,7 @@ module Aws::Greengrass
|
|
3923
4048
|
:latest_version,
|
3924
4049
|
:latest_version_arn,
|
3925
4050
|
:name)
|
4051
|
+
SENSITIVE = []
|
3926
4052
|
include Aws::Structure
|
3927
4053
|
end
|
3928
4054
|
|
@@ -3953,6 +4079,7 @@ module Aws::Greengrass
|
|
3953
4079
|
class GroupOwnerSetting < Struct.new(
|
3954
4080
|
:auto_add_group_owner,
|
3955
4081
|
:group_owner)
|
4082
|
+
SENSITIVE = []
|
3956
4083
|
include Aws::Structure
|
3957
4084
|
end
|
3958
4085
|
|
@@ -4009,6 +4136,7 @@ module Aws::Greengrass
|
|
4009
4136
|
:logger_definition_version_arn,
|
4010
4137
|
:resource_definition_version_arn,
|
4011
4138
|
:subscription_definition_version_arn)
|
4139
|
+
SENSITIVE = []
|
4012
4140
|
include Aws::Structure
|
4013
4141
|
end
|
4014
4142
|
|
@@ -4026,6 +4154,7 @@ module Aws::Greengrass
|
|
4026
4154
|
class InternalServerErrorException < Struct.new(
|
4027
4155
|
:error_details,
|
4028
4156
|
:message)
|
4157
|
+
SENSITIVE = []
|
4029
4158
|
include Aws::Structure
|
4030
4159
|
end
|
4031
4160
|
|
@@ -4053,6 +4182,7 @@ module Aws::Greengrass
|
|
4053
4182
|
:bulk_deployment_id,
|
4054
4183
|
:max_results,
|
4055
4184
|
:next_token)
|
4185
|
+
SENSITIVE = []
|
4056
4186
|
include Aws::Structure
|
4057
4187
|
end
|
4058
4188
|
|
@@ -4071,6 +4201,7 @@ module Aws::Greengrass
|
|
4071
4201
|
class ListBulkDeploymentDetailedReportsResponse < Struct.new(
|
4072
4202
|
:deployments,
|
4073
4203
|
:next_token)
|
4204
|
+
SENSITIVE = []
|
4074
4205
|
include Aws::Structure
|
4075
4206
|
end
|
4076
4207
|
|
@@ -4093,6 +4224,7 @@ module Aws::Greengrass
|
|
4093
4224
|
class ListBulkDeploymentsRequest < Struct.new(
|
4094
4225
|
:max_results,
|
4095
4226
|
:next_token)
|
4227
|
+
SENSITIVE = []
|
4096
4228
|
include Aws::Structure
|
4097
4229
|
end
|
4098
4230
|
|
@@ -4110,6 +4242,7 @@ module Aws::Greengrass
|
|
4110
4242
|
class ListBulkDeploymentsResponse < Struct.new(
|
4111
4243
|
:bulk_deployments,
|
4112
4244
|
:next_token)
|
4245
|
+
SENSITIVE = []
|
4113
4246
|
include Aws::Structure
|
4114
4247
|
end
|
4115
4248
|
|
@@ -4137,6 +4270,7 @@ module Aws::Greengrass
|
|
4137
4270
|
:connector_definition_id,
|
4138
4271
|
:max_results,
|
4139
4272
|
:next_token)
|
4273
|
+
SENSITIVE = []
|
4140
4274
|
include Aws::Structure
|
4141
4275
|
end
|
4142
4276
|
|
@@ -4151,6 +4285,7 @@ module Aws::Greengrass
|
|
4151
4285
|
class ListConnectorDefinitionVersionsResponse < Struct.new(
|
4152
4286
|
:next_token,
|
4153
4287
|
:versions)
|
4288
|
+
SENSITIVE = []
|
4154
4289
|
include Aws::Structure
|
4155
4290
|
end
|
4156
4291
|
|
@@ -4173,6 +4308,7 @@ module Aws::Greengrass
|
|
4173
4308
|
class ListConnectorDefinitionsRequest < Struct.new(
|
4174
4309
|
:max_results,
|
4175
4310
|
:next_token)
|
4311
|
+
SENSITIVE = []
|
4176
4312
|
include Aws::Structure
|
4177
4313
|
end
|
4178
4314
|
|
@@ -4187,6 +4323,7 @@ module Aws::Greengrass
|
|
4187
4323
|
class ListConnectorDefinitionsResponse < Struct.new(
|
4188
4324
|
:definitions,
|
4189
4325
|
:next_token)
|
4326
|
+
SENSITIVE = []
|
4190
4327
|
include Aws::Structure
|
4191
4328
|
end
|
4192
4329
|
|
@@ -4214,6 +4351,7 @@ module Aws::Greengrass
|
|
4214
4351
|
:core_definition_id,
|
4215
4352
|
:max_results,
|
4216
4353
|
:next_token)
|
4354
|
+
SENSITIVE = []
|
4217
4355
|
include Aws::Structure
|
4218
4356
|
end
|
4219
4357
|
|
@@ -4228,6 +4366,7 @@ module Aws::Greengrass
|
|
4228
4366
|
class ListCoreDefinitionVersionsResponse < Struct.new(
|
4229
4367
|
:next_token,
|
4230
4368
|
:versions)
|
4369
|
+
SENSITIVE = []
|
4231
4370
|
include Aws::Structure
|
4232
4371
|
end
|
4233
4372
|
|
@@ -4250,6 +4389,7 @@ module Aws::Greengrass
|
|
4250
4389
|
class ListCoreDefinitionsRequest < Struct.new(
|
4251
4390
|
:max_results,
|
4252
4391
|
:next_token)
|
4392
|
+
SENSITIVE = []
|
4253
4393
|
include Aws::Structure
|
4254
4394
|
end
|
4255
4395
|
|
@@ -4264,6 +4404,7 @@ module Aws::Greengrass
|
|
4264
4404
|
class ListCoreDefinitionsResponse < Struct.new(
|
4265
4405
|
:definitions,
|
4266
4406
|
:next_token)
|
4407
|
+
SENSITIVE = []
|
4267
4408
|
include Aws::Structure
|
4268
4409
|
end
|
4269
4410
|
|
@@ -4283,6 +4424,7 @@ module Aws::Greengrass
|
|
4283
4424
|
class ListDefinitionsResponse < Struct.new(
|
4284
4425
|
:definitions,
|
4285
4426
|
:next_token)
|
4427
|
+
SENSITIVE = []
|
4286
4428
|
include Aws::Structure
|
4287
4429
|
end
|
4288
4430
|
|
@@ -4310,6 +4452,7 @@ module Aws::Greengrass
|
|
4310
4452
|
:group_id,
|
4311
4453
|
:max_results,
|
4312
4454
|
:next_token)
|
4455
|
+
SENSITIVE = []
|
4313
4456
|
include Aws::Structure
|
4314
4457
|
end
|
4315
4458
|
|
@@ -4327,6 +4470,7 @@ module Aws::Greengrass
|
|
4327
4470
|
class ListDeploymentsResponse < Struct.new(
|
4328
4471
|
:deployments,
|
4329
4472
|
:next_token)
|
4473
|
+
SENSITIVE = []
|
4330
4474
|
include Aws::Structure
|
4331
4475
|
end
|
4332
4476
|
|
@@ -4354,6 +4498,7 @@ module Aws::Greengrass
|
|
4354
4498
|
:device_definition_id,
|
4355
4499
|
:max_results,
|
4356
4500
|
:next_token)
|
4501
|
+
SENSITIVE = []
|
4357
4502
|
include Aws::Structure
|
4358
4503
|
end
|
4359
4504
|
|
@@ -4368,6 +4513,7 @@ module Aws::Greengrass
|
|
4368
4513
|
class ListDeviceDefinitionVersionsResponse < Struct.new(
|
4369
4514
|
:next_token,
|
4370
4515
|
:versions)
|
4516
|
+
SENSITIVE = []
|
4371
4517
|
include Aws::Structure
|
4372
4518
|
end
|
4373
4519
|
|
@@ -4390,6 +4536,7 @@ module Aws::Greengrass
|
|
4390
4536
|
class ListDeviceDefinitionsRequest < Struct.new(
|
4391
4537
|
:max_results,
|
4392
4538
|
:next_token)
|
4539
|
+
SENSITIVE = []
|
4393
4540
|
include Aws::Structure
|
4394
4541
|
end
|
4395
4542
|
|
@@ -4404,6 +4551,7 @@ module Aws::Greengrass
|
|
4404
4551
|
class ListDeviceDefinitionsResponse < Struct.new(
|
4405
4552
|
:definitions,
|
4406
4553
|
:next_token)
|
4554
|
+
SENSITIVE = []
|
4407
4555
|
include Aws::Structure
|
4408
4556
|
end
|
4409
4557
|
|
@@ -4431,6 +4579,7 @@ module Aws::Greengrass
|
|
4431
4579
|
:function_definition_id,
|
4432
4580
|
:max_results,
|
4433
4581
|
:next_token)
|
4582
|
+
SENSITIVE = []
|
4434
4583
|
include Aws::Structure
|
4435
4584
|
end
|
4436
4585
|
|
@@ -4445,6 +4594,7 @@ module Aws::Greengrass
|
|
4445
4594
|
class ListFunctionDefinitionVersionsResponse < Struct.new(
|
4446
4595
|
:next_token,
|
4447
4596
|
:versions)
|
4597
|
+
SENSITIVE = []
|
4448
4598
|
include Aws::Structure
|
4449
4599
|
end
|
4450
4600
|
|
@@ -4467,6 +4617,7 @@ module Aws::Greengrass
|
|
4467
4617
|
class ListFunctionDefinitionsRequest < Struct.new(
|
4468
4618
|
:max_results,
|
4469
4619
|
:next_token)
|
4620
|
+
SENSITIVE = []
|
4470
4621
|
include Aws::Structure
|
4471
4622
|
end
|
4472
4623
|
|
@@ -4481,6 +4632,7 @@ module Aws::Greengrass
|
|
4481
4632
|
class ListFunctionDefinitionsResponse < Struct.new(
|
4482
4633
|
:definitions,
|
4483
4634
|
:next_token)
|
4635
|
+
SENSITIVE = []
|
4484
4636
|
include Aws::Structure
|
4485
4637
|
end
|
4486
4638
|
|
@@ -4498,6 +4650,7 @@ module Aws::Greengrass
|
|
4498
4650
|
#
|
4499
4651
|
class ListGroupCertificateAuthoritiesRequest < Struct.new(
|
4500
4652
|
:group_id)
|
4653
|
+
SENSITIVE = []
|
4501
4654
|
include Aws::Structure
|
4502
4655
|
end
|
4503
4656
|
|
@@ -4509,6 +4662,7 @@ module Aws::Greengrass
|
|
4509
4662
|
#
|
4510
4663
|
class ListGroupCertificateAuthoritiesResponse < Struct.new(
|
4511
4664
|
:group_certificate_authorities)
|
4665
|
+
SENSITIVE = []
|
4512
4666
|
include Aws::Structure
|
4513
4667
|
end
|
4514
4668
|
|
@@ -4536,6 +4690,7 @@ module Aws::Greengrass
|
|
4536
4690
|
:group_id,
|
4537
4691
|
:max_results,
|
4538
4692
|
:next_token)
|
4693
|
+
SENSITIVE = []
|
4539
4694
|
include Aws::Structure
|
4540
4695
|
end
|
4541
4696
|
|
@@ -4550,6 +4705,7 @@ module Aws::Greengrass
|
|
4550
4705
|
class ListGroupVersionsResponse < Struct.new(
|
4551
4706
|
:next_token,
|
4552
4707
|
:versions)
|
4708
|
+
SENSITIVE = []
|
4553
4709
|
include Aws::Structure
|
4554
4710
|
end
|
4555
4711
|
|
@@ -4572,6 +4728,7 @@ module Aws::Greengrass
|
|
4572
4728
|
class ListGroupsRequest < Struct.new(
|
4573
4729
|
:max_results,
|
4574
4730
|
:next_token)
|
4731
|
+
SENSITIVE = []
|
4575
4732
|
include Aws::Structure
|
4576
4733
|
end
|
4577
4734
|
|
@@ -4589,6 +4746,7 @@ module Aws::Greengrass
|
|
4589
4746
|
class ListGroupsResponse < Struct.new(
|
4590
4747
|
:groups,
|
4591
4748
|
:next_token)
|
4749
|
+
SENSITIVE = []
|
4592
4750
|
include Aws::Structure
|
4593
4751
|
end
|
4594
4752
|
|
@@ -4616,6 +4774,7 @@ module Aws::Greengrass
|
|
4616
4774
|
:logger_definition_id,
|
4617
4775
|
:max_results,
|
4618
4776
|
:next_token)
|
4777
|
+
SENSITIVE = []
|
4619
4778
|
include Aws::Structure
|
4620
4779
|
end
|
4621
4780
|
|
@@ -4630,6 +4789,7 @@ module Aws::Greengrass
|
|
4630
4789
|
class ListLoggerDefinitionVersionsResponse < Struct.new(
|
4631
4790
|
:next_token,
|
4632
4791
|
:versions)
|
4792
|
+
SENSITIVE = []
|
4633
4793
|
include Aws::Structure
|
4634
4794
|
end
|
4635
4795
|
|
@@ -4652,6 +4812,7 @@ module Aws::Greengrass
|
|
4652
4812
|
class ListLoggerDefinitionsRequest < Struct.new(
|
4653
4813
|
:max_results,
|
4654
4814
|
:next_token)
|
4815
|
+
SENSITIVE = []
|
4655
4816
|
include Aws::Structure
|
4656
4817
|
end
|
4657
4818
|
|
@@ -4666,6 +4827,7 @@ module Aws::Greengrass
|
|
4666
4827
|
class ListLoggerDefinitionsResponse < Struct.new(
|
4667
4828
|
:definitions,
|
4668
4829
|
:next_token)
|
4830
|
+
SENSITIVE = []
|
4669
4831
|
include Aws::Structure
|
4670
4832
|
end
|
4671
4833
|
|
@@ -4693,6 +4855,7 @@ module Aws::Greengrass
|
|
4693
4855
|
:max_results,
|
4694
4856
|
:next_token,
|
4695
4857
|
:resource_definition_id)
|
4858
|
+
SENSITIVE = []
|
4696
4859
|
include Aws::Structure
|
4697
4860
|
end
|
4698
4861
|
|
@@ -4707,6 +4870,7 @@ module Aws::Greengrass
|
|
4707
4870
|
class ListResourceDefinitionVersionsResponse < Struct.new(
|
4708
4871
|
:next_token,
|
4709
4872
|
:versions)
|
4873
|
+
SENSITIVE = []
|
4710
4874
|
include Aws::Structure
|
4711
4875
|
end
|
4712
4876
|
|
@@ -4729,6 +4893,7 @@ module Aws::Greengrass
|
|
4729
4893
|
class ListResourceDefinitionsRequest < Struct.new(
|
4730
4894
|
:max_results,
|
4731
4895
|
:next_token)
|
4896
|
+
SENSITIVE = []
|
4732
4897
|
include Aws::Structure
|
4733
4898
|
end
|
4734
4899
|
|
@@ -4743,6 +4908,7 @@ module Aws::Greengrass
|
|
4743
4908
|
class ListResourceDefinitionsResponse < Struct.new(
|
4744
4909
|
:definitions,
|
4745
4910
|
:next_token)
|
4911
|
+
SENSITIVE = []
|
4746
4912
|
include Aws::Structure
|
4747
4913
|
end
|
4748
4914
|
|
@@ -4770,6 +4936,7 @@ module Aws::Greengrass
|
|
4770
4936
|
:max_results,
|
4771
4937
|
:next_token,
|
4772
4938
|
:subscription_definition_id)
|
4939
|
+
SENSITIVE = []
|
4773
4940
|
include Aws::Structure
|
4774
4941
|
end
|
4775
4942
|
|
@@ -4784,6 +4951,7 @@ module Aws::Greengrass
|
|
4784
4951
|
class ListSubscriptionDefinitionVersionsResponse < Struct.new(
|
4785
4952
|
:next_token,
|
4786
4953
|
:versions)
|
4954
|
+
SENSITIVE = []
|
4787
4955
|
include Aws::Structure
|
4788
4956
|
end
|
4789
4957
|
|
@@ -4806,6 +4974,7 @@ module Aws::Greengrass
|
|
4806
4974
|
class ListSubscriptionDefinitionsRequest < Struct.new(
|
4807
4975
|
:max_results,
|
4808
4976
|
:next_token)
|
4977
|
+
SENSITIVE = []
|
4809
4978
|
include Aws::Structure
|
4810
4979
|
end
|
4811
4980
|
|
@@ -4820,6 +4989,7 @@ module Aws::Greengrass
|
|
4820
4989
|
class ListSubscriptionDefinitionsResponse < Struct.new(
|
4821
4990
|
:definitions,
|
4822
4991
|
:next_token)
|
4992
|
+
SENSITIVE = []
|
4823
4993
|
include Aws::Structure
|
4824
4994
|
end
|
4825
4995
|
|
@@ -4837,6 +5007,7 @@ module Aws::Greengrass
|
|
4837
5007
|
#
|
4838
5008
|
class ListTagsForResourceRequest < Struct.new(
|
4839
5009
|
:resource_arn)
|
5010
|
+
SENSITIVE = []
|
4840
5011
|
include Aws::Structure
|
4841
5012
|
end
|
4842
5013
|
|
@@ -4848,6 +5019,7 @@ module Aws::Greengrass
|
|
4848
5019
|
#
|
4849
5020
|
class ListTagsForResourceResponse < Struct.new(
|
4850
5021
|
:tags)
|
5022
|
+
SENSITIVE = []
|
4851
5023
|
include Aws::Structure
|
4852
5024
|
end
|
4853
5025
|
|
@@ -4867,6 +5039,7 @@ module Aws::Greengrass
|
|
4867
5039
|
class ListVersionsResponse < Struct.new(
|
4868
5040
|
:next_token,
|
4869
5041
|
:versions)
|
5042
|
+
SENSITIVE = []
|
4870
5043
|
include Aws::Structure
|
4871
5044
|
end
|
4872
5045
|
|
@@ -4898,6 +5071,7 @@ module Aws::Greengrass
|
|
4898
5071
|
class LocalDeviceResourceData < Struct.new(
|
4899
5072
|
:group_owner_setting,
|
4900
5073
|
:source_path)
|
5074
|
+
SENSITIVE = []
|
4901
5075
|
include Aws::Structure
|
4902
5076
|
end
|
4903
5077
|
|
@@ -4937,6 +5111,7 @@ module Aws::Greengrass
|
|
4937
5111
|
:destination_path,
|
4938
5112
|
:group_owner_setting,
|
4939
5113
|
:source_path)
|
5114
|
+
SENSITIVE = []
|
4940
5115
|
include Aws::Structure
|
4941
5116
|
end
|
4942
5117
|
|
@@ -4984,6 +5159,7 @@ module Aws::Greengrass
|
|
4984
5159
|
:level,
|
4985
5160
|
:space,
|
4986
5161
|
:type)
|
5162
|
+
SENSITIVE = []
|
4987
5163
|
include Aws::Structure
|
4988
5164
|
end
|
4989
5165
|
|
@@ -5012,6 +5188,7 @@ module Aws::Greengrass
|
|
5012
5188
|
#
|
5013
5189
|
class LoggerDefinitionVersion < Struct.new(
|
5014
5190
|
:loggers)
|
5191
|
+
SENSITIVE = []
|
5015
5192
|
include Aws::Structure
|
5016
5193
|
end
|
5017
5194
|
|
@@ -5042,6 +5219,7 @@ module Aws::Greengrass
|
|
5042
5219
|
:amzn_client_token,
|
5043
5220
|
:force,
|
5044
5221
|
:group_id)
|
5222
|
+
SENSITIVE = []
|
5045
5223
|
include Aws::Structure
|
5046
5224
|
end
|
5047
5225
|
|
@@ -5058,6 +5236,7 @@ module Aws::Greengrass
|
|
5058
5236
|
class ResetDeploymentsResponse < Struct.new(
|
5059
5237
|
:deployment_arn,
|
5060
5238
|
:deployment_id)
|
5239
|
+
SENSITIVE = []
|
5061
5240
|
include Aws::Structure
|
5062
5241
|
end
|
5063
5242
|
|
@@ -5132,6 +5311,7 @@ module Aws::Greengrass
|
|
5132
5311
|
:id,
|
5133
5312
|
:name,
|
5134
5313
|
:resource_data_container)
|
5314
|
+
SENSITIVE = []
|
5135
5315
|
include Aws::Structure
|
5136
5316
|
end
|
5137
5317
|
|
@@ -5160,6 +5340,7 @@ module Aws::Greengrass
|
|
5160
5340
|
class ResourceAccessPolicy < Struct.new(
|
5161
5341
|
:permission,
|
5162
5342
|
:resource_id)
|
5343
|
+
SENSITIVE = []
|
5163
5344
|
include Aws::Structure
|
5164
5345
|
end
|
5165
5346
|
|
@@ -5241,6 +5422,7 @@ module Aws::Greengrass
|
|
5241
5422
|
:s3_machine_learning_model_resource_data,
|
5242
5423
|
:sage_maker_machine_learning_model_resource_data,
|
5243
5424
|
:secrets_manager_secret_resource_data)
|
5425
|
+
SENSITIVE = []
|
5244
5426
|
include Aws::Structure
|
5245
5427
|
end
|
5246
5428
|
|
@@ -5303,6 +5485,7 @@ module Aws::Greengrass
|
|
5303
5485
|
#
|
5304
5486
|
class ResourceDefinitionVersion < Struct.new(
|
5305
5487
|
:resources)
|
5488
|
+
SENSITIVE = []
|
5306
5489
|
include Aws::Structure
|
5307
5490
|
end
|
5308
5491
|
|
@@ -5332,6 +5515,7 @@ module Aws::Greengrass
|
|
5332
5515
|
class ResourceDownloadOwnerSetting < Struct.new(
|
5333
5516
|
:group_owner,
|
5334
5517
|
:group_permission)
|
5518
|
+
SENSITIVE = []
|
5335
5519
|
include Aws::Structure
|
5336
5520
|
end
|
5337
5521
|
|
@@ -5369,6 +5553,7 @@ module Aws::Greengrass
|
|
5369
5553
|
:destination_path,
|
5370
5554
|
:owner_setting,
|
5371
5555
|
:s3_uri)
|
5556
|
+
SENSITIVE = []
|
5372
5557
|
include Aws::Structure
|
5373
5558
|
end
|
5374
5559
|
|
@@ -5406,6 +5591,7 @@ module Aws::Greengrass
|
|
5406
5591
|
:destination_path,
|
5407
5592
|
:owner_setting,
|
5408
5593
|
:sage_maker_job_arn)
|
5594
|
+
SENSITIVE = []
|
5409
5595
|
include Aws::Structure
|
5410
5596
|
end
|
5411
5597
|
|
@@ -5438,6 +5624,7 @@ module Aws::Greengrass
|
|
5438
5624
|
class SecretsManagerSecretResourceData < Struct.new(
|
5439
5625
|
:arn,
|
5440
5626
|
:additional_staging_labels_to_download)
|
5627
|
+
SENSITIVE = []
|
5441
5628
|
include Aws::Structure
|
5442
5629
|
end
|
5443
5630
|
|
@@ -5489,6 +5676,7 @@ module Aws::Greengrass
|
|
5489
5676
|
:execution_role_arn,
|
5490
5677
|
:input_file_uri,
|
5491
5678
|
:tags)
|
5679
|
+
SENSITIVE = []
|
5492
5680
|
include Aws::Structure
|
5493
5681
|
end
|
5494
5682
|
|
@@ -5505,6 +5693,7 @@ module Aws::Greengrass
|
|
5505
5693
|
class StartBulkDeploymentResponse < Struct.new(
|
5506
5694
|
:bulk_deployment_arn,
|
5507
5695
|
:bulk_deployment_id)
|
5696
|
+
SENSITIVE = []
|
5508
5697
|
include Aws::Structure
|
5509
5698
|
end
|
5510
5699
|
|
@@ -5522,6 +5711,7 @@ module Aws::Greengrass
|
|
5522
5711
|
#
|
5523
5712
|
class StopBulkDeploymentRequest < Struct.new(
|
5524
5713
|
:bulk_deployment_id)
|
5714
|
+
SENSITIVE = []
|
5525
5715
|
include Aws::Structure
|
5526
5716
|
end
|
5527
5717
|
|
@@ -5570,6 +5760,7 @@ module Aws::Greengrass
|
|
5570
5760
|
:source,
|
5571
5761
|
:subject,
|
5572
5762
|
:target)
|
5763
|
+
SENSITIVE = []
|
5573
5764
|
include Aws::Structure
|
5574
5765
|
end
|
5575
5766
|
|
@@ -5597,6 +5788,7 @@ module Aws::Greengrass
|
|
5597
5788
|
#
|
5598
5789
|
class SubscriptionDefinitionVersion < Struct.new(
|
5599
5790
|
:subscriptions)
|
5791
|
+
SENSITIVE = []
|
5600
5792
|
include Aws::Structure
|
5601
5793
|
end
|
5602
5794
|
|
@@ -5622,6 +5814,7 @@ module Aws::Greengrass
|
|
5622
5814
|
class TagResourceRequest < Struct.new(
|
5623
5815
|
:resource_arn,
|
5624
5816
|
:tags)
|
5817
|
+
SENSITIVE = []
|
5625
5818
|
include Aws::Structure
|
5626
5819
|
end
|
5627
5820
|
|
@@ -5644,6 +5837,7 @@ module Aws::Greengrass
|
|
5644
5837
|
class UntagResourceRequest < Struct.new(
|
5645
5838
|
:resource_arn,
|
5646
5839
|
:tag_keys)
|
5840
|
+
SENSITIVE = []
|
5647
5841
|
include Aws::Structure
|
5648
5842
|
end
|
5649
5843
|
|
@@ -5676,6 +5870,7 @@ module Aws::Greengrass
|
|
5676
5870
|
class UpdateConnectivityInfoRequest < Struct.new(
|
5677
5871
|
:connectivity_info,
|
5678
5872
|
:thing_name)
|
5873
|
+
SENSITIVE = []
|
5679
5874
|
include Aws::Structure
|
5680
5875
|
end
|
5681
5876
|
|
@@ -5692,6 +5887,7 @@ module Aws::Greengrass
|
|
5692
5887
|
class UpdateConnectivityInfoResponse < Struct.new(
|
5693
5888
|
:message,
|
5694
5889
|
:version)
|
5890
|
+
SENSITIVE = []
|
5695
5891
|
include Aws::Structure
|
5696
5892
|
end
|
5697
5893
|
|
@@ -5714,6 +5910,7 @@ module Aws::Greengrass
|
|
5714
5910
|
class UpdateConnectorDefinitionRequest < Struct.new(
|
5715
5911
|
:connector_definition_id,
|
5716
5912
|
:name)
|
5913
|
+
SENSITIVE = []
|
5717
5914
|
include Aws::Structure
|
5718
5915
|
end
|
5719
5916
|
|
@@ -5740,6 +5937,7 @@ module Aws::Greengrass
|
|
5740
5937
|
class UpdateCoreDefinitionRequest < Struct.new(
|
5741
5938
|
:core_definition_id,
|
5742
5939
|
:name)
|
5940
|
+
SENSITIVE = []
|
5743
5941
|
include Aws::Structure
|
5744
5942
|
end
|
5745
5943
|
|
@@ -5766,6 +5964,7 @@ module Aws::Greengrass
|
|
5766
5964
|
class UpdateDeviceDefinitionRequest < Struct.new(
|
5767
5965
|
:device_definition_id,
|
5768
5966
|
:name)
|
5967
|
+
SENSITIVE = []
|
5769
5968
|
include Aws::Structure
|
5770
5969
|
end
|
5771
5970
|
|
@@ -5792,6 +5991,7 @@ module Aws::Greengrass
|
|
5792
5991
|
class UpdateFunctionDefinitionRequest < Struct.new(
|
5793
5992
|
:function_definition_id,
|
5794
5993
|
:name)
|
5994
|
+
SENSITIVE = []
|
5795
5995
|
include Aws::Structure
|
5796
5996
|
end
|
5797
5997
|
|
@@ -5820,6 +6020,7 @@ module Aws::Greengrass
|
|
5820
6020
|
class UpdateGroupCertificateConfigurationRequest < Struct.new(
|
5821
6021
|
:certificate_expiry_in_milliseconds,
|
5822
6022
|
:group_id)
|
6023
|
+
SENSITIVE = []
|
5823
6024
|
include Aws::Structure
|
5824
6025
|
end
|
5825
6026
|
|
@@ -5838,6 +6039,7 @@ module Aws::Greengrass
|
|
5838
6039
|
:certificate_authority_expiry_in_milliseconds,
|
5839
6040
|
:certificate_expiry_in_milliseconds,
|
5840
6041
|
:group_id)
|
6042
|
+
SENSITIVE = []
|
5841
6043
|
include Aws::Structure
|
5842
6044
|
end
|
5843
6045
|
|
@@ -5860,6 +6062,7 @@ module Aws::Greengrass
|
|
5860
6062
|
class UpdateGroupRequest < Struct.new(
|
5861
6063
|
:group_id,
|
5862
6064
|
:name)
|
6065
|
+
SENSITIVE = []
|
5863
6066
|
include Aws::Structure
|
5864
6067
|
end
|
5865
6068
|
|
@@ -5886,6 +6089,7 @@ module Aws::Greengrass
|
|
5886
6089
|
class UpdateLoggerDefinitionRequest < Struct.new(
|
5887
6090
|
:logger_definition_id,
|
5888
6091
|
:name)
|
6092
|
+
SENSITIVE = []
|
5889
6093
|
include Aws::Structure
|
5890
6094
|
end
|
5891
6095
|
|
@@ -5912,6 +6116,7 @@ module Aws::Greengrass
|
|
5912
6116
|
class UpdateResourceDefinitionRequest < Struct.new(
|
5913
6117
|
:name,
|
5914
6118
|
:resource_definition_id)
|
6119
|
+
SENSITIVE = []
|
5915
6120
|
include Aws::Structure
|
5916
6121
|
end
|
5917
6122
|
|
@@ -5938,6 +6143,7 @@ module Aws::Greengrass
|
|
5938
6143
|
class UpdateSubscriptionDefinitionRequest < Struct.new(
|
5939
6144
|
:name,
|
5940
6145
|
:subscription_definition_id)
|
6146
|
+
SENSITIVE = []
|
5941
6147
|
include Aws::Structure
|
5942
6148
|
end
|
5943
6149
|
|
@@ -5971,6 +6177,7 @@ module Aws::Greengrass
|
|
5971
6177
|
:creation_timestamp,
|
5972
6178
|
:id,
|
5973
6179
|
:version)
|
6180
|
+
SENSITIVE = []
|
5974
6181
|
include Aws::Structure
|
5975
6182
|
end
|
5976
6183
|
|