aws-sdk-panorama 1.5.0 → 1.6.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,60 @@ module Aws::Panorama
823
837
  include Aws::Structure
824
838
  end
825
839
 
826
- # @!attribute [rw] device_id
827
- # The device's ID.
828
- # @return [String]
829
- #
830
- # @!attribute [rw] name
831
- # The device's name.
832
- # @return [String]
840
+ # @!attribute [rw] alternate_softwares
841
+ # Beta software releases available for the device.
842
+ # @return [Array<Types::AlternateSoftwareMetadata>]
833
843
  #
834
844
  # @!attribute [rw] arn
835
845
  # The device's ARN.
836
846
  # @return [String]
837
847
  #
838
- # @!attribute [rw] description
839
- # The device's description.
848
+ # @!attribute [rw] created_time
849
+ # When the device was created.
850
+ # @return [Time]
851
+ #
852
+ # @!attribute [rw] current_networking_status
853
+ # The device's networking status.
854
+ # @return [Types::NetworkStatus]
855
+ #
856
+ # @!attribute [rw] current_software
857
+ # The device's current software version.
840
858
  # @return [String]
841
859
  #
842
- # @!attribute [rw] type
843
- # The device's type.
860
+ # @!attribute [rw] description
861
+ # The device's description.
844
862
  # @return [String]
845
863
  #
846
864
  # @!attribute [rw] device_connection_status
847
865
  # The device's connection status.
848
866
  # @return [String]
849
867
  #
850
- # @!attribute [rw] created_time
851
- # When the device was created.
852
- # @return [Time]
868
+ # @!attribute [rw] device_id
869
+ # The device's ID.
870
+ # @return [String]
853
871
  #
854
- # @!attribute [rw] provisioning_status
855
- # The device's provisioning status.
872
+ # @!attribute [rw] latest_alternate_software
873
+ # The most recent beta software release.
856
874
  # @return [String]
857
875
  #
858
876
  # @!attribute [rw] latest_software
859
877
  # The latest software version available for the device.
860
878
  # @return [String]
861
879
  #
862
- # @!attribute [rw] current_software
863
- # The device's current software version.
880
+ # @!attribute [rw] lease_expiration_time
881
+ # The device's lease expiration time.
882
+ # @return [Time]
883
+ #
884
+ # @!attribute [rw] name
885
+ # The device's name.
886
+ # @return [String]
887
+ #
888
+ # @!attribute [rw] networking_configuration
889
+ # The device's networking configuration.
890
+ # @return [Types::NetworkPayload]
891
+ #
892
+ # @!attribute [rw] provisioning_status
893
+ # The device's provisioning status.
864
894
  # @return [String]
865
895
  #
866
896
  # @!attribute [rw] serial_number
@@ -871,36 +901,30 @@ module Aws::Panorama
871
901
  # The device's tags.
872
902
  # @return [Hash<String,String>]
873
903
  #
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]
904
+ # @!attribute [rw] type
905
+ # The device's type.
906
+ # @return [String]
885
907
  #
886
908
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/DescribeDeviceResponse AWS API Documentation
887
909
  #
888
910
  class DescribeDeviceResponse < Struct.new(
889
- :device_id,
890
- :name,
911
+ :alternate_softwares,
891
912
  :arn,
913
+ :created_time,
914
+ :current_networking_status,
915
+ :current_software,
892
916
  :description,
893
- :type,
894
917
  :device_connection_status,
895
- :created_time,
896
- :provisioning_status,
918
+ :device_id,
919
+ :latest_alternate_software,
897
920
  :latest_software,
898
- :current_software,
921
+ :lease_expiration_time,
922
+ :name,
923
+ :networking_configuration,
924
+ :provisioning_status,
899
925
  :serial_number,
900
926
  :tags,
901
- :networking_configuration,
902
- :current_networking_status,
903
- :lease_expiration_time)
927
+ :type)
904
928
  SENSITIVE = []
905
929
  include Aws::Structure
906
930
  end
@@ -924,26 +948,30 @@ module Aws::Panorama
924
948
  include Aws::Structure
925
949
  end
926
950
 
951
+ # @!attribute [rw] created_time
952
+ # When the job was created.
953
+ # @return [Time]
954
+ #
927
955
  # @!attribute [rw] job_id
928
956
  # The job's ID.
929
957
  # @return [String]
930
958
  #
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]
959
+ # @!attribute [rw] job_tags
960
+ # The job's tags.
961
+ # @return [Array<Types::JobResourceTags>]
942
962
  #
943
963
  # @!attribute [rw] last_updated_time
944
964
  # When the job was updated.
945
965
  # @return [Time]
946
966
  #
967
+ # @!attribute [rw] node_description
968
+ # The node's description.
969
+ # @return [String]
970
+ #
971
+ # @!attribute [rw] node_name
972
+ # The node's name.
973
+ # @return [String]
974
+ #
947
975
  # @!attribute [rw] output_package_name
948
976
  # The job's output package name.
949
977
  # @return [String]
@@ -952,41 +980,37 @@ module Aws::Panorama
952
980
  # The job's output package version.
953
981
  # @return [String]
954
982
  #
955
- # @!attribute [rw] node_name
956
- # The node's name.
957
- # @return [String]
958
- #
959
- # @!attribute [rw] node_description
960
- # The node's description.
983
+ # @!attribute [rw] status
984
+ # The job's status.
961
985
  # @return [String]
962
986
  #
963
- # @!attribute [rw] template_type
964
- # The job's template type.
987
+ # @!attribute [rw] status_message
988
+ # The job's status message.
965
989
  # @return [String]
966
990
  #
967
991
  # @!attribute [rw] template_parameters
968
992
  # The job's template parameters.
969
993
  # @return [Hash<String,String>]
970
994
  #
971
- # @!attribute [rw] job_tags
972
- # The job's tags.
973
- # @return [Array<Types::JobResourceTags>]
995
+ # @!attribute [rw] template_type
996
+ # The job's template type.
997
+ # @return [String]
974
998
  #
975
999
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/DescribeNodeFromTemplateJobResponse AWS API Documentation
976
1000
  #
977
1001
  class DescribeNodeFromTemplateJobResponse < Struct.new(
978
- :job_id,
979
- :status,
980
- :status_message,
981
1002
  :created_time,
1003
+ :job_id,
1004
+ :job_tags,
982
1005
  :last_updated_time,
1006
+ :node_description,
1007
+ :node_name,
983
1008
  :output_package_name,
984
1009
  :output_package_version,
985
- :node_name,
986
- :node_description,
987
- :template_type,
1010
+ :status,
1011
+ :status_message,
988
1012
  :template_parameters,
989
- :job_tags)
1013
+ :template_type)
990
1014
  SENSITIVE = []
991
1015
  include Aws::Structure
992
1016
  end
@@ -1016,32 +1040,52 @@ module Aws::Panorama
1016
1040
  include Aws::Structure
1017
1041
  end
1018
1042
 
1019
- # @!attribute [rw] node_id
1020
- # The node's ID.
1043
+ # @!attribute [rw] asset_name
1044
+ # The node's asset name.
1021
1045
  # @return [String]
1022
1046
  #
1047
+ # @!attribute [rw] category
1048
+ # The node's category.
1049
+ # @return [String]
1050
+ #
1051
+ # @!attribute [rw] created_time
1052
+ # When the node was created.
1053
+ # @return [Time]
1054
+ #
1055
+ # @!attribute [rw] description
1056
+ # The node's description.
1057
+ # @return [String]
1058
+ #
1059
+ # @!attribute [rw] last_updated_time
1060
+ # When the node was updated.
1061
+ # @return [Time]
1062
+ #
1023
1063
  # @!attribute [rw] name
1024
1064
  # The node's name.
1025
1065
  # @return [String]
1026
1066
  #
1027
- # @!attribute [rw] category
1028
- # The node's category.
1067
+ # @!attribute [rw] node_id
1068
+ # The node's ID.
1029
1069
  # @return [String]
1030
1070
  #
1071
+ # @!attribute [rw] node_interface
1072
+ # The node's interface.
1073
+ # @return [Types::NodeInterface]
1074
+ #
1031
1075
  # @!attribute [rw] owner_account
1032
1076
  # The account ID of the node's owner.
1033
1077
  # @return [String]
1034
1078
  #
1035
- # @!attribute [rw] package_name
1036
- # The node's package name.
1079
+ # @!attribute [rw] package_arn
1080
+ # The node's ARN.
1037
1081
  # @return [String]
1038
1082
  #
1039
1083
  # @!attribute [rw] package_id
1040
1084
  # The node's package ID.
1041
1085
  # @return [String]
1042
1086
  #
1043
- # @!attribute [rw] package_arn
1044
- # The node's ARN.
1087
+ # @!attribute [rw] package_name
1088
+ # The node's package name.
1045
1089
  # @return [String]
1046
1090
  #
1047
1091
  # @!attribute [rw] package_version
@@ -1052,43 +1096,23 @@ module Aws::Panorama
1052
1096
  # The node's patch version.
1053
1097
  # @return [String]
1054
1098
  #
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
1099
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/DescribeNodeResponse AWS API Documentation
1076
1100
  #
