aws-sdk-serverlessapplicationrepository 1.0.0 → 1.1.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: 6a6c161f6a97046c2cf04bc981763ee4279895b9
4
- data.tar.gz: 745073659b70cf33a772f97248e90aed7966ee20
3
+ metadata.gz: 88fb9e1c6e5aeac99a04a88664fb4bb11edb2b29
4
+ data.tar.gz: 2223ff69a4864dbf9730235e08d8527310fd2052
5
5
  SHA512:
6
- metadata.gz: ad26f2a6b4efd41294ac779fafeee68b5fe2e18d2a1dbd0a702a9d527fd74f6c1c355a027f81e5cd4106ffbfdfd25aa945311d56596958a2120f4651172a1159
7
- data.tar.gz: 176b1c89527b76f5b246938008f8e21019dfa82fad5d5085d71eaa5370b35ae104f784d5213f4ab7113c2f7031ca0140ee3d25ce341bbe44d8fc0deff3724077
6
+ metadata.gz: b783d407ff729a1184e84596710713d7d02f390600529e48a9362faa6c6b11ca5aa38513b549af5bb1800cc7769657dbdc6ce2fc392345d182bde39822da30ab
7
+ data.tar.gz: 204d55e2bf8bc98bab58b541ea3c09e95346ebcb673598d503bf9c21cc64b3c07876e23913f35be622562ff2aa9b1bfb58565e5983b9730e52128dde5017130d
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-serverlessapplicationrepository/customizations'
42
42
  # @service
43
43
  module Aws::ServerlessApplicationRepository
44
44
 
45
- GEM_VERSION = '1.0.0'
45
+ GEM_VERSION = '1.1.0'
46
46
 
47
47
  end
@@ -152,6 +152,8 @@ module Aws::ServerlessApplicationRepository
152
152
  #
153
153
  # @option params [String] :description
154
154
  #
155
+ # @option params [String] :home_page_url
156
+ #
155
157
  # @option params [Array<String>] :labels
156
158
  #
157
159
  # @option params [String] :license_body
@@ -180,6 +182,7 @@ module Aws::ServerlessApplicationRepository
180
182
  # * {Types::CreateApplicationResponse#author #author} => String
181
183
  # * {Types::CreateApplicationResponse#creation_time #creation_time} => String
182
184
  # * {Types::CreateApplicationResponse#description #description} => String
185
+ # * {Types::CreateApplicationResponse#home_page_url #home_page_url} => String
183
186
  # * {Types::CreateApplicationResponse#labels #labels} => Array&lt;String&gt;
184
187
  # * {Types::CreateApplicationResponse#license_url #license_url} => String
185
188
  # * {Types::CreateApplicationResponse#name #name} => String
@@ -192,6 +195,7 @@ module Aws::ServerlessApplicationRepository
192
195
  # resp = client.create_application({
193
196
  # author: "__string",
194
197
  # description: "__string",
198
+ # home_page_url: "__string",
195
199
  # labels: ["__string"],
196
200
  # license_body: "__string",
197
201
  # license_url: "__string",
@@ -211,6 +215,7 @@ module Aws::ServerlessApplicationRepository
211
215
  # resp.author #=> String
212
216
  # resp.creation_time #=> String
213
217
  # resp.description #=> String
218
+ # resp.home_page_url #=> String
214
219
  # resp.labels #=> Array
215
220
  # resp.labels[0] #=> String
216
221
  # resp.license_url #=> String
@@ -335,8 +340,8 @@ module Aws::ServerlessApplicationRepository
335
340
  # application_id: "__string", # required
336
341
  # parameter_overrides: [
337
342
  # {
338
- # name: "__string",
339
- # value: "__string",
343
+ # name: "__string", # required
344
+ # value: "__string", # required
340
345
  # },
341
346
  # ],
342
347
  # semantic_version: "__string",
@@ -359,6 +364,27 @@ module Aws::ServerlessApplicationRepository
359
364
  req.send_request(options)
360
365
  end
361
366
 
367
+ # Deletes the specified application.
368
+ #
369
+ # @option params [required, String] :application_id
370
+ #
371
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
372
+ #
373
+ # @example Request syntax with placeholder values
374
+ #
375
+ # resp = client.delete_application({
376
+ # application_id: "__string", # required
377
+ # })
378
+ #
379
+ # @see http://docs.aws.amazon.com/goto/WebAPI/serverlessrepo-2017-09-08/DeleteApplication AWS API Documentation
380
+ #
381
+ # @overload delete_application(params = {})
382
+ # @param [Hash] params ({})
383
+ def delete_application(params = {}, options = {})
384
+ req = build_request(:delete_application, params)
385
+ req.send_request(options)
386
+ end
387
+
362
388
  # Gets the specified application.
363
389
  #
364
390
  # @option params [required, String] :application_id
@@ -371,6 +397,7 @@ module Aws::ServerlessApplicationRepository
371
397
  # * {Types::GetApplicationResponse#author #author} => String
372
398
  # * {Types::GetApplicationResponse#creation_time #creation_time} => String
373
399
  # * {Types::GetApplicationResponse#description #description} => String
400
+ # * {Types::GetApplicationResponse#home_page_url #home_page_url} => String
374
401
  # * {Types::GetApplicationResponse#labels #labels} => Array&lt;String&gt;
375
402
  # * {Types::GetApplicationResponse#license_url #license_url} => String
376
403
  # * {Types::GetApplicationResponse#name #name} => String
@@ -391,6 +418,7 @@ module Aws::ServerlessApplicationRepository
391
418
  # resp.author #=> String
392
419
  # resp.creation_time #=> String
393
420
  # resp.description #=> String
421
+ # resp.home_page_url #=> String
394
422
  # resp.labels #=> Array
395
423
  # resp.labels[0] #=> String
396
424
  # resp.license_url #=> String
@@ -524,6 +552,7 @@ module Aws::ServerlessApplicationRepository
524
552
  # resp.applications[0].author #=> String
525
553
  # resp.applications[0].creation_time #=> String
526
554
  # resp.applications[0].description #=> String
555
+ # resp.applications[0].home_page_url #=> String
527
556
  # resp.applications[0].labels #=> Array
528
557
  # resp.applications[0].labels[0] #=> String
529
558
  # resp.applications[0].name #=> String
@@ -555,8 +584,8 @@ module Aws::ServerlessApplicationRepository
555
584
  # application_id: "__string", # required
556
585
  # statements: [
557
586
  # {
558
- # actions: ["__string"],
559
- # principals: ["__string"],
587
+ # actions: ["__string"], # required
588
+ # principals: ["__string"], # required
560
589
  # statement_id: "__string",
561
590
  # },
562
591
  # ],
@@ -588,6 +617,8 @@ module Aws::ServerlessApplicationRepository
588
617
  #
589
618
  # @option params [String] :description
590
619
  #
620
+ # @option params [String] :home_page_url
621
+ #
591
622
  # @option params [Array<String>] :labels
592
623
  #
593
624
  # @option params [String] :readme_body
@@ -600,6 +631,7 @@ module Aws::ServerlessApplicationRepository
600
631
  # * {Types::UpdateApplicationResponse#author #author} => String
601
632
  # * {Types::UpdateApplicationResponse#creation_time #creation_time} => String
602
633
  # * {Types::UpdateApplicationResponse#description #description} => String
634
+ # * {Types::UpdateApplicationResponse#home_page_url #home_page_url} => String
603
635
  # * {Types::UpdateApplicationResponse#labels #labels} => Array&lt;String&gt;
604
636
  # * {Types::UpdateApplicationResponse#license_url #license_url} => String
605
637
  # * {Types::UpdateApplicationResponse#name #name} => String
@@ -613,6 +645,7 @@ module Aws::ServerlessApplicationRepository
613
645
  # application_id: "__string", # required
614
646
  # author: "__string",
615
647
  # description: "__string",
648
+ # home_page_url: "__string",
616
649
  # labels: ["__string"],
617
650
  # readme_body: "__string",
618
651
  # readme_url: "__string",
@@ -624,6 +657,7 @@ module Aws::ServerlessApplicationRepository
624
657
  # resp.author #=> String
625
658
  # resp.creation_time #=> String
626
659
  # resp.description #=> String
660
+ # resp.home_page_url #=> String
627
661
  # resp.labels #=> Array
628
662
  # resp.labels[0] #=> String
629
663
  # resp.license_url #=> String
@@ -674,7 +708,7 @@ module Aws::ServerlessApplicationRepository
674
708
  params: params,
675
709
  config: config)
676
710
  context[:gem_name] = 'aws-sdk-serverlessapplicationrepository'
677
- context[:gem_version] = '1.0.0'
711
+ context[:gem_version] = '1.1.0'
678
712
  Seahorse::Client::Request.new(handlers, context)
679
713
  end
680
714
 
@@ -29,6 +29,7 @@ module Aws::ServerlessApplicationRepository
29
29
  CreateCloudFormationChangeSetInput = Shapes::StructureShape.new(name: 'CreateCloudFormationChangeSetInput')
30
30
  CreateCloudFormationChangeSetRequest = Shapes::StructureShape.new(name: 'CreateCloudFormationChangeSetRequest')
