aws-sdk-panorama 1.4.0 → 1.7.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.
@@ -24,16 +24,34 @@ module Aws::Panorama
24
24
  include Aws::Structure
25
25
  end
26
26
 
27
- # An application instance on a device.
27
+ # Details about a beta appliance software update.
28
28
  #
29
- # @!attribute [rw] name
30
- # The application instance's name.
29
+ # @!attribute [rw] version
30
+ # The appliance software version.
31
31
  # @return [String]
32
32
  #
33
+ # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/AlternateSoftwareMetadata AWS API Documentation
34
+ #
35
+ class AlternateSoftwareMetadata < Struct.new(
36
+ :version)
37
+ SENSITIVE = []
38
+ include Aws::Structure
39
+ end
40
+
41
+ # An application instance on a device.
42
+ #
33
43
  # @!attribute [rw] application_instance_id
34
44
  # The application instance's ID.
35
45
  # @return [String]
36
46
  #
47
+ # @!attribute [rw] arn
48
+ # The application instance's ARN.
49
+ # @return [String]
50
+ #
51
+ # @!attribute [rw] created_time
52
+ # When the application instance was created.
53
+ # @return [Time]
54
+ #
37
55
  # @!attribute [rw] default_runtime_context_device
38
56
  # The device's ID.
39
57
  # @return [String]
@@ -46,24 +64,20 @@ module Aws::Panorama
46
64
  # The application instance's description.
47
65
  # @return [String]
48
66
  #
49
- # @!attribute [rw] status
50
- # The application instance's status.
51
- # @return [String]
52
- #
53
67
  # @!attribute [rw] health_status
54
68
  # The application instance's health status.
55
69
  # @return [String]
56
70
  #
57
- # @!attribute [rw] status_description
58
- # The application instance's status description.
71
+ # @!attribute [rw] name
72
+ # The application instance's name.
59
73
  # @return [String]
60
74
  #
61
- # @!attribute [rw] created_time
62
- # When the application instance was created.
63
- # @return [Time]
75
+ # @!attribute [rw] status
76
+ # The application instance's status.
77
+ # @return [String]
64
78
  #
65
- # @!attribute [rw] arn
66
- # The application instance's ARN.
79
+ # @!attribute [rw] status_description
80
+ # The application instance's status description.
67
81
  # @return [String]
68
82
  #
69
83
  # @!attribute [rw] tags
@@ -73,16 +87,16 @@ module Aws::Panorama
73
87
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/ApplicationInstance AWS API Documentation
74
88
  #
75
89
  class ApplicationInstance < Struct.new(
76
- :name,
77
90
  :application_instance_id,
91
+ :arn,
92
+ :created_time,
78
93
  :default_runtime_context_device,
79
94
  :default_runtime_context_device_name,
80
95
  :description,
81
- :status,
82
96
  :health_status,
97
+ :name,
98
+ :status,
83
99
  :status_description,
84
- :created_time,
85
- :arn,
86
100
  :tags)
87
101
  SENSITIVE = []
88
102
  include Aws::Structure
@@ -90,6 +104,14 @@ module Aws::Panorama
90
104
 
91
105
  # The target resource is in use.
92
106
  #
107
+ # @!attribute [rw] error_arguments
108
+ # A list of attributes that led to the exception and their values.
109
+ # @return [Array<Types::ConflictExceptionErrorArgument>]
110
+ #
111
+ # @!attribute [rw] error_id
112
+ # A unique ID for the error.
113
+ # @return [String]
114
+ #
93
115
  # @!attribute [rw] message
94
116
  # @return [String]
95
117
  #
@@ -101,22 +123,14 @@ module Aws::Panorama
101
123
  # The resource's type.
102
124
  # @return [String]
103
125
  #
104
- # @!attribute [rw] error_id
105
- # A unique ID for the error.
106
- # @return [String]
107
- #
108
- # @!attribute [rw] error_arguments
109
- # A list of attributes that led to the exception and their values.
110
- # @return [Array<Types::ConflictExceptionErrorArgument>]
111
- #
112
126
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/ConflictException AWS API Documentation
113
127
  #
114
128
  class ConflictException < Struct.new(
129
+ :error_arguments,
130
+ :error_id,
115
131
  :message,
116
132
  :resource_id,
117
- :resource_type,
118
- :error_id,
119
- :error_arguments)
133
+ :resource_type)
120
134
  SENSITIVE = []
121
135
  include Aws::Structure
122
136
  end
@@ -144,50 +158,50 @@ module Aws::Panorama
144
158
  # data as a hash:
145
159
  #
146
160
  # {
147
- # name: "ApplicationInstanceName",
161
+ # application_instance_id_to_replace: "ApplicationInstanceId",
162
+ # default_runtime_context_device: "DefaultRuntimeContextDevice", # required
148
163
  # description: "Description",
149
- # manifest_payload: { # required
150
- # payload_data: "ManifestPayloadData",
151
- # },
152
164
  # manifest_overrides_payload: {
153
165
  # payload_data: "ManifestOverridesPayloadData",
154
166
  # },
155
- # application_instance_id_to_replace: "ApplicationInstanceId",
167
+ # manifest_payload: { # required
168
+ # payload_data: "ManifestPayloadData",
169
+ # },
170
+ # name: "ApplicationInstanceName",
156
171
  # runtime_role_arn: "RuntimeRoleArn",
157
- # default_runtime_context_device: "DefaultRuntimeContextDevice", # required
158
172
  # tags: {
159
173
  # "TagKey" => "TagValue",
160
174
  # },
161
175
  # }
162
176
  #
163
- # @!attribute [rw] name
164
- # A name for the application instance.
177
+ # @!attribute [rw] application_instance_id_to_replace
178
+ # The ID of an application instance to replace with the new instance.
179
+ # @return [String]
180
+ #
181
+ # @!attribute [rw] default_runtime_context_device
182
+ # A device's ID.
165
183
  # @return [String]
166
184
  #
167
185
  # @!attribute [rw] description
168
186
  # A description for the application instance.
169
187
  # @return [String]
170
188
  #
171
- # @!attribute [rw] manifest_payload
172
- # The application's manifest document.
173
- # @return [Types::ManifestPayload]
174
- #
175
189
  # @!attribute [rw] manifest_overrides_payload
176
190
  # Setting overrides for the application manifest.
177
191
  # @return [Types::ManifestOverridesPayload]
178
192
  #
179
- # @!attribute [rw] application_instance_id_to_replace
180
- # The ID of an application instance to replace with the new instance.
193
+ # @!attribute [rw] manifest_payload
194
+ # The application's manifest document.
195
+ # @return [Types::ManifestPayload]
196
+ #
197
+ # @!attribute [rw] name
198
+ # A name for the application instance.
181
199
  # @return [String]
182
200
  #
183
201
  # @!attribute [rw] runtime_role_arn
184
202
  # The ARN of a runtime role for the application instance.
185
203
  # @return [String]
186
204
  #
187
- # @!attribute [rw] default_runtime_context_device
188
- # A device's ID.
189
- # @return [String]
190
- #
191
205
  # @!attribute [rw] tags
192
206
  # Tags for the application instance.
193
207
  # @return [Hash<String,String>]
@@ -195,13 +209,13 @@ module Aws::Panorama
195
209
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/CreateApplicationInstanceRequest AWS API Documentation
196
210
  #
197
211
  class CreateApplicationInstanceRequest < Struct.new(
198
- :name,
212
+ :application_instance_id_to_replace,
213
+ :default_runtime_context_device,
199
214
  :description,
200
- :manifest_payload,
201
215
  :manifest_overrides_payload,
202
- :application_instance_id_to_replace,
216
+ :manifest_payload,
217
+ :name,
203
218
  :runtime_role_arn,
204
- :default_runtime_context_device,
205
219
  :tags)
206
220
  SENSITIVE = []
207
221
  include Aws::Structure
@@ -270,14 +284,6 @@ module Aws::Panorama
270
284
  # data as a hash:
271
285
  #
272
286
  # {
273
- # template_type: "RTSP_CAMERA_STREAM", # required, accepts RTSP_CAMERA_STREAM
274
- # output_package_name: "NodePackageName", # required
275
- # output_package_version: "NodePackageVersion", # required
276
- # node_name: "NodeName", # required
277
- # node_description: "Description",
278
- # template_parameters: { # required
279
- # "TemplateKey" => "TemplateValue",
280
- # },
281
287
  # job_tags: [
282
288
  # {
283
289
  # resource_type: "PACKAGE", # required, accepts PACKAGE
@@ -286,10 +292,26 @@ module Aws::Panorama
286
292
  # },
287
293
  # },
288
294
  # ],
295
+ # node_description: "Description",
296
+ # node_name: "NodeName", # required
297
+ # output_package_name: "NodePackageName", # required
298
+ # output_package_version: "NodePackageVersion", # required
299
+ # template_parameters: { # required
300
+ # "TemplateKey" => "TemplateValue",
301
+ # },
302
+ # template_type: "RTSP_CAMERA_STREAM", # required, accepts RTSP_CAMERA_STREAM
289
303
  # }
290
304
  #
291
- # @!attribute [rw] template_type
292
- # The type of node.
305
+ # @!attribute [rw] job_tags
306
+ # Tags for the job.
307
+ # @return [Array<Types::JobResourceTags>]
308
+ #
309
+ # @!attribute [rw] node_description
310
+ # A description for the node.
311
+ # @return [String]
312
+ #
313
+ # @!attribute [rw] node_name
314
+ # A name for the node.
293
315
  # @return [String]
294
316
  #
295
317
  # @!attribute [rw] output_package_name
@@ -300,32 +322,24 @@ module Aws::Panorama
300
322
  # An output package version for the node.
301
323
  # @return [String]
302
324
  #
303
- # @!attribute [rw] node_name
304
- # A name for the node.
305
- # @return [String]
306
- #
307
- # @!attribute [rw] node_description
308
- # A description for the node.
309
- # @return [String]
310
- #
311
325
  # @!attribute [rw] template_parameters
312
326
  # Template parameters for the node.
313
327
  # @return [Hash<String,String>]
314
328
  #
315
- # @!attribute [rw] job_tags
316
- # Tags for the job.
317
- # @return [Array<Types::JobResourceTags>]
329
+ # @!attribute [rw] template_type
330
+ # The type of node.
331
+ # @return [String]
318
332
  #
319
333
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/CreateNodeFromTemplateJobRequest AWS API Documentation
320
334
  #
321
335
  class CreateNodeFromTemplateJobRequest < Struct.new(
322
- :template_type,
336
+ :job_tags,
337
+ :node_description,
338
+ :node_name,
323
339
  :output_package_name,
324
340
  :output_package_version,
325
- :node_name,
326
- :node_description,
327
341
  :template_parameters,
328
- :job_tags)
342
+ :template_type)
329
343
  SENSITIVE = []
330
344
  include Aws::Structure
331
345
  end
@@ -346,24 +360,16 @@ module Aws::Panorama
346
360
  # data as a hash:
347
361
  #
348
362
  # {
349
- # job_type: "NODE_PACKAGE_VERSION", # required, accepts NODE_PACKAGE_VERSION
363
+ # client_token: "ClientToken", # required
350
364
  # input_config: { # required
351
365
  # package_version_input_config: {
352
366
  # s3_location: { # required
353
- # region: "Region",
354
367
  # bucket_name: "BucketName", # required
355
368
  # object_key: "ObjectKey", # required
369
+ # region: "Region",
356
370
  # },
357
371
  # },
358
372
  # },
359
- # output_config: { # required
360
- # package_version_output_config: {
361
- # package_name: "NodePackageName", # required
362
- # package_version: "NodePackageVersion", # required
363
- # mark_latest: false,
364
- # },
365
- # },
366
- # client_token: "ClientToken", # required
367
373
  # job_tags: [
368
374
  # {
369
375
  # resource_type: "PACKAGE", # required, accepts PACKAGE
@@ -372,36 +378,44 @@ module Aws::Panorama
372
378
  # },
373
379
  # },
374
380
  # ],
381
+ # job_type: "NODE_PACKAGE_VERSION", # required, accepts NODE_PACKAGE_VERSION, MARKETPLACE_NODE_PACKAGE_VERSION
382
+ # output_config: { # required
383
+ # package_version_output_config: {
384
+ # mark_latest: false,
385
+ # package_name: "NodePackageName", # required
386
+ # package_version: "NodePackageVersion", # required
387
+ # },
388
+ # },
375
389
  # }
376
390
  #
377
- # @!attribute [rw] job_type
378
- # A job type for the package import job.
391
+ # @!attribute [rw] client_token
392
+ # A client token for the package import job.
379
393
  # @return [String]
380
394
  #
381
395
  # @!attribute [rw] input_config
