File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -591,7 +591,7 @@ export class Metric implements IMetric {
591591
592592 dimsArray . map ( key => {
593593 if ( dims [ key ] === undefined || dims [ key ] === null ) {
594- throw new cdk . UnscopedValidationError ( `Dimension value of '${ dims [ key ] } ' is invalid` ) ;
594+ throw new cdk . UnscopedValidationError ( `Dimension value of '${ dims [ key ] } ' is invalid for key: ${ key } ` ) ;
595595 }
596596 if ( key . length < 1 || key . length > 255 ) {
597597 throw new cdk . UnscopedValidationError ( `Dimension name must be at least 1 and no more than 255 characters; received ${ key } ` ) ;
Original file line number Diff line number Diff line change @@ -2813,6 +2813,8 @@ export class SqlServerEngineVersion {
28132813 public static readonly VER_15_00_4415_2_V1 = SqlServerEngineVersion . of ( '15.00.4415.2.v1' , '15.00' ) ;
28142814 /** Version "15.00.4420.2.v1". */
28152815 public static readonly VER_15_00_4420_2_V1 = SqlServerEngineVersion . of ( '15.00.4420.2.v1' , '15.00' ) ;
2816+ /** Version "15.00.4430.1.v1". */
2817+ public static readonly VER_15_00_4430_1_V1 = SqlServerEngineVersion . of ( '15.00.4430.1.v1' , '15.00' ) ;
28162818
28172819 /** Version "16.00" (only a major version, without a specific minor version). */
28182820 public static readonly VER_16 = SqlServerEngineVersion . of ( '16.00' , '16.00' ) ;
@@ -2840,6 +2842,8 @@ export class SqlServerEngineVersion {
28402842 public static readonly VER_16_00_4165_4_V1 = SqlServerEngineVersion . of ( '16.00.4165.4.v1' , '16.00' ) ;
28412843 /** Version "16.00.4175.1.v1". */
28422844 public static readonly VER_16_00_4175_1_V1 = SqlServerEngineVersion . of ( '16.00.4175.1.v1' , '16.00' ) ;
2845+ /** Version "16.00.4185.3.v1". */
2846+ public static readonly VER_16_00_4185_3_V1 = SqlServerEngineVersion . of ( '16.00.4185.3.v1' , '16.00' ) ;
28432847
28442848 /**
28452849 * Create a new SqlServerEngineVersion with an arbitrary version.
You can’t perform that action at this time.
0 commit comments