1077
1101
  class DescribeNodeResponse < Struct.new(
1078
- :node_id,
1079
- :name,
1102
+ :asset_name,
1080
1103
  :category,
1104
+ :created_time,
1105
+ :description,
1106
+ :last_updated_time,
1107
+ :name,
1108
+ :node_id,
1109
+ :node_interface,
1081
1110
  :owner_account,
1082
- :package_name,
1083
- :package_id,
1084
1111
  :package_arn,
1112
+ :package_id,
1113
+ :package_name,
1085
1114
  :package_version,
1086
- :patch_version,
1087
- :node_interface,
1088
- :asset_name,
1089
- :description,
1090
- :created_time,
1091
- :last_updated_time)
1115
+ :patch_version)
1092
1116
  SENSITIVE = []
1093
1117
  include Aws::Structure
1094
1118
  end
@@ -1112,38 +1136,42 @@ module Aws::Panorama
1112
1136
  include Aws::Structure
1113
1137
  end
1114
1138
 
1115
- # @!attribute [rw] job_id
1116
- # The job's ID.
1117
- # @return [String]
1118
- #
1119
1139
  # @!attribute [rw] client_token
1120
1140
  # The job's client token.
1121
1141
  # @return [String]
1122
1142
  #
1123
- # @!attribute [rw] job_type
1124
- # The job's type.
1125
- # @return [String]
1143
+ # @!attribute [rw] created_time
1144
+ # When the job was created.
1145
+ # @return [Time]
1126
1146
  #
1127
1147
  # @!attribute [rw] input_config
1128
1148
  # The job's input config.
1129
1149
  # @return [Types::PackageImportJobInputConfig]
1130
1150
  #
1131
- # @!attribute [rw] output_config
1132
- # The job's output config.
1133
- # @return [Types::PackageImportJobOutputConfig]
1151
+ # @!attribute [rw] job_id
1152
+ # The job's ID.
1153
+ # @return [String]
1134
1154
  #
1135
- # @!attribute [rw] output
1136
- # The job's output.
1137
- # @return [Types::PackageImportJobOutput]
1155
+ # @!attribute [rw] job_tags
1156
+ # The job's tags.
1157
+ # @return [Array<Types::JobResourceTags>]
1138
1158
  #
1139
- # @!attribute [rw] created_time
1140
- # When the job was created.
1141
- # @return [Time]
1159
+ # @!attribute [rw] job_type
1160
+ # The job's type.
1161
+ # @return [String]
1142
1162
  #
1143
1163
  # @!attribute [rw] last_updated_time
1144
1164
  # When the job was updated.
1145
1165
  # @return [Time]
1146
1166
  #
1167
+ # @!attribute [rw] output
1168
+ # The job's output.
1169
+ # @return [Types::PackageImportJobOutput]
1170
+ #
1171
+ # @!attribute [rw] output_config
1172
+ # The job's output config.
1173
+ # @return [Types::PackageImportJobOutputConfig]
1174
+ #
1147
1175
  # @!attribute [rw] status
1148
1176
  # The job's status.
1149
1177
  # @return [String]
@@ -1152,24 +1180,20 @@ module Aws::Panorama
1152
1180
  # The job's status message.
1153
1181
  # @return [String]
1154
1182
  #
1155
- # @!attribute [rw] job_tags
1156
- # The job's tags.
1157
- # @return [Array<Types::JobResourceTags>]
1158
- #
1159
1183
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/DescribePackageImportJobResponse AWS API Documentation
1160
1184
  #
1161
1185
  class DescribePackageImportJobResponse < Struct.new(
1162
- :job_id,
1163
1186
  :client_token,
1164
- :job_type,
1165
- :input_config,
1166
- :output_config,
1167
- :output,
1168
1187
  :created_time,
1188
+ :input_config,
1189
+ :job_id,
1190
+ :job_tags,
1191
+ :job_type,
1169
1192
  :last_updated_time,
1193
+ :output,
1194
+ :output_config,
1170
1195
  :status,
1171
- :status_message,
1172
- :job_tags)
1196
+ :status_message)
1173
1197
  SENSITIVE = []
1174
1198
  include Aws::Structure
1175
1199
  end
@@ -1193,6 +1217,14 @@ module Aws::Panorama
1193
1217
  include Aws::Structure
1194
1218
  end
1195
1219
 
1220
+ # @!attribute [rw] arn
1221
+ # The package's ARN.
1222
+ # @return [String]
1223
+ #
1224
+ # @!attribute [rw] created_time
1225
+ # When the package was created.
1226
+ # @return [Time]
1227
+ #
1196
1228
  # @!attribute [rw] package_id
1197
1229
  # The package's ID.
1198
1230
  # @return [String]
@@ -1201,41 +1233,33 @@ module Aws::Panorama
1201
1233
  # The package's name.
1202
1234
  # @return [String]
1203
1235
  #
1204
- # @!attribute [rw] arn
1205
- # The package's ARN.
1206
- # @return [String]
1236
+ # @!attribute [rw] read_access_principal_arns
1237
+ # ARNs of accounts that have read access to the package.
1238
+ # @return [Array<String>]
1207
1239
  #
1208
1240
  # @!attribute [rw] storage_location
1209
1241
  # The package's storage location.
1210
1242
  # @return [Types::StorageLocation]
1211
1243
  #
1212
- # @!attribute [rw] read_access_principal_arns
1213
- # ARNs of accounts that have read access to the package.
1214
- # @return [Array<String>]
1244
+ # @!attribute [rw] tags
1245
+ # The package's tags.
1246
+ # @return [Hash<String,String>]
1215
1247
  #
1216
1248
  # @!attribute [rw] write_access_principal_arns
1217
1249
  # ARNs of accounts that have write access to the package.
1218
1250
  # @return [Array<String>]
1219
1251
  #
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
1252
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/DescribePackageResponse AWS API Documentation
1229
1253
  #
1230
1254
  class DescribePackageResponse < Struct.new(
1255
+ :arn,
1256
+ :created_time,
1231
1257
  :package_id,
1232
1258
  :package_name,
1233
- :arn,
1234
- :storage_location,
1235
1259
  :read_access_principal_arns,
1236
- :write_access_principal_arns,
1237
- :created_time,
1238
- :tags)
1260
+ :storage_location,
1261
+ :tags,
1262
+ :write_access_principal_arns)
1239
1263
  SENSITIVE = []
1240
1264
  include Aws::Structure
1241
1265
  end
@@ -1277,18 +1301,22 @@ module Aws::Panorama
1277
1301
  include Aws::Structure
1278
1302
  end
1279
1303
 
1304
+ # @!attribute [rw] is_latest_patch
1305
+ # Whether the version is the latest available.
1306
+ # @return [Boolean]
1307
+ #
1280
1308
  # @!attribute [rw] owner_account
1281
1309
  # The account ID of the version's owner.
1282
1310
  # @return [String]
1283
1311
  #
1284
- # @!attribute [rw] package_id
1285
- # The version's ID.
1286
- # @return [String]
1287
- #
1288
1312
  # @!attribute [rw] package_arn
1289
1313
  # The ARN of the package.
1290
1314
  # @return [String]
1291
1315
  #
1316
+ # @!attribute [rw] package_id
1317
+ # The version's ID.
1318
+ # @return [String]
1319
+ #
1292
1320
  # @!attribute [rw] package_name
1293
1321
  # The version's name.
1294
1322
  # @return [String]
@@ -1301,9 +1329,9 @@ module Aws::Panorama
1301
1329
  # The version's patch version.
1302
1330
  # @return [String]
1303
1331
  #
1304
- # @!attribute [rw] is_latest_patch
1305
- # Whether the version is the latest available.
1306
- # @return [Boolean]
1332
+ # @!attribute [rw] registered_time
1333
+ # The version's registered time.
1334
+ # @return [Time]
1307
1335
  #
1308
1336
  # @!attribute [rw] status
1309
1337
  # The version's status.
@@ -1313,43 +1341,31 @@ module Aws::Panorama
1313
1341
  # The version's status description.
1314
1342
  # @return [String]
1315
1343
  #
1316
- # @!attribute [rw] registered_time
1317
- # The version's registered time.
1318
- # @return [Time]
1319
- #
1320
1344
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/DescribePackageVersionResponse AWS API Documentation
1321
1345
  #
1322
1346
  class DescribePackageVersionResponse < Struct.new(
1347
+ :is_latest_patch,
1323
1348
  :owner_account,
1324
- :package_id,
1325
1349
  :package_arn,
1350
+ :package_id,
1326
1351
  :package_name,
1327
1352
  :package_version,
1328
1353
  :patch_version,
1329
- :is_latest_patch,
1354
+ :registered_time,
1330
1355
  :status,
1331
- :status_description,
1332
- :registered_time)
1356
+ :status_description)
1333
1357
  SENSITIVE = []
1334
1358
  include Aws::Structure
1335
1359
  end
1336
1360
 
1337
1361
  # A device.
1338
1362
  #
1339
- # @!attribute [rw] device_id
1340
- # The device's ID.
1341
- # @return [String]
1342
- #
1343
- # @!attribute [rw] name
1344
- # The device's name.
1345
- # @return [String]
1346
- #
1347
1363
  # @!attribute [rw] created_time
1348
1364
  # When the device was created.
1349
1365
  # @return [Time]
1350
1366
  #
