@@ -1036,33 +1036,75 @@ export class PostgresEngineVersion {
1036
1036
1037
1037
/** Version "11" (only a major version, without a specific minor version). */
1038
1038
public static readonly VER_11 = PostgresEngineVersion . of ( '11' , '11' , { s3Import : true } ) ;
1039
- /** Version "11.1". */
1039
+ /**
1040
+ * Version "11.1".
1041
+ * @deprecated PostgreSQL 11.1 is no longer supported by Amazon RDS.
1042
+ */
1040
1043
public static readonly VER_11_1 = PostgresEngineVersion . of ( '11.1' , '11' , { s3Import : true } ) ;
1041
- /** Version "11.2". */
1044
+ /**
1045
+ * Version "11.2".
1046
+ * @deprecated PostgreSQL 11.2 is no longer supported by Amazon RDS.
1047
+ */
1042
1048
public static readonly VER_11_2 = PostgresEngineVersion . of ( '11.2' , '11' , { s3Import : true } ) ;
1043
- /** Version "11.4". */
1049
+ /**
1050
+ * Version "11.4".
1051
+ * @deprecated PostgreSQL 11.4 is no longer supported by Amazon RDS.
1052
+ */
1044
1053
public static readonly VER_11_4 = PostgresEngineVersion . of ( '11.4' , '11' , { s3Import : true } ) ;
1045
- /** Version "11.5". */
1054
+ /**
1055
+ * Version "11.5".
1056
+ * @deprecated PostgreSQL 11.5 is no longer supported by Amazon RDS.
1057
+ */
1046
1058
public static readonly VER_11_5 = PostgresEngineVersion . of ( '11.5' , '11' , { s3Import : true } ) ;
1047
- /** Version "11.6". */
1059
+ /**
1060
+ * Version "11.6".
1061
+ * @deprecated PostgreSQL 11.6 is no longer supported by Amazon RDS.
1062
+ */
1048
1063
public static readonly VER_11_6 = PostgresEngineVersion . of ( '11.6' , '11' , { s3Import : true } ) ;
1049
- /** Version "11.7". */
1064
+ /**
1065
+ * Version "11.7".
1066
+ * @deprecated PostgreSQL 11.7 is no longer supported by Amazon RDS.
1067
+ */
1050
1068
public static readonly VER_11_7 = PostgresEngineVersion . of ( '11.7' , '11' , { s3Import : true } ) ;
1051
- /** Version "11.8". */
1069
+ /**
1070
+ * Version "11.8".
1071
+ * @deprecated PostgreSQL 11.8 is no longer supported by Amazon RDS.
1072
+ */
1052
1073
public static readonly VER_11_8 = PostgresEngineVersion . of ( '11.8' , '11' , { s3Import : true } ) ;
1053
- /** Version "11.9". */
1074
+ /**
1075
+ * Version "11.9".
1076
+ * @deprecated PostgreSQL 11.9 is no longer supported by Amazon RDS.
1077
+ */
1054
1078
public static readonly VER_11_9 = PostgresEngineVersion . of ( '11.9' , '11' , { s3Import : true , s3Export : true } ) ;
1055
- /** Version "11.10". */
1079
+ /**
1080
+ * Version "11.10"
1081
+ * @deprecated PostgreSQL 11.10 is no longer supported by Amazon RDS.
1082
+ */
1056
1083
public static readonly VER_11_10 = PostgresEngineVersion . of ( '11.10' , '11' , { s3Import : true , s3Export : true } ) ;
1057
- /** Version "11.11". */
1084
+ /**
1085
+ * Version "11.11"
1086
+ * @deprecated PostgreSQL 11.11 is no longer supported by Amazon RDS.
1087
+ */
1058
1088
public static readonly VER_11_11 = PostgresEngineVersion . of ( '11.11' , '11' , { s3Import : true , s3Export : true } ) ;
1059
- /** Version "11.12". */
1089
+ /**
1090
+ * Version "11.12"
1091
+ * @deprecated PostgreSQL 11.12 is no longer supported by Amazon RDS.
1092
+ */
1060
1093
public static readonly VER_11_12 = PostgresEngineVersion . of ( '11.12' , '11' , { s3Import : true , s3Export : true } ) ;
1061
- /** Version "11.13". */
1094
+ /**
1095
+ * Version "11.13"
1096
+ * @deprecated PostgreSQL 11.13 is no longer supported by Amazon RDS.
1097
+ */
1062
1098
public static readonly VER_11_13 = PostgresEngineVersion . of ( '11.13' , '11' , { s3Import : true , s3Export : true } ) ;
1063
- /** Version "11.14". */
1099
+ /**
1100
+ * Version "11.14"
1101
+ * @deprecated PostgreSQL 11.14 is no longer supported by Amazon RDS.
1102
+ */
1064
1103
public static readonly VER_11_14 = PostgresEngineVersion . of ( '11.14' , '11' , { s3Import : true , s3Export : true } ) ;
1065
- /** Version "11.15". */
1104
+ /**
1105
+ * Version "11.15"
1106
+ * @deprecated PostgreSQL 11.15 is no longer supported by Amazon RDS.
1107
+ */
1066
1108
public static readonly VER_11_15 = PostgresEngineVersion . of ( '11.15' , '11' , { s3Import : true , s3Export : true } ) ;
1067
1109
/** Version "11.16". */
1068
1110
public static readonly VER_11_16 = PostgresEngineVersion . of ( '11.16' , '11' , { s3Import : true , s3Export : true } ) ;
@@ -1074,26 +1116,55 @@ export class PostgresEngineVersion {
1074
1116
public static readonly VER_11_19 = PostgresEngineVersion . of ( '11.19' , '11' , { s3Import : true , s3Export : true } ) ;
1075
1117
/** Version "11.20". */
1076
1118
public static readonly VER_11_20 = PostgresEngineVersion . of ( '11.20' , '11' , { s3Import : true , s3Export : true } ) ;
1119
+ /** Version "11.21". */
1120
+ public static readonly VER_11_21 = PostgresEngineVersion . of ( '11.21' , '11' , { s3Import : true , s3Export : true } ) ;
1077
1121
1078
1122
/** Version "12" (only a major version, without a specific minor version). */
1079
1123
public static readonly VER_12 = PostgresEngineVersion . of ( '12' , '12' , { s3Import : true } ) ;
1080
- /** Version "12.2". */
1124
+ /**
1125
+ * Version "12.2".
1126
+ * @deprecated PostgreSQL 12.2 is no longer supported by Amazon RDS.
1127
+ */
1081
1128
public static readonly VER_12_2 = PostgresEngineVersion . of ( '12.2' , '12' , { s3Import : true } ) ;
1082
- /** Version "12.3". */
1129
+ /**
1130
+ * Version "12.3".
1131
+ * @deprecated PostgreSQL 12.3 is no longer supported by Amazon RDS.
1132
+ */
1083
1133
public static readonly VER_12_3 = PostgresEngineVersion . of ( '12.3' , '12' , { s3Import : true } ) ;
1084
- /** Version "12.4". */
1134
+ /**
1135
+ * Version "12.4".
1136
+ * @deprecated PostgreSQL 12.4 is no longer supported by Amazon RDS.
1137
+ */
1085
1138
public static readonly VER_12_4 = PostgresEngineVersion . of ( '12.4' , '12' , { s3Import : true , s3Export : true } ) ;
1086
- /** Version "12.5". */
1139
+ /**
1140
+ * Version "12.5".
1141
+ * @deprecated PostgreSQL 12.5 is no longer supported by Amazon RDS.
1142
+ */
1087
1143
public static readonly VER_12_5 = PostgresEngineVersion . of ( '12.5' , '12' , { s3Import : true , s3Export : true } ) ;
1088
- /** Version "12.6". */
1144
+ /**
1145
+ * Version "12.6".
1146
+ * @deprecated PostgreSQL 12.6 is no longer supported by Amazon RDS.
1147
+ */
1089
1148
public static readonly VER_12_6 = PostgresEngineVersion . of ( '12.6' , '12' , { s3Import : true , s3Export : true } ) ;
1090
- /** Version "12.7". */
1149
+ /**
1150
+ * Version "12.7".
1151
+ * @deprecated PostgreSQL 12.7 is no longer supported by Amazon RDS.
1152
+ */
1091
1153
public static readonly VER_12_7 = PostgresEngineVersion . of ( '12.7' , '12' , { s3Import : true , s3Export : true } ) ;
1092
- /** Version "12.8". */
1154
+ /**
1155
+ * Version "12.8".
1156
+ * @deprecated PostgreSQL 12.8 is no longer supported by Amazon RDS.
1157
+ */
1093
1158
public static readonly VER_12_8 = PostgresEngineVersion . of ( '12.8' , '12' , { s3Import : true , s3Export : true } ) ;
1094
- /** Version "12.9". */
1159
+ /**
1160
+ * Version "12.9".
1161
+ * @deprecated PostgreSQL 12.9 is no longer supported by Amazon RDS.
1162
+ */
1095
1163
public static readonly VER_12_9 = PostgresEngineVersion . of ( '12.9' , '12' , { s3Import : true , s3Export : true } ) ;
1096
- /** Version "12.10". */
1164
+ /**
1165
+ * Version "12.10"
1166
+ * @deprecated PostgreSQL 12.10 is no longer supported by Amazon RDS.
1167
+ */
1097
1168
public static readonly VER_12_10 = PostgresEngineVersion . of ( '12.10' , '12' , { s3Import : true , s3Export : true } ) ;
1098
1169
/** Version "12.11". */
1099
1170
public static readonly VER_12_11 = PostgresEngineVersion . of ( '12.11' , '12' , { s3Import : true , s3Export : true } ) ;
@@ -1105,20 +1176,40 @@ export class PostgresEngineVersion {
1105
1176
public static readonly VER_12_14 = PostgresEngineVersion . of ( '12.14' , '12' , { s3Import : true , s3Export : true } ) ;
1106
1177
/** Version "12.15". */
1107
1178
public static readonly VER_12_15 = PostgresEngineVersion . of ( '12.15' , '12' , { s3Import : true , s3Export : true } ) ;
1179
+ /** Version "12.16". */
1180
+ public static readonly VER_12_16 = PostgresEngineVersion . of ( '12.16' , '12' , { s3Import : true , s3Export : true } ) ;
1108
1181
1109
1182
/** Version "13" (only a major version, without a specific minor version). */
1110
1183
public static readonly VER_13 = PostgresEngineVersion . of ( '13' , '13' , { s3Import : true , s3Export : true } ) ;
1111
- /** Version "13.1". */
1184
+ /**
1185
+ * Version "13.1".
1186
+ * @deprecated PostgreSQL 13.1 is no longer supported by Amazon RDS.
1187
+ */
1112
1188
public static readonly VER_13_1 = PostgresEngineVersion . of ( '13.1' , '13' , { s3Import : true , s3Export : true } ) ;
1113
- /** Version "13.2". */
1189
+ /**
1190
+ * Version "13.2".
1191
+ * @deprecated PostgreSQL 13.2 is no longer supported by Amazon RDS.
1192
+ */
1114
1193
public static readonly VER_13_2 = PostgresEngineVersion . of ( '13.2' , '13' , { s3Import : true , s3Export : true } ) ;
1115
- /** Version "13.3". */
1194
+ /**
1195
+ * Version "13.3".
1196
+ * @deprecated PostgreSQL 13.3 is no longer supported by Amazon RDS.
1197
+ */
1116
1198
public static readonly VER_13_3 = PostgresEngineVersion . of ( '13.3' , '13' , { s3Import : true , s3Export : true } ) ;
1117
- /** Version "13.4". */
1199
+ /**
1200
+ * Version "13.4".
1201
+ * @deprecated PostgreSQL 13.4 is no longer supported by Amazon RDS.
1202
+ */
1118
1203
public static readonly VER_13_4 = PostgresEngineVersion . of ( '13.4' , '13' , { s3Import : true , s3Export : true } ) ;
1119
- /** Version "13.5". */
1204
+ /**
1205
+ * Version "13.5".
1206
+ * @deprecated PostgreSQL 13.5 is no longer supported by Amazon RDS.
1207
+ */
1120
1208
public static readonly VER_13_5 = PostgresEngineVersion . of ( '13.5' , '13' , { s3Import : true , s3Export : true } ) ;
1121
- /** Version "13.6". */
1209
+ /**
1210
+ * Version "13.6".
1211
+ * @deprecated PostgreSQL 13.6 is no longer supported by Amazon RDS.
1212
+ */
1122
1213
public static readonly VER_13_6 = PostgresEngineVersion . of ( '13.6' , '13' , { s3Import : true , s3Export : true } ) ;
1123
1214
/** Version "13.7". */
1124
1215
public static readonly VER_13_7 = PostgresEngineVersion . of ( '13.7' , '13' , { s3Import : true , s3Export : true } ) ;
@@ -1130,12 +1221,20 @@ export class PostgresEngineVersion {
1130
1221
public static readonly VER_13_10 = PostgresEngineVersion . of ( '13.10' , '13' , { s3Import : true , s3Export : true } ) ;
1131
1222
/** Version "13.11". */
1132
1223
public static readonly VER_13_11 = PostgresEngineVersion . of ( '13.11' , '13' , { s3Import : true , s3Export : true } ) ;
1224
+ /** Version "13.12". */
1225
+ public static readonly VER_13_12 = PostgresEngineVersion . of ( '13.12' , '13' , { s3Import : true , s3Export : true } ) ;
1133
1226
1134
1227
/** Version "14" (only a major version, without a specific minor version). */
1135
1228
public static readonly VER_14 = PostgresEngineVersion . of ( '14' , '14' , { s3Import : true , s3Export : true } ) ;
1136
- /** Version "14.1". */
1229
+ /**
1230
+ * Version "14.1".
1231
+ * @deprecated PostgreSQL 14.1 is no longer supported by Amazon RDS.
1232
+ */
1137
1233
public static readonly VER_14_1 = PostgresEngineVersion . of ( '14.1' , '14' , { s3Import : true , s3Export : true } ) ;
1138
- /** Version "14.2". */
1234
+ /**
1235
+ * Version "14.2".
1236
+ * @deprecated PostgreSQL 14.2 is no longer supported by Amazon RDS.
1237
+ */
1139
1238
public static readonly VER_14_2 = PostgresEngineVersion . of ( '14.2' , '14' , { s3Import : true , s3Export : true } ) ;
1140
1239
/** Version "14.3". */
1141
1240
public static readonly VER_14_3 = PostgresEngineVersion . of ( '14.3' , '14' , { s3Import : true , s3Export : true } ) ;
@@ -1149,13 +1248,17 @@ export class PostgresEngineVersion {
1149
1248
public static readonly VER_14_7 = PostgresEngineVersion . of ( '14.7' , '14' , { s3Import : true , s3Export : true } ) ;
1150
1249
/** Version "14.8". */
1151
1250
public static readonly VER_14_8 = PostgresEngineVersion . of ( '14.8' , '14' , { s3Import : true , s3Export : true } ) ;
1251
+ /** Version "14.9". */
1252
+ public static readonly VER_14_9 = PostgresEngineVersion . of ( '14.9' , '14' , { s3Import : true , s3Export : true } ) ;
1152
1253
1153
1254
/** Version "15" (only a major version, without a specific minor version). */
1154
1255
public static readonly VER_15 = PostgresEngineVersion . of ( '15' , '15' , { s3Import : true , s3Export : true } ) ;
1155
1256
/** Version "15.2". */
1156
1257
public static readonly VER_15_2 = PostgresEngineVersion . of ( '15.2' , '15' , { s3Import : true , s3Export : true } ) ;
1157
1258
/** Version "15.3". */
1158
1259
public static readonly VER_15_3 = PostgresEngineVersion . of ( '15.3' , '15' , { s3Import : true , s3Export : true } ) ;
1260
+ /** Version "15.4". */
1261
+ public static readonly VER_15_4 = PostgresEngineVersion . of ( '15.4' , '15' , { s3Import : true , s3Export : true } ) ;
1159
1262
1160
1263
/**
1161
1264
* Create a new PostgresEngineVersion with an arbitrary version.
0 commit comments