aws-sdk-elasticbeanstalk 1.52.0 → 1.53.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
  SHA256:
3
- metadata.gz: 3288d840ab267d806edb34c48f907b184a82a4fd51dffd50a243ac1bad106b1d
4
- data.tar.gz: e2a0873b00ff50cf3666cb6da0f16abfd02b010547e54128591ebeb004553f7a
3
+ metadata.gz: 21f9effea67a66bae0cddf8aefba70ae7a17af9ffb5a27554ef01aa4d709aa48
4
+ data.tar.gz: b3373d0b5211084e11e84e12c00e24aa26738314f4838b9a0eca8f448c3a4aff
5
5
  SHA512:
6
- metadata.gz: b4a6aa3b49bd34bb10ebe6978a3fc3e235a8188cb38b3d657bc8415ae15ea49c1525c4a56f1886f765b5dc9d994aa8127ede4d6e6726c532b7e669add4575697
7
- data.tar.gz: 69a6bd3e25c33ed0800c606bf57e294caf8937ba45395a19e9306c8d7787d17b6263aefee22221f1f54c7bb4551db42f730f50427862deeb755caee75da83b15
6
+ metadata.gz: 350e993767679c572afd3d7b24316224a96f9b36d80387386901df22d35d6e3d300c7f4471053fb1d4e8335c55f8004fbe2b331e3af9aa398a8514a2cd21f510
7
+ data.tar.gz: 31a522df8dd40e89ff23729249a2927b6526c8b47182121198a418ab7106b61897e2bd0a19dfa7a2179af01962ba96d591d8ed8142d8f35fcb2d5837dadc7f5d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.53.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.52.0 (2022-10-25)
5
12
  ------------------
6
13
 
@@ -345,4 +352,4 @@ Unreleased Changes
345
352
  1.0.0.rc1 (2016-12-05)
346
353
  ------------------
347
354
 
348
- * Feature - Initial preview release of the `aws-sdk-elasticbeanstalk` gem.
355
+ * Feature - Initial preview release of the `aws-sdk-elasticbeanstalk` gem.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.52.0
1
+ 1.53.0
@@ -4542,7 +4542,7 @@ module Aws::ElasticBeanstalk
4542
4542
  params: params,
4543
4543
  config: config)
4544
4544
  context[:gem_name] = 'aws-sdk-elasticbeanstalk'
4545
- context[:gem_version] = '1.52.0'
4545
+ context[:gem_version] = '1.53.0'
4546
4546
  Seahorse::Client::Request.new(handlers, context)
4547
4547
  end
4548
4548
 
@@ -9,104 +9,43 @@
9
9
 
10
10
  module Aws::ElasticBeanstalk
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://elasticbeanstalk-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://elasticbeanstalk-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://elasticbeanstalk.#{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://elasticbeanstalk.#{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
- dCI6eyJ1cmwiOiJodHRwczovL2VsYXN0aWNiZWFuc3RhbGstZmlwcy57UmVn
77
- aW9ufS57UGFydGl0aW9uUmVzdWx0I2R1YWxTdGFja0Ruc1N1ZmZpeH0iLCJw
78
- cm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQi
79
- fV19LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoiRklQUyBhbmQgRHVhbFN0
80
- YWNrIGFyZSBlbmFibGVkLCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qg
81
- c3VwcG9ydCBvbmUgb3IgYm90aCIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25k
82
- aXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYi
83
- OiJVc2VGSVBTIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3si
84
- Y29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3Ry
85
- dWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25S
86
- ZXN1bHQifSwic3VwcG9ydHNGSVBTIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1
87
- bGVzIjpbeyJjb25kaXRpb25zIjpbXSwidHlwZSI6InRyZWUiLCJydWxlcyI6
88
- W3siY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8v
89
- ZWxhc3RpY2JlYW5zdGFsay1maXBzLntSZWdpb259LntQYXJ0aXRpb25SZXN1
90
- bHQjZG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0s
91
- InR5cGUiOiJlbmRwb2ludCJ9XX1dfSx7ImNvbmRpdGlvbnMiOltdLCJlcnJv
92
- ciI6IkZJUFMgaXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBu
93
- b3Qgc3VwcG9ydCBGSVBTIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlv
94
- bnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVz
95
- ZUR1YWxTdGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7
96
- ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0
97
- cnVlLHsiZm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9u
98
- UmVzdWx0In0sInN1cHBvcnRzRHVhbFN0YWNrIl19XX1dLCJ0eXBlIjoidHJl
99
- ZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJs
100
- IjoiaHR0cHM6Ly9lbGFzdGljYmVhbnN0YWxrLntSZWdpb259LntQYXJ0aXRp
101
- b25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9
102
- LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRp
103
- b25zIjpbXSwiZXJyb3IiOiJEdWFsU3RhY2sgaXMgZW5hYmxlZCBidXQgdGhp
104
- cyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBEdWFsU3RhY2siLCJ0eXBl
105
- IjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVy
106
- bCI6Imh0dHBzOi8vZWxhc3RpY2JlYW5zdGFsay57UmVnaW9ufS57UGFydGl0
107
- aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVy
108
- cyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19XX0=
109
-
110
- JSON
111
50
  end
112
51
  end
@@ -10,14 +10,6 @@
10
10
  module Aws::ElasticBeanstalk
11
11
  module Types
12
12
 
13
- # @note When making an API call, you may pass AbortEnvironmentUpdateMessage
14
- # data as a hash:
15
- #
16
- # {
17
- # environment_id: "EnvironmentId",
18
- # environment_name: "EnvironmentName",
19
- # }
20
- #
21
13
  # @!attribute [rw] environment_id
22
14
  # This specifies the ID of the environment with the in-progress update
23
15
  # that you want to cancel.
@@ -156,25 +148,6 @@ module Aws::ElasticBeanstalk
156
148
  # lifecycle settings. The version lifecycle configuration defines
157
149
  # lifecycle settings for application versions.
158
150
  #
159
- # @note When making an API call, you may pass ApplicationResourceLifecycleConfig
160
- # data as a hash:
161
- #
162
- # {
163
- # service_role: "String",
164
- # version_lifecycle_config: {
165
- # max_count_rule: {
166
- # enabled: false, # required
167
- # max_count: 1,
168
- # delete_source_from_s3: false,
169
- # },
170
- # max_age_rule: {
171
- # enabled: false, # required
172
- # max_age_in_days: 1,
173
- # delete_source_from_s3: false,
174
- # },
175
- # },
176
- # }
177
- #
178
151
  # @!attribute [rw] service_role