1351
- # @!attribute [rw] provisioning_status
1352
- # The device's provisioning status.
1367
+ # @!attribute [rw] device_id
1368
+ # The device's ID.
1353
1369
  # @return [String]
1354
1370
  #
1355
1371
  # @!attribute [rw] last_updated_time
@@ -1360,44 +1376,52 @@ module Aws::Panorama
1360
1376
  # The device's lease expiration time.
1361
1377
  # @return [Time]
1362
1378
  #
1379
+ # @!attribute [rw] name
1380
+ # The device's name.
1381
+ # @return [String]
1382
+ #
1383
+ # @!attribute [rw] provisioning_status
1384
+ # The device's provisioning status.
1385
+ # @return [String]
1386
+ #
1363
1387
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/Device AWS API Documentation
1364
1388
  #
1365
1389
  class Device < Struct.new(
1366
- :device_id,
1367
- :name,
1368
1390
  :created_time,
1369
- :provisioning_status,
1391
+ :device_id,
1370
1392
  :last_updated_time,
1371
- :lease_expiration_time)
1393
+ :lease_expiration_time,
1394
+ :name,
1395
+ :provisioning_status)
1372
1396
  SENSITIVE = []
1373
1397
  include Aws::Structure
1374
1398
  end
1375
1399
 
1376
1400
  # A job that runs on a device.
1377
1401
  #
1378
- # @!attribute [rw] device_name
1379
- # The name of the target device
1380
- # @return [String]
1402
+ # @!attribute [rw] created_time
1403
+ # When the job was created.
1404
+ # @return [Time]
1381
1405
  #
1382
1406
  # @!attribute [rw] device_id
1383
1407
  # The ID of the target device.
1384
1408
  # @return [String]
1385
1409
  #
1410
+ # @!attribute [rw] device_name
1411
+ # The name of the target device
1412
+ # @return [String]
1413
+ #
1386
1414
  # @!attribute [rw] job_id
1387
1415
  # The job's ID.
1388
1416
  # @return [String]
1389
1417
  #
1390
- # @!attribute [rw] created_time
1391
- # When the job was created.
1392
- # @return [Time]
1393
- #
1394
1418
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/DeviceJob AWS API Documentation
1395
1419
  #
1396
1420
  class DeviceJob < Struct.new(
1397
- :device_name,
1421
+ :created_time,
1398
1422
  :device_id,
1399
- :job_id,
1400
- :created_time)
1423
+ :device_name,
1424
+ :job_id)
1401
1425
  SENSITIVE = []
1402
1426
  include Aws::Structure
1403
1427
  end
@@ -1434,10 +1458,10 @@ module Aws::Panorama
1434
1458
  # {
1435
1459
  # connection_type: "STATIC_IP", # required, accepts STATIC_IP, DHCP
1436
1460
  # static_ip_connection_info: {
1461
+ # default_gateway: "DefaultGateway", # required
1462
+ # dns: ["Dns"], # required
1437
1463
  # ip_address: "IpAddress", # required
1438
1464
  # mask: "Mask", # required
1439
- # dns: ["Dns"], # required
1440
- # default_gateway: "DefaultGateway", # required
1441
1465
  # },
1442
1466
  # }
1443
1467
  #
@@ -1460,10 +1484,6 @@ module Aws::Panorama
1460
1484
 
1461
1485
  # A device's Ethernet status.
1462
1486
  #
1463
- # @!attribute [rw] ip_address
1464
- # The device's IP address.
1465
- # @return [String]
1466
- #
1467
1487
  # @!attribute [rw] connection_status
1468
1488
  # The device's connection status.
1469
1489
  # @return [String]
@@ -1472,12 +1492,16 @@ module Aws::Panorama
1472
1492
  # The device's physical address.
1473
1493
  # @return [String]
1474
1494
  #
1495
+ # @!attribute [rw] ip_address
1496
+ # The device's IP address.
1497
+ # @return [String]
1498
+ #
1475
1499
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/EthernetStatus AWS API Documentation
1476
1500
  #
1477
1501
  class EthernetStatus < Struct.new(
1478
- :ip_address,
1479
1502
  :connection_status,
1480
- :hw_address)
1503
+ :hw_address,
1504
+ :ip_address)
1481
1505
  SENSITIVE = []
1482
1506
  include Aws::Structure
1483
1507
  end
@@ -1502,19 +1526,19 @@ module Aws::Panorama
1502
1526
 
1503
1527
  # A job for a device.
1504
1528
  #
1505
- # @!attribute [rw] job_id
1506
- # The job's ID.
1507
- # @return [String]
1508
- #
1509
1529
  # @!attribute [rw] device_id
1510
1530
  # The target device's ID.
1511
1531
  # @return [String]
1512
1532
  #
1533
+ # @!attribute [rw] job_id
1534
+ # The job's ID.
1535
+ # @return [String]
1536
+ #
1513
1537
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/Job AWS API Documentation
1514
1538
  #
1515
1539
  class Job < Struct.new(
1516
- :job_id,
1517
- :device_id)
1540
+ :device_id,
1541
+ :job_id)
1518
1542
  SENSITIVE = []
1519
1543
  include Aws::Structure
1520
1544
  end
@@ -1581,19 +1605,19 @@ module Aws::Panorama
1581
1605
  include Aws::Structure
1582
1606
  end
1583
1607
 
1584
- # @!attribute [rw] package_objects
1585
- # A list of package objects.
1586
- # @return [Array<Types::PackageObject>]
1587
- #
1588
1608
  # @!attribute [rw] next_token
1589
1609
  # A pagination token that's included if more results are available.
1590
1610
  # @return [String]
1591
1611
  #
1612
+ # @!attribute [rw] package_objects
1613
+ # A list of package objects.
1614
+ # @return [Array<Types::PackageObject>]
1615
+ #
1592
1616
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/ListApplicationInstanceDependenciesResponse AWS API Documentation
1593
1617
  #
1594
1618
  class ListApplicationInstanceDependenciesResponse < Struct.new(
1595
- :package_objects,
1596
- :next_token)
1619
+ :next_token,
1620
+ :package_objects)
1597
1621
  SENSITIVE = []
1598
1622
  include Aws::Structure
1599
1623
  end
@@ -1631,19 +1655,19 @@ module Aws::Panorama
1631
1655
  include Aws::Structure
1632
1656
  end
1633
1657
 
1634
- # @!attribute [rw] node_instances
1635
- # A list of node instances.
1636
- # @return [Array<Types::NodeInstance>]
1637
- #
1638
1658
  # @!attribute [rw] next_token
1639
1659
  # A pagination token that's included if more results are available.
1640
1660
  # @return [String]
1641
1661
  #
1662
+ # @!attribute [rw] node_instances
1663
+ # A list of node instances.
1664
+ # @return [Array<Types::NodeInstance>]
1665
+ #
1642
1666
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/ListApplicationInstanceNodeInstancesResponse AWS API Documentation
1643
1667
  #
1644
1668
  class ListApplicationInstanceNodeInstancesResponse < Struct.new(
1645
- :node_instances,
1646
- :next_token)
1669
+ :next_token,
1670
+ :node_instances)
1647
1671
  SENSITIVE = []
1648
1672
  include Aws::Structure
1649
1673
  end
@@ -1653,19 +1677,15 @@ module Aws::Panorama
1653
1677
  #
1654
1678
  # {
1655
1679
  # device_id: "DeviceId",
1656
- # status_filter: "DEPLOYMENT_SUCCEEDED", # accepts DEPLOYMENT_SUCCEEDED, DEPLOYMENT_ERROR, REMOVAL_SUCCEEDED, REMOVAL_FAILED, PROCESSING_DEPLOYMENT, PROCESSING_REMOVAL
1657
1680
  # max_results: 1,
1658
1681
  # next_token: "NextToken",
1682
+ # status_filter: "DEPLOYMENT_SUCCEEDED", # accepts DEPLOYMENT_SUCCEEDED, DEPLOYMENT_ERROR, REMOVAL_SUCCEEDED, REMOVAL_FAILED, PROCESSING_DEPLOYMENT, PROCESSING_REMOVAL
1659
1683
  # }
1660
1684
  #
1661
1685
  # @!attribute [rw] device_id
1662
1686
  # The application instances' device ID.
1663
1687
  # @return [String]
1664
1688
  #
1665
- # @!attribute [rw] status_filter
1666
- # Only include instances with a specific status.
1667
- # @return [String]
1668
- #
1669
1689
  # @!attribute [rw] max_results
1670
1690
  # The maximum number of application instances to return in one page of
1671
1691
  # results.
@@ -1676,13 +1696,17 @@ module Aws::Panorama
1676
1696
  # next page of results.
1677
1697
  # @return [String]
1678
1698
  #
1699
+ # @!attribute [rw] status_filter
1700
+ # Only include instances with a specific status.
1701
+ # @return [String]
1702
+ #
1679
1703
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/ListApplicationInstancesRequest AWS API Documentation
1680
1704
  #
1681
1705
  class ListApplicationInstancesRequest < Struct.new(
1682
1706
  :device_id,
1683
- :status_filter,
1684
1707
  :max_results,
1685
- :next_token)
1708
+ :next_token,
1709
+ :status_filter)
1686
1710
  SENSITIVE = []
1687
1711
  include Aws::Structure
