aws-sdk-panorama 1.7.0 → 1.9.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7756cc4ac24fcab4c994bd8a7c8696c611124ce2d3d0c5bb7b23b2672150af05
4
- data.tar.gz: 5b9501f8e998a5ee3d302c35e8b06b426fc7d66a8023693ddb8e2bc43ce4a651
3
+ metadata.gz: 9de6ce406d1b0a42ad2257753e5f4ff56cbec6deb73bc766868e2612b40c295e
4
+ data.tar.gz: aa1ce224aeee1fdca40480373c4c08af465aacd52f1a0759d11c712874e86ccc
5
5
  SHA512:
6
- metadata.gz: 164761284f3e4570186b9a0a696f188b54ff1f87f3f57b3c1e8b4bc400041f8e23302b0d944045122b577ef8de733110a0b2447293770d2c9ff48fd3353f3bc2
7
- data.tar.gz: 197949e0fe88d1cec40a5575467ee4f2458af6cb9b38d87a43b2d26af0cbaa30e3d93bb645faed0be2cec9fab1a0ad14d4384eabfa2777b44733ea702749b3b1
6
+ metadata.gz: 783face1d9958aa9ab41d61f139abe85030479967a4e40b0baed9f2f5a1b7cd6c75371143c5c7e2042ac3061e56dee14660a2619c23cf455c440c5f7a3cc8311
7
+ data.tar.gz: 0406cd0ed9eb5714b1ec02eca1cb98017d6e67ae378dc7c3af195382c76dbe2b8b57a481a097df54f271893a299871d351e212e3a643fe30b06a6205c8ba4e9e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.9.0 (2022-10-13)
5
+ ------------------
6
+
7
+ * Feature - Pause and resume camera stream processing with SignalApplicationInstanceNodeInstances. Reboot an appliance with CreateJobForDevices. More application state information in DescribeApplicationInstance response.
8
+
9
+ 1.8.0 (2022-08-25)
10
+ ------------------
11
+
12
+ * Feature - Support sorting and filtering in ListDevices API, and add more fields to device listings and single device detail
13
+
4
14
  1.7.0 (2022-04-06)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.7.0
1
+ 1.9.0
@@ -413,13 +413,14 @@ module Aws::Panorama
413
413
  req.send_request(options)
414
414
  end
415
415
 
416
- # Creates a job to run on one or more devices.
416
+ # Creates a job to run on one or more devices. A job can update a
417
+ # device's software or reboot it.
417
418
  #
418
419
  # @option params [required, Array<String>] :device_ids
419
420
  # IDs of target devices.
420
421
  #
421
- # @option params [required, Types::DeviceJobConfig] :device_job_config
422
- # Configuration settings for the job.
422
+ # @option params [Types::DeviceJobConfig] :device_job_config
423
+ # Configuration settings for a software update job.
423
424
  #
424
425
  # @option params [required, String] :job_type
425
426
  # The type of job to run.
@@ -432,12 +433,12 @@ module Aws::Panorama
432
433
  #
433
434
  # resp = client.create_job_for_devices({
434
435
  # device_ids: ["DeviceId"], # required
435
- # device_job_config: { # required
436
+ # device_job_config: {
436
437
  # ota_job_config: {
437
438
  # image_version: "ImageVersion", # required
438
439
  # },
439
440
  # },
440
- # job_type: "OTA", # required, accepts OTA
441
+ # job_type: "OTA", # required, accepts OTA, REBOOT
441
442
  # })
442
443
  #
443
444
  # @example Response structure
@@ -738,6 +739,7 @@ module Aws::Panorama
738
739
  # * {Types::DescribeApplicationInstanceResponse#health_status #health_status} => String
739
740
  # * {Types::DescribeApplicationInstanceResponse#last_updated_time #last_updated_time} => Time
740
741
  # * {Types::DescribeApplicationInstanceResponse#name #name} => String
742
+ # * {Types::DescribeApplicationInstanceResponse#runtime_context_states #runtime_context_states} => Array&lt;Types::ReportedRuntimeContextState&gt;
741
743
  # * {Types::DescribeApplicationInstanceResponse#runtime_role_arn #runtime_role_arn} => String
742
744
  # * {Types::DescribeApplicationInstanceResponse#status #status} => String
743
745
  # * {Types::DescribeApplicationInstanceResponse#status_description #status_description} => String
@@ -761,6 +763,11 @@ module Aws::Panorama
761
763
  # resp.health_status #=> String, one of "RUNNING", "ERROR", "NOT_AVAILABLE"
762
764
  # resp.last_updated_time #=> Time
763
765
  # resp.name #=> String
766
+ # resp.runtime_context_states #=> Array
767
+ # resp.runtime_context_states[0].desired_state #=> String, one of "RUNNING", "STOPPED", "REMOVED"
768
+ # resp.runtime_context_states[0].device_reported_status #=> String, one of "STOPPING", "STOPPED", "STOP_ERROR", "REMOVAL_FAILED", "REMOVAL_IN_PROGRESS", "STARTING", "RUNNING", "INSTALL_ERROR", "LAUNCHED", "LAUNCH_ERROR", "INSTALL_IN_PROGRESS"
769
+ # resp.runtime_context_states[0].device_reported_time #=> Time
770
+ # resp.runtime_context_states[0].runtime_context_name #=> String
764
771
  # resp.runtime_role_arn #=> String
765
772
  # resp.status #=> String, one of "DEPLOYMENT_PENDING", "DEPLOYMENT_REQUESTED", "DEPLOYMENT_IN_PROGRESS", "DEPLOYMENT_ERROR", "DEPLOYMENT_SUCCEEDED", "REMOVAL_PENDING", "REMOVAL_REQUESTED", "REMOVAL_IN_PROGRESS", "REMOVAL_FAILED", "REMOVAL_SUCCEEDED", "DEPLOYMENT_FAILED"
766
773
  # resp.status_description #=> String
@@ -833,9 +840,11 @@ module Aws::Panorama
833
840
  # * {Types::DescribeDeviceResponse#current_networking_status #current_networking_status} => Types::NetworkStatus
834
841
  # * {Types::DescribeDeviceResponse#current_software #current_software} => String
835
842
  # * {Types::DescribeDeviceResponse#description #description} => String
843
+ # * {Types::DescribeDeviceResponse#device_aggregated_status #device_aggregated_status} => String
836
844
  # * {Types::DescribeDeviceResponse#device_connection_status #device_connection_status} => String