382
396
  # An input config for the package import job.
383
397
  # @return [Types::PackageImportJobInputConfig]
384
398
  #
385
- # @!attribute [rw] output_config
386
- # An output config for the package import job.
387
- # @return [Types::PackageImportJobOutputConfig]
388
- #
389
- # @!attribute [rw] client_token
390
- # A client token for the package import job.
391
- # @return [String]
392
- #
393
399
  # @!attribute [rw] job_tags
394
400
  # Tags for the package import job.
395
401
  # @return [Array<Types::JobResourceTags>]
396
402
  #
403
+ # @!attribute [rw] job_type
404
+ # A job type for the package import job.
405
+ # @return [String]
406
+ #
407
+ # @!attribute [rw] output_config
408
+ # An output config for the package import job.
409
+ # @return [Types::PackageImportJobOutputConfig]
410
+ #
397
411
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/CreatePackageImportJobRequest AWS API Documentation
398
412
  #
399
413
  class CreatePackageImportJobRequest < Struct.new(
400
- :job_type,
401
- :input_config,
402
- :output_config,
403
414
  :client_token,
404
- :job_tags)
415
+ :input_config,
416
+ :job_tags,
417
+ :job_type,
418
+ :output_config)
405
419
  SENSITIVE = []
406
420
  include Aws::Structure
407
421
  end
@@ -445,14 +459,14 @@ module Aws::Panorama
445
459
  include Aws::Structure
446
460
  end
447
461
 
448
- # @!attribute [rw] package_id
449
- # The package's ID.
450
- # @return [String]
451
- #
452
462
  # @!attribute [rw] arn
453
463
  # The package's ARN.
454
464
  # @return [String]
455
465
  #
466
+ # @!attribute [rw] package_id
467
+ # The package's ID.
468
+ # @return [String]
469
+ #
456
470
  # @!attribute [rw] storage_location
457
471
  # The package's storage location.
458
472
  # @return [Types::StorageLocation]
@@ -460,8 +474,8 @@ module Aws::Panorama
460
474
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/CreatePackageResponse AWS API Documentation
461
475
  #
462
476
  class CreatePackageResponse < Struct.new(
463
- :package_id,
464
477
  :arn,
478
+ :package_id,
465
479
  :storage_location)
466
480
  SENSITIVE = []
467
481
  include Aws::Structure
@@ -502,24 +516,24 @@ module Aws::Panorama
502
516
  # data as a hash:
503
517
  #
504
518
  # {
505
- # package_id: "NodePackageId", # required
506
519
  # force_delete: false,
520
+ # package_id: "NodePackageId", # required
507
521
  # }
508
522
  #
509
- # @!attribute [rw] package_id
510
- # The package's ID.
511
- # @return [String]
512
- #
513
523
  # @!attribute [rw] force_delete
514
524
  # Delete the package even if it has artifacts stored in its access
515
525
  # point. Deletes the package's artifacts from Amazon S3.
516
526
  # @return [Boolean]
517
527
  #
528
+ # @!attribute [rw] package_id
529
+ # The package's ID.
530
+ # @return [String]
531
+ #
518
532
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/DeletePackageRequest AWS API Documentation
519
533
  #
520
534
  class DeletePackageRequest < Struct.new(
521
- :package_id,
522
- :force_delete)
535
+ :force_delete,
536
+ :package_id)
523
537
  SENSITIVE = []
524
538
  include Aws::Structure
525
539
  end
@@ -595,49 +609,49 @@ module Aws::Panorama
595
609
  include Aws::Structure
596
610
  end
597
611
 
598
- # @!attribute [rw] name
599
- # The application instance's name.
612
+ # @!attribute [rw] application_instance_id
613
+ # The application instance's ID.
600
614
  # @return [String]
601
615
  #
602
- # @!attribute [rw] description
603
- # The application instance's description.
616
+ # @!attribute [rw] application_instance_id_to_replace
617
+ # The ID of the application instance that this instance replaced.
604
618
  # @return [String]
605
619
  #
620
+ # @!attribute [rw] created_time
621
+ # When the application instance was created.
622
+ # @return [Time]
623
+ #
606
624
  # @!attribute [rw] default_runtime_context_device
607
625
  # The application instance's default runtime context device.
608
626
  # @return [String]
609
627
  #
610
- # @!attribute [rw] manifest_payload
611
- # The application instance's configuration manifest.
612
- # @return [Types::ManifestPayload]
628
+ # @!attribute [rw] description
629
+ # The application instance's description.
630
+ # @return [String]
613
631
  #
614
632
  # @!attribute [rw] manifest_overrides_payload
615
633
  # Parameter overrides for the configuration manifest.
616
634
  # @return [Types::ManifestOverridesPayload]
617
635
  #
618
- # @!attribute [rw] application_instance_id_to_replace
619
- # The ID of the application instance that this instance replaced.
620
- # @return [String]
621
- #
622
- # @!attribute [rw] created_time
623
- # When the application instance was created.
624
- # @return [Time]
636
+ # @!attribute [rw] manifest_payload
637
+ # The application instance's configuration manifest.
638
+ # @return [Types::ManifestPayload]
625
639
  #
626
- # @!attribute [rw] application_instance_id
627
- # The application instance's ID.
640
+ # @!attribute [rw] name
641
+ # The application instance's name.
628
642
  # @return [String]
629
643
  #
630
644
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/DescribeApplicationInstanceDetailsResponse AWS API Documentation
631
645
  #
632
646
  class DescribeApplicationInstanceDetailsResponse < Struct.new(
633
- :name,
634
- :description,
635
- :default_runtime_context_device,
636
- :manifest_payload,
637
- :manifest_overrides_payload,
647
+ :application_instance_id,
638
648
  :application_instance_id_to_replace,
639
649
  :created_time,
640
- :application_instance_id)
650
+ :default_runtime_context_device,
651
+ :description,
652
+ :manifest_overrides_payload,
653
+ :manifest_payload,
654
+ :name)
641
655
  SENSITIVE = []
642
656
  include Aws::Structure
643
657
  end
@@ -661,14 +675,22 @@ module Aws::Panorama
661
675
  include Aws::Structure
662
676
  end
663
677
 
664
- # @!attribute [rw] name
665
- # The application instance's name.
678
+ # @!attribute [rw] application_instance_id
679
+ # The application instance's ID.
666
680
  # @return [String]
667
681
  #
668
- # @!attribute [rw] description
669
- # The application instance's description.
682
+ # @!attribute [rw] application_instance_id_to_replace
683
+ # The ID of the application instance that this instance replaced.
684
+ # @return [String]
685
+ #
686
+ # @!attribute [rw] arn
687
+ # The application instance's ARN.
670
688
  # @return [String]
671
689
  #
690
+ # @!attribute [rw] created_time
691
+ # When the application instance was created.
692
+ # @return [Time]
693
+ #
672
694
  # @!attribute [rw] default_runtime_context_device
673
695
  # The device's ID.
674
696
  # @return [String]
@@ -677,40 +699,32 @@ module Aws::Panorama
677
699
  # The device's bane.
678
700
  # @return [String]
679
701
  #
680
- # @!attribute [rw] application_instance_id_to_replace
681
- # The ID of the application instance that this instance replaced.
682
- # @return [String]
683
- #
684
- # @!attribute [rw] runtime_role_arn
685
- # The application instance's runtime role ARN.
686
- # @return [String]
687
- #
688
- # @!attribute [rw] status
689
- # The application instance's status.
702
+ # @!attribute [rw] description
703
+ # The application instance's description.
690
704
  # @return [String]
691
705
  #
692
706
  # @!attribute [rw] health_status
693
707
  # The application instance's health status.
694
708
  # @return [String]
695
709
  #
696
- # @!attribute [rw] status_description
697
- # The application instance's status description.
698
- # @return [String]
699
- #
700
- # @!attribute [rw] created_time
701
- # When the application instance was created.
702
- # @return [Time]
703
- #
704
710
  # @!attribute [rw] last_updated_time
705
711
  # The application instance was updated.
706
712
  # @return [Time]
707
713
  #
708
- # @!attribute [rw] application_instance_id
709
- # The application instance's ID.
714
+ # @!attribute [rw] name
715
+ # The application instance's name.
710
716
  # @return [String]
711
717
  #
712
- # @!attribute [rw] arn
713
- # The application instance's ARN.
718
+ # @!attribute [rw] runtime_role_arn
719
+ # The application instance's runtime role ARN.
720
+ # @return [String]
721
+ #
722
+ # @!attribute [rw] status
723
+ # The application instance's status.
724
+ # @return [String]
725
+ #
726
+ # @!attribute [rw] status_description
727
+ # The application instance's status description.
714
728
  # @return [String]
715
729
  #
716
730
  # @!attribute [rw] tags
@@ -720,19 +734,19 @@ module Aws::Panorama
720
734
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/DescribeApplicationInstanceResponse AWS API Documentation
721
735
  #
722
736
  class DescribeApplicationInstanceResponse < Struct.new(
723
- :name,
724
- :description,
737
+ :application_instance_id,
738
+ :application_instance_id_to_replace,
739
+ :arn,
740
+ :created_time,
725
741
  :default_runtime_context_device,
726
742
  :default_runtime_context_device_name,
727
- :application_instance_id_to_replace,
743
+ :description,
744
+ :health_status,
745
+ :last_updated_time,
746
+ :name,
728
747
  :runtime_role_arn,
729
748
  :status,
730
- :health_status,
731
749
  :status_description,
732
- :created_time,
733
- :last_updated_time,
734
- :application_instance_id,
735
- :arn,
736
750
  :tags)
737
751
  SENSITIVE = []
738
752
  include Aws::Structure
@@ -757,18 +771,18 @@ module Aws::Panorama
757
771
  include Aws::Structure
758
772
  end
759
773
 
760
- # @!attribute [rw] job_id
761
- # The job's ID.
774
+ # @!attribute [rw] created_time
775
+ # When the job was created.
776
+ # @return [Time]
777
+ #
778
+ # @!attribute [rw] device_arn
779
+ # The device's ARN.
762
780
  # @return [String]
763
781
  #
764
782
  # @!attribute [rw] device_id
765
783
  # The device's ID.
766
784
  # @return [String]
767
785
  #
768
- # @!attribute [rw] device_arn
769
- # The device's ARN.
770
- # @return [String]
771
- #
772
786
  # @!attribute [rw] device_name
773
787
  # The device's name.
774
788
  # @return [String]
@@ -781,25 +795,25 @@ module Aws::Panorama
781
795
  # For an OTA job, the target version of the device software.
782
796
  # @return [String]
783
797
  #
798
+ # @!attribute [rw] job_id
799
+ # The job's ID.
800
+ # @return [String]
801
+ #
784
802
  # @!attribute [rw] status
785
803
  # The job's status.
786
804
  # @return [String]
787
805
  #
788
- # @!attribute [rw] created_time
789
- # When the job was created.
790
- # @return [Time]
791
- #
792
806
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/DescribeDeviceJobResponse AWS API Documentation
793
807
  #
794
808
  class DescribeDeviceJobResponse < Struct.new(
795
- :job_id,
796
- :device_id,
809
+ :created_time,
797
810
  :device_arn,
811
+ :device_id,
798
812
  :device_name,
799
813
  :device_type,
800
814
  :image_version,
801
- :status,
802
- :created_time)
815
+ :job_id,
816
+ :status)
803
817
  SENSITIVE = []
804
818
  include Aws::Structure
805
819
  end
@@ -823,44 +837,64 @@ module Aws::Panorama
823
837
  include Aws::Structure
824
838
  end
825
839
 
826
- # @!attribute [rw] device_id
827
- # The device's ID.
840
+ # @!attribute [rw] alternate_softwares
841
+ # Beta software releases available for the device.
842
+ # @return [Array<Types::AlternateSoftwareMetadata>]
843
+ #
844
+ # @!attribute [rw] arn
845
+ # The device's ARN.
828
846
  # @return [String]
829
847
  #
830
- # @!attribute [rw] name
831
- # The device's name.
848
+ # @!attribute [rw] brand
849
+ # The device's maker.
832
850
  # @return [String]
833
851
  #
834
- # @!attribute [rw] arn
835
- # The device's ARN.
852
+ # @!attribute [rw] created_time
853
+ # When the device was created.
854
+ # @return [Time]
855
+ #
856
+ # @!attribute [rw] current_networking_status
857
+ # The device's networking status.
858
+ # @return [Types::NetworkStatus]
859
+ #
860
+ # @!attribute [rw] current_software
861
+ # The device's current software version.
836
862
  # @return [String]
837
863
  #
838
864
  # @!attribute [rw] description
839
865
  # The device's description.
840
866
  # @return [String]
841
867
  #