1688
1712
  end
@@ -1709,29 +1733,29 @@ module Aws::Panorama
1709
1733
  #
1710
1734
  # {
1711
1735
  # device_id: "DeviceId",
1712
- # next_token: "NextToken",
1713
1736
  # max_results: 1,
1737
+ # next_token: "NextToken",
1714
1738
  # }
1715
1739
  #
1716
1740
  # @!attribute [rw] device_id
1717
1741
  # Filter results by the job's target device ID.
1718
1742
  # @return [String]
1719
1743
  #
1744
+ # @!attribute [rw] max_results
1745
+ # The maximum number of device jobs to return in one page of results.
1746
+ # @return [Integer]
1747
+ #
1720
1748
  # @!attribute [rw] next_token
1721
1749
  # Specify the pagination token from a previous request to retrieve the
1722
1750
  # next page of results.
1723
1751
  # @return [String]
1724
1752
  #
1725
- # @!attribute [rw] max_results
1726
- # The maximum number of device jobs to return in one page of results.
1727
- # @return [Integer]
1728
- #
1729
1753
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/ListDevicesJobsRequest AWS API Documentation
1730
1754
  #
1731
1755
  class ListDevicesJobsRequest < Struct.new(
1732
1756
  :device_id,
1733
- :next_token,
1734
- :max_results)
1757
+ :max_results,
1758
+ :next_token)
1735
1759
  SENSITIVE = []
1736
1760
  include Aws::Structure
1737
1761
  end
@@ -1757,24 +1781,24 @@ module Aws::Panorama
1757
1781
  # data as a hash:
1758
1782
  #
1759
1783
  # {
1760
- # next_token: "NextToken",
1761
1784
  # max_results: 1,
1785
+ # next_token: "NextToken",
1762
1786
  # }
1763
1787
  #
1788
+ # @!attribute [rw] max_results
1789
+ # The maximum number of devices to return in one page of results.
1790
+ # @return [Integer]
1791
+ #
1764
1792
  # @!attribute [rw] next_token
1765
1793
  # Specify the pagination token from a previous request to retrieve the
1766
1794
  # next page of results.
1767
1795
  # @return [String]
1768
1796
  #
1769
- # @!attribute [rw] max_results
1770
- # The maximum number of devices to return in one page of results.
1771
- # @return [Integer]
1772
- #
1773
1797
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/ListDevicesRequest AWS API Documentation
1774
1798
  #
1775
1799
  class ListDevicesRequest < Struct.new(
1776
- :next_token,
1777
- :max_results)
1800
+ :max_results,
1801
+ :next_token)
1778
1802
  SENSITIVE = []
1779
1803
  include Aws::Structure
1780
1804
  end
@@ -1800,42 +1824,42 @@ module Aws::Panorama
1800
1824
  # data as a hash:
1801
1825
  #
1802
1826
  # {
1803
- # next_token: "NextToken",
1804
1827
  # max_results: 1,
1828
+ # next_token: "NextToken",
1805
1829
  # }
1806
1830
  #
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
1831
  # @!attribute [rw] max_results
1813
1832
  # The maximum number of node from template jobs to return in one page
1814
1833
  # of results.
1815
1834
  # @return [Integer]
1816
1835
  #
1836
+ # @!attribute [rw] next_token
1837
+ # Specify the pagination token from a previous request to retrieve the
1838
+ # next page of results.
1839
+ # @return [String]
1840
+ #
1817
1841
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/ListNodeFromTemplateJobsRequest AWS API Documentation
1818
1842
  #
1819
1843
  class ListNodeFromTemplateJobsRequest < Struct.new(
1820
- :next_token,
1821
- :max_results)
1844
+ :max_results,
1845
+ :next_token)
1822
1846
  SENSITIVE = []
1823
1847
  include Aws::Structure
1824
1848
  end
1825
1849
 
1826
- # @!attribute [rw] node_from_template_jobs
1827
- # A list of jobs.
1828
- # @return [Array<Types::NodeFromTemplateJob>]
1829
- #
1830
1850
  # @!attribute [rw] next_token
1831
1851
  # A pagination token that's included if more results are available.
1832
1852
  # @return [String]
1833
1853
  #
1854
+ # @!attribute [rw] node_from_template_jobs
1855
+ # A list of jobs.
1856
+ # @return [Array<Types::NodeFromTemplateJob>]
1857
+ #
1834
1858
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/ListNodeFromTemplateJobsResponse AWS API Documentation
1835
1859
  #
1836
1860
  class ListNodeFromTemplateJobsResponse < Struct.new(
1837
- :node_from_template_jobs,
1838
- :next_token)
1861
+ :next_token,
1862
+ :node_from_template_jobs)
1839
1863
  SENSITIVE = []
1840
1864
  include Aws::Structure
1841
1865
  end
@@ -1845,18 +1869,27 @@ module Aws::Panorama
1845
1869
  #
1846
1870
  # {
1847
1871
  # category: "BUSINESS_LOGIC", # accepts BUSINESS_LOGIC, ML_MODEL, MEDIA_SOURCE, MEDIA_SINK
1872
+ # max_results: 1,
1873
+ # next_token: "Token",
1848
1874
  # owner_account: "PackageOwnerAccount",
1849
1875
  # package_name: "NodePackageName",
1850
1876
  # package_version: "NodePackageVersion",
1851
1877
  # patch_version: "NodePackagePatchVersion",
1852
- # next_token: "Token",
1853
- # max_results: 1,
1854
1878
  # }
1855
1879
  #
1856
1880
  # @!attribute [rw] category
1857
1881
  # Search for nodes by category.
1858
1882
  # @return [String]
1859
1883
  #
1884
+ # @!attribute [rw] max_results
1885
+ # The maximum number of nodes to return in one page of results.
1886
+ # @return [Integer]
1887
+ #
1888
+ # @!attribute [rw] next_token
1889
+ # Specify the pagination token from a previous request to retrieve the
1890
+ # next page of results.
1891
+ # @return [String]
1892
+ #
1860
1893
  # @!attribute [rw] owner_account
1861
1894
  # Search for nodes by the account ID of the nodes' owner.
1862
1895
  # @return [String]
@@ -1873,42 +1906,33 @@ module Aws::Panorama
1873
1906
  # Search for nodes by patch version.
1874
1907
  # @return [String]
1875
1908
  #
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
1909
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/ListNodesRequest AWS API Documentation
1886
1910
  #
1887
1911
  class ListNodesRequest < Struct.new(
1888
1912
  :category,
1913
+ :max_results,
1914
+ :next_token,
1889
1915
  :owner_account,
1890
1916
  :package_name,
1891
1917
  :package_version,
1892
- :patch_version,
1893
- :next_token,
1894
- :max_results)
1918
+ :patch_version)
1895
1919
  SENSITIVE = []
1896
1920
  include Aws::Structure
1897
1921
  end
1898
1922
 
1899
- # @!attribute [rw] nodes
1900
- # A list of nodes.
1901
- # @return [Array<Types::Node>]
1902
- #
1903
1923
  # @!attribute [rw] next_token
1904
1924
  # A pagination token that's included if more results are available.
1905
1925
  # @return [String]
1906
1926
  #
1927
+ # @!attribute [rw] nodes
1928
+ # A list of nodes.
1929
+ # @return [Array<Types::Node>]
1930
+ #
1907
1931
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/ListNodesResponse AWS API Documentation
1908
1932
  #
1909
1933
  class ListNodesResponse < Struct.new(
1910
- :nodes,
1911
- :next_token)
1934
+ :next_token,
1935
+ :nodes)
1912
1936
  SENSITIVE = []
1913
1937
  include Aws::Structure
1914
1938
  end
@@ -1917,42 +1941,42 @@ module Aws::Panorama
1917
1941
  # data as a hash:
1918
1942
  #
1919
1943
  # {
1920
- # next_token: "NextToken",
1921
1944
  # max_results: 1,
1945
+ # next_token: "NextToken",
1922
1946
  # }
1923
1947
  #
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
1948
  # @!attribute [rw] max_results
1930
1949
  # The maximum number of package import jobs to return in one page of
1931
1950
  # results.
1932
1951
  # @return [Integer]
1933
1952
  #
1953
+ # @!attribute [rw] next_token
1954
+ # Specify the pagination token from a previous request to retrieve the
1955
+ # next page of results.
1956
+ # @return [String]
1957
+ #
1934
1958
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/ListPackageImportJobsRequest AWS API Documentation
1935
1959
  #
1936
1960
  class ListPackageImportJobsRequest < Struct.new(
1937
- :next_token,
1938
- :max_results)
1961
+ :max_results,
1962
+ :next_token)
1939
1963
  SENSITIVE = []
1940
1964
  include Aws::Structure
1941
1965
  end
1942
1966
 
1943
- # @!attribute [rw] package_import_jobs
1944
- # A list of package import jobs.
1945
- # @return [Array<Types::PackageImportJob>]
1946
- #
1947
1967
  # @!attribute [rw] next_token
1948
1968
  # A pagination token that's included if more results are available.
1949
1969
  # @return [String]
1950
1970
  #
1971
+ # @!attribute [rw] package_import_jobs
1972
+ # A list of package import jobs.
1973
+ # @return [Array<Types::PackageImportJob>]
1974
+ #
1951
1975
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/ListPackageImportJobsResponse AWS API Documentation
1952
1976
  #