31
31
  CreateCloudFormationChangeSetResponse = Shapes::StructureShape.new(name: 'CreateCloudFormationChangeSetResponse')
32
+ DeleteApplicationRequest = Shapes::StructureShape.new(name: 'DeleteApplicationRequest')
32
33
  ForbiddenException = Shapes::StructureShape.new(name: 'ForbiddenException')
33
34
  GetApplicationPolicyRequest = Shapes::StructureShape.new(name: 'GetApplicationPolicyRequest')
34
35
  GetApplicationPolicyResponse = Shapes::StructureShape.new(name: 'GetApplicationPolicyResponse')
@@ -39,12 +40,6 @@ module Aws::ServerlessApplicationRepository
39
40
  ListApplicationVersionsResponse = Shapes::StructureShape.new(name: 'ListApplicationVersionsResponse')
40
41
  ListApplicationsRequest = Shapes::StructureShape.new(name: 'ListApplicationsRequest')
41
42
  ListApplicationsResponse = Shapes::StructureShape.new(name: 'ListApplicationsResponse')
42
- ListOfApplicationPolicyStatement = Shapes::ListShape.new(name: 'ListOfApplicationPolicyStatement')
43
- ListOfApplicationSummary = Shapes::ListShape.new(name: 'ListOfApplicationSummary')
44
- ListOfParameterDefinition = Shapes::ListShape.new(name: 'ListOfParameterDefinition')
45
- ListOfParameterValue = Shapes::ListShape.new(name: 'ListOfParameterValue')
46
- ListOfVersionSummary = Shapes::ListShape.new(name: 'ListOfVersionSummary')
47
- ListOf__string = Shapes::ListShape.new(name: 'ListOf__string')
48
43
  MaxItems = Shapes::IntegerShape.new(name: 'MaxItems')
49
44
  NotFoundException = Shapes::StructureShape.new(name: 'NotFoundException')
50
45
  ParameterDefinition = Shapes::StructureShape.new(name: 'ParameterDefinition')
@@ -60,58 +55,67 @@ module Aws::ServerlessApplicationRepository
60
55
  __boolean = Shapes::BooleanShape.new(name: '__boolean')
61
56
  __double = Shapes::FloatShape.new(name: '__double')
62
57
  __integer = Shapes::IntegerShape.new(name: '__integer')
58
+ __listOfApplicationPolicyStatement = Shapes::ListShape.new(name: '__listOfApplicationPolicyStatement')
59
+ __listOfApplicationSummary = Shapes::ListShape.new(name: '__listOfApplicationSummary')
60
+ __listOfParameterDefinition = Shapes::ListShape.new(name: '__listOfParameterDefinition')
61
+ __listOfParameterValue = Shapes::ListShape.new(name: '__listOfParameterValue')
62
+ __listOfVersionSummary = Shapes::ListShape.new(name: '__listOfVersionSummary')
63
+ __listOf__string = Shapes::ListShape.new(name: '__listOf__string')
64
+ __long = Shapes::IntegerShape.new(name: '__long')
63
65
  __string = Shapes::StringShape.new(name: '__string')
64
- __timestamp = Shapes::TimestampShape.new(name: '__timestamp')
65
66
 
66
- Application.add_member(:application_id, Shapes::ShapeRef.new(shape: __string, location_name: "applicationId"))
67
- Application.add_member(:author, Shapes::ShapeRef.new(shape: __string, location_name: "author"))
67
+ Application.add_member(:application_id, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "applicationId"))
68
+ Application.add_member(:author, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "author"))
68
69
  Application.add_member(:creation_time, Shapes::ShapeRef.new(shape: __string, location_name: "creationTime"))
69
- Application.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
70
- Application.add_member(:labels, Shapes::ShapeRef.new(shape: ListOf__string, location_name: "labels"))
70
+ Application.add_member(:description, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "description"))
71
+ Application.add_member(:home_page_url, Shapes::ShapeRef.new(shape: __string, location_name: "homePageUrl"))
72
+ Application.add_member(:labels, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "labels"))
71
73
  Application.add_member(:license_url, Shapes::ShapeRef.new(shape: __string, location_name: "licenseUrl"))
72
- Application.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
74
+ Application.add_member(:name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "name"))
73
75
  Application.add_member(:readme_url, Shapes::ShapeRef.new(shape: __string, location_name: "readmeUrl"))
74
76
  Application.add_member(:spdx_license_id, Shapes::ShapeRef.new(shape: __string, location_name: "spdxLicenseId"))
75
77
  Application.add_member(:version, Shapes::ShapeRef.new(shape: Version, location_name: "version"))
76
78
  Application.struct_class = Types::Application
77
79
 
78
- ApplicationPage.add_member(:applications, Shapes::ShapeRef.new(shape: ListOfApplicationSummary, location_name: "applications"))
80
+ ApplicationPage.add_member(:applications, Shapes::ShapeRef.new(shape: __listOfApplicationSummary, required: true, location_name: "applications"))
79
81
  ApplicationPage.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location_name: "nextToken"))
80
82
  ApplicationPage.struct_class = Types::ApplicationPage
81
83
 
82
- ApplicationPolicy.add_member(:statements, Shapes::ShapeRef.new(shape: ListOfApplicationPolicyStatement, location_name: "statements"))
84
+ ApplicationPolicy.add_member(:statements, Shapes::ShapeRef.new(shape: __listOfApplicationPolicyStatement, required: true, location_name: "statements"))
83
85
  ApplicationPolicy.struct_class = Types::ApplicationPolicy
84
86
 
85
- ApplicationPolicyStatement.add_member(:actions, Shapes::ShapeRef.new(shape: ListOf__string, location_name: "actions"))
86
- ApplicationPolicyStatement.add_member(:principals, Shapes::ShapeRef.new(shape: ListOf__string, location_name: "principals"))
87
+ ApplicationPolicyStatement.add_member(:actions, Shapes::ShapeRef.new(shape: __listOf__string, required: true, location_name: "actions"))
88
+ ApplicationPolicyStatement.add_member(:principals, Shapes::ShapeRef.new(shape: __listOf__string, required: true, location_name: "principals"))
87
89
  ApplicationPolicyStatement.add_member(:statement_id, Shapes::ShapeRef.new(shape: __string, location_name: "statementId"))
88
90
  ApplicationPolicyStatement.struct_class = Types::ApplicationPolicyStatement
89
91
 
90
- ApplicationSummary.add_member(:application_id, Shapes::ShapeRef.new(shape: __string, location_name: "applicationId"))
91
- ApplicationSummary.add_member(:author, Shapes::ShapeRef.new(shape: __string, location_name: "author"))
92
+ ApplicationSummary.add_member(:application_id, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "applicationId"))
93
+ ApplicationSummary.add_member(:author, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "author"))
92
94
  ApplicationSummary.add_member(:creation_time, Shapes::ShapeRef.new(shape: __string, location_name: "creationTime"))
93
- ApplicationSummary.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
94
- ApplicationSummary.add_member(:labels, Shapes::ShapeRef.new(shape: ListOf__string, location_name: "labels"))
95
- ApplicationSummary.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
95
+ ApplicationSummary.add_member(:description, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "description"))
96
+ ApplicationSummary.add_member(:home_page_url, Shapes::ShapeRef.new(shape: __string, location_name: "homePageUrl"))
97
+ ApplicationSummary.add_member(:labels, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "labels"))
98
+ ApplicationSummary.add_member(:name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "name"))
96
99
  ApplicationSummary.add_member(:spdx_license_id, Shapes::ShapeRef.new(shape: __string, location_name: "spdxLicenseId"))
97
100
  ApplicationSummary.struct_class = Types::ApplicationSummary
98
101
 
99
102
  ApplicationVersionPage.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location_name: "nextToken"))
100
- ApplicationVersionPage.add_member(:versions, Shapes::ShapeRef.new(shape: ListOfVersionSummary, location_name: "versions"))
103
+ ApplicationVersionPage.add_member(:versions, Shapes::ShapeRef.new(shape: __listOfVersionSummary, required: true, location_name: "versions"))
101
104
  ApplicationVersionPage.struct_class = Types::ApplicationVersionPage
102
105
 
103
- ChangeSetDetails.add_member(:application_id, Shapes::ShapeRef.new(shape: __string, location_name: "applicationId"))
104
- ChangeSetDetails.add_member(:change_set_id, Shapes::ShapeRef.new(shape: __string, location_name: "changeSetId"))
105
- ChangeSetDetails.add_member(:semantic_version, Shapes::ShapeRef.new(shape: __string, location_name: "semanticVersion"))
106
- ChangeSetDetails.add_member(:stack_id, Shapes::ShapeRef.new(shape: __string, location_name: "stackId"))
106
+ ChangeSetDetails.add_member(:application_id, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "applicationId"))
107
+ ChangeSetDetails.add_member(:change_set_id, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "changeSetId"))
108
+ ChangeSetDetails.add_member(:semantic_version, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "semanticVersion"))
109
+ ChangeSetDetails.add_member(:stack_id, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "stackId"))
107
110
  ChangeSetDetails.struct_class = Types::ChangeSetDetails
108
111
 