842
- # @!attribute [rw] type
843
- # The device's type.
844
- # @return [String]
845
- #
846
868
  # @!attribute [rw] device_connection_status
847
869
  # The device's connection status.
848
870
  # @return [String]
849
871
  #
850
- # @!attribute [rw] created_time
851
- # When the device was created.
852
- # @return [Time]
872
+ # @!attribute [rw] device_id
873
+ # The device's ID.
874
+ # @return [String]
853
875
  #
854
- # @!attribute [rw] provisioning_status
855
- # The device's provisioning status.
876
+ # @!attribute [rw] latest_alternate_software
877
+ # The most recent beta software release.
856
878
  # @return [String]
857
879
  #
858
880
  # @!attribute [rw] latest_software
859
881
  # The latest software version available for the device.
860
882
  # @return [String]
861
883
  #
862
- # @!attribute [rw] current_software
863
- # The device's current software version.
884
+ # @!attribute [rw] lease_expiration_time
885
+ # The device's lease expiration time.
886
+ # @return [Time]
887
+ #
888
+ # @!attribute [rw] name
889
+ # The device's name.
890
+ # @return [String]
891
+ #
892
+ # @!attribute [rw] networking_configuration
893
+ # The device's networking configuration.
894
+ # @return [Types::NetworkPayload]
895
+ #
896
+ # @!attribute [rw] provisioning_status
897
+ # The device's provisioning status.
864
898
  # @return [String]
865
899
  #
866
900
  # @!attribute [rw] serial_number
@@ -871,36 +905,31 @@ module Aws::Panorama
871
905
  # The device's tags.
872
906
  # @return [Hash<String,String>]
873
907
  #
874
- # @!attribute [rw] networking_configuration
875
- # The device's networking configuration.
876
- # @return [Types::NetworkPayload]
877
- #
878
- # @!attribute [rw] current_networking_status
879
- # The device's networking status.
880
- # @return [Types::NetworkStatus]
881
- #
882
- # @!attribute [rw] lease_expiration_time
883
- # The device's lease expiration time.
884
- # @return [Time]
908
+ # @!attribute [rw] type
909
+ # The device's type.
910
+ # @return [String]
885
911
  #
886
912
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/DescribeDeviceResponse AWS API Documentation
887
913
  #
888
914
  class DescribeDeviceResponse < Struct.new(
889
- :device_id,
890
- :name,
915
+ :alternate_softwares,
891
916
  :arn,
917
+ :brand,
918
+ :created_time,
919
+ :current_networking_status,
920
+ :current_software,
892
921
  :description,
893
- :type,
894
922
  :device_connection_status,
895
- :created_time,
896
- :provisioning_status,
923
+ :device_id,
924
+ :latest_alternate_software,
897
925
  :latest_software,
898
- :current_software,
926
+ :lease_expiration_time,
927
+ :name,
928
+ :networking_configuration,
929
+ :provisioning_status,
899
930
  :serial_number,
900
931
  :tags,
901
- :networking_configuration,
902
- :current_networking_status,
903
- :lease_expiration_time)
932
+ :type)
904
933
  SENSITIVE = []
905
934
  include Aws::Structure
906
935
  end
@@ -924,26 +953,30 @@ module Aws::Panorama
924
953
  include Aws::Structure
925
954
  end
926
955
 
956
+ # @!attribute [rw] created_time
957
+ # When the job was created.
958
+ # @return [Time]
959
+ #
927
960
  # @!attribute [rw] job_id
928
961
  # The job's ID.
929
962
  # @return [String]
930
963
  #
931
- # @!attribute [rw] status
932
- # The job's status.
933
- # @return [String]
934
- #
935
- # @!attribute [rw] status_message
936
- # The job's status message.
937
- # @return [String]
938
- #
939
- # @!attribute [rw] created_time
940
- # When the job was created.
941
- # @return [Time]
964
+ # @!attribute [rw] job_tags
965
+ # The job's tags.
966
+ # @return [Array<Types::JobResourceTags>]
942
967
  #
943
968
  # @!attribute [rw] last_updated_time
944
969
  # When the job was updated.
945
970
  # @return [Time]
946
971
  #
972
+ # @!attribute [rw] node_description
973
+ # The node's description.
974
+ # @return [String]
975
+ #
976
+ # @!attribute [rw] node_name
977
+ # The node's name.
978
+ # @return [String]
979
+ #
947
980
  # @!attribute [rw] output_package_name
948
981
  # The job's output package name.
949
982
  # @return [String]
@@ -952,41 +985,37 @@ module Aws::Panorama
952
985
  # The job's output package version.
953
986
  # @return [String]
954
987
  #
955
- # @!attribute [rw] node_name
956
- # The node's name.
957
- # @return [String]
958
- #
959
- # @!attribute [rw] node_description
960
- # The node's description.
988
+ # @!attribute [rw] status
989
+ # The job's status.
961
990
  # @return [String]
962
991
  #
963
- # @!attribute [rw] template_type
964
- # The job's template type.
992
+ # @!attribute [rw] status_message
993
+ # The job's status message.
965
994
  # @return [String]
966
995
  #
967
996
  # @!attribute [rw] template_parameters
968
997
  # The job's template parameters.
969
998
  # @return [Hash<String,String>]
970
999
  #
971
- # @!attribute [rw] job_tags
972
- # The job's tags.
973
- # @return [Array<Types::JobResourceTags>]
1000
+ # @!attribute [rw] template_type
1001
+ # The job's template type.
1002
+ # @return [String]
974
1003
  #
975
1004
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/DescribeNodeFromTemplateJobResponse AWS API Documentation
976
1005
  #
977
1006
  class DescribeNodeFromTemplateJobResponse < Struct.new(
978
- :job_id,
979
- :status,
980
- :status_message,
981
1007
  :created_time,
1008
+ :job_id,
1009
+ :job_tags,
982
1010
  :last_updated_time,
1011
+ :node_description,
1012
+ :node_name,
983
1013
  :output_package_name,
984
1014
  :output_package_version,
985
- :node_name,
986
- :node_description,
987
- :template_type,
1015
+ :status,
1016
+ :status_message,
988
1017
  :template_parameters,
989
- :job_tags)
1018
+ :template_type)
990
1019
  SENSITIVE = []
991
1020
  include Aws::Structure
992
1021
  end
@@ -1016,32 +1045,52 @@ module Aws::Panorama
1016
1045
  include Aws::Structure
1017
1046
  end
1018
1047
 
1019
- # @!attribute [rw] node_id
1020
- # The node's ID.
1048
+ # @!attribute [rw] asset_name
1049
+ # The node's asset name.
1021
1050
  # @return [String]
1022
1051
  #
1052
+ # @!attribute [rw] category
1053
+ # The node's category.
1054
+ # @return [String]
1055
+ #
1056
+ # @!attribute [rw] created_time
1057
+ # When the node was created.
1058
+ # @return [Time]
1059
+ #
1060
+ # @!attribute [rw] description
1061
+ # The node's description.
1062
+ # @return [String]
1063
+ #
1064
+ # @!attribute [rw] last_updated_time
1065
+ # When the node was updated.
1066
+ # @return [Time]
1067
+ #
1023
1068
  # @!attribute [rw] name
1024
1069
  # The node's name.
1025
1070
  # @return [String]
1026
1071
  #
1027
- # @!attribute [rw] category
1028
- # The node's category.
1072
+ # @!attribute [rw] node_id
1073
+ # The node's ID.
1029
1074
  # @return [String]
1030
1075
  #
1076
+ # @!attribute [rw] node_interface
1077
+ # The node's interface.
1078
+ # @return [Types::NodeInterface]
1079
+ #
1031
1080
  # @!attribute [rw] owner_account
1032
1081
  # The account ID of the node's owner.
1033
1082
  # @return [String]
1034
1083
  #
1035
- # @!attribute [rw] package_name
1036
- # The node's package name.
1084
+ # @!attribute [rw] package_arn
1085
+ # The node's ARN.
1037
1086
  # @return [String]
1038
1087
  #
1039
1088
  # @!attribute [rw] package_id
1040
1089
  # The node's package ID.
1041
1090
  # @return [String]
1042
1091
  #
1043
- # @!attribute [rw] package_arn
1044
- # The node's ARN.
1092
+ # @!attribute [rw] package_name
1093
+ # The node's package name.
1045
1094
  # @return [String]
1046
1095
  #
1047
1096
  # @!attribute [rw] package_version
@@ -1052,43 +1101,23 @@ module Aws::Panorama
1052
1101
  # The node's patch version.
1053
1102
  # @return [String]
1054
1103
  #
1055
- # @!attribute [rw] node_interface
1056
- # The node's interface.
1057
- # @return [Types::NodeInterface]
1058
- #
1059
- # @!attribute [rw] asset_name
1060
- # The node's asset name.
1061
- # @return [String]
1062
- #
1063
- # @!attribute [rw] description
1064
- # The node's description.
1065
- # @return [String]
1066
- #
1067
- # @!attribute [rw] created_time
1068
- # When the node was created.
1069
- # @return [Time]
1070
- #
1071
- # @!attribute [rw] last_updated_time
1072
- # When the node was updated.
1073
- # @return [Time]
1074
- #
1075
1104
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/DescribeNodeResponse AWS API Documentation
1076
1105
  #
1077
1106
  class DescribeNodeResponse < Struct.new(
1078
- :node_id,
1079
- :name,
1107
+ :asset_name,
1080
1108
  :category,
1109
+ :created_time,
1110
+ :description,
1111
+ :last_updated_time,
1112
+ :name,
1113
+ :node_id,
1114
+ :node_interface,
1081
1115
  :owner_account,
1082
- :package_name,
1083
- :package_id,
1084
1116
  :package_arn,
1117
+ :package_id,
1118
+ :package_name,
1085
1119
  :package_version,
1086
- :patch_version,
1087
- :node_interface,
1088
- :asset_name,
1089
- :description,
1090
- :created_time,
1091
- :last_updated_time)
1120
+ :patch_version)
1092
1121
  SENSITIVE = []
1093
1122
  include Aws::Structure
1094
1123
  end
@@ -1112,38 +1141,42 @@ module Aws::Panorama
1112
1141
  include Aws::Structure
1113
1142
  end
1114
1143
 
1115
- # @!attribute [rw] job_id
1116
- # The job's ID.
1117
- # @return [String]
1118
- #
1119
1144
  # @!attribute [rw] client_token
1120
1145
  # The job's client token.
1121
1146
  # @return [String]
1122
1147
  #
1123
- # @!attribute [rw] job_type
1124
- # The job's type.
1125
- # @return [String]
1148
+ # @!attribute [rw] created_time
1149
+ # When the job was created.
1150
+ # @return [Time]
1126
1151
  #
1127
1152
  # @!attribute [rw] input_config
1128
1153
  # The job's input config.
1129
1154
  # @return [Types::PackageImportJobInputConfig]
1130
1155
  #
1131
- # @!attribute [rw] output_config
1132
- # The job's output config.
1133
- # @return [Types::PackageImportJobOutputConfig]
1156
+ # @!attribute [rw] job_id
1157
+ # The job's ID.
1158
+ # @return [String]
1134
1159
  #
1135
- # @!attribute [rw] output
1136
- # The job's output.
1137
- # @return [Types::PackageImportJobOutput]
1160
+ # @!attribute [rw] job_tags
1161
+ # The job's tags.
1162
+ # @return [Array<Types::JobResourceTags>]
1138
1163
  #
1139
- # @!attribute [rw] created_time
1140
- # When the job was created.
1141
- # @return [Time]
1164
+ # @!attribute [rw] job_type
1165
+ # The job's type.
1166
+ # @return [String]
1142
1167
  #
1143
1168
  # @!attribute [rw] last_updated_time
1144
1169
  # When the job was updated.
1145
1170
  # @return [Time]
1146
1171
  #
1172
+ # @!attribute [rw] output
1173
+ # The job's output.
1174
+ # @return [Types::PackageImportJobOutput]
1175
+ #
1176
+ # @!attribute [rw] output_config
1177
+ # The job's output config.
1178
+ # @return [Types::PackageImportJobOutputConfig]
1179
+ #
1147
1180
  # @!attribute [rw] status
1148
1181
  # The job's status.
1149
1182
  # @return [String]
@@ -1152,24 +1185,20 @@ module Aws::Panorama
1152
1185
  # The job's status message.
1153
1186
  # @return [String]
1154
1187
  #
1155
- # @!attribute [rw] job_tags
1156
- # The job's tags.
1157
- # @return [Array<Types::JobResourceTags>]
1158
- #
1159
1188
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/DescribePackageImportJobResponse AWS API Documentation
1160
1189
  #
