aws-sdk-panorama 1.5.0 → 1.8.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -353,27 +353,27 @@ module Aws::Panorama
353
353
 
354
354
  # Creates an application instance and deploys it to a device.
355
355
  #
356
- # @option params [String] :name
357
- # A name for the application instance.
356
+ # @option params [String] :application_instance_id_to_replace
357
+ # The ID of an application instance to replace with the new instance.
358
+ #
359
+ # @option params [required, String] :default_runtime_context_device
360
+ # A device's ID.
358
361
  #
359
362
  # @option params [String] :description
360
363
  # A description for the application instance.
361
364
  #
362
- # @option params [required, Types::ManifestPayload] :manifest_payload
363
- # The application's manifest document.
364
- #
365
365
  # @option params [Types::ManifestOverridesPayload] :manifest_overrides_payload
366
366
  # Setting overrides for the application manifest.
367
367
  #
368
- # @option params [String] :application_instance_id_to_replace
369
- # The ID of an application instance to replace with the new instance.
368
+ # @option params [required, Types::ManifestPayload] :manifest_payload
369
+ # The application's manifest document.
370
+ #
371
+ # @option params [String] :name
372
+ # A name for the application instance.
370
373
  #
371
374
  # @option params [String] :runtime_role_arn
372
375
  # The ARN of a runtime role for the application instance.
373
376
  #
374
- # @option params [required, String] :default_runtime_context_device
375
- # A device's ID.
376
- #
377
377
  # @option params [Hash<String,String>] :tags
378
378
  # Tags for the application instance.
379
379
  #
@@ -384,17 +384,17 @@ module Aws::Panorama
384
384
  # @example Request syntax with placeholder values
385
385
  #
386
386
  # resp = client.create_application_instance({
387
- # name: "ApplicationInstanceName",
387
+ # application_instance_id_to_replace: "ApplicationInstanceId",
388
+ # default_runtime_context_device: "DefaultRuntimeContextDevice", # required
388
389
  # description: "Description",
389
- # manifest_payload: { # required
390
- # payload_data: "ManifestPayloadData",
391
- # },
392
390
  # manifest_overrides_payload: {
393
391
  # payload_data: "ManifestOverridesPayloadData",
394
392
  # },
395
- # application_instance_id_to_replace: "ApplicationInstanceId",
393
+ # manifest_payload: { # required
394
+ # payload_data: "ManifestPayloadData",
395
+ # },
396
+ # name: "ApplicationInstanceName",
396
397
  # runtime_role_arn: "RuntimeRoleArn",
397
- # default_runtime_context_device: "DefaultRuntimeContextDevice", # required
398
398
  # tags: {
399
399
  # "TagKey" => "TagValue",
400
400
  # },
@@ -443,8 +443,8 @@ module Aws::Panorama
443
443
  # @example Response structure
444
444
  #
445
445
  # resp.jobs #=> Array
446
- # resp.jobs[0].job_id #=> String
447
446
  # resp.jobs[0].device_id #=> String
447
+ # resp.jobs[0].job_id #=> String
448
448
  #
449
449
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/CreateJobForDevices AWS API Documentation
450
450
  #
@@ -457,8 +457,14 @@ module Aws::Panorama
457
457
 
458
458
  # Creates a camera stream node.
459
459
  #
460
- # @option params [required, String] :template_type
461
- # The type of node.
460
+ # @option params [Array<Types::JobResourceTags>] :job_tags
461
+ # Tags for the job.
462
+ #
463
+ # @option params [String] :node_description
464
+ # A description for the node.
465
+ #
466
+ # @option params [required, String] :node_name
467
+ # A name for the node.
462
468
  #
463
469
  # @option params [required, String] :output_package_name
464
470
  # An output package name for the node.
@@ -466,17 +472,11 @@ module Aws::Panorama
466
472
  # @option params [required, String] :output_package_version
467
473
  # An output package version for the node.
468
474
  #
469
- # @option params [required, String] :node_name
470
- # A name for the node.
471
- #
472
- # @option params [String] :node_description
473
- # A description for the node.
474
- #
475
475
  # @option params [required, Hash<String,String>] :template_parameters
476
476
  # Template parameters for the node.
477
477
  #
478
- # @option params [Array<Types::JobResourceTags>] :job_tags
479
- # Tags for the job.
478
+ # @option params [required, String] :template_type
479
+ # The type of node.
480
480
  #
481
481
  # @return [Types::CreateNodeFromTemplateJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
482
482
  #
@@ -485,14 +485,6 @@ module Aws::Panorama
485
485
  # @example Request syntax with placeholder values
486
486
  #
487
487
  # resp = client.create_node_from_template_job({
488
- # template_type: "RTSP_CAMERA_STREAM", # required, accepts RTSP_CAMERA_STREAM
489
- # output_package_name: "NodePackageName", # required
490
- # output_package_version: "NodePackageVersion", # required
491
- # node_name: "NodeName", # required
492
- # node_description: "Description",
493
- # template_parameters: { # required
494
- # "TemplateKey" => "TemplateValue",
495
- # },
496
488
  # job_tags: [
497
489
  # {
498
490
  # resource_type: "PACKAGE", # required, accepts PACKAGE
@@ -501,6 +493,14 @@ module Aws::Panorama
501
493
  # },
502
494
  # },
503
495
  # ],
496
+ # node_description: "Description",
497
+ # node_name: "NodeName", # required
498
+ # output_package_name: "NodePackageName", # required
499
+ # output_package_version: "NodePackageVersion", # required
500
+ # template_parameters: { # required
501
+ # "TemplateKey" => "TemplateValue",
502
+ # },
503
+ # template_type: "RTSP_CAMERA_STREAM", # required, accepts RTSP_CAMERA_STREAM
504
504
  # })
505
505
  #
506
506
  # @example Response structure
@@ -526,8 +526,8 @@ module Aws::Panorama
526
526
  #
527
527
  # @return [Types::CreatePackageResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
528
528
  #
529
- # * {Types::CreatePackageResponse#package_id #package_id} => String
530
529
  # * {Types::CreatePackageResponse#arn #arn} => String
530
+ # * {Types::CreatePackageResponse#package_id #package_id} => String
531
531
  # * {Types::CreatePackageResponse#storage_location #storage_location} => Types::StorageLocation
532
532
  #
533
533
  # @example Request syntax with placeholder values
@@ -541,13 +541,13 @@ module Aws::Panorama
541
541
  #
542
542
  # @example Response structure
543
543
  #
544
- # resp.package_id #=> String
545
544
  # resp.arn #=> String
545
+ # resp.package_id #=> String
546
+ # resp.storage_location.binary_prefix_location #=> String
546
547
  # resp.storage_location.bucket #=> String
547
- # resp.storage_location.repo_prefix_location #=> String
548
548
  # resp.storage_location.generated_prefix_location #=> String
549
- # resp.storage_location.binary_prefix_location #=> String
550
549
  # resp.storage_location.manifest_prefix_location #=> String
550
+ # resp.storage_location.repo_prefix_location #=> String
551
551
  #
552
552
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/CreatePackage AWS API Documentation
553
553
  #
@@ -560,21 +560,21 @@ module Aws::Panorama
560
560
 
561
561
  # Imports a node package.
562
562
  #
563
- # @option params [required, String] :job_type
564
- # A job type for the package import job.
563
+ # @option params [required, String] :client_token
564
+ # A client token for the package import job.
565
565
  #
566
566
  # @option params [required, Types::PackageImportJobInputConfig] :input_config
567
567
  # An input config for the package import job.
568
568
  #
569
- # @option params [required, Types::PackageImportJobOutputConfig] :output_config
570
- # An output config for the package import job.
571
- #
572
- # @option params [required, String] :client_token
573
- # A client token for the package import job.
574
- #
575
569
  # @option params [Array<Types::JobResourceTags>] :job_tags
576
570
  # Tags for the package import job.
577
571
  #
572
+ # @option params [required, String] :job_type
573
+ # A job type for the package import job.
574
+ #
575
+ # @option params [required, Types::PackageImportJobOutputConfig] :output_config
576
+ # An output config for the package import job.
577
+ #
578
578
  # @return [Types::CreatePackageImportJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
579
579
  #
580
580
  # * {Types::CreatePackageImportJobResponse#job_id #job_id} => String
@@ -582,24 +582,16 @@ module Aws::Panorama
582
582
  # @example Request syntax with placeholder values
583
583
  #
584
584
  # resp = client.create_package_import_job({
585
- # job_type: "NODE_PACKAGE_VERSION", # required, accepts NODE_PACKAGE_VERSION
585
+ # client_token: "ClientToken", # required
586
586
  # input_config: { # required
587
587
  # package_version_input_config: {
588
588
  # s3_location: { # required
589
- # region: "Region",
590
589
  # bucket_name: "BucketName", # required
591
590
  # object_key: "ObjectKey", # required
591
+ # region: "Region",
592
592
  # },
593
593
  # },
594
594
  # },
595
- # output_config: { # required
596
- # package_version_output_config: {
597
- # package_name: "NodePackageName", # required
598
- # package_version: "NodePackageVersion", # required
599
- # mark_latest: false,
600
- # },
601
- # },
602
- # client_token: "ClientToken", # required
603
595
  # job_tags: [
604
596
  # {
605
597
  # resource_type: "PACKAGE", # required, accepts PACKAGE
@@ -608,6 +600,14 @@ module Aws::Panorama
608
600
  # },
609
601
  # },
610
602
  # ],
603
+ # job_type: "NODE_PACKAGE_VERSION", # required, accepts NODE_PACKAGE_VERSION, MARKETPLACE_NODE_PACKAGE_VERSION
604
+ # output_config: { # required
605
+ # package_version_output_config: {
606
+ # mark_latest: false,
607
+ # package_name: "NodePackageName", # required
608
+ # package_version: "NodePackageVersion", # required
609
+ # },
610
+ # },
611
611
  # })
612
612
  #
613
613
  # @example Response structure
@@ -653,20 +653,25 @@ module Aws::Panorama
653
653
 
