aws-sdk-panorama 1.10.0 → 1.11.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c4ee82866fc57c6ad0188c97e936e61a9c0b04bff585a81d430389217bf787b6
4
- data.tar.gz: 3f3272b098cd4ae041c761f9220b7278979baea694d001a1febdb11e57882776
3
+ metadata.gz: 844ab4df786a5ae99470982ee6a9efa0662ce3b1b31f53e01fcf985ef177c8da
4
+ data.tar.gz: d52409d2cc8784a8fee8385e0bb5ba810f8190e049ff7110546972bdb3a6ff8d
5
5
  SHA512:
6
- metadata.gz: d5bcfe5e160124061a417d8c000aaf3a3760d6cf49328d5046c29b9a4e02985317693bc6f90a9dddd29babefdd019901e3e8013447beb99134e443fc5ad94d3d
7
- data.tar.gz: 27b505a125d3b7046d6d221ba4b57f0bf75403607a28b3512524c5342b33ac11276d7be98566412ead56283a8d015361d8f22a994de29ba98bfc99af3d34f67a
6
+ metadata.gz: 2ee5758a11ece889d408630334268d6ff0aac874ad0d5fd9793ec66863aab7c6da19f691c53dedcca38829c83deb3b735c282b821654cf07f47407e10cf8f533
7
+ data.tar.gz: fa76b3e442be9952d81c04b7d960006a53c4a5026527aa80dae0817a9a61eee1ae084f9e172b6a9654cf3b58ce6a6cb41a4ae204b3f9f7f36c3516b14d90612c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.11.0 (2023-01-18)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code.
10
+
4
11
  1.10.0 (2022-10-25)
5
12
  ------------------
6
13
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.10.0
1
+ 1.11.0
@@ -2040,7 +2040,7 @@ module Aws::Panorama
2040
2040
  params: params,
2041
2041
  config: config)
2042
2042
  context[:gem_name] = 'aws-sdk-panorama'
2043
- context[:gem_version] = '1.10.0'
2043
+ context[:gem_version] = '1.11.0'
2044
2044
  Seahorse::Client::Request.new(handlers, context)
2045
2045
  end
2046
2046
 
@@ -9,102 +9,43 @@
9
9
 
10
10
  module Aws::Panorama
11
11
  class EndpointProvider
