aws-sdk-applicationdiscoveryservice 1.22.0 → 1.23.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-applicationdiscoveryservice.rb +1 -1
- data/lib/aws-sdk-applicationdiscoveryservice/client.rb +2 -2
- data/lib/aws-sdk-applicationdiscoveryservice/client_api.rb +32 -0
- data/lib/aws-sdk-applicationdiscoveryservice/errors.rb +16 -0
- data/lib/aws-sdk-applicationdiscoveryservice/types.rb +11 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d20c1a2c78928458cc383e7d4b1ea99fbc430cd0
|
4
|
+
data.tar.gz: b3fc78f6ff69552da4eac59a22c8f8a74cf192a3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8f5f680f0f22253fa1e91a1ea54c678a120c98e41338e215cf59f6302aa42008a9918f56f46f1773f99882b147baeb4133a9427c1160fa4d471b7c532b68ca53
|
7
|
+
data.tar.gz: 4572bd9187d66cad5b2e345a89a41baae53180188359edd0a9c5da6d0dd6355b65614501b38aa8e3b165cfb3f6d0d7011a824345d91700e48fbf653fbb340392
|
@@ -628,7 +628,7 @@ module Aws::ApplicationDiscoveryService
|
|
628
628
|
# [1]: https://docs.aws.amazon.com/application-discovery/latest/APIReference/API_DescribeExportTasks.html
|
629
629
|
#
|
630
630
|
# @option params [Array<String>] :export_ids
|
631
|
-
# A list of continuous export
|
631
|
+
# A list of continuous export IDs to search for.
|
632
632
|
#
|
633
633
|
# @option params [Integer] :max_results
|
634
634
|
# A number between 1 and 100 specifying the maximum number of continuous
|
@@ -1417,7 +1417,7 @@ module Aws::ApplicationDiscoveryService
|
|
1417
1417
|
params: params,
|
1418
1418
|
config: config)
|
1419
1419
|
context[:gem_name] = 'aws-sdk-applicationdiscoveryservice'
|
1420
|
-
context[:gem_version] = '1.
|
1420
|
+
context[:gem_version] = '1.23.0'
|
1421
1421
|
Seahorse::Client::Request.new(handlers, context)
|
1422
1422
|
end
|
1423
1423
|
|
@@ -100,6 +100,7 @@ module Aws::ApplicationDiscoveryService
|
|
100
100
|
Filters = Shapes::ListShape.new(name: 'Filters')
|
101
101
|
GetDiscoverySummaryRequest = Shapes::StructureShape.new(name: 'GetDiscoverySummaryRequest')
|
102
102
|
GetDiscoverySummaryResponse = Shapes::StructureShape.new(name: 'GetDiscoverySummaryResponse')
|
103
|
+
HomeRegionNotSetException = Shapes::StructureShape.new(name: 'HomeRegionNotSetException')
|
103
104
|
ImportStatus = Shapes::StringShape.new(name: 'ImportStatus')
|
104
105
|
ImportTask = Shapes::StructureShape.new(name: 'ImportTask')
|
105
106
|
ImportTaskFilter = Shapes::StructureShape.new(name: 'ImportTaskFilter')
|
@@ -405,6 +406,9 @@ module Aws::ApplicationDiscoveryService
|
|
405
406
|
GetDiscoverySummaryResponse.add_member(:connector_summary, Shapes::ShapeRef.new(shape: CustomerConnectorInfo, location_name: "connectorSummary"))
|
406
407
|
GetDiscoverySummaryResponse.struct_class = Types::GetDiscoverySummaryResponse
|
407
408
|
|
409
|
+
HomeRegionNotSetException.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "message"))
|
410
|
+
HomeRegionNotSetException.struct_class = Types::HomeRegionNotSetException
|
411
|
+
|
408
412
|
ImportTask.add_member(:import_task_id, Shapes::ShapeRef.new(shape: ImportTaskIdentifier, location_name: "importTaskId"))
|
409
413
|
ImportTask.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "clientRequestToken"))
|
410
414
|
ImportTask.add_member(:name, Shapes::ShapeRef.new(shape: ImportTaskName, location_name: "name"))
|
@@ -581,6 +585,7 @@ module Aws::ApplicationDiscoveryService
|
|
581
585
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
582
586
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
583
587
|
o.errors << Shapes::ShapeRef.new(shape: ServerInternalErrorException)
|
588
|
+
o.errors << Shapes::ShapeRef.new(shape: HomeRegionNotSetException)
|
584
589
|
end)
|
585
590
|
|
586
591
|
api.add_operation(:batch_delete_import_data, Seahorse::Model::Operation.new.tap do |o|
|
@@ -590,8 +595,10 @@ module Aws::ApplicationDiscoveryService
|
|
590
595
|
o.input = Shapes::ShapeRef.new(shape: BatchDeleteImportDataRequest)
|
591
596
|
o.output = Shapes::ShapeRef.new(shape: BatchDeleteImportDataResponse)
|
592
597
|
o.errors << Shapes::ShapeRef.new(shape: AuthorizationErrorException)
|
598
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
593
599
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
594
600
|
o.errors << Shapes::ShapeRef.new(shape: ServerInternalErrorException)
|
601
|
+
o.errors << Shapes::ShapeRef.new(shape: HomeRegionNotSetException)
|
595
602
|
end)
|
596
603
|
|
597
604
|
api.add_operation(:create_application, Seahorse::Model::Operation.new.tap do |o|
|
@@ -604,6 +611,7 @@ module Aws::ApplicationDiscoveryService
|
|
604
611
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
605
612
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
606
613
|
o.errors << Shapes::ShapeRef.new(shape: ServerInternalErrorException)
|
614
|
+
o.errors << Shapes::ShapeRef.new(shape: HomeRegionNotSetException)
|
607
615
|
end)
|
608
616
|
|
609
617
|
api.add_operation(:create_tags, Seahorse::Model::Operation.new.tap do |o|
|
@@ -617,6 +625,7 @@ module Aws::ApplicationDiscoveryService
|
|
617
625
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
618
626
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
619
627
|
o.errors << Shapes::ShapeRef.new(shape: ServerInternalErrorException)
|
628
|
+
o.errors << Shapes::ShapeRef.new(shape: HomeRegionNotSetException)
|
620
629
|
end)
|
621
630
|
|
622
631
|
api.add_operation(:delete_applications, Seahorse::Model::Operation.new.tap do |o|
|
@@ -629,6 +638,7 @@ module Aws::ApplicationDiscoveryService
|
|
629
638
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
630
639
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
631
640
|
o.errors << Shapes::ShapeRef.new(shape: ServerInternalErrorException)
|
641
|
+
o.errors << Shapes::ShapeRef.new(shape: HomeRegionNotSetException)
|
632
642
|
end)
|
633
643
|
|
634
644
|
api.add_operation(:delete_tags, Seahorse::Model::Operation.new.tap do |o|
|
@@ -642,6 +652,7 @@ module Aws::ApplicationDiscoveryService
|
|
642
652
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
643
653
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
644
654
|
o.errors << Shapes::ShapeRef.new(shape: ServerInternalErrorException)
|
655
|
+
o.errors << Shapes::ShapeRef.new(shape: HomeRegionNotSetException)
|
645
656
|
end)
|
646
657
|
|
647
658
|
api.add_operation(:describe_agents, Seahorse::Model::Operation.new.tap do |o|
|
@@ -654,6 +665,7 @@ module Aws::ApplicationDiscoveryService
|
|
654
665
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
655
666
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
656
667
|
o.errors << Shapes::ShapeRef.new(shape: ServerInternalErrorException)
|
668
|
+
o.errors << Shapes::ShapeRef.new(shape: HomeRegionNotSetException)
|
657
669
|
end)
|
658
670
|
|
659
671
|
api.add_operation(:describe_configurations, Seahorse::Model::Operation.new.tap do |o|
|
@@ -666,6 +678,7 @@ module Aws::ApplicationDiscoveryService
|
|
666
678
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
667
679
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
668
680
|
o.errors << Shapes::ShapeRef.new(shape: ServerInternalErrorException)
|
681
|
+
o.errors << Shapes::ShapeRef.new(shape: HomeRegionNotSetException)
|
669
682
|
end)
|
670
683
|
|
671
684
|
api.add_operation(:describe_continuous_exports, Seahorse::Model::Operation.new.tap do |o|
|
@@ -680,6 +693,7 @@ module Aws::ApplicationDiscoveryService
|
|
680
693
|
o.errors << Shapes::ShapeRef.new(shape: ServerInternalErrorException)
|
681
694
|
o.errors << Shapes::ShapeRef.new(shape: OperationNotPermittedException)
|
682
695
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
696
|
+
o.errors << Shapes::ShapeRef.new(shape: HomeRegionNotSetException)
|
683
697
|
o[:pager] = Aws::Pager.new(
|
684
698
|
limit_key: "max_results",
|
685
699
|
tokens: {
|
@@ -700,6 +714,7 @@ module Aws::ApplicationDiscoveryService
|
|
700
714
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
701
715
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
702
716
|
o.errors << Shapes::ShapeRef.new(shape: ServerInternalErrorException)
|
717
|
+
o.errors << Shapes::ShapeRef.new(shape: HomeRegionNotSetException)
|
703
718
|
end)
|
704
719
|
|
705
720
|
api.add_operation(:describe_export_tasks, Seahorse::Model::Operation.new.tap do |o|
|
@@ -712,6 +727,7 @@ module Aws::ApplicationDiscoveryService
|
|
712
727
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
713
728
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
714
729
|
o.errors << Shapes::ShapeRef.new(shape: ServerInternalErrorException)
|
730
|
+
o.errors << Shapes::ShapeRef.new(shape: HomeRegionNotSetException)
|
715
731
|
end)
|
716
732
|
|
717
733
|
api.add_operation(:describe_import_tasks, Seahorse::Model::Operation.new.tap do |o|
|
@@ -721,8 +737,10 @@ module Aws::ApplicationDiscoveryService
|
|
721
737
|
o.input = Shapes::ShapeRef.new(shape: DescribeImportTasksRequest)
|
722
738
|
o.output = Shapes::ShapeRef.new(shape: DescribeImportTasksResponse)
|
723
739
|
o.errors << Shapes::ShapeRef.new(shape: AuthorizationErrorException)
|
740
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
724
741
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
725
742
|
o.errors << Shapes::ShapeRef.new(shape: ServerInternalErrorException)
|
743
|
+
o.errors << Shapes::ShapeRef.new(shape: HomeRegionNotSetException)
|
726
744
|
o[:pager] = Aws::Pager.new(
|
727
745
|
limit_key: "max_results",
|
728
746
|
tokens: {
|
@@ -742,6 +760,7 @@ module Aws::ApplicationDiscoveryService
|
|
742
760
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
743
761
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
744
762
|
o.errors << Shapes::ShapeRef.new(shape: ServerInternalErrorException)
|
763
|
+
o.errors << Shapes::ShapeRef.new(shape: HomeRegionNotSetException)
|
745
764
|
end)
|
746
765
|
|
747
766
|
api.add_operation(:disassociate_configuration_items_from_application, Seahorse::Model::Operation.new.tap do |o|
|
@@ -754,6 +773,7 @@ module Aws::ApplicationDiscoveryService
|
|
754
773
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
755
774
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
756
775
|
o.errors << Shapes::ShapeRef.new(shape: ServerInternalErrorException)
|
776
|
+
o.errors << Shapes::ShapeRef.new(shape: HomeRegionNotSetException)
|
757
777
|
end)
|
758
778
|
|
759
779
|
api.add_operation(:export_configurations, Seahorse::Model::Operation.new.tap do |o|
|
@@ -768,6 +788,7 @@ module Aws::ApplicationDiscoveryService
|
|
768
788
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
769
789
|
o.errors << Shapes::ShapeRef.new(shape: ServerInternalErrorException)
|
770
790
|
o.errors << Shapes::ShapeRef.new(shape: OperationNotPermittedException)
|
791
|
+
o.errors << Shapes::ShapeRef.new(shape: HomeRegionNotSetException)
|
771
792
|
end)
|
772
793
|
|
773
794
|
api.add_operation(:get_discovery_summary, Seahorse::Model::Operation.new.tap do |o|
|
@@ -780,6 +801,7 @@ module Aws::ApplicationDiscoveryService
|
|
780
801
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
781
802
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
782
803
|
o.errors << Shapes::ShapeRef.new(shape: ServerInternalErrorException)
|
804
|
+
o.errors << Shapes::ShapeRef.new(shape: HomeRegionNotSetException)
|
783
805
|
end)
|
784
806
|
|
785
807
|
api.add_operation(:list_configurations, Seahorse::Model::Operation.new.tap do |o|
|
@@ -793,6 +815,7 @@ module Aws::ApplicationDiscoveryService
|
|
793
815
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
794
816
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
795
817
|
o.errors << Shapes::ShapeRef.new(shape: ServerInternalErrorException)
|
818
|
+
o.errors << Shapes::ShapeRef.new(shape: HomeRegionNotSetException)
|
796
819
|
end)
|
797
820
|
|
798
821
|
api.add_operation(:list_server_neighbors, Seahorse::Model::Operation.new.tap do |o|
|
@@ -805,6 +828,7 @@ module Aws::ApplicationDiscoveryService
|
|
805
828
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
806
829
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
807
830
|
o.errors << Shapes::ShapeRef.new(shape: ServerInternalErrorException)
|
831
|
+
o.errors << Shapes::ShapeRef.new(shape: HomeRegionNotSetException)
|
808
832
|
end)
|
809
833
|
|
810
834
|
api.add_operation(:start_continuous_export, Seahorse::Model::Operation.new.tap do |o|
|
@@ -820,6 +844,7 @@ module Aws::ApplicationDiscoveryService
|
|
820
844
|
o.errors << Shapes::ShapeRef.new(shape: ServerInternalErrorException)
|
821
845
|
o.errors << Shapes::ShapeRef.new(shape: OperationNotPermittedException)
|
822
846
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
|
847
|
+
o.errors << Shapes::ShapeRef.new(shape: HomeRegionNotSetException)
|
823
848
|
end)
|
824
849
|
|
825
850
|
api.add_operation(:start_data_collection_by_agent_ids, Seahorse::Model::Operation.new.tap do |o|
|
@@ -832,6 +857,7 @@ module Aws::ApplicationDiscoveryService
|
|
832
857
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
833
858
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
834
859
|
o.errors << Shapes::ShapeRef.new(shape: ServerInternalErrorException)
|
860
|
+
o.errors << Shapes::ShapeRef.new(shape: HomeRegionNotSetException)
|
835
861
|
end)
|
836
862
|
|
837
863
|
api.add_operation(:start_export_task, Seahorse::Model::Operation.new.tap do |o|
|
@@ -845,6 +871,7 @@ module Aws::ApplicationDiscoveryService
|
|
845
871
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
846
872
|
o.errors << Shapes::ShapeRef.new(shape: ServerInternalErrorException)
|
847
873
|
o.errors << Shapes::ShapeRef.new(shape: OperationNotPermittedException)
|
874
|
+
o.errors << Shapes::ShapeRef.new(shape: HomeRegionNotSetException)
|
848
875
|
end)
|
849
876
|
|
850
877
|
api.add_operation(:start_import_task, Seahorse::Model::Operation.new.tap do |o|
|
@@ -855,8 +882,10 @@ module Aws::ApplicationDiscoveryService
|
|
855
882
|
o.output = Shapes::ShapeRef.new(shape: StartImportTaskResponse)
|
856
883
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
|
857
884
|
o.errors << Shapes::ShapeRef.new(shape: AuthorizationErrorException)
|
885
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
858
886
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
859
887
|
o.errors << Shapes::ShapeRef.new(shape: ServerInternalErrorException)
|
888
|
+
o.errors << Shapes::ShapeRef.new(shape: HomeRegionNotSetException)
|
860
889
|
end)
|
861
890
|
|
862
891
|
api.add_operation(:stop_continuous_export, Seahorse::Model::Operation.new.tap do |o|
|
@@ -872,6 +901,7 @@ module Aws::ApplicationDiscoveryService
|
|
872
901
|
o.errors << Shapes::ShapeRef.new(shape: OperationNotPermittedException)
|
873
902
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
874
903
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
|
904
|
+
o.errors << Shapes::ShapeRef.new(shape: HomeRegionNotSetException)
|
875
905
|
end)
|
876
906
|
|
877
907
|
api.add_operation(:stop_data_collection_by_agent_ids, Seahorse::Model::Operation.new.tap do |o|
|
@@ -884,6 +914,7 @@ module Aws::ApplicationDiscoveryService
|
|
884
914
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
885
915
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
886
916
|
o.errors << Shapes::ShapeRef.new(shape: ServerInternalErrorException)
|
917
|
+
o.errors << Shapes::ShapeRef.new(shape: HomeRegionNotSetException)
|
887
918
|
end)
|
888
919
|
|
889
920
|
api.add_operation(:update_application, Seahorse::Model::Operation.new.tap do |o|
|
@@ -896,6 +927,7 @@ module Aws::ApplicationDiscoveryService
|
|
896
927
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
897
928
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
898
929
|
o.errors << Shapes::ShapeRef.new(shape: ServerInternalErrorException)
|
930
|
+
o.errors << Shapes::ShapeRef.new(shape: HomeRegionNotSetException)
|
899
931
|
end)
|
900
932
|
end
|
901
933
|
|
@@ -42,6 +42,22 @@ module Aws::ApplicationDiscoveryService
|
|
42
42
|
|
43
43
|
end
|
44
44
|
|
45
|
+
class HomeRegionNotSetException < ServiceError
|
46
|
+
|
47
|
+
# @param [Seahorse::Client::RequestContext] context
|
48
|
+
# @param [String] message
|
49
|
+
# @param [Aws::ApplicationDiscoveryService::Types::HomeRegionNotSetException] data
|
50
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
51
|
+
super(context, message, data)
|
52
|
+
end
|
53
|
+
|
54
|
+
# @return [String]
|
55
|
+
def message
|
56
|
+
@message || @data[:message]
|
57
|
+
end
|
58
|
+
|
59
|
+
end
|
60
|
+
|
45
61
|
class InvalidParameterException < ServiceError
|
46
62
|
|
47
63
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -710,7 +710,7 @@ module Aws::ApplicationDiscoveryService
|
|
710
710
|
# }
|
711
711
|
#
|
712
712
|
# @!attribute [rw] export_ids
|
713
|
-
# A list of continuous export
|
713
|
+
# A list of continuous export IDs to search for.
|
714
714
|
# @return [Array<String>]
|
715
715
|
#
|
716
716
|
# @!attribute [rw] max_results
|
@@ -1133,6 +1133,16 @@ module Aws::ApplicationDiscoveryService
|
|
1133
1133
|
include Aws::Structure
|
1134
1134
|
end
|
1135
1135
|
|
1136
|
+
# The home region is not set. Set the home region to continue.
|
1137
|
+
#
|
1138
|
+
# @!attribute [rw] message
|
1139
|
+
# @return [String]
|
1140
|
+
#
|
1141
|
+
class HomeRegionNotSetException < Struct.new(
|
1142
|
+
:message)
|
1143
|
+
include Aws::Structure
|
1144
|
+
end
|
1145
|
+
|
1136
1146
|
# An array of information related to the import task request that
|
1137
1147
|
# includes status information, times, IDs, the Amazon S3 Object URL for
|
1138
1148
|
# the import file, and more.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-applicationdiscoveryservice
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.23.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-11-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|