654
654
  # Deletes a package.
655
655
  #
656
- # @option params [required, String] :package_id
657
- # The package's ID.
656
+ # <note markdown="1"> To delete a package, you need permission to call `s3:DeleteObject` in
657
+ # addition to permissions for the AWS Panorama API.
658
+ #
659
+ # </note>
658
660
  #
659
661
  # @option params [Boolean] :force_delete
660
662
  # Delete the package even if it has artifacts stored in its access
661
663
  # point. Deletes the package's artifacts from Amazon S3.
662
664
  #
665
+ # @option params [required, String] :package_id
666
+ # The package's ID.
667
+ #
663
668
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
664
669
  #
665
670
  # @example Request syntax with placeholder values
666
671
  #
667
672
  # resp = client.delete_package({
668
- # package_id: "NodePackageId", # required
669
673
  # force_delete: false,
674
+ # package_id: "NodePackageId", # required
670
675
  # })
671
676
  #
672
677
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/DeletePackage AWS API Documentation
@@ -723,19 +728,19 @@ module Aws::Panorama
723
728
  #
724
729
  # @return [Types::DescribeApplicationInstanceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
725
730
  #
726
- # * {Types::DescribeApplicationInstanceResponse#name #name} => String
727
- # * {Types::DescribeApplicationInstanceResponse#description #description} => String
731
+ # * {Types::DescribeApplicationInstanceResponse#application_instance_id #application_instance_id} => String
732
+ # * {Types::DescribeApplicationInstanceResponse#application_instance_id_to_replace #application_instance_id_to_replace} => String
733
+ # * {Types::DescribeApplicationInstanceResponse#arn #arn} => String
734
+ # * {Types::DescribeApplicationInstanceResponse#created_time #created_time} => Time
728
735
  # * {Types::DescribeApplicationInstanceResponse#default_runtime_context_device #default_runtime_context_device} => String
729
736
  # * {Types::DescribeApplicationInstanceResponse#default_runtime_context_device_name #default_runtime_context_device_name} => String
730
- # * {Types::DescribeApplicationInstanceResponse#application_instance_id_to_replace #application_instance_id_to_replace} => String
737
+ # * {Types::DescribeApplicationInstanceResponse#description #description} => String
738
+ # * {Types::DescribeApplicationInstanceResponse#health_status #health_status} => String
739
+ # * {Types::DescribeApplicationInstanceResponse#last_updated_time #last_updated_time} => Time
740
+ # * {Types::DescribeApplicationInstanceResponse#name #name} => String
731
741
  # * {Types::DescribeApplicationInstanceResponse#runtime_role_arn #runtime_role_arn} => String
732
742
  # * {Types::DescribeApplicationInstanceResponse#status #status} => String
733
- # * {Types::DescribeApplicationInstanceResponse#health_status #health_status} => String
734
743
  # * {Types::DescribeApplicationInstanceResponse#status_description #status_description} => String
735
- # * {Types::DescribeApplicationInstanceResponse#created_time #created_time} => Time
736
- # * {Types::DescribeApplicationInstanceResponse#last_updated_time #last_updated_time} => Time
737
- # * {Types::DescribeApplicationInstanceResponse#application_instance_id #application_instance_id} => String
738
- # * {Types::DescribeApplicationInstanceResponse#arn #arn} => String
739
744
  # * {Types::DescribeApplicationInstanceResponse#tags #tags} => Hash&lt;String,String&gt;
740
745
  #
741
746
  # @example Request syntax with placeholder values
@@ -746,19 +751,19 @@ module Aws::Panorama
746
751
  #
747
752
  # @example Response structure
748
753
  #
749
- # resp.name #=> String
750
- # resp.description #=> String
754
+ # resp.application_instance_id #=> String
755
+ # resp.application_instance_id_to_replace #=> String
756
+ # resp.arn #=> String
757
+ # resp.created_time #=> Time
751
758
  # resp.default_runtime_context_device #=> String
752
759
  # resp.default_runtime_context_device_name #=> String
753
- # resp.application_instance_id_to_replace #=> String
754
- # resp.runtime_role_arn #=> String
755
- # resp.status #=> String, one of "DEPLOYMENT_PENDING", "DEPLOYMENT_REQUESTED", "DEPLOYMENT_IN_PROGRESS", "DEPLOYMENT_ERROR", "DEPLOYMENT_SUCCEEDED", "REMOVAL_PENDING", "REMOVAL_REQUESTED", "REMOVAL_IN_PROGRESS", "REMOVAL_FAILED", "REMOVAL_SUCCEEDED"
760
+ # resp.description #=> String
756
761
  # resp.health_status #=> String, one of "RUNNING", "ERROR", "NOT_AVAILABLE"
757
- # resp.status_description #=> String
758
- # resp.created_time #=> Time
759
762
  # resp.last_updated_time #=> Time
760
- # resp.application_instance_id #=> String
761
- # resp.arn #=> String
763
+ # resp.name #=> String
764
+ # resp.runtime_role_arn #=> String
765
+ # resp.status #=> String, one of "DEPLOYMENT_PENDING", "DEPLOYMENT_REQUESTED", "DEPLOYMENT_IN_PROGRESS", "DEPLOYMENT_ERROR", "DEPLOYMENT_SUCCEEDED", "REMOVAL_PENDING", "REMOVAL_REQUESTED", "REMOVAL_IN_PROGRESS", "REMOVAL_FAILED", "REMOVAL_SUCCEEDED", "DEPLOYMENT_FAILED"
766
+ # resp.status_description #=> String
762
767
  # resp.tags #=> Hash
763
768
  # resp.tags["TagKey"] #=> String
764
769
  #
@@ -779,14 +784,14 @@ module Aws::Panorama
779
784
  #
780
785
  # @return [Types::DescribeApplicationInstanceDetailsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
781
786
  #
782
- # * {Types::DescribeApplicationInstanceDetailsResponse#name #name} => String
783
- # * {Types::DescribeApplicationInstanceDetailsResponse#description #description} => String
784
- # * {Types::DescribeApplicationInstanceDetailsResponse#default_runtime_context_device #default_runtime_context_device} => String
785
- # * {Types::DescribeApplicationInstanceDetailsResponse#manifest_payload #manifest_payload} => Types::ManifestPayload
786
- # * {Types::DescribeApplicationInstanceDetailsResponse#manifest_overrides_payload #manifest_overrides_payload} => Types::ManifestOverridesPayload
787
+ # * {Types::DescribeApplicationInstanceDetailsResponse#application_instance_id #application_instance_id} => String
787
788
  # * {Types::DescribeApplicationInstanceDetailsResponse#application_instance_id_to_replace #application_instance_id_to_replace} => String
788
789
  # * {Types::DescribeApplicationInstanceDetailsResponse#created_time #created_time} => Time
789
- # * {Types::DescribeApplicationInstanceDetailsResponse#application_instance_id #application_instance_id} => String
790
+ # * {Types::DescribeApplicationInstanceDetailsResponse#default_runtime_context_device #default_runtime_context_device} => String
791
+ # * {Types::DescribeApplicationInstanceDetailsResponse#description #description} => String
792
+ # * {Types::DescribeApplicationInstanceDetailsResponse#manifest_overrides_payload #manifest_overrides_payload} => Types::ManifestOverridesPayload
793
+ # * {Types::DescribeApplicationInstanceDetailsResponse#manifest_payload #manifest_payload} => Types::ManifestPayload
794
+ # * {Types::DescribeApplicationInstanceDetailsResponse#name #name} => String
790
795
  #
791
796
  # @example Request syntax with placeholder values
792
797
  #
@@ -796,14 +801,14 @@ module Aws::Panorama
796
801
  #
797
802
  # @example Response structure
798
803
  #
799
- # resp.name #=> String
800
- # resp.description #=> String
801
- # resp.default_runtime_context_device #=> String
802
- # resp.manifest_payload.payload_data #=> String
803
- # resp.manifest_overrides_payload.payload_data #=> String
804
+ # resp.application_instance_id #=> String
804
805
  # resp.application_instance_id_to_replace #=> String
805
806
  # resp.created_time #=> Time
806
- # resp.application_instance_id #=> String
807
+ # resp.default_runtime_context_device #=> String
808
+ # resp.description #=> String
809
+ # resp.manifest_overrides_payload.payload_data #=> String
810
+ # resp.manifest_payload.payload_data #=> String
811
+ # resp.name #=> String
807
812
  #
808
813
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/DescribeApplicationInstanceDetails AWS API Documentation
809
814
  #
@@ -821,21 +826,26 @@ module Aws::Panorama
821
826
  #
822
827
  # @return [Types::DescribeDeviceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
823
828
  #
824
- # * {Types::DescribeDeviceResponse#device_id #device_id} => String
825
- # * {Types::DescribeDeviceResponse#name #name} => String
829
+ # * {Types::DescribeDeviceResponse#alternate_softwares #alternate_softwares} => Array&lt;Types::AlternateSoftwareMetadata&gt;
826
830
  # * {Types::DescribeDeviceResponse#arn #arn} => String
831
+ # * {Types::DescribeDeviceResponse#brand #brand} => String
832
+ # * {Types::DescribeDeviceResponse#created_time #created_time} => Time
833
+ # * {Types::DescribeDeviceResponse#current_networking_status #current_networking_status} => Types::NetworkStatus
834
+ # * {Types::DescribeDeviceResponse#current_software #current_software} => String
827
835
  # * {Types::DescribeDeviceResponse#description #description} => String
828
- # * {Types::DescribeDeviceResponse#type #type} => String
836
+ # * {Types::DescribeDeviceResponse#device_aggregated_status #device_aggregated_status} => String
829
837
  # * {Types::DescribeDeviceResponse#device_connection_status #device_connection_status} => String