837
845
  # * {Types::DescribeDeviceResponse#device_id #device_id} => String
838
846
  # * {Types::DescribeDeviceResponse#latest_alternate_software #latest_alternate_software} => String
847
+ # * {Types::DescribeDeviceResponse#latest_device_job #latest_device_job} => Types::LatestDeviceJob
839
848
  # * {Types::DescribeDeviceResponse#latest_software #latest_software} => String
840
849
  # * {Types::DescribeDeviceResponse#lease_expiration_time #lease_expiration_time} => Time
841
850
  # * {Types::DescribeDeviceResponse#name #name} => String
@@ -870,9 +879,13 @@ module Aws::Panorama
870
879
  # resp.current_networking_status.ntp_status.ntp_server_name #=> String
871
880
  # resp.current_software #=> String
872
881
  # resp.description #=> String
882
+ # resp.device_aggregated_status #=> String, one of "ERROR", "AWAITING_PROVISIONING", "PENDING", "FAILED", "DELETING", "ONLINE", "OFFLINE", "LEASE_EXPIRED", "UPDATE_NEEDED", "REBOOTING"
873
883
  # resp.device_connection_status #=> String, one of "ONLINE", "OFFLINE", "AWAITING_CREDENTIALS", "NOT_AVAILABLE", "ERROR"
874
884
  # resp.device_id #=> String
875
885
  # resp.latest_alternate_software #=> String
886
+ # resp.latest_device_job.image_version #=> String
887
+ # resp.latest_device_job.job_type #=> String, one of "OTA", "REBOOT"
888
+ # resp.latest_device_job.status #=> String, one of "PENDING", "IN_PROGRESS", "VERIFYING", "REBOOTING", "DOWNLOADING", "COMPLETED", "FAILED"
876
889
  # resp.latest_software #=> String
877
890
  # resp.lease_expiration_time #=> Time
878
891
  # resp.name #=> String
@@ -919,6 +932,7 @@ module Aws::Panorama
919
932
  # * {Types::DescribeDeviceJobResponse#device_type #device_type} => String
920
933
  # * {Types::DescribeDeviceJobResponse#image_version #image_version} => String
921
934
  # * {Types::DescribeDeviceJobResponse#job_id #job_id} => String
935
+ # * {Types::DescribeDeviceJobResponse#job_type #job_type} => String
922
936
  # * {Types::DescribeDeviceJobResponse#status #status} => String
923
937
  #
924
938
  # @example Request syntax with placeholder values
@@ -936,6 +950,7 @@ module Aws::Panorama
936
950
  # resp.device_type #=> String, one of "PANORAMA_APPLIANCE_DEVELOPER_KIT", "PANORAMA_APPLIANCE"
937
951
  # resp.image_version #=> String
938
952
  # resp.job_id #=> String
953
+ # resp.job_type #=> String, one of "OTA", "REBOOT"
939
954
  # resp.status #=> String, one of "PENDING", "IN_PROGRESS", "VERIFYING", "REBOOTING", "DOWNLOADING", "COMPLETED", "FAILED"
940
955
  #
941
956
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/DescribeDeviceJob AWS API Documentation
@@ -1310,7 +1325,7 @@ module Aws::Panorama
1310
1325
  #
1311
1326
  # resp.next_token #=> String
1312
1327
  # resp.node_instances #=> Array
1313
- # resp.node_instances[0].current_status #=> String, one of "RUNNING", "ERROR", "NOT_AVAILABLE"
1328
+ # resp.node_instances[0].current_status #=> String, one of "RUNNING", "ERROR", "NOT_AVAILABLE", "PAUSED"
1314
1329
  # resp.node_instances[0].node_id #=> String
1315
1330
  # resp.node_instances[0].node_instance_id #=> String
1316
1331
  # resp.node_instances[0].node_name #=> String
@@ -1370,6 +1385,11 @@ module Aws::Panorama
1370
1385
  # resp.application_instances[0].description #=> String
1371
1386
  # resp.application_instances[0].health_status #=> String, one of "RUNNING", "ERROR", "NOT_AVAILABLE"
1372
1387
  # resp.application_instances[0].name #=> String
1388
+ # resp.application_instances[0].runtime_context_states #=> Array
1389
+ # resp.application_instances[0].runtime_context_states[0].desired_state #=> String, one of "RUNNING", "STOPPED", "REMOVED"
1390
+ # resp.application_instances[0].runtime_context_states[0].device_reported_status #=> String, one of "STOPPING", "STOPPED", "STOP_ERROR", "REMOVAL_FAILED", "REMOVAL_IN_PROGRESS", "STARTING", "RUNNING", "INSTALL_ERROR", "LAUNCHED", "LAUNCH_ERROR", "INSTALL_IN_PROGRESS"
1391
+ # resp.application_instances[0].runtime_context_states[0].device_reported_time #=> Time
1392
+ # resp.application_instances[0].runtime_context_states[0].runtime_context_name #=> String
1373
1393
  # resp.application_instances[0].status #=> String, one of "DEPLOYMENT_PENDING", "DEPLOYMENT_REQUESTED", "DEPLOYMENT_IN_PROGRESS", "DEPLOYMENT_ERROR", "DEPLOYMENT_SUCCEEDED", "REMOVAL_PENDING", "REMOVAL_REQUESTED", "REMOVAL_IN_PROGRESS", "REMOVAL_FAILED", "REMOVAL_SUCCEEDED", "DEPLOYMENT_FAILED"
1374
1394
  # resp.application_instances[0].status_description #=> String
1375
1395
  # resp.application_instances[0].tags #=> Hash
@@ -1387,13 +1407,27 @@ module Aws::Panorama
1387
1407
 
1388
1408
  # Returns a list of devices.
1389
1409
  #
1410
+ # @option params [String] :device_aggregated_status_filter
1411
+ # Filter based on a device's status.
1412
+ #
1390
1413
  # @option params [Integer] :max_results
1391
1414
  # The maximum number of devices to return in one page of results.
1392
1415
  #
1416
+ # @option params [String] :name_filter
1417
+ # Filter based on device's name. Prefixes supported.
1418
+ #
1393
1419
  # @option params [String] :next_token
1394
1420
  # Specify the pagination token from a previous request to retrieve the
1395
1421
  # next page of results.
1396
1422
  #