179
152
  # The ARN of an IAM service role that Elastic Beanstalk has permission
180
153
  # to assume.
@@ -349,22 +322,6 @@ module Aws::ElasticBeanstalk
349
322
  # source bundle remains in S3 unless you configure the rule to delete
350
323
  # it.
351
324
  #
352
- # @note When making an API call, you may pass ApplicationVersionLifecycleConfig
353
- # data as a hash:
354
- #
355
- # {
356
- # max_count_rule: {
357
- # enabled: false, # required
358
- # max_count: 1,
359
- # delete_source_from_s3: false,
360
- # },
361
- # max_age_rule: {
362
- # enabled: false, # required
363
- # max_age_in_days: 1,
364
- # delete_source_from_s3: false,
365
- # },
366
- # }
367
- #
368
325
  # @!attribute [rw] max_count_rule
369
326
  # Specify a max count rule to restrict the number of application
370
327
  # versions that are retained for an application.
@@ -386,15 +343,6 @@ module Aws::ElasticBeanstalk
386
343
 
387
344
  # Request to execute a scheduled managed action immediately.
388
345
  #
389
- # @note When making an API call, you may pass ApplyEnvironmentManagedActionRequest
390
- # data as a hash:
391
- #
392
- # {
393
- # environment_name: "String",
394
- # environment_id: "String",
395
- # action_id: "String", # required
396
- # }
397
- #
398
346
  # @!attribute [rw] environment_name
399
347
  # The name of the target environment.
400
348
  # @return [String]
@@ -448,14 +396,6 @@ module Aws::ElasticBeanstalk
448
396
 
449
397
  # Request to add or change the operations role used by an environment.
450
398
  #
451
- # @note When making an API call, you may pass AssociateEnvironmentOperationsRoleMessage
452
- # data as a hash:
453
- #
454
- # {
455
- # environment_name: "EnvironmentName", # required
456
- # operations_role: "OperationsRole", # required
457
- # }
458
- #
459
399
  # @!attribute [rw] environment_name
460
400
  # The name of the environment to which to set the operations role.
461
401
  # @return [String]
@@ -490,17 +430,6 @@ module Aws::ElasticBeanstalk
490
430
 
491
431
  # Settings for an AWS CodeBuild build.
492
432
  #
493
- # @note When making an API call, you may pass BuildConfiguration
494
- # data as a hash:
495
- #
496
- # {
497
- # artifact_name: "String",
498
- # code_build_service_role: "NonEmptyString", # required
499
- # compute_type: "BUILD_GENERAL1_SMALL", # accepts BUILD_GENERAL1_SMALL, BUILD_GENERAL1_MEDIUM, BUILD_GENERAL1_LARGE
500
- # image: "NonEmptyString", # required
501
- # timeout_in_minutes: 1,
502
- # }
503
- #
504
433
  # @!attribute [rw] artifact_name
505
434
  # The name of the artifact of the CodeBuild build. If provided,
506
435
  # Elastic Beanstalk stores the build artifact in the S3 location
@@ -636,13 +565,6 @@ module Aws::ElasticBeanstalk
636
565
 
637
566
  # Results message indicating whether a CNAME is available.
638
567
  #
639
- # @note When making an API call, you may pass CheckDNSAvailabilityMessage
640
- # data as a hash:
641
- #
642
- # {
643
- # cname_prefix: "DNSCnamePrefix", # required
644
- # }
645
- #
646
568
  # @!attribute [rw] cname_prefix
647
569
  # The prefix used when this CNAME is reserved.
648
570
  # @return [String]
@@ -687,15 +609,6 @@ module Aws::ElasticBeanstalk
687
609
 
688
610
  # Request to create or update a group of environments.
689
611
  #
690
- # @note When making an API call, you may pass ComposeEnvironmentsMessage
691
- # data as a hash:
692
- #
693
- # {
694
- # application_name: "ApplicationName",
695
- # group_name: "GroupName",
696
- # version_labels: ["VersionLabel"],
697
- # }
698
- #
699
612
  # @!attribute [rw] application_name
700
613
  # The name of the application to which the specified source bundles
701
614
  # belong.
@@ -846,16 +759,6 @@ module Aws::ElasticBeanstalk
846
759
  #
847
760
  # [1]: https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/command-options.html
848
761
  #
849
- # @note When making an API call, you may pass ConfigurationOptionSetting
850
- # data as a hash:
851
- #
852
- # {
853
- # resource_name: "ResourceName",
854
- # namespace: "OptionNamespace",
855
- # option_name: "ConfigurationOptionName",
856
- # value: "ConfigurationOptionValue",
857
- # }
858
- #
859
762
  # @!attribute [rw] resource_name
860
763
  # A unique resource name for the option setting. Use it for a
861
764
  # time–based scaling configuration option.
@@ -1018,35 +921,6 @@ module Aws::ElasticBeanstalk
1018
921
 
1019
922
  # Request to create an application.
1020
923
  #
1021
- # @note When making an API call, you may pass CreateApplicationMessage
1022
- # data as a hash:
1023
- #
1024
- # {
1025
- # application_name: "ApplicationName", # required
1026
- # description: "Description",
1027
- # resource_lifecycle_config: {
1028
- # service_role: "String",
1029
- # version_lifecycle_config: {
1030
- # max_count_rule: {
1031
- # enabled: false, # required
1032
- # max_count: 1,
1033
- # delete_source_from_s3: false,
1034
- # },
1035
- # max_age_rule: {
1036
- # enabled: false, # required
1037
- # max_age_in_days: 1,
1038
- # delete_source_from_s3: false,
1039
- # },
1040
- # },
1041
- # },
1042
- # tags: [
1043
- # {
1044
- # key: "TagKey",
1045
- # value: "TagValue",
1046
- # },
1047
- # ],
1048
- # }
1049
- #
1050
924
  # @!attribute [rw] application_name
1051
925
  # The name of the application. Must be unique within your account.
1052
926
  # @return [String]
@@ -1079,39 +953,6 @@ module Aws::ElasticBeanstalk
1079
953
  include Aws::Structure
1080
954
  end
1081
955
 