109
- CreateApplicationInput.add_member(:author, Shapes::ShapeRef.new(shape: __string, location_name: "author"))
110
- CreateApplicationInput.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
111
- CreateApplicationInput.add_member(:labels, Shapes::ShapeRef.new(shape: ListOf__string, location_name: "labels"))
112
+ CreateApplicationInput.add_member(:author, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "author"))
113
+ CreateApplicationInput.add_member(:description, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "description"))
114
+ CreateApplicationInput.add_member(:home_page_url, Shapes::ShapeRef.new(shape: __string, location_name: "homePageUrl"))
115
+ CreateApplicationInput.add_member(:labels, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "labels"))
112
116
  CreateApplicationInput.add_member(:license_body, Shapes::ShapeRef.new(shape: __string, location_name: "licenseBody"))
113
117
  CreateApplicationInput.add_member(:license_url, Shapes::ShapeRef.new(shape: __string, location_name: "licenseUrl"))
114
- CreateApplicationInput.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
118
+ CreateApplicationInput.add_member(:name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "name"))
115
119
  CreateApplicationInput.add_member(:readme_body, Shapes::ShapeRef.new(shape: __string, location_name: "readmeBody"))
116
120
  CreateApplicationInput.add_member(:readme_url, Shapes::ShapeRef.new(shape: __string, location_name: "readmeUrl"))
117
121
  CreateApplicationInput.add_member(:semantic_version, Shapes::ShapeRef.new(shape: __string, location_name: "semanticVersion"))
@@ -123,7 +127,8 @@ module Aws::ServerlessApplicationRepository
123
127
 
124
128
  CreateApplicationRequest.add_member(:author, Shapes::ShapeRef.new(shape: __string, location_name: "author"))
125
129
  CreateApplicationRequest.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
126
- CreateApplicationRequest.add_member(:labels, Shapes::ShapeRef.new(shape: ListOf__string, location_name: "labels"))
130
+ CreateApplicationRequest.add_member(:home_page_url, Shapes::ShapeRef.new(shape: __string, location_name: "homePageUrl"))
131
+ CreateApplicationRequest.add_member(:labels, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "labels"))
127
132
  CreateApplicationRequest.add_member(:license_body, Shapes::ShapeRef.new(shape: __string, location_name: "licenseBody"))
128
133
  CreateApplicationRequest.add_member(:license_url, Shapes::ShapeRef.new(shape: __string, location_name: "licenseUrl"))
129
134
  CreateApplicationRequest.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
@@ -140,7 +145,8 @@ module Aws::ServerlessApplicationRepository
140
145
  CreateApplicationResponse.add_member(:author, Shapes::ShapeRef.new(shape: __string, location_name: "author"))
141
146
  CreateApplicationResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: __string, location_name: "creationTime"))
142
147
  CreateApplicationResponse.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
143
- CreateApplicationResponse.add_member(:labels, Shapes::ShapeRef.new(shape: ListOf__string, location_name: "labels"))
148
+ CreateApplicationResponse.add_member(:home_page_url, Shapes::ShapeRef.new(shape: __string, location_name: "homePageUrl"))
149
+ CreateApplicationResponse.add_member(:labels, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "labels"))
144
150
  CreateApplicationResponse.add_member(:license_url, Shapes::ShapeRef.new(shape: __string, location_name: "licenseUrl"))
145
151
  CreateApplicationResponse.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
146
152
  CreateApplicationResponse.add_member(:readme_url, Shapes::ShapeRef.new(shape: __string, location_name: "readmeUrl"))
@@ -162,19 +168,19 @@ module Aws::ServerlessApplicationRepository
162
168
 
163
169
  CreateApplicationVersionResponse.add_member(:application_id, Shapes::ShapeRef.new(shape: __string, location_name: "applicationId"))
164
170
  CreateApplicationVersionResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: __string, location_name: "creationTime"))
165
- CreateApplicationVersionResponse.add_member(:parameter_definitions, Shapes::ShapeRef.new(shape: ListOfParameterDefinition, location_name: "parameterDefinitions"))
171
+ CreateApplicationVersionResponse.add_member(:parameter_definitions, Shapes::ShapeRef.new(shape: __listOfParameterDefinition, location_name: "parameterDefinitions"))
166
172
  CreateApplicationVersionResponse.add_member(:semantic_version, Shapes::ShapeRef.new(shape: __string, location_name: "semanticVersion"))
167
173
  CreateApplicationVersionResponse.add_member(:source_code_url, Shapes::ShapeRef.new(shape: __string, location_name: "sourceCodeUrl"))
168
174
  CreateApplicationVersionResponse.add_member(:template_url, Shapes::ShapeRef.new(shape: __string, location_name: "templateUrl"))
169
175
  CreateApplicationVersionResponse.struct_class = Types::CreateApplicationVersionResponse
170
176
 
171
- CreateCloudFormationChangeSetInput.add_member(:parameter_overrides, Shapes::ShapeRef.new(shape: ListOfParameterValue, location_name: "parameterOverrides"))
177
+ CreateCloudFormationChangeSetInput.add_member(:parameter_overrides, Shapes::ShapeRef.new(shape: __listOfParameterValue, location_name: "parameterOverrides"))
172
178
  CreateCloudFormationChangeSetInput.add_member(:semantic_version, Shapes::ShapeRef.new(shape: __string, location_name: "semanticVersion"))
173
- CreateCloudFormationChangeSetInput.add_member(:stack_name, Shapes::ShapeRef.new(shape: __string, location_name: "stackName"))
179
+ CreateCloudFormationChangeSetInput.add_member(:stack_name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "stackName"))
174
180
  CreateCloudFormationChangeSetInput.struct_class = Types::CreateCloudFormationChangeSetInput
175
181
 
176
182
  CreateCloudFormationChangeSetRequest.add_member(:application_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "applicationId"))
177
- CreateCloudFormationChangeSetRequest.add_member(:parameter_overrides, Shapes::ShapeRef.new(shape: ListOfParameterValue, location_name: "parameterOverrides"))
183
+ CreateCloudFormationChangeSetRequest.add_member(:parameter_overrides, Shapes::ShapeRef.new(shape: __listOfParameterValue, location_name: "parameterOverrides"))
178
184
  CreateCloudFormationChangeSetRequest.add_member(:semantic_version, Shapes::ShapeRef.new(shape: __string, location_name: "semanticVersion"))
179
185
  CreateCloudFormationChangeSetRequest.add_member(:stack_name, Shapes::ShapeRef.new(shape: __string, location_name: "stackName"))
180
186
  CreateCloudFormationChangeSetRequest.struct_class = Types::CreateCloudFormationChangeSetRequest
@@ -185,10 +191,13 @@ module Aws::ServerlessApplicationRepository
185
191
  CreateCloudFormationChangeSetResponse.add_member(:stack_id, Shapes::ShapeRef.new(shape: __string, location_name: "stackId"))
186
192
  CreateCloudFormationChangeSetResponse.struct_class = Types::CreateCloudFormationChangeSetResponse
187
193
 
194
+ DeleteApplicationRequest.add_member(:application_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "applicationId"))
195
+ DeleteApplicationRequest.struct_class = Types::DeleteApplicationRequest
196
+
188
197
  GetApplicationPolicyRequest.add_member(:application_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "applicationId"))
189
198
  GetApplicationPolicyRequest.struct_class = Types::GetApplicationPolicyRequest
190
199
 
191
- GetApplicationPolicyResponse.add_member(:statements, Shapes::ShapeRef.new(shape: ListOfApplicationPolicyStatement, location_name: "statements"))
200
+ GetApplicationPolicyResponse.add_member(:statements, Shapes::ShapeRef.new(shape: __listOfApplicationPolicyStatement, location_name: "statements"))
192
201
  GetApplicationPolicyResponse.struct_class = Types::GetApplicationPolicyResponse
193
202
 
194
203
  GetApplicationRequest.add_member(:application_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "applicationId"))
@@ -199,7 +208,8 @@ module Aws::ServerlessApplicationRepository
199
208
  GetApplicationResponse.add_member(:author, Shapes::ShapeRef.new(shape: __string, location_name: "author"))
200
209
  GetApplicationResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: __string, location_name: "creationTime"))
201
210
  GetApplicationResponse.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
202
- GetApplicationResponse.add_member(:labels, Shapes::ShapeRef.new(shape: ListOf__string, location_name: "labels"))
211
+ GetApplicationResponse.add_member(:home_page_url, Shapes::ShapeRef.new(shape: __string, location_name: "homePageUrl"))
212
+ GetApplicationResponse.add_member(:labels, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "labels"))
203
213
  GetApplicationResponse.add_member(:license_url, Shapes::ShapeRef.new(shape: __string, location_name: "licenseUrl"))
204
214
  GetApplicationResponse.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
205
215
  GetApplicationResponse.add_member(:readme_url, Shapes::ShapeRef.new(shape: __string, location_name: "readmeUrl"))
@@ -213,31 +223,19 @@ module Aws::ServerlessApplicationRepository
213
223
  ListApplicationVersionsRequest.struct_class = Types::ListApplicationVersionsRequest
214
224
 
215
225
  ListApplicationVersionsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location_name: "nextToken"))
