aws-sdk-rds 1.185.0 → 1.186.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +108 -86
- data/lib/aws-sdk-rds/client_api.rb +2 -0
- data/lib/aws-sdk-rds/db_instance.rb +80 -75
- data/lib/aws-sdk-rds/db_snapshot.rb +8 -0
- data/lib/aws-sdk-rds/resource.rb +76 -64
- data/lib/aws-sdk-rds/types.rb +133 -115
- data/lib/aws-sdk-rds.rb +1 -1
- metadata +2 -2
@@ -265,6 +265,14 @@ module Aws::RDS
|
|
265
265
|
data[:storage_throughput]
|
266
266
|
end
|
267
267
|
|
268
|
+
# The Oracle system identifier (SID), which is the name of the Oracle
|
269
|
+
# database instance that manages your database files. The Oracle SID is
|
270
|
+
# also the name of your CDB.
|
271
|
+
# @return [String]
|
272
|
+
def db_system_id
|
273
|
+
data[:db_system_id]
|
274
|
+
end
|
275
|
+
|
268
276
|
# @!endgroup
|
269
277
|
|
270
278
|
# @return [Client]
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -1022,119 +1022,124 @@ module Aws::RDS
|
|
1022
1022
|
# manage_master_user_password: false,
|
1023
1023
|
# master_user_secret_kms_key_id: "String",
|
1024
1024
|
# ca_certificate_identifier: "String",
|
1025
|
+
# db_system_id: "String",
|
1025
1026
|
# })
|
1026
1027
|
# @param [Hash] options ({})
|
1027
1028
|
# @option options [String] :db_name
|
1028
|
-
# The meaning of this parameter differs
|
1029
|
-
#
|
1030
|
-
#
|
1031
|
-
# Amazon Aurora MySQL
|
1032
|
-
#
|
1033
|
-
# : The name of the database to create when the primary DB instance of
|
1034
|
-
# the Aurora MySQL DB cluster is created. If you don't specify a
|
1035
|
-
# value, Amazon RDS doesn't create a database in the DB cluster.
|
1029
|
+
# The meaning of this parameter differs according to the database engine
|
1030
|
+
# you use.
|
1036
1031
|
#
|
1037
|
-
#
|
1032
|
+
# **MySQL**
|
1038
1033
|
#
|
1039
|
-
#
|
1034
|
+
# The name of the database to create when the DB instance is created. If
|
1035
|
+
# this parameter isn't specified, no database is created in the DB
|
1036
|
+
# instance.
|
1040
1037
|
#
|
1041
|
-
#
|
1038
|
+
# Constraints:
|
1042
1039
|
#
|
1043
|
-
#
|
1040
|
+
# * Must contain 1 to 64 letters or numbers.
|
1044
1041
|
#
|
1045
|
-
#
|
1046
|
-
#
|
1042
|
+
# * Must begin with a letter. Subsequent characters can be letters,
|
1043
|
+
# underscores, or digits (0-9).
|
1047
1044
|
#
|
1048
|
-
#
|
1045
|
+
# * Can't be a word reserved by the specified database engine
|
1049
1046
|
#
|
1050
|
-
#
|
1047
|
+
# **MariaDB**
|
1051
1048
|
#
|
1052
|
-
#
|
1049
|
+
# The name of the database to create when the DB instance is created. If
|
1050
|
+
# this parameter isn't specified, no database is created in the DB
|
1051
|
+
# instance.
|
1053
1052
|
#
|
1054
|
-
#
|
1055
|
-
# underscores, or digits (0 to 9).
|
1053
|
+
# Constraints:
|
1056
1054
|
#
|
1057
|
-
#
|
1055
|
+
# * Must contain 1 to 64 letters or numbers.
|
1058
1056
|
#
|
1059
|
-
#
|
1057
|
+
# * Must begin with a letter. Subsequent characters can be letters,
|
1058
|
+
# underscores, or digits (0-9).
|
1060
1059
|
#
|
1061
|
-
#
|
1060
|
+
# * Can't be a word reserved by the specified database engine
|
1062
1061
|
#
|
1063
|
-
#
|
1062
|
+
# **PostgreSQL**
|
1064
1063
|
#
|
1065
|
-
#
|
1064
|
+
# The name of the database to create when the DB instance is created. If
|
1065
|
+
# this parameter isn't specified, a database named `postgres` is
|
1066
|
+
# created in the DB instance.
|
1066
1067
|
#
|
1067
|
-
#
|
1068
|
+
# Constraints:
|
1068
1069
|
#
|
1069
|
-
#
|
1070
|
+
# * Must contain 1 to 63 letters, numbers, or underscores.
|
1070
1071
|
#
|
1071
|
-
#
|
1072
|
+
# * Must begin with a letter. Subsequent characters can be letters,
|
1073
|
+
# underscores, or digits (0-9).
|
1072
1074
|
#
|
1073
|
-
#
|
1075
|
+
# * Can't be a word reserved by the specified database engine
|
1074
1076
|
#
|
1075
|
-
#
|
1077
|
+
# **Oracle**
|
1076
1078
|
#
|
1077
|
-
#
|
1079
|
+
# The Oracle System ID (SID) of the created DB instance. If you don't
|
1080
|
+
# specify a value, the default value is `ORCL`. You can't specify the
|
1081
|
+
# string `null`, or any other reserved word, for `DBName`.
|
1078
1082
|
#
|
1079
|
-
# :
|
1080
|
-
# If you don't specify a value, Amazon RDS doesn't create a database
|
1081
|
-
# in the DB instance.
|
1083
|
+
# Default: `ORCL`
|
1082
1084
|
#
|
1083
|
-
#
|
1085
|
+
# Constraints:
|
1084
1086
|
#
|
1085
|
-
#
|
1087
|
+
# * Can't be longer than 8 characters
|
1086
1088
|
#
|
1087
|
-
#
|
1088
|
-
# underscores, or digits (0-9).
|
1089
|
+
# ^
|
1089
1090
|
#
|
1090
|
-
#
|
1091
|
+
# **Amazon RDS Custom for Oracle**
|
1091
1092
|
#
|
1092
|
-
# RDS
|
1093
|
+
# The Oracle System ID (SID) of the created RDS Custom DB instance. If
|
1094
|
+
# you don't specify a value, the default value is `ORCL` for non-CDBs
|
1095
|
+
# and `RDSCDB` for CDBs.
|
1093
1096
|
#
|
1094
|
-
# :
|
1095
|
-
# If you don't specify a value, Amazon RDS doesn't create a database
|
1096
|
-
# in the DB instance.
|
1097
|
+
# Default: `ORCL`
|
1097
1098
|
#
|
1098
|
-
#
|
1099
|
+
# Constraints:
|
1099
1100
|
#
|
1100
|
-
#
|
1101
|
+
# * It must contain 1 to 8 alphanumeric characters.
|
1101
1102
|
#
|
1102
|
-
#
|
1103
|
-
# underscores, or digits (0-9).
|
1103
|
+
# * It must contain a letter.
|
1104
1104
|
#
|
1105
|
-
#
|
1105
|
+
# * It can't be a word reserved by the database engine.
|
1106
1106
|
#
|
1107
|
-
# RDS for
|
1107
|
+
# **Amazon RDS Custom for SQL Server**
|
1108
1108
|
#
|
1109
|
-
#
|
1109
|
+
# Not applicable. Must be null.
|
1110
1110
|
#
|
1111
|
-
#
|
1111
|
+
# **SQL Server**
|
1112
1112
|
#
|
1113
|
-
#
|
1113
|
+
# Not applicable. Must be null.
|
1114
1114
|
#
|
1115
|
-
#
|
1115
|
+
# **Amazon Aurora MySQL**
|
1116
1116
|
#
|
1117
|
-
#
|
1118
|
-
#
|
1117
|
+
# The name of the database to create when the primary DB instance of the
|
1118
|
+
# Aurora MySQL DB cluster is created. If this parameter isn't specified
|
1119
|
+
# for an Aurora MySQL DB cluster, no database is created in the DB
|
1120
|
+
# cluster.
|
1119
1121
|
#
|
1120
|
-
#
|
1122
|
+
# Constraints:
|
1121
1123
|
#
|
1122
|
-
#
|
1124
|
+
# * It must contain 1 to 64 alphanumeric characters.
|
1123
1125
|
#
|
1124
|
-
#
|
1126
|
+
# * It can't be a word reserved by the database engine.
|
1125
1127
|
#
|
1126
|
-
#
|
1128
|
+
# **Amazon Aurora PostgreSQL**
|
1127
1129
|
#
|
1128
|
-
#
|
1130
|
+
# The name of the database to create when the primary DB instance of the
|
1131
|
+
# Aurora PostgreSQL DB cluster is created. If this parameter isn't
|
1132
|
+
# specified for an Aurora PostgreSQL DB cluster, a database named
|
1133
|
+
# `postgres` is created in the DB cluster.
|
1129
1134
|
#
|
1130
|
-
#
|
1131
|
-
# underscores, or digits (0-9).
|
1135
|
+
# Constraints:
|
1132
1136
|
#
|
1133
|
-
#
|
1137
|
+
# * It must contain 1 to 63 alphanumeric characters.
|
1134
1138
|
#
|
1135
|
-
#
|
1139
|
+
# * It must begin with a letter. Subsequent characters can be letters,
|
1140
|
+
# underscores, or digits (0 to 9).
|
1136
1141
|
#
|
1137
|
-
#
|
1142
|
+
# * It can't be a word reserved by the database engine.
|
1138
1143
|
# @option options [required, String] :db_instance_identifier
|
1139
1144
|
# The identifier for this DB instance. This parameter is stored as a
|
1140
1145
|
# lowercase string.
|
@@ -2122,6 +2127,13 @@ module Aws::RDS
|
|
2122
2127
|
#
|
2123
2128
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
2124
2129
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
2130
|
+
# @option options [String] :db_system_id
|
2131
|
+
# The Oracle system identifier (SID), which is the name of the Oracle
|
2132
|
+
# database instance that manages your database files. In this context,
|
2133
|
+
# the term "Oracle database instance" refers exclusively to the system
|
2134
|
+
# global area (SGA) and Oracle background processes. If you don't
|
2135
|
+
# specify a SID, the value defaults to `RDSCDB`. The Oracle SID is also
|
2136
|
+
# the name of your CDB.
|
2125
2137
|
# @return [DBInstance]
|
2126
2138
|
def create_db_instance(options = {})
|
2127
2139
|
resp = Aws::Plugins::UserAgent.feature('resource') do
|