830
- # * {Types::DescribeDeviceResponse#created_time #created_time} => Time
831
- # * {Types::DescribeDeviceResponse#provisioning_status #provisioning_status} => String
838
+ # * {Types::DescribeDeviceResponse#device_id #device_id} => String
839
+ # * {Types::DescribeDeviceResponse#latest_alternate_software #latest_alternate_software} => String
840
+ # * {Types::DescribeDeviceResponse#latest_device_job #latest_device_job} => Types::LatestDeviceJob
832
841
  # * {Types::DescribeDeviceResponse#latest_software #latest_software} => String
833
- # * {Types::DescribeDeviceResponse#current_software #current_software} => String
842
+ # * {Types::DescribeDeviceResponse#lease_expiration_time #lease_expiration_time} => Time
843
+ # * {Types::DescribeDeviceResponse#name #name} => String
844
+ # * {Types::DescribeDeviceResponse#networking_configuration #networking_configuration} => Types::NetworkPayload
845
+ # * {Types::DescribeDeviceResponse#provisioning_status #provisioning_status} => String
834
846
  # * {Types::DescribeDeviceResponse#serial_number #serial_number} => String
835
847
  # * {Types::DescribeDeviceResponse#tags #tags} => Hash&lt;String,String&gt;
836
- # * {Types::DescribeDeviceResponse#networking_configuration #networking_configuration} => Types::NetworkPayload
837
- # * {Types::DescribeDeviceResponse#current_networking_status #current_networking_status} => Types::NetworkStatus
838
- # * {Types::DescribeDeviceResponse#lease_expiration_time #lease_expiration_time} => Time
848
+ # * {Types::DescribeDeviceResponse#type #type} => String
839
849
  #
840
850
  # @example Request syntax with placeholder values
841
851
  #
@@ -845,38 +855,51 @@ module Aws::Panorama
845
855
  #
846
856
  # @example Response structure
847
857
  #
848
- # resp.device_id #=> String
849
- # resp.name #=> String
858
+ # resp.alternate_softwares #=> Array
859
+ # resp.alternate_softwares[0].version #=> String
850
860
  # resp.arn #=> String
861
+ # resp.brand #=> String, one of "AWS_PANORAMA", "LENOVO"
862
+ # resp.created_time #=> Time
863
+ # resp.current_networking_status.ethernet_0_status.connection_status #=> String, one of "CONNECTED", "NOT_CONNECTED", "CONNECTING"
864
+ # resp.current_networking_status.ethernet_0_status.hw_address #=> String
865
+ # resp.current_networking_status.ethernet_0_status.ip_address #=> String
866
+ # resp.current_networking_status.ethernet_1_status.connection_status #=> String, one of "CONNECTED", "NOT_CONNECTED", "CONNECTING"
867
+ # resp.current_networking_status.ethernet_1_status.hw_address #=> String
868
+ # resp.current_networking_status.ethernet_1_status.ip_address #=> String
869
+ # resp.current_networking_status.last_updated_time #=> Time
870
+ # resp.current_networking_status.ntp_status.connection_status #=> String, one of "CONNECTED", "NOT_CONNECTED", "CONNECTING"
871
+ # resp.current_networking_status.ntp_status.ip_address #=> String
872
+ # resp.current_networking_status.ntp_status.ntp_server_name #=> String
873
+ # resp.current_software #=> String
851
874
  # resp.description #=> String
852
- # resp.type #=> String, one of "PANORAMA_APPLIANCE_DEVELOPER_KIT", "PANORAMA_APPLIANCE"
875
+ # resp.device_aggregated_status #=> String, one of "ERROR", "AWAITING_PROVISIONING", "PENDING", "FAILED", "DELETING", "ONLINE", "OFFLINE", "LEASE_EXPIRED", "UPDATE_NEEDED"
853
876
  # resp.device_connection_status #=> String, one of "ONLINE", "OFFLINE", "AWAITING_CREDENTIALS", "NOT_AVAILABLE", "ERROR"
854
- # resp.created_time #=> Time
855
- # resp.provisioning_status #=> String, one of "AWAITING_PROVISIONING", "PENDING", "SUCCEEDED", "FAILED", "ERROR", "DELETING"
877
+ # resp.device_id #=> String
878
+ # resp.latest_alternate_software #=> String
879
+ # resp.latest_device_job.image_version #=> String
880
+ # resp.latest_device_job.status #=> String, one of "PENDING", "IN_PROGRESS", "VERIFYING", "REBOOTING", "DOWNLOADING", "COMPLETED", "FAILED"
856
881
  # resp.latest_software #=> String
857
- # resp.current_software #=> String
858
- # resp.serial_number #=> String
859
- # resp.tags #=> Hash
860
- # resp.tags["TagKey"] #=> String
882
+ # resp.lease_expiration_time #=> Time
883
+ # resp.name #=> String
861
884
  # resp.networking_configuration.ethernet_0.connection_type #=> String, one of "STATIC_IP", "DHCP"
862
- # resp.networking_configuration.ethernet_0.static_ip_connection_info.ip_address #=> String
863
- # resp.networking_configuration.ethernet_0.static_ip_connection_info.mask #=> String
885
+ # resp.networking_configuration.ethernet_0.static_ip_connection_info.default_gateway #=> String
864
886
  # resp.networking_configuration.ethernet_0.static_ip_connection_info.dns #=> Array
865
887
  # resp.networking_configuration.ethernet_0.static_ip_connection_info.dns[0] #=> String
866
- # resp.networking_configuration.ethernet_0.static_ip_connection_info.default_gateway #=> String
888
+ # resp.networking_configuration.ethernet_0.static_ip_connection_info.ip_address #=> String
889
+ # resp.networking_configuration.ethernet_0.static_ip_connection_info.mask #=> String
867
890
  # resp.networking_configuration.ethernet_1.connection_type #=> String, one of "STATIC_IP", "DHCP"
868
- # resp.networking_configuration.ethernet_1.static_ip_connection_info.ip_address #=> String
869
- # resp.networking_configuration.ethernet_1.static_ip_connection_info.mask #=> String
891
+ # resp.networking_configuration.ethernet_1.static_ip_connection_info.default_gateway #=> String
870
892
  # resp.networking_configuration.ethernet_1.static_ip_connection_info.dns #=> Array
871
893
  # resp.networking_configuration.ethernet_1.static_ip_connection_info.dns[0] #=> String
872
- # resp.networking_configuration.ethernet_1.static_ip_connection_info.default_gateway #=> String
873
- # resp.current_networking_status.ethernet_0_status.ip_address #=> String
874
- # resp.current_networking_status.ethernet_0_status.connection_status #=> String, one of "CONNECTED", "NOT_CONNECTED"
875
- # resp.current_networking_status.ethernet_0_status.hw_address #=> String
876
- # resp.current_networking_status.ethernet_1_status.ip_address #=> String
877
- # resp.current_networking_status.ethernet_1_status.connection_status #=> String, one of "CONNECTED", "NOT_CONNECTED"
878
- # resp.current_networking_status.ethernet_1_status.hw_address #=> String
879
- # resp.lease_expiration_time #=> Time
894
+ # resp.networking_configuration.ethernet_1.static_ip_connection_info.ip_address #=> String
895
+ # resp.networking_configuration.ethernet_1.static_ip_connection_info.mask #=> String
896
+ # resp.networking_configuration.ntp.ntp_servers #=> Array
897
+ # resp.networking_configuration.ntp.ntp_servers[0] #=> String
898
+ # resp.provisioning_status #=> String, one of "AWAITING_PROVISIONING", "PENDING", "SUCCEEDED", "FAILED", "ERROR", "DELETING"
899
+ # resp.serial_number #=> String
900
+ # resp.tags #=> Hash
901
+ # resp.tags["TagKey"] #=> String
902
+ # resp.type #=> String, one of "PANORAMA_APPLIANCE_DEVELOPER_KIT", "PANORAMA_APPLIANCE"
880
903
  #
881
904
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/DescribeDevice AWS API Documentation
882
905
  #
@@ -894,14 +917,14 @@ module Aws::Panorama
894
917
  #
895
918
  # @return [Types::DescribeDeviceJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
896
919
  #
897
- # * {Types::DescribeDeviceJobResponse#job_id #job_id} => String
898
- # * {Types::DescribeDeviceJobResponse#device_id #device_id} => String
920
+ # * {Types::DescribeDeviceJobResponse#created_time #created_time} => Time
899
921
  # * {Types::DescribeDeviceJobResponse#device_arn #device_arn} => String
922
+ # * {Types::DescribeDeviceJobResponse#device_id #device_id} => String
900
923
  # * {Types::DescribeDeviceJobResponse#device_name #device_name} => String
901
924
  # * {Types::DescribeDeviceJobResponse#device_type #device_type} => String
902
925
  # * {Types::DescribeDeviceJobResponse#image_version #image_version} => String
926
+ # * {Types::DescribeDeviceJobResponse#job_id #job_id} => String
903
927
  # * {Types::DescribeDeviceJobResponse#status #status} => String
904
- # * {Types::DescribeDeviceJobResponse#created_time #created_time} => Time
905
928
  #
906
929
  # @example Request syntax with placeholder values
907
930
  #
@@ -911,14 +934,14 @@ module Aws::Panorama
911
934
  #
912
935
  # @example Response structure
913
936
  #
914
- # resp.job_id #=> String
915
- # resp.device_id #=> String
937
+ # resp.created_time #=> Time
916
938
  # resp.device_arn #=> String
939
+ # resp.device_id #=> String
917
940
  # resp.device_name #=> String
918
941
  # resp.device_type #=> String, one of "PANORAMA_APPLIANCE_DEVELOPER_KIT", "PANORAMA_APPLIANCE"
919
942
  # resp.image_version #=> String
943
+ # resp.job_id #=> String
920
944
  # resp.status #=> String, one of "PENDING", "IN_PROGRESS", "VERIFYING", "REBOOTING", "DOWNLOADING", "COMPLETED", "FAILED"
921
- # resp.created_time #=> Time
922
945
  #
923
946
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/DescribeDeviceJob AWS API Documentation
924
947
  #
@@ -939,20 +962,20 @@ module Aws::Panorama
939
962
  #
940
963
  # @return [Types::DescribeNodeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
941
964
  #