1423
+ # @option params [String] :sort_by
1424
+ # The target column to be sorted on. Default column sort is
1425
+ # CREATED\_TIME.
1426
+ #
1427
+ # @option params [String] :sort_order
1428
+ # The sorting order for the returned list. SortOrder is DESCENDING by
1429
+ # default based on CREATED\_TIME. Otherwise, SortOrder is ASCENDING.
1430
+ #
1397
1431
  # @return [Types::ListDevicesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1398
1432
  #
1399
1433
  # * {Types::ListDevicesResponse#devices #devices} => Array&lt;Types::Device&gt;
@@ -1404,8 +1438,12 @@ module Aws::Panorama
1404
1438
  # @example Request syntax with placeholder values
1405
1439
  #
1406
1440
  # resp = client.list_devices({
1441
+ # device_aggregated_status_filter: "ERROR", # accepts ERROR, AWAITING_PROVISIONING, PENDING, FAILED, DELETING, ONLINE, OFFLINE, LEASE_EXPIRED, UPDATE_NEEDED, REBOOTING
1407
1442
  # max_results: 1,
1443
+ # name_filter: "NameFilter",
1408
1444
  # next_token: "NextToken",
1445
+ # sort_by: "DEVICE_ID", # accepts DEVICE_ID, CREATED_TIME, NAME, DEVICE_AGGREGATED_STATUS
1446
+ # sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
1409
1447
  # })
1410
1448
  #
1411
1449
  # @example Response structure
@@ -1413,11 +1451,20 @@ module Aws::Panorama
1413
1451
  # resp.devices #=> Array
1414
1452
  # resp.devices[0].brand #=> String, one of "AWS_PANORAMA", "LENOVO"
1415
1453
  # resp.devices[0].created_time #=> Time
1454
+ # resp.devices[0].current_software #=> String
1455
+ # resp.devices[0].description #=> String
1456
+ # resp.devices[0].device_aggregated_status #=> String, one of "ERROR", "AWAITING_PROVISIONING", "PENDING", "FAILED", "DELETING", "ONLINE", "OFFLINE", "LEASE_EXPIRED", "UPDATE_NEEDED", "REBOOTING"
1416
1457
  # resp.devices[0].device_id #=> String
1417
1458
  # resp.devices[0].last_updated_time #=> Time
1459
+ # resp.devices[0].latest_device_job.image_version #=> String
1460
+ # resp.devices[0].latest_device_job.job_type #=> String, one of "OTA", "REBOOT"
1461
+ # resp.devices[0].latest_device_job.status #=> String, one of "PENDING", "IN_PROGRESS", "VERIFYING", "REBOOTING", "DOWNLOADING", "COMPLETED", "FAILED"
1418
1462
  # resp.devices[0].lease_expiration_time #=> Time
1419
1463
  # resp.devices[0].name #=> String
1420
1464
  # resp.devices[0].provisioning_status #=> String, one of "AWAITING_PROVISIONING", "PENDING", "SUCCEEDED", "FAILED", "ERROR", "DELETING"
1465
+ # resp.devices[0].tags #=> Hash
1466
+ # resp.devices[0].tags["TagKey"] #=> String
1467
+ # resp.devices[0].type #=> String, one of "PANORAMA_APPLIANCE_DEVELOPER_KIT", "PANORAMA_APPLIANCE"
1421
1468
  # resp.next_token #=> String
1422
1469
  #
1423
1470
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/ListDevices AWS API Documentation
@@ -1463,6 +1510,7 @@ module Aws::Panorama
1463
1510
  # resp.device_jobs[0].device_id #=> String
1464
1511
  # resp.device_jobs[0].device_name #=> String
1465
1512
  # resp.device_jobs[0].job_id #=> String
1513
+ # resp.device_jobs[0].job_type #=> String, one of "OTA", "REBOOT"
1466
1514
  # resp.next_token #=> String
1467
1515
  #
1468
1516
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/ListDevicesJobs AWS API Documentation
@@ -1839,6 +1887,43 @@ module Aws::Panorama
1839
1887
  req.send_request(options)
1840
1888
  end
1841
1889
 
1890
+ # Signal camera nodes to stop or resume.
1891
+ #
1892
+ # @option params [required, String] :application_instance_id
1893
+ # An application instance ID.
1894
+ #
1895
+ # @option params [required, Array<Types::NodeSignal>] :node_signals
1896
+ # A list of signals.
1897
+ #
1898
+ # @return [Types::SignalApplicationInstanceNodeInstancesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1899
+ #
1900
+ # * {Types::SignalApplicationInstanceNodeInstancesResponse#application_instance_id #application_instance_id} => String
1901
+ #
1902
+ # @example Request syntax with placeholder values
1903
+ #
1904
+ # resp = client.signal_application_instance_node_instances({
1905
+ # application_instance_id: "ApplicationInstanceId", # required
1906
+ # node_signals: [ # required
1907
+ # {
1908
+ # node_instance_id: "NodeInstanceId", # required
1909
+ # signal: "PAUSE", # required, accepts PAUSE, RESUME
1910
+ # },
1911
+ # ],
1912
+ # })
1913
+ #
1914
+ # @example Response structure
1915
+ #
1916
+ # resp.application_instance_id #=> String
1917
+ #
1918
+ # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/SignalApplicationInstanceNodeInstances AWS API Documentation
1919
+ #
1920
+ # @overload signal_application_instance_node_instances(params = {})
1921
+ # @param [Hash] params ({})
1922
+ def signal_application_instance_node_instances(params = {}, options = {})
1923
+ req = build_request(:signal_application_instance_node_instances, params)
1924
+ req.send_request(options)
1925
+ end
1926
+
1842
1927
  # Tags a resource.
1843
1928
  #
1844
1929
  # @option params [required, String] :resource_arn
@@ -1938,7 +2023,7 @@ module Aws::Panorama
1938
2023
  params: params,
1939
2024
  config: config)
1940
2025
  context[:gem_name] = 'aws-sdk-panorama'
1941
- context[:gem_version] = '1.7.0'
2026
+ context[:gem_version] = '1.9.0'
1942
2027
  Seahorse::Client::Request.new(handlers, context)
1943
2028
  end
1944
2029
 
@@ -72,7 +72,9 @@ module Aws::Panorama
72
72
  DescribePackageVersionRequest = Shapes::StructureShape.new(name: 'DescribePackageVersionRequest')
73
73
  DescribePackageVersionResponse = Shapes::StructureShape.new(name: 'DescribePackageVersionResponse')
74
74
  Description = Shapes::StringShape.new(name: 'Description')
