aws-sdk-serverlessapplicationrepository 1.10.0 → 1.11.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 77c549a0674aa75accfd7f8470ac0c9105ac267a
4
- data.tar.gz: ae5cd14242da7aaa82558549988b16579782eb88
3
+ metadata.gz: fa030307e29070de299ba8c937bb43848de3a14d
4
+ data.tar.gz: ef9aeff3ba048a6254cbd95d83a19346f41ac348
5
5
  SHA512:
6
- metadata.gz: 6e89c1355620d38fa5e7f454b5f3a88b19889f9824de6be797d8aa02e916f80360d5a48848c29a12cdffeb1fc871c36876c0b0f91d7e4e10fa6bcbc4d0e6c3e6
7
- data.tar.gz: a0a5fbd2831fb569d9670154685d7a6b5e922e11e5f00e015016eb89d6f004e556c7369057fcb5408ead712d21abce10381763b1f249df2a59391f88ea7b4626
6
+ metadata.gz: 208653614b3b48788aec5080504f48d934005e4339cba18a5e18739e6e8e99ba23bd5b1627c9b7fc94288264eb6898385b0b96b56052e99c032575577f25a384
7
+ data.tar.gz: fce54f41e1c30b47d0f6d0c4118dcb5c7178d789e08028e980f272fae190a6b568fe0d8f2d9765b4b43d17d6be759853a609d2028851897f9b4963f0297e471d
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-serverlessapplicationrepository/customizations'
42
42
  # @service
43
43
  module Aws::ServerlessApplicationRepository
44
44
 
45
- GEM_VERSION = '1.10.0'
45
+ GEM_VERSION = '1.11.0'
46
46
 
47
47
  end
@@ -301,7 +301,7 @@ module Aws::ServerlessApplicationRepository
301
301
  # resp.version.parameter_definitions[0].referenced_by_resources[0] #=> String
302
302
  # resp.version.parameter_definitions[0].type #=> String
303
303
  # resp.version.required_capabilities #=> Array
304
- # resp.version.required_capabilities[0] #=> String, one of "CAPABILITY_IAM", "CAPABILITY_NAMED_IAM", "CAPABILITY_RESOURCE_POLICY"
304
+ # resp.version.required_capabilities[0] #=> String, one of "CAPABILITY_IAM", "CAPABILITY_NAMED_IAM", "CAPABILITY_AUTO_EXPAND", "CAPABILITY_RESOURCE_POLICY"
305
305
  # resp.version.resources_supported #=> Boolean
306
306
  # resp.version.semantic_version #=> String
307
307
  # resp.version.source_code_url #=> String
@@ -370,7 +370,7 @@ module Aws::ServerlessApplicationRepository
370
370
  # resp.parameter_definitions[0].referenced_by_resources[0] #=> String
371
371
  # resp.parameter_definitions[0].type #=> String
372
372
  # resp.required_capabilities #=> Array
373
- # resp.required_capabilities[0] #=> String, one of "CAPABILITY_IAM", "CAPABILITY_NAMED_IAM", "CAPABILITY_RESOURCE_POLICY"
373
+ # resp.required_capabilities[0] #=> String, one of "CAPABILITY_IAM", "CAPABILITY_NAMED_IAM", "CAPABILITY_AUTO_EXPAND", "CAPABILITY_RESOURCE_POLICY"
374
374
  # resp.resources_supported #=> Boolean
375
375
  # resp.semantic_version #=> String
376
376
  # resp.source_code_url #=> String
@@ -404,8 +404,8 @@ module Aws::ServerlessApplicationRepository
404
404
  # @option params [Array<String>] :resource_types
405
405
  #
406
406
  # @option params [Types::RollbackConfiguration] :rollback_configuration
407
- # This property corresponds to the *AWS CloudFormation [
408
- # RollbackConfiguration][1]* Data Type.
407
+ # This property corresponds to the *AWS CloudFormation
408
+ # [RollbackConfiguration][1]* Data Type.
409
409
  #