942
- # * {Types::DescribeNodeResponse#node_id #node_id} => String
943
- # * {Types::DescribeNodeResponse#name #name} => String
965
+ # * {Types::DescribeNodeResponse#asset_name #asset_name} => String
944
966
  # * {Types::DescribeNodeResponse#category #category} => String
967
+ # * {Types::DescribeNodeResponse#created_time #created_time} => Time
968
+ # * {Types::DescribeNodeResponse#description #description} => String
969
+ # * {Types::DescribeNodeResponse#last_updated_time #last_updated_time} => Time
970
+ # * {Types::DescribeNodeResponse#name #name} => String
971
+ # * {Types::DescribeNodeResponse#node_id #node_id} => String
972
+ # * {Types::DescribeNodeResponse#node_interface #node_interface} => Types::NodeInterface
945
973
  # * {Types::DescribeNodeResponse#owner_account #owner_account} => String
946
- # * {Types::DescribeNodeResponse#package_name #package_name} => String
947
- # * {Types::DescribeNodeResponse#package_id #package_id} => String
948
974
  # * {Types::DescribeNodeResponse#package_arn #package_arn} => String
975
+ # * {Types::DescribeNodeResponse#package_id #package_id} => String
976
+ # * {Types::DescribeNodeResponse#package_name #package_name} => String
949
977
  # * {Types::DescribeNodeResponse#package_version #package_version} => String
950
978
  # * {Types::DescribeNodeResponse#patch_version #patch_version} => String
951
- # * {Types::DescribeNodeResponse#node_interface #node_interface} => Types::NodeInterface
952
- # * {Types::DescribeNodeResponse#asset_name #asset_name} => String
953
- # * {Types::DescribeNodeResponse#description #description} => String
954
- # * {Types::DescribeNodeResponse#created_time #created_time} => Time
955
- # * {Types::DescribeNodeResponse#last_updated_time #last_updated_time} => Time
956
979
  #
957
980
  # @example Request syntax with placeholder values
958
981
  #
@@ -963,29 +986,29 @@ module Aws::Panorama
963
986
  #
964
987
  # @example Response structure
965
988
  #
966
- # resp.node_id #=> String
967
- # resp.name #=> String
989
+ # resp.asset_name #=> String
968
990
  # resp.category #=> String, one of "BUSINESS_LOGIC", "ML_MODEL", "MEDIA_SOURCE", "MEDIA_SINK"
969
- # resp.owner_account #=> String
970
- # resp.package_name #=> String
971
- # resp.package_id #=> String
972
- # resp.package_arn #=> String
973
- # resp.package_version #=> String
974
- # resp.patch_version #=> String
991
+ # resp.created_time #=> Time
992
+ # resp.description #=> String
993
+ # resp.last_updated_time #=> Time
994
+ # resp.name #=> String
995
+ # resp.node_id #=> String
975
996
  # resp.node_interface.inputs #=> Array
976
- # resp.node_interface.inputs[0].name #=> String
977
- # resp.node_interface.inputs[0].description #=> String
978
- # resp.node_interface.inputs[0].type #=> String, one of "BOOLEAN", "STRING", "INT32", "FLOAT32", "MEDIA"
979
997
  # resp.node_interface.inputs[0].default_value #=> String
998
+ # resp.node_interface.inputs[0].description #=> String
980
999
  # resp.node_interface.inputs[0].max_connections #=> Integer
1000
+ # resp.node_interface.inputs[0].name #=> String
1001
+ # resp.node_interface.inputs[0].type #=> String, one of "BOOLEAN", "STRING", "INT32", "FLOAT32", "MEDIA"
981
1002
  # resp.node_interface.outputs #=> Array
982
- # resp.node_interface.outputs[0].name #=> String
983
1003
  # resp.node_interface.outputs[0].description #=> String
1004
+ # resp.node_interface.outputs[0].name #=> String
984
1005
  # resp.node_interface.outputs[0].type #=> String, one of "BOOLEAN", "STRING", "INT32", "FLOAT32", "MEDIA"
985
- # resp.asset_name #=> String
986
- # resp.description #=> String
987
- # resp.created_time #=> Time
988
- # resp.last_updated_time #=> Time
1006
+ # resp.owner_account #=> String
1007
+ # resp.package_arn #=> String
1008
+ # resp.package_id #=> String
1009
+ # resp.package_name #=> String
1010
+ # resp.package_version #=> String
1011
+ # resp.patch_version #=> String
989
1012
  #
990
1013
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/DescribeNode AWS API Documentation
991
1014
  #
@@ -1003,18 +1026,18 @@ module Aws::Panorama
1003
1026
  #
1004
1027
  # @return [Types::DescribeNodeFromTemplateJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1005
1028
  #
1006
- # * {Types::DescribeNodeFromTemplateJobResponse#job_id #job_id} => String
1007
- # * {Types::DescribeNodeFromTemplateJobResponse#status #status} => String
1008
- # * {Types::DescribeNodeFromTemplateJobResponse#status_message #status_message} => String
1009
1029
  # * {Types::DescribeNodeFromTemplateJobResponse#created_time #created_time} => Time
1030
+ # * {Types::DescribeNodeFromTemplateJobResponse#job_id #job_id} => String
1031
+ # * {Types::DescribeNodeFromTemplateJobResponse#job_tags #job_tags} => Array&lt;Types::JobResourceTags&gt;
1010
1032
  # * {Types::DescribeNodeFromTemplateJobResponse#last_updated_time #last_updated_time} => Time
1033
+ # * {Types::DescribeNodeFromTemplateJobResponse#node_description #node_description} => String
1034
+ # * {Types::DescribeNodeFromTemplateJobResponse#node_name #node_name} => String
1011
1035
  # * {Types::DescribeNodeFromTemplateJobResponse#output_package_name #output_package_name} => String
1012
1036
  # * {Types::DescribeNodeFromTemplateJobResponse#output_package_version #output_package_version} => String
1013
- # * {Types::DescribeNodeFromTemplateJobResponse#node_name #node_name} => String
1014
- # * {Types::DescribeNodeFromTemplateJobResponse#node_description #node_description} => String
1015
- # * {Types::DescribeNodeFromTemplateJobResponse#template_type #template_type} => String
1037
+ # * {Types::DescribeNodeFromTemplateJobResponse#status #status} => String
1038
+ # * {Types::DescribeNodeFromTemplateJobResponse#status_message #status_message} => String
1016
1039
  # * {Types::DescribeNodeFromTemplateJobResponse#template_parameters #template_parameters} => Hash&lt;String,String&gt;
1017
- # * {Types::DescribeNodeFromTemplateJobResponse#job_tags #job_tags} => Array&lt;Types::JobResourceTags&gt;
1040
+ # * {Types::DescribeNodeFromTemplateJobResponse#template_type #template_type} => String
1018
1041
  #
1019
1042
  # @example Request syntax with placeholder values
1020
1043
  #
@@ -1024,22 +1047,22 @@ module Aws::Panorama
1024
1047
  #
1025
1048
  # @example Response structure
1026
1049
  #
1027
- # resp.job_id #=> String
1028
- # resp.status #=> String, one of "PENDING", "SUCCEEDED", "FAILED"
1029
- # resp.status_message #=> String
1030
1050
  # resp.created_time #=> Time
1051
+ # resp.job_id #=> String
1052
+ # resp.job_tags #=> Array
1053
+ # resp.job_tags[0].resource_type #=> String, one of "PACKAGE"
1054
+ # resp.job_tags[0].tags #=> Hash
1055
+ # resp.job_tags[0].tags["TagKey"] #=> String
1031
1056
  # resp.last_updated_time #=> Time
1057
+ # resp.node_description #=> String
1058
+ # resp.node_name #=> String
1032
1059
  # resp.output_package_name #=> String
1033
1060
  # resp.output_package_version #=> String
1034
- # resp.node_name #=> String
1035
- # resp.node_description #=> String
1036
- # resp.template_type #=> String, one of "RTSP_CAMERA_STREAM"
1061
+ # resp.status #=> String, one of "PENDING", "SUCCEEDED", "FAILED"
1062
+ # resp.status_message #=> String
1037
1063
  # resp.template_parameters #=> Hash
1038
1064
  # resp.template_parameters["TemplateKey"] #=> String
1039
- # resp.job_tags #=> Array
1040
- # resp.job_tags[0].resource_type #=> String, one of "PACKAGE"
1041
- # resp.job_tags[0].tags #=> Hash
1042
- # resp.job_tags[0].tags["TagKey"] #=> String
1065
+ # resp.template_type #=> String, one of "RTSP_CAMERA_STREAM"
1043
1066
  #
1044
1067
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/DescribeNodeFromTemplateJob AWS API Documentation
1045
1068
  #
@@ -1057,14 +1080,14 @@ module Aws::Panorama
1057
1080
  #
1058
1081
  # @return [Types::DescribePackageResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1059
1082
  #
1060
- # * {Types::DescribePackageResponse#package_id #package_id} => String
1061
- # * {Types::DescribePackageResponse#package_name #package_name} => String
1062
1083
  # * {Types::DescribePackageResponse#arn #arn} => String
1063
- # * {Types::DescribePackageResponse#storage_location #storage_location} => Types::StorageLocation
1064
- # * {Types::DescribePackageResponse#read_access_principal_arns #read_access_principal_arns} => Array&lt;String&gt;
1065
- # * {Types::DescribePackageResponse#write_access_principal_arns #write_access_principal_arns} => Array&lt;String&gt;
1066
1084
  # * {Types::DescribePackageResponse#created_time #created_time} => Time
1085
+ # * {Types::DescribePackageResponse#package_id #package_id} => String
1086
+ # * {Types::DescribePackageResponse#package_name #package_name} => String
1087
+ # * {Types::DescribePackageResponse#read_access_principal_arns #read_access_principal_arns} => Array&lt;String&gt;
1088
+ # * {Types::DescribePackageResponse#storage_location #storage_location} => Types::StorageLocation
1067
1089
  # * {Types::DescribePackageResponse#tags #tags} => Hash&lt;String,String&gt;
