aws-sdk-panorama 1.3.0 → 1.6.0

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