1161
1190
  class DescribePackageImportJobResponse < Struct.new(
1162
- :job_id,
1163
1191
  :client_token,
1164
- :job_type,
1165
- :input_config,
1166
- :output_config,
1167
- :output,
1168
1192
  :created_time,
1193
+ :input_config,
1194
+ :job_id,
1195
+ :job_tags,
1196
+ :job_type,
1169
1197
  :last_updated_time,
1198
+ :output,
1199
+ :output_config,
1170
1200
  :status,
1171
- :status_message,
1172
- :job_tags)
1201
+ :status_message)
1173
1202
  SENSITIVE = []
1174
1203
  include Aws::Structure
1175
1204
  end
@@ -1193,6 +1222,14 @@ module Aws::Panorama
1193
1222
  include Aws::Structure
1194
1223
  end
1195
1224
 
1225
+ # @!attribute [rw] arn
1226
+ # The package's ARN.
1227
+ # @return [String]
1228
+ #
1229
+ # @!attribute [rw] created_time
1230
+ # When the package was created.
1231
+ # @return [Time]
1232
+ #
1196
1233
  # @!attribute [rw] package_id
1197
1234
  # The package's ID.
1198
1235
  # @return [String]
@@ -1201,41 +1238,33 @@ module Aws::Panorama
1201
1238
  # The package's name.
1202
1239
  # @return [String]
1203
1240
  #
1204
- # @!attribute [rw] arn
1205
- # The package's ARN.
1206
- # @return [String]
1241
+ # @!attribute [rw] read_access_principal_arns
1242
+ # ARNs of accounts that have read access to the package.
1243
+ # @return [Array<String>]
1207
1244
  #
1208
1245
  # @!attribute [rw] storage_location
1209
1246
  # The package's storage location.
1210
1247
  # @return [Types::StorageLocation]
1211
1248
  #
1212
- # @!attribute [rw] read_access_principal_arns
1213
- # ARNs of accounts that have read access to the package.
1214
- # @return [Array<String>]
1249
+ # @!attribute [rw] tags
1250
+ # The package's tags.
1251
+ # @return [Hash<String,String>]
1215
1252
  #
1216
1253
  # @!attribute [rw] write_access_principal_arns
1217
1254
  # ARNs of accounts that have write access to the package.
1218
1255
  # @return [Array<String>]
1219
1256
  #
1220
- # @!attribute [rw] created_time
1221
- # When the package was created.
1222
- # @return [Time]
1223
- #
1224
- # @!attribute [rw] tags
1225
- # The package's tags.
1226
- # @return [Hash<String,String>]
1227
- #
1228
1257
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/DescribePackageResponse AWS API Documentation
1229
1258
  #
1230
1259
  class DescribePackageResponse < Struct.new(
1260
+ :arn,
1261
+ :created_time,
1231
1262
  :package_id,
1232
1263
  :package_name,
1233
- :arn,
1234
- :storage_location,
1235
1264
  :read_access_principal_arns,
1236
- :write_access_principal_arns,
1237
- :created_time,
1238
- :tags)
1265
+ :storage_location,
1266
+ :tags,
1267
+ :write_access_principal_arns)
1239
1268
  SENSITIVE = []
1240
1269
  include Aws::Structure
1241
1270
  end
@@ -1277,18 +1306,22 @@ module Aws::Panorama
1277
1306
  include Aws::Structure
1278
1307
  end
1279
1308
 
1309
+ # @!attribute [rw] is_latest_patch
1310
+ # Whether the version is the latest available.
1311
+ # @return [Boolean]
1312
+ #
1280
1313
  # @!attribute [rw] owner_account
1281
1314
  # The account ID of the version's owner.
1282
1315
  # @return [String]
1283
1316
  #
1284
- # @!attribute [rw] package_id
1285
- # The version's ID.
1286
- # @return [String]
1287
- #
1288
1317
  # @!attribute [rw] package_arn
1289
1318
  # The ARN of the package.
1290
1319
  # @return [String]
1291
1320
  #
1321
+ # @!attribute [rw] package_id
1322
+ # The version's ID.
1323
+ # @return [String]
1324
+ #
1292
1325
  # @!attribute [rw] package_name
1293
1326
  # The version's name.
1294
1327
  # @return [String]
@@ -1301,9 +1334,9 @@ module Aws::Panorama
1301
1334
  # The version's patch version.
1302
1335
  # @return [String]
1303
1336
  #
1304
- # @!attribute [rw] is_latest_patch
1305
- # Whether the version is the latest available.
1306
- # @return [Boolean]
1337
+ # @!attribute [rw] registered_time
1338
+ # The version's registered time.
1339
+ # @return [Time]
1307
1340
  #
1308
1341
  # @!attribute [rw] status
1309
1342
  # The version's status.
@@ -1313,43 +1346,35 @@ module Aws::Panorama
1313
1346
  # The version's status description.
1314
1347
  # @return [String]
1315
1348
  #
1316
- # @!attribute [rw] registered_time
1317
- # The version's registered time.
1318
- # @return [Time]
1319
- #
1320
1349
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/DescribePackageVersionResponse AWS API Documentation
1321
1350
  #
1322
1351
  class DescribePackageVersionResponse < Struct.new(
1352
+ :is_latest_patch,
1323
1353
  :owner_account,
1324
- :package_id,
1325
1354
  :package_arn,
1355
+ :package_id,
1326
1356
  :package_name,
1327
1357
  :package_version,
1328
1358
  :patch_version,
1329
- :is_latest_patch,
1359
+ :registered_time,
1330
1360
  :status,
1331
- :status_description,
1332
- :registered_time)
1361
+ :status_description)
1333
1362
  SENSITIVE = []
1334
1363
  include Aws::Structure
1335
1364
  end
1336
1365
 
1337
1366
  # A device.
1338
1367
  #
1339
- # @!attribute [rw] device_id
1340
- # The device's ID.
1341
- # @return [String]
1342
- #
1343
- # @!attribute [rw] name
1344
- # The device's name.
1368
+ # @!attribute [rw] brand
1369
+ # The device's maker.
1345
1370
  # @return [String]
1346
1371
  #
1347
1372
  # @!attribute [rw] created_time
1348
1373
  # When the device was created.
1349
1374
  # @return [Time]
1350
1375
  #
1351
- # @!attribute [rw] provisioning_status
1352
- # The device's provisioning status.
1376
+ # @!attribute [rw] device_id
1377
+ # The device's ID.
1353
1378
  # @return [String]
1354
1379
  #
1355
1380
  # @!attribute [rw] last_updated_time
@@ -1360,44 +1385,53 @@ module Aws::Panorama
1360
1385
  # The device's lease expiration time.
1361
1386
  # @return [Time]
1362
1387
  #
1388
+ # @!attribute [rw] name
1389
+ # The device's name.
1390
+ # @return [String]
1391
+ #
1392
+ # @!attribute [rw] provisioning_status
1393
+ # The device's provisioning status.
1394
+ # @return [String]
1395
+ #
1363
1396
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/Device AWS API Documentation
1364
1397
  #
1365
1398
  class Device < Struct.new(
1366
- :device_id,
1367
- :name,
1399
+ :brand,
1368
1400
  :created_time,
1369
- :provisioning_status,
1401
+ :device_id,
1370
1402
  :last_updated_time,
1371
- :lease_expiration_time)
1403
+ :lease_expiration_time,
1404
+ :name,
1405
+ :provisioning_status)
1372
1406
  SENSITIVE = []
1373
1407
  include Aws::Structure
1374
1408
  end
1375
1409
 
1376
1410
  # A job that runs on a device.
1377
1411
  #
1378
- # @!attribute [rw] device_name
1379
- # The name of the target device
1380
- # @return [String]
1412
+ # @!attribute [rw] created_time
1413
+ # When the job was created.
1414
+ # @return [Time]
1381
1415
  #
1382
1416
  # @!attribute [rw] device_id
1383
1417
  # The ID of the target device.
1384
1418
  # @return [String]
1385
1419
  #
1420
+ # @!attribute [rw] device_name
1421
+ # The name of the target device
1422
+ # @return [String]
1423
+ #
1386
1424
  # @!attribute [rw] job_id
1387
1425
  # The job's ID.
1388
1426
  # @return [String]
1389
1427
  #
1390
- # @!attribute [rw] created_time
1391
- # When the job was created.
1392
- # @return [Time]
1393
- #
1394
1428
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/DeviceJob AWS API Documentation
1395
1429
  #
1396
1430
  class DeviceJob < Struct.new(
1397
- :device_name,
1431
+ :created_time,
1398
1432
  :device_id,
1399
- :job_id,
1400
- :created_time)
1433
+ :device_name,
1434
+ :job_id)
1401
1435
  SENSITIVE = []
1402
1436
  include Aws::Structure
1403
1437
  end
@@ -1434,10 +1468,10 @@ module Aws::Panorama
1434
1468
  # {
1435
1469
  # connection_type: "STATIC_IP", # required, accepts STATIC_IP, DHCP
1436
1470
  # static_ip_connection_info: {
1471
+ # default_gateway: "DefaultGateway", # required
1472
+ # dns: ["Dns"], # required
1437
1473
  # ip_address: "IpAddress", # required
1438
1474
  # mask: "Mask", # required
1439
- # dns: ["Dns"], # required
1440
- # default_gateway: "DefaultGateway", # required
1441
1475
  # },
1442
1476
  # }
1443
1477
  #
@@ -1460,10 +1494,6 @@ module Aws::Panorama
1460
1494
 
1461
1495
  # A device's Ethernet status.
1462
1496
  #
1463
- # @!attribute [rw] ip_address
1464
- # The device's IP address.
1465
- # @return [String]
1466
- #
1467
1497
  # @!attribute [rw] connection_status
1468
1498
  # The device's connection status.
1469
1499
  # @return [String]
@@ -1472,12 +1502,16 @@ module Aws::Panorama
1472
1502
  # The device's physical address.
1473
1503
  # @return [String]
1474
1504
  #
1505
+ # @!attribute [rw] ip_address
1506
+ # The device's IP address.
1507
+ # @return [String]
1508
+ #
1475
1509
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/EthernetStatus AWS API Documentation
1476
1510
  #
1477
1511
  class EthernetStatus < Struct.new(
1478
- :ip_address,
1479
1512
  :connection_status,
1480
- :hw_address)
1513
+ :hw_address,
1514
+ :ip_address)
1481
1515
  SENSITIVE = []
1482
1516
  include Aws::Structure
1483
1517
  end
@@ -1502,19 +1536,19 @@ module Aws::Panorama
1502
1536
 
1503
1537
  # A job for a device.
1504
1538
  #
1505
- # @!attribute [rw] job_id
1506
- # The job's ID.
1507
- # @return [String]
1508
- #
1509
1539
  # @!attribute [rw] device_id
1510
1540
  # The target device's ID.
1511
1541
  # @return [String]
1512
1542
  #
1543
+ # @!attribute [rw] job_id
1544
+ # The job's ID.
1545
+ # @return [String]
1546
+ #
1513
1547
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/Job AWS API Documentation
1514
1548
  #
1515
1549
  class Job < Struct.new(
1516
- :job_id,
1517
- :device_id)
1550
+ :device_id,
1551
+ :job_id)
1518
1552
  SENSITIVE = []
1519
1553
  include Aws::Structure
1520
1554
  end
@@ -1581,19 +1615,19 @@ module Aws::Panorama
1581
1615
  include Aws::Structure
1582
1616
  end
1583
1617
 
1584
- # @!attribute [rw] package_objects
1585
- # A list of package objects.
1586
- # @return [Array<Types::PackageObject>]
1587
- #
1588
1618
  # @!attribute [rw] next_token
1589
1619
  # A pagination token that's included if more results are available.
1590
1620
  # @return [String]
1591
1621
  #
1622
+ # @!attribute [rw] package_objects
1623
+ # A list of package objects.
1624
+ # @return [Array<Types::PackageObject>]
1625
+ #
1592
1626
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/ListApplicationInstanceDependenciesResponse AWS API Documentation
1593
1627
  #
1594
1628
  class ListApplicationInstanceDependenciesResponse < Struct.new(
1595
- :package_objects,
1596
- :next_token)
1629
+ :next_token,
1630
+ :package_objects)
1597
1631
  SENSITIVE = []
1598
1632
  include Aws::Structure
1599
1633
  end
@@ -1631,19 +1665,19 @@ module Aws::Panorama
1631
1665
  include Aws::Structure
1632
1666
  end
1633
1667
 
1634
- # @!attribute [rw] node_instances
1635
- # A list of node instances.
1636
- # @return [Array<Types::NodeInstance>]
1637
- #
1638
1668
  # @!attribute [rw] next_token
1639
1669
  # A pagination token that's included if more results are available.
1640
1670
  # @return [String]