410
410
  #
411
411
  #
@@ -600,7 +600,7 @@ module Aws::ServerlessApplicationRepository
600
600
  # resp.version.parameter_definitions[0].referenced_by_resources[0] #=> String
601
601
  # resp.version.parameter_definitions[0].type #=> String
602
602
  # resp.version.required_capabilities #=> Array
603
- # resp.version.required_capabilities[0] #=> String, one of "CAPABILITY_IAM", "CAPABILITY_NAMED_IAM", "CAPABILITY_RESOURCE_POLICY"
603
+ # resp.version.required_capabilities[0] #=> String, one of "CAPABILITY_IAM", "CAPABILITY_NAMED_IAM", "CAPABILITY_AUTO_EXPAND", "CAPABILITY_RESOURCE_POLICY"
604
604
  # resp.version.resources_supported #=> Boolean
605
605
  # resp.version.semantic_version #=> String
606
606
  # resp.version.source_code_url #=> String
@@ -689,6 +689,47 @@ module Aws::ServerlessApplicationRepository
689
689
  req.send_request(options)
690
690
  end
691
691
 
692
+ # Retrieves the list of applications nested in the containing
693
+ # application.
694
+ #
695
+ # @option params [required, String] :application_id
696
+ #
697
+ # @option params [Integer] :max_items
698
+ #
699
+ # @option params [String] :next_token
700
+ #
701
+ # @option params [String] :semantic_version
702
+ #
703
+ # @return [Types::ListApplicationDependenciesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
704
+ #
705
+ # * {Types::ListApplicationDependenciesResponse#dependencies #dependencies} => Array&lt;Types::ApplicationDependencySummary&gt;
706
+ # * {Types::ListApplicationDependenciesResponse#next_token #next_token} => String
707
+ #
708
+ # @example Request syntax with placeholder values
709
+ #
710
+ # resp = client.list_application_dependencies({
711
+ # application_id: "__string", # required
712
+ # max_items: 1,
713
+ # next_token: "__string",
714
+ # semantic_version: "__string",
715
+ # })
716
+ #
717
+ # @example Response structure
718
+ #
719
+ # resp.dependencies #=> Array
720
+ # resp.dependencies[0].application_id #=> String
721
+ # resp.dependencies[0].semantic_version #=> String
722
+ # resp.next_token #=> String
723
+ #
724
+ # @see http://docs.aws.amazon.com/goto/WebAPI/serverlessrepo-2017-09-08/ListApplicationDependencies AWS API Documentation
725
+ #
726
+ # @overload list_application_dependencies(params = {})
727
+ # @param [Hash] params ({})
728
+ def list_application_dependencies(params = {}, options = {})
729
+ req = build_request(:list_application_dependencies, params)
730
+ req.send_request(options)
731
+ end
732
+
692
733
  # Lists versions for the specified application.
693
734
  #
694
735
  # @option params [required, String] :application_id
@@ -889,7 +930,7 @@ module Aws::ServerlessApplicationRepository
889
930
  # resp.version.parameter_definitions[0].referenced_by_resources[0] #=> String
890
931
  # resp.version.parameter_definitions[0].type #=> String
891
932
  # resp.version.required_capabilities #=> Array
892
- # resp.version.required_capabilities[0] #=> String, one of "CAPABILITY_IAM", "CAPABILITY_NAMED_IAM", "CAPABILITY_RESOURCE_POLICY"
933
+ # resp.version.required_capabilities[0] #=> String, one of "CAPABILITY_IAM", "CAPABILITY_NAMED_IAM", "CAPABILITY_AUTO_EXPAND", "CAPABILITY_RESOURCE_POLICY"
893
934
  # resp.version.resources_supported #=> Boolean
894
935
  # resp.version.semantic_version #=> String
895
936
  # resp.version.source_code_url #=> String