1082
- # @note When making an API call, you may pass CreateApplicationVersionMessage
1083
- # data as a hash:
1084
- #
1085
- # {
1086
- # application_name: "ApplicationName", # required
1087
- # version_label: "VersionLabel", # required
1088
- # description: "Description",
1089
- # source_build_information: {
1090
- # source_type: "Git", # required, accepts Git, Zip
1091
- # source_repository: "CodeCommit", # required, accepts CodeCommit, S3
1092
- # source_location: "SourceLocation", # required
1093
- # },
1094
- # source_bundle: {
1095
- # s3_bucket: "S3Bucket",
1096
- # s3_key: "S3Key",
1097
- # },
1098
- # build_configuration: {
1099
- # artifact_name: "String",
1100
- # code_build_service_role: "NonEmptyString", # required
1101
- # compute_type: "BUILD_GENERAL1_SMALL", # accepts BUILD_GENERAL1_SMALL, BUILD_GENERAL1_MEDIUM, BUILD_GENERAL1_LARGE
1102
- # image: "NonEmptyString", # required
1103
- # timeout_in_minutes: 1,
1104
- # },
1105
- # auto_create_application: false,
1106
- # process: false,
1107
- # tags: [
1108
- # {
1109
- # key: "TagKey",
1110
- # value: "TagValue",
1111
- # },
1112
- # ],
1113
- # }
1114
- #
1115
956
  # @!attribute [rw] application_name
1116
957
  # The name of the application. If no application is found with this
1117
958
  # name, and `AutoCreateApplication` is `false`, returns an
@@ -1203,36 +1044,6 @@ module Aws::ElasticBeanstalk
1203
1044
 
1204
1045
  # Request to create a configuration template.
1205
1046
  #
1206
- # @note When making an API call, you may pass CreateConfigurationTemplateMessage
1207
- # data as a hash:
1208
- #
1209
- # {
1210
- # application_name: "ApplicationName", # required
1211
- # template_name: "ConfigurationTemplateName", # required
1212
- # solution_stack_name: "SolutionStackName",
1213
- # platform_arn: "PlatformArn",
1214
- # source_configuration: {
1215
- # application_name: "ApplicationName",
1216
- # template_name: "ConfigurationTemplateName",
1217
- # },
1218
- # environment_id: "EnvironmentId",
1219
- # description: "Description",
1220
- # option_settings: [
1221
- # {
1222
- # resource_name: "ResourceName",
1223
- # namespace: "OptionNamespace",
1224
- # option_name: "ConfigurationOptionName",
1225
- # value: "ConfigurationOptionValue",
1226
- # },
1227
- # ],
1228
- # tags: [
1229
- # {
1230
- # key: "TagKey",
1231
- # value: "TagValue",
1232
- # },
1233
- # ],
1234
- # }
1235
- #
1236
1047
  # @!attribute [rw] application_name
1237
1048
  # The name of the Elastic Beanstalk application to associate with this
1238
1049
  # configuration template.
@@ -1341,48 +1152,6 @@ module Aws::ElasticBeanstalk
1341
1152
  include Aws::Structure
1342
1153
  end
1343
1154
 
1344
- # @note When making an API call, you may pass CreateEnvironmentMessage
1345
- # data as a hash:
1346
- #
1347
- # {
1348
- # application_name: "ApplicationName", # required
1349
- # environment_name: "EnvironmentName",
1350
- # group_name: "GroupName",
1351
- # description: "Description",
1352
- # cname_prefix: "DNSCnamePrefix",
1353
- # tier: {
1354
- # name: "String",
1355
- # type: "String",
1356
- # version: "String",
1357
- # },
1358
- # tags: [
1359
- # {
1360
- # key: "TagKey",
1361
- # value: "TagValue",
1362
- # },
1363
- # ],
1364
- # version_label: "VersionLabel",
1365
- # template_name: "ConfigurationTemplateName",
1366
- # solution_stack_name: "SolutionStackName",
1367
- # platform_arn: "PlatformArn",
1368
- # option_settings: [
1369
- # {
1370
- # resource_name: "ResourceName",
1371
- # namespace: "OptionNamespace",
1372
- # option_name: "ConfigurationOptionName",
1373
- # value: "ConfigurationOptionValue",
1374
- # },
1375
- # ],
1376
- # options_to_remove: [
1377
- # {
1378
- # resource_name: "ResourceName",
1379
- # namespace: "OptionNamespace",
1380
- # option_name: "ConfigurationOptionName",
1381
- # },
1382
- # ],
1383
- # operations_role: "OperationsRole",
1384
- # }
1385
- #
1386
1155
  # @!attribute [rw] application_name
1387
1156
  # The name of the application that is associated with this
1388
1157
  # environment.
@@ -1535,33 +1304,6 @@ module Aws::ElasticBeanstalk
1535
1304
 
1536
1305
  # Request to create a new platform version.
1537
1306
  #
1538
- # @note When making an API call, you may pass CreatePlatformVersionRequest
1539
- # data as a hash:
1540
- #
1541
- # {
1542
- # platform_name: "PlatformName", # required
1543
- # platform_version: "PlatformVersion", # required
1544
- # platform_definition_bundle: { # required
1545
- # s3_bucket: "S3Bucket",
1546
- # s3_key: "S3Key",
1547
- # },
1548
- # environment_name: "EnvironmentName",
1549
- # option_settings: [
1550
- # {
1551
- # resource_name: "ResourceName",
1552
- # namespace: "OptionNamespace",
1553
- # option_name: "ConfigurationOptionName",
1554
- # value: "ConfigurationOptionValue",
1555
- # },
1556
- # ],
1557
- # tags: [
1558
- # {
1559
- # key: "TagKey",
1560
- # value: "TagValue",
1561
- # },
1562
- # ],
1563
- # }
1564
- #
1565
1307
  # @!attribute [rw] platform_name
1566
1308
  # The name of your custom platform.
1567
1309
  # @return [String]
@@ -1656,14 +1398,6 @@ module Aws::ElasticBeanstalk
1656
1398
 
1657
1399
  # Request to delete an application.
1658
1400
  #
1659
- # @note When making an API call, you may pass DeleteApplicationMessage
1660
- # data as a hash:
1661
- #
1662
- # {
1663
- # application_name: "ApplicationName", # required
1664
- # terminate_env_by_force: false,
1665
- # }
1666
- #
1667
1401
  # @!attribute [rw] application_name
