aws-sdk-serverlessapplicationrepository 1.44.0 → 1.45.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 04efc116fe1d4a2bdb57f595706b3b82c72166227992f6a228cdeebe12b4520c
4
- data.tar.gz: 6f36e88dd0f8b69c3a72ac7b9f2bfdfff85f2f3f4f03517f68e4fc020f624c66
3
+ metadata.gz: af85466afd7b9e5499dbd8a50627cbabfc64d5a27a31b81c9459efa4aa3082f5
4
+ data.tar.gz: a85246a4e9632c0aefbef0be46c2ff42ace2a6f569c10f61b2b4a74cbd01c77a
5
5
  SHA512:
6
- metadata.gz: c91b946f8740a1f88e109a01a8cf1c979b2153041c29fd221a7448e138cd50db3292ed04a4d3d94de709949de925426f40752a9b72bb96ac54ca680234f9d880
7
- data.tar.gz: 1fd317361249c65f582650dac0ccf3cdafeb4a38ada9a467679cb276ccd86cddeb6821d94365da8b4aee54af6a681f52f2cc87389ce4dc27ad022458f3bca741
6
+ metadata.gz: fa5ede974ef4ed0a5387fa2675e264ce9efd31d5a0b8e0c1172627668383c86e5aa1f424f93c1a167b298bf85a6833a3746f427679553d4b408d1f2100fb5a7a
7
+ data.tar.gz: fed6b049ebea971d319e2a1550f40b2f4ac50f7ce071a5c2e3fb26f3416f2afdc472a34b562e63c89da9e6c753456da5cfef358a5df9c3bf5e3cc764db2684cc
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.45.0 (2023-01-18)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code.
10
+
4
11
  1.44.0 (2022-10-25)
5
12
  ------------------
6
13
 
@@ -230,4 +237,4 @@ Unreleased Changes
230
237
  1.0.0 (2017-11-30)
231
238
  ------------------
232
239
 
233
- * Feature - Initial release of `aws-sdk-serverlessapplicationrepository`.
240
+ * Feature - Initial release of `aws-sdk-serverlessapplicationrepository`.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.44.0
1
+ 1.45.0
@@ -1179,7 +1179,7 @@ module Aws::ServerlessApplicationRepository
1179
1179
  params: params,
1180
1180
  config: config)
1181
1181
  context[:gem_name] = 'aws-sdk-serverlessapplicationrepository'
1182
- context[:gem_version] = '1.44.0'
1182
+ context[:gem_version] = '1.45.0'
1183
1183
  Seahorse::Client::Request.new(handlers, context)
1184
1184
  end
1185
1185
 
@@ -9,104 +9,43 @@
9
9
 
10
10
  module Aws::ServerlessApplicationRepository
11
11
  class EndpointProvider
