@@ -215,6 +215,11 @@ abstract class AdotLambdaLayerVersion {
215215 * The collection of versions of the ADOT Lambda Layer for Java SDK
216216 */
217217export class AdotLambdaLayerJavaSdkVersion extends AdotLambdaLayerVersion {
218+ /**
219+ * Version 1.32.0
220+ */
221+ public static readonly V1_32_0_2 = new AdotLambdaLayerJavaSdkVersion ( '1.32.0-2' ) ;
222+
218223 /**
219224 * Version 1.32.0
220225 */
@@ -249,7 +254,7 @@ export class AdotLambdaLayerJavaSdkVersion extends AdotLambdaLayerVersion {
249254 * The latest layer version available in this CDK version. New versions could
250255 * introduce incompatible changes. Make sure to test them before deploying to production.
251256 */
252- public static readonly LATEST = this . V1_32_0_1 ;
257+ public static readonly LATEST = this . V1_32_0_2 ;
253258
254259 private constructor ( protected readonly layerVersion : string ) {
255260 super ( AdotLambdaLayerType . JAVA_SDK , layerVersion ) ;
@@ -260,6 +265,11 @@ export class AdotLambdaLayerJavaSdkVersion extends AdotLambdaLayerVersion {
260265 * The collection of versions of the ADOT Lambda Layer for Java auto-instrumentation
261266 */
262267export class AdotLambdaLayerJavaAutoInstrumentationVersion extends AdotLambdaLayerVersion {
268+ /**
269+ * Version 1.32.0
270+ */
271+ public static readonly V1_32_0_2 = new AdotLambdaLayerJavaAutoInstrumentationVersion ( '1.32.0-2' ) ;
272+
263273 /**
264274 * Version 1.32.0
265275 */
@@ -294,7 +304,7 @@ export class AdotLambdaLayerJavaAutoInstrumentationVersion extends AdotLambdaLay
294304 * The latest layer version available in this CDK version. New versions could
295305 * introduce incompatible changes. Make sure to test them before deploying to production.
296306 */
297- public static readonly LATEST = this . V1_32_0_1 ;
307+ public static readonly LATEST = this . V1_32_0_2 ;
298308
299309 private constructor ( protected readonly layerVersion : string ) {
300310 super ( AdotLambdaLayerType . JAVA_AUTO_INSTRUMENTATION , layerVersion ) ;
@@ -305,6 +315,11 @@ export class AdotLambdaLayerJavaAutoInstrumentationVersion extends AdotLambdaLay
305315 * The collection of versions of the ADOT Lambda Layer for Python SDK
306316 */
307317export class AdotLambdaLayerPythonSdkVersion extends AdotLambdaLayerVersion {
318+ /**
319+ * Version 1.29.0
320+ */
321+ public static readonly V1_29_0_1 = new AdotLambdaLayerPythonSdkVersion ( '1.29.0-1' ) ;
322+
308323 /**
309324 * Version 1.29.0
310325 */
@@ -374,7 +389,7 @@ export class AdotLambdaLayerPythonSdkVersion extends AdotLambdaLayerVersion {
374389 * The latest layer version available in this CDK version. New versions could
375390 * introduce incompatible changes. Make sure to test them before deploying to production.
376391 */
377- public static readonly LATEST = this . V1_29_0 ;
392+ public static readonly LATEST = this . V1_29_0_1 ;
378393
379394 private constructor ( protected readonly layerVersion : string ) {
380395 super ( AdotLambdaLayerType . PYTHON_SDK , layerVersion ) ;
@@ -385,6 +400,11 @@ export class AdotLambdaLayerPythonSdkVersion extends AdotLambdaLayerVersion {
385400 * The collection of versions of the ADOT Lambda Layer for JavaScript SDK
386401 */
387402export class AdotLambdaLayerJavaScriptSdkVersion extends AdotLambdaLayerVersion {
403+ /**
404+ * Version 1.30.0
405+ */
406+ public static readonly V1_30_0_1 = new AdotLambdaLayerJavaScriptSdkVersion ( '1.30.0-1' ) ;
407+
388408 /**
389409 * Version 1.30.0
390410 */
@@ -419,7 +439,7 @@ export class AdotLambdaLayerJavaScriptSdkVersion extends AdotLambdaLayerVersion
419439 * The latest layer version available in this CDK version. New versions could
420440 * introduce incompatible changes. Make sure to test them before deploying to production.
421441 */
422- public static readonly LATEST = this . V1_30_0 ;
442+ public static readonly LATEST = this . V1_30_0_1 ;
423443
424444 private constructor ( protected readonly layerVersion : string ) {
425445 super ( AdotLambdaLayerType . JAVASCRIPT_SDK , layerVersion ) ;
@@ -430,6 +450,11 @@ export class AdotLambdaLayerJavaScriptSdkVersion extends AdotLambdaLayerVersion
430450 * The collection of versions of the ADOT Lambda Layer for generic purpose
431451 */
432452export class AdotLambdaLayerGenericVersion extends AdotLambdaLayerVersion {
453+ /**
454+ * Version 0.115.0
455+ */
456+ public static readonly V0_115_0_1 = new AdotLambdaLayerGenericVersion ( '0.115.0-1' ) ;
457+
433458 /**
434459 * Version 0.115.0
435460 */
@@ -474,7 +499,7 @@ export class AdotLambdaLayerGenericVersion extends AdotLambdaLayerVersion {
474499 * The latest layer version available in this CDK version. New versions could
475500 * introduce incompatible changes. Make sure to test them before deploying to production.
476501 */
477- public static readonly LATEST = this . V0_115_0 ;
502+ public static readonly LATEST = this . V0_115_0_1 ;
478503
479504 private constructor ( protected readonly layerVersion : string ) {
480505 super ( AdotLambdaLayerType . GENERIC , layerVersion ) ;
0 commit comments