aws-sdk-panorama 1.11.0 → 1.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-panorama/client.rb +10 -4
- data/lib/aws-sdk-panorama/client_api.rb +1 -0
- data/lib/aws-sdk-panorama/endpoint_parameters.rb +3 -0
- data/lib/aws-sdk-panorama/endpoint_provider.rb +1 -1
- data/lib/aws-sdk-panorama/types.rb +6 -1
- data/lib/aws-sdk-panorama.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cdda9a4d0f0b19f0c9b71135bd9010bce7cb9900fe50b2d920fa246c33329b59
|
4
|
+
data.tar.gz: 70302cbd822e173c1e00f7c995c8148f09ae24a6a93e7888fe4a879d6a9dd4ea
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5e7e0c1c73c89b52246009420c436ead9367fb316aa63f6a5c7d52885bdb45e7c9fbb2d18c933b09c4dc5dde47704fff4edd48860d3adf8a029fee4105779b4a
|
7
|
+
data.tar.gz: 972fd2d169f3dd9636ec5f5765522b2a96b9d519311868c95889aee2d8056e5e092adb344473d3a63a2db4fc4d3fa36f6b3ec44e22e2c31c6438f1a185049152
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.13.0 (2023-05-31)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.12.0 (2023-01-19)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Added AllowMajorVersionUpdate option to OTAJobConfig to make appliance software major version updates opt-in.
|
13
|
+
|
4
14
|
1.11.0 (2023-01-18)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.13.0
|
@@ -275,6 +275,11 @@ module Aws::Panorama
|
|
275
275
|
# in the future.
|
276
276
|
#
|
277
277
|
#
|
278
|
+
# @option options [String] :sdk_ua_app_id
|
279
|
+
# A unique and opaque application ID that is appended to the
|
280
|
+
# User-Agent header as app/<sdk_ua_app_id>. It should have a
|
281
|
+
# maximum length of 50.
|
282
|
+
#
|
278
283
|
# @option options [String] :secret_access_key
|
279
284
|
#
|
280
285
|
# @option options [String] :session_token
|
@@ -430,11 +435,11 @@ module Aws::Panorama
|
|
430
435
|
req.send_request(options)
|
431
436
|
end
|
432
437
|
|
433
|
-
# Creates a job to run on
|
434
|
-
#
|
438
|
+
# Creates a job to run on a device. A job can update a device's
|
439
|
+
# software or reboot it.
|
435
440
|
#
|
436
441
|
# @option params [required, Array<String>] :device_ids
|
437
|
-
#
|
442
|
+
# ID of target device.
|
438
443
|
#
|
439
444
|
# @option params [Types::DeviceJobConfig] :device_job_config
|
440
445
|
# Configuration settings for a software update job.
|
@@ -452,6 +457,7 @@ module Aws::Panorama
|
|
452
457
|
# device_ids: ["DeviceId"], # required
|
453
458
|
# device_job_config: {
|
454
459
|
# ota_job_config: {
|
460
|
+
# allow_major_version_update: false,
|
455
461
|
# image_version: "ImageVersion", # required
|
456
462
|
# },
|
457
463
|
# },
|
@@ -2040,7 +2046,7 @@ module Aws::Panorama
|
|
2040
2046
|
params: params,
|
2041
2047
|
config: config)
|
2042
2048
|
context[:gem_name] = 'aws-sdk-panorama'
|
2043
|
-
context[:gem_version] = '1.
|
2049
|
+
context[:gem_version] = '1.13.0'
|
2044
2050
|
Seahorse::Client::Request.new(handlers, context)
|
2045
2051
|
end
|
2046
2052
|
|
@@ -765,6 +765,7 @@ module Aws::Panorama
|
|
765
765
|
NtpStatus.add_member(:ntp_server_name, Shapes::ShapeRef.new(shape: NtpServerName, location_name: "NtpServerName"))
|
766
766
|
NtpStatus.struct_class = Types::NtpStatus
|
767
767
|
|
768
|
+
OTAJobConfig.add_member(:allow_major_version_update, Shapes::ShapeRef.new(shape: Boolean, location_name: "AllowMajorVersionUpdate"))
|
768
769
|
OTAJobConfig.add_member(:image_version, Shapes::ShapeRef.new(shape: ImageVersion, required: true, location_name: "ImageVersion"))
|
769
770
|
OTAJobConfig.struct_class = Types::OTAJobConfig
|
770
771
|
|
@@ -50,6 +50,9 @@ module Aws::Panorama
|
|
50
50
|
|
51
51
|
def initialize(options = {})
|
52
52
|
self[:region] = options[:region]
|
53
|
+
if self[:region].nil?
|
54
|
+
raise ArgumentError, "Missing required EndpointParameter: :region"
|
55
|
+
end
|
53
56
|
self[:use_dual_stack] = options[:use_dual_stack]
|
54
57
|
self[:use_dual_stack] = false if self[:use_dual_stack].nil?
|
55
58
|
if self[:use_dual_stack].nil?
|
@@ -15,7 +15,7 @@ module Aws::Panorama
|
|
15
15
|
use_fips = parameters.use_fips
|
16
16
|
endpoint = parameters.endpoint
|
17
17
|
if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
|
18
|
-
if Aws::Endpoints::Matchers.set?(endpoint)
|
18
|
+
if Aws::Endpoints::Matchers.set?(endpoint)
|
19
19
|
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
20
20
|
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
21
21
|
end
|
@@ -219,7 +219,7 @@ module Aws::Panorama
|
|
219
219
|
end
|
220
220
|
|
221
221
|
# @!attribute [rw] device_ids
|
222
|
-
#
|
222
|
+
# ID of target device.
|
223
223
|
# @return [Array<String>]
|
224
224
|
#
|
225
225
|
# @!attribute [rw] device_job_config
|
@@ -2253,6 +2253,10 @@ module Aws::Panorama
|
|
2253
2253
|
|
2254
2254
|
# An over-the-air update (OTA) job configuration.
|
2255
2255
|
#
|
2256
|
+
# @!attribute [rw] allow_major_version_update
|
2257
|
+
# Whether to apply the update if it is a major version change.
|
2258
|
+
# @return [Boolean]
|
2259
|
+
#
|
2256
2260
|
# @!attribute [rw] image_version
|
2257
2261
|
# The target version of the device software.
|
2258
2262
|
# @return [String]
|
@@ -2260,6 +2264,7 @@ module Aws::Panorama
|
|
2260
2264
|
# @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/OTAJobConfig AWS API Documentation
|
2261
2265
|
#
|
2262
2266
|
class OTAJobConfig < Struct.new(
|
2267
|
+
:allow_major_version_update,
|
2263
2268
|
:image_version)
|
2264
2269
|
SENSITIVE = []
|
2265
2270
|
include Aws::Structure
|
data/lib/aws-sdk-panorama.rb
CHANGED
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.
|
4
|
+
version: 1.13.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: 2023-
|
11
|
+
date: 2023-05-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.174.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.174.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|