1668
1402
  # The name of the application to delete.
1669
1403
  # @return [String]
@@ -1684,15 +1418,6 @@ module Aws::ElasticBeanstalk
1684
1418
 
1685
1419
  # Request to delete an application version.
1686
1420
  #
1687
- # @note When making an API call, you may pass DeleteApplicationVersionMessage
1688
- # data as a hash:
1689
- #
1690
- # {
1691
- # application_name: "ApplicationName", # required
1692
- # version_label: "VersionLabel", # required
1693
- # delete_source_bundle: false,
1694
- # }
1695
- #
1696
1421
  # @!attribute [rw] application_name
1697
1422
  # The name of the application to which the version belongs.
1698
1423
  # @return [String]
@@ -1719,14 +1444,6 @@ module Aws::ElasticBeanstalk
1719
1444
 
1720
1445
  # Request to delete a configuration template.
1721
1446
  #
1722
- # @note When making an API call, you may pass DeleteConfigurationTemplateMessage
1723
- # data as a hash:
1724
- #
1725
- # {
1726
- # application_name: "ApplicationName", # required
1727
- # template_name: "ConfigurationTemplateName", # required
1728
- # }
1729
- #
1730
1447
  # @!attribute [rw] application_name
1731
1448
  # The name of the application to delete the configuration template
1732
1449
  # from.
@@ -1747,14 +1464,6 @@ module Aws::ElasticBeanstalk
1747
1464
 
1748
1465
  # Request to delete a draft environment configuration.
1749
1466
  #
1750
- # @note When making an API call, you may pass DeleteEnvironmentConfigurationMessage
1751
- # data as a hash:
1752
- #
1753
- # {
1754
- # application_name: "ApplicationName", # required
1755
- # environment_name: "EnvironmentName", # required
1756
- # }
1757
- #
1758
1467
  # @!attribute [rw] application_name
1759
1468
  # The name of the application the environment is associated with.
1760
1469
  # @return [String]
@@ -1772,13 +1481,6 @@ module Aws::ElasticBeanstalk
1772
1481
  include Aws::Structure
1773
1482
  end
1774
1483
 
1775
- # @note When making an API call, you may pass DeletePlatformVersionRequest
1776
- # data as a hash:
1777
- #
1778
- # {
1779
- # platform_arn: "PlatformArn",
1780
- # }
1781
- #
1782
1484
  # @!attribute [rw] platform_arn
1783
1485
  # The ARN of the version of the custom platform.
1784
1486
  # @return [String]
@@ -1857,16 +1559,6 @@ module Aws::ElasticBeanstalk
1857
1559
 
1858
1560
  # Request to describe application versions.
1859
1561
  #
1860
- # @note When making an API call, you may pass DescribeApplicationVersionsMessage
1861
- # data as a hash:
1862
- #
1863
- # {
1864
- # application_name: "ApplicationName",
1865
- # version_labels: ["VersionLabel"],
1866
- # max_records: 1,
1867
- # next_token: "Token",
1868
- # }
1869
- #
1870
1562
  # @!attribute [rw] application_name
1871
1563
  # Specify an application name to show only application versions for
1872
1564
  # that application.
@@ -1905,13 +1597,6 @@ module Aws::ElasticBeanstalk
1905
1597
 
1906
1598
  # Request to describe one or more applications.
1907
1599
  #
1908
- # @note When making an API call, you may pass DescribeApplicationsMessage
1909
- # data as a hash:
1910
- #
1911
- # {
1912
- # application_names: ["ApplicationName"],
1913
- # }
1914
- #
1915
1600
  # @!attribute [rw] application_names
1916
1601
  # If specified, AWS Elastic Beanstalk restricts the returned
1917
1602
  # descriptions to only include those with the specified names.
@@ -1927,24 +1612,6 @@ module Aws::ElasticBeanstalk
1927
1612
 
1928
1613
  # Result message containing a list of application version descriptions.
1929
1614
  #
1930
- # @note When making an API call, you may pass DescribeConfigurationOptionsMessage
1931
- # data as a hash:
1932
- #
1933
- # {
1934
- # application_name: "ApplicationName",
1935
- # template_name: "ConfigurationTemplateName",
1936
- # environment_name: "EnvironmentName",
1937
- # solution_stack_name: "SolutionStackName",
1938
- # platform_arn: "PlatformArn",
1939
- # options: [
1940
- # {
1941
- # resource_name: "ResourceName",
1942
- # namespace: "OptionNamespace",
1943
- # option_name: "ConfigurationOptionName",
1944
- # },
1945
- # ],
1946
- # }
1947
- #
1948
1615
  # @!attribute [rw] application_name
1949
1616
  # The name of the application associated with the configuration
1950
1617
  # template or environment. Only needed if you want to describe the
@@ -1992,15 +1659,6 @@ module Aws::ElasticBeanstalk
1992
1659
  # Result message containing all of the configuration settings for a
1993
1660
  # specified solution stack or configuration template.
1994
1661
  #
1995
- # @note When making an API call, you may pass DescribeConfigurationSettingsMessage
1996
- # data as a hash:
1997
- #
1998
- # {
1999
- # application_name: "ApplicationName", # required
2000
- # template_name: "ConfigurationTemplateName",
2001
- # environment_name: "EnvironmentName",
2002
- # }
2003
- #
2004
1662
  # @!attribute [rw] application_name
2005
1663
  # The application for the environment or configuration template.
2006
1664
  # @return [String]
@@ -2036,15 +1694,6 @@ module Aws::ElasticBeanstalk
2036
1694
 
2037
1695
  # See the example below to learn how to create a request body.
2038
1696
  #
2039
- # @note When making an API call, you may pass DescribeEnvironmentHealthRequest
2040
- # data as a hash:
2041
- #
2042
- # {
2043
- # environment_name: "EnvironmentName",
2044
- # environment_id: "EnvironmentId",
2045
- # attribute_names: ["Status"], # accepts Status, Color, Causes, ApplicationMetrics, InstancesHealth, All, HealthStatus, RefreshedAt
2046
- # }
2047
- #
2048
1697
  # @!attribute [rw] environment_name
2049
1698
  # Specify the environment by name.
2050
1699
  #
@@ -2134,16 +1783,6 @@ module Aws::ElasticBeanstalk
2134
1783
 
2135
1784
  # Request to list completed and failed managed actions.