1090
+ # * {Types::DescribePackageResponse#write_access_principal_arns #write_access_principal_arns} => Array&lt;String&gt;
1068
1091
  #
1069
1092
  # @example Request syntax with placeholder values
1070
1093
  #
@@ -1074,21 +1097,21 @@ module Aws::Panorama
1074
1097
  #
1075
1098
  # @example Response structure
1076
1099
  #
1100
+ # resp.arn #=> String
1101
+ # resp.created_time #=> Time
1077
1102
  # resp.package_id #=> String
1078
1103
  # resp.package_name #=> String
1079
- # resp.arn #=> String
1104
+ # resp.read_access_principal_arns #=> Array
1105
+ # resp.read_access_principal_arns[0] #=> String
1106
+ # resp.storage_location.binary_prefix_location #=> String
1080
1107
  # resp.storage_location.bucket #=> String
1081
- # resp.storage_location.repo_prefix_location #=> String
1082
1108
  # resp.storage_location.generated_prefix_location #=> String
1083
- # resp.storage_location.binary_prefix_location #=> String
1084
1109
  # resp.storage_location.manifest_prefix_location #=> String
1085
- # resp.read_access_principal_arns #=> Array
1086
- # resp.read_access_principal_arns[0] #=> String
1087
- # resp.write_access_principal_arns #=> Array
1088
- # resp.write_access_principal_arns[0] #=> String
1089
- # resp.created_time #=> Time
1110
+ # resp.storage_location.repo_prefix_location #=> String
1090
1111
  # resp.tags #=> Hash
1091
1112
  # resp.tags["TagKey"] #=> String
1113
+ # resp.write_access_principal_arns #=> Array
1114
+ # resp.write_access_principal_arns[0] #=> String
1092
1115
  #
1093
1116
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/DescribePackage AWS API Documentation
1094
1117
  #
@@ -1106,17 +1129,17 @@ module Aws::Panorama
1106
1129
  #
1107
1130
  # @return [Types::DescribePackageImportJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1108
1131
  #
1109
- # * {Types::DescribePackageImportJobResponse#job_id #job_id} => String
1110
1132
  # * {Types::DescribePackageImportJobResponse#client_token #client_token} => String
1111
- # * {Types::DescribePackageImportJobResponse#job_type #job_type} => String
1112
- # * {Types::DescribePackageImportJobResponse#input_config #input_config} => Types::PackageImportJobInputConfig
1113
- # * {Types::DescribePackageImportJobResponse#output_config #output_config} => Types::PackageImportJobOutputConfig
1114
- # * {Types::DescribePackageImportJobResponse#output #output} => Types::PackageImportJobOutput
1115
1133
  # * {Types::DescribePackageImportJobResponse#created_time #created_time} => Time
1134
+ # * {Types::DescribePackageImportJobResponse#input_config #input_config} => Types::PackageImportJobInputConfig
1135
+ # * {Types::DescribePackageImportJobResponse#job_id #job_id} => String
1136
+ # * {Types::DescribePackageImportJobResponse#job_tags #job_tags} => Array&lt;Types::JobResourceTags&gt;
1137
+ # * {Types::DescribePackageImportJobResponse#job_type #job_type} => String
1116
1138
  # * {Types::DescribePackageImportJobResponse#last_updated_time #last_updated_time} => Time
1139
+ # * {Types::DescribePackageImportJobResponse#output #output} => Types::PackageImportJobOutput
1140
+ # * {Types::DescribePackageImportJobResponse#output_config #output_config} => Types::PackageImportJobOutputConfig
1117
1141
  # * {Types::DescribePackageImportJobResponse#status #status} => String
1118
1142
  # * {Types::DescribePackageImportJobResponse#status_message #status_message} => String
1119
- # * {Types::DescribePackageImportJobResponse#job_tags #job_tags} => Array&lt;Types::JobResourceTags&gt;
1120
1143
  #
1121
1144
  # @example Request syntax with placeholder values
1122
1145
  #
@@ -1126,28 +1149,28 @@ module Aws::Panorama
1126
1149
  #
1127
1150
  # @example Response structure
1128
1151
  #
1129
- # resp.job_id #=> String
1130
1152
  # resp.client_token #=> String
1131
- # resp.job_type #=> String, one of "NODE_PACKAGE_VERSION"
1132
- # resp.input_config.package_version_input_config.s3_location.region #=> String
1153
+ # resp.created_time #=> Time
1133
1154
  # resp.input_config.package_version_input_config.s3_location.bucket_name #=> String
1134
1155
  # resp.input_config.package_version_input_config.s3_location.object_key #=> String
1135
- # resp.output_config.package_version_output_config.package_name #=> String
1136
- # resp.output_config.package_version_output_config.package_version #=> String
1137
- # resp.output_config.package_version_output_config.mark_latest #=> Boolean
1156
+ # resp.input_config.package_version_input_config.s3_location.region #=> String
1157
+ # resp.job_id #=> String
1158
+ # resp.job_tags #=> Array
1159
+ # resp.job_tags[0].resource_type #=> String, one of "PACKAGE"
1160
+ # resp.job_tags[0].tags #=> Hash
1161
+ # resp.job_tags[0].tags["TagKey"] #=> String
1162
+ # resp.job_type #=> String, one of "NODE_PACKAGE_VERSION", "MARKETPLACE_NODE_PACKAGE_VERSION"
1163
+ # resp.last_updated_time #=> Time
1164
+ # resp.output.output_s3_location.bucket_name #=> String
1165
+ # resp.output.output_s3_location.object_key #=> String
1138
1166
  # resp.output.package_id #=> String
1139
1167
  # resp.output.package_version #=> String
1140
1168
  # resp.output.patch_version #=> String
1141
- # resp.output.output_s3_location.bucket_name #=> String
1142
- # resp.output.output_s3_location.object_key #=> String
1143
- # resp.created_time #=> Time
1144
- # resp.last_updated_time #=> Time
1169
+ # resp.output_config.package_version_output_config.mark_latest #=> Boolean
1170
+ # resp.output_config.package_version_output_config.package_name #=> String
1171
+ # resp.output_config.package_version_output_config.package_version #=> String
1145
1172
  # resp.status #=> String, one of "PENDING", "SUCCEEDED", "FAILED"
1146
1173
  # resp.status_message #=> String
1147
- # resp.job_tags #=> Array
1148
- # resp.job_tags[0].resource_type #=> String, one of "PACKAGE"
1149
- # resp.job_tags[0].tags #=> Hash
1150
- # resp.job_tags[0].tags["TagKey"] #=> String
1151
1174
  #
1152
1175
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/DescribePackageImportJob AWS API Documentation
1153
1176
  #
@@ -1174,16 +1197,16 @@ module Aws::Panorama
1174
1197
  #
1175
1198
  # @return [Types::DescribePackageVersionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1176
1199
  #
1200
+ # * {Types::DescribePackageVersionResponse#is_latest_patch #is_latest_patch} => Boolean
1177
1201
  # * {Types::DescribePackageVersionResponse#owner_account #owner_account} => String
1178
- # * {Types::DescribePackageVersionResponse#package_id #package_id} => String
1179
1202
  # * {Types::DescribePackageVersionResponse#package_arn #package_arn} => String
1203
+ # * {Types::DescribePackageVersionResponse#package_id #package_id} => String
1180
1204
  # * {Types::DescribePackageVersionResponse#package_name #package_name} => String
1181
1205
  # * {Types::DescribePackageVersionResponse#package_version #package_version} => String
1182
1206
  # * {Types::DescribePackageVersionResponse#patch_version #patch_version} => String
1183
- # * {Types::DescribePackageVersionResponse#is_latest_patch #is_latest_patch} => Boolean
1207
+ # * {Types::DescribePackageVersionResponse#registered_time #registered_time} => Time
1184
1208
  # * {Types::DescribePackageVersionResponse#status #status} => String
1185
1209
  # * {Types::DescribePackageVersionResponse#status_description #status_description} => String
1186
- # * {Types::DescribePackageVersionResponse#registered_time #registered_time} => Time
1187
1210
  #
1188
1211
  # @example Request syntax with placeholder values
1189
1212
  #
@@ -1196,16 +1219,16 @@ module Aws::Panorama
1196
1219
  #
1197
1220
  # @example Response structure
1198
1221
  #
1222
+ # resp.is_latest_patch #=> Boolean
1199
1223
  # resp.owner_account #=> String
1200
- # resp.package_id #=> String
1201
1224
  # resp.package_arn #=> String
1225
+ # resp.package_id #=> String
1202
1226
  # resp.package_name #=> String
1203
1227
  # resp.package_version #=> String
1204
1228
  # resp.patch_version #=> String
1205
- # resp.is_latest_patch #=> Boolean
1229
+ # resp.registered_time #=> Time
1206
1230
  # resp.status #=> String, one of "REGISTER_PENDING", "REGISTER_COMPLETED", "FAILED", "DELETING"
1207
1231
  # resp.status_description #=> String
1208
- # resp.registered_time #=> Time
1209
1232
  #
1210
1233
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/DescribePackageVersion AWS API Documentation
1211
1234
  #
@@ -1231,8 +1254,8 @@ module Aws::Panorama
1231
1254
  #
1232
1255
  # @return [Types::ListApplicationInstanceDependenciesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1233
1256
  #
1234
- # * {Types::ListApplicationInstanceDependenciesResponse#package_objects #package_objects} => Array&lt;Types::PackageObject&gt;
1235
1257
  # * {Types::ListApplicationInstanceDependenciesResponse#next_token #next_token} => String
1258
+ # * {Types::ListApplicationInstanceDependenciesResponse#package_objects #package_objects} => Array&lt;Types::PackageObject&gt;
1236
1259
  #
1237
1260
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1238
1261
  #
@@ -1246,11 +1269,11 @@ module Aws::Panorama
1246
1269
  #
1247
1270
  # @example Response structure
1248
1271
  #
1272
+ # resp.next_token #=> String
1249
1273
  # resp.package_objects #=> Array