1953
1977
  class ListPackageImportJobsResponse < Struct.new(
1954
- :package_import_jobs,
1955
- :next_token)
1978
+ :next_token,
1979
+ :package_import_jobs)
1956
1980
  SENSITIVE = []
1957
1981
  include Aws::Structure
1958
1982
  end
@@ -1983,19 +2007,19 @@ module Aws::Panorama
1983
2007
  include Aws::Structure
1984
2008
  end
1985
2009
 
1986
- # @!attribute [rw] packages
1987
- # A list of packages.
1988
- # @return [Array<Types::PackageListItem>]
1989
- #
1990
2010
  # @!attribute [rw] next_token
1991
2011
  # A pagination token that's included if more results are available.
1992
2012
  # @return [String]
1993
2013
  #
2014
+ # @!attribute [rw] packages
2015
+ # A list of packages.
2016
+ # @return [Array<Types::PackageListItem>]
2017
+ #
1994
2018
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/ListPackagesResponse AWS API Documentation
1995
2019
  #
1996
2020
  class ListPackagesResponse < Struct.new(
1997
- :packages,
1998
- :next_token)
2021
+ :next_token,
2022
+ :packages)
1999
2023
  SENSITIVE = []
2000
2024
  include Aws::Structure
2001
2025
  end
@@ -2091,21 +2115,24 @@ module Aws::Panorama
2091
2115
  # ethernet_0: {
2092
2116
  # connection_type: "STATIC_IP", # required, accepts STATIC_IP, DHCP
2093
2117
  # static_ip_connection_info: {
2118
+ # default_gateway: "DefaultGateway", # required
2119
+ # dns: ["Dns"], # required
2094
2120
  # ip_address: "IpAddress", # required
2095
2121
  # mask: "Mask", # required
2096
- # dns: ["Dns"], # required
2097
- # default_gateway: "DefaultGateway", # required
2098
2122
  # },
2099
2123
  # },
2100
2124
  # ethernet_1: {
2101
2125
  # connection_type: "STATIC_IP", # required, accepts STATIC_IP, DHCP
2102
2126
  # static_ip_connection_info: {
2127
+ # default_gateway: "DefaultGateway", # required
2128
+ # dns: ["Dns"], # required
2103
2129
  # ip_address: "IpAddress", # required
2104
2130
  # mask: "Mask", # required
2105
- # dns: ["Dns"], # required
2106
- # default_gateway: "DefaultGateway", # required
2107
2131
  # },
2108
2132
  # },
2133
+ # ntp: {
2134
+ # ntp_servers: ["IpAddressOrServerName"], # required
2135
+ # },
2109
2136
  # }
2110
2137
  #
2111
2138
  # @!attribute [rw] ethernet_0
@@ -2116,11 +2143,16 @@ module Aws::Panorama
2116
2143
  # Settings for Ethernet port 1.
2117
2144
  # @return [Types::EthernetPayload]
2118
2145
  #
2146
+ # @!attribute [rw] ntp
2147
+ # Network time protocol (NTP) server settings.
2148
+ # @return [Types::NtpPayload]
2149
+ #
2119
2150
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/NetworkPayload AWS API Documentation
2120
2151
  #
2121
2152
  class NetworkPayload < Struct.new(
2122
2153
  :ethernet_0,
2123
- :ethernet_1)
2154
+ :ethernet_1,
2155
+ :ntp)
2124
2156
  SENSITIVE = []
2125
2157
  include Aws::Structure
2126
2158
  end
@@ -2135,11 +2167,21 @@ module Aws::Panorama
2135
2167
  # The status of Ethernet port 1.
2136
2168
  # @return [Types::EthernetStatus]
2137
2169
  #
2170
+ # @!attribute [rw] last_updated_time
2171
+ # When the network status changed.
2172
+ # @return [Time]
2173
+ #
2174
+ # @!attribute [rw] ntp_status
2175
+ # Details about a network time protocol (NTP) server connection.
2176
+ # @return [Types::NtpStatus]
2177
+ #
2138
2178
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/NetworkStatus AWS API Documentation
2139
2179
  #
2140
2180
  class NetworkStatus < Struct.new(
2141
2181
  :ethernet_0_status,
2142
- :ethernet_1_status)
2182
+ :ethernet_1_status,
2183
+ :last_updated_time,
2184
+ :ntp_status)
2143
2185
  SENSITIVE = []
2144
2186
  include Aws::Structure
2145
2187
  end
@@ -2147,32 +2189,40 @@ module Aws::Panorama
2147
2189
  # An application node that represents a camera stream, a model, code, or
2148
2190
  # output.
2149
2191
  #
2150
- # @!attribute [rw] node_id
2151
- # The node's ID.
2192
+ # @!attribute [rw] category
2193
+ # The node's category.
2194
+ # @return [String]
2195
+ #
2196
+ # @!attribute [rw] created_time
2197
+ # When the node was created.
2198
+ # @return [Time]
2199
+ #
2200
+ # @!attribute [rw] description
2201
+ # The node's description.
2152
2202
  # @return [String]
2153
2203
  #
2154
2204
  # @!attribute [rw] name
2155
2205
  # The node's name.
2156
2206
  # @return [String]
2157
2207
  #
2158
- # @!attribute [rw] category
2159
- # The node's category.
2208
+ # @!attribute [rw] node_id
2209
+ # The node's ID.
2160
2210
  # @return [String]
2161
2211
  #
2162
2212
  # @!attribute [rw] owner_account
2163
2213
  # The account ID of the node's owner.
2164
2214
  # @return [String]
2165
2215
  #
2166
- # @!attribute [rw] package_name
2167
- # The node's package name.
2216
+ # @!attribute [rw] package_arn
2217
+ # The node's ARN.
2168
2218
  # @return [String]
2169
2219
  #
2170
2220
  # @!attribute [rw] package_id
2171
2221
  # The node's package ID.
2172
2222
  # @return [String]
2173
2223
  #
2174
- # @!attribute [rw] package_arn
2175
- # The node's ARN.
2224
+ # @!attribute [rw] package_name
2225
+ # The node's package name.
2176
2226
  # @return [String]
2177
2227
  #
2178
2228
  # @!attribute [rw] package_version
@@ -2183,40 +2233,36 @@ module Aws::Panorama
2183
2233
  # The node's patch version.
2184
2234
  # @return [String]
2185
2235
  #
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
2236
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/Node AWS API Documentation
2195
2237
  #
2196
2238
  class Node < Struct.new(
2197
- :node_id,
2198
- :name,
2199
2239
  :category,
2240
+ :created_time,
2241
+ :description,
2242
+ :name,
2243
+ :node_id,
2200
2244
  :owner_account,
2201
- :package_name,
2202
- :package_id,
2203
2245
  :package_arn,
2246
+ :package_id,
2247
+ :package_name,
2204
2248
  :package_version,
2205
- :patch_version,
2206
- :description,
2207
- :created_time)
2249
+ :patch_version)
2208
2250
  SENSITIVE = []
2209
2251
  include Aws::Structure
2210
2252
  end
2211
2253
 
2212
2254
  # A job to create a camera stream node.
2213
2255
  #
2256
+ # @!attribute [rw] created_time
2257
+ # When the job was created.
2258
+ # @return [Time]
2259
+ #
2214
2260
  # @!attribute [rw] job_id
2215
2261
  # The job's ID.
2216
2262
  # @return [String]
2217
2263
  #
2218
- # @!attribute [rw] template_type
2219
- # The job's template type.
2264
+ # @!attribute [rw] node_name
2265
+ # The node's name.
2220
2266
  # @return [String]
2221
2267
  #
2222
2268
  # @!attribute [rw] status
@@ -2227,101 +2273,97 @@ module Aws::Panorama
2227
2273
  # The job's status message.
2228
2274
  # @return [String]
2229
2275
  #
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.
2276
+ # @!attribute [rw] template_type
2277
+ # The job's template type.
2236
2278
  # @return [String]
2237
2279
  #
2238
2280
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/NodeFromTemplateJob AWS API Documentation
2239
2281
  #
2240
2282
  class NodeFromTemplateJob < Struct.new(
2283
+ :created_time,
2241
2284
  :job_id,
2242
- :template_type,
2285
+ :node_name,
2243
2286
  :status,
2244
2287
  :status_message,
2245
- :created_time,
2246
- :node_name)
2288
+ :template_type)
2247
2289
  SENSITIVE = []
2248
2290
  include Aws::Structure
2249
2291
  end
2250
2292
 
2251
2293
  # A node input port.
2252
2294
  #
2253
- # @!attribute [rw] name
2254
- # The input port's name.
2295
+ # @!attribute [rw] default_value
2296
+ # The input port's default value.
2255
2297
  # @return [String]
2256
2298
  #
2257
2299
  # @!attribute [rw] description
2258
2300
  # The input port's description.
2259
2301
  # @return [String]
2260
2302
  #
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
2303
  # @!attribute [rw] max_connections
2270
2304
  # The input port's max connections.
2271
2305
  # @return [Integer]
2272
2306
  #