75
+ DesiredState = Shapes::StringShape.new(name: 'DesiredState')
75
76
  Device = Shapes::StructureShape.new(name: 'Device')
77
+ DeviceAggregatedStatus = Shapes::StringShape.new(name: 'DeviceAggregatedStatus')
76
78
  DeviceArn = Shapes::StringShape.new(name: 'DeviceArn')
77
79
  DeviceBrand = Shapes::StringShape.new(name: 'DeviceBrand')
78
80
  DeviceConnectionStatus = Shapes::StringShape.new(name: 'DeviceConnectionStatus')
@@ -83,6 +85,7 @@ module Aws::Panorama
83
85
  DeviceJobList = Shapes::ListShape.new(name: 'DeviceJobList')
84
86
  DeviceList = Shapes::ListShape.new(name: 'DeviceList')
85
87
  DeviceName = Shapes::StringShape.new(name: 'DeviceName')
88
+ DeviceReportedStatus = Shapes::StringShape.new(name: 'DeviceReportedStatus')
86
89
  DeviceSerialNumber = Shapes::StringShape.new(name: 'DeviceSerialNumber')
87
90
  DeviceStatus = Shapes::StringShape.new(name: 'DeviceStatus')
88
91
  DeviceType = Shapes::StringShape.new(name: 'DeviceType')
@@ -106,6 +109,7 @@ module Aws::Panorama
106
109
  JobType = Shapes::StringShape.new(name: 'JobType')
107
110
  LastUpdatedTime = Shapes::TimestampShape.new(name: 'LastUpdatedTime')
108
111
  LatestAlternateSoftware = Shapes::StringShape.new(name: 'LatestAlternateSoftware')
112
+ LatestDeviceJob = Shapes::StructureShape.new(name: 'LatestDeviceJob')
109
113
  LatestSoftware = Shapes::StringShape.new(name: 'LatestSoftware')
110
114
  LeaseExpirationTime = Shapes::TimestampShape.new(name: 'LeaseExpirationTime')
111
115
  ListApplicationInstanceDependenciesRequest = Shapes::StructureShape.new(name: 'ListApplicationInstanceDependenciesRequest')
@@ -118,6 +122,7 @@ module Aws::Panorama
118
122
  ListDevicesJobsResponse = Shapes::StructureShape.new(name: 'ListDevicesJobsResponse')
119
123
  ListDevicesRequest = Shapes::StructureShape.new(name: 'ListDevicesRequest')
120
124
  ListDevicesResponse = Shapes::StructureShape.new(name: 'ListDevicesResponse')
125
+ ListDevicesSortBy = Shapes::StringShape.new(name: 'ListDevicesSortBy')
121
126
  ListNodeFromTemplateJobsRequest = Shapes::StructureShape.new(name: 'ListNodeFromTemplateJobsRequest')
122
127
  ListNodeFromTemplateJobsResponse = Shapes::StructureShape.new(name: 'ListNodeFromTemplateJobsResponse')
123
128
  ListNodesRequest = Shapes::StructureShape.new(name: 'ListNodesRequest')
@@ -136,6 +141,7 @@ module Aws::Panorama
136
141
  Mask = Shapes::StringShape.new(name: 'Mask')
137
142
  MaxConnections = Shapes::IntegerShape.new(name: 'MaxConnections')
138
143
  MaxSize25 = Shapes::IntegerShape.new(name: 'MaxSize25')
144
+ NameFilter = Shapes::StringShape.new(name: 'NameFilter')
139
145
  NetworkConnectionStatus = Shapes::StringShape.new(name: 'NetworkConnectionStatus')
140
146
  NetworkPayload = Shapes::StructureShape.new(name: 'NetworkPayload')
141
147
  NetworkStatus = Shapes::StructureShape.new(name: 'NetworkStatus')
@@ -161,6 +167,9 @@ module Aws::Panorama
161
167
  NodePackageName = Shapes::StringShape.new(name: 'NodePackageName')
162
168
  NodePackagePatchVersion = Shapes::StringShape.new(name: 'NodePackagePatchVersion')
163
169
  NodePackageVersion = Shapes::StringShape.new(name: 'NodePackageVersion')
170
+ NodeSignal = Shapes::StructureShape.new(name: 'NodeSignal')
171
+ NodeSignalList = Shapes::ListShape.new(name: 'NodeSignalList')
172
+ NodeSignalValue = Shapes::StringShape.new(name: 'NodeSignalValue')
164
173
  NodesList = Shapes::ListShape.new(name: 'NodesList')
165
174
  NtpPayload = Shapes::StructureShape.new(name: 'NtpPayload')
166
175
  NtpServerList = Shapes::ListShape.new(name: 'NtpServerList')
@@ -200,12 +209,18 @@ module Aws::Panorama
200
209
  RegisterPackageVersionResponse = Shapes::StructureShape.new(name: 'RegisterPackageVersionResponse')
201
210
  RemoveApplicationInstanceRequest = Shapes::StructureShape.new(name: 'RemoveApplicationInstanceRequest')
202
211
  RemoveApplicationInstanceResponse = Shapes::StructureShape.new(name: 'RemoveApplicationInstanceResponse')
212
+ ReportedRuntimeContextState = Shapes::StructureShape.new(name: 'ReportedRuntimeContextState')
213
+ ReportedRuntimeContextStates = Shapes::ListShape.new(name: 'ReportedRuntimeContextStates')
203
214
  ResourceArn = Shapes::StringShape.new(name: 'ResourceArn')
204
215
  ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
205
216
  RetryAfterSeconds = Shapes::IntegerShape.new(name: 'RetryAfterSeconds')
217
+ RuntimeContextName = Shapes::StringShape.new(name: 'RuntimeContextName')
206
218
  RuntimeRoleArn = Shapes::StringShape.new(name: 'RuntimeRoleArn')
207
219
  S3Location = Shapes::StructureShape.new(name: 'S3Location')
208
220
  ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
221
+ SignalApplicationInstanceNodeInstancesRequest = Shapes::StructureShape.new(name: 'SignalApplicationInstanceNodeInstancesRequest')
222
+ SignalApplicationInstanceNodeInstancesResponse = Shapes::StructureShape.new(name: 'SignalApplicationInstanceNodeInstancesResponse')
223
+ SortOrder = Shapes::StringShape.new(name: 'SortOrder')
209
224
  StaticIpConnectionInfo = Shapes::StructureShape.new(name: 'StaticIpConnectionInfo')
210
225
  StatusFilter = Shapes::StringShape.new(name: 'StatusFilter')