216
- ListApplicationVersionsResponse.add_member(:versions, Shapes::ShapeRef.new(shape: ListOfVersionSummary, location_name: "versions"))
226
+ ListApplicationVersionsResponse.add_member(:versions, Shapes::ShapeRef.new(shape: __listOfVersionSummary, location_name: "versions"))
217
227
  ListApplicationVersionsResponse.struct_class = Types::ListApplicationVersionsResponse
218
228
 
219
229
  ListApplicationsRequest.add_member(:max_items, Shapes::ShapeRef.new(shape: MaxItems, location: "querystring", location_name: "maxItems"))
220
230
  ListApplicationsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location: "querystring", location_name: "nextToken"))
221
231
  ListApplicationsRequest.struct_class = Types::ListApplicationsRequest
222
232
 
223
- ListApplicationsResponse.add_member(:applications, Shapes::ShapeRef.new(shape: ListOfApplicationSummary, location_name: "applications"))
233
+ ListApplicationsResponse.add_member(:applications, Shapes::ShapeRef.new(shape: __listOfApplicationSummary, location_name: "applications"))
224
234
  ListApplicationsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location_name: "nextToken"))
225
235
  ListApplicationsResponse.struct_class = Types::ListApplicationsResponse
226
236
 
227
- ListOfApplicationPolicyStatement.member = Shapes::ShapeRef.new(shape: ApplicationPolicyStatement)
228
-
229
- ListOfApplicationSummary.member = Shapes::ShapeRef.new(shape: ApplicationSummary)
230
-
231
- ListOfParameterDefinition.member = Shapes::ShapeRef.new(shape: ParameterDefinition)
232
-
233
- ListOfParameterValue.member = Shapes::ShapeRef.new(shape: ParameterValue)
234
-
235
- ListOfVersionSummary.member = Shapes::ShapeRef.new(shape: VersionSummary)
236
-
237
- ListOf__string.member = Shapes::ShapeRef.new(shape: __string)
238
-
239
237
  ParameterDefinition.add_member(:allowed_pattern, Shapes::ShapeRef.new(shape: __string, location_name: "allowedPattern"))
240
- ParameterDefinition.add_member(:allowed_values, Shapes::ShapeRef.new(shape: ListOf__string, location_name: "allowedValues"))
238
+ ParameterDefinition.add_member(:allowed_values, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "allowedValues"))
241
239
  ParameterDefinition.add_member(:constraint_description, Shapes::ShapeRef.new(shape: __string, location_name: "constraintDescription"))
242
240
  ParameterDefinition.add_member(:default_value, Shapes::ShapeRef.new(shape: __string, location_name: "defaultValue"))
243
241
  ParameterDefinition.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
@@ -245,26 +243,27 @@ module Aws::ServerlessApplicationRepository
245
243
  ParameterDefinition.add_member(:max_value, Shapes::ShapeRef.new(shape: __integer, location_name: "maxValue"))
246
244
  ParameterDefinition.add_member(:min_length, Shapes::ShapeRef.new(shape: __integer, location_name: "minLength"))
247
245
  ParameterDefinition.add_member(:min_value, Shapes::ShapeRef.new(shape: __integer, location_name: "minValue"))
248
- ParameterDefinition.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
246
+ ParameterDefinition.add_member(:name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "name"))
249
247
  ParameterDefinition.add_member(:no_echo, Shapes::ShapeRef.new(shape: __boolean, location_name: "noEcho"))
250
- ParameterDefinition.add_member(:referenced_by_resources, Shapes::ShapeRef.new(shape: ListOf__string, location_name: "referencedByResources"))
248
+ ParameterDefinition.add_member(:referenced_by_resources, Shapes::ShapeRef.new(shape: __listOf__string, required: true, location_name: "referencedByResources"))
251
249
  ParameterDefinition.add_member(:type, Shapes::ShapeRef.new(shape: __string, location_name: "type"))
252
250
  ParameterDefinition.struct_class = Types::ParameterDefinition
253
251
 
254
- ParameterValue.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
255
- ParameterValue.add_member(:value, Shapes::ShapeRef.new(shape: __string, location_name: "value"))
252
+ ParameterValue.add_member(:name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "name"))
253
+ ParameterValue.add_member(:value, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "value"))
256
254
  ParameterValue.struct_class = Types::ParameterValue
257
255
 
258
256
  PutApplicationPolicyRequest.add_member(:application_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "applicationId"))
259
- PutApplicationPolicyRequest.add_member(:statements, Shapes::ShapeRef.new(shape: ListOfApplicationPolicyStatement, location_name: "statements"))
257
+ PutApplicationPolicyRequest.add_member(:statements, Shapes::ShapeRef.new(shape: __listOfApplicationPolicyStatement, location_name: "statements"))
260
258
  PutApplicationPolicyRequest.struct_class = Types::PutApplicationPolicyRequest
261
259
 
262
- PutApplicationPolicyResponse.add_member(:statements, Shapes::ShapeRef.new(shape: ListOfApplicationPolicyStatement, location_name: "statements"))
260
+ PutApplicationPolicyResponse.add_member(:statements, Shapes::ShapeRef.new(shape: __listOfApplicationPolicyStatement, location_name: "statements"))
263
261
  PutApplicationPolicyResponse.struct_class = Types::PutApplicationPolicyResponse
264
262
 
265
263
  UpdateApplicationInput.add_member(:author, Shapes::ShapeRef.new(shape: __string, location_name: "author"))
266
264
  UpdateApplicationInput.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
267
- UpdateApplicationInput.add_member(:labels, Shapes::ShapeRef.new(shape: ListOf__string, location_name: "labels"))
265
+ UpdateApplicationInput.add_member(:home_page_url, Shapes::ShapeRef.new(shape: __string, location_name: "homePageUrl"))
266
+ UpdateApplicationInput.add_member(:labels, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "labels"))
268
267
  UpdateApplicationInput.add_member(:readme_body, Shapes::ShapeRef.new(shape: __string, location_name: "readmeBody"))
269
268
  UpdateApplicationInput.add_member(:readme_url, Shapes::ShapeRef.new(shape: __string, location_name: "readmeUrl"))
270
269
  UpdateApplicationInput.struct_class = Types::UpdateApplicationInput
@@ -272,7 +271,8 @@ module Aws::ServerlessApplicationRepository
272
271
  UpdateApplicationRequest.add_member(:application_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "applicationId"))
273
272
  UpdateApplicationRequest.add_member(:author, Shapes::ShapeRef.new(shape: __string, location_name: "author"))
274
273
  UpdateApplicationRequest.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
275
- UpdateApplicationRequest.add_member(:labels, Shapes::ShapeRef.new(shape: ListOf__string, location_name: "labels"))
274
+ UpdateApplicationRequest.add_member(:home_page_url, Shapes::ShapeRef.new(shape: __string, location_name: "homePageUrl"))
275
+ UpdateApplicationRequest.add_member(:labels, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "labels"))
276
276
  UpdateApplicationRequest.add_member(:readme_body, Shapes::ShapeRef.new(shape: __string, location_name: "readmeBody"))
277
277
  UpdateApplicationRequest.add_member(:readme_url, Shapes::ShapeRef.new(shape: __string, location_name: "readmeUrl"))
278
278
  UpdateApplicationRequest.struct_class = Types::UpdateApplicationRequest
@@ -281,7 +281,8 @@ module Aws::ServerlessApplicationRepository
281
281
  UpdateApplicationResponse.add_member(:author, Shapes::ShapeRef.new(shape: __string, location_name: "author"))
282
282
  UpdateApplicationResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: __string, location_name: "creationTime"))
283
283
  UpdateApplicationResponse.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
284
- UpdateApplicationResponse.add_member(:labels, Shapes::ShapeRef.new(shape: ListOf__string, location_name: "labels"))
284
+ UpdateApplicationResponse.add_member(:home_page_url, Shapes::ShapeRef.new(shape: __string, location_name: "homePageUrl"))
285
+ UpdateApplicationResponse.add_member(:labels, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "labels"))
285
286
  UpdateApplicationResponse.add_member(:license_url, Shapes::ShapeRef.new(shape: __string, location_name: "licenseUrl"))
286
287
  UpdateApplicationResponse.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
287
288
  UpdateApplicationResponse.add_member(:readme_url, Shapes::ShapeRef.new(shape: __string, location_name: "readmeUrl"))
@@ -289,20 +290,32 @@ module Aws::ServerlessApplicationRepository
289
290
  UpdateApplicationResponse.add_member(:version, Shapes::ShapeRef.new(shape: Version, location_name: "version"))
290
291
  UpdateApplicationResponse.struct_class = Types::UpdateApplicationResponse
291
292
 