2136
1785
  #
2137
- # @note When making an API call, you may pass DescribeEnvironmentManagedActionHistoryRequest
2138
- # data as a hash:
2139
- #
2140
- # {
2141
- # environment_id: "EnvironmentId",
2142
- # environment_name: "EnvironmentName",
2143
- # next_token: "String",
2144
- # max_items: 1,
2145
- # }
2146
- #
2147
1786
  # @!attribute [rw] environment_id
2148
1787
  # The environment ID of the target environment.
2149
1788
  # @return [String]
@@ -2196,15 +1835,6 @@ module Aws::ElasticBeanstalk
2196
1835
  # Request to list an environment's upcoming and in-progress managed
2197
1836
  # actions.
2198
1837
  #
2199
- # @note When making an API call, you may pass DescribeEnvironmentManagedActionsRequest
2200
- # data as a hash:
2201
- #
2202
- # {
2203
- # environment_name: "String",
2204
- # environment_id: "String",
2205
- # status: "Scheduled", # accepts Scheduled, Pending, Running, Unknown
2206
- # }
2207
- #
2208
1838
  # @!attribute [rw] environment_name
2209
1839
  # The name of the target environment.
2210
1840
  # @return [String]
@@ -2243,14 +1873,6 @@ module Aws::ElasticBeanstalk
2243
1873
 
2244
1874
  # Request to describe the resources in an environment.
2245
1875
  #
2246
- # @note When making an API call, you may pass DescribeEnvironmentResourcesMessage
2247
- # data as a hash:
2248
- #
2249
- # {
2250
- # environment_id: "EnvironmentId",
2251
- # environment_name: "EnvironmentName",
2252
- # }
2253
- #
2254
1876
  # @!attribute [rw] environment_id
2255
1877
  # The ID of the environment to retrieve AWS resource usage data.
2256
1878
  #
@@ -2278,20 +1900,6 @@ module Aws::ElasticBeanstalk
2278
1900
 
2279
1901
  # Request to describe one or more environments.
2280
1902
  #
2281
- # @note When making an API call, you may pass DescribeEnvironmentsMessage
2282
- # data as a hash:
2283
- #
2284
- # {
2285
- # application_name: "ApplicationName",
2286
- # version_label: "VersionLabel",
2287
- # environment_ids: ["EnvironmentId"],
2288
- # environment_names: ["EnvironmentName"],
2289
- # include_deleted: false,
2290
- # included_deleted_back_to: Time.now,
2291
- # max_records: 1,
2292
- # next_token: "Token",
2293
- # }
2294
- #
2295
1903
  # @!attribute [rw] application_name
2296
1904
  # If specified, AWS Elastic Beanstalk restricts the returned
2297
1905
  # descriptions to include only those that are associated with this
@@ -2361,24 +1969,6 @@ module Aws::ElasticBeanstalk
2361
1969
 
2362
1970
  # Request to retrieve a list of events for an environment.
2363
1971
  #
2364
- # @note When making an API call, you may pass DescribeEventsMessage
2365
- # data as a hash:
2366
- #
2367
- # {
2368
- # application_name: "ApplicationName",
2369
- # version_label: "VersionLabel",
2370
- # template_name: "ConfigurationTemplateName",
2371
- # environment_id: "EnvironmentId",
2372
- # environment_name: "EnvironmentName",
2373
- # platform_arn: "PlatformArn",
2374
- # request_id: "RequestId",
2375
- # severity: "TRACE", # accepts TRACE, DEBUG, INFO, WARN, ERROR, FATAL
2376
- # start_time: Time.now,
2377
- # end_time: Time.now,
2378
- # max_records: 1,
2379
- # next_token: "Token",
2380
- # }
2381
- #
2382
1972
  # @!attribute [rw] application_name
2383
1973
  # If specified, AWS Elastic Beanstalk restricts the returned
2384
1974
  # descriptions to include only those associated with this application.
@@ -2463,16 +2053,6 @@ module Aws::ElasticBeanstalk
2463
2053
 
2464
2054
  # Parameters for a call to `DescribeInstancesHealth`.
2465
2055
  #
2466
- # @note When making an API call, you may pass DescribeInstancesHealthRequest
2467
- # data as a hash:
2468
- #
2469
- # {
2470
- # environment_name: "EnvironmentName",
2471
- # environment_id: "EnvironmentId",
2472
- # attribute_names: ["HealthStatus"], # accepts HealthStatus, Color, Causes, ApplicationMetrics, RefreshedAt, LaunchedAt, System, Deployment, AvailabilityZone, InstanceType, All
2473
- # next_token: "NextToken",
2474
- # }
2475
- #
2476
2056
  # @!attribute [rw] environment_name
2477
2057
  # Specify the AWS Elastic Beanstalk environment by name.
2478
2058
  # @return [String]
@@ -2531,13 +2111,6 @@ module Aws::ElasticBeanstalk
2531
2111
  include Aws::Structure
2532
2112
  end
2533
2113
 
2534
- # @note When making an API call, you may pass DescribePlatformVersionRequest
2535
- # data as a hash:
2536
- #
2537
- # {
2538
- # platform_arn: "PlatformArn",
2539
- # }
2540
- #
2541
2114
  # @!attribute [rw] platform_arn
2542
2115
  # The ARN of the platform version.
2543
2116
  # @return [String]
@@ -2564,13 +2137,6 @@ module Aws::ElasticBeanstalk
2564
2137
 
2565
2138
  # Request to disassociate the operations role from an environment.
2566
2139
  #
2567
- # @note When making an API call, you may pass DisassociateEnvironmentOperationsRoleMessage
2568
- # data as a hash:
2569
- #
2570
- # {
2571
- # environment_name: "EnvironmentName", # required
2572
- # }
2573
- #
2574
2140
  # @!attribute [rw] environment_name
2575
2141
  # The name of the environment from which to disassociate the
2576
2142
  # operations role.
@@ -2922,15 +2488,6 @@ module Aws::ElasticBeanstalk
2922
2488
 
2923
2489
  # Describes the properties of an environment tier
2924
2490
  #
2925
- # @note When making an API call, you may pass EnvironmentTier
2926
- # data as a hash:
2927
- #
2928
- # {
2929
- # name: "String",
2930
- # type: "String",
2931
- # version: "String",
2932
- # }
2933
- #
2934
2491
  # @!attribute [rw] name