@@ -917,7 +958,7 @@ module Aws::ServerlessApplicationRepository
917
958
  params: params,
918
959
  config: config)
919
960
  context[:gem_name] = 'aws-sdk-serverlessapplicationrepository'
920
- context[:gem_version] = '1.10.0'
961
+ context[:gem_version] = '1.11.0'
921
962
  Seahorse::Client::Request.new(handlers, context)
922
963
  end
923
964
 
@@ -12,6 +12,8 @@ module Aws::ServerlessApplicationRepository
12
12
  include Seahorse::Model
13
13
 
14
14
  Application = Shapes::StructureShape.new(name: 'Application')
15
+ ApplicationDependencyPage = Shapes::StructureShape.new(name: 'ApplicationDependencyPage')
16
+ ApplicationDependencySummary = Shapes::StructureShape.new(name: 'ApplicationDependencySummary')
15
17
  ApplicationPage = Shapes::StructureShape.new(name: 'ApplicationPage')
16
18
  ApplicationPolicy = Shapes::StructureShape.new(name: 'ApplicationPolicy')
17
19
  ApplicationPolicyStatement = Shapes::StructureShape.new(name: 'ApplicationPolicyStatement')
@@ -41,6 +43,8 @@ module Aws::ServerlessApplicationRepository
41
43
  GetCloudFormationTemplateRequest = Shapes::StructureShape.new(name: 'GetCloudFormationTemplateRequest')
42
44
  GetCloudFormationTemplateResponse = Shapes::StructureShape.new(name: 'GetCloudFormationTemplateResponse')
43
45
  InternalServerErrorException = Shapes::StructureShape.new(name: 'InternalServerErrorException')
46
+ ListApplicationDependenciesRequest = Shapes::StructureShape.new(name: 'ListApplicationDependenciesRequest')
47
+ ListApplicationDependenciesResponse = Shapes::StructureShape.new(name: 'ListApplicationDependenciesResponse')
44
48
  ListApplicationVersionsRequest = Shapes::StructureShape.new(name: 'ListApplicationVersionsRequest')
45
49
  ListApplicationVersionsResponse = Shapes::StructureShape.new(name: 'ListApplicationVersionsResponse')
46
50
  ListApplicationsRequest = Shapes::StructureShape.new(name: 'ListApplicationsRequest')
@@ -65,6 +69,7 @@ module Aws::ServerlessApplicationRepository
65
69
  __boolean = Shapes::BooleanShape.new(name: '__boolean')
66
70
  __double = Shapes::FloatShape.new(name: '__double')
67
71
  __integer = Shapes::IntegerShape.new(name: '__integer')
72
+ __listOfApplicationDependencySummary = Shapes::ListShape.new(name: '__listOfApplicationDependencySummary')
68
73
  __listOfApplicationPolicyStatement = Shapes::ListShape.new(name: '__listOfApplicationPolicyStatement')
69
74
  __listOfApplicationSummary = Shapes::ListShape.new(name: '__listOfApplicationSummary')
70
75
  __listOfCapability = Shapes::ListShape.new(name: '__listOfCapability')
@@ -90,6 +95,14 @@ module Aws::ServerlessApplicationRepository
90
95
  Application.add_member(:version, Shapes::ShapeRef.new(shape: Version, location_name: "version"))
91
96
  Application.struct_class = Types::Application
92
97
 
98
+ ApplicationDependencyPage.add_member(:dependencies, Shapes::ShapeRef.new(shape: __listOfApplicationDependencySummary, required: true, location_name: "dependencies"))
99
+ ApplicationDependencyPage.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location_name: "nextToken"))
100
+ ApplicationDependencyPage.struct_class = Types::ApplicationDependencyPage
101
+
102
+ ApplicationDependencySummary.add_member(:application_id, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "applicationId"))
103
+ ApplicationDependencySummary.add_member(:semantic_version, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "semanticVersion"))
104
+ ApplicationDependencySummary.struct_class = Types::ApplicationDependencySummary
105
+
93
106
  ApplicationPage.add_member(:applications, Shapes::ShapeRef.new(shape: __listOfApplicationSummary, required: true, location_name: "applications"))