292
- Version.add_member(:application_id, Shapes::ShapeRef.new(shape: __string, location_name: "applicationId"))
293
- Version.add_member(:creation_time, Shapes::ShapeRef.new(shape: __string, location_name: "creationTime"))
294
- Version.add_member(:parameter_definitions, Shapes::ShapeRef.new(shape: ListOfParameterDefinition, location_name: "parameterDefinitions"))
295
- Version.add_member(:semantic_version, Shapes::ShapeRef.new(shape: __string, location_name: "semanticVersion"))
293
+ Version.add_member(:application_id, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "applicationId"))
294
+ Version.add_member(:creation_time, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "creationTime"))
295
+ Version.add_member(:parameter_definitions, Shapes::ShapeRef.new(shape: __listOfParameterDefinition, required: true, location_name: "parameterDefinitions"))
296
+ Version.add_member(:semantic_version, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "semanticVersion"))
296
297
  Version.add_member(:source_code_url, Shapes::ShapeRef.new(shape: __string, location_name: "sourceCodeUrl"))
297
- Version.add_member(:template_url, Shapes::ShapeRef.new(shape: __string, location_name: "templateUrl"))
298
+ Version.add_member(:template_url, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "templateUrl"))
298
299
  Version.struct_class = Types::Version
299
300
 
300
- VersionSummary.add_member(:application_id, Shapes::ShapeRef.new(shape: __string, location_name: "applicationId"))
301
- VersionSummary.add_member(:creation_time, Shapes::ShapeRef.new(shape: __string, location_name: "creationTime"))
302
- VersionSummary.add_member(:semantic_version, Shapes::ShapeRef.new(shape: __string, location_name: "semanticVersion"))
301
+ VersionSummary.add_member(:application_id, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "applicationId"))
302
+ VersionSummary.add_member(:creation_time, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "creationTime"))
303
+ VersionSummary.add_member(:semantic_version, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "semanticVersion"))
303
304
  VersionSummary.add_member(:source_code_url, Shapes::ShapeRef.new(shape: __string, location_name: "sourceCodeUrl"))
304
305
  VersionSummary.struct_class = Types::VersionSummary
305
306
 
307
+ __listOfApplicationPolicyStatement.member = Shapes::ShapeRef.new(shape: ApplicationPolicyStatement)
308
+
309
+ __listOfApplicationSummary.member = Shapes::ShapeRef.new(shape: ApplicationSummary)
310
+
311
+ __listOfParameterDefinition.member = Shapes::ShapeRef.new(shape: ParameterDefinition)
312
+
313
+ __listOfParameterValue.member = Shapes::ShapeRef.new(shape: ParameterValue)
314
+
315
+ __listOfVersionSummary.member = Shapes::ShapeRef.new(shape: VersionSummary)
316
+
317
+ __listOf__string.member = Shapes::ShapeRef.new(shape: __string)
318
+
306
319
 
307
320
  # @api private
308
321
  API = Seahorse::Model::Api.new.tap do |api|
@@ -356,6 +369,20 @@ module Aws::ServerlessApplicationRepository
356
369
  o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
357
370
  end)
358
371
 
372
+ api.add_operation(:delete_application, Seahorse::Model::Operation.new.tap do |o|
373
+ o.name = "DeleteApplication"
374
+ o.http_method = "DELETE"
375
+ o.http_request_uri = "/applications/{applicationId}"
376
+ o.input = Shapes::ShapeRef.new(shape: DeleteApplicationRequest)
377
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
378
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
379
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
380
+ o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
381
+ o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
382
+ o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
383
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
384
+ end)
385
+
359
386
  api.add_operation(:get_application, Seahorse::Model::Operation.new.tap do |o|
360
387
  o.name = "GetApplication"
361
388
  o.http_method = "GET"
@@ -393,6 +420,12 @@ module Aws::ServerlessApplicationRepository
393
420
  o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
394
421
  o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
395
422
  o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
423
+ o[:pager] = Aws::Pager.new(
424
+ limit_key: "max_items",
425
+ tokens: {
426
+ "next_token" => "next_token"
427
+ }
428
+ )
396
429
  end)
397
430
 
398
431
  api.add_operation(:list_applications, Seahorse::Model::Operation.new.tap do |o|
@@ -405,6 +438,12 @@ module Aws::ServerlessApplicationRepository
405
438
  o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
406
439
  o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
407
440
  o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
441
+ o[:pager] = Aws::Pager.new(
442
+ limit_key: "max_items",
443
+ tokens: {
444
+ "next_token" => "next_token"
445
+ }
446
+ )
408
447
  end)
409
448
 
410
449
  api.add_operation(:put_application_policy, Seahorse::Model::Operation.new.tap do |o|
@@ -433,15 +472,6 @@ module Aws::ServerlessApplicationRepository
433
472
  o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
434
473
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
435
474
  end)
436
-
437
- api.add_authorizer(:authorization_strategy, Seahorse::Model::Authorizer.new.tap do |a|
438
- a.name = "authorization_strategy"
439
- a.type = "provided"
440
- a.placement = {
441
- :location => "header",
442
- :name => "Authorization"
443
- }
444
- end)
445
475
  end
446
476
 
447
477
  end
@@ -15,9 +15,11 @@ module Aws::ServerlessApplicationRepository
15
15
  # @return [String]
16
16
  #
17
17
  # @!attribute [rw] author
18
- # The name of the author publishing the app.\\nMin Length=1. Max
19
- # Length=127.\\nPattern
20
- # "^\[a-z0-9\]((\[a-z0-9\]\|-(?!-))*\[a-z0-9\])?$";
18
+ # The name of the author publishing the app.
19
+ #
20
+ # Min Length=1. Max Length=127.
21
+ #
22
+ # Pattern "^\[a-z0-9\]((\[a-z0-9\]\|-(?!-))*\[a-z0-9\])?$";
21
23
  # @return [String]
22
24
  #
23
25
  # @!attribute [rw] creation_time
@@ -25,29 +27,44 @@ module Aws::ServerlessApplicationRepository
25
27
  # @return [String]
26
28
  #
27
29
  # @!attribute [rw] description
28
- # The description of the application.\\nMin Length=1. Max Length=256
30
+ # The description of the application.
31
+ #
32
+ # Min Length=1. Max Length=256
33
+ # @return [String]
34
+ #
35
+ # @!attribute [rw] home_page_url
36
+ # A URL with more information about the application, for example the
37
+ # location of your GitHub repository for the application.
29
38
  # @return [String]
30
39
  #
31
40
  # @!attribute [rw] labels
32
- # Labels to improve discovery of apps in search results.\\nMin
33
- # Length=1. Max Length=127. Maximum number of labels: 10\\nPattern:
34
- # "^\[a-zA-Z0-9+\\\\-\_:\\\\/@\]+$";
41
+ # Labels to improve discovery of apps in search results.
42
+ #
43
+ # Min Length=1. Max Length=127. Maximum number of labels: 10
44
+ #
45
+ # Pattern: "^\[a-zA-Z0-9+\\\\-\_:\\\\/@\]+$";
35
46
  # @return [Array<String>]
36
47
  #
37
48
  # @!attribute [rw] license_url
38
49
  # A link to a license file of the app that matches the spdxLicenseID
39
- # of your application.\\nMax size 5 MB
50
+ # of your application.
51
+ #
52
+ # Max size 5 MB
40
53
  # @return [String]
41
54
  #
42
55
  # @!attribute [rw] name
43
- # The name of the application.\\nMin Length=1. Max
44
- # Length=140\\nPattern: "\[a-zA-Z0-9\\\\-\]+";
56
+ # The name of the application.
57
+ #
58
+ # Min Length=1. Max Length=140
59
+ #
60
+ # Pattern: "\[a-zA-Z0-9\\\\-\]+";
45
61
  # @return [String]
46
62
  #
47
63
  # @!attribute [rw] readme_url
48
- # A link to the Readme file that contains a more detailed description
49
- # of the application and how it works in markdown language.\\nMax size
50
- # 5 MB
64
+ # A link to the readme file that contains a more detailed description
65
+ # of the application and how it works in Markdown language.
66
+ #
67
+ # Max size 5 MB
51
68
  # @return [String]
52
69
  #
53
70
  # @!attribute [rw] spdx_license_id
@@ -65,6 +82,7 @@ module Aws::ServerlessApplicationRepository
65
82
  :author,
66
83
  :creation_time,
67
84
  :description,
85
+ :home_page_url,
68
86
  :labels,
69
87
  :license_url,
70
88
  :name,
@@ -111,16 +129,23 @@ module Aws::ServerlessApplicationRepository
111
129
  # data as a hash:
112
130
  #
113
131
  # {
114
- # actions: ["__string"],
115
- # principals: ["__string"],
132
+ # actions: ["__string"], # required
133
+ # principals: ["__string"], # required
116
134
  # statement_id: "__string",
117
135
  # }
118
136
  #
119
137
  # @!attribute [rw] actions
120
- # A list of supported actions:\\n\\n GetApplication \\n \\n\\n
121
- # CreateCloudFormationChangeSet \\n \\n\\n ListApplicationVersions \\n
122
- # \\n\\n SearchApplications \\n \\n\\n Deploy (Note: This action
123
- # enables all other actions above.)
138
+ # A list of supported actions:
139
+ #
140
+ # GetApplication
141
+ #
142
+ # CreateCloudFormationChangeSet
143
+ #
144
+ # ListApplicationVersions
145
+ #
146
+ # SearchApplications
147
+ #
148
+ # Deploy (Note: This action enables all other actions above.)
124
149
  # @return [Array<String>]
125
150
  #
126
151
  # @!attribute [rw] principals