211
226
  StorageLocation = Shapes::StructureShape.new(name: 'StorageLocation')
@@ -252,6 +267,7 @@ module Aws::Panorama
252
267
  ApplicationInstance.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
253
268
  ApplicationInstance.add_member(:health_status, Shapes::ShapeRef.new(shape: ApplicationInstanceHealthStatus, location_name: "HealthStatus"))
254
269
  ApplicationInstance.add_member(:name, Shapes::ShapeRef.new(shape: ApplicationInstanceName, location_name: "Name"))
270
+ ApplicationInstance.add_member(:runtime_context_states, Shapes::ShapeRef.new(shape: ReportedRuntimeContextStates, location_name: "RuntimeContextStates"))
255
271
  ApplicationInstance.add_member(:status, Shapes::ShapeRef.new(shape: ApplicationInstanceStatus, location_name: "Status"))
256
272
  ApplicationInstance.add_member(:status_description, Shapes::ShapeRef.new(shape: ApplicationInstanceStatusDescription, location_name: "StatusDescription"))
257
273
  ApplicationInstance.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
@@ -286,7 +302,7 @@ module Aws::Panorama
286
302
  CreateApplicationInstanceResponse.struct_class = Types::CreateApplicationInstanceResponse
287
303
 
288
304
  CreateJobForDevicesRequest.add_member(:device_ids, Shapes::ShapeRef.new(shape: DeviceIdList, required: true, location_name: "DeviceIds"))
289
- CreateJobForDevicesRequest.add_member(:device_job_config, Shapes::ShapeRef.new(shape: DeviceJobConfig, required: true, location_name: "DeviceJobConfig"))
305
+ CreateJobForDevicesRequest.add_member(:device_job_config, Shapes::ShapeRef.new(shape: DeviceJobConfig, location_name: "DeviceJobConfig"))
290
306
  CreateJobForDevicesRequest.add_member(:job_type, Shapes::ShapeRef.new(shape: JobType, required: true, location_name: "JobType"))
291
307
  CreateJobForDevicesRequest.struct_class = Types::CreateJobForDevicesRequest
292
308
 
@@ -371,6 +387,7 @@ module Aws::Panorama
371
387
  DescribeApplicationInstanceResponse.add_member(:health_status, Shapes::ShapeRef.new(shape: ApplicationInstanceHealthStatus, location_name: "HealthStatus"))
372
388
  DescribeApplicationInstanceResponse.add_member(:last_updated_time, Shapes::ShapeRef.new(shape: TimeStamp, location_name: "LastUpdatedTime"))
373
389
  DescribeApplicationInstanceResponse.add_member(:name, Shapes::ShapeRef.new(shape: ApplicationInstanceName, location_name: "Name"))
390
+ DescribeApplicationInstanceResponse.add_member(:runtime_context_states, Shapes::ShapeRef.new(shape: ReportedRuntimeContextStates, location_name: "RuntimeContextStates"))
374
391
  DescribeApplicationInstanceResponse.add_member(:runtime_role_arn, Shapes::ShapeRef.new(shape: RuntimeRoleArn, location_name: "RuntimeRoleArn"))
375
392
  DescribeApplicationInstanceResponse.add_member(:status, Shapes::ShapeRef.new(shape: ApplicationInstanceStatus, location_name: "Status"))
376
393
  DescribeApplicationInstanceResponse.add_member(:status_description, Shapes::ShapeRef.new(shape: ApplicationInstanceStatusDescription, location_name: "StatusDescription"))
@@ -387,6 +404,7 @@ module Aws::Panorama
387
404
  DescribeDeviceJobResponse.add_member(:device_type, Shapes::ShapeRef.new(shape: DeviceType, location_name: "DeviceType"))
388
405
  DescribeDeviceJobResponse.add_member(:image_version, Shapes::ShapeRef.new(shape: ImageVersion, location_name: "ImageVersion"))
389
406
  DescribeDeviceJobResponse.add_member(:job_id, Shapes::ShapeRef.new(shape: JobId, location_name: "JobId"))
407
+ DescribeDeviceJobResponse.add_member(:job_type, Shapes::ShapeRef.new(shape: JobType, location_name: "JobType"))
390
408
  DescribeDeviceJobResponse.add_member(:status, Shapes::ShapeRef.new(shape: UpdateProgress, location_name: "Status"))
391
409
  DescribeDeviceJobResponse.struct_class = Types::DescribeDeviceJobResponse
392
410
 
@@ -400,9 +418,11 @@ module Aws::Panorama
400
418
  DescribeDeviceResponse.add_member(:current_networking_status, Shapes::ShapeRef.new(shape: NetworkStatus, location_name: "CurrentNetworkingStatus"))
401
419
  DescribeDeviceResponse.add_member(:current_software, Shapes::ShapeRef.new(shape: CurrentSoftware, location_name: "CurrentSoftware"))
402
420
  DescribeDeviceResponse.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
421
+ DescribeDeviceResponse.add_member(:device_aggregated_status, Shapes::ShapeRef.new(shape: DeviceAggregatedStatus, location_name: "DeviceAggregatedStatus"))
403
422
  DescribeDeviceResponse.add_member(:device_connection_status, Shapes::ShapeRef.new(shape: DeviceConnectionStatus, location_name: "DeviceConnectionStatus"))
404
423
  DescribeDeviceResponse.add_member(:device_id, Shapes::ShapeRef.new(shape: DeviceId, location_name: "DeviceId"))
405
424
  DescribeDeviceResponse.add_member(:latest_alternate_software, Shapes::ShapeRef.new(shape: LatestAlternateSoftware, location_name: "LatestAlternateSoftware"))
425
+ DescribeDeviceResponse.add_member(:latest_device_job, Shapes::ShapeRef.new(shape: LatestDeviceJob, location_name: "LatestDeviceJob"))
406
426
  DescribeDeviceResponse.add_member(:latest_software, Shapes::ShapeRef.new(shape: LatestSoftware, location_name: "LatestSoftware"))
407
427
  DescribeDeviceResponse.add_member(:lease_expiration_time, Shapes::ShapeRef.new(shape: LeaseExpirationTime, location_name: "LeaseExpirationTime"))
408
428
  DescribeDeviceResponse.add_member(:name, Shapes::ShapeRef.new(shape: DeviceName, location_name: "Name"))
@@ -499,11 +519,17 @@ module Aws::Panorama
499
519
 