94
107
  ApplicationPage.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location_name: "nextToken"))
95
108
  ApplicationPage.struct_class = Types::ApplicationPage
@@ -276,6 +289,16 @@ module Aws::ServerlessApplicationRepository
276
289
  GetCloudFormationTemplateResponse.add_member(:template_url, Shapes::ShapeRef.new(shape: __string, location_name: "templateUrl"))
277
290
  GetCloudFormationTemplateResponse.struct_class = Types::GetCloudFormationTemplateResponse
278
291
 
292
+ ListApplicationDependenciesRequest.add_member(:application_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "applicationId"))
293
+ ListApplicationDependenciesRequest.add_member(:max_items, Shapes::ShapeRef.new(shape: MaxItems, location: "querystring", location_name: "maxItems"))
294
+ ListApplicationDependenciesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location: "querystring", location_name: "nextToken"))
295
+ ListApplicationDependenciesRequest.add_member(:semantic_version, Shapes::ShapeRef.new(shape: __string, location: "querystring", location_name: "semanticVersion"))
296
+ ListApplicationDependenciesRequest.struct_class = Types::ListApplicationDependenciesRequest
297
+
298
+ ListApplicationDependenciesResponse.add_member(:dependencies, Shapes::ShapeRef.new(shape: __listOfApplicationDependencySummary, location_name: "dependencies"))
299
+ ListApplicationDependenciesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location_name: "nextToken"))
300
+ ListApplicationDependenciesResponse.struct_class = Types::ListApplicationDependenciesResponse
301
+
279
302
  ListApplicationVersionsRequest.add_member(:application_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "applicationId"))
280
303
  ListApplicationVersionsRequest.add_member(:max_items, Shapes::ShapeRef.new(shape: MaxItems, location: "querystring", location_name: "maxItems"))
281
304
  ListApplicationVersionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location: "querystring", location_name: "nextToken"))
@@ -386,6 +409,8 @@ module Aws::ServerlessApplicationRepository
386
409
  VersionSummary.add_member(:source_code_url, Shapes::ShapeRef.new(shape: __string, location_name: "sourceCodeUrl"))
387
410
  VersionSummary.struct_class = Types::VersionSummary
388
411
 
412
+ __listOfApplicationDependencySummary.member = Shapes::ShapeRef.new(shape: ApplicationDependencySummary)
413
+
389
414
  __listOfApplicationPolicyStatement.member = Shapes::ShapeRef.new(shape: ApplicationPolicyStatement)
390
415
 
391
416
  __listOfApplicationSummary.member = Shapes::ShapeRef.new(shape: ApplicationSummary)
@@ -526,6 +551,25 @@ module Aws::ServerlessApplicationRepository
526
551
  o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
527
552
  end)
528
553
 