1641
1671
  #
1672
+ # @!attribute [rw] node_instances
1673
+ # A list of node instances.
1674
+ # @return [Array<Types::NodeInstance>]
1675
+ #
1642
1676
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/ListApplicationInstanceNodeInstancesResponse AWS API Documentation
1643
1677
  #
1644
1678
  class ListApplicationInstanceNodeInstancesResponse < Struct.new(
1645
- :node_instances,
1646
- :next_token)
1679
+ :next_token,
1680
+ :node_instances)
1647
1681
  SENSITIVE = []
1648
1682
  include Aws::Structure
1649
1683
  end
@@ -1653,19 +1687,15 @@ module Aws::Panorama
1653
1687
  #
1654
1688
  # {
1655
1689
  # device_id: "DeviceId",
1656
- # status_filter: "DEPLOYMENT_SUCCEEDED", # accepts DEPLOYMENT_SUCCEEDED, DEPLOYMENT_ERROR, REMOVAL_SUCCEEDED, REMOVAL_FAILED, PROCESSING_DEPLOYMENT, PROCESSING_REMOVAL
1657
1690
  # max_results: 1,
1658
1691
  # next_token: "NextToken",
1692
+ # status_filter: "DEPLOYMENT_SUCCEEDED", # accepts DEPLOYMENT_SUCCEEDED, DEPLOYMENT_ERROR, REMOVAL_SUCCEEDED, REMOVAL_FAILED, PROCESSING_DEPLOYMENT, PROCESSING_REMOVAL, DEPLOYMENT_FAILED
1659
1693
  # }
1660
1694
  #
1661
1695
  # @!attribute [rw] device_id
1662
1696
  # The application instances' device ID.
1663
1697
  # @return [String]
1664
1698
  #
1665
- # @!attribute [rw] status_filter
1666
- # Only include instances with a specific status.
1667
- # @return [String]
1668
- #
1669
1699
  # @!attribute [rw] max_results
1670
1700
  # The maximum number of application instances to return in one page of
1671
1701
  # results.
@@ -1676,13 +1706,17 @@ module Aws::Panorama
1676
1706
  # next page of results.
1677
1707
  # @return [String]
1678
1708
  #
1709
+ # @!attribute [rw] status_filter
1710
+ # Only include instances with a specific status.
1711
+ # @return [String]
1712
+ #
1679
1713
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/ListApplicationInstancesRequest AWS API Documentation
1680
1714
  #
1681
1715
  class ListApplicationInstancesRequest < Struct.new(
1682
1716
  :device_id,
1683
- :status_filter,
1684
1717
  :max_results,
1685
- :next_token)
1718
+ :next_token,
1719
+ :status_filter)
1686
1720
  SENSITIVE = []
1687
1721
  include Aws::Structure
1688
1722
  end
@@ -1709,29 +1743,29 @@ module Aws::Panorama
1709
1743
  #
1710
1744
  # {
1711
1745
  # device_id: "DeviceId",
1712
- # next_token: "NextToken",
1713
1746
  # max_results: 1,
1747
+ # next_token: "NextToken",
1714
1748
  # }
1715
1749
  #
1716
1750
  # @!attribute [rw] device_id
1717
1751
  # Filter results by the job's target device ID.
1718
1752
  # @return [String]
1719
1753
  #
1754
+ # @!attribute [rw] max_results
1755
+ # The maximum number of device jobs to return in one page of results.
1756
+ # @return [Integer]
1757
+ #
1720
1758
  # @!attribute [rw] next_token
1721
1759
  # Specify the pagination token from a previous request to retrieve the
1722
1760
  # next page of results.
1723
1761
  # @return [String]
1724
1762
  #
1725
- # @!attribute [rw] max_results
1726
- # The maximum number of device jobs to return in one page of results.
1727
- # @return [Integer]
1728
- #
1729
1763
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/ListDevicesJobsRequest AWS API Documentation
1730
1764
  #
1731
1765
  class ListDevicesJobsRequest < Struct.new(
1732
1766
  :device_id,
1733
- :next_token,
1734
- :max_results)
1767
+ :max_results,
1768
+ :next_token)
1735
1769
  SENSITIVE = []
1736
1770
  include Aws::Structure
1737
1771
  end
@@ -1757,24 +1791,24 @@ module Aws::Panorama
1757
1791
  # data as a hash:
1758
1792
  #
1759
1793
  # {
1760
- # next_token: "NextToken",
1761
1794
  # max_results: 1,
1795
+ # next_token: "NextToken",
1762
1796
  # }
1763
1797
  #
1798
+ # @!attribute [rw] max_results
1799
+ # The maximum number of devices to return in one page of results.
1800
+ # @return [Integer]
1801
+ #
1764
1802
  # @!attribute [rw] next_token
1765
1803
  # Specify the pagination token from a previous request to retrieve the
1766
1804
  # next page of results.
1767
1805
  # @return [String]
1768
1806
  #
1769
- # @!attribute [rw] max_results
1770
- # The maximum number of devices to return in one page of results.
1771
- # @return [Integer]
1772
- #
1773
1807
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/ListDevicesRequest AWS API Documentation
1774
1808
  #
1775
1809
  class ListDevicesRequest < Struct.new(
1776
- :next_token,
1777
- :max_results)
1810
+ :max_results,
1811
+ :next_token)
1778
1812
  SENSITIVE = []
1779
1813
  include Aws::Structure
1780
1814
  end
@@ -1800,42 +1834,42 @@ module Aws::Panorama
1800
1834
  # data as a hash:
1801
1835
  #
1802
1836
  # {
1803
- # next_token: "NextToken",
1804
1837
  # max_results: 1,
1838
+ # next_token: "NextToken",
1805
1839
  # }
1806
1840
  #
1807
- # @!attribute [rw] next_token
1808
- # Specify the pagination token from a previous request to retrieve the
1809
- # next page of results.
1810
- # @return [String]
1811
- #
1812
1841
  # @!attribute [rw] max_results
1813
1842
  # The maximum number of node from template jobs to return in one page
1814
1843
  # of results.
1815
1844
  # @return [Integer]
1816
1845
  #
1846
+ # @!attribute [rw] next_token
1847
+ # Specify the pagination token from a previous request to retrieve the
1848
+ # next page of results.
1849
+ # @return [String]
1850
+ #
1817
1851
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/ListNodeFromTemplateJobsRequest AWS API Documentation
1818
1852
  #
1819
1853
  class ListNodeFromTemplateJobsRequest < Struct.new(
1820
- :next_token,
1821
- :max_results)
1854
+ :max_results,
1855
+ :next_token)
1822
1856
  SENSITIVE = []
1823
1857
  include Aws::Structure
1824
1858
  end
1825
1859
 
1826
- # @!attribute [rw] node_from_template_jobs
1827
- # A list of jobs.
1828
- # @return [Array<Types::NodeFromTemplateJob>]
1829
- #
1830
1860
  # @!attribute [rw] next_token
1831
1861
  # A pagination token that's included if more results are available.
1832
1862
  # @return [String]
1833
1863
  #
1864
+ # @!attribute [rw] node_from_template_jobs
1865
+ # A list of jobs.
1866
+ # @return [Array<Types::NodeFromTemplateJob>]
1867
+ #
1834
1868
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/ListNodeFromTemplateJobsResponse AWS API Documentation
1835
1869
  #
1836
1870
  class ListNodeFromTemplateJobsResponse < Struct.new(
1837
- :node_from_template_jobs,
1838
- :next_token)
1871
+ :next_token,
1872
+ :node_from_template_jobs)
1839
1873
  SENSITIVE = []
1840
1874
  include Aws::Structure
1841
1875
  end
@@ -1845,18 +1879,27 @@ module Aws::Panorama
1845
1879
  #
1846
1880
  # {
1847
1881
  # category: "BUSINESS_LOGIC", # accepts BUSINESS_LOGIC, ML_MODEL, MEDIA_SOURCE, MEDIA_SINK
1882
+ # max_results: 1,
1883
+ # next_token: "Token",
1848
1884
  # owner_account: "PackageOwnerAccount",
1849
1885
  # package_name: "NodePackageName",
1850
1886
  # package_version: "NodePackageVersion",
1851
1887
  # patch_version: "NodePackagePatchVersion",
1852
- # next_token: "Token",
1853
- # max_results: 1,
1854
1888
  # }
1855
1889
  #
1856
1890
  # @!attribute [rw] category
1857
1891
  # Search for nodes by category.
1858
1892
  # @return [String]
1859
1893
  #
1894
+ # @!attribute [rw] max_results
1895
+ # The maximum number of nodes to return in one page of results.
1896
+ # @return [Integer]
1897
+ #
1898
+ # @!attribute [rw] next_token
1899
+ # Specify the pagination token from a previous request to retrieve the
1900
+ # next page of results.
1901
+ # @return [String]
1902
+ #
1860
1903
  # @!attribute [rw] owner_account
1861
1904
  # Search for nodes by the account ID of the nodes' owner.
1862
1905
  # @return [String]
@@ -1873,42 +1916,33 @@ module Aws::Panorama
1873
1916
  # Search for nodes by patch version.
1874
1917
  # @return [String]
1875
1918
  #
1876
- # @!attribute [rw] next_token
1877
- # Specify the pagination token from a previous request to retrieve the
1878
- # next page of results.
1879
- # @return [String]
1880
- #
1881
- # @!attribute [rw] max_results
1882
- # The maximum number of nodes to return in one page of results.
1883
- # @return [Integer]
1884
- #
1885
1919
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/ListNodesRequest AWS API Documentation
1886
1920
  #
1887
1921
  class ListNodesRequest < Struct.new(
1888
1922
  :category,
1923
+ :max_results,
1924
+ :next_token,
1889
1925
  :owner_account,
1890
1926
  :package_name,
1891
1927
  :package_version,
1892
- :patch_version,
1893
- :next_token,
1894
- :max_results)
1928
+ :patch_version)
1895
1929
  SENSITIVE = []
1896
1930
  include Aws::Structure
1897
1931
  end
1898
1932
 
1899
- # @!attribute [rw] nodes
1900
- # A list of nodes.
1901
- # @return [Array<Types::Node>]
1902
- #
1903
1933
  # @!attribute [rw] next_token
1904
1934
  # A pagination token that's included if more results are available.
1905
1935
  # @return [String]
1906
1936
  #
1937
+ # @!attribute [rw] nodes
1938
+ # A list of nodes.
1939
+ # @return [Array<Types::Node>]
1940
+ #
1907
1941
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/ListNodesResponse AWS API Documentation
1908
1942
  #
1909
1943
  class ListNodesResponse < Struct.new(
1910
- :nodes,
1911
- :next_token)
1944
+ :next_token,
1945
+ :nodes)
1912
1946
  SENSITIVE = []
1913
1947
  include Aws::Structure
1914
1948
  end
@@ -1917,42 +1951,42 @@ module Aws::Panorama
1917
1951
  # data as a hash:
1918
1952
  #
1919
1953
  # {
1920
- # next_token: "NextToken",
1921
1954
  # max_results: 1,
1955
+ # next_token: "NextToken",
1922
1956
  # }
1923
1957
  #
1924
- # @!attribute [rw] next_token
1925
- # Specify the pagination token from a previous request to retrieve the
1926
- # next page of results.
1927
- # @return [String]
1928
- #
1929
1958
  # @!attribute [rw] max_results
1930
1959
  # The maximum number of package import jobs to return in one page of
1931
1960
  # results.
1932
1961
  # @return [Integer]
1933
1962
  #
1963
+ # @!attribute [rw] next_token
1964
+ # Specify the pagination token from a previous request to retrieve the
1965
+ # next page of results.
1966
+ # @return [String]
1967
+ #
1934
1968
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/ListPackageImportJobsRequest AWS API Documentation
1935
1969
  #
1936
1970
  class ListPackageImportJobsRequest < Struct.new(
1937
- :next_token,
1938
- :max_results)
1971
+ :max_results,
1972
+ :next_token)
1939
1973
  SENSITIVE = []
1940
1974
  include Aws::Structure
1941
1975
  end
1942
1976
 
1943
- # @!attribute [rw] package_import_jobs
1944
- # A list of package import jobs.
1945
- # @return [Array<Types::PackageImportJob>]
1946
- #
1947
1977
  # @!attribute [rw] next_token
1948
1978
  # A pagination token that's included if more results are available.
1949
1979
  # @return [String]
1950
1980
  #
1981
+ # @!attribute [rw] package_import_jobs
1982
+ # A list of package import jobs.
1983
+ # @return [Array<Types::PackageImportJob>]
1984
+ #
1951
1985
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/ListPackageImportJobsResponse AWS API Documentation
1952
1986
  #