1250
1274
  # resp.package_objects[0].name #=> String
1251
1275
  # resp.package_objects[0].package_version #=> String
1252
1276
  # resp.package_objects[0].patch_version #=> String
1253
- # resp.next_token #=> String
1254
1277
  #
1255
1278
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/ListApplicationInstanceDependencies AWS API Documentation
1256
1279
  #
@@ -1275,8 +1298,8 @@ module Aws::Panorama
1275
1298
  #
1276
1299
  # @return [Types::ListApplicationInstanceNodeInstancesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1277
1300
  #
1278
- # * {Types::ListApplicationInstanceNodeInstancesResponse#node_instances #node_instances} => Array&lt;Types::NodeInstance&gt;
1279
1301
  # * {Types::ListApplicationInstanceNodeInstancesResponse#next_token #next_token} => String
1302
+ # * {Types::ListApplicationInstanceNodeInstancesResponse#node_instances #node_instances} => Array&lt;Types::NodeInstance&gt;
1280
1303
  #
1281
1304
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1282
1305
  #
@@ -1290,15 +1313,15 @@ module Aws::Panorama
1290
1313
  #
1291
1314
  # @example Response structure
1292
1315
  #
1316
+ # resp.next_token #=> String
1293
1317
  # resp.node_instances #=> Array
1294
- # resp.node_instances[0].node_instance_id #=> String
1318
+ # resp.node_instances[0].current_status #=> String, one of "RUNNING", "ERROR", "NOT_AVAILABLE"
1295
1319
  # resp.node_instances[0].node_id #=> String
1320
+ # resp.node_instances[0].node_instance_id #=> String
1321
+ # resp.node_instances[0].node_name #=> String
1296
1322
  # resp.node_instances[0].package_name #=> String
1297
- # resp.node_instances[0].package_version #=> String
1298
1323
  # resp.node_instances[0].package_patch_version #=> String
1299
- # resp.node_instances[0].node_name #=> String
1300
- # resp.node_instances[0].current_status #=> String, one of "RUNNING", "ERROR", "NOT_AVAILABLE"
1301
- # resp.next_token #=> String
1324
+ # resp.node_instances[0].package_version #=> String
1302
1325
  #
1303
1326
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/ListApplicationInstanceNodeInstances AWS API Documentation
1304
1327
  #
@@ -1314,9 +1337,6 @@ module Aws::Panorama
1314
1337
  # @option params [String] :device_id
1315
1338
  # The application instances' device ID.
1316
1339
  #
1317
- # @option params [String] :status_filter
1318
- # Only include instances with a specific status.
1319
- #
1320
1340
  # @option params [Integer] :max_results
1321
1341
  # The maximum number of application instances to return in one page of
1322
1342
  # results.
@@ -1325,6 +1345,9 @@ module Aws::Panorama
1325
1345
  # Specify the pagination token from a previous request to retrieve the
1326
1346
  # next page of results.
1327
1347
  #
1348
+ # @option params [String] :status_filter
1349
+ # Only include instances with a specific status.
1350
+ #
1328
1351
  # @return [Types::ListApplicationInstancesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1329
1352
  #
1330
1353
  # * {Types::ListApplicationInstancesResponse#application_instances #application_instances} => Array&lt;Types::ApplicationInstance&gt;
@@ -1336,24 +1359,24 @@ module Aws::Panorama
1336
1359
  #
1337
1360
  # resp = client.list_application_instances({
1338
1361
  # device_id: "DeviceId",
1339
- # status_filter: "DEPLOYMENT_SUCCEEDED", # accepts DEPLOYMENT_SUCCEEDED, DEPLOYMENT_ERROR, REMOVAL_SUCCEEDED, REMOVAL_FAILED, PROCESSING_DEPLOYMENT, PROCESSING_REMOVAL
1340
1362
  # max_results: 1,
1341
1363
  # next_token: "NextToken",
1364
+ # status_filter: "DEPLOYMENT_SUCCEEDED", # accepts DEPLOYMENT_SUCCEEDED, DEPLOYMENT_ERROR, REMOVAL_SUCCEEDED, REMOVAL_FAILED, PROCESSING_DEPLOYMENT, PROCESSING_REMOVAL, DEPLOYMENT_FAILED
1342
1365
  # })
1343
1366
  #
1344
1367
  # @example Response structure
1345
1368
  #
1346
1369
  # resp.application_instances #=> Array
1347
- # resp.application_instances[0].name #=> String
1348
1370
  # resp.application_instances[0].application_instance_id #=> String
1371
+ # resp.application_instances[0].arn #=> String
1372
+ # resp.application_instances[0].created_time #=> Time
1349
1373
  # resp.application_instances[0].default_runtime_context_device #=> String
1350
1374
  # resp.application_instances[0].default_runtime_context_device_name #=> String
1351
1375
  # resp.application_instances[0].description #=> String
1352
- # resp.application_instances[0].status #=> String, one of "DEPLOYMENT_PENDING", "DEPLOYMENT_REQUESTED", "DEPLOYMENT_IN_PROGRESS", "DEPLOYMENT_ERROR", "DEPLOYMENT_SUCCEEDED", "REMOVAL_PENDING", "REMOVAL_REQUESTED", "REMOVAL_IN_PROGRESS", "REMOVAL_FAILED", "REMOVAL_SUCCEEDED"
1353
1376
  # resp.application_instances[0].health_status #=> String, one of "RUNNING", "ERROR", "NOT_AVAILABLE"
1377
+ # resp.application_instances[0].name #=> String
1378
+ # resp.application_instances[0].status #=> String, one of "DEPLOYMENT_PENDING", "DEPLOYMENT_REQUESTED", "DEPLOYMENT_IN_PROGRESS", "DEPLOYMENT_ERROR", "DEPLOYMENT_SUCCEEDED", "REMOVAL_PENDING", "REMOVAL_REQUESTED", "REMOVAL_IN_PROGRESS", "REMOVAL_FAILED", "REMOVAL_SUCCEEDED", "DEPLOYMENT_FAILED"
1354
1379
  # resp.application_instances[0].status_description #=> String
1355
- # resp.application_instances[0].created_time #=> Time
1356
- # resp.application_instances[0].arn #=> String
1357
1380
  # resp.application_instances[0].tags #=> Hash
1358
1381
  # resp.application_instances[0].tags["TagKey"] #=> String
1359
1382
  # resp.next_token #=> String
@@ -1369,12 +1392,26 @@ module Aws::Panorama
1369
1392
 
1370
1393
  # Returns a list of devices.
1371
1394
  #
1395
+ # @option params [String] :device_aggregated_status_filter
1396
+ # Filter based on a device's status.
1397
+ #
1398
+ # @option params [Integer] :max_results
1399
+ # The maximum number of devices to return in one page of results.
1400
+ #
1401
+ # @option params [String] :name_filter
1402
+ # Filter based on device's name. Prefixes supported.
1403
+ #
1372
1404
  # @option params [String] :next_token
1373
1405
  # Specify the pagination token from a previous request to retrieve the
1374
1406
  # next page of results.
1375
1407
  #
1376
- # @option params [Integer] :max_results
1377
- # The maximum number of devices to return in one page of results.
1408
+ # @option params [String] :sort_by
1409
+ # The target column to be sorted on. Default column sort is
1410
+ # CREATED\_TIME.
1411
+ #
1412
+ # @option params [String] :sort_order
1413
+ # The sorting order for the returned list. SortOrder is DESCENDING by
1414
+ # default based on CREATED\_TIME. Otherwise, SortOrder is ASCENDING.
1378
1415
  #
1379
1416
  # @return [Types::ListDevicesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1380
1417
  #
@@ -1386,19 +1423,32 @@ module Aws::Panorama
1386
1423
  # @example Request syntax with placeholder values
1387
1424
  #
1388
1425
  # resp = client.list_devices({
1389
- # next_token: "NextToken",
1426
+ # device_aggregated_status_filter: "ERROR", # accepts ERROR, AWAITING_PROVISIONING, PENDING, FAILED, DELETING, ONLINE, OFFLINE, LEASE_EXPIRED, UPDATE_NEEDED
1390
1427
  # max_results: 1,
1428
+ # name_filter: "NameFilter",
1429
+ # next_token: "NextToken",
1430
+ # sort_by: "DEVICE_ID", # accepts DEVICE_ID, CREATED_TIME, NAME, DEVICE_AGGREGATED_STATUS
1431
+ # sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
1391
1432
  # })
1392
1433
  #
1393
1434
  # @example Response structure
1394
1435
  #
1395
1436
  # resp.devices #=> Array
1396
- # resp.devices[0].device_id #=> String
1397
- # resp.devices[0].name #=> String
1437
+ # resp.devices[0].brand #=> String, one of "AWS_PANORAMA", "LENOVO"
1398
1438
  # resp.devices[0].created_time #=> Time
1399
- # resp.devices[0].provisioning_status #=> String, one of "AWAITING_PROVISIONING", "PENDING", "SUCCEEDED", "FAILED", "ERROR", "DELETING"
1439
+ # resp.devices[0].current_software #=> String
1440
+ # resp.devices[0].description #=> String
1441
+ # resp.devices[0].device_aggregated_status #=> String, one of "ERROR", "AWAITING_PROVISIONING", "PENDING", "FAILED", "DELETING", "ONLINE", "OFFLINE", "LEASE_EXPIRED", "UPDATE_NEEDED"
1442
+ # resp.devices[0].device_id #=> String
1400
1443
  # resp.devices[0].last_updated_time #=> Time
1444
+ # resp.devices[0].latest_device_job.image_version #=> String
1445
+ # resp.devices[0].latest_device_job.status #=> String, one of "PENDING", "IN_PROGRESS", "VERIFYING", "REBOOTING", "DOWNLOADING", "COMPLETED", "FAILED"
1401
1446
  # resp.devices[0].lease_expiration_time #=> Time