554
+ api.add_operation(:list_application_dependencies, Seahorse::Model::Operation.new.tap do |o|
555
+ o.name = "ListApplicationDependencies"
556
+ o.http_method = "GET"
557
+ o.http_request_uri = "/applications/{applicationId}/dependencies"
558
+ o.input = Shapes::ShapeRef.new(shape: ListApplicationDependenciesRequest)
559
+ o.output = Shapes::ShapeRef.new(shape: ListApplicationDependenciesResponse)
560
+ o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
561
+ o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
562
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
563
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
564
+ o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
565
+ o[:pager] = Aws::Pager.new(
566
+ limit_key: "max_items",
567
+ tokens: {
568
+ "next_token" => "next_token"
569
+ }
570
+ )
571
+ end)
572
+
529
573
  api.add_operation(:list_application_versions, Seahorse::Model::Operation.new.tap do |o|
530
574
  o.name = "ListApplicationVersions"
531
575
  o.http_method = "GET"
@@ -92,6 +92,42 @@ module Aws::ServerlessApplicationRepository
92
92
  include Aws::Structure
93
93
  end
94
94
 
95
+ # A list of application summaries nested in the application.
96
+ #
97
+ # @!attribute [rw] dependencies
98
+ # An array of application summaries nested in the application.
99
+ # @return [Array<Types::ApplicationDependencySummary>]
100
+ #
101
+ # @!attribute [rw] next_token
102
+ # The token to request the next page of results.
103
+ # @return [String]
104
+ #
105
+ # @see http://docs.aws.amazon.com/goto/WebAPI/serverlessrepo-2017-09-08/ApplicationDependencyPage AWS API Documentation
106
+ #
107
+ class ApplicationDependencyPage < Struct.new(
108
+ :dependencies,
109
+ :next_token)
110
+ include Aws::Structure
111
+ end
112
+
113
+ # A nested application summary.
114
+ #
115
+ # @!attribute [rw] application_id
116
+ # The Amazon Resource Name (ARN) of the nested application.
117
+ # @return [String]
118
+ #
119
+ # @!attribute [rw] semantic_version
120
+ # The semantic version of the nested application.
121
+ # @return [String]
122
+ #
123
+ # @see http://docs.aws.amazon.com/goto/WebAPI/serverlessrepo-2017-09-08/ApplicationDependencySummary AWS API Documentation
124
+ #
125
+ class ApplicationDependencySummary < Struct.new(
126
+ :application_id,
127
+ :semantic_version)
128
+ include Aws::Structure
129
+ end
130
+
95
131
  # A list of application details.
96
132
  #
97
133
  # @!attribute [rw] applications
@@ -675,10 +711,11 @@ module Aws::ServerlessApplicationRepository
675
711
  # specify CAPABILITY\_NAMED\_IAM.
676
712
  #
677
713
  # The following resources require you to specify
678
- # CAPABILITY\_RESOURCE\_POLICY:
679
- # [AWS::ApplicationAutoScaling::ScalingPolicy][5],
680
- # [AWS::S3::BucketPolicy][6], [AWS::SQS::QueuePolicy][7], and
681
- # [AWS::SNS:TopicPolicy][8].
714
+ # CAPABILITY\_RESOURCE\_POLICY: [AWS::Lambda::Permission][5],
715
+ # [AWS::IAM:Policy][3],
716
+ # [AWS::ApplicationAutoScaling::ScalingPolicy][6],
717
+ # [AWS::S3::BucketPolicy][7], [AWS::SQS::QueuePolicy][8], and
718
+ # [AWS::SNS:TopicPolicy][9].
682
719
  #
683
720
  # If your application template contains any of the above resources, we
684
721
  # recommend that you review all permissions associated with the
@@ -692,17 +729,18 @@ module Aws::ServerlessApplicationRepository
692
729
  #
693
730
  # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html
694
731
  # [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html
695
- # [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-policy.html
732
+ # [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html
696
733
  # [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html
697
- # [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html
698
- # [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html
699
- # [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html
700
- # [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html
734
+ # [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html
735
+ # [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html
736
+ # [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html
737
+ # [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html
738
+ # [9]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html
701
739
  # @return [Array<String>]
702
740
  #
703
741
  # @!attribute [rw] change_set_name
704
742
  # This property corresponds to the parameter of the same name for the
705
- # *AWS CloudFormation [ CreateChangeSet][1]* API.
743
+ # *AWS CloudFormation [CreateChangeSet][1]* API.
706
744
  #
707
745
  #
708
746
  #
@@ -711,7 +749,7 @@ module Aws::ServerlessApplicationRepository
711
749
  #
712
750
  # @!attribute [rw] client_token
713
751
  # This property corresponds to the parameter of the same name for the
714
- # *AWS CloudFormation [ CreateChangeSet][1]* API.
752
+ # *AWS CloudFormation [CreateChangeSet][1]* API.
715
753
  #
716
754
  #
717
755
  #
@@ -720,7 +758,7 @@ module Aws::ServerlessApplicationRepository
720
758
  #
721
759
  # @!attribute [rw] description
722
760
  # This property corresponds to the parameter of the same name for the
723
- # *AWS CloudFormation [ CreateChangeSet][1]* API.
761
+ # *AWS CloudFormation [CreateChangeSet][1]* API.
724
762
  #
725
763
  #
726
764
  #
@@ -729,7 +767,7 @@ module Aws::ServerlessApplicationRepository
729
767
  #
730
768
  # @!attribute [rw] notification_arns
731
769
  # This property corresponds to the parameter of the same name for the
732
- # *AWS CloudFormation [ CreateChangeSet][1]* API.
770
+ # *AWS CloudFormation [CreateChangeSet][1]* API.
733
771
  #
734
772
  #
735
773
  #
@@ -742,7 +780,7 @@ module Aws::ServerlessApplicationRepository
742
780
  #
743
781
  # @!attribute [rw] resource_types
744
782
  # This property corresponds to the parameter of the same name for the
745
- # *AWS CloudFormation [ CreateChangeSet][1]* API.
783
+ # *AWS CloudFormation [CreateChangeSet][1]* API.
746
784
  #
747
785
  #
748
786
  #
@@ -751,7 +789,7 @@ module Aws::ServerlessApplicationRepository
751
789
  #
752
790
  # @!attribute [rw] rollback_configuration
753
791
  # This property corresponds to the parameter of the same name for the
754
- # *AWS CloudFormation [ CreateChangeSet][1]* API.
792
+ # *AWS CloudFormation [CreateChangeSet][1]* API.
755
793
  #
756
794
  #
757
795
  #
@@ -770,7 +808,7 @@ module Aws::ServerlessApplicationRepository
770
808
  #
771
809
  # @!attribute [rw] stack_name
772
810
  # This property corresponds to the parameter of the same name for the
773
- # *AWS CloudFormation [ CreateChangeSet][1]* API.
811
+ # *AWS CloudFormation [CreateChangeSet][1]* API.
774
812
  #
775
813
  #
776
814
  #
@@ -779,7 +817,7 @@ module Aws::ServerlessApplicationRepository
779
817
  #
780
818
  # @!attribute [rw] tags
781
819
  # This property corresponds to the parameter of the same name for the
782
- # *AWS CloudFormation [ CreateChangeSet][1]* API.
820
+ # *AWS CloudFormation [CreateChangeSet][1]* API.
783
821
  #
784
822
  #
785
823
  #
@@ -873,8 +911,8 @@ module Aws::ServerlessApplicationRepository
873
911
  # @return [Array<String>]
874
912
  #
875
913
  # @!attribute [rw] rollback_configuration
876
- # This property corresponds to the *AWS CloudFormation [
877
- # RollbackConfiguration][1]* Data Type.
914
+ # This property corresponds to the *AWS CloudFormation
915
+ # [RollbackConfiguration][1]* Data Type.
878
916
  #
879
917
  #
880
918
  #
@@ -1163,6 +1201,52 @@ module Aws::ServerlessApplicationRepository
1163
1201
  include Aws::Structure
1164
1202
  end
1165
1203
 
1204
+ # @note When making an API call, you may pass ListApplicationDependenciesRequest
1205
+ # data as a hash:
1206
+ #
1207
+ # {
1208
+ # application_id: "__string", # required
1209
+ # max_items: 1,
1210
+ # next_token: "__string",
1211
+ # semantic_version: "__string",
1212
+ # }
1213
+ #
1214
+ # @!attribute [rw] application_id
1215
+ # @return [String]
1216
+ #
1217
+ # @!attribute [rw] max_items
1218
+ # @return [Integer]
1219
+ #
1220
+ # @!attribute [rw] next_token
1221
+ # @return [String]
1222
+ #
1223
+ # @!attribute [rw] semantic_version
1224
+ # @return [String]
1225
+ #
1226
+ # @see http://docs.aws.amazon.com/goto/WebAPI/serverlessrepo-2017-09-08/ListApplicationDependenciesRequest AWS API Documentation
1227
+ #
1228
+ class ListApplicationDependenciesRequest < Struct.new(
1229
+ :application_id,
1230
+ :max_items,
1231
+ :next_token,
1232
+ :semantic_version)
1233
+ include Aws::Structure
1234
+ end
1235
+
1236
+ # @!attribute [rw] dependencies
1237
+ # @return [Array<Types::ApplicationDependencySummary>]
1238
+ #
1239
+ # @!attribute [rw] next_token
1240
+ # @return [String]
1241
+ #
1242
+ # @see http://docs.aws.amazon.com/goto/WebAPI/serverlessrepo-2017-09-08/ListApplicationDependenciesResponse AWS API Documentation
1243
+ #
1244
+ class ListApplicationDependenciesResponse < Struct.new(
1245
+ :dependencies,
1246
+ :next_token)
1247
+ include Aws::Structure
1248
+ end
1249
+
1166
1250
  # @note When making an API call, you may pass ListApplicationVersionsRequest
1167
1251
  # data as a hash:
1168
1252
  #
@@ -1432,8 +1516,8 @@ module Aws::ServerlessApplicationRepository
1432
1516
  include Aws::Structure
1433
1517
  end
1434
1518
 
1435
- # This property corresponds to the *AWS CloudFormation [
1436
- # RollbackConfiguration][1]* Data Type.
1519
+ # This property corresponds to the *AWS CloudFormation
1520
+ # [RollbackConfiguration][1]* Data Type.
1437
1521
  #
1438
1522
  #
1439
1523
  #
@@ -1454,7 +1538,7 @@ module Aws::ServerlessApplicationRepository
1454
1538
  #
1455
1539
  # @!attribute [rw] monitoring_time_in_minutes
1456
1540
  # This property corresponds to the content of the same name for the
1457
- # *AWS CloudFormation [ RollbackConfiguration][1]* Data Type.
1541
+ # *AWS CloudFormation [RollbackConfiguration][1]* Data Type.
1458
1542
  #
1459
1543
  #
1460
1544
  #
@@ -1463,7 +1547,7 @@ module Aws::ServerlessApplicationRepository
1463
1547
  #
1464
1548
  # @!attribute [rw] rollback_triggers
1465
1549
  # This property corresponds to the content of the same name for the
1466
- # *AWS CloudFormation [ RollbackConfiguration][1]* Data Type.
1550
+ # *AWS CloudFormation [RollbackConfiguration][1]* Data Type.
1467
1551
  #
1468
1552
  #
1469
1553
  #
@@ -1478,8 +1562,8 @@ module Aws::ServerlessApplicationRepository
1478
1562
  include Aws::Structure
1479
1563
  end
1480
1564
 
1481
- # This property corresponds to the *AWS CloudFormation [
1482
- # RollbackTrigger][1]* Data Type.
1565
+ # This property corresponds to the *AWS CloudFormation
1566
+ # [RollbackTrigger][1]* Data Type.
1483
1567
  #
1484
1568
  #
1485
1569
  #
@@ -1495,7 +1579,7 @@ module Aws::ServerlessApplicationRepository
1495
1579
  #
1496
1580
  # @!attribute [rw] arn
1497
1581
  # This property corresponds to the content of the same name for the
1498
- # *AWS CloudFormation [ RollbackTrigger][1]* Data Type.
1582
+ # *AWS CloudFormation [RollbackTrigger][1]* Data Type.
1499
1583
  #
1500
1584
  #
1501
1585
  #
@@ -1504,7 +1588,7 @@ module Aws::ServerlessApplicationRepository
1504
1588
  #
1505
1589
  # @!attribute [rw] type
1506
1590
  # This property corresponds to the content of the same name for the
1507
- # *AWS CloudFormation [ RollbackTrigger][1]* Data Type.
1591
+ # *AWS CloudFormation [RollbackTrigger][1]* Data Type.
1508
1592
  #
1509
1593
  #
1510
1594
  #
@@ -1519,7 +1603,7 @@ module Aws::ServerlessApplicationRepository
1519
1603
  include Aws::Structure
1520
1604
  end
1521
1605
 
1522
- # This property corresponds to the *AWS CloudFormation [ Tag][1]* Data
1606
+ # This property corresponds to the *AWS CloudFormation [Tag][1]* Data
1523
1607
  # Type.
1524
1608
  #
1525
1609
  #
@@ -1536,7 +1620,7 @@ module Aws::ServerlessApplicationRepository
1536
1620
  #
1537
1621
  # @!attribute [rw] key
1538
1622
  # This property corresponds to the content of the same name for the
1539
- # *AWS CloudFormation [ Tag][1]* Data Type.
1623
+ # *AWS CloudFormation [Tag][1]* Data Type.
1540
1624
  #
1541
1625
  #
1542
1626
  #
@@ -1545,11 +1629,9 @@ module Aws::ServerlessApplicationRepository
1545
1629
  #
1546
1630
  # @!attribute [rw] value
1547
1631
  # This property corresponds to the content of the same name for the
1548
- # *AWS CloudFormation [ Tag][1]* Data Type.
1549
- #
1550
- #
1551
- #
1552
- # [1]: https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/Tag
1632
+ # <i>AWS CloudFormation <a
1633
+ # href="https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/Tag">
1634
+ # Tag</a> </i> Data Type.
1553
1635
  # @return [String]
1554
1636
  #
1555
1637
  # @see http://docs.aws.amazon.com/goto/WebAPI/serverlessrepo-2017-09-08/Tag AWS API Documentation
@@ -1803,10 +1885,11 @@ module Aws::ServerlessApplicationRepository
1803
1885
  # specify CAPABILITY\_NAMED\_IAM.
1804
1886
  #
1805
1887
  # The following resources require you to specify
1806
- # CAPABILITY\_RESOURCE\_POLICY:
1807
- # [AWS::ApplicationAutoScaling::ScalingPolicy][5],
1808
- # [AWS::S3::BucketPolicy][6], [AWS::SQS::QueuePolicy][7], and
1809
- # [AWS::SNS:TopicPolicy][8].
1888
+ # CAPABILITY\_RESOURCE\_POLICY: [AWS::Lambda::Permission][5],
1889
+ # [AWS::IAM:Policy][3],
1890
+ # [AWS::ApplicationAutoScaling::ScalingPolicy][6],
1891
+ # [AWS::S3::BucketPolicy][7], [AWS::SQS::QueuePolicy][8], and
1892
+ # [AWS::SNS::TopicPolicy][9].
1810
1893
  #
1811
1894
  # If your application template contains any of the above resources, we
1812
1895
  # recommend that you review all permissions associated with the
@@ -1820,12 +1903,13 @@ module Aws::ServerlessApplicationRepository
1820
1903
  #
1821
1904
  # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html
1822
1905
  # [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html
1823
- # [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-policy.html
1906
+ # [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html
1824
1907
  # [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html
1825
- # [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html
1826
- # [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html
1827
- # [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html
1828
- # [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html
1908
+ # [5]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html
1909
+ # [6]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html
1910
+ # [7]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-policy.html
1911
+ # [8]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-policy.html
1912
+ # [9]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-policy.html
1829
1913
  # @return [Array<String>]
1830
1914
  #
1831
1915
  # @!attribute [rw] resources_supported
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-serverlessapplicationrepository
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.10.0
4
+ version: 1.11.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: 2018-11-20 00:00:00.000000000 Z
11
+ date: 2018-11-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core