aws-sdk-panorama 1.5.0 → 1.6.0

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