1447
+ # resp.devices[0].name #=> String
1448
+ # resp.devices[0].provisioning_status #=> String, one of "AWAITING_PROVISIONING", "PENDING", "SUCCEEDED", "FAILED", "ERROR", "DELETING"
1449
+ # resp.devices[0].tags #=> Hash
1450
+ # resp.devices[0].tags["TagKey"] #=> String
1451
+ # resp.devices[0].type #=> String, one of "PANORAMA_APPLIANCE_DEVELOPER_KIT", "PANORAMA_APPLIANCE"
1402
1452
  # resp.next_token #=> String
1403
1453
  #
1404
1454
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/ListDevices AWS API Documentation
@@ -1415,13 +1465,13 @@ module Aws::Panorama
1415
1465
  # @option params [String] :device_id
1416
1466
  # Filter results by the job's target device ID.
1417
1467
  #
1468
+ # @option params [Integer] :max_results
1469
+ # The maximum number of device jobs to return in one page of results.
1470
+ #
1418
1471
  # @option params [String] :next_token
1419
1472
  # Specify the pagination token from a previous request to retrieve the
1420
1473
  # next page of results.
1421
1474
  #
1422
- # @option params [Integer] :max_results
1423
- # The maximum number of device jobs to return in one page of results.
1424
- #
1425
1475
  # @return [Types::ListDevicesJobsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1426
1476
  #
1427
1477
  # * {Types::ListDevicesJobsResponse#device_jobs #device_jobs} => Array&lt;Types::DeviceJob&gt;
@@ -1433,17 +1483,17 @@ module Aws::Panorama
1433
1483
  #
1434
1484
  # resp = client.list_devices_jobs({
1435
1485
  # device_id: "DeviceId",
1436
- # next_token: "NextToken",
1437
1486
  # max_results: 1,
1487
+ # next_token: "NextToken",
1438
1488
  # })
1439
1489
  #
1440
1490
  # @example Response structure
1441
1491
  #
1442
1492
  # resp.device_jobs #=> Array
1443
- # resp.device_jobs[0].device_name #=> String
1493
+ # resp.device_jobs[0].created_time #=> Time
1444
1494
  # resp.device_jobs[0].device_id #=> String
1495
+ # resp.device_jobs[0].device_name #=> String
1445
1496
  # resp.device_jobs[0].job_id #=> String
1446
- # resp.device_jobs[0].created_time #=> Time
1447
1497
  # resp.next_token #=> String
1448
1498
  #
1449
1499
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/ListDevicesJobs AWS API Documentation
@@ -1457,38 +1507,38 @@ module Aws::Panorama
1457
1507
 
1458
1508
  # Returns a list of camera stream node jobs.
1459
1509
  #
1460
- # @option params [String] :next_token
1461
- # Specify the pagination token from a previous request to retrieve the
1462
- # next page of results.
1463
- #
1464
1510
  # @option params [Integer] :max_results
1465
1511
  # The maximum number of node from template jobs to return in one page of
1466
1512
  # results.
1467
1513
  #
1514
+ # @option params [String] :next_token
1515
+ # Specify the pagination token from a previous request to retrieve the
1516
+ # next page of results.
1517
+ #
1468
1518
  # @return [Types::ListNodeFromTemplateJobsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1469
1519
  #
1470
- # * {Types::ListNodeFromTemplateJobsResponse#node_from_template_jobs #node_from_template_jobs} => Array&lt;Types::NodeFromTemplateJob&gt;
1471
1520
  # * {Types::ListNodeFromTemplateJobsResponse#next_token #next_token} => String
1521
+ # * {Types::ListNodeFromTemplateJobsResponse#node_from_template_jobs #node_from_template_jobs} => Array&lt;Types::NodeFromTemplateJob&gt;
1472
1522
  #
1473
1523
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1474
1524
  #
1475
1525
  # @example Request syntax with placeholder values
1476
1526
  #
1477
1527
  # resp = client.list_node_from_template_jobs({
1478
- # next_token: "NextToken",
1479
1528
  # max_results: 1,
1529
+ # next_token: "NextToken",
1480
1530
  # })
1481
1531
  #
1482
1532
  # @example Response structure
1483
1533
  #
1534
+ # resp.next_token #=> String
1484
1535
  # resp.node_from_template_jobs #=> Array
1536
+ # resp.node_from_template_jobs[0].created_time #=> Time
1485
1537
  # resp.node_from_template_jobs[0].job_id #=> String
1486
- # resp.node_from_template_jobs[0].template_type #=> String, one of "RTSP_CAMERA_STREAM"
1538
+ # resp.node_from_template_jobs[0].node_name #=> String
1487
1539
  # resp.node_from_template_jobs[0].status #=> String, one of "PENDING", "SUCCEEDED", "FAILED"
1488
1540
  # resp.node_from_template_jobs[0].status_message #=> String
1489
- # resp.node_from_template_jobs[0].created_time #=> Time
1490
- # resp.node_from_template_jobs[0].node_name #=> String
1491
- # resp.next_token #=> String
1541
+ # resp.node_from_template_jobs[0].template_type #=> String, one of "RTSP_CAMERA_STREAM"
1492
1542
  #
1493
1543
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/ListNodeFromTemplateJobs AWS API Documentation
1494
1544
  #
@@ -1504,6 +1554,13 @@ module Aws::Panorama
1504
1554
  # @option params [String] :category
1505
1555
  # Search for nodes by category.
1506
1556
  #
1557
+ # @option params [Integer] :max_results
1558
+ # The maximum number of nodes to return in one page of results.
1559
+ #
1560
+ # @option params [String] :next_token
1561
+ # Specify the pagination token from a previous request to retrieve the
1562
+ # next page of results.
1563
+ #
1507
1564
  # @option params [String] :owner_account
1508
1565
  # Search for nodes by the account ID of the nodes' owner.
1509
1566
  #
@@ -1516,17 +1573,10 @@ module Aws::Panorama
1516
1573
  # @option params [String] :patch_version
1517
1574
  # Search for nodes by patch version.
1518
1575
  #
1519
- # @option params [String] :next_token
1520
- # Specify the pagination token from a previous request to retrieve the
1521
- # next page of results.
1522
- #
1523
- # @option params [Integer] :max_results
1524
- # The maximum number of nodes to return in one page of results.
1525
- #
1526
1576
  # @return [Types::ListNodesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1527
1577
  #
1528
- # * {Types::ListNodesResponse#nodes #nodes} => Array&lt;Types::Node&gt;
1529
1578
  # * {Types::ListNodesResponse#next_token #next_token} => String
1579
+ # * {Types::ListNodesResponse#nodes #nodes} => Array&lt;Types::Node&gt;
1530
1580
  #
1531
1581
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1532
1582
  #
@@ -1534,29 +1584,29 @@ module Aws::Panorama
1534
1584
  #
1535
1585
  # resp = client.list_nodes({
1536
1586
  # category: "BUSINESS_LOGIC", # accepts BUSINESS_LOGIC, ML_MODEL, MEDIA_SOURCE, MEDIA_SINK
1587
+ # max_results: 1,
1588
+ # next_token: "Token",
1537
1589
  # owner_account: "PackageOwnerAccount",
1538
1590
  # package_name: "NodePackageName",
1539
1591
  # package_version: "NodePackageVersion",
1540
1592
  # patch_version: "NodePackagePatchVersion",
1541
- # next_token: "Token",
1542
- # max_results: 1,
1543
1593
  # })
1544
1594
  #
1545
1595
  # @example Response structure
1546
1596
  #
1597
+ # resp.next_token #=> String
1547
1598
  # resp.nodes #=> Array
1548
- # resp.nodes[0].node_id #=> String
1549
- # resp.nodes[0].name #=> String
1550
1599
  # resp.nodes[0].category #=> String, one of "BUSINESS_LOGIC", "ML_MODEL", "MEDIA_SOURCE", "MEDIA_SINK"
1600
+ # resp.nodes[0].created_time #=> Time
1601
+ # resp.nodes[0].description #=> String
1602
+ # resp.nodes[0].name #=> String
1603
+ # resp.nodes[0].node_id #=> String
1551
1604
  # resp.nodes[0].owner_account #=> String
1552
- # resp.nodes[0].package_name #=> String
1553
- # resp.nodes[0].package_id #=> String
1554
1605
  # resp.nodes[0].package_arn #=> String
1606
+ # resp.nodes[0].package_id #=> String
1607
+ # resp.nodes[0].package_name #=> String
1555
1608
  # resp.nodes[0].package_version #=> String
1556
1609
  # resp.nodes[0].patch_version #=> String
1557
- # resp.nodes[0].description #=> String
1558
- # resp.nodes[0].created_time #=> Time
1559
- # resp.next_token #=> String
1560
1610
  #
1561
1611
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/ListNodes AWS API Documentation
1562
1612
  #
@@ -1569,38 +1619,38 @@ module Aws::Panorama
1569
1619
 
1570
1620
  # Returns a list of package import jobs.
1571
1621
  #
1572
- # @option params [String] :next_token
1573
- # Specify the pagination token from a previous request to retrieve the
1574
- # next page of results.
1575
- #
1576
1622
  # @option params [Integer] :max_results
1577
1623
  # The maximum number of package import jobs to return in one page of
1578
1624
  # results.
1579
1625
  #
1626
+ # @option params [String] :next_token
1627
+ # Specify the pagination token from a previous request to retrieve the
1628
+ # next page of results.
1629
+ #
1580
1630
  # @return [Types::ListPackageImportJobsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1581
1631
  #
1582
- # * {Types::ListPackageImportJobsResponse#package_import_jobs #package_import_jobs} => Array&lt;Types::PackageImportJob&gt;
1583
1632
  # * {Types::ListPackageImportJobsResponse#next_token #next_token} => String
1633
+ # * {Types::ListPackageImportJobsResponse#package_import_jobs #package_import_jobs} => Array&lt;Types::PackageImportJob&gt;
1584
1634
  #
1585
1635
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1586
1636
  #
1587
1637
  # @example Request syntax with placeholder values
1588
1638
  #
1589
1639
  # resp = client.list_package_import_jobs({
1590
- # next_token: "NextToken",
1591
1640
  # max_results: 1,