2935
2492
  # The name of this environment tier.
2936
2493
  #
@@ -3243,21 +2800,6 @@ module Aws::ElasticBeanstalk
3243
2800
  include Aws::Structure
3244
2801
  end
3245
2802
 
3246
- # @note When making an API call, you may pass ListPlatformBranchesRequest
3247
- # data as a hash:
3248
- #
3249
- # {
3250
- # filters: [
3251
- # {
3252
- # attribute: "SearchFilterAttribute",
3253
- # operator: "SearchFilterOperator",
3254
- # values: ["SearchFilterValue"],
3255
- # },
3256
- # ],
3257
- # max_records: 1,
3258
- # next_token: "Token",
3259
- # }
3260
- #
3261
2803
  # @!attribute [rw] filters
3262
2804
  # Criteria for restricting the resulting list of platform branches.
3263
2805
  # The filter is evaluated as a logical conjunction (AND) of the
@@ -3340,21 +2882,6 @@ module Aws::ElasticBeanstalk
3340
2882
  include Aws::Structure
3341
2883
  end
3342
2884
 
3343
- # @note When making an API call, you may pass ListPlatformVersionsRequest
3344
- # data as a hash:
3345
- #
3346
- # {
3347
- # filters: [
3348
- # {
3349
- # type: "PlatformFilterType",
3350
- # operator: "PlatformFilterOperator",
3351
- # values: ["PlatformFilterValue"],
3352
- # },
3353
- # ],
3354
- # max_records: 1,
3355
- # next_token: "Token",
3356
- # }
3357
- #
3358
2885
  # @!attribute [rw] filters
3359
2886
  # Criteria for restricting the resulting list of platform versions.
3360
2887
  # The filter is interpreted as a logical conjunction (AND) of the
@@ -3402,13 +2929,6 @@ module Aws::ElasticBeanstalk
3402
2929
  include Aws::Structure
3403
2930
  end
3404
2931
 
3405
- # @note When making an API call, you may pass ListTagsForResourceMessage
3406
- # data as a hash:
3407
- #
3408
- # {
3409
- # resource_arn: "ResourceArn", # required
3410
- # }
3411
- #
3412
2932
  # @!attribute [rw] resource_arn
3413
2933
  # The Amazon Resource Name (ARN) of the resouce for which a tag list
3414
2934
  # is requested.
@@ -3575,15 +3095,6 @@ module Aws::ElasticBeanstalk
3575
3095
  # A lifecycle rule that deletes application versions after the specified
3576
3096
  # number of days.
3577
3097
  #
3578
- # @note When making an API call, you may pass MaxAgeRule
3579
- # data as a hash:
3580
- #
3581
- # {
3582
- # enabled: false, # required
3583
- # max_age_in_days: 1,
3584
- # delete_source_from_s3: false,
3585
- # }
3586
- #
3587
3098
  # @!attribute [rw] enabled
3588
3099
  # Specify `true` to apply the rule, or `false` to disable it.
3589
3100
  # @return [Boolean]
@@ -3610,15 +3121,6 @@ module Aws::ElasticBeanstalk
3610
3121
  # A lifecycle rule that deletes the oldest application version when the
3611
3122
  # maximum count is exceeded.
3612
3123
  #
3613
- # @note When making an API call, you may pass MaxCountRule
3614
- # data as a hash:
3615
- #
3616
- # {
3617
- # enabled: false, # required
3618
- # max_count: 1,
3619
- # delete_source_from_s3: false,
3620
- # }
3621
- #
3622
3124
  # @!attribute [rw] enabled
3623
3125
  # Specify `true` to apply the rule, or `false` to disable it.
3624
3126
  # @return [Boolean]
@@ -3672,15 +3174,6 @@ module Aws::ElasticBeanstalk
3672
3174
 
3673
3175
  # A specification identifying an individual configuration option.
3674
3176
  #
3675
- # @note When making an API call, you may pass OptionSpecification
3676
- # data as a hash:
3677
- #
3678
- # {
3679
- # resource_name: "ResourceName",
3680
- # namespace: "OptionNamespace",
3681
- # option_name: "ConfigurationOptionName",
3682
- # }
3683
- #
3684
3177
  # @!attribute [rw] resource_name
3685
3178
  # A unique resource name for a time-based scaling configuration
3686
3179
  # option.
@@ -3876,15 +3369,6 @@ module Aws::ElasticBeanstalk
3876
3369
  #
3877
3370
  # The filter is evaluated as follows: `Type Operator Values[1]`
3878
3371
  #
3879
- # @note When making an API call, you may pass PlatformFilter
3880
- # data as a hash:
3881
- #
3882
- # {
3883
- # type: "PlatformFilterType",
3884
- # operator: "PlatformFilterOperator",
3885
- # values: ["PlatformFilterValue"],
3886
- # }
3887
- #
3888
3372
  # @!attribute [rw] type
3889
3373
  # The platform version attribute to which the filter values are
3890
3374
  # applied.
@@ -4071,14 +3555,6 @@ module Aws::ElasticBeanstalk
4071
3555
  include Aws::Structure
4072
3556
  end
4073
3557
 
4074
- # @note When making an API call, you may pass RebuildEnvironmentMessage
4075
- # data as a hash:
4076
- #
4077
- # {
4078
- # environment_id: "EnvironmentId",
4079
- # environment_name: "EnvironmentName",
4080
- # }
4081
- #
4082
3558
  # @!attribute [rw] environment_id
4083
3559
  # The ID of the environment to rebuild.
4084
3560
  #
@@ -4107,15 +3583,6 @@ module Aws::ElasticBeanstalk
4107
3583
  # Request to retrieve logs from an environment and store them in your
4108
3584
  # Elastic Beanstalk storage bucket.
4109
3585
  #
4110
- # @note When making an API call, you may pass RequestEnvironmentInfoMessage
4111
- # data as a hash:
4112
- #
4113
- # {
4114
- # environment_id: "EnvironmentId",
4115
- # environment_name: "EnvironmentName",
4116
- # info_type: "tail", # required, accepts tail, bundle
4117
- # }
4118
- #
4119
3586
  # @!attribute [rw] environment_id
4120
3587
  # The ID of the environment of the requested data.
4121
3588
  #
@@ -4237,14 +3704,6 @@ module Aws::ElasticBeanstalk
4237
3704
  #
