aws-sdk-panorama 1.8.0 → 1.10.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 +83 -12
- data/lib/aws-sdk-panorama/client_api.rb +49 -1
- data/lib/aws-sdk-panorama/endpoint_parameters.rb +66 -0
- data/lib/aws-sdk-panorama/endpoint_provider.rb +110 -0
- data/lib/aws-sdk-panorama/endpoints.rb +491 -0
- data/lib/aws-sdk-panorama/plugins/endpoints.rb +136 -0
- data/lib/aws-sdk-panorama/types.rb +128 -5
- data/lib/aws-sdk-panorama.rb +5 -1
- metadata +8 -4
@@ -72,6 +72,10 @@ module Aws::Panorama
|
|
72
72
|
# The application instance's name.
|
73
73
|
# @return [String]
|
74
74
|
#
|
75
|
+
# @!attribute [rw] runtime_context_states
|
76
|
+
# The application's state.
|
77
|
+
# @return [Array<Types::ReportedRuntimeContextState>]
|
78
|
+
#
|
75
79
|
# @!attribute [rw] status
|
76
80
|
# The application instance's status.
|
77
81
|
# @return [String]
|
@@ -95,6 +99,7 @@ module Aws::Panorama
|
|
95
99
|
:description,
|
96
100
|
:health_status,
|
97
101
|
:name,
|
102
|
+
:runtime_context_states,
|
98
103
|
:status,
|
99
104
|
:status_description,
|
100
105
|
:tags)
|
@@ -238,12 +243,12 @@ module Aws::Panorama
|
|
238
243
|
#
|
239
244
|
# {
|
240
245
|
# device_ids: ["DeviceId"], # required
|
241
|
-
# device_job_config: {
|
246
|
+
# device_job_config: {
|
242
247
|
# ota_job_config: {
|
243
248
|
# image_version: "ImageVersion", # required
|
244
249
|
# },
|
245
250
|
# },
|
246
|
-
# job_type: "OTA", # required, accepts OTA
|
251
|
+
# job_type: "OTA", # required, accepts OTA, REBOOT
|
247
252
|
# }
|
248
253
|
#
|
249
254
|
# @!attribute [rw] device_ids
|
@@ -251,7 +256,7 @@ module Aws::Panorama
|
|
251
256
|
# @return [Array<String>]
|
252
257
|
#
|
253
258
|
# @!attribute [rw] device_job_config
|
254
|
-
# Configuration settings for
|
259
|
+
# Configuration settings for a software update job.
|
255
260
|
# @return [Types::DeviceJobConfig]
|
256
261
|
#
|
257
262
|
# @!attribute [rw] job_type
|
@@ -715,6 +720,10 @@ module Aws::Panorama
|
|
715
720
|
# The application instance's name.
|
716
721
|
# @return [String]
|
717
722
|
#
|
723
|
+
# @!attribute [rw] runtime_context_states
|
724
|
+
# The application instance's state.
|
725
|
+
# @return [Array<Types::ReportedRuntimeContextState>]
|
726
|
+
#
|
718
727
|
# @!attribute [rw] runtime_role_arn
|
719
728
|
# The application instance's runtime role ARN.
|
720
729
|
# @return [String]
|
@@ -744,6 +753,7 @@ module Aws::Panorama
|
|
744
753
|
:health_status,
|
745
754
|
:last_updated_time,
|
746
755
|
:name,
|
756
|
+
:runtime_context_states,
|
747
757
|
:runtime_role_arn,
|
748
758
|
:status,
|
749
759
|
:status_description,
|
@@ -799,6 +809,10 @@ module Aws::Panorama
|
|
799
809
|
# The job's ID.
|
800
810
|
# @return [String]
|
801
811
|
#
|
812
|
+
# @!attribute [rw] job_type
|
813
|
+
# The job's type.
|
814
|
+
# @return [String]
|
815
|
+
#
|
802
816
|
# @!attribute [rw] status
|
803
817
|
# The job's status.
|
804
818
|
# @return [String]
|
@@ -813,6 +827,7 @@ module Aws::Panorama
|
|
813
827
|
:device_type,
|
814
828
|
:image_version,
|
815
829
|
:job_id,
|
830
|
+
:job_type,
|
816
831
|
:status)
|
817
832
|
SENSITIVE = []
|
818
833
|
include Aws::Structure
|
@@ -1469,13 +1484,18 @@ module Aws::Panorama
|
|
1469
1484
|
# The job's ID.
|
1470
1485
|
# @return [String]
|
1471
1486
|
#
|
1487
|
+
# @!attribute [rw] job_type
|
1488
|
+
# The job's type.
|
1489
|
+
# @return [String]
|
1490
|
+
#
|
1472
1491
|
# @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/DeviceJob AWS API Documentation
|
1473
1492
|
#
|
1474
1493
|
class DeviceJob < Struct.new(
|
1475
1494
|
:created_time,
|
1476
1495
|
:device_id,
|
1477
1496
|
:device_name,
|
1478
|
-
:job_id
|
1497
|
+
:job_id,
|
1498
|
+
:job_type)
|
1479
1499
|
SENSITIVE = []
|
1480
1500
|
include Aws::Structure
|
1481
1501
|
end
|
@@ -1632,6 +1652,10 @@ module Aws::Panorama
|
|
1632
1652
|
# The target version of the device software.
|
1633
1653
|
# @return [String]
|
1634
1654
|
#
|
1655
|
+
# @!attribute [rw] job_type
|
1656
|
+
# The job's type.
|
1657
|
+
# @return [String]
|
1658
|
+
#
|
1635
1659
|
# @!attribute [rw] status
|
1636
1660
|
# Status of the latest device job.
|
1637
1661
|
# @return [String]
|
@@ -1640,6 +1664,7 @@ module Aws::Panorama
|
|
1640
1664
|
#
|
1641
1665
|
class LatestDeviceJob < Struct.new(
|
1642
1666
|
:image_version,
|
1667
|
+
:job_type,
|
1643
1668
|
:status)
|
1644
1669
|
SENSITIVE = []
|
1645
1670
|
include Aws::Structure
|
@@ -1854,7 +1879,7 @@ module Aws::Panorama
|
|
1854
1879
|
# data as a hash:
|
1855
1880
|
#
|
1856
1881
|
# {
|
1857
|
-
# device_aggregated_status_filter: "ERROR", # accepts ERROR, AWAITING_PROVISIONING, PENDING, FAILED, DELETING, ONLINE, OFFLINE, LEASE_EXPIRED, UPDATE_NEEDED
|
1882
|
+
# device_aggregated_status_filter: "ERROR", # accepts ERROR, AWAITING_PROVISIONING, PENDING, FAILED, DELETING, ONLINE, OFFLINE, LEASE_EXPIRED, UPDATE_NEEDED, REBOOTING
|
1858
1883
|
# max_results: 1,
|
1859
1884
|
# name_filter: "NameFilter",
|
1860
1885
|
# next_token: "NextToken",
|
@@ -2510,6 +2535,33 @@ module Aws::Panorama
|
|
2510
2535
|
include Aws::Structure
|
2511
2536
|
end
|
2512
2537
|
|
2538
|
+
# A signal to a camera node to start or stop processing video.
|
2539
|
+
#
|
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
|
+
# @!attribute [rw] node_instance_id
|
2549
|
+
# The camera node's name, from the application manifest.
|
2550
|
+
# @return [String]
|
2551
|
+
#
|
2552
|
+
# @!attribute [rw] signal
|
2553
|
+
# The signal value.
|
2554
|
+
# @return [String]
|
2555
|
+
#
|
2556
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/NodeSignal AWS API Documentation
|
2557
|
+
#
|
2558
|
+
class NodeSignal < Struct.new(
|
2559
|
+
:node_instance_id,
|
2560
|
+
:signal)
|
2561
|
+
SENSITIVE = []
|
2562
|
+
include Aws::Structure
|
2563
|
+
end
|
2564
|
+
|
2513
2565
|
# Network time protocol (NTP) server settings. Use this option to
|
2514
2566
|
# connect to local NTP servers instead of `pool.ntp.org`.
|
2515
2567
|
#
|
@@ -2995,6 +3047,35 @@ module Aws::Panorama
|
|
2995
3047
|
#
|
2996
3048
|
class RemoveApplicationInstanceResponse < Aws::EmptyStructure; end
|
2997
3049
|
|
3050
|
+
# An application instance's state.
|
3051
|
+
#
|
3052
|
+
# @!attribute [rw] desired_state
|
3053
|
+
# The application's desired state.
|
3054
|
+
# @return [String]
|
3055
|
+
#
|
3056
|
+
# @!attribute [rw] device_reported_status
|
3057
|
+
# The application's reported status.
|
3058
|
+
# @return [String]
|
3059
|
+
#
|
3060
|
+
# @!attribute [rw] device_reported_time
|
3061
|
+
# When the device reported the application's state.
|
3062
|
+
# @return [Time]
|
3063
|
+
#
|
3064
|
+
# @!attribute [rw] runtime_context_name
|
3065
|
+
# The device's name.
|
3066
|
+
# @return [String]
|
3067
|
+
#
|
3068
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/ReportedRuntimeContextState AWS API Documentation
|
3069
|
+
#
|
3070
|
+
class ReportedRuntimeContextState < Struct.new(
|
3071
|
+
:desired_state,
|
3072
|
+
:device_reported_status,
|
3073
|
+
:device_reported_time,
|
3074
|
+
:runtime_context_name)
|
3075
|
+
SENSITIVE = []
|
3076
|
+
include Aws::Structure
|
3077
|
+
end
|
3078
|
+
|
2998
3079
|
# The target resource was not found.
|
2999
3080
|
#
|
3000
3081
|
# @!attribute [rw] message
|
@@ -3084,6 +3165,48 @@ module Aws::Panorama
|
|
3084
3165
|
include Aws::Structure
|
3085
3166
|
end
|
3086
3167
|
|
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
|
+
# @!attribute [rw] application_instance_id
|
3182
|
+
# An application instance ID.
|
3183
|
+
# @return [String]
|
3184
|
+
#
|
3185
|
+
# @!attribute [rw] node_signals
|
3186
|
+
# A list of signals.
|
3187
|
+
# @return [Array<Types::NodeSignal>]
|
3188
|
+
#
|
3189
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/SignalApplicationInstanceNodeInstancesRequest AWS API Documentation
|
3190
|
+
#
|
3191
|
+
class SignalApplicationInstanceNodeInstancesRequest < Struct.new(
|
3192
|
+
:application_instance_id,
|
3193
|
+
:node_signals)
|
3194
|
+
SENSITIVE = []
|
3195
|
+
include Aws::Structure
|
3196
|
+
end
|
3197
|
+
|
3198
|
+
# @!attribute [rw] application_instance_id
|
3199
|
+
# An application instance ID.
|
3200
|
+
# @return [String]
|
3201
|
+
#
|
3202
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/SignalApplicationInstanceNodeInstancesResponse AWS API Documentation
|
3203
|
+
#
|
3204
|
+
class SignalApplicationInstanceNodeInstancesResponse < Struct.new(
|
3205
|
+
:application_instance_id)
|
3206
|
+
SENSITIVE = []
|
3207
|
+
include Aws::Structure
|
3208
|
+
end
|
3209
|
+
|
3087
3210
|
# A static IP configuration.
|
3088
3211
|
#
|
3089
3212
|
# @note When making an API call, you may pass StaticIpConnectionInfo
|
data/lib/aws-sdk-panorama.rb
CHANGED
@@ -13,9 +13,13 @@ require 'aws-sigv4'
|
|
13
13
|
|
14
14
|
require_relative 'aws-sdk-panorama/types'
|
15
15
|
require_relative 'aws-sdk-panorama/client_api'
|
16
|
+
require_relative 'aws-sdk-panorama/plugins/endpoints.rb'
|
16
17
|
require_relative 'aws-sdk-panorama/client'
|
17
18
|
require_relative 'aws-sdk-panorama/errors'
|
18
19
|
require_relative 'aws-sdk-panorama/resource'
|
20
|
+
require_relative 'aws-sdk-panorama/endpoint_parameters'
|
21
|
+
require_relative 'aws-sdk-panorama/endpoint_provider'
|
22
|
+
require_relative 'aws-sdk-panorama/endpoints'
|
19
23
|
require_relative 'aws-sdk-panorama/customizations'
|
20
24
|
|
21
25
|
# This module provides support for AWS Panorama. This module is available in the
|
@@ -48,6 +52,6 @@ require_relative 'aws-sdk-panorama/customizations'
|
|
48
52
|
# @!group service
|
49
53
|
module Aws::Panorama
|
50
54
|
|
51
|
-
GEM_VERSION = '1.
|
55
|
+
GEM_VERSION = '1.10.0'
|
52
56
|
|
53
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.
|
4
|
+
version: 1.10.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-
|
11
|
+
date: 2022-10-25 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.165.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.165.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -59,7 +59,11 @@ files:
|
|
59
59
|
- lib/aws-sdk-panorama/client.rb
|
60
60
|
- lib/aws-sdk-panorama/client_api.rb
|
61
61
|
- lib/aws-sdk-panorama/customizations.rb
|
62
|
+
- lib/aws-sdk-panorama/endpoint_parameters.rb
|
63
|
+
- lib/aws-sdk-panorama/endpoint_provider.rb
|
64
|
+
- lib/aws-sdk-panorama/endpoints.rb
|
62
65
|
- lib/aws-sdk-panorama/errors.rb
|
66
|
+
- lib/aws-sdk-panorama/plugins/endpoints.rb
|
63
67
|
- lib/aws-sdk-panorama/resource.rb
|
64
68
|
- lib/aws-sdk-panorama/types.rb
|
65
69
|
homepage: https://github.com/aws/aws-sdk-ruby
|