1641
+ # next_token: "NextToken",
1592
1642
  # })
1593
1643
  #
1594
1644
  # @example Response structure
1595
1645
  #
1646
+ # resp.next_token #=> String
1596
1647
  # resp.package_import_jobs #=> Array
1648
+ # resp.package_import_jobs[0].created_time #=> Time
1597
1649
  # resp.package_import_jobs[0].job_id #=> String
1598
- # resp.package_import_jobs[0].job_type #=> String, one of "NODE_PACKAGE_VERSION"
1650
+ # resp.package_import_jobs[0].job_type #=> String, one of "NODE_PACKAGE_VERSION", "MARKETPLACE_NODE_PACKAGE_VERSION"
1651
+ # resp.package_import_jobs[0].last_updated_time #=> Time
1599
1652
  # resp.package_import_jobs[0].status #=> String, one of "PENDING", "SUCCEEDED", "FAILED"
1600
1653
  # resp.package_import_jobs[0].status_message #=> String
1601
- # resp.package_import_jobs[0].created_time #=> Time
1602
- # resp.package_import_jobs[0].last_updated_time #=> Time
1603
- # resp.next_token #=> String
1604
1654
  #
1605
1655
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/ListPackageImportJobs AWS API Documentation
1606
1656
  #
@@ -1622,8 +1672,8 @@ module Aws::Panorama
1622
1672
  #
1623
1673
  # @return [Types::ListPackagesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1624
1674
  #
1625
- # * {Types::ListPackagesResponse#packages #packages} => Array&lt;Types::PackageListItem&gt;
1626
1675
  # * {Types::ListPackagesResponse#next_token #next_token} => String
1676
+ # * {Types::ListPackagesResponse#packages #packages} => Array&lt;Types::PackageListItem&gt;
1627
1677
  #
1628
1678
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1629
1679
  #
@@ -1636,14 +1686,14 @@ module Aws::Panorama
1636
1686
  #
1637
1687
  # @example Response structure
1638
1688
  #
1689
+ # resp.next_token #=> String
1639
1690
  # resp.packages #=> Array
1640
- # resp.packages[0].package_id #=> String
1641
- # resp.packages[0].package_name #=> String
1642
1691
  # resp.packages[0].arn #=> String
1643
1692
  # resp.packages[0].created_time #=> Time
1693
+ # resp.packages[0].package_id #=> String
1694
+ # resp.packages[0].package_name #=> String
1644
1695
  # resp.packages[0].tags #=> Hash
1645
1696
  # resp.packages[0].tags["TagKey"] #=> String
1646
- # resp.next_token #=> String
1647
1697
  #
1648
1698
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/ListPackages AWS API Documentation
1649
1699
  #
@@ -1685,67 +1735,71 @@ module Aws::Panorama
1685
1735
 
1686
1736
  # Creates a device and returns a configuration archive. The
1687
1737
  # configuration archive is a ZIP file that contains a provisioning
1688
- # certificate that is valid for 5 minutes. Transfer the configuration
1689
- # archive to the device with the included USB storage device within 5
1690
- # minutes.
1691
- #
1692
- # @option params [required, String] :name
1693
- # A name for the device.
1738
+ # certificate that is valid for 5 minutes. Name the configuration
1739
+ # archive `certificates-omni_device-name.zip` and transfer it to the
1740
+ # device within 5 minutes. Use the included USB storage device and
1741
+ # connect it to the USB 3.0 port next to the HDMI output.
1694
1742
  #
1695
1743
  # @option params [String] :description
1696
1744
  # A description for the device.
1697
1745
  #
1698
- # @option params [Hash<String,String>] :tags
1699
- # Tags for the device.
1746
+ # @option params [required, String] :name
1747
+ # A name for the device.
1700
1748
  #
1701
1749
  # @option params [Types::NetworkPayload] :networking_configuration
1702
1750
  # A networking configuration for the device.
1703
1751
  #
1752
+ # @option params [Hash<String,String>] :tags
1753
+ # Tags for the device.
1754
+ #
1704
1755
  # @return [Types::ProvisionDeviceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1705
1756
  #
1706
- # * {Types::ProvisionDeviceResponse#device_id #device_id} => String
1707
1757
  # * {Types::ProvisionDeviceResponse#arn #arn} => String
1708
- # * {Types::ProvisionDeviceResponse#status #status} => String
1709
1758
  # * {Types::ProvisionDeviceResponse#certificates #certificates} => String
1759
+ # * {Types::ProvisionDeviceResponse#device_id #device_id} => String
1710
1760
  # * {Types::ProvisionDeviceResponse#iot_thing_name #iot_thing_name} => String
1761
+ # * {Types::ProvisionDeviceResponse#status #status} => String
1711
1762
  #
1712
1763
  # @example Request syntax with placeholder values
1713
1764
  #
1714
1765
  # resp = client.provision_device({
1715
- # name: "DeviceName", # required
1716
1766
  # description: "Description",
1717
- # tags: {
1718
- # "TagKey" => "TagValue",
1719
- # },
1767
+ # name: "DeviceName", # required
1720
1768
  # networking_configuration: {
1721
1769
  # ethernet_0: {
1722
1770
  # connection_type: "STATIC_IP", # required, accepts STATIC_IP, DHCP
1723
1771
  # static_ip_connection_info: {
1772
+ # default_gateway: "DefaultGateway", # required
1773
+ # dns: ["Dns"], # required
1724
1774
  # ip_address: "IpAddress", # required
1725
1775
  # mask: "Mask", # required
1726
- # dns: ["Dns"], # required
1727
- # default_gateway: "DefaultGateway", # required
1728
1776
  # },
1729
1777
  # },
1730
1778
  # ethernet_1: {
1731
1779
  # connection_type: "STATIC_IP", # required, accepts STATIC_IP, DHCP
1732
1780
  # static_ip_connection_info: {
1781
+ # default_gateway: "DefaultGateway", # required
1782
+ # dns: ["Dns"], # required
1733
1783
  # ip_address: "IpAddress", # required
1734
1784
  # mask: "Mask", # required
1735
- # dns: ["Dns"], # required
1736
- # default_gateway: "DefaultGateway", # required
1737
1785
  # },
1738
1786
  # },
1787
+ # ntp: {
1788
+ # ntp_servers: ["IpAddressOrServerName"], # required
1789
+ # },
1790
+ # },
1791
+ # tags: {
1792
+ # "TagKey" => "TagValue",
1739
1793
  # },
1740
1794
  # })
1741
1795
  #
1742
1796
  # @example Response structure
1743
1797
  #
1744
- # resp.device_id #=> String
1745
1798
  # resp.arn #=> String
1746
- # resp.status #=> String, one of "AWAITING_PROVISIONING", "PENDING", "SUCCEEDED", "FAILED", "ERROR", "DELETING"
1747
1799
  # resp.certificates #=> String
1800
+ # resp.device_id #=> String
1748
1801
  # resp.iot_thing_name #=> String
1802
+ # resp.status #=> String, one of "AWAITING_PROVISIONING", "PENDING", "SUCCEEDED", "FAILED", "ERROR", "DELETING"
1749
1803
  #
1750
1804
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/ProvisionDevice AWS API Documentation
1751
1805
  #
@@ -1758,6 +1812,9 @@ module Aws::Panorama
1758
1812
 
1759
1813
  # Registers a package version.
1760
1814
  #
1815
+ # @option params [Boolean] :mark_latest
1816
+ # Whether to mark the new version as the latest version.
1817
+ #
1761
1818
  # @option params [String] :owner_account
1762
1819
  # An owner account.
1763
1820
  #
@@ -1770,19 +1827,16 @@ module Aws::Panorama
1770
1827
  # @option params [required, String] :patch_version
1771
1828
  # A patch version.
1772
1829
  #
1773
- # @option params [Boolean] :mark_latest
1774
- # Whether to mark the new version as the latest version.
1775
- #
1776
1830
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1777
1831
  #
1778
1832
  # @example Request syntax with placeholder values
1779
1833
  #
1780
1834
  # resp = client.register_package_version({
1835
+ # mark_latest: false,
1781
1836
  # owner_account: "PackageOwnerAccount",
1782
1837
  # package_id: "NodePackageId", # required
1783
1838
  # package_version: "NodePackageVersion", # required
1784
1839
  # patch_version: "NodePackagePatchVersion", # required
1785
- # mark_latest: false,
1786
1840
  # })
1787
1841
  #
1788
1842
  # @see http://docs.aws.amazon.com/goto/WebAPI/panorama-2019-07-24/RegisterPackageVersion AWS API Documentation
@@ -1872,12 +1926,12 @@ module Aws::Panorama
1872
1926
 
1873
1927
  # Updates a device's metadata.
1874
1928
  #
1875
- # @option params [required, String] :device_id
1876
- # The device's ID.
1877
- #
1878
1929
  # @option params [String] :description
1879
1930
  # A description for the device.
1880
1931
  #
1932
+ # @option params [required, String] :device_id
1933
+ # The device's ID.
1934
+ #
1881
1935
  # @return [Types::UpdateDeviceMetadataResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1882
1936
  #
1883
1937
  # * {Types::UpdateDeviceMetadataResponse#device_id #device_id} => String
@@ -1885,8 +1939,8 @@ module Aws::Panorama
1885
1939
  # @example Request syntax with placeholder values
1886
1940
  #
1887
1941
  # resp = client.update_device_metadata({
1888
- # device_id: "DeviceId", # required
1889
1942
  # description: "Description",
1943
+ # device_id: "DeviceId", # required
1890
1944
  # })
1891
1945
  #
1892
1946
  # @example Response structure
@@ -1915,7 +1969,7 @@ module Aws::Panorama
1915
1969
  params: params,
1916
1970
  config: config)
1917
1971
  context[:gem_name] = 'aws-sdk-panorama'
1918
- context[:gem_version] = '1.5.0'
1972
+ context[:gem_version] = '1.8.0'
1919
1973
  Seahorse::Client::Request.new(handlers, context)
1920
1974
  end
1921
1975