500
520
  Device.add_member(:brand, Shapes::ShapeRef.new(shape: DeviceBrand, location_name: "Brand"))
501
521
  Device.add_member(:created_time, Shapes::ShapeRef.new(shape: CreatedTime, location_name: "CreatedTime"))
522
+ Device.add_member(:current_software, Shapes::ShapeRef.new(shape: CurrentSoftware, location_name: "CurrentSoftware"))
523
+ Device.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
524
+ Device.add_member(:device_aggregated_status, Shapes::ShapeRef.new(shape: DeviceAggregatedStatus, location_name: "DeviceAggregatedStatus"))
502
525
  Device.add_member(:device_id, Shapes::ShapeRef.new(shape: DeviceId, location_name: "DeviceId"))
503
526
  Device.add_member(:last_updated_time, Shapes::ShapeRef.new(shape: LastUpdatedTime, location_name: "LastUpdatedTime"))
527
+ Device.add_member(:latest_device_job, Shapes::ShapeRef.new(shape: LatestDeviceJob, location_name: "LatestDeviceJob"))
504
528
  Device.add_member(:lease_expiration_time, Shapes::ShapeRef.new(shape: LeaseExpirationTime, location_name: "LeaseExpirationTime"))
505
529
  Device.add_member(:name, Shapes::ShapeRef.new(shape: DeviceName, location_name: "Name"))
506
530
  Device.add_member(:provisioning_status, Shapes::ShapeRef.new(shape: DeviceStatus, location_name: "ProvisioningStatus"))
531
+ Device.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
532
+ Device.add_member(:type, Shapes::ShapeRef.new(shape: DeviceType, location_name: "Type"))
507
533
  Device.struct_class = Types::Device
508
534
 
509
535
  DeviceIdList.member = Shapes::ShapeRef.new(shape: DeviceId)
@@ -512,6 +538,7 @@ module Aws::Panorama
512
538
  DeviceJob.add_member(:device_id, Shapes::ShapeRef.new(shape: DeviceId, location_name: "DeviceId"))
513
539
  DeviceJob.add_member(:device_name, Shapes::ShapeRef.new(shape: DeviceName, location_name: "DeviceName"))
514
540
  DeviceJob.add_member(:job_id, Shapes::ShapeRef.new(shape: JobId, location_name: "JobId"))
541
+ DeviceJob.add_member(:job_type, Shapes::ShapeRef.new(shape: JobType, location_name: "JobType"))
515
542
  DeviceJob.struct_class = Types::DeviceJob
516
543
 
517
544
  DeviceJobConfig.add_member(:ota_job_config, Shapes::ShapeRef.new(shape: OTAJobConfig, location_name: "OTAJobConfig"))
@@ -550,6 +577,11 @@ module Aws::Panorama
550
577
 
551
578
  JobTagsList.member = Shapes::ShapeRef.new(shape: JobResourceTags)
552
579
 
580
+ LatestDeviceJob.add_member(:image_version, Shapes::ShapeRef.new(shape: ImageVersion, location_name: "ImageVersion"))
581
+ LatestDeviceJob.add_member(:job_type, Shapes::ShapeRef.new(shape: JobType, location_name: "JobType"))
582
+ LatestDeviceJob.add_member(:status, Shapes::ShapeRef.new(shape: UpdateProgress, location_name: "Status"))
583
+ LatestDeviceJob.struct_class = Types::LatestDeviceJob
584
+
553
585
  ListApplicationInstanceDependenciesRequest.add_member(:application_instance_id, Shapes::ShapeRef.new(shape: ApplicationInstanceId, required: true, location: "uri", location_name: "ApplicationInstanceId"))
554
586
  ListApplicationInstanceDependenciesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxSize25, location: "querystring", location_name: "maxResults"))
555
587
  ListApplicationInstanceDependenciesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
@@ -587,8 +619,12 @@ module Aws::Panorama
587
619
  ListDevicesJobsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
588
620
  ListDevicesJobsResponse.struct_class = Types::ListDevicesJobsResponse
589
621
 
622
+ ListDevicesRequest.add_member(:device_aggregated_status_filter, Shapes::ShapeRef.new(shape: DeviceAggregatedStatus, location: "querystring", location_name: "DeviceAggregatedStatusFilter"))
590
623
  ListDevicesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxSize25, location: "querystring", location_name: "MaxResults"))
624
+ ListDevicesRequest.add_member(:name_filter, Shapes::ShapeRef.new(shape: NameFilter, location: "querystring", location_name: "NameFilter"))
591
625
  ListDevicesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "NextToken"))
626
+ ListDevicesRequest.add_member(:sort_by, Shapes::ShapeRef.new(shape: ListDevicesSortBy, location: "querystring", location_name: "SortBy"))
627
+ ListDevicesRequest.add_member(:sort_order, Shapes::ShapeRef.new(shape: SortOrder, location: "querystring", location_name: "SortOrder"))
592
628
  ListDevicesRequest.struct_class = Types::ListDevicesRequest
593
629
 
594
630
  ListDevicesResponse.add_member(:devices, Shapes::ShapeRef.new(shape: DeviceList, required: true, location_name: "Devices"))
@@ -711,6 +747,12 @@ module Aws::Panorama
711
747
  NodeOutputPort.add_member(:type, Shapes::ShapeRef.new(shape: PortType, location_name: "Type"))
712
748
  NodeOutputPort.struct_class = Types::NodeOutputPort
713
749
 
750
+ NodeSignal.add_member(:node_instance_id, Shapes::ShapeRef.new(shape: NodeInstanceId, required: true, location_name: "NodeInstanceId"))
751
+ NodeSignal.add_member(:signal, Shapes::ShapeRef.new(shape: NodeSignalValue, required: true, location_name: "Signal"))
752
+ NodeSignal.struct_class = Types::NodeSignal
753
+
754
+ NodeSignalList.member = Shapes::ShapeRef.new(shape: NodeSignal)
755
+
714
756
  NodesList.member = Shapes::ShapeRef.new(shape: Node)
715
757
 
716
758
  NtpPayload.add_member(:ntp_servers, Shapes::ShapeRef.new(shape: NtpServerList, required: true, location_name: "NtpServers"))
@@ -807,6 +849,14 @@ module Aws::Panorama
807
849
 
808
850
  RemoveApplicationInstanceResponse.struct_class = Types::RemoveApplicationInstanceResponse
809
851
 