1953
1987
  class ListPackageImportJobsResponse < Struct.new(
1954
- :package_import_jobs,
1955
- :next_token)
1988
+ :next_token,
1989
+ :package_import_jobs)
1956
1990
  SENSITIVE = []
1957
1991
  include Aws::Structure
1958
1992
  end
@@ -1983,19 +2017,19 @@ module Aws::Panorama
1983
2017
  include Aws::Structure
1984
2018
  end
1985
2019
 
1986
- # @!attribute [rw] packages
1987
- # A list of packages.
1988
- # @return [Array<Types::PackageListItem>]
1989
- #
1990
2020
  # @!attribute [rw] next_token
1991
2021
  # A pagination token that's included if more results are available.
1992
2022
  # @return [String]
1993
2023
  #
2024
+ # @!attribute [rw] packages
2025
+ # A list of packages.
2026
+ # @return [Array<Types::PackageListItem>]
2027
+ #
1994
2028
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/ListPackagesResponse AWS API Documentation
1995
2029
  #
1996
2030
  class ListPackagesResponse < Struct.new(
1997
- :packages,
1998
- :next_token)
2031
+ :next_token,
2032
+ :packages)
1999
2033
  SENSITIVE = []
2000
2034
  include Aws::Structure
2001
2035
  end
@@ -2091,21 +2125,24 @@ module Aws::Panorama
2091
2125
  # ethernet_0: {
2092
2126
  # connection_type: "STATIC_IP", # required, accepts STATIC_IP, DHCP
2093
2127
  # static_ip_connection_info: {
2128
+ # default_gateway: "DefaultGateway", # required
2129
+ # dns: ["Dns"], # required
2094
2130
  # ip_address: "IpAddress", # required
2095
2131
  # mask: "Mask", # required
2096
- # dns: ["Dns"], # required
2097
- # default_gateway: "DefaultGateway", # required
2098
2132
  # },
2099
2133
  # },
2100
2134
  # ethernet_1: {
2101
2135
  # connection_type: "STATIC_IP", # required, accepts STATIC_IP, DHCP
2102
2136
  # static_ip_connection_info: {
2137
+ # default_gateway: "DefaultGateway", # required
2138
+ # dns: ["Dns"], # required
2103
2139
  # ip_address: "IpAddress", # required
2104
2140
  # mask: "Mask", # required
2105
- # dns: ["Dns"], # required
2106
- # default_gateway: "DefaultGateway", # required
2107
2141
  # },
2108
2142
  # },
2143
+ # ntp: {
2144
+ # ntp_servers: ["IpAddressOrServerName"], # required
2145
+ # },
2109
2146
  # }
2110
2147
  #
2111
2148
  # @!attribute [rw] ethernet_0
@@ -2116,11 +2153,16 @@ module Aws::Panorama
2116
2153
  # Settings for Ethernet port 1.
2117
2154
  # @return [Types::EthernetPayload]
2118
2155
  #
2156
+ # @!attribute [rw] ntp
2157
+ # Network time protocol (NTP) server settings.
2158
+ # @return [Types::NtpPayload]
2159
+ #
2119
2160
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/NetworkPayload AWS API Documentation
2120
2161
  #
2121
2162
  class NetworkPayload < Struct.new(
2122
2163
  :ethernet_0,
2123
- :ethernet_1)
2164
+ :ethernet_1,
2165
+ :ntp)
2124
2166
  SENSITIVE = []
2125
2167
  include Aws::Structure
2126
2168
  end
@@ -2135,11 +2177,21 @@ module Aws::Panorama
2135
2177
  # The status of Ethernet port 1.
2136
2178
  # @return [Types::EthernetStatus]
2137
2179
  #
2180
+ # @!attribute [rw] last_updated_time
2181
+ # When the network status changed.
2182
+ # @return [Time]
2183
+ #
2184
+ # @!attribute [rw] ntp_status
2185
+ # Details about a network time protocol (NTP) server connection.
2186
+ # @return [Types::NtpStatus]
2187
+ #
2138
2188
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/NetworkStatus AWS API Documentation
2139
2189
  #
2140
2190
  class NetworkStatus < Struct.new(
2141
2191
  :ethernet_0_status,
2142
- :ethernet_1_status)
2192
+ :ethernet_1_status,
2193
+ :last_updated_time,
2194
+ :ntp_status)
2143
2195
  SENSITIVE = []
2144
2196
  include Aws::Structure
2145
2197
  end
@@ -2147,32 +2199,40 @@ module Aws::Panorama
2147
2199
  # An application node that represents a camera stream, a model, code, or
2148
2200
  # output.
2149
2201
  #
2150
- # @!attribute [rw] node_id
2151
- # The node's ID.
2202
+ # @!attribute [rw] category
2203
+ # The node's category.
2204
+ # @return [String]
2205
+ #
2206
+ # @!attribute [rw] created_time
2207
+ # When the node was created.
2208
+ # @return [Time]
2209
+ #
2210
+ # @!attribute [rw] description
2211
+ # The node's description.
2152
2212
  # @return [String]
2153
2213
  #
2154
2214
  # @!attribute [rw] name
2155
2215
  # The node's name.
2156
2216
  # @return [String]
2157
2217
  #
2158
- # @!attribute [rw] category
2159
- # The node's category.
2218
+ # @!attribute [rw] node_id
2219
+ # The node's ID.
2160
2220
  # @return [String]
2161
2221
  #
2162
2222
  # @!attribute [rw] owner_account
2163
2223
  # The account ID of the node's owner.
2164
2224
  # @return [String]
2165
2225
  #
2166
- # @!attribute [rw] package_name
2167
- # The node's package name.
2226
+ # @!attribute [rw] package_arn
2227
+ # The node's ARN.
2168
2228
  # @return [String]
2169
2229
  #
2170
2230
  # @!attribute [rw] package_id
2171
2231
  # The node's package ID.
2172
2232
  # @return [String]
2173
2233
  #
2174
- # @!attribute [rw] package_arn
2175
- # The node's ARN.
2234
+ # @!attribute [rw] package_name
2235
+ # The node's package name.
2176
2236
  # @return [String]
2177
2237
  #
2178
2238
  # @!attribute [rw] package_version
@@ -2183,40 +2243,36 @@ module Aws::Panorama
2183
2243
  # The node's patch version.
2184
2244
  # @return [String]
2185
2245
  #
2186
- # @!attribute [rw] description
2187
- # The node's description.
2188
- # @return [String]
2189
- #
2190
- # @!attribute [rw] created_time
2191
- # When the node was created.
2192
- # @return [Time]
2193
- #
2194
2246
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/Node AWS API Documentation
2195
2247
  #
2196
2248
  class Node < Struct.new(
2197
- :node_id,
2198
- :name,
2199
2249
  :category,
2250
+ :created_time,
2251
+ :description,
2252
+ :name,
2253
+ :node_id,
2200
2254
  :owner_account,
2201
- :package_name,
2202
- :package_id,
2203
2255
  :package_arn,
2256
+ :package_id,
2257
+ :package_name,
2204
2258
  :package_version,
2205
- :patch_version,
2206
- :description,
2207
- :created_time)
2259
+ :patch_version)
2208
2260
  SENSITIVE = []
2209
2261
  include Aws::Structure
2210
2262
  end
2211
2263
 
2212
2264
  # A job to create a camera stream node.
2213
2265
  #
2266
+ # @!attribute [rw] created_time
2267
+ # When the job was created.
2268
+ # @return [Time]
2269
+ #
2214
2270
  # @!attribute [rw] job_id
2215
2271
  # The job's ID.
2216
2272
  # @return [String]
2217
2273
  #
2218
- # @!attribute [rw] template_type
2219
- # The job's template type.
2274
+ # @!attribute [rw] node_name
2275
+ # The node's name.
2220
2276
  # @return [String]
2221
2277
  #
2222
2278
  # @!attribute [rw] status
@@ -2227,101 +2283,97 @@ module Aws::Panorama
2227
2283
  # The job's status message.
2228
2284
  # @return [String]
2229
2285
  #
2230
- # @!attribute [rw] created_time
2231
- # When the job was created.
2232
- # @return [Time]
2233
- #
2234
- # @!attribute [rw] node_name
2235
- # The node's name.
2286
+ # @!attribute [rw] template_type
2287
+ # The job's template type.
2236
2288
  # @return [String]
2237
2289
  #
2238
2290
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/NodeFromTemplateJob AWS API Documentation
2239
2291
  #
2240
2292
  class NodeFromTemplateJob < Struct.new(
2293
+ :created_time,
2241
2294
  :job_id,
2242
- :template_type,
2295
+ :node_name,
2243
2296
  :status,
2244
2297
  :status_message,
2245
- :created_time,
2246
- :node_name)
2298
+ :template_type)
2247
2299
  SENSITIVE = []
2248
2300
  include Aws::Structure
2249
2301
  end
2250
2302
 
2251
2303
  # A node input port.
2252
2304
  #
2253
- # @!attribute [rw] name
2254
- # The input port's name.
2305
+ # @!attribute [rw] default_value
2306
+ # The input port's default value.
2255
2307
  # @return [String]
2256
2308
  #
2257
2309
  # @!attribute [rw] description
2258
2310
  # The input port's description.
2259
2311
  # @return [String]
2260
2312
  #
2261
- # @!attribute [rw] type
2262
- # The input port's type.
2263
- # @return [String]
2264
- #
2265
- # @!attribute [rw] default_value
2266
- # The input port's default value.
2267
- # @return [String]
2268
- #
2269
2313
  # @!attribute [rw] max_connections
2270
2314
  # The input port's max connections.
2271
2315
  # @return [Integer]
2272
2316
  #
2317
+ # @!attribute [rw] name
2318
+ # The input port's name.
2319
+ # @return [String]
2320
+ #
2321
+ # @!attribute [rw] type
2322
+ # The input port's type.
2323
+ # @return [String]
2324
+ #
2273
2325
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/NodeInputPort AWS API Documentation
2274
2326
  #
2275
2327
  class NodeInputPort < Struct.new(
2276
- :name,
2277
- :description,
2278
- :type,
2279
2328
  :default_value,
2280
- :max_connections)
2329
+ :description,
2330
+ :max_connections,
2331
+ :name,
2332
+ :type)
2281
2333
  SENSITIVE = []
2282
2334
  include Aws::Structure
2283
2335
  end
2284
2336
 
2285
2337
  # A node instance.
2286
2338
  #
2287
- # @!attribute [rw] node_instance_id
2288
- # The instance's ID.
2339
+ # @!attribute [rw] current_status
2340
+ # The instance's current status.
2289
2341
  # @return [String]
2290
2342
  #
2291
2343
  # @!attribute [rw] node_id
2292
2344
  # The node's ID.
2293
2345
  # @return [String]
2294
2346
  #
2295
- # @!attribute [rw] package_name
2296
- # The instance's package name.
2347
+ # @!attribute [rw] node_instance_id
2348
+ # The instance's ID.
2297
2349
  # @return [String]
2298
2350
  #
2299
- # @!attribute [rw] package_version
2300
- # The instance's package version.
2351
+ # @!attribute [rw] node_name
2352
+ # The instance's name.
2301
2353
  # @return [String]
2302
2354
  #
2303
- # @!attribute [rw] package_patch_version
2304
- # The instance's package patch version.
2355
+ # @!attribute [rw] package_name
2356
+ # The instance's package name.
2305
2357
  # @return [String]
2306
2358
  #
2307
- # @!attribute [rw] node_name
2308
- # The instance's name.
2359
+ # @!attribute [rw] package_patch_version
2360
+ # The instance's package patch version.
2309
2361
  # @return [String]
2310
2362
  #
2311
- # @!attribute [rw] current_status
2312
- # The instance's current status.
2363
+ # @!attribute [rw] package_version
2364
+ # The instance's package version.
2313
2365
  # @return [String]
2314
2366
  #
2315
2367
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/NodeInstance AWS API Documentation
2316
2368
  #
2317
2369
  class NodeInstance < Struct.new(
2318
- :node_instance_id,
2370
+ :current_status,
2319
2371
  :node_id,
2372
+ :node_instance_id,
2373
+ :node_name,
2320
2374
  :package_name,
2321
- :package_version,
2322
2375
  :package_patch_version,
2323
- :node_name,
2324
- :current_status)
2376
+ :package_version)
2325
2377
  SENSITIVE = []
2326
2378
  include Aws::Structure
2327
2379
  end
@@ -2347,24 +2399,70 @@ module Aws::Panorama
2347
2399
 
2348
2400
  # A node output port.
2349
2401
  #
2402
+ # @!attribute [rw] description
2403
+ # The output port's description.
2404
+ # @return [String]
2405
+ #
2350
2406
  # @!attribute [rw] name
2351
2407
  # The output port's name.