2307
+ # @!attribute [rw] name
2308
+ # The input port's name.
2309
+ # @return [String]
2310
+ #
2311
+ # @!attribute [rw] type
2312
+ # The input port's type.
2313
+ # @return [String]
2314
+ #
2273
2315
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/NodeInputPort AWS API Documentation
2274
2316
  #
2275
2317
  class NodeInputPort < Struct.new(
2276
- :name,
2277
- :description,
2278
- :type,
2279
2318
  :default_value,
2280
- :max_connections)
2319
+ :description,
2320
+ :max_connections,
2321
+ :name,
2322
+ :type)
2281
2323
  SENSITIVE = []
2282
2324
  include Aws::Structure
2283
2325
  end
2284
2326
 
2285
2327
  # A node instance.
2286
2328
  #
2287
- # @!attribute [rw] node_instance_id
2288
- # The instance's ID.
2329
+ # @!attribute [rw] current_status
2330
+ # The instance's current status.
2289
2331
  # @return [String]
2290
2332
  #
2291
2333
  # @!attribute [rw] node_id
2292
2334
  # The node's ID.
2293
2335
  # @return [String]
2294
2336
  #
2295
- # @!attribute [rw] package_name
2296
- # The instance's package name.
2337
+ # @!attribute [rw] node_instance_id
2338
+ # The instance's ID.
2297
2339
  # @return [String]
2298
2340
  #
2299
- # @!attribute [rw] package_version
2300
- # The instance's package version.
2341
+ # @!attribute [rw] node_name
2342
+ # The instance's name.
2301
2343
  # @return [String]
2302
2344
  #
2303
- # @!attribute [rw] package_patch_version
2304
- # The instance's package patch version.
2345
+ # @!attribute [rw] package_name
2346
+ # The instance's package name.
2305
2347
  # @return [String]
2306
2348
  #
2307
- # @!attribute [rw] node_name
2308
- # The instance's name.
2349
+ # @!attribute [rw] package_patch_version
2350
+ # The instance's package patch version.
2309
2351
  # @return [String]
2310
2352
  #
2311
- # @!attribute [rw] current_status
2312
- # The instance's current status.
2353
+ # @!attribute [rw] package_version
2354
+ # The instance's package version.
2313
2355
  # @return [String]
2314
2356
  #
2315
2357
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/NodeInstance AWS API Documentation
2316
2358
  #
2317
2359
  class NodeInstance < Struct.new(
2318
- :node_instance_id,
2360
+ :current_status,
2319
2361
  :node_id,
2362
+ :node_instance_id,
2363
+ :node_name,
2320
2364
  :package_name,
2321
- :package_version,
2322
2365
  :package_patch_version,
2323
- :node_name,
2324
- :current_status)
2366
+ :package_version)
2325
2367
  SENSITIVE = []
2326
2368
  include Aws::Structure
2327
2369
  end
@@ -2347,24 +2389,70 @@ module Aws::Panorama
2347
2389
 
2348
2390
  # A node output port.
2349
2391
  #
2392
+ # @!attribute [rw] description
2393
+ # The output port's description.
2394
+ # @return [String]
2395
+ #
2350
2396
  # @!attribute [rw] name
2351
2397
  # The output port's name.
2352
2398
  # @return [String]
2353
2399
  #
2354
- # @!attribute [rw] description
2355
- # The output port's description.
2400
+ # @!attribute [rw] type
2401
+ # The output port's type.
2402
+ # @return [String]
2403
+ #
2404
+ # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/NodeOutputPort AWS API Documentation
2405
+ #
2406
+ class NodeOutputPort < Struct.new(
2407
+ :description,
2408
+ :name,
2409
+ :type)
2410
+ SENSITIVE = []
2411
+ include Aws::Structure
2412
+ end
2413
+
2414
+ # Network time protocol (NTP) server settings. Use this option to
2415
+ # connect to local NTP servers instead of `pool.ntp.org`.
2416
+ #
2417
+ # @note When making an API call, you may pass NtpPayload
2418
+ # data as a hash:
2419
+ #
2420
+ # {
2421
+ # ntp_servers: ["IpAddressOrServerName"], # required
2422
+ # }
2423
+ #
2424
+ # @!attribute [rw] ntp_servers
2425
+ # NTP servers to use, in order of preference.
2426
+ # @return [Array<String>]
2427
+ #
2428
+ # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/NtpPayload AWS API Documentation
2429
+ #
2430
+ class NtpPayload < Struct.new(
2431
+ :ntp_servers)
2432
+ SENSITIVE = []
2433
+ include Aws::Structure
2434
+ end
2435
+
2436
+ # Details about an NTP server connection.
2437
+ #
2438
+ # @!attribute [rw] connection_status
2439
+ # The connection's status.
2440
+ # @return [String]
2441
+ #
2442
+ # @!attribute [rw] ip_address
2443
+ # The IP address of the server.
2356
2444
  # @return [String]
2357
2445
  #
2358
- # @!attribute [rw] type
2359
- # The output port's type.
2446
+ # @!attribute [rw] ntp_server_name
2447
+ # The domain name of the server.
2360
2448
  # @return [String]
2361
2449
  #
2362
- # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/NodeOutputPort AWS API Documentation
2450
+ # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/NtpStatus AWS API Documentation
2363
2451
  #
2364
- class NodeOutputPort < Struct.new(
2365
- :name,
2366
- :description,
2367
- :type)
2452
+ class NtpStatus < Struct.new(
2453
+ :connection_status,
2454
+ :ip_address,
2455
+ :ntp_server_name)
2368
2456
  SENSITIVE = []
2369
2457
  include Aws::Structure
2370
2458
  end
@@ -2411,6 +2499,10 @@ module Aws::Panorama
2411
2499
 
2412
2500
  # A job to import a package version.
2413
2501
  #
2502
+ # @!attribute [rw] created_time
2503
+ # When the job was created.
2504
+ # @return [Time]
2505
+ #
2414
2506
  # @!attribute [rw] job_id
2415
2507
  # The job's ID.
2416
2508
  # @return [String]
@@ -2419,6 +2511,10 @@ module Aws::Panorama
2419
2511
  # The job's type.
2420
2512
  # @return [String]
2421
2513
  #
2514
+ # @!attribute [rw] last_updated_time
2515
+ # When the job was updated.
2516
+ # @return [Time]
2517
+ #
2422
2518
  # @!attribute [rw] status
2423
2519
  # The job's status.
2424
2520
  # @return [String]
@@ -2427,23 +2523,15 @@ module Aws::Panorama
2427
2523
  # The job's status message.
2428
2524
  # @return [String]
2429
2525
  #
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
2526
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/PackageImportJob AWS API Documentation
2439
2527
  #
2440
2528
  class PackageImportJob < Struct.new(
2529
+ :created_time,
2441
2530
  :job_id,
2442
2531
  :job_type,
2532
+ :last_updated_time,
2443
2533
  :status,
2444
- :status_message,
2445
- :created_time,
2446
- :last_updated_time)
2534
+ :status_message)
2447
2535
  SENSITIVE = []
2448
2536
  include Aws::Structure
2449
2537
  end
@@ -2456,9 +2544,9 @@ module Aws::Panorama
2456
2544
  # {
2457
2545
  # package_version_input_config: {
2458
2546
  # s3_location: { # required
2459
- # region: "Region",
2460
2547
  # bucket_name: "BucketName", # required
2461
2548
  # object_key: "ObjectKey", # required
2549
+ # region: "Region",
2462
2550
  # },
2463
2551
  # },
2464
2552
  # }
@@ -2477,6 +2565,10 @@ module Aws::Panorama
2477
2565
 
2478
2566
  # Results of a package import job.
2479
2567
  #
2568
+ # @!attribute [rw] output_s3_location
2569
+ # The package's output location.
2570
+ # @return [Types::OutPutS3Location]
2571
+ #
2480
2572
  # @!attribute [rw] package_id
2481
2573
  # The package's ID.
2482
2574
  # @return [String]
@@ -2489,17 +2581,13 @@ module Aws::Panorama
2489
2581
  # The package's patch version.
2490
2582
  # @return [String]
2491
2583
  #
2492
- # @!attribute [rw] output_s3_location
2493
- # The package's output location.
2494
- # @return [Types::OutPutS3Location]
2495
- #
2496
2584
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/PackageImportJobOutput AWS API Documentation
2497
2585
  #
2498
2586
  class PackageImportJobOutput < Struct.new(
2587
+ :output_s3_location,
2499
2588
  :package_id,
2500
2589
  :package_version,
2501
- :patch_version,
2502
- :output_s3_location)
2590
+ :patch_version)
2503
2591
  SENSITIVE = []
2504
2592
  include Aws::Structure
2505
2593
  end
@@ -2511,9 +2599,9 @@ module Aws::Panorama
2511
2599
  #
2512
2600
  # {
2513
2601
  # package_version_output_config: {
2602
+ # mark_latest: false,
2514
2603
  # package_name: "NodePackageName", # required
2515
2604
  # package_version: "NodePackageVersion", # required
2516
- # mark_latest: false,
2517
2605
  # },
2518
2606
  # }
2519
2607
  #
@@ -2531,14 +2619,6 @@ module Aws::Panorama
2531
2619
 
2532
2620
  # A package summary.
2533
2621
  #
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
2622
  # @!attribute [rw] arn
2543
2623
  # The package's ARN.