4238
3705
  class ResourceTypeNotSupportedException < Aws::EmptyStructure; end
4239
3706
 
4240
- # @note When making an API call, you may pass RestartAppServerMessage
4241
- # data as a hash:
4242
- #
4243
- # {
4244
- # environment_id: "EnvironmentId",
4245
- # environment_name: "EnvironmentName",
4246
- # }
4247
- #
4248
3707
  # @!attribute [rw] environment_id
4249
3708
  # The ID of the environment to restart the server for.
4250
3709
  #
@@ -4272,15 +3731,6 @@ module Aws::ElasticBeanstalk
4272
3731
 
4273
3732
  # Request to download logs retrieved with RequestEnvironmentInfo.
4274
3733
  #
4275
- # @note When making an API call, you may pass RetrieveEnvironmentInfoMessage
4276
- # data as a hash:
4277
- #
4278
- # {
4279
- # environment_id: "EnvironmentId",
4280
- # environment_name: "EnvironmentName",
4281
- # info_type: "tail", # required, accepts tail, bundle
4282
- # }
4283
- #
4284
3734
  # @!attribute [rw] environment_id
4285
3735
  # The ID of the data's environment.
4286
3736
  #
@@ -4334,14 +3784,6 @@ module Aws::ElasticBeanstalk
4334
3784
 
4335
3785
  # The bucket and key of an item stored in Amazon S3.
4336
3786
  #
4337
- # @note When making an API call, you may pass S3Location
4338
- # data as a hash:
4339
- #
4340
- # {
4341
- # s3_bucket: "S3Bucket",
4342
- # s3_key: "S3Key",
4343
- # }
4344
- #
4345
3787
  # @!attribute [rw] s3_bucket
4346
3788
  # The Amazon S3 bucket where the data is located.
4347
3789
  # @return [String]
@@ -4392,15 +3834,6 @@ module Aws::ElasticBeanstalk
4392
3834
  # action. For valid values, see the reference page for the API action
4393
3835
  # you're calling that takes a `SearchFilter` parameter.
4394
3836
  #
4395
- # @note When making an API call, you may pass SearchFilter
4396
- # data as a hash:
4397
- #
4398
- # {
4399
- # attribute: "SearchFilterAttribute",
4400
- # operator: "SearchFilterOperator",
4401
- # values: ["SearchFilterValue"],
4402
- # }
4403
- #
4404
3837
  # @!attribute [rw] attribute
4405
3838
  # The result attribute to which the filter values are applied. Valid
4406
3839
  # values vary by API action.
@@ -4519,15 +3952,6 @@ module Aws::ElasticBeanstalk
4519
3952
 
4520
3953
  # Location of the source code for an application version.
4521
3954
  #
4522
- # @note When making an API call, you may pass SourceBuildInformation
4523
- # data as a hash:
4524
- #
4525
- # {
4526
- # source_type: "Git", # required, accepts Git, Zip
4527
- # source_repository: "CodeCommit", # required, accepts CodeCommit, S3
4528
- # source_location: "SourceLocation", # required
4529
- # }
4530
- #
4531
3955
  # @!attribute [rw] source_type
4532
3956
  # The type of repository.
4533
3957
  #
@@ -4576,14 +4000,6 @@ module Aws::ElasticBeanstalk
4576
4000
 
4577
4001
  # A specification for an environment configuration.
4578
4002
  #
4579
- # @note When making an API call, you may pass SourceConfiguration
4580
- # data as a hash:
4581
- #
4582
- # {
4583
- # application_name: "ApplicationName",
4584
- # template_name: "ConfigurationTemplateName",
4585
- # }
4586
- #
4587
4003
  # @!attribute [rw] application_name
4588
4004
  # The name of the application associated with the configuration.
4589
4005
  # @return [String]
@@ -4642,16 +4058,6 @@ module Aws::ElasticBeanstalk
4642
4058
 
4643
4059
  # Swaps the CNAMEs of two environments.
4644
4060
  #
4645
- # @note When making an API call, you may pass SwapEnvironmentCNAMEsMessage
4646
- # data as a hash:
4647
- #
4648
- # {
4649
- # source_environment_id: "EnvironmentId",
4650
- # source_environment_name: "EnvironmentName",
4651
- # destination_environment_id: "EnvironmentId",
4652
- # destination_environment_name: "EnvironmentName",
4653
- # }
4654
- #
4655
4061
  # @!attribute [rw] source_environment_id
4656
4062
  # The ID of the source environment.
4657
4063
  #
@@ -4725,14 +4131,6 @@ module Aws::ElasticBeanstalk
4725
4131
 
4726
4132
  # Describes a tag applied to a resource in an environment.
4727
4133
  #
4728
- # @note When making an API call, you may pass Tag
4729
- # data as a hash:
4730
- #
4731
- # {
4732
- # key: "TagKey",
4733
- # value: "TagValue",
4734
- # }
4735
- #
4736
4134
  # @!attribute [rw] key
4737
4135
  # The key of the tag.
4738
4136
  # @return [String]
@@ -4752,16 +4150,6 @@ module Aws::ElasticBeanstalk
4752
4150
 
4753
4151
  # Request to terminate an environment.
4754
4152
  #
4755
- # @note When making an API call, you may pass TerminateEnvironmentMessage
4756
- # data as a hash:
4757
- #
4758
- # {
4759
- # environment_id: "EnvironmentId",
4760
- # environment_name: "EnvironmentName",
4761
- # terminate_resources: false,
4762
- # force_terminate: false,
4763
- # }
4764
- #
4765
4153
  # @!attribute [rw] environment_id
4766
4154
  # The ID of the environment to terminate.
4767
4155
  #
@@ -4882,14 +4270,6 @@ module Aws::ElasticBeanstalk
4882
4270
 
4883
4271
  # Request to update an application.
4884
4272
  #
4885
- # @note When making an API call, you may pass UpdateApplicationMessage
4886
- # data as a hash:
4887
- #
4888
- # {
4889
- # application_name: "ApplicationName", # required
4890
- # description: "Description",
4891
- # }
4892
- #
4893
4273
  # @!attribute [rw] application_name
4894
4274
  # The name of the application to update. If no such application is
4895
4275
  # found, `UpdateApplication` returns an `InvalidParameterValue` error.
@@ -4911,28 +4291,6 @@ module Aws::ElasticBeanstalk
4911
4291
  include Aws::Structure