2352
2408
  # @return [String]
2353
2409
  #
2354
- # @!attribute [rw] description
2355
- # The output port's description.
2410
+ # @!attribute [rw] type
2411
+ # The output port's type.
2412
+ # @return [String]
2413
+ #
2414
+ # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/NodeOutputPort AWS API Documentation
2415
+ #
2416
+ class NodeOutputPort < Struct.new(
2417
+ :description,
2418
+ :name,
2419
+ :type)
2420
+ SENSITIVE = []
2421
+ include Aws::Structure
2422
+ end
2423
+
2424
+ # Network time protocol (NTP) server settings. Use this option to
2425
+ # connect to local NTP servers instead of `pool.ntp.org`.
2426
+ #
2427
+ # @note When making an API call, you may pass NtpPayload
2428
+ # data as a hash:
2429
+ #
2430
+ # {
2431
+ # ntp_servers: ["IpAddressOrServerName"], # required
2432
+ # }
2433
+ #
2434
+ # @!attribute [rw] ntp_servers
2435
+ # NTP servers to use, in order of preference.
2436
+ # @return [Array<String>]
2437
+ #
2438
+ # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/NtpPayload AWS API Documentation
2439
+ #
2440
+ class NtpPayload < Struct.new(
2441
+ :ntp_servers)
2442
+ SENSITIVE = []
2443
+ include Aws::Structure
2444
+ end
2445
+
2446
+ # Details about an NTP server connection.
2447
+ #
2448
+ # @!attribute [rw] connection_status
2449
+ # The connection's status.
2450
+ # @return [String]
2451
+ #
2452
+ # @!attribute [rw] ip_address
2453
+ # The IP address of the server.
2356
2454
  # @return [String]
2357
2455
  #
2358
- # @!attribute [rw] type
2359
- # The output port's type.
2456
+ # @!attribute [rw] ntp_server_name
2457
+ # The domain name of the server.
2360
2458
  # @return [String]
2361
2459
  #
2362
- # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/NodeOutputPort AWS API Documentation
2460
+ # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/NtpStatus AWS API Documentation
2363
2461
  #
2364
- class NodeOutputPort < Struct.new(
2365
- :name,
2366
- :description,
2367
- :type)
2462
+ class NtpStatus < Struct.new(
2463
+ :connection_status,
2464
+ :ip_address,
2465
+ :ntp_server_name)
2368
2466
  SENSITIVE = []
2369
2467
  include Aws::Structure
2370
2468
  end
@@ -2411,6 +2509,10 @@ module Aws::Panorama
2411
2509
 
2412
2510
  # A job to import a package version.
2413
2511
  #
2512
+ # @!attribute [rw] created_time
2513
+ # When the job was created.
2514
+ # @return [Time]
2515
+ #
2414
2516
  # @!attribute [rw] job_id
2415
2517
  # The job's ID.
2416
2518
  # @return [String]
@@ -2419,6 +2521,10 @@ module Aws::Panorama
2419
2521
  # The job's type.
2420
2522
  # @return [String]
2421
2523
  #
2524
+ # @!attribute [rw] last_updated_time
2525
+ # When the job was updated.
2526
+ # @return [Time]
2527
+ #
2422
2528
  # @!attribute [rw] status
2423
2529
  # The job's status.
2424
2530
  # @return [String]
@@ -2427,23 +2533,15 @@ module Aws::Panorama
2427
2533
  # The job's status message.
2428
2534
  # @return [String]
2429
2535
  #
2430
- # @!attribute [rw] created_time
2431
- # When the job was created.
2432
- # @return [Time]
2433
- #
2434
- # @!attribute [rw] last_updated_time
2435
- # When the job was updated.
2436
- # @return [Time]
2437
- #
2438
2536
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/PackageImportJob AWS API Documentation
2439
2537
  #
2440
2538
  class PackageImportJob < Struct.new(
2539
+ :created_time,
2441
2540
  :job_id,
2442
2541
  :job_type,
2542
+ :last_updated_time,
2443
2543
  :status,
2444
- :status_message,
2445
- :created_time,
2446
- :last_updated_time)
2544
+ :status_message)
2447
2545
  SENSITIVE = []
2448
2546
  include Aws::Structure
2449
2547
  end
@@ -2456,9 +2554,9 @@ module Aws::Panorama
2456
2554
  # {
2457
2555
  # package_version_input_config: {
2458
2556
  # s3_location: { # required
2459
- # region: "Region",
2460
2557
  # bucket_name: "BucketName", # required
2461
2558
  # object_key: "ObjectKey", # required
2559
+ # region: "Region",
2462
2560
  # },
2463
2561
  # },
2464
2562
  # }
@@ -2477,6 +2575,10 @@ module Aws::Panorama
2477
2575
 
2478
2576
  # Results of a package import job.
2479
2577
  #
2578
+ # @!attribute [rw] output_s3_location
2579
+ # The package's output location.
2580
+ # @return [Types::OutPutS3Location]
2581
+ #
2480
2582
  # @!attribute [rw] package_id
2481
2583
  # The package's ID.
2482
2584
  # @return [String]
@@ -2489,17 +2591,13 @@ module Aws::Panorama
2489
2591
  # The package's patch version.
2490
2592
  # @return [String]
2491
2593
  #
2492
- # @!attribute [rw] output_s3_location
2493
- # The package's output location.
2494
- # @return [Types::OutPutS3Location]
2495
- #
2496
2594
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/PackageImportJobOutput AWS API Documentation
2497
2595
  #
2498
2596
  class PackageImportJobOutput < Struct.new(
2597
+ :output_s3_location,
2499
2598
  :package_id,
2500
2599
  :package_version,
2501
- :patch_version,
2502
- :output_s3_location)
2600
+ :patch_version)
2503
2601
  SENSITIVE = []
2504
2602
  include Aws::Structure
2505
2603
  end
@@ -2511,9 +2609,9 @@ module Aws::Panorama
2511
2609
  #
2512
2610
  # {
2513
2611
  # package_version_output_config: {
2612
+ # mark_latest: false,
2514
2613
  # package_name: "NodePackageName", # required
2515
2614
  # package_version: "NodePackageVersion", # required
2516
- # mark_latest: false,
2517
2615
  # },
2518
2616
  # }
2519
2617
  #
@@ -2531,14 +2629,6 @@ module Aws::Panorama
2531
2629
 
2532
2630
  # A package summary.
2533
2631
  #
2534
- # @!attribute [rw] package_id
2535
- # The package's ID.
2536
- # @return [String]
2537
- #
2538
- # @!attribute [rw] package_name
2539
- # The package's name.
2540
- # @return [String]
2541
- #
2542
2632
  # @!attribute [rw] arn
2543
2633
  # The package's ARN.
2544
2634
  # @return [String]
@@ -2547,6 +2637,14 @@ module Aws::Panorama
2547
2637
  # When the package was created.
2548
2638
  # @return [Time]
2549
2639
  #
2640
+ # @!attribute [rw] package_id
2641
+ # The package's ID.
2642
+ # @return [String]
2643
+ #
2644
+ # @!attribute [rw] package_name
2645
+ # The package's name.
2646
+ # @return [String]
2647
+ #
2550
2648
  # @!attribute [rw] tags
2551
2649
  # The package's tags.
2552
2650
  # @return [Hash<String,String>]
@@ -2554,10 +2652,10 @@ module Aws::Panorama
2554
2652
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/PackageListItem AWS API Documentation
2555
2653
  #
2556
2654
  class PackageListItem < Struct.new(
2557
- :package_id,
2558
- :package_name,
2559
2655
  :arn,
2560
2656
  :created_time,
2657
+ :package_id,
2658
+ :package_name,
2561
2659
  :tags)
2562
2660
  SENSITIVE = []
2563
2661
  include Aws::Structure
@@ -2594,9 +2692,9 @@ module Aws::Panorama
2594
2692
  #
2595
2693
  # {
2596
2694
  # s3_location: { # required
2597
- # region: "Region",
2598
2695
  # bucket_name: "BucketName", # required
2599
2696
  # object_key: "ObjectKey", # required
2697
+ # region: "Region",
2600
2698
  # },
2601
2699
  # }
2602
2700
  #
@@ -2618,11 +2716,15 @@ module Aws::Panorama
2618
2716
  # data as a hash:
2619
2717
  #
2620
2718
  # {
2719
+ # mark_latest: false,
2621
2720
  # package_name: "NodePackageName", # required
2622
2721
  # package_version: "NodePackageVersion", # required
2623
- # mark_latest: false,
2624
2722
  # }
2625
2723
  #
2724
+ # @!attribute [rw] mark_latest
2725
+ # Indicates that the version is recommended for all users.
2726
+ # @return [Boolean]
2727
+ #
2626
2728
  # @!attribute [rw] package_name
2627
2729
  # The output's package name.
2628
2730
  # @return [String]
@@ -2631,16 +2733,12 @@ module Aws::Panorama
2631
2733
  # The output's package version.
2632
2734
  # @return [String]
2633
2735
  #
2634
- # @!attribute [rw] mark_latest
2635
- # Indicates that the version is recommended for all users.
2636
- # @return [Boolean]
2637
- #
2638
2736
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/PackageVersionOutputConfig AWS API Documentation
2639
2737
  #
2640
2738
  class PackageVersionOutputConfig < Struct.new(
2739
+ :mark_latest,
2641
2740
  :package_name,
2642
- :package_version,
2643
- :mark_latest)
2741
+ :package_version)
2644
2742
  SENSITIVE = []
2645
2743
  include Aws::Structure
2646
2744
  end
@@ -2649,88 +2747,91 @@ module Aws::Panorama
2649
2747
  # data as a hash:
2650
2748
  #
2651
2749
  # {
2652
- # name: "DeviceName", # required
2653
2750
  # description: "Description",
2654
- # tags: {
2655
- # "TagKey" => "TagValue",
2656
- # },
2751
+ # name: "DeviceName", # required
2657
2752
  # networking_configuration: {
2658
2753
  # ethernet_0: {
2659
2754
  # connection_type: "STATIC_IP", # required, accepts STATIC_IP, DHCP
2660
2755
  # static_ip_connection_info: {
2756
+ # default_gateway: "DefaultGateway", # required
2757
+ # dns: ["Dns"], # required
2661
2758
  # ip_address: "IpAddress", # required
2662
2759
  # mask: "Mask", # required
2663
- # dns: ["Dns"], # required
2664
- # default_gateway: "DefaultGateway", # required
2665
2760
  # },
2666
2761
  # },
2667
2762
  # ethernet_1: {
2668
2763
  # connection_type: "STATIC_IP", # required, accepts STATIC_IP, DHCP
2669
2764
  # static_ip_connection_info: {
2765
+ # default_gateway: "DefaultGateway", # required
2766
+ # dns: ["Dns"], # required
2670
2767
  # ip_address: "IpAddress", # required
2671
2768
  # mask: "Mask", # required
2672
- # dns: ["Dns"], # required
2673
- # default_gateway: "DefaultGateway", # required
2674
2769
  # },
2675
2770
  # },
2771
+ # ntp: {
2772
+ # ntp_servers: ["IpAddressOrServerName"], # required
2773
+ # },
2774
+ # },
2775
+ # tags: {
2776
+ # "TagKey" => "TagValue",
2676
2777
  # },
2677
2778
  # }
2678
2779
  #
2679
- # @!attribute [rw] name
2680
- # A name for the device.
2681
- # @return [String]
2682
- #
2683
2780
  # @!attribute [rw] description
2684
2781
  # A description for the device.
2685
2782
  # @return [String]
2686
2783
  #
2687
- # @!attribute [rw] tags
2688
- # Tags for the device.
2689
- # @return [Hash<String,String>]
2784
+ # @!attribute [rw] name
2785
+ # A name for the device.
2786
+ # @return [String]
2690
2787
  #
2691
2788
  # @!attribute [rw] networking_configuration
2692
2789
  # A networking configuration for the device.
2693
2790
  # @return [Types::NetworkPayload]
2694
2791
  #
2792
+ # @!attribute [rw] tags
2793
+ # Tags for the device.
2794
+ # @return [Hash<String,String>]
2795
+ #
2695
2796
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/ProvisionDeviceRequest AWS API Documentation
2696
2797
  #
2697
2798
  class ProvisionDeviceRequest < Struct.new(
2698
- :name,
2699
2799
  :description,
2700
- :tags,
2701
- :networking_configuration)
2800
+ :name,
2801
+ :networking_configuration,
2802
+ :tags)
2702
2803
  SENSITIVE = []
2703
2804
  include Aws::Structure
2704
2805
  end
2705
2806
 
2706
- # @!attribute [rw] device_id
2707
- # The device's ID.
2708
- # @return [String]
2709
- #
2710
2807
  # @!attribute [rw] arn