2544
2624
  # @return [String]
@@ -2547,6 +2627,14 @@ module Aws::Panorama
2547
2627
  # When the package was created.
2548
2628
  # @return [Time]
2549
2629
  #
2630
+ # @!attribute [rw] package_id
2631
+ # The package's ID.
2632
+ # @return [String]
2633
+ #
2634
+ # @!attribute [rw] package_name
2635
+ # The package's name.
2636
+ # @return [String]
2637
+ #
2550
2638
  # @!attribute [rw] tags
2551
2639
  # The package's tags.
2552
2640
  # @return [Hash<String,String>]
@@ -2554,10 +2642,10 @@ module Aws::Panorama
2554
2642
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/PackageListItem AWS API Documentation
2555
2643
  #
2556
2644
  class PackageListItem < Struct.new(
2557
- :package_id,
2558
- :package_name,
2559
2645
  :arn,
2560
2646
  :created_time,
2647
+ :package_id,
2648
+ :package_name,
2561
2649
  :tags)
2562
2650
  SENSITIVE = []
2563
2651
  include Aws::Structure
@@ -2594,9 +2682,9 @@ module Aws::Panorama
2594
2682
  #
2595
2683
  # {
2596
2684
  # s3_location: { # required
2597
- # region: "Region",
2598
2685
  # bucket_name: "BucketName", # required
2599
2686
  # object_key: "ObjectKey", # required
2687
+ # region: "Region",
2600
2688
  # },
2601
2689
  # }
2602
2690
  #
@@ -2618,11 +2706,15 @@ module Aws::Panorama
2618
2706
  # data as a hash:
2619
2707
  #
2620
2708
  # {
2709
+ # mark_latest: false,
2621
2710
  # package_name: "NodePackageName", # required
2622
2711
  # package_version: "NodePackageVersion", # required
2623
- # mark_latest: false,
2624
2712
  # }
2625
2713
  #
2714
+ # @!attribute [rw] mark_latest
2715
+ # Indicates that the version is recommended for all users.
2716
+ # @return [Boolean]
2717
+ #
2626
2718
  # @!attribute [rw] package_name
2627
2719
  # The output's package name.
2628
2720
  # @return [String]
@@ -2631,16 +2723,12 @@ module Aws::Panorama
2631
2723
  # The output's package version.
2632
2724
  # @return [String]
2633
2725
  #
2634
- # @!attribute [rw] mark_latest
2635
- # Indicates that the version is recommended for all users.
2636
- # @return [Boolean]
2637
- #
2638
2726
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/PackageVersionOutputConfig AWS API Documentation
2639
2727
  #
2640
2728
  class PackageVersionOutputConfig < Struct.new(
2729
+ :mark_latest,
2641
2730
  :package_name,
2642
- :package_version,
2643
- :mark_latest)
2731
+ :package_version)
2644
2732
  SENSITIVE = []
2645
2733
  include Aws::Structure
2646
2734
  end
@@ -2649,88 +2737,91 @@ module Aws::Panorama
2649
2737
  # data as a hash:
2650
2738
  #
2651
2739
  # {
2652
- # name: "DeviceName", # required
2653
2740
  # description: "Description",
2654
- # tags: {
2655
- # "TagKey" => "TagValue",
2656
- # },
2741
+ # name: "DeviceName", # required
2657
2742
  # networking_configuration: {
2658
2743
  # ethernet_0: {
2659
2744
  # connection_type: "STATIC_IP", # required, accepts STATIC_IP, DHCP
2660
2745
  # static_ip_connection_info: {
2746
+ # default_gateway: "DefaultGateway", # required
2747
+ # dns: ["Dns"], # required
2661
2748
  # ip_address: "IpAddress", # required
2662
2749
  # mask: "Mask", # required
2663
- # dns: ["Dns"], # required
2664
- # default_gateway: "DefaultGateway", # required
2665
2750
  # },
2666
2751
  # },
2667
2752
  # ethernet_1: {
2668
2753
  # connection_type: "STATIC_IP", # required, accepts STATIC_IP, DHCP
2669
2754
  # static_ip_connection_info: {
2755
+ # default_gateway: "DefaultGateway", # required
2756
+ # dns: ["Dns"], # required
2670
2757
  # ip_address: "IpAddress", # required
2671
2758
  # mask: "Mask", # required
2672
- # dns: ["Dns"], # required
2673
- # default_gateway: "DefaultGateway", # required
2674
2759
  # },
2675
2760
  # },
2761
+ # ntp: {
2762
+ # ntp_servers: ["IpAddressOrServerName"], # required
2763
+ # },
2764
+ # },
2765
+ # tags: {
2766
+ # "TagKey" => "TagValue",
2676
2767
  # },
2677
2768
  # }
2678
2769
  #
2679
- # @!attribute [rw] name
2680
- # A name for the device.
2681
- # @return [String]
2682
- #
2683
2770
  # @!attribute [rw] description
2684
2771
  # A description for the device.
2685
2772
  # @return [String]
2686
2773
  #
2687
- # @!attribute [rw] tags
2688
- # Tags for the device.
2689
- # @return [Hash<String,String>]
2774
+ # @!attribute [rw] name
2775
+ # A name for the device.
2776
+ # @return [String]
2690
2777
  #
2691
2778
  # @!attribute [rw] networking_configuration
2692
2779
  # A networking configuration for the device.
2693
2780
  # @return [Types::NetworkPayload]
2694
2781
  #
2782
+ # @!attribute [rw] tags
2783
+ # Tags for the device.
2784
+ # @return [Hash<String,String>]
2785
+ #
2695
2786
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/ProvisionDeviceRequest AWS API Documentation
2696
2787
  #
2697
2788
  class ProvisionDeviceRequest < Struct.new(
2698
- :name,
2699
2789
  :description,
2700
- :tags,
2701
- :networking_configuration)
2790
+ :name,
2791
+ :networking_configuration,
2792
+ :tags)
2702
2793
  SENSITIVE = []
2703
2794
  include Aws::Structure
2704
2795
  end
2705
2796
 
2706
- # @!attribute [rw] device_id
2707
- # The device's ID.
2708
- # @return [String]
2709
- #
2710
2797
  # @!attribute [rw] arn
2711
2798
  # The device's ARN.
2712
2799
  # @return [String]
2713
2800
  #
2714
- # @!attribute [rw] status
2715
- # The device's status.
2716
- # @return [String]
2717
- #
2718
2801
  # @!attribute [rw] certificates
2719
2802
  # The device's configuration bundle.
2720
2803
  # @return [String]
2721
2804
  #
2805
+ # @!attribute [rw] device_id
2806
+ # The device's ID.
2807
+ # @return [String]
2808
+ #
2722
2809
  # @!attribute [rw] iot_thing_name
2723
2810
  # The device's IoT thing name.
2724
2811
  # @return [String]
2725
2812
  #
2813
+ # @!attribute [rw] status
2814
+ # The device's status.
2815
+ # @return [String]
2816
+ #
2726
2817
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/ProvisionDeviceResponse AWS API Documentation
2727
2818
  #
2728
2819
  class ProvisionDeviceResponse < Struct.new(
2729
- :device_id,
2730
2820
  :arn,
2731
- :status,
2732
2821
  :certificates,
2733
- :iot_thing_name)
2822
+ :device_id,
2823
+ :iot_thing_name,
2824
+ :status)
2734
2825
  SENSITIVE = []
2735
2826
  include Aws::Structure
2736
2827
  end
@@ -2739,13 +2830,17 @@ module Aws::Panorama
2739
2830
  # data as a hash:
2740
2831
  #
2741
2832
  # {
2833
+ # mark_latest: false,
2742
2834
  # owner_account: "PackageOwnerAccount",
2743
2835
  # package_id: "NodePackageId", # required
2744
2836
  # package_version: "NodePackageVersion", # required
2745
2837
  # patch_version: "NodePackagePatchVersion", # required
2746
- # mark_latest: false,
2747
2838
  # }
2748
2839
  #
2840
+ # @!attribute [rw] mark_latest
2841
+ # Whether to mark the new version as the latest version.
2842
+ # @return [Boolean]
2843
+ #
2749
2844
  # @!attribute [rw] owner_account
2750
2845
  # An owner account.
2751
2846
  # @return [String]
@@ -2762,18 +2857,14 @@ module Aws::Panorama
2762
2857
  # A patch version.
2763
2858
  # @return [String]
2764
2859
  #
2765
- # @!attribute [rw] mark_latest
2766
- # Whether to mark the new version as the latest version.
2767
- # @return [Boolean]
2768
- #
2769
2860
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/RegisterPackageVersionRequest AWS API Documentation
2770
2861
  #
2771
2862
  class RegisterPackageVersionRequest < Struct.new(
2863
+ :mark_latest,
2772
2864
  :owner_account,
2773
2865
  :package_id,
2774
2866
  :package_version,
2775
- :patch_version,
2776
- :mark_latest)
2867
+ :patch_version)
2777
2868
  SENSITIVE = []
2778
2869
  include Aws::Structure
2779
2870
  end
@@ -2834,15 +2925,11 @@ module Aws::Panorama
2834
2925
  # data as a hash:
2835
2926
  #
2836
2927
  # {
2837
- # region: "Region",
2838
2928
  # bucket_name: "BucketName", # required
