aws-sdk-lightsail 1.47.0 → 1.48.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -2
- data/VERSION +1 -1
- data/lib/aws-sdk-lightsail.rb +1 -1
- data/lib/aws-sdk-lightsail/client.rb +98 -21
- data/lib/aws-sdk-lightsail/types.rb +97 -21
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 23e5897fc86bd1b42986dca1624612808536ee645eed4975d35edf62adc0966d
|
4
|
+
data.tar.gz: ffb01347e8786d9550064e198bc8464d5a2e01827ef710de9bee193775b8f4c4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e73a16a5bafbd46ce81e83963ff1d1e8fc680d8861e04f325ea96c55affece3fd75d5c2abda0afefe4a98bdb5eeb1ce961aad558c608e449376659680b4c53b6
|
7
|
+
data.tar.gz: 9d1516a8a5ac5440c4a52e82d91d9a21d929dae82cbbb3c1cf24d8dd0bc03c3085435f8b26de8838b1770df85f4f059294ca2af88b92e3ce5881bf5b399d5d87
|
data/CHANGELOG.md
CHANGED
@@ -1,10 +1,15 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.48.0 (2021-04-13)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Documentation updates for Amazon Lightsail.
|
8
|
+
|
4
9
|
1.47.0 (2021-04-01)
|
5
10
|
------------------
|
6
11
|
|
7
|
-
* Feature -
|
12
|
+
* Feature - This release adds support for state detail for Amazon Lightsail container services.
|
8
13
|
|
9
14
|
1.46.0 (2021-03-10)
|
10
15
|
------------------
|
@@ -306,4 +311,4 @@ Unreleased Changes
|
|
306
311
|
1.0.0.rc2 (2016-12-09)
|
307
312
|
------------------
|
308
313
|
|
309
|
-
* Feature - Initial release of `aws-sdk-lightsail`.
|
314
|
+
* Feature - Initial release of `aws-sdk-lightsail`.
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.48.0
|
data/lib/aws-sdk-lightsail.rb
CHANGED
@@ -2949,43 +2949,114 @@ module Aws::Lightsail
|
|
2949
2949
|
# database bundles` operation.
|
2950
2950
|
#
|
2951
2951
|
# @option params [required, String] :master_database_name
|
2952
|
-
# The
|
2953
|
-
#
|
2952
|
+
# The meaning of this parameter differs according to the database engine
|
2953
|
+
# you use.
|
2954
|
+
#
|
2955
|
+
# **MySQL**
|
2956
|
+
#
|
2957
|
+
# The name of the database to create when the Lightsail database
|
2958
|
+
# resource is created. If this parameter isn't specified, no database
|
2959
|
+
# is created in the database resource.
|
2954
2960
|
#
|
2955
2961
|
# Constraints:
|
2956
2962
|
#
|
2957
|
-
# * Must contain
|
2963
|
+
# * Must contain 1 to 64 letters or numbers.
|
2964
|
+
#
|
2965
|
+
# * Must begin with a letter. Subsequent characters can be letters,
|
2966
|
+
# underscores, or digits (0- 9).
|
2967
|
+
#
|
2968
|
+
# * Can't be a word reserved by the specified database engine.
|
2969
|
+
#
|
2970
|
+
# For more information about reserved words in MySQL, see the Keywords
|
2971
|
+
# and Reserved Words articles for [MySQL 5.6][1], [MySQL 5.7][2], and
|
2972
|
+
# [MySQL 8.0][3].
|
2973
|
+
#
|
2974
|
+
# **PostgreSQL**
|
2975
|
+
#
|
2976
|
+
# The name of the database to create when the Lightsail database
|
2977
|
+
# resource is created. If this parameter isn't specified, a database
|
2978
|
+
# named `postgres` is created in the database resource.
|
2979
|
+
#
|
2980
|
+
# Constraints:
|
2958
2981
|
#
|
2959
|
-
# *
|
2982
|
+
# * Must contain 1 to 63 letters or numbers.
|
2983
|
+
#
|
2984
|
+
# * Must begin with a letter. Subsequent characters can be letters,
|
2985
|
+
# underscores, or digits (0- 9).
|
2986
|
+
#
|
2987
|
+
# * Can't be a word reserved by the specified database engine.
|
2988
|
+
#
|
2989
|
+
# For more information about reserved words in PostgreSQL, see the SQL
|
2990
|
+
# Key Words articles for [PostgreSQL 9.6][4], [PostgreSQL 10][5],
|
2991
|
+
# [PostgreSQL 11][6], and [PostgreSQL 12][7].
|
2992
|
+
#
|
2993
|
+
#
|
2994
|
+
#
|
2995
|
+
# [1]: https://dev.mysql.com/doc/refman/5.6/en/keywords.html
|
2996
|
+
# [2]: https://dev.mysql.com/doc/refman/5.7/en/keywords.html
|
2997
|
+
# [3]: https://dev.mysql.com/doc/refman/8.0/en/keywords.html
|
2998
|
+
# [4]: https://www.postgresql.org/docs/9.6/sql-keywords-appendix.html
|
2999
|
+
# [5]: https://www.postgresql.org/docs/10/sql-keywords-appendix.html
|
3000
|
+
# [6]: https://www.postgresql.org/docs/11/sql-keywords-appendix.html
|
3001
|
+
# [7]: https://www.postgresql.org/docs/12/sql-keywords-appendix.html
|
2960
3002
|
#
|
2961
3003
|
# @option params [required, String] :master_username
|
2962
|
-
# The
|
3004
|
+
# The name for the master user.
|
3005
|
+
#
|
3006
|
+
# **MySQL**
|
2963
3007
|
#
|
2964
3008
|
# Constraints:
|
2965
3009
|
#
|
2966
|
-
# *
|
3010
|
+
# * Required for MySQL.
|
2967
3011
|
#
|
2968
|
-
# * Must
|
3012
|
+
# * Must be 1 to 16 letters or numbers. Can contain underscores.
|
2969
3013
|
#
|
2970
|
-
# *
|
3014
|
+
# * First character must be a letter.
|
2971
3015
|
#
|
2972
|
-
# *
|
3016
|
+
# * Can't be a reserved word for the chosen database engine.
|
2973
3017
|
#
|
2974
3018
|
# For more information about reserved words in MySQL 5.6 or 5.7, see
|
2975
|
-
# the Keywords and Reserved Words articles for [MySQL 5.6][1]
|
2976
|
-
#
|
3019
|
+
# the Keywords and Reserved Words articles for [MySQL 5.6][1], [MySQL
|
3020
|
+
# 5.7][2], or [MySQL 8.0][3].
|
3021
|
+
#
|
3022
|
+
# **PostgreSQL**
|
3023
|
+
#
|
3024
|
+
# Constraints:
|
3025
|
+
#
|
3026
|
+
# * Required for PostgreSQL.
|
3027
|
+
#
|
3028
|
+
# * Must be 1 to 63 letters or numbers. Can contain underscores.
|
3029
|
+
#
|
3030
|
+
# * First character must be a letter.
|
3031
|
+
#
|
3032
|
+
# * Can't be a reserved word for the chosen database engine.
|
3033
|
+
#
|
3034
|
+
# For more information about reserved words in MySQL 5.6 or 5.7, see
|
3035
|
+
# the Keywords and Reserved Words articles for [PostgreSQL 9.6][4],
|
3036
|
+
# [PostgreSQL 10][5], [PostgreSQL 11][6], and [PostgreSQL 12][7].
|
2977
3037
|
#
|
2978
3038
|
#
|
2979
3039
|
#
|
2980
3040
|
# [1]: https://dev.mysql.com/doc/refman/5.6/en/keywords.html
|
2981
3041
|
# [2]: https://dev.mysql.com/doc/refman/5.7/en/keywords.html
|
3042
|
+
# [3]: https://dev.mysql.com/doc/refman/8.0/en/keywords.html
|
3043
|
+
# [4]: https://www.postgresql.org/docs/9.6/sql-keywords-appendix.html
|
3044
|
+
# [5]: https://www.postgresql.org/docs/10/sql-keywords-appendix.html
|
3045
|
+
# [6]: https://www.postgresql.org/docs/11/sql-keywords-appendix.html
|
3046
|
+
# [7]: https://www.postgresql.org/docs/12/sql-keywords-appendix.html
|
2982
3047
|
#
|
2983
3048
|
# @option params [String] :master_user_password
|
2984
|
-
# The password for the master user
|
2985
|
-
#
|
2986
|
-
#
|
3049
|
+
# The password for the master user. The password can include any
|
3050
|
+
# printable ASCII character except "/", """, or "@". It cannot
|
3051
|
+
# contain spaces.
|
3052
|
+
#
|
3053
|
+
# **MySQL**
|
3054
|
+
#
|
3055
|
+
# Constraints: Must contain from 8 to 41 characters.
|
3056
|
+
#
|
3057
|
+
# **PostgreSQL**
|
2987
3058
|
#
|
2988
|
-
# Constraints: Must contain 8 to
|
3059
|
+
# Constraints: Must contain from 8 to 128 characters.
|
2989
3060
|
#
|
2990
3061
|
# @option params [String] :preferred_backup_window
|
2991
3062
|
# The daily time range during which automated backups are created for
|
@@ -3113,7 +3184,7 @@ module Aws::Lightsail
|
|
3113
3184
|
# [1]: https://lightsail.aws.amazon.com/ls/docs/en/articles/amazon-lightsail-controlling-access-using-tags
|
3114
3185
|
#
|
3115
3186
|
# @option params [required, String] :relational_database_name
|
3116
|
-
# The name to use for your new database.
|
3187
|
+
# The name to use for your new Lightsail database resource.
|
3117
3188
|
#
|
3118
3189
|
# Constraints:
|
3119
3190
|
#
|
@@ -10299,13 +10370,19 @@ module Aws::Lightsail
|
|
10299
10370
|
# [1]: https://lightsail.aws.amazon.com/ls/docs/en/articles/amazon-lightsail-controlling-access-using-tags
|
10300
10371
|
#
|
10301
10372
|
# @option params [required, String] :relational_database_name
|
10302
|
-
# The name of your database to update.
|
10373
|
+
# The name of your Lightsail database resource to update.
|
10303
10374
|
#
|
10304
10375
|
# @option params [String] :master_user_password
|
10305
|
-
# The password for the master user
|
10306
|
-
#
|
10376
|
+
# The password for the master user. The password can include any
|
10377
|
+
# printable ASCII character except "/", """, or "@".
|
10378
|
+
#
|
10379
|
+
# My**SQL**
|
10380
|
+
#
|
10381
|
+
# Constraints: Must contain from 8 to 41 characters.
|
10382
|
+
#
|
10383
|
+
# **PostgreSQL**
|
10307
10384
|
#
|
10308
|
-
# Constraints: Must contain 8 to
|
10385
|
+
# Constraints: Must contain from 8 to 128 characters.
|
10309
10386
|
#
|
10310
10387
|
# @option params [Boolean] :rotate_master_user_password
|
10311
10388
|
# When `true`, the master user password is changed to a new strong
|
@@ -10516,7 +10593,7 @@ module Aws::Lightsail
|
|
10516
10593
|
params: params,
|
10517
10594
|
config: config)
|
10518
10595
|
context[:gem_name] = 'aws-sdk-lightsail'
|
10519
|
-
context[:gem_version] = '1.
|
10596
|
+
context[:gem_version] = '1.48.0'
|
10520
10597
|
Seahorse::Client::Request.new(handlers, context)
|
10521
10598
|
end
|
10522
10599
|
|
@@ -4008,7 +4008,7 @@ module Aws::Lightsail
|
|
4008
4008
|
# }
|
4009
4009
|
#
|
4010
4010
|
# @!attribute [rw] relational_database_name
|
4011
|
-
# The name to use for your new database.
|
4011
|
+
# The name to use for your new Lightsail database resource.
|
4012
4012
|
#
|
4013
4013
|
# Constraints:
|
4014
4014
|
#
|
@@ -4177,45 +4177,116 @@ module Aws::Lightsail
|
|
4177
4177
|
# @return [String]
|
4178
4178
|
#
|
4179
4179
|
# @!attribute [rw] master_database_name
|
4180
|
-
# The
|
4181
|
-
#
|
4180
|
+
# The meaning of this parameter differs according to the database
|
4181
|
+
# engine you use.
|
4182
|
+
#
|
4183
|
+
# **MySQL**
|
4184
|
+
#
|
4185
|
+
# The name of the database to create when the Lightsail database
|
4186
|
+
# resource is created. If this parameter isn't specified, no database
|
4187
|
+
# is created in the database resource.
|
4188
|
+
#
|
4189
|
+
# Constraints:
|
4190
|
+
#
|
4191
|
+
# * Must contain 1 to 64 letters or numbers.
|
4192
|
+
#
|
4193
|
+
# * Must begin with a letter. Subsequent characters can be letters,
|
4194
|
+
# underscores, or digits (0- 9).
|
4195
|
+
#
|
4196
|
+
# * Can't be a word reserved by the specified database engine.
|
4197
|
+
#
|
4198
|
+
# For more information about reserved words in MySQL, see the
|
4199
|
+
# Keywords and Reserved Words articles for [MySQL 5.6][1], [MySQL
|
4200
|
+
# 5.7][2], and [MySQL 8.0][3].
|
4201
|
+
#
|
4202
|
+
# **PostgreSQL**
|
4203
|
+
#
|
4204
|
+
# The name of the database to create when the Lightsail database
|
4205
|
+
# resource is created. If this parameter isn't specified, a database
|
4206
|
+
# named `postgres` is created in the database resource.
|
4182
4207
|
#
|
4183
4208
|
# Constraints:
|
4184
4209
|
#
|
4185
|
-
# * Must contain
|
4210
|
+
# * Must contain 1 to 63 letters or numbers.
|
4211
|
+
#
|
4212
|
+
# * Must begin with a letter. Subsequent characters can be letters,
|
4213
|
+
# underscores, or digits (0- 9).
|
4214
|
+
#
|
4215
|
+
# * Can't be a word reserved by the specified database engine.
|
4216
|
+
#
|
4217
|
+
# For more information about reserved words in PostgreSQL, see the
|
4218
|
+
# SQL Key Words articles for [PostgreSQL 9.6][4], [PostgreSQL
|
4219
|
+
# 10][5], [PostgreSQL 11][6], and [PostgreSQL 12][7].
|
4220
|
+
#
|
4221
|
+
#
|
4186
4222
|
#
|
4187
|
-
#
|
4223
|
+
# [1]: https://dev.mysql.com/doc/refman/5.6/en/keywords.html
|
4224
|
+
# [2]: https://dev.mysql.com/doc/refman/5.7/en/keywords.html
|
4225
|
+
# [3]: https://dev.mysql.com/doc/refman/8.0/en/keywords.html
|
4226
|
+
# [4]: https://www.postgresql.org/docs/9.6/sql-keywords-appendix.html
|
4227
|
+
# [5]: https://www.postgresql.org/docs/10/sql-keywords-appendix.html
|
4228
|
+
# [6]: https://www.postgresql.org/docs/11/sql-keywords-appendix.html
|
4229
|
+
# [7]: https://www.postgresql.org/docs/12/sql-keywords-appendix.html
|
4188
4230
|
# @return [String]
|
4189
4231
|
#
|
4190
4232
|
# @!attribute [rw] master_username
|
4191
|
-
# The
|
4233
|
+
# The name for the master user.
|
4234
|
+
#
|
4235
|
+
# **MySQL**
|
4236
|
+
#
|
4237
|
+
# Constraints:
|
4238
|
+
#
|
4239
|
+
# * Required for MySQL.
|
4240
|
+
#
|
4241
|
+
# * Must be 1 to 16 letters or numbers. Can contain underscores.
|
4242
|
+
#
|
4243
|
+
# * First character must be a letter.
|
4244
|
+
#
|
4245
|
+
# * Can't be a reserved word for the chosen database engine.
|
4246
|
+
#
|
4247
|
+
# For more information about reserved words in MySQL 5.6 or 5.7, see
|
4248
|
+
# the Keywords and Reserved Words articles for [MySQL 5.6][1],
|
4249
|
+
# [MySQL 5.7][2], or [MySQL 8.0][3].
|
4250
|
+
#
|
4251
|
+
# **PostgreSQL**
|
4192
4252
|
#
|
4193
4253
|
# Constraints:
|
4194
4254
|
#
|
4195
|
-
# *
|
4255
|
+
# * Required for PostgreSQL.
|
4196
4256
|
#
|
4197
|
-
# * Must
|
4257
|
+
# * Must be 1 to 63 letters or numbers. Can contain underscores.
|
4198
4258
|
#
|
4199
|
-
# *
|
4259
|
+
# * First character must be a letter.
|
4200
4260
|
#
|
4201
|
-
# *
|
4261
|
+
# * Can't be a reserved word for the chosen database engine.
|
4202
4262
|
#
|
4203
4263
|
# For more information about reserved words in MySQL 5.6 or 5.7, see
|
4204
|
-
# the Keywords and Reserved Words articles for [
|
4205
|
-
# [
|
4264
|
+
# the Keywords and Reserved Words articles for [PostgreSQL 9.6][4],
|
4265
|
+
# [PostgreSQL 10][5], [PostgreSQL 11][6], and [PostgreSQL 12][7].
|
4206
4266
|
#
|
4207
4267
|
#
|
4208
4268
|
#
|
4209
4269
|
# [1]: https://dev.mysql.com/doc/refman/5.6/en/keywords.html
|
4210
4270
|
# [2]: https://dev.mysql.com/doc/refman/5.7/en/keywords.html
|
4271
|
+
# [3]: https://dev.mysql.com/doc/refman/8.0/en/keywords.html
|
4272
|
+
# [4]: https://www.postgresql.org/docs/9.6/sql-keywords-appendix.html
|
4273
|
+
# [5]: https://www.postgresql.org/docs/10/sql-keywords-appendix.html
|
4274
|
+
# [6]: https://www.postgresql.org/docs/11/sql-keywords-appendix.html
|
4275
|
+
# [7]: https://www.postgresql.org/docs/12/sql-keywords-appendix.html
|
4211
4276
|
# @return [String]
|
4212
4277
|
#
|
4213
4278
|
# @!attribute [rw] master_user_password
|
4214
|
-
# The password for the master user
|
4215
|
-
#
|
4216
|
-
#
|
4279
|
+
# The password for the master user. The password can include any
|
4280
|
+
# printable ASCII character except "/", """, or "@". It cannot
|
4281
|
+
# contain spaces.
|
4282
|
+
#
|
4283
|
+
# **MySQL**
|
4284
|
+
#
|
4285
|
+
# Constraints: Must contain from 8 to 41 characters.
|
4217
4286
|
#
|
4218
|
-
#
|
4287
|
+
# **PostgreSQL**
|
4288
|
+
#
|
4289
|
+
# Constraints: Must contain from 8 to 128 characters.
|
4219
4290
|
# @return [String]
|
4220
4291
|
#
|
4221
4292
|
# @!attribute [rw] preferred_backup_window
|
@@ -13881,15 +13952,20 @@ module Aws::Lightsail
|
|
13881
13952
|
# }
|
13882
13953
|
#
|
13883
13954
|
# @!attribute [rw] relational_database_name
|
13884
|
-
# The name of your database to update.
|
13955
|
+
# The name of your Lightsail database resource to update.
|
13885
13956
|
# @return [String]
|
13886
13957
|
#
|
13887
13958
|
# @!attribute [rw] master_user_password
|
13888
|
-
# The password for the master user
|
13889
|
-
#
|
13890
|
-
#
|
13959
|
+
# The password for the master user. The password can include any
|
13960
|
+
# printable ASCII character except "/", """, or "@".
|
13961
|
+
#
|
13962
|
+
# My**SQL**
|
13963
|
+
#
|
13964
|
+
# Constraints: Must contain from 8 to 41 characters.
|
13965
|
+
#
|
13966
|
+
# **PostgreSQL**
|
13891
13967
|
#
|
13892
|
-
# Constraints: Must contain 8 to
|
13968
|
+
# Constraints: Must contain from 8 to 128 characters.
|
13893
13969
|
# @return [String]
|
13894
13970
|
#
|
13895
13971
|
# @!attribute [rw] rotate_master_user_password
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-lightsail
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.48.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: 2021-04-
|
11
|
+
date: 2021-04-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|