@@ -147,9 +172,11 @@ module Aws::ServerlessApplicationRepository
147
172
  # @return [String]
148
173
  #
149
174
  # @!attribute [rw] author
150
- # The name of the author publishing the app\\nMin Length=1. Max
151
- # Length=127.\\nPattern
152
- # "^\[a-z0-9\]((\[a-z0-9\]\|-(?!-))*\[a-z0-9\])?$";
175
+ # The name of the author publishing the app.
176
+ #
177
+ # Min Length=1. Max Length=127.
178
+ #
179
+ # Pattern "^\[a-z0-9\]((\[a-z0-9\]\|-(?!-))*\[a-z0-9\])?$";
153
180
  # @return [String]
154
181
  #
155
182
  # @!attribute [rw] creation_time
@@ -157,22 +184,35 @@ module Aws::ServerlessApplicationRepository
157
184
  # @return [String]
158
185
  #
159
186
  # @!attribute [rw] description
160
- # The description of the application.\\nMin Length=1. Max Length=256
187
+ # The description of the application.
188
+ #
189
+ # Min Length=1. Max Length=256
190
+ # @return [String]
191
+ #
192
+ # @!attribute [rw] home_page_url
193
+ # A URL with more information about the application, for example the
194
+ # location of your GitHub repository for the application.
161
195
  # @return [String]
162
196
  #
163
197
  # @!attribute [rw] labels
164
- # Labels to improve discovery of apps in search results.\\nMin
165
- # Length=1. Max Length=127. Maximum number of labels: 10\\nPattern:
166
- # "^\[a-zA-Z0-9+\\\\-\_:\\\\/@\]+$";
198
+ # Labels to improve discovery of apps in search results.
199
+ #
200
+ # Min Length=1. Max Length=127. Maximum number of labels: 10
201
+ #
202
+ # Pattern: "^\[a-zA-Z0-9+\\\\-\_:\\\\/@\]+$";
167
203
  # @return [Array<String>]
168
204
  #
169
205
  # @!attribute [rw] name
170
- # The name of the application.\\nMin Length=1. Max
171
- # Length=140\\nPattern: "\[a-zA-Z0-9\\\\-\]+";
206
+ # The name of the application.
207
+ #
208
+ # Min Length=1. Max Length=140
209
+ #
210
+ # Pattern: "\[a-zA-Z0-9\\\\-\]+";
172
211
  # @return [String]
173
212
  #
174
213
  # @!attribute [rw] spdx_license_id
175
- # A valid identifier from https://spdx.org/licenses/ .
214
+ # A valid identifier from <a
215
+ # href=""https://spdx.org/licenses/"">https://spdx.org/licenses/</a>.
176
216
  # @return [String]
177
217
  #
178
218
  # @see http://docs.aws.amazon.com/goto/WebAPI/serverlessrepo-2017-09-08/ApplicationSummary AWS API Documentation
@@ -182,6 +222,7 @@ module Aws::ServerlessApplicationRepository
182
222
  :author,
183
223
  :creation_time,
184
224
  :description,
225
+ :home_page_url,
185
226
  :labels,
186
227
  :name,
187
228
  :spdx_license_id)
@@ -213,12 +254,17 @@ module Aws::ServerlessApplicationRepository
213
254
  # @return [String]
214
255
  #
215
256
  # @!attribute [rw] change_set_id
216
- # The ARN of the change set.\\nLength Constraints: Minimum length of
217
- # 1.\\nPattern: arn:\[-a-zA-Z0-9:/\]*
257
+ # The ARN of the change set.
258
+ #
259
+ # Length Constraints: Minimum length of 1.
260
+ #
261
+ # Pattern: Amazon Resource Name (ARN):\[-a-zA-Z0-9:/\]*
218
262
  # @return [String]
219
263
  #
220
264
  # @!attribute [rw] semantic_version
221
- # The semantic version of the application:\\n\\n https://semver.org/
265
+ # The semantic version of the application:
266
+ #
267
+ # <a href=""https://semver.org/"">https://semver.org/</a>
222
268
  # @return [String]
223
269
  #
224
270
  # @!attribute [rw] stack_id
@@ -238,50 +284,72 @@ module Aws::ServerlessApplicationRepository
238
284
  # Create application request.
239
285
  #
240
286
  # @!attribute [rw] author
241
- # The name of the author publishing the app.\\nMin Length=1. Max
242
- # Length=127.\\nPattern
243
- # "^\[a-z0-9\]((\[a-z0-9\]\|-(?!-))*\[a-z0-9\])?$";
287
+ # The name of the author publishing the app.
288
+ #
289
+ # Min Length=1. Max Length=127.
290
+ #
291
+ # Pattern "^\[a-z0-9\]((\[a-z0-9\]\|-(?!-))*\[a-z0-9\])?$";
244
292
  # @return [String]
245
293
  #
246
294
  # @!attribute [rw] description
247
- # The description of the application.\\nMin Length=1. Max Length=256
295
+ # The description of the application.
296
+ #
297
+ # Min Length=1. Max Length=256
298
+ # @return [String]
299
+ #
300
+ # @!attribute [rw] home_page_url
301
+ # A URL with more information about the application, for example the
302
+ # location of your GitHub repository for the application.
248
303
  # @return [String]
249
304
  #
250
305
  # @!attribute [rw] labels
251
- # Labels to improve discovery of apps in search results.\\nMin
252
- # Length=1. Max Length=127. Maximum number of labels: 10\\nPattern:
253
- # "^\[a-zA-Z0-9+\\\\-\_:\\\\/@\]+$";
306
+ # Labels to improve discovery of apps in search results.
307
+ #
308
+ # Min Length=1. Max Length=127. Maximum number of labels: 10
309
+ #
310
+ # Pattern: "^\[a-zA-Z0-9+\\\\-\_:\\\\/@\]+$";
254
311
  # @return [Array<String>]
255
312
  #
256
313
  # @!attribute [rw] license_body
257
314
  # A raw text file that contains the license of the app that matches
258
- # the spdxLicenseID of your application.\\nMax size 5 MB
315
+ # the spdxLicenseID of your application.
316
+ #
317
+ # Max size 5 MB
259
318
  # @return [String]
260
319
  #
261
320
  # @!attribute [rw] license_url
262
321
  # A link to a license file of the app that matches the spdxLicenseID
263
- # of your application.\\nMax size 5 MB
322
+ # of your application.
323
+ #
324
+ # Max size 5 MB
264
325
  # @return [String]
265
326
  #
266
327
  # @!attribute [rw] name
267
- # The name of the application you want to publish.\\nMin Length=1. Max
268
- # Length=140\\nPattern: "\[a-zA-Z0-9\\\\-\]+";
328
+ # The name of the application you want to publish.
329
+ #
330
+ # Min Length=1. Max Length=140
331
+ #
332
+ # Pattern: "\[a-zA-Z0-9\\\\-\]+";
269
333
  # @return [String]
270
334
  #
271
335
  # @!attribute [rw] readme_body
272
336
  # A raw text Readme file that contains a more detailed description of
273
- # the application and how it works in markdown language.\\nMax size 5
274
- # MB
337
+ # the application and how it works in markdown language.
338
+ #
339
+ # Max size 5 MB
275
340
  # @return [String]
276
341
  #
277
342
  # @!attribute [rw] readme_url
278
343
  # A link to the Readme file that contains a more detailed description
279
- # of the application and how it works in markdown language.\\nMax size
280
- # 5 MB
344
+ # of the application and how it works in markdown language.
345
+ #
346
+ # Max size 5 MB
281
347
  # @return [String]
282
348
  #
283
349
  # @!attribute [rw] semantic_version
284
- # The semantic version of the application:\\n\\n https://semver.org/
350
+ # The semantic version of the application:
351
+ #
352
+ # <a href=""https://semver.org/"">https://semver.org/</a>
285
353
  # @return [String]
286
354
  #
287
355
  # @!attribute [rw] source_code_url
@@ -290,15 +358,16 @@ module Aws::ServerlessApplicationRepository
290
358
  # @return [String]
291
359
  #
292
360
  # @!attribute [rw] spdx_license_id
293
- # A valid identifier from https://spdx.org/licenses/ .
361
+ # A valid identifier from <a
362
+ # href=""https://spdx.org/licenses/"">https://spdx.org/licenses/</a>.
294
363
  # @return [String]
295
364
  #
296
365
  # @!attribute [rw] template_body
297
- # The raw packaged SAM template of your application.
366
+ # The raw packaged AWS SAM template of your application.
298
367
  # @return [String]
299
368
  #
300
369
  # @!attribute [rw] template_url
301
- # A link to the packaged SAM template of your application.
370
+ # A link to the packaged AWS SAM template of your application.
302
371
  # @return [String]
303
372
  #
304
373
  # @see http://docs.aws.amazon.com/goto/WebAPI/serverlessrepo-2017-09-08/CreateApplicationInput AWS API Documentation