12
- def initialize(rule_set = nil)
13
- @@rule_set ||= begin
14
- endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
15
- Aws::Endpoints::RuleSet.new(
16
- version: endpoint_rules['version'],
17
- service_id: endpoint_rules['serviceId'],
18
- parameters: endpoint_rules['parameters'],
19
- rules: endpoint_rules['rules']
20
- )
12
+ def resolve_endpoint(parameters)
13
+ region = parameters.region
14
+ use_dual_stack = parameters.use_dual_stack
15
+ use_fips = parameters.use_fips
16
+ endpoint = parameters.endpoint
17
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
+ if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
19
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
+ end
22
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
23
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
24
+ end
25
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
26
+ end
27
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
28
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
29
+ return Aws::Endpoints::Endpoint.new(url: "https://serverlessrepo-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
+ end
31
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
32
+ end
33
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ return Aws::Endpoints::Endpoint.new(url: "https://serverlessrepo-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
36
+ end
37
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
38
+ end
39
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
40
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
41
+ return Aws::Endpoints::Endpoint.new(url: "https://serverlessrepo.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
42
+ end
43
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
44
+ end
45
+ return Aws::Endpoints::Endpoint.new(url: "https://serverlessrepo.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
21
46
  end
22
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
23
- end
47
+ raise ArgumentError, 'No endpoint could be resolved'
24
48
 
25
- def resolve_endpoint(parameters)
26
- @provider.resolve_endpoint(parameters)
27
49
  end
28
-
29
- # @api private
30
- RULES = <<-JSON
31
- eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
32
- bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
33
- dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
34
- cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
35
- dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
36
- ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
37
- ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
38
- ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
39
- aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
40
- OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
41
- UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
42
- dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
43
- UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
44
- dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
45
- ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
46
- IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
47
- aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
48
- bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
49
- ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
50
- Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
51
- cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
52
- InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
53
- aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
54
- cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
55
- InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
56
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
57
- UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
58
- SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
59
- eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
60
- InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
61
- LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
62
- ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
63
- b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
64
- fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
65
- RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
66
- ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
67
- ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
68
- ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
69
- dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
70
- dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
71
- Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
72
- In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
73
- YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
74
- YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
75
- cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
76
- dCI6eyJ1cmwiOiJodHRwczovL3NlcnZlcmxlc3NyZXBvLWZpcHMue1JlZ2lv
77
- bn0ue1BhcnRpdGlvblJlc3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9IiwicHJv
78
- cGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1d
79
- fSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkZJUFMgYW5kIER1YWxTdGFj
80
- ayBhcmUgZW5hYmxlZCwgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1
81
- cHBvcnQgb25lIG9yIGJvdGgiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0
82
- aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoi
83
- VXNlRklQUyJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNv
84
- bmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVl
85
- LHsiZm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVz
86
- dWx0In0sInN1cHBvcnRzRklQUyJdfV19XSwidHlwZSI6InRyZWUiLCJydWxl
87
- cyI6W3siY29uZGl0aW9ucyI6W10sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7
88
- ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL3Nl
89
- cnZlcmxlc3NyZXBvLWZpcHMue1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNk
90
- bnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
91
- ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoi
92
- RklQUyBpcyBlbmFibGVkIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBz
93
- dXBwb3J0IEZJUFMiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6
94
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRHVh
95
- bFN0YWNrIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29u
96
- ZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUs
97
- eyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1
98
- bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5cGUiOiJ0cmVlIiwi
99
- cnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJo
100
- dHRwczovL3NlcnZlcmxlc3NyZXBvLntSZWdpb259LntQYXJ0aXRpb25SZXN1
101
- bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFk
102
- ZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRpb25zIjpb
103
- XSwiZXJyb3IiOiJEdWFsU3RhY2sgaXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0
104
- aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBEdWFsU3RhY2siLCJ0eXBlIjoiZXJy
105
- b3IifV19LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0
106
- dHBzOi8vc2VydmVybGVzc3JlcG8ue1JlZ2lvbn0ue1BhcnRpdGlvblJlc3Vs
107
- dCNkbnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwi
108
- dHlwZSI6ImVuZHBvaW50In1dfV19
109
-
110
- JSON
111
50
  end
112
51
  end
@@ -183,16 +183,6 @@ module Aws::ServerlessApplicationRepository
183
183
 
184
184
  # Policy statement applied to the application.
185
185
  #
186
- # @note When making an API call, you may pass ApplicationPolicyStatement
187
- # data as a hash:
188
- #
189
- # {
190
- # actions: ["__string"], # required
191
- # principal_org_i_ds: ["__string"],
192
- # principals: ["__string"], # required
193
- # statement_id: "__string",
194
- # }
195
- #
196
186
  # @!attribute [rw] actions
197
187
  # For the list of actions supported for this operation, see
198
188
  # [Application Permissions][1].
@@ -541,27 +531,6 @@ module Aws::ServerlessApplicationRepository
541
531
  include Aws::Structure
542
532
  end
543
533
 
544
- # @note When making an API call, you may pass CreateApplicationRequest
545
- # data as a hash:
546
- #
547
- # {
548
- # author: "__string", # required
549
- # description: "__string", # required
550
- # home_page_url: "__string",
551
- # labels: ["__string"],
552
- # license_body: "__string",
553
- # license_url: "__string",
554
- # name: "__string", # required
555
- # readme_body: "__string",
556
- # readme_url: "__string",
557
- # semantic_version: "__string",
558
- # source_code_archive_url: "__string",
559
- # source_code_url: "__string",
560
- # spdx_license_id: "__string",
561
- # template_body: "__string",
562
- # template_url: "__string",
563
- # }
564
- #
565
534
  # @!attribute [rw] author
566
535
  # @return [String]
567
536
  #
@@ -722,18 +691,6 @@ module Aws::ServerlessApplicationRepository
722
691
  include Aws::Structure
723
692
  end
724
693
 
725
- # @note When making an API call, you may pass CreateApplicationVersionRequest
726
- # data as a hash:
727
- #
728
- # {
729
- # application_id: "__string", # required
730
- # semantic_version: "__string", # required
731
- # source_code_archive_url: "__string",
732
- # source_code_url: "__string",
733
- # template_body: "__string",
734
- # template_url: "__string",
735
- # }
736
- #
737
694
  # @!attribute [rw] application_id
738
695
  # @return [String]
739
696
  #
@@ -953,43 +910,6 @@ module Aws::ServerlessApplicationRepository
953
910
  include Aws::Structure
954
911
  end
955
912
 
956
- # @note When making an API call, you may pass CreateCloudFormationChangeSetRequest
957
- # data as a hash:
958
- #
959
- # {
960
- # application_id: "__string", # required
961
- # capabilities: ["__string"],
962
- # change_set_name: "__string",
963
- # client_token: "__string",
964
- # description: "__string",
965
- # notification_arns: ["__string"],
966
- # parameter_overrides: [
967
- # {
968
- # name: "__string", # required
969
- # value: "__string", # required
970
- # },
971
- # ],
972
- # resource_types: ["__string"],
973
- # rollback_configuration: {
974
- # monitoring_time_in_minutes: 1,
975
- # rollback_triggers: [
976
- # {
977
- # arn: "__string", # required
978
- # type: "__string", # required
979
- # },
980
- # ],
981
- # },
982
- # semantic_version: "__string",
983
- # stack_name: "__string", # required
984
- # tags: [
985
- # {
986
- # key: "__string", # required
987
- # value: "__string", # required
988
- # },
989
- # ],
990
- # template_id: "__string",
991
- # }
992
- #
993
913
  # @!attribute [rw] application_id
994
914
  # @return [String]
995
915
  #
@@ -1075,14 +995,6 @@ module Aws::ServerlessApplicationRepository
1075
995
  include Aws::Structure
1076
996
  end
1077
997
 
1078
- # @note When making an API call, you may pass CreateCloudFormationTemplateRequest
1079
- # data as a hash:
1080
- #
1081
- # {
1082
- # application_id: "__string", # required
1083
- # semantic_version: "__string",
1084
- # }
1085
- #
1086
998
  # @!attribute [rw] application_id
1087
999
  # @return [String]
1088
1000
  #
@@ -1133,13 +1045,6 @@ module Aws::ServerlessApplicationRepository
1133
1045
  include Aws::Structure
1134
1046
  end
1135
1047
 
1136
- # @note When making an API call, you may pass DeleteApplicationRequest
1137
- # data as a hash:
1138
- #
1139
- # {
1140
- # application_id: "__string", # required
1141
- # }
1142
- #
1143
1048
  # @!attribute [rw] application_id
1144
1049
  # @return [String]
1145
1050
  #
@@ -1170,13 +1075,6 @@ module Aws::ServerlessApplicationRepository
1170
1075
  include Aws::Structure
1171
1076
  end
1172
1077
 
1173
- # @note When making an API call, you may pass GetApplicationPolicyRequest
1174
- # data as a hash:
1175
- #
1176
- # {
1177
- # application_id: "__string", # required
1178
- # }
1179
- #
1180
1078
  # @!attribute [rw] application_id
1181
1079
  # @return [String]
1182
1080
  #
@@ -1199,14 +1097,6 @@ module Aws::ServerlessApplicationRepository
1199
1097
  include Aws::Structure
1200
1098
  end
1201
1099
 
1202
- # @note When making an API call, you may pass GetApplicationRequest
1203
- # data as a hash:
1204
- #
1205
- # {
1206
- # application_id: "__string", # required
1207
- # semantic_version: "__string",
1208
- # }
1209
- #
1210
1100
  # @!attribute [rw] application_id
1211
1101
  # @return [String]
1212
1102
  #
@@ -1282,14 +1172,6 @@ module Aws::ServerlessApplicationRepository
1282
1172
  include Aws::Structure
1283
1173
  end
1284
1174
 
1285
- # @note When making an API call, you may pass GetCloudFormationTemplateRequest
1286
- # data as a hash:
1287
- #
1288
- # {
1289
- # application_id: "__string", # required
1290
- # template_id: "__string", # required
1291
- # }
1292
- #
1293
1175
  # @!attribute [rw] application_id
1294
1176
  # @return [String]
1295
1177
  #
@@ -1361,16 +1243,6 @@ module Aws::ServerlessApplicationRepository
1361
1243
  include Aws::Structure
1362
1244
  end
1363
1245
 
1364
- # @note When making an API call, you may pass ListApplicationDependenciesRequest
1365
- # data as a hash:
1366
- #
1367
- # {
1368
- # application_id: "__string", # required
1369
- # max_items: 1,
1370
- # next_token: "__string",
1371
- # semantic_version: "__string",
1372
- # }
1373
- #
1374
1246
  # @!attribute [rw] application_id
1375
1247
  # @return [String]
1376
1248
  #
@@ -1409,15 +1281,6 @@ module Aws::ServerlessApplicationRepository
1409
1281
  include Aws::Structure
1410
1282
  end
1411
1283
 
1412
- # @note When making an API call, you may pass ListApplicationVersionsRequest
1413
- # data as a hash:
1414
- #
1415
- # {
1416
- # application_id: "__string", # required
1417
- # max_items: 1,
1418
- # next_token: "__string",
1419
- # }
1420
- #
1421
1284
  # @!attribute [rw] application_id
1422
1285
  # @return [String]
1423
1286
  #
@@ -1452,14 +1315,6 @@ module Aws::ServerlessApplicationRepository
1452
1315
  include Aws::Structure
1453
1316
  end
1454
1317
 
1455
- # @note When making an API call, you may pass ListApplicationsRequest
1456
- # data as a hash:
1457
- #
1458
- # {
1459
- # max_items: 1,
1460
- # next_token: "__string",
1461
- # }
1462
- #
1463
1318
  # @!attribute [rw] max_items
1464
1319
  # @return [Integer]
1465
1320
  #
@@ -1640,14 +1495,6 @@ module Aws::ServerlessApplicationRepository
1640
1495
 
1641
1496
  # Parameter value of the application.
1642
1497
  #
1643
- # @note When making an API call, you may pass ParameterValue
1644
- # data as a hash:
1645
- #
1646
- # {
1647
- # name: "__string", # required
1648
- # value: "__string", # required
1649
- # }
1650
- #
1651
1498
  # @!attribute [rw] name
1652
1499
  # The key associated with the parameter. If you don't specify a key
1653
1500
  # and value for a particular parameter, AWS CloudFormation uses the
@@ -1667,21 +1514,6 @@ module Aws::ServerlessApplicationRepository
1667
1514
  include Aws::Structure
1668
1515
  end
1669
1516
 
1670
- # @note When making an API call, you may pass PutApplicationPolicyRequest
1671
- # data as a hash:
1672
- #
1673
- # {
1674
- # application_id: "__string", # required
1675
- # statements: [ # required
1676
- # {
1677
- # actions: ["__string"], # required
1678
- # principal_org_i_ds: ["__string"],
1679
- # principals: ["__string"], # required
1680
- # statement_id: "__string",
1681
- # },
1682
- # ],
1683
- # }
1684
- #
1685
1517
  # @!attribute [rw] application_id
1686
1518
  # @return [String]
1687
1519
  #
@@ -1712,19 +1544,6 @@ module Aws::ServerlessApplicationRepository
1712
1544
  # href="https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/RollbackConfiguration">RollbackConfiguration</a>
1713
1545
  # </i> Data Type.
1714
1546
  #
1715
- # @note When making an API call, you may pass RollbackConfiguration
1716
- # data as a hash:
1717
- #
1718
- # {
1719
- # monitoring_time_in_minutes: 1,
1720
- # rollback_triggers: [
1721
- # {
1722
- # arn: "__string", # required
1723
- # type: "__string", # required
1724
- # },
1725
- # ],
1726
- # }
1727
- #
1728
1547
  # @!attribute [rw] monitoring_time_in_minutes
1729
1548
  # This property corresponds to the content of the same name for the
1730
1549
  # <i>AWS CloudFormation <a
@@ -1752,14 +1571,6 @@ module Aws::ServerlessApplicationRepository
1752
1571
  # href="https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/RollbackTrigger">RollbackTrigger</a>
1753
1572
  # </i> Data Type.
1754
1573
  #
1755
- # @note When making an API call, you may pass RollbackTrigger
1756
- # data as a hash:
1757
- #
1758
- # {
1759
- # arn: "__string", # required
1760
- # type: "__string", # required
1761
- # }
1762
- #
1763
1574
  # @!attribute [rw] arn
1764
1575
  # This property corresponds to the content of the same name for the
1765
1576
  # <i>AWS CloudFormation <a
@@ -1787,14 +1598,6 @@ module Aws::ServerlessApplicationRepository
1787
1598
  # href="https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/Tag">Tag</a>
1788
1599
  # </i> Data Type.
1789
1600
  #
1790
- # @note When making an API call, you may pass Tag
1791
- # data as a hash:
1792
- #
1793
- # {
1794
- # key: "__string", # required
1795
- # value: "__string", # required
1796
- # }
1797
- #
1798
1601
  # @!attribute [rw] key
1799
1602
  # This property corresponds to the content of the same name for the
1800
1603
  # <i>AWS CloudFormation <a
@@ -1910,14 +1713,6 @@ module Aws::ServerlessApplicationRepository
1910
1713
  include Aws::Structure
1911
1714
  end
1912
1715
 
1913
- # @note When making an API call, you may pass UnshareApplicationRequest
1914
- # data as a hash:
1915
- #
1916
- # {
1917
- # application_id: "__string", # required
1918
- # organization_id: "__string", # required
1919
- # }
1920
- #
1921
1716
  # @!attribute [rw] application_id
1922
1717
  # @return [String]
1923
1718
  #
@@ -1989,19 +1784,6 @@ module Aws::ServerlessApplicationRepository
1989
1784
  include Aws::Structure
1990
1785
  end
1991
1786
 
1992
- # @note When making an API call, you may pass UpdateApplicationRequest
1993
- # data as a hash:
1994
- #
1995
- # {
1996
- # application_id: "__string", # required
1997
- # author: "__string",
1998
- # description: "__string",
1999
- # home_page_url: "__string",
2000
- # labels: ["__string"],
2001
- # readme_body: "__string",
2002
- # readme_url: "__string",
2003
- # }
2004
- #
2005
1787
  # @!attribute [rw] application_id
2006
1788
  # @return [String]
2007
1789
  #
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-serverlessapplicationrepository/customizations'
52
52
  # @!group service
53
53
  module Aws::ServerlessApplicationRepository
54
54
 
55
- GEM_VERSION = '1.44.0'
55
+ GEM_VERSION = '1.45.0'
56
56
 
57
57
  end
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.44.0
4
+ version: 1.45.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: 2022-10-25 00:00:00.000000000 Z
11
+ date: 2023-01-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core