12
- def initialize(rule_set = nil)
13
- @@rule_set ||= begin
14
- endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
15
- Aws::Endpoints::RuleSet.new(
16
- version: endpoint_rules['version'],
17
- service_id: endpoint_rules['serviceId'],
18
- parameters: endpoint_rules['parameters'],
19
- rules: endpoint_rules['rules']
20
- )
12
+ def resolve_endpoint(parameters)
13
+ region = parameters.region
14
+ use_dual_stack = parameters.use_dual_stack
15
+ use_fips = parameters.use_fips
16
+ endpoint = parameters.endpoint
17
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
+ if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
19
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
+ end
22
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
23
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
24
+ end
25
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
26
+ end
27
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
28
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
29
+ return Aws::Endpoints::Endpoint.new(url: "https://panorama-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
+ end
31
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
32
+ end
33
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ return Aws::Endpoints::Endpoint.new(url: "https://panorama-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
36
+ end
37
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
38
+ end
39
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
40
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
41
+ return Aws::Endpoints::Endpoint.new(url: "https://panorama.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
42
+ end
43
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
44
+ end
45
+ return Aws::Endpoints::Endpoint.new(url: "https://panorama.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
21
46
  end
22
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
23
- end
47
+ raise ArgumentError, 'No endpoint could be resolved'
24
48
 
25
- def resolve_endpoint(parameters)
26
- @provider.resolve_endpoint(parameters)
27
49
  end
28
-
29
- # @api private
30
- RULES = <<-JSON
31
- eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
32
- bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
33
- dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
34
- cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
35
- dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
36
- ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
37
- ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
38
- ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
39
- aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
40
- OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
41
- UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
42
- dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
43
- UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
44
- dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
45
- ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
46
- IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
47
- aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
48
- bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
49
- ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
50
- Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
51
- cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
52
- InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
53
- aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
54
- cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
55
- InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
56
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
57
- UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
58
- SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
59
- eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
60
- InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
61
- LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
62
- ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
63
- b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
64
- fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
65
- RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
66
- ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
67
- ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
68
- ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
69
- dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
70
- dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
71
- Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
72
- In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
73
- YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
74
- YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
75
- cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
76
- dCI6eyJ1cmwiOiJodHRwczovL3Bhbm9yYW1hLWZpcHMue1JlZ2lvbn0ue1Bh
77
- cnRpdGlvblJlc3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9IiwicHJvcGVydGll
78
- cyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfSx7ImNv
79
- bmRpdGlvbnMiOltdLCJlcnJvciI6IkZJUFMgYW5kIER1YWxTdGFjayBhcmUg
80
- ZW5hYmxlZCwgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBvcnQg
81
- b25lIG9yIGJvdGgiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6
82
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
83
- UyJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlv
84
- bnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4i
85
- OiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0s
86
- InN1cHBvcnRzRklQUyJdfV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3si
87
- Y29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vcGFu
88
- b3JhbWEtZmlwcy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1ZmZp
89
- eH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5k
90
- cG9pbnQifV19LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoiRklQUyBpcyBl
91
- bmFibGVkIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IEZJ
92
- UFMiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJi
93
- b29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRHVhbFN0YWNrIn0s
94
- dHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
95
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUseyJmbiI6Imdl
96
- dEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQifSwic3Vw
97
- cG9ydHNEdWFsU3RhY2siXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7
98
- ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL3Bh
99
- bm9yYW1hLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5z
100
- U3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUi
101
- OiJlbmRwb2ludCJ9XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJEdWFs
102
- U3RhY2sgaXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qg
103
- c3VwcG9ydCBEdWFsU3RhY2siLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0
104
- aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vcGFub3JhbWEu
105
- e1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9IiwicHJvcGVy
106
- dGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfV19
107
-
108
- JSON
109
50
  end
110
51
  end
@@ -159,26 +159,6 @@ module Aws::Panorama
159
159
  include Aws::Structure
160
160
  end
161
161
 
162
- # @note When making an API call, you may pass CreateApplicationInstanceRequest
163
- # data as a hash:
164
- #
165
- # {
166
- # application_instance_id_to_replace: "ApplicationInstanceId",
167
- # default_runtime_context_device: "DefaultRuntimeContextDevice", # required
168
- # description: "Description",
169
- # manifest_overrides_payload: {
170
- # payload_data: "ManifestOverridesPayloadData",
171
- # },
172
- # manifest_payload: { # required
173
- # payload_data: "ManifestPayloadData",
174
- # },
175
- # name: "ApplicationInstanceName",
176
- # runtime_role_arn: "RuntimeRoleArn",
177
- # tags: {
178
- # "TagKey" => "TagValue",
179
- # },
180
- # }
181
- #
182
162
  # @!attribute [rw] application_instance_id_to_replace
183
163
  # The ID of an application instance to replace with the new instance.
184
164
  # @return [String]
@@ -238,19 +218,6 @@ module Aws::Panorama
238
218
  include Aws::Structure
239
219
  end
240
220
 
241
- # @note When making an API call, you may pass CreateJobForDevicesRequest
242
- # data as a hash:
243
- #
244
- # {
245
- # device_ids: ["DeviceId"], # required
246
- # device_job_config: {
247
- # ota_job_config: {
248
- # image_version: "ImageVersion", # required
249
- # },
250
- # },
251
- # job_type: "OTA", # required, accepts OTA, REBOOT
252
- # }
253
- #
254
221
  # @!attribute [rw] device_ids
255
222
  # IDs of target devices.
256
223
  # @return [Array<String>]
@@ -285,28 +252,6 @@ module Aws::Panorama
285
252
  include Aws::Structure
286
253
  end
287
254
 
288
- # @note When making an API call, you may pass CreateNodeFromTemplateJobRequest
289
- # data as a hash:
290
- #
291
- # {
292
- # job_tags: [
293
- # {
294
- # resource_type: "PACKAGE", # required, accepts PACKAGE
295
- # tags: { # required
296
- # "TagKey" => "TagValue",
297
- # },
298
- # },
299
- # ],
300
- # node_description: "Description",
301
- # node_name: "NodeName", # required
302
- # output_package_name: "NodePackageName", # required
303
- # output_package_version: "NodePackageVersion", # required
304
- # template_parameters: { # required
305
- # "TemplateKey" => "TemplateValue",
306
- # },
307
- # template_type: "RTSP_CAMERA_STREAM", # required, accepts RTSP_CAMERA_STREAM
308
- # }
309
- #
310
255
  # @!attribute [rw] job_tags
311
256
  # Tags for the job.
312
257
  # @return [Array<Types::JobResourceTags>]
@@ -361,38 +306,6 @@ module Aws::Panorama
361
306
  include Aws::Structure
362
307
  end
363
308
 
364
- # @note When making an API call, you may pass CreatePackageImportJobRequest
365
- # data as a hash:
366
- #
367
- # {
368
- # client_token: "ClientToken", # required
369
- # input_config: { # required
370
- # package_version_input_config: {
371
- # s3_location: { # required
372
- # bucket_name: "BucketName", # required
373
- # object_key: "ObjectKey", # required
374
- # region: "Region",
375
- # },
376
- # },
377
- # },
378
- # job_tags: [
379
- # {
380
- # resource_type: "PACKAGE", # required, accepts PACKAGE
381
- # tags: { # required
382
- # "TagKey" => "TagValue",
383
- # },
384
- # },
385
- # ],
386
- # job_type: "NODE_PACKAGE_VERSION", # required, accepts NODE_PACKAGE_VERSION, MARKETPLACE_NODE_PACKAGE_VERSION
387
- # output_config: { # required
388
- # package_version_output_config: {
389
- # mark_latest: false,
390
- # package_name: "NodePackageName", # required
391
- # package_version: "NodePackageVersion", # required
392
- # },
393
- # },
394
- # }
395
- #
396
309
  # @!attribute [rw] client_token
397
310
  # A client token for the package import job.
398
311
  # @return [String]
@@ -437,16 +350,6 @@ module Aws::Panorama
437
350
  include Aws::Structure
438
351
  end
439
352
 
440
- # @note When making an API call, you may pass CreatePackageRequest
441
- # data as a hash:
442
- #
443
- # {
444
- # package_name: "NodePackageName", # required
445
- # tags: {
446
- # "TagKey" => "TagValue",
447
- # },
448
- # }
449
- #
450
353
  # @!attribute [rw] package_name
451
354
  # A name for the package.
452
355
  # @return [String]
@@ -486,13 +389,6 @@ module Aws::Panorama
486
389
  include Aws::Structure
487
390
  end
488
391
 
489
- # @note When making an API call, you may pass DeleteDeviceRequest
490
- # data as a hash:
491
- #
492
- # {
493
- # device_id: "DeviceId", # required
494
- # }
495
- #
496
392
  # @!attribute [rw] device_id
497
393
  # The device's ID.
498
394
  # @return [String]
@@ -517,14 +413,6 @@ module Aws::Panorama
517
413
  include Aws::Structure
518
414
  end
519
415
 
520
- # @note When making an API call, you may pass DeletePackageRequest
521
- # data as a hash:
522
- #
523
- # {
524
- # force_delete: false,
525
- # package_id: "NodePackageId", # required
526
- # }
527
- #
528
416
  # @!attribute [rw] force_delete
529
417
  # Delete the package even if it has artifacts stored in its access
530
418
  # point. Deletes the package's artifacts from Amazon S3.
@@ -547,17 +435,6 @@ module Aws::Panorama
547
435
  #
548
436
  class DeletePackageResponse < Aws::EmptyStructure; end
549
437
 
550
- # @note When making an API call, you may pass DeregisterPackageVersionRequest
551
- # data as a hash:
552
- #
553
- # {
554
- # owner_account: "PackageOwnerAccount",
555
- # package_id: "NodePackageId", # required
556
- # package_version: "NodePackageVersion", # required
557
- # patch_version: "NodePackagePatchVersion", # required
558
- # updated_latest_patch_version: "NodePackagePatchVersion",
559
- # }
560
- #
561
438
  # @!attribute [rw] owner_account
562
439
  # An owner account.
563
440
  # @return [String]
@@ -595,13 +472,6 @@ module Aws::Panorama
595
472
  #
596
473
  class DeregisterPackageVersionResponse < Aws::EmptyStructure; end
597
474
 
598
- # @note When making an API call, you may pass DescribeApplicationInstanceDetailsRequest
599
- # data as a hash:
600
- #
601
- # {
602
- # application_instance_id: "ApplicationInstanceId", # required
603
- # }
604
- #
605
475
  # @!attribute [rw] application_instance_id
606
476
  # The application instance's ID.
607
477
  # @return [String]
@@ -661,13 +531,6 @@ module Aws::Panorama
661
531
  include Aws::Structure
662
532
  end
663
533
 
664
- # @note When making an API call, you may pass DescribeApplicationInstanceRequest
665
- # data as a hash:
666
- #
667
- # {
668
- # application_instance_id: "ApplicationInstanceId", # required
669
- # }
670
- #
671
534
  # @!attribute [rw] application_instance_id
672
535
  # The application instance's ID.
673
536
  # @return [String]
@@ -762,13 +625,6 @@ module Aws::Panorama
762
625
  include Aws::Structure
763
626
  end
764
627
 
765
- # @note When making an API call, you may pass DescribeDeviceJobRequest
766
- # data as a hash:
767
- #
768
- # {
769
- # job_id: "JobId", # required
770
- # }
771
- #
772
628
  # @!attribute [rw] job_id
773
629
  # The job's ID.
774
630
  # @return [String]
@@ -833,13 +689,6 @@ module Aws::Panorama
833
689
  include Aws::Structure
834
690
  end
835
691
 
836
- # @note When making an API call, you may pass DescribeDeviceRequest
837
- # data as a hash:
838
- #
839
- # {
840
- # device_id: "DeviceId", # required
841
- # }
842
- #
843
692
  # @!attribute [rw] device_id
844
693
  # The device's ID.
845
694
  # @return [String]
@@ -961,13 +810,6 @@ module Aws::Panorama
961
810
  include Aws::Structure
962
811
  end
963
812
 
964
- # @note When making an API call, you may pass DescribeNodeFromTemplateJobRequest
965
- # data as a hash:
966
- #
967
- # {
968
- # job_id: "JobId", # required
969
- # }
970
- #
971
813
  # @!attribute [rw] job_id
972
814
  # The job's ID.
973
815
  # @return [String]
@@ -1047,14 +889,6 @@ module Aws::Panorama
1047
889
  include Aws::Structure
1048
890
  end
1049
891
 
1050
- # @note When making an API call, you may pass DescribeNodeRequest
1051
- # data as a hash:
1052
- #
1053
- # {
1054
- # node_id: "NodeId", # required
1055
- # owner_account: "PackageOwnerAccount",
1056
- # }
1057
- #
1058
892
  # @!attribute [rw] node_id
1059
893
  # The node's ID.
1060
894
  # @return [String]
@@ -1149,13 +983,6 @@ module Aws::Panorama
1149
983
  include Aws::Structure
1150
984
  end
1151
985
 
1152
- # @note When making an API call, you may pass DescribePackageImportJobRequest
1153
- # data as a hash:
1154
- #
1155
- # {
1156
- # job_id: "JobId", # required
1157
- # }
1158
- #
1159
986
  # @!attribute [rw] job_id
1160
987
  # The job's ID.
1161
988
  # @return [String]
@@ -1230,13 +1057,6 @@ module Aws::Panorama
1230
1057
  include Aws::Structure
1231
1058
  end
1232
1059
 
1233
- # @note When making an API call, you may pass DescribePackageRequest
1234
- # data as a hash:
1235
- #
1236
- # {
1237
- # package_id: "NodePackageId", # required
1238
- # }
1239
- #
1240
1060
  # @!attribute [rw] package_id
1241
1061
  # The package's ID.
1242
1062
  # @return [String]
@@ -1296,16 +1116,6 @@ module Aws::Panorama
1296
1116
  include Aws::Structure
1297
1117
  end
1298
1118
 
1299
- # @note When making an API call, you may pass DescribePackageVersionRequest
1300
- # data as a hash:
1301
- #
1302
- # {
1303
- # owner_account: "PackageOwnerAccount",
1304
- # package_id: "NodePackageId", # required
1305
- # package_version: "NodePackageVersion", # required
1306
- # patch_version: "NodePackagePatchVersion",
1307
- # }
1308
- #
1309
1119
  # @!attribute [rw] owner_account
1310
1120
  # The version's owner account.
1311
1121
  # @return [String]
@@ -1502,15 +1312,6 @@ module Aws::Panorama
1502
1312
 
1503
1313
  # A job's configuration.
1504
1314
  #
1505
- # @note When making an API call, you may pass DeviceJobConfig
1506
- # data as a hash:
1507
- #
1508
- # {
1509
- # ota_job_config: {
1510
- # image_version: "ImageVersion", # required
1511
- # },
1512
- # }
1513
- #
1514
1315
  # @!attribute [rw] ota_job_config
1515
1316
  # A configuration for an over-the-air (OTA) upgrade. Required for OTA
1516
1317
  # jobs.
@@ -1526,19 +1327,6 @@ module Aws::Panorama
1526
1327
 
1527
1328
  # A device's network configuration.
1528
1329
  #
1529
- # @note When making an API call, you may pass EthernetPayload
1530
- # data as a hash:
1531
- #
1532
- # {
1533
- # connection_type: "STATIC_IP", # required, accepts STATIC_IP, DHCP
1534
- # static_ip_connection_info: {
1535
- # default_gateway: "DefaultGateway", # required
1536
- # dns: ["Dns"], # required
1537
- # ip_address: "IpAddress", # required
1538
- # mask: "Mask", # required
1539
- # },
1540
- # }
1541
- #
1542
1330
  # @!attribute [rw] connection_type
1543
1331
  # How the device gets an IP address.
1544
1332
  # @return [String]
@@ -1619,16 +1407,6 @@ module Aws::Panorama
1619
1407
 
1620
1408
  # Tags for a job.
1621
1409
  #
1622
- # @note When making an API call, you may pass JobResourceTags
1623
- # data as a hash:
1624
- #
1625
- # {
1626
- # resource_type: "PACKAGE", # required, accepts PACKAGE
1627
- # tags: { # required
1628
- # "TagKey" => "TagValue",
1629
- # },
1630
- # }
1631
- #
1632
1410
  # @!attribute [rw] resource_type
1633
1411
  # The job's type.
1634
1412
  # @return [String]
@@ -1670,15 +1448,6 @@ module Aws::Panorama
1670
1448
  include Aws::Structure
1671
1449
  end
1672
1450
 
1673
- # @note When making an API call, you may pass ListApplicationInstanceDependenciesRequest
1674
- # data as a hash:
1675
- #
1676
- # {
1677
- # application_instance_id: "ApplicationInstanceId", # required
1678
- # max_results: 1,
1679
- # next_token: "NextToken",
1680
- # }
1681
- #
1682
1451
  # @!attribute [rw] application_instance_id
1683
1452
  # The application instance's ID.
1684
1453
  # @return [String]
@@ -1720,15 +1489,6 @@ module Aws::Panorama
1720
1489
  include Aws::Structure
1721
1490
  end
1722
1491
 
1723
- # @note When making an API call, you may pass ListApplicationInstanceNodeInstancesRequest
1724
- # data as a hash:
1725
- #
1726
- # {
1727
- # application_instance_id: "ApplicationInstanceId", # required
1728
- # max_results: 1,
1729
- # next_token: "NextToken",
1730
- # }
1731
- #
1732
1492
  # @!attribute [rw] application_instance_id
1733
1493
  # The node instances' application instance ID.
1734
1494
  # @return [String]
@@ -1770,16 +1530,6 @@ module Aws::Panorama
1770
1530
  include Aws::Structure
1771
1531
  end
1772
1532
 
1773
- # @note When making an API call, you may pass ListApplicationInstancesRequest
1774
- # data as a hash:
1775
- #
1776
- # {
1777
- # device_id: "DeviceId",
1778
- # max_results: 1,
1779
- # next_token: "NextToken",
1780
- # status_filter: "DEPLOYMENT_SUCCEEDED", # accepts DEPLOYMENT_SUCCEEDED, DEPLOYMENT_ERROR, REMOVAL_SUCCEEDED, REMOVAL_FAILED, PROCESSING_DEPLOYMENT, PROCESSING_REMOVAL, DEPLOYMENT_FAILED
1781
- # }
1782
- #
1783
1533
  # @!attribute [rw] device_id
1784
1534
  # The application instances' device ID.
1785
1535
  # @return [String]
@@ -1826,15 +1576,6 @@ module Aws::Panorama
1826
1576
  include Aws::Structure
1827
1577
  end
1828
1578
 
1829
- # @note When making an API call, you may pass ListDevicesJobsRequest
1830
- # data as a hash:
1831
- #
1832
- # {
1833
- # device_id: "DeviceId",
1834
- # max_results: 1,
1835
- # next_token: "NextToken",
1836
- # }
1837
- #
1838
1579
  # @!attribute [rw] device_id
1839
1580
  # Filter results by the job's target device ID.
1840
1581
  # @return [String]
@@ -1875,18 +1616,6 @@ module Aws::Panorama
1875
1616
  include Aws::Structure
1876
1617
  end
1877
1618
 
1878
- # @note When making an API call, you may pass ListDevicesRequest
1879
- # data as a hash:
1880
- #
1881
- # {
1882
- # device_aggregated_status_filter: "ERROR", # accepts ERROR, AWAITING_PROVISIONING, PENDING, FAILED, DELETING, ONLINE, OFFLINE, LEASE_EXPIRED, UPDATE_NEEDED, REBOOTING
1883
- # max_results: 1,
1884
- # name_filter: "NameFilter",
1885
- # next_token: "NextToken",
1886
- # sort_by: "DEVICE_ID", # accepts DEVICE_ID, CREATED_TIME, NAME, DEVICE_AGGREGATED_STATUS
1887
- # sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
1888
- # }
1889
- #
1890
1619
  # @!attribute [rw] device_aggregated_status_filter
1891
1620
  # Filter based on a device's status.
1892
1621
  # @return [String]
@@ -1944,14 +1673,6 @@ module Aws::Panorama
1944
1673
  include Aws::Structure
1945
1674
  end
1946
1675
 
1947
- # @note When making an API call, you may pass ListNodeFromTemplateJobsRequest
1948
- # data as a hash:
1949
- #
1950
- # {
1951
- # max_results: 1,
1952
- # next_token: "NextToken",
1953
- # }
1954
- #
1955
1676
  # @!attribute [rw] max_results
1956
1677
  # The maximum number of node from template jobs to return in one page
1957
1678
  # of results.
@@ -1988,19 +1709,6 @@ module Aws::Panorama
1988
1709
  include Aws::Structure
1989
1710
  end
1990
1711
 
1991
- # @note When making an API call, you may pass ListNodesRequest
1992
- # data as a hash:
1993
- #
1994
- # {
1995
- # category: "BUSINESS_LOGIC", # accepts BUSINESS_LOGIC, ML_MODEL, MEDIA_SOURCE, MEDIA_SINK
1996
- # max_results: 1,
1997
- # next_token: "Token",
1998
- # owner_account: "PackageOwnerAccount",
1999
- # package_name: "NodePackageName",
2000
- # package_version: "NodePackageVersion",
2001
- # patch_version: "NodePackagePatchVersion",
2002
- # }
2003
- #
2004
1712
  # @!attribute [rw] category
2005
1713
  # Search for nodes by category.
2006
1714
  # @return [String]
@@ -2061,14 +1769,6 @@ module Aws::Panorama
2061
1769
  include Aws::Structure
2062
1770
  end
2063
1771
 
2064
- # @note When making an API call, you may pass ListPackageImportJobsRequest
2065
- # data as a hash:
2066
- #
2067
- # {
2068
- # max_results: 1,
2069
- # next_token: "NextToken",
2070
- # }
2071
- #
2072
1772
  # @!attribute [rw] max_results
2073
1773
  # The maximum number of package import jobs to return in one page of
2074
1774
  # results.
@@ -2105,14 +1805,6 @@ module Aws::Panorama
2105
1805
  include Aws::Structure
2106
1806
  end
2107
1807
 
2108
- # @note When making an API call, you may pass ListPackagesRequest
2109
- # data as a hash:
2110
- #
2111
- # {
2112
- # max_results: 1,
2113
- # next_token: "Token",
2114
- # }
2115
- #
2116
1808
  # @!attribute [rw] max_results
2117
1809
  # The maximum number of packages to return in one page of results.
2118
1810
  # @return [Integer]
@@ -2148,13 +1840,6 @@ module Aws::Panorama
2148
1840
  include Aws::Structure
2149
1841
  end
2150
1842
 
2151
- # @note When making an API call, you may pass ListTagsForResourceRequest
2152
- # data as a hash:
2153
- #
2154
- # {
2155
- # resource_arn: "ResourceArn", # required
2156
- # }
2157
- #
2158
1843
  # @!attribute [rw] resource_arn
2159
1844
  # The resource's ARN.
2160
1845
  # @return [String]
@@ -2232,33 +1917,6 @@ module Aws::Panorama
2232
1917
 
2233
1918
  # The network configuration for a device.
2234
1919
  #
2235
- # @note When making an API call, you may pass NetworkPayload
2236
- # data as a hash:
2237
- #
2238
- # {
2239
- # ethernet_0: {
2240
- # connection_type: "STATIC_IP", # required, accepts STATIC_IP, DHCP
2241
- # static_ip_connection_info: {
2242
- # default_gateway: "DefaultGateway", # required
2243
- # dns: ["Dns"], # required
2244
- # ip_address: "IpAddress", # required
2245
- # mask: "Mask", # required
2246
- # },
2247
- # },
2248
- # ethernet_1: {
2249
- # connection_type: "STATIC_IP", # required, accepts STATIC_IP, DHCP
2250
- # static_ip_connection_info: {
2251
- # default_gateway: "DefaultGateway", # required
2252
- # dns: ["Dns"], # required
2253
- # ip_address: "IpAddress", # required
2254
- # mask: "Mask", # required
2255
- # },
2256
- # },
2257
- # ntp: {
2258
- # ntp_servers: ["IpAddressOrServerName"], # required
2259
- # },
2260
- # }
2261
- #
2262
1920
  # @!attribute [rw] ethernet_0
2263
1921
  # Settings for Ethernet port 0.
2264
1922
  # @return [Types::EthernetPayload]
@@ -2537,14 +2195,6 @@ module Aws::Panorama
2537
2195
 
2538
2196
  # A signal to a camera node to start or stop processing video.
2539
2197
  #
2540
- # @note When making an API call, you may pass NodeSignal
2541
- # data as a hash:
2542
- #
2543
- # {
2544
- # node_instance_id: "NodeInstanceId", # required
2545
- # signal: "PAUSE", # required, accepts PAUSE, RESUME
2546
- # }
2547
- #
2548
2198
  # @!attribute [rw] node_instance_id
2549
2199
  # The camera node's name, from the application manifest.
2550
2200
  # @return [String]
@@ -2565,13 +2215,6 @@ module Aws::Panorama
2565
2215
  # Network time protocol (NTP) server settings. Use this option to
2566
2216
  # connect to local NTP servers instead of `pool.ntp.org`.
2567
2217
  #
2568
- # @note When making an API call, you may pass NtpPayload
2569
- # data as a hash:
2570
- #
2571
- # {
2572
- # ntp_servers: ["IpAddressOrServerName"], # required
2573
- # }
2574
- #
2575
2218
  # @!attribute [rw] ntp_servers
2576
2219
  # NTP servers to use, in order of preference.
2577
2220
  # @return [Array<String>]
@@ -2610,13 +2253,6 @@ module Aws::Panorama
2610
2253
 
2611
2254
  # An over-the-air update (OTA) job configuration.
2612
2255
  #
2613
- # @note When making an API call, you may pass OTAJobConfig
2614
- # data as a hash:
2615
- #
2616
- # {
2617
- # image_version: "ImageVersion", # required
2618
- # }
2619
- #
2620
2256
  # @!attribute [rw] image_version
2621
2257
  # The target version of the device software.
2622
2258
  # @return [String]
@@ -2689,19 +2325,6 @@ module Aws::Panorama
2689
2325
 
2690
2326
  # A configuration for a package import job.
2691
2327
  #
2692
- # @note When making an API call, you may pass PackageImportJobInputConfig
2693
- # data as a hash:
2694
- #
2695
- # {
2696
- # package_version_input_config: {
2697
- # s3_location: { # required
2698
- # bucket_name: "BucketName", # required
2699
- # object_key: "ObjectKey", # required
2700
- # region: "Region",
2701
- # },
2702
- # },
2703
- # }
2704
- #
2705
2328
  # @!attribute [rw] package_version_input_config
2706
2329
  # The package version's input configuration.
2707
2330
  # @return [Types::PackageVersionInputConfig]
@@ -2745,17 +2368,6 @@ module Aws::Panorama
2745
2368
 
2746
2369
  # An output configuration for a package import job.
2747
2370
  #
2748
- # @note When making an API call, you may pass PackageImportJobOutputConfig
2749
- # data as a hash:
2750
- #
2751
- # {
2752
- # package_version_output_config: {
2753
- # mark_latest: false,
2754
- # package_name: "NodePackageName", # required
2755
- # package_version: "NodePackageVersion", # required
2756
- # },
2757
- # }
2758
- #
2759
2371
  # @!attribute [rw] package_version_output_config
2760
2372
  # The package version's output configuration.
2761
2373
  # @return [Types::PackageVersionOutputConfig]
@@ -2828,17 +2440,6 @@ module Aws::Panorama
2828
2440
 
2829
2441
  # A package version input configuration.
2830
2442
  #
2831
- # @note When making an API call, you may pass PackageVersionInputConfig
2832
- # data as a hash:
2833
- #
2834
- # {
2835
- # s3_location: { # required
2836
- # bucket_name: "BucketName", # required
2837
- # object_key: "ObjectKey", # required
2838
- # region: "Region",
2839
- # },
2840
- # }
2841
- #
2842
2443
  # @!attribute [rw] s3_location
2843
2444
  # A location in Amazon S3.
2844
2445
  # @return [Types::S3Location]
@@ -2853,15 +2454,6 @@ module Aws::Panorama
2853
2454
 
2854
2455
  # A package version output configuration.
2855
2456
  #
2856
- # @note When making an API call, you may pass PackageVersionOutputConfig
2857
- # data as a hash:
2858
- #
2859
- # {
2860
- # mark_latest: false,
2861
- # package_name: "NodePackageName", # required
2862
- # package_version: "NodePackageVersion", # required
2863
- # }
2864
- #
2865
2457
  # @!attribute [rw] mark_latest
2866
2458
  # Indicates that the version is recommended for all users.
2867
2459
  # @return [Boolean]
@@ -2884,40 +2476,6 @@ module Aws::Panorama
2884
2476
  include Aws::Structure
2885
2477
  end
2886
2478
 
2887
- # @note When making an API call, you may pass ProvisionDeviceRequest
2888
- # data as a hash:
2889
- #
2890
- # {
2891
- # description: "Description",
2892
- # name: "DeviceName", # required
2893
- # networking_configuration: {
2894
- # ethernet_0: {
2895
- # connection_type: "STATIC_IP", # required, accepts STATIC_IP, DHCP
2896
- # static_ip_connection_info: {
2897
- # default_gateway: "DefaultGateway", # required
2898
- # dns: ["Dns"], # required
2899
- # ip_address: "IpAddress", # required
2900
- # mask: "Mask", # required
2901
- # },
2902
- # },
2903
- # ethernet_1: {
2904
- # connection_type: "STATIC_IP", # required, accepts STATIC_IP, DHCP
2905
- # static_ip_connection_info: {
2906
- # default_gateway: "DefaultGateway", # required
2907
- # dns: ["Dns"], # required
2908
- # ip_address: "IpAddress", # required
2909
- # mask: "Mask", # required
2910
- # },
2911
- # },
2912
- # ntp: {
2913
- # ntp_servers: ["IpAddressOrServerName"], # required
2914
- # },
2915
- # },
2916
- # tags: {
2917
- # "TagKey" => "TagValue",
2918
- # },
2919
- # }
2920
- #
2921
2479
  # @!attribute [rw] description
2922
2480
  # A description for the device.
2923
2481
  # @return [String]
@@ -2977,17 +2535,6 @@ module Aws::Panorama
2977
2535
  include Aws::Structure
2978
2536
  end
2979
2537
 
2980
- # @note When making an API call, you may pass RegisterPackageVersionRequest
2981
- # data as a hash:
2982
- #
2983
- # {
2984
- # mark_latest: false,
2985
- # owner_account: "PackageOwnerAccount",
2986
- # package_id: "NodePackageId", # required
2987
- # package_version: "NodePackageVersion", # required
2988
- # patch_version: "NodePackagePatchVersion", # required
2989
- # }
2990
- #
2991
2538
  # @!attribute [rw] mark_latest
2992
2539
  # Whether to mark the new version as the latest version.
2993
2540
  # @return [Boolean]
@@ -3024,13 +2571,6 @@ module Aws::Panorama
3024
2571
  #
3025
2572
  class RegisterPackageVersionResponse < Aws::EmptyStructure; end
3026
2573
 
3027
- # @note When making an API call, you may pass RemoveApplicationInstanceRequest
3028
- # data as a hash:
3029
- #
3030
- # {
3031
- # application_instance_id: "ApplicationInstanceId", # required
3032
- # }
3033
- #
3034
2574
  # @!attribute [rw] application_instance_id
3035
2575
  # An application instance ID.
3036
2576
  # @return [String]
@@ -3101,15 +2641,6 @@ module Aws::Panorama
3101
2641
 
3102
2642
  # A location in Amazon S3.
3103
2643
  #
3104
- # @note When making an API call, you may pass S3Location
3105
- # data as a hash:
3106
- #
3107
- # {
3108
- # bucket_name: "BucketName", # required
3109
- # object_key: "ObjectKey", # required
3110
- # region: "Region",
3111
- # }
3112
- #
3113
2644
  # @!attribute [rw] bucket_name
3114
2645
  # A bucket name.
3115
2646
  # @return [String]
@@ -3165,19 +2696,6 @@ module Aws::Panorama
3165
2696
  include Aws::Structure
3166
2697
  end
3167
2698
 
3168
- # @note When making an API call, you may pass SignalApplicationInstanceNodeInstancesRequest
3169
- # data as a hash:
3170
- #
3171
- # {
3172
- # application_instance_id: "ApplicationInstanceId", # required
3173
- # node_signals: [ # required
3174
- # {
3175
- # node_instance_id: "NodeInstanceId", # required
3176
- # signal: "PAUSE", # required, accepts PAUSE, RESUME
3177
- # },
3178
- # ],
3179
- # }
3180
- #
3181
2699
  # @!attribute [rw] application_instance_id
3182
2700
  # An application instance ID.
3183
2701
  # @return [String]
@@ -3209,16 +2727,6 @@ module Aws::Panorama
3209
2727
 
3210
2728
  # A static IP configuration.
3211
2729
  #
3212
- # @note When making an API call, you may pass StaticIpConnectionInfo
3213
- # data as a hash:
3214
- #
3215
- # {
3216
- # default_gateway: "DefaultGateway", # required
3217
- # dns: ["Dns"], # required
3218
- # ip_address: "IpAddress", # required
3219
- # mask: "Mask", # required
3220
- # }
3221
- #
3222
2730
  # @!attribute [rw] default_gateway
3223
2731
  # The connection's default gateway.
3224
2732
  # @return [String]
@@ -3280,16 +2788,6 @@ module Aws::Panorama
3280
2788
  include Aws::Structure
3281
2789
  end
3282
2790
 
3283
- # @note When making an API call, you may pass TagResourceRequest
3284
- # data as a hash:
3285
- #
3286
- # {
3287
- # resource_arn: "ResourceArn", # required
3288
- # tags: { # required
3289
- # "TagKey" => "TagValue",
3290
- # },
3291
- # }
3292
- #
3293
2791
  # @!attribute [rw] resource_arn
3294
2792
  # The resource's ARN.
3295
2793
  # @return [String]
@@ -3311,14 +2809,6 @@ module Aws::Panorama
3311
2809
  #
3312
2810
  class TagResourceResponse < Aws::EmptyStructure; end
3313
2811
 
3314
- # @note When making an API call, you may pass UntagResourceRequest
3315
- # data as a hash:
3316
- #
3317
- # {
3318
- # resource_arn: "ResourceArn", # required
3319
- # tag_keys: ["TagKey"], # required
3320
- # }
3321
- #
3322
2812
  # @!attribute [rw] resource_arn
3323
2813
  # The resource's ARN.
3324
2814
  # @return [String]
@@ -3340,14 +2830,6 @@ module Aws::Panorama
3340
2830
  #
3341
2831
  class UntagResourceResponse < Aws::EmptyStructure; end
3342
2832
 
3343
- # @note When making an API call, you may pass UpdateDeviceMetadataRequest
3344
- # data as a hash:
3345
- #
3346
- # {
3347
- # description: "Description",
3348
- # device_id: "DeviceId", # required
3349
- # }
3350
- #
3351
2833
  # @!attribute [rw] description
3352
2834
  # A description for the device.
3353
2835
  # @return [String]
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-panorama/customizations'
52
52
  # @!group service
53
53
  module Aws::Panorama
54
54
 
55
- GEM_VERSION = '1.10.0'
55
+ GEM_VERSION = '1.11.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-panorama
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.10.0
4
+ version: 1.11.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: 2022-10-25 00:00:00.000000000 Z
11
+ date: 2023-01-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core