2711
2808
  # The device's ARN.
2712
2809
  # @return [String]
2713
2810
  #
2714
- # @!attribute [rw] status
2715
- # The device's status.
2716
- # @return [String]
2717
- #
2718
2811
  # @!attribute [rw] certificates
2719
2812
  # The device's configuration bundle.
2720
2813
  # @return [String]
2721
2814
  #
2815
+ # @!attribute [rw] device_id
2816
+ # The device's ID.
2817
+ # @return [String]
2818
+ #
2722
2819
  # @!attribute [rw] iot_thing_name
2723
2820
  # The device's IoT thing name.
2724
2821
  # @return [String]
2725
2822
  #
2823
+ # @!attribute [rw] status
2824
+ # The device's status.
2825
+ # @return [String]
2826
+ #
2726
2827
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/ProvisionDeviceResponse AWS API Documentation
2727
2828
  #
2728
2829
  class ProvisionDeviceResponse < Struct.new(
2729
- :device_id,
2730
2830
  :arn,
2731
- :status,
2732
2831
  :certificates,
2733
- :iot_thing_name)
2832
+ :device_id,
2833
+ :iot_thing_name,
2834
+ :status)
2734
2835
  SENSITIVE = []
2735
2836
  include Aws::Structure
2736
2837
  end
@@ -2739,13 +2840,17 @@ module Aws::Panorama
2739
2840
  # data as a hash:
2740
2841
  #
2741
2842
  # {
2843
+ # mark_latest: false,
2742
2844
  # owner_account: "PackageOwnerAccount",
2743
2845
  # package_id: "NodePackageId", # required
2744
2846
  # package_version: "NodePackageVersion", # required
2745
2847
  # patch_version: "NodePackagePatchVersion", # required
2746
- # mark_latest: false,
2747
2848
  # }
2748
2849
  #
2850
+ # @!attribute [rw] mark_latest
2851
+ # Whether to mark the new version as the latest version.
2852
+ # @return [Boolean]
2853
+ #
2749
2854
  # @!attribute [rw] owner_account
2750
2855
  # An owner account.
2751
2856
  # @return [String]
@@ -2762,18 +2867,14 @@ module Aws::Panorama
2762
2867
  # A patch version.
2763
2868
  # @return [String]
2764
2869
  #
2765
- # @!attribute [rw] mark_latest
2766
- # Whether to mark the new version as the latest version.
2767
- # @return [Boolean]
2768
- #
2769
2870
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/RegisterPackageVersionRequest AWS API Documentation
2770
2871
  #
2771
2872
  class RegisterPackageVersionRequest < Struct.new(
2873
+ :mark_latest,
2772
2874
  :owner_account,
2773
2875
  :package_id,
2774
2876
  :package_version,
2775
- :patch_version,
2776
- :mark_latest)
2877
+ :patch_version)
2777
2878
  SENSITIVE = []
2778
2879
  include Aws::Structure
2779
2880
  end
@@ -2834,15 +2935,11 @@ module Aws::Panorama
2834
2935
  # data as a hash:
2835
2936
  #
2836
2937
  # {
2837
- # region: "Region",
2838
2938
  # bucket_name: "BucketName", # required
2839
2939
  # object_key: "ObjectKey", # required
2940
+ # region: "Region",
2840
2941
  # }
2841
2942
  #
2842
- # @!attribute [rw] region
2843
- # The bucket's Region.
2844
- # @return [String]
2845
- #
2846
2943
  # @!attribute [rw] bucket_name
2847
2944
  # A bucket name.
2848
2945
  # @return [String]
@@ -2851,12 +2948,16 @@ module Aws::Panorama
2851
2948
  # An object key.
2852
2949
  # @return [String]
2853
2950
  #
2951
+ # @!attribute [rw] region
2952
+ # The bucket's Region.
2953
+ # @return [String]
2954
+ #
2854
2955
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/S3Location AWS API Documentation
2855
2956
  #
2856
2957
  class S3Location < Struct.new(
2857
- :region,
2858
2958
  :bucket_name,
2859
- :object_key)
2959
+ :object_key,
2960
+ :region)
2860
2961
  SENSITIVE = []
2861
2962
  include Aws::Structure
2862
2963
  end
@@ -2866,6 +2967,10 @@ module Aws::Panorama
2866
2967
  # @!attribute [rw] message
2867
2968
  # @return [String]
2868
2969
  #
2970
+ # @!attribute [rw] quota_code
2971
+ # The name of the limit.
2972
+ # @return [String]
2973
+ #
2869
2974
  # @!attribute [rw] resource_id
2870
2975
  # The target resource's ID.
2871
2976
  # @return [String]
@@ -2874,10 +2979,6 @@ module Aws::Panorama
2874
2979
  # The target resource's type.
2875
2980
  # @return [String]
2876
2981
  #
2877
- # @!attribute [rw] quota_code
2878
- # The name of the limit.
2879
- # @return [String]
2880
- #
2881
2982
  # @!attribute [rw] service_code
2882
2983
  # The name of the service.
2883
2984
  # @return [String]
@@ -2886,9 +2987,9 @@ module Aws::Panorama
2886
2987
  #
2887
2988
  class ServiceQuotaExceededException < Struct.new(
2888
2989
  :message,
2990
+ :quota_code,
2889
2991
  :resource_id,
2890
2992
  :resource_type,
2891
- :quota_code,
2892
2993
  :service_code)
2893
2994
  SENSITIVE = []
2894
2995
  include Aws::Structure
@@ -2900,69 +3001,69 @@ module Aws::Panorama
2900
3001
  # data as a hash:
2901
3002
  #
2902
3003
  # {
3004
+ # default_gateway: "DefaultGateway", # required
3005
+ # dns: ["Dns"], # required
2903
3006
  # ip_address: "IpAddress", # required
2904
3007
  # mask: "Mask", # required
2905
- # dns: ["Dns"], # required
2906
- # default_gateway: "DefaultGateway", # required
2907
3008
  # }
2908
3009
  #
2909
- # @!attribute [rw] ip_address
2910
- # The connection's IP address.
2911
- # @return [String]
2912
- #
2913
- # @!attribute [rw] mask
2914
- # The connection's DNS mask.
3010
+ # @!attribute [rw] default_gateway
3011
+ # The connection's default gateway.
2915
3012
  # @return [String]
2916
3013
  #
2917
3014
  # @!attribute [rw] dns
2918
3015
  # The connection's DNS address.
2919
3016
  # @return [Array<String>]
2920
3017
  #
2921
- # @!attribute [rw] default_gateway
2922
- # The connection's default gateway.
3018
+ # @!attribute [rw] ip_address
3019
+ # The connection's IP address.
3020
+ # @return [String]
3021
+ #
3022
+ # @!attribute [rw] mask
3023
+ # The connection's DNS mask.
2923
3024
  # @return [String]
2924
3025
  #
2925
3026
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/StaticIpConnectionInfo AWS API Documentation
2926
3027
  #
2927
3028
  class StaticIpConnectionInfo < Struct.new(
2928
- :ip_address,
2929
- :mask,
3029
+ :default_gateway,
2930
3030
  :dns,
2931
- :default_gateway)
3031
+ :ip_address,
3032
+ :mask)
2932
3033
  SENSITIVE = []
2933
3034
  include Aws::Structure
2934
3035
  end
2935
3036
 
2936
3037
  # A storage location.
2937
3038
  #
2938
- # @!attribute [rw] bucket
2939
- # The location's bucket.
3039
+ # @!attribute [rw] binary_prefix_location
3040
+ # The location's binary prefix.
2940
3041
  # @return [String]
2941
3042
  #
2942
- # @!attribute [rw] repo_prefix_location
2943
- # The location's repo prefix.
3043
+ # @!attribute [rw] bucket
3044
+ # The location's bucket.
2944
3045
  # @return [String]
2945
3046
  #
2946
3047
  # @!attribute [rw] generated_prefix_location
2947
3048
  # The location's generated prefix.
2948
3049
  # @return [String]
2949
3050
  #
2950
- # @!attribute [rw] binary_prefix_location
2951
- # The location's binary prefix.
2952
- # @return [String]
2953
- #
2954
3051
  # @!attribute [rw] manifest_prefix_location
2955
3052
  # The location's manifest prefix.
2956
3053
  # @return [String]
2957
3054
  #
3055
+ # @!attribute [rw] repo_prefix_location
3056
+ # The location's repo prefix.
3057
+ # @return [String]
3058
+ #
2958
3059
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/StorageLocation AWS API Documentation
2959
3060
  #
2960
3061
  class StorageLocation < Struct.new(
3062
+ :binary_prefix_location,
2961
3063
  :bucket,
2962
- :repo_prefix_location,
2963
3064
  :generated_prefix_location,
2964
- :binary_prefix_location,
2965
- :manifest_prefix_location)
3065
+ :manifest_prefix_location,
3066
+ :repo_prefix_location)
2966
3067
  SENSITIVE = []
2967
3068
  include Aws::Structure
2968
3069
  end
@@ -3031,23 +3132,23 @@ module Aws::Panorama
3031
3132
  # data as a hash:
3032
3133
  #
3033
3134
  # {
3034
- # device_id: "DeviceId", # required
3035
3135
  # description: "Description",
3136
+ # device_id: "DeviceId", # required
3036
3137
  # }
3037
3138
  #
3038
- # @!attribute [rw] device_id
3039
- # The device's ID.
3040
- # @return [String]
3041
- #
3042
3139
  # @!attribute [rw] description
3043
3140
  # A description for the device.
3044
3141
  # @return [String]
3045
3142
  #
3143
+ # @!attribute [rw] device_id
3144
+ # The device's ID.
3145
+ # @return [String]
3146
+ #
3046
3147
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/UpdateDeviceMetadataRequest AWS API Documentation
3047
3148
  #
3048
3149
  class UpdateDeviceMetadataRequest < Struct.new(
3049
- :device_id,
3050
- :description)
3150
+ :description,
3151
+ :device_id)
3051
3152
  SENSITIVE = []
3052
3153
  include Aws::Structure
3053
3154
  end
@@ -3066,33 +3167,33 @@ module Aws::Panorama
3066
3167
 
3067
3168
  # The request contains an invalid parameter value.
3068
3169
  #
3069
- # @!attribute [rw] message
3070
- # @return [String]
3071
- #
3072
- # @!attribute [rw] reason
3073
- # The reason that validation failed.
3074
- # @return [String]
3170
+ # @!attribute [rw] error_arguments
3171
+ # A list of attributes that led to the exception and their values.
3172
+ # @return [Array<Types::ValidationExceptionErrorArgument>]
3075
3173
  #
3076
3174
  # @!attribute [rw] error_id
3077
3175
  # A unique ID for the error.
3078
3176
  # @return [String]
3079
3177
  #
3080
- # @!attribute [rw] error_arguments
3081
- # A list of attributes that led to the exception and their values.
3082
- # @return [Array<Types::ValidationExceptionErrorArgument>]
3083
- #
3084
3178
  # @!attribute [rw] fields
3085
3179
  # A list of request parameters that failed validation.
3086
3180
  # @return [Array<Types::ValidationExceptionField>]
3087
3181
  #
3182
+ # @!attribute [rw] message
3183
+ # @return [String]
3184
+ #
3185
+ # @!attribute [rw] reason
3186
+ # The reason that validation failed.
3187
+ # @return [String]
3188
+ #
3088
3189
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/ValidationException AWS API Documentation
3089
3190
  #
3090
3191
  class ValidationException < Struct.new(
3091
- :message,
3092
- :reason,
3093
- :error_id,
3094
3192
  :error_arguments,
3095
- :fields)
3193
+ :error_id,
3194
+ :fields,
3195
+ :message,
3196
+ :reason)
3096
3197
  SENSITIVE = []
3097
3198
  include Aws::Structure
3098
3199
  end
@@ -3118,19 +3219,19 @@ module Aws::Panorama
3118
3219
 
3119
3220
  # A validation exception field.
3120
3221
  #
3121
- # @!attribute [rw] name
3122
- # The field's name.
3123
- # @return [String]
3124
- #
3125
3222
  # @!attribute [rw] message
3126
3223
  # The field's message.
3127
3224
  # @return [String]
3128
3225
  #
3226
+ # @!attribute [rw] name
3227
+ # The field's name.
3228
+ # @return [String]
3229
+ #
3129
3230
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/ValidationExceptionField AWS API Documentation
3130
3231
  #
3131
3232
  class ValidationExceptionField < Struct.new(
3132
- :name,
3133
- :message)
3233
+ :message,
3234
+ :name)
3134
3235
  SENSITIVE = []
3135
3236
  include Aws::Structure
3136
3237
  end