4912
4292
  end
4913
4293
 
4914
- # @note When making an API call, you may pass UpdateApplicationResourceLifecycleMessage
4915
- # data as a hash:
4916
- #
4917
- # {
4918
- # application_name: "ApplicationName", # required
4919
- # resource_lifecycle_config: { # required
4920
- # service_role: "String",
4921
- # version_lifecycle_config: {
4922
- # max_count_rule: {
4923
- # enabled: false, # required
4924
- # max_count: 1,
4925
- # delete_source_from_s3: false,
4926
- # },
4927
- # max_age_rule: {
4928
- # enabled: false, # required
4929
- # max_age_in_days: 1,
4930
- # delete_source_from_s3: false,
4931
- # },
4932
- # },
4933
- # },
4934
- # }
4935
- #
4936
4294
  # @!attribute [rw] application_name
4937
4295
  # The name of the application.
4938
4296
  # @return [String]
@@ -4950,15 +4308,6 @@ module Aws::ElasticBeanstalk
4950
4308
  include Aws::Structure
4951
4309
  end
4952
4310
 
4953
- # @note When making an API call, you may pass UpdateApplicationVersionMessage
4954
- # data as a hash:
4955
- #
4956
- # {
4957
- # application_name: "ApplicationName", # required
4958
- # version_label: "VersionLabel", # required
4959
- # description: "Description",
4960
- # }
4961
- #
4962
4311
  # @!attribute [rw] application_name
4963
4312
  # The name of the application associated with this version.
4964
4313
  #
@@ -4990,30 +4339,6 @@ module Aws::ElasticBeanstalk
4990
4339
  # The result message containing the options for the specified solution
4991
4340
  # stack.
4992
4341
  #
4993
- # @note When making an API call, you may pass UpdateConfigurationTemplateMessage
4994
- # data as a hash:
4995
- #
4996
- # {
4997
- # application_name: "ApplicationName", # required
4998
- # template_name: "ConfigurationTemplateName", # required
4999
- # description: "Description",
5000
- # option_settings: [
5001
- # {
5002
- # resource_name: "ResourceName",
5003
- # namespace: "OptionNamespace",
5004
- # option_name: "ConfigurationOptionName",
5005
- # value: "ConfigurationOptionValue",
5006
- # },
5007
- # ],
5008
- # options_to_remove: [
5009
- # {
5010
- # resource_name: "ResourceName",
5011
- # namespace: "OptionNamespace",
5012
- # option_name: "ConfigurationOptionName",
5013
- # },
5014
- # ],
5015
- # }
5016
- #
5017
4342
  # @!attribute [rw] application_name
5018
4343
  # The name of the application associated with the configuration
5019
4344
  # template to update.
@@ -5061,41 +4386,6 @@ module Aws::ElasticBeanstalk
5061
4386
 
5062
4387
  # Request to update an environment.
5063
4388
  #
5064
- # @note When making an API call, you may pass UpdateEnvironmentMessage
5065
- # data as a hash:
5066
- #
5067
- # {
5068
- # application_name: "ApplicationName",
5069
- # environment_id: "EnvironmentId",
5070
- # environment_name: "EnvironmentName",
5071
- # group_name: "GroupName",
5072
- # description: "Description",
5073
- # tier: {
5074
- # name: "String",
5075
- # type: "String",
5076
- # version: "String",
5077
- # },
5078
- # version_label: "VersionLabel",
5079
- # template_name: "ConfigurationTemplateName",
5080
- # solution_stack_name: "SolutionStackName",
5081
- # platform_arn: "PlatformArn",
5082
- # option_settings: [
5083
- # {
5084
- # resource_name: "ResourceName",
5085
- # namespace: "OptionNamespace",
5086
- # option_name: "ConfigurationOptionName",
5087
- # value: "ConfigurationOptionValue",
5088
- # },
5089
- # ],
5090
- # options_to_remove: [
5091
- # {
5092
- # resource_name: "ResourceName",
5093
- # namespace: "OptionNamespace",
5094
- # option_name: "ConfigurationOptionName",
5095
- # },
5096
- # ],
5097
- # }
5098
- #
5099
4389
  # @!attribute [rw] application_name
5100
4390
  # The name of the application with which the environment is
5101
4391
  # associated.
@@ -5198,20 +4488,6 @@ module Aws::ElasticBeanstalk
5198
4488
  include Aws::Structure
5199
4489
  end
5200
4490
 
5201
- # @note When making an API call, you may pass UpdateTagsForResourceMessage
5202
- # data as a hash:
5203
- #
5204
- # {
5205
- # resource_arn: "ResourceArn", # required
5206
- # tags_to_add: [
5207
- # {
5208
- # key: "TagKey",
5209
- # value: "TagValue",
5210
- # },
5211
- # ],
5212
- # tags_to_remove: ["TagKey"],
5213
- # }
5214
- #
5215
4491
  # @!attribute [rw] resource_arn
5216
4492
  # The Amazon Resource Name (ARN) of the resouce to be updated.
5217
4493
  #
@@ -5246,23 +4522,6 @@ module Aws::ElasticBeanstalk
5246
4522
 
5247
4523
  # A list of validation messages for a specified configuration template.
5248
4524
  #
5249
- # @note When making an API call, you may pass ValidateConfigurationSettingsMessage
5250
- # data as a hash:
5251
- #
5252
- # {
5253
- # application_name: "ApplicationName", # required
5254
- # template_name: "ConfigurationTemplateName",
5255
- # environment_name: "EnvironmentName",
5256
- # option_settings: [ # required
5257
- # {
5258
- # resource_name: "ResourceName",
5259
- # namespace: "OptionNamespace",
5260
- # option_name: "ConfigurationOptionName",
5261
- # value: "ConfigurationOptionValue",
5262
- # },
5263
- # ],
5264
- # }
5265
- #
5266
4525
  # @!attribute [rw] application_name
5267
4526
  # The name of the application that the configuration template or
5268
4527
  # environment belongs to.
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-elasticbeanstalk/customizations'
53
53
  # @!group service
54
54
  module Aws::ElasticBeanstalk
55
55
 
56
- GEM_VERSION = '1.52.0'
56
+ GEM_VERSION = '1.53.0'
57
57
 
58
58
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-elasticbeanstalk
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.52.0
4
+ version: 1.53.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