@@ -306,6 +375,7 @@ module Aws::ServerlessApplicationRepository
306
375
  class CreateApplicationInput < Struct.new(
307
376
  :author,
308
377
  :description,
378
+ :home_page_url,
309
379
  :labels,
310
380
  :license_body,
311
381
  :license_url,
@@ -326,6 +396,7 @@ module Aws::ServerlessApplicationRepository
326
396
  # {
327
397
  # author: "__string",
328
398
  # description: "__string",
399
+ # home_page_url: "__string",
329
400
  # labels: ["__string"],
330
401
  # license_body: "__string",
331
402
  # license_url: "__string",
@@ -345,6 +416,9 @@ module Aws::ServerlessApplicationRepository
345
416
  # @!attribute [rw] description
346
417
  # @return [String]
347
418
  #
419
+ # @!attribute [rw] home_page_url
420
+ # @return [String]
421
+ #
348
422
  # @!attribute [rw] labels
349
423
  # @return [Array<String>]
350
424
  #
@@ -383,6 +457,7 @@ module Aws::ServerlessApplicationRepository
383
457
  class CreateApplicationRequest < Struct.new(
384
458
  :author,
385
459
  :description,
460
+ :home_page_url,
386
461
  :labels,
387
462
  :license_body,
388
463
  :license_url,
@@ -409,6 +484,9 @@ module Aws::ServerlessApplicationRepository
409
484
  # @!attribute [rw] description
410
485
  # @return [String]
411
486
  #
487
+ # @!attribute [rw] home_page_url
488
+ # @return [String]
489
+ #
412
490
  # @!attribute [rw] labels
413
491
  # @return [Array<String>]
414
492
  #
@@ -435,6 +513,7 @@ module Aws::ServerlessApplicationRepository
435
513
  :author,
436
514
  :creation_time,
437
515
  :description,
516
+ :home_page_url,
438
517
  :labels,
439
518
  :license_url,
440
519
  :name,
@@ -452,11 +531,11 @@ module Aws::ServerlessApplicationRepository
452
531
  # @return [String]
453
532
  #
454
533
  # @!attribute [rw] template_body
455
- # The raw packaged SAM template of your application.
534
+ # The raw packaged AWS SAM template of your application.
456
535
  # @return [String]
457
536
  #
458
537
  # @!attribute [rw] template_url
459
- # A link to the packaged SAM template of your application.
538
+ # A link to the packaged AWS SAM template of your application.
460
539
  # @return [String]
461
540
  #
462
541
  # @see http://docs.aws.amazon.com/goto/WebAPI/serverlessrepo-2017-09-08/CreateApplicationVersionInput AWS API Documentation
@@ -542,15 +621,20 @@ module Aws::ServerlessApplicationRepository
542
621
  # @return [Array<Types::ParameterValue>]
543
622
  #
544
623
  # @!attribute [rw] semantic_version
545
- # The semantic version of the application:\\n\\n https://semver.org/
624
+ # The semantic version of the application:
625
+ #
626
+ # <a href=""https://semver.org/"">https://semver.org/</a>
546
627
  # @return [String]
547
628
  #
548
629
  # @!attribute [rw] stack_name
549
630
  # The name or the unique ID of the stack for which you are creating a
550
- # change set. AWS CloudFormation generates\\n the change set by
551
- # comparing this stack's information with the information that you
552
- # submit, such as a modified\\n template or different parameter input
553
- # values. \\nConstraints: Minimum length of 1.\\nPattern:
631
+ # change set. AWS CloudFormation generates the change set by comparing
632
+ # this stack's information with the information that you submit, such
633
+ # as a modified template or different parameter input values.
634
+ #
635
+ # Constraints: Minimum length of 1.
636
+ #
637
+ # Pattern:
554
638
  # (\[a-zA-Z\]\[-a-zA-Z0-9\]*)\|(arn:\\b(aws\|aws-us-gov\|aws-cn)\\b:\[-a-zA-Z0-9:/.\_+\]*)
555
639
  # @return [String]
556
640
  #
@@ -570,8 +654,8 @@ module Aws::ServerlessApplicationRepository
570
654
  # application_id: "__string", # required
571
655
  # parameter_overrides: [
572
656
  # {
573
- # name: "__string",
574
- # value: "__string",
657
+ # name: "__string", # required
658
+ # value: "__string", # required
575
659
  # },
576
660
  # ],
577
661
  # semantic_version: "__string",
@@ -622,6 +706,23 @@ module Aws::ServerlessApplicationRepository
622
706
  include Aws::Structure
623
707
  end
624
708
 
709
+ # @note When making an API call, you may pass DeleteApplicationRequest
710
+ # data as a hash:
711
+ #
712
+ # {
713
+ # application_id: "__string", # required
714
+ # }
715
+ #
716
+ # @!attribute [rw] application_id
717
+ # @return [String]
718
+ #
719
+ # @see http://docs.aws.amazon.com/goto/WebAPI/serverlessrepo-2017-09-08/DeleteApplicationRequest AWS API Documentation
720
+ #
721
+ class DeleteApplicationRequest < Struct.new(
722
+ :application_id)
723
+ include Aws::Structure
724
+ end
725
+
625
726
  # @note When making an API call, you may pass GetApplicationPolicyRequest
626
727
  # data as a hash:
627
728
  #
@@ -683,6 +784,9 @@ module Aws::ServerlessApplicationRepository
683
784
  # @!attribute [rw] description
684
785
  # @return [String]
685
786
  #
787
+ # @!attribute [rw] home_page_url
788
+ # @return [String]
789
+ #
686
790
  # @!attribute [rw] labels
687
791
  # @return [Array<String>]
688
792
  #
@@ -709,6 +813,7 @@ module Aws::ServerlessApplicationRepository
709
813
  :author,
710
814
  :creation_time,
711
815
  :description,
816
+ :home_page_url,
712
817
  :labels,
713
818
  :license_url,
714
819
  :name,
@@ -808,21 +913,25 @@ module Aws::ServerlessApplicationRepository
808
913
  #
809
914
  # @!attribute [rw] constraint_description
810
915
  # A string that explains a constraint when the constraint is violated.
811
- # For example, without a constraint description,\\n a parameter that
812
- # has an allowed pattern of \[A-Za-z0-9\]+ displays the following
813
- # error message when the user\\n specifies an invalid value:\\n\\n
916
+ # For example, without a constraint description, a parameter that has
917
+ # an allowed pattern of \[A-Za-z0-9\]+ displays the following error
918
+ # message when the user specifies an invalid value:
919
+ #
814
920
  # Malformed input-Parameter MyParameter must match pattern
815
- # \[A-Za-z0-9\]+ \\n \\nBy adding a constraint description, such as
816
- # "must contain only uppercase and lowercase letters, and numbers,"
817
- # you can display\\n the following customized error message:\\n\\n
921
+ # \[A-Za-z0-9\]+
922
+ #
923
+ # By adding a constraint description, such as "must contain only
924
+ # uppercase and lowercase letters, and numbers," you can display the
925
+ # following customized error message:
926
+ #
818
927
  # Malformed input-Parameter MyParameter must contain only uppercase
819
928
  # and lowercase letters and numbers.
820
929
  # @return [String]
821
930
  #
822
931
  # @!attribute [rw] default_value
823
932
  # A value of the appropriate type for the template to use if no value
824
- # is specified when a stack is created.\\n If you define constraints
825
- # for the parameter, you must specify a value that adheres to those
933
+ # is specified when a stack is created. If you define constraints for
934
+ # the parameter, you must specify a value that adheres to those
826
935
  # constraints.
827
936
  # @return [String]
828
937
  #
@@ -856,16 +965,46 @@ module Aws::ServerlessApplicationRepository
856
965
  #
857
966
  # @!attribute [rw] no_echo
858
967
  # Whether to mask the parameter value whenever anyone makes a call
859
- # that describes the stack. If you set the\\n value to true, the
968
+ # that describes the stack. If you set the value to true, the
860
969
  # parameter value is masked with asterisks (*****).
861
970
  # @return [Boolean]
862
971
  #
863
972
  # @!attribute [rw] referenced_by_resources
864
- # A list of SAM resources that use this parameter.
973
+ # A list of AWS SAM resources that use this parameter.
865
974
  # @return [Array<String>]
866
975
  #
867
976
  # @!attribute [rw] type
868
- # The type of the parameter.\\nValid values: String \| Number \| List<Number> | CommaDelimitedList \n \n\n String : A literal string.\nFor example, users could specify "MyUserName" .\n\n Number : An integer or float. AWS CloudFormation validates the parameter value as a number; however, when you use the\n parameter elsewhere in your template (for example, by using the Ref intrinsic function), the parameter value becomes a string.\nFor example, users could specify "8888" .\n\n List<Number> : An array of integers or floats that are separated by commas. AWS CloudFormation validates the parameter value as numbers; however, when\n you use the parameter elsewhere in your template (for example, by using the Ref intrinsic function), the parameter value becomes a list of strings.\nFor example, users could specify "80,20", and a Ref results in ["80","20"] .\n\n CommaDelimitedList : An array of literal strings that are separated by commas. The total number of strings should be one more than the total number of commas.\n Also, each member string is space-trimmed.\nFor example, users could specify "test,dev,prod", and a Ref results in ["test","dev","prod"] . </Number></Number>
977
+ # The type of the parameter.
978
+ #
979
+ # Valid values: String \| Number \| List&lt;Number> \|
980
+ # CommaDelimitedList
981
+ #
982
+ # String: A literal string.
983
+ #
984
+ # For example, users could specify "MyUserName".
985
+ #
986
+ # Number: An integer or float. AWS CloudFormation validates the
987
+ # parameter value as a number; however, when you use the parameter
988
+ # elsewhere in your template (for example, by using the Ref intrinsic
989
+ # function), the parameter value becomes a string.
990
+ #
991
+ # For example, users could specify "8888".
992
+ #
993
+ # List&lt;Number>: An array of integers or floats that are separated
994
+ # by commas. AWS CloudFormation validates the parameter value as
995
+ # numbers; however, when you use the parameter elsewhere in your
996
+ # template (for example, by using the Ref intrinsic function), the
997
+ # parameter value becomes a list of strings.
998
+ #
999
+ # For example, users could specify "80,20", and a Ref results in
1000
+ # \["80","20"\].
1001
+ #
1002
+ # CommaDelimitedList: An array of literal strings that are separated
1003
+ # by commas. The total number of strings should be one more than the
1004
+ # total number of commas. Also, each member string is space-trimmed.
1005
+ #
1006
+ # For example, users could specify "test,dev,prod", and a Ref
1007
+ # results in \["test","dev","prod"\].
869
1008
  # @return [String]
870
1009
  #
871
1010
  # @see http://docs.aws.amazon.com/goto/WebAPI/serverlessrepo-2017-09-08/ParameterDefinition AWS API Documentation
@@ -893,13 +1032,13 @@ module Aws::ServerlessApplicationRepository
893
1032
  # data as a hash:
894
1033
  #
895
1034
  # {
896
- # name: "__string",
897
- # value: "__string",
1035
+ # name: "__string", # required
1036
+ # value: "__string", # required
898
1037
  # }
899
1038
  #
900
1039
  # @!attribute [rw] name
901
1040
  # The key associated with the parameter. If you don't specify a key
902
- # and value for a particular parameter, AWS CloudFormation\\n uses the
1041
+ # and value for a particular parameter, AWS CloudFormation uses the
903
1042
  # default value that is specified in your template.
904
1043
  # @return [String]
905
1044
  #
@@ -922,8 +1061,8 @@ module Aws::ServerlessApplicationRepository
922
1061
  # application_id: "__string", # required
923
1062
  # statements: [
924
1063
  # {
925
- # actions: ["__string"],
926
- # principals: ["__string"],
1064
+ # actions: ["__string"], # required
1065
+ # principals: ["__string"], # required
927
1066
  # statement_id: "__string",
928
1067
  # },
929
1068
  # ],
@@ -956,31 +1095,44 @@ module Aws::ServerlessApplicationRepository
956
1095
  # Update application request.
957
1096
  #
958
1097
  # @!attribute [rw] author
959
- # The name of the author publishing the app.\\nMin Length=1. Max
960
- # Length=127.\\nPattern
961
- # "^\[a-z0-9\]((\[a-z0-9\]\|-(?!-))*\[a-z0-9\])?$";
1098
+ # The name of the author publishing the app.
1099
+ #
1100
+ # Min Length=1. Max Length=127.
1101
+ #
1102
+ # Pattern "^\[a-z0-9\]((\[a-z0-9\]\|-(?!-))*\[a-z0-9\])?$";
962
1103
  # @return [String]
963
1104
  #
964
1105
  # @!attribute [rw] description
965
- # The description of the application.\\nMin Length=1. Max Length=256
1106
+ # The description of the application.
1107
+ #
1108
+ # Min Length=1. Max Length=256
1109
+ # @return [String]
1110
+ #
1111
+ # @!attribute [rw] home_page_url
1112
+ # A URL with more information about the application, for example the
1113
+ # location of your GitHub repository for the application.
966
1114
  # @return [String]
967
1115
  #
968
1116
  # @!attribute [rw] labels
969
- # Labels to improve discovery of apps in search results.\\nMin
970
- # Length=1. Max Length=127. Maximum number of labels: 10\\nPattern:
971
- # "^\[a-zA-Z0-9+\\\\-\_:\\\\/@\]+$";
1117
+ # Labels to improve discovery of apps in search results.
1118
+ #
1119
+ # Min Length=1. Max Length=127. Maximum number of labels: 10
1120
+ #
1121
+ # Pattern: "^\[a-zA-Z0-9+\\\\-\_:\\\\/@\]+$";
972
1122
  # @return [Array<String>]
973
1123
  #
974
1124
  # @!attribute [rw] readme_body
975
1125
  # A raw text Readme file that contains a more detailed description of
976
- # the application and how it works in markdown language.\\nMax size 5
977
- # MB
1126
+ # the application and how it works in markdown language.
1127
+ #
1128
+ # Max size 5 MB
978
1129
  # @return [String]
979
1130
  #
980
1131
  # @!attribute [rw] readme_url
981
1132
  # A link to the Readme file that contains a more detailed description
982
- # of the application and how it works in markdown language.\\nMax size
983
- # 5 MB
1133
+ # of the application and how it works in markdown language.
1134
+ #
1135
+ # Max size 5 MB
984
1136
  # @return [String]
985
1137
  #
986
1138
  # @see http://docs.aws.amazon.com/goto/WebAPI/serverlessrepo-2017-09-08/UpdateApplicationInput AWS API Documentation
@@ -988,6 +1140,7 @@ module Aws::ServerlessApplicationRepository
988
1140
  class UpdateApplicationInput < Struct.new(
989
1141
  :author,
990
1142
  :description,
1143
+ :home_page_url,
991
1144
  :labels,
992
1145
  :readme_body,
993
1146
  :readme_url)
@@ -1001,6 +1154,7 @@ module Aws::ServerlessApplicationRepository
1001
1154
  # application_id: "__string", # required
1002
1155
  # author: "__string",
1003
1156
  # description: "__string",
1157
+ # home_page_url: "__string",
1004
1158
  # labels: ["__string"],
1005
1159
  # readme_body: "__string",
1006
1160
  # readme_url: "__string",
@@ -1015,6 +1169,9 @@ module Aws::ServerlessApplicationRepository
1015
1169
  # @!attribute [rw] description
1016
1170
  # @return [String]
1017
1171
  #
1172
+ # @!attribute [rw] home_page_url
1173
+ # @return [String]
1174
+ #
1018
1175
  # @!attribute [rw] labels
1019
1176
  # @return [Array<String>]
1020
1177
  #
@@ -1030,6 +1187,7 @@ module Aws::ServerlessApplicationRepository
1030
1187
  :application_id,
1031
1188
  :author,
1032
1189
  :description,
1190
+ :home_page_url,
1033
1191
  :labels,
1034
1192
  :readme_body,
1035
1193
  :readme_url)
@@ -1048,6 +1206,9 @@ module Aws::ServerlessApplicationRepository
1048
1206
  # @!attribute [rw] description
1049
1207
  # @return [String]
1050
1208
  #
1209
+ # @!attribute [rw] home_page_url
1210
+ # @return [String]
1211
+ #
1051
1212
  # @!attribute [rw] labels
1052
1213
  # @return [Array<String>]
1053
1214
  #
@@ -1074,6 +1235,7 @@ module Aws::ServerlessApplicationRepository
1074
1235
  :author,
1075
1236
  :creation_time,
1076
1237
  :description,
1238
+ :home_page_url,
1077
1239
  :labels,
1078
1240
  :license_url,
1079
1241
  :name,
@@ -1098,7 +1260,9 @@ module Aws::ServerlessApplicationRepository
1098
1260
  # @return [Array<Types::ParameterDefinition>]
1099
1261
  #
1100
1262
  # @!attribute [rw] semantic_version
1101
- # The semantic version of the application:\\n\\n https://semver.org/
1263
+ # The semantic version of the application:
1264
+ #
1265
+ # <a href=""https://semver.org/"">https://semver.org/</a>
1102
1266
  # @return [String]
1103
1267
  #
1104
1268
  # @!attribute [rw] source_code_url
@@ -1107,7 +1271,7 @@ module Aws::ServerlessApplicationRepository
1107
1271
  # @return [String]
1108
1272
  #
1109
1273
  # @!attribute [rw] template_url
1110
- # A link to the packaged SAM template of your application.
1274
+ # A link to the packaged AWS SAM template of your application.
1111
1275
  # @return [String]
1112
1276
  #
1113
1277
  # @see http://docs.aws.amazon.com/goto/WebAPI/serverlessrepo-2017-09-08/Version AWS API Documentation
@@ -1133,7 +1297,9 @@ module Aws::ServerlessApplicationRepository
1133
1297
  # @return [String]
1134
1298
  #
1135
1299
  # @!attribute [rw] semantic_version
1136
- # The semantic version of the application:\\n\\n https://semver.org/
1300
+ # The semantic version of the application:
1301
+ #
1302
+ # <a href=""https://semver.org/"">https://semver.org/</a>
1137
1303
  # @return [String]
1138
1304
  #
1139
1305
  # @!attribute [rw] source_code_url
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.0.0
4
+ version: 1.1.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: 2017-11-30 00:00:00.000000000 Z
11
+ date: 2018-02-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core