2839
2929
  # object_key: "ObjectKey", # required
2930
+ # region: "Region",
2840
2931
  # }
2841
2932
  #
2842
- # @!attribute [rw] region
2843
- # The bucket's Region.
2844
- # @return [String]
2845
- #
2846
2933
  # @!attribute [rw] bucket_name
2847
2934
  # A bucket name.
2848
2935
  # @return [String]
@@ -2851,12 +2938,16 @@ module Aws::Panorama
2851
2938
  # An object key.
2852
2939
  # @return [String]
2853
2940
  #
2941
+ # @!attribute [rw] region
2942
+ # The bucket's Region.
2943
+ # @return [String]
2944
+ #
2854
2945
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/S3Location AWS API Documentation
2855
2946
  #
2856
2947
  class S3Location < Struct.new(
2857
- :region,
2858
2948
  :bucket_name,
2859
- :object_key)
2949
+ :object_key,
2950
+ :region)
2860
2951
  SENSITIVE = []
2861
2952
  include Aws::Structure
2862
2953
  end
@@ -2866,6 +2957,10 @@ module Aws::Panorama
2866
2957
  # @!attribute [rw] message
2867
2958
  # @return [String]
2868
2959
  #
2960
+ # @!attribute [rw] quota_code
2961
+ # The name of the limit.
2962
+ # @return [String]
2963
+ #
2869
2964
  # @!attribute [rw] resource_id
2870
2965
  # The target resource's ID.
2871
2966
  # @return [String]
@@ -2874,10 +2969,6 @@ module Aws::Panorama
2874
2969
  # The target resource's type.
2875
2970
  # @return [String]
2876
2971
  #
2877
- # @!attribute [rw] quota_code
2878
- # The name of the limit.
2879
- # @return [String]
2880
- #
2881
2972
  # @!attribute [rw] service_code
2882
2973
  # The name of the service.
2883
2974
  # @return [String]
@@ -2886,9 +2977,9 @@ module Aws::Panorama
2886
2977
  #
2887
2978
  class ServiceQuotaExceededException < Struct.new(
2888
2979
  :message,
2980
+ :quota_code,
2889
2981
  :resource_id,
2890
2982
  :resource_type,
2891
- :quota_code,
2892
2983
  :service_code)
2893
2984
  SENSITIVE = []
2894
2985
  include Aws::Structure
@@ -2900,69 +2991,69 @@ module Aws::Panorama
2900
2991
  # data as a hash:
2901
2992
  #
2902
2993
  # {
2994
+ # default_gateway: "DefaultGateway", # required
2995
+ # dns: ["Dns"], # required
2903
2996
  # ip_address: "IpAddress", # required
2904
2997
  # mask: "Mask", # required
2905
- # dns: ["Dns"], # required
2906
- # default_gateway: "DefaultGateway", # required
2907
2998
  # }
2908
2999
  #
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.
3000
+ # @!attribute [rw] default_gateway
3001
+ # The connection's default gateway.
2915
3002
  # @return [String]
2916
3003
  #
2917
3004
  # @!attribute [rw] dns
2918
3005
  # The connection's DNS address.
2919
3006
  # @return [Array<String>]
2920
3007
  #
2921
- # @!attribute [rw] default_gateway
2922
- # The connection's default gateway.
3008
+ # @!attribute [rw] ip_address
3009
+ # The connection's IP address.
3010
+ # @return [String]
3011
+ #
3012
+ # @!attribute [rw] mask
3013
+ # The connection's DNS mask.
2923
3014
  # @return [String]
2924
3015
  #
2925
3016
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/StaticIpConnectionInfo AWS API Documentation
2926
3017
  #
2927
3018
  class StaticIpConnectionInfo < Struct.new(
2928
- :ip_address,
2929
- :mask,
3019
+ :default_gateway,
2930
3020
  :dns,
2931
- :default_gateway)
3021
+ :ip_address,
3022
+ :mask)
2932
3023
  SENSITIVE = []
2933
3024
  include Aws::Structure
2934
3025
  end
2935
3026
 
2936
3027
  # A storage location.
2937
3028
  #
2938
- # @!attribute [rw] bucket
2939
- # The location's bucket.
3029
+ # @!attribute [rw] binary_prefix_location
3030
+ # The location's binary prefix.
2940
3031
  # @return [String]
2941
3032
  #
2942
- # @!attribute [rw] repo_prefix_location
2943
- # The location's repo prefix.
3033
+ # @!attribute [rw] bucket
3034
+ # The location's bucket.
2944
3035
  # @return [String]
2945
3036
  #
2946
3037
  # @!attribute [rw] generated_prefix_location
2947
3038
  # The location's generated prefix.
2948
3039
  # @return [String]
2949
3040
  #
2950
- # @!attribute [rw] binary_prefix_location
2951
- # The location's binary prefix.
2952
- # @return [String]
2953
- #
2954
3041
  # @!attribute [rw] manifest_prefix_location
2955
3042
  # The location's manifest prefix.
2956
3043
  # @return [String]
2957
3044
  #
3045
+ # @!attribute [rw] repo_prefix_location
3046
+ # The location's repo prefix.
3047
+ # @return [String]
3048
+ #
2958
3049
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/StorageLocation AWS API Documentation
2959
3050
  #
2960
3051
  class StorageLocation < Struct.new(
3052
+ :binary_prefix_location,
2961
3053
  :bucket,
2962
- :repo_prefix_location,
2963
3054
  :generated_prefix_location,
2964
- :binary_prefix_location,
2965
- :manifest_prefix_location)
3055
+ :manifest_prefix_location,
3056
+ :repo_prefix_location)
2966
3057
  SENSITIVE = []
2967
3058
  include Aws::Structure
2968
3059
  end
@@ -3031,23 +3122,23 @@ module Aws::Panorama
3031
3122
  # data as a hash:
3032
3123
  #
3033
3124
  # {
3034
- # device_id: "DeviceId", # required
3035
3125
  # description: "Description",
3126
+ # device_id: "DeviceId", # required
3036
3127
  # }
3037
3128
  #
3038
- # @!attribute [rw] device_id
3039
- # The device's ID.
3040
- # @return [String]
3041
- #
3042
3129
  # @!attribute [rw] description
3043
3130
  # A description for the device.
3044
3131
  # @return [String]
3045
3132
  #
3133
+ # @!attribute [rw] device_id
3134
+ # The device's ID.
3135
+ # @return [String]
3136
+ #
3046
3137
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/UpdateDeviceMetadataRequest AWS API Documentation
3047
3138
  #
3048
3139
  class UpdateDeviceMetadataRequest < Struct.new(
3049
- :device_id,
3050
- :description)
3140
+ :description,
3141
+ :device_id)
3051
3142
  SENSITIVE = []
3052
3143
  include Aws::Structure
3053
3144
  end
@@ -3066,33 +3157,33 @@ module Aws::Panorama
3066
3157
 
3067
3158
  # The request contains an invalid parameter value.
3068
3159
  #
3069
- # @!attribute [rw] message
3070
- # @return [String]
3071
- #
3072
- # @!attribute [rw] reason
3073
- # The reason that validation failed.
3074
- # @return [String]
3160
+ # @!attribute [rw] error_arguments
3161
+ # A list of attributes that led to the exception and their values.
3162
+ # @return [Array<Types::ValidationExceptionErrorArgument>]
3075
3163
  #
3076
3164
  # @!attribute [rw] error_id
3077
3165
  # A unique ID for the error.
3078
3166
  # @return [String]
3079
3167
  #
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
3168
  # @!attribute [rw] fields
3085
3169
  # A list of request parameters that failed validation.
3086
3170
  # @return [Array<Types::ValidationExceptionField>]
3087
3171
  #
3172
+ # @!attribute [rw] message
3173
+ # @return [String]
3174
+ #
3175
+ # @!attribute [rw] reason
3176
+ # The reason that validation failed.
3177
+ # @return [String]
3178
+ #
3088
3179
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/ValidationException AWS API Documentation
3089
3180
  #
3090
3181
  class ValidationException < Struct.new(
3091
- :message,
3092
- :reason,
3093
- :error_id,
3094
3182
  :error_arguments,
3095
- :fields)
3183
+ :error_id,
3184
+ :fields,
3185
+ :message,
3186
+ :reason)
3096
3187
  SENSITIVE = []
3097
3188
  include Aws::Structure
3098
3189
  end
@@ -3118,19 +3209,19 @@ module Aws::Panorama
3118
3209
 
3119
3210
  # A validation exception field.
3120
3211
  #
3121
- # @!attribute [rw] name
3122
- # The field's name.
3123
- # @return [String]
3124
- #
3125
3212
  # @!attribute [rw] message
3126
3213
  # The field's message.
3127
3214
  # @return [String]
3128
3215
  #
3216
+ # @!attribute [rw] name
3217
+ # The field's name.
3218
+ # @return [String]
3219
+ #
3129
3220
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/ValidationExceptionField AWS API Documentation
3130
3221
  #
3131
3222
  class ValidationExceptionField < Struct.new(
3132
- :name,
3133
- :message)
3223
+ :message,
3224
+ :name)
3134
3225
  SENSITIVE = []
3135
3226
  include Aws::Structure
3136
3227
  end