aws-sdk-panorama 1.4.0 → 1.7.0

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