852
+ ReportedRuntimeContextState.add_member(:desired_state, Shapes::ShapeRef.new(shape: DesiredState, required: true, location_name: "DesiredState"))
853
+ ReportedRuntimeContextState.add_member(:device_reported_status, Shapes::ShapeRef.new(shape: DeviceReportedStatus, required: true, location_name: "DeviceReportedStatus"))
854
+ ReportedRuntimeContextState.add_member(:device_reported_time, Shapes::ShapeRef.new(shape: TimeStamp, required: true, location_name: "DeviceReportedTime"))
855
+ ReportedRuntimeContextState.add_member(:runtime_context_name, Shapes::ShapeRef.new(shape: RuntimeContextName, required: true, location_name: "RuntimeContextName"))
856
+ ReportedRuntimeContextState.struct_class = Types::ReportedRuntimeContextState
857
+
858
+ ReportedRuntimeContextStates.member = Shapes::ShapeRef.new(shape: ReportedRuntimeContextState)
859
+
810
860
  ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Message"))
811
861
  ResourceNotFoundException.add_member(:resource_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ResourceId"))
812
862
  ResourceNotFoundException.add_member(:resource_type, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ResourceType"))
@@ -824,6 +874,13 @@ module Aws::Panorama
824
874
  ServiceQuotaExceededException.add_member(:service_code, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ServiceCode"))
825
875
  ServiceQuotaExceededException.struct_class = Types::ServiceQuotaExceededException
826
876
 
877
+ SignalApplicationInstanceNodeInstancesRequest.add_member(:application_instance_id, Shapes::ShapeRef.new(shape: ApplicationInstanceId, required: true, location: "uri", location_name: "ApplicationInstanceId"))
878
+ SignalApplicationInstanceNodeInstancesRequest.add_member(:node_signals, Shapes::ShapeRef.new(shape: NodeSignalList, required: true, location_name: "NodeSignals"))
879
+ SignalApplicationInstanceNodeInstancesRequest.struct_class = Types::SignalApplicationInstanceNodeInstancesRequest
880
+
881
+ SignalApplicationInstanceNodeInstancesResponse.add_member(:application_instance_id, Shapes::ShapeRef.new(shape: ApplicationInstanceId, required: true, location_name: "ApplicationInstanceId"))
882
+ SignalApplicationInstanceNodeInstancesResponse.struct_class = Types::SignalApplicationInstanceNodeInstancesResponse
883
+
827
884
  StaticIpConnectionInfo.add_member(:default_gateway, Shapes::ShapeRef.new(shape: DefaultGateway, required: true, location_name: "DefaultGateway"))
828
885
  StaticIpConnectionInfo.add_member(:dns, Shapes::ShapeRef.new(shape: DnsList, required: true, location_name: "Dns"))
829
886
  StaticIpConnectionInfo.add_member(:ip_address, Shapes::ShapeRef.new(shape: IpAddress, required: true, location_name: "IpAddress"))
@@ -1322,6 +1379,18 @@ module Aws::Panorama
1322
1379
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1323
1380
  end)
1324
1381
 
1382
+ api.add_operation(:signal_application_instance_node_instances, Seahorse::Model::Operation.new.tap do |o|
1383
+ o.name = "SignalApplicationInstanceNodeInstances"
1384
+ o.http_method = "PUT"
1385
+ o.http_request_uri = "/application-instances/{ApplicationInstanceId}/node-signals"
1386
+ o.input = Shapes::ShapeRef.new(shape: SignalApplicationInstanceNodeInstancesRequest)
1387
+ o.output = Shapes::ShapeRef.new(shape: SignalApplicationInstanceNodeInstancesResponse)
1388
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1389
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1390
+ o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
1391
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1392
+ end)
1393
+
1325
1394
  api.add_operation(:tag_resource, Seahorse::Model::Operation.new.tap do |o|
1326
1395
  o.name = "TagResource"
1327
1396
  o.http_method = "POST"
@@ -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: { # required
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 the job.
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
@@ -865,6 +880,11 @@ module Aws::Panorama
865
880
  # The device's description.
866
881
  # @return [String]
867
882
  #
883
+ # @!attribute [rw] device_aggregated_status
884
+ # A device's aggregated status. Including the device's connection
885
+ # status, provisioning status, and lease status.
886
+ # @return [String]
887
+ #
868
888
  # @!attribute [rw] device_connection_status
869
889
  # The device's connection status.
870
890
  # @return [String]
@@ -877,6 +897,11 @@ module Aws::Panorama
877
897
  # The most recent beta software release.
878
898
  # @return [String]
879
899
  #
900
+ # @!attribute [rw] latest_device_job
901
+ # A device's latest job. Includes the target image version, and the
902
+ # job status.
903
+ # @return [Types::LatestDeviceJob]
904
+ #
880
905
  # @!attribute [rw] latest_software
881
906
  # The latest software version available for the device.
882
907
  # @return [String]
@@ -919,9 +944,11 @@ module Aws::Panorama
919
944
  :current_networking_status,
920
945
  :current_software,
921
946
  :description,
947
+ :device_aggregated_status,
922
948
  :device_connection_status,
923
949
  :device_id,
924
950
  :latest_alternate_software,
951
+ :latest_device_job,
925
952
  :latest_software,
926
953
  :lease_expiration_time,
927
954
  :name,
@@ -1373,6 +1400,19 @@ module Aws::Panorama
1373
1400
  # When the device was created.
1374
1401
  # @return [Time]
1375
1402
  #
1403
+ # @!attribute [rw] current_software
1404
+ # A device's current software.
1405
+ # @return [String]
1406
+ #
1407
+ # @!attribute [rw] description
1408
+ # A description for the device.
1409
+ # @return [String]
1410
+ #
1411
+ # @!attribute [rw] device_aggregated_status
1412
+ # A device's aggregated status. Including the device's connection
1413
+ # status, provisioning status, and lease status.
1414
+ # @return [String]
1415
+ #
1376
1416
  # @!attribute [rw] device_id
1377
1417
  # The device's ID.
1378
1418
  # @return [String]
@@ -1381,6 +1421,11 @@ module Aws::Panorama
1381
1421
  # When the device was updated.
1382
1422
  # @return [Time]
1383
1423
  #
1424
+ # @!attribute [rw] latest_device_job
1425
+ # A device's latest job. Includes the target image version, and the
1426
+ # update job status.
1427
+ # @return [Types::LatestDeviceJob]
1428
+ #
1384
1429
  # @!attribute [rw] lease_expiration_time
1385
1430
  # The device's lease expiration time.
1386
1431
  # @return [Time]
@@ -1393,16 +1438,30 @@ module Aws::Panorama
1393
1438
  # The device's provisioning status.
1394
1439
  # @return [String]
1395
1440
  #
1441
+ # @!attribute [rw] tags
1442
+ # The device's tags.
1443
+ # @return [Hash<String,String>]
1444
+ #
1445
+ # @!attribute [rw] type
1446
+ # The device's type.
1447
+ # @return [String]
1448
+ #
1396
1449
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/Device AWS API Documentation
1397
1450
  #
1398
1451
  class Device < Struct.new(
1399
1452
  :brand,
1400
1453
  :created_time,
1454
+ :current_software,
1455
+ :description,
1456
+ :device_aggregated_status,
1401
1457
  :device_id,
1402
1458
  :last_updated_time,
1459
+ :latest_device_job,
1403
1460
  :lease_expiration_time,
1404
1461
  :name,
1405
- :provisioning_status)
1462
+ :provisioning_status,
1463
+ :tags,
1464
+ :type)
1406
1465
  SENSITIVE = []
1407
1466
  include Aws::Structure
1408
1467
  end
@@ -1425,13 +1484,18 @@ module Aws::Panorama
1425
1484
  # The job's ID.
1426
1485
  # @return [String]
1427
1486
  #
1487
+ # @!attribute [rw] job_type
1488
+ # The job's type.
1489
+ # @return [String]
1490
+ #
1428
1491
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/DeviceJob AWS API Documentation
1429
1492
  #
1430
1493
  class DeviceJob < Struct.new(
1431
1494
  :created_time,
1432
1495
  :device_id,
1433
1496
  :device_name,
1434
- :job_id)
1497
+ :job_id,
1498
+ :job_type)
1435
1499
  SENSITIVE = []
1436
1500
  include Aws::Structure
1437
1501
  end
@@ -1582,6 +1646,30 @@ module Aws::Panorama
1582
1646
  include Aws::Structure
1583
1647
  end
1584
1648
 
1649
+ # Returns information about the latest device job.
1650
+ #
1651
+ # @!attribute [rw] image_version
1652
+ # The target version of the device software.
1653
+ # @return [String]
1654
+ #
1655
+ # @!attribute [rw] job_type
1656
+ # The job's type.
1657
+ # @return [String]
1658
+ #
1659
+ # @!attribute [rw] status
1660
+ # Status of the latest device job.
1661
+ # @return [String]
1662
+ #
1663
+ # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/LatestDeviceJob AWS API Documentation
1664
+ #
1665
+ class LatestDeviceJob < Struct.new(
1666
+ :image_version,
1667
+ :job_type,
1668
+ :status)
1669
+ SENSITIVE = []
1670
+ include Aws::Structure
1671
+ end
1672
+
1585
1673
  # @note When making an API call, you may pass ListApplicationInstanceDependenciesRequest
1586
1674
  # data as a hash:
1587
1675
  #
@@ -1791,24 +1879,50 @@ module Aws::Panorama
1791
1879
  # data as a hash:
1792
1880
  #
1793
1881
  # {
1882
+ # device_aggregated_status_filter: "ERROR", # accepts ERROR, AWAITING_PROVISIONING, PENDING, FAILED, DELETING, ONLINE, OFFLINE, LEASE_EXPIRED, UPDATE_NEEDED, REBOOTING
1794
1883
  # max_results: 1,
1884
+ # name_filter: "NameFilter",
1795
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
1796
1888
  # }
1797
1889
  #
1890
+ # @!attribute [rw] device_aggregated_status_filter
1891
+ # Filter based on a device's status.
1892
+ # @return [String]
1893
+ #
1798
1894
  # @!attribute [rw] max_results
1799
1895
  # The maximum number of devices to return in one page of results.
1800
1896
  # @return [Integer]
1801
1897
  #
1898
+ # @!attribute [rw] name_filter
1899
+ # Filter based on device's name. Prefixes supported.
1900
+ # @return [String]
1901
+ #
1802
1902
  # @!attribute [rw] next_token
1803
1903
  # Specify the pagination token from a previous request to retrieve the
1804
1904
  # next page of results.
1805
1905
  # @return [String]
1806
1906
  #
1907
+ # @!attribute [rw] sort_by
1908
+ # The target column to be sorted on. Default column sort is
1909
+ # CREATED\_TIME.
1910
+ # @return [String]
1911
+ #
1912
+ # @!attribute [rw] sort_order
1913
+ # The sorting order for the returned list. SortOrder is DESCENDING by
1914
+ # default based on CREATED\_TIME. Otherwise, SortOrder is ASCENDING.
1915
+ # @return [String]
1916
+ #
1807
1917
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/ListDevicesRequest AWS API Documentation
1808
1918
  #
1809
1919
  class ListDevicesRequest < Struct.new(
1920
+ :device_aggregated_status_filter,
1810
1921
  :max_results,
1811
- :next_token)
1922
+ :name_filter,
1923
+ :next_token,
1924
+ :sort_by,
1925
+ :sort_order)
1812
1926
  SENSITIVE = []
1813
1927
  include Aws::Structure
1814
1928
  end
@@ -2421,6 +2535,33 @@ module Aws::Panorama
2421
2535
  include Aws::Structure
2422
2536
  end
2423
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
+
2424
2565
  # Network time protocol (NTP) server settings. Use this option to
2425
2566
  # connect to local NTP servers instead of `pool.ntp.org`.
2426
2567
  #
@@ -2906,6 +3047,35 @@ module Aws::Panorama
2906
3047
  #
2907
3048
  class RemoveApplicationInstanceResponse < Aws::EmptyStructure; end
2908
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
+
2909
3079
  # The target resource was not found.
2910
3080
  #
2911
3081
  # @!attribute [rw] message
@@ -2995,6 +3165,48 @@ module Aws::Panorama
2995
3165
  include Aws::Structure
2996
3166
  end
2997
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
+
2998
3210
  # A static IP configuration.
2999
3211
  #
3000
3212
  # @note When making an API call, you may pass StaticIpConnectionInfo
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-panorama/customizations'
48
48
  # @!group service
49
49
  module Aws::Panorama
50
50
 
51
- GEM_VERSION = '1.7.0'
51
+ GEM_VERSION = '1.9.0'
52
52
 
53
53
  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.7.0
4
+ version: 1.9.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-04-06 00:00:00.000000000 Z
11
+ date: 2022-10-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core