@@ -214,6 +214,11 @@ abstract class AdotLambdaLayerVersion {
214214 * The collection of versions of the ADOT Lambda Layer for Java SDK
215215 */
216216export class AdotLambdaLayerJavaSdkVersion extends AdotLambdaLayerVersion {
217+ /**
218+ * Version 1.32.1
219+ */
220+ public static readonly V1_32_0_1 = new AdotLambdaLayerJavaSdkVersion ( '1.32.1' ) ;
221+
217222 /**
218223 * Version 1.32.0
219224 */
@@ -243,7 +248,7 @@ export class AdotLambdaLayerJavaSdkVersion extends AdotLambdaLayerVersion {
243248 * The latest layer version available in this CDK version. New versions could
244249 * introduce incompatible changes. Make sure to test them before deploying to production.
245250 */
246- public static readonly LATEST = this . V1_32_0 ;
251+ public static readonly LATEST = this . V1_32_0_1 ;
247252
248253 private constructor ( protected readonly layerVersion : string ) {
249254 super ( AdotLambdaLayerType . JAVA_SDK , layerVersion ) ;
@@ -254,6 +259,11 @@ export class AdotLambdaLayerJavaSdkVersion extends AdotLambdaLayerVersion {
254259 * The collection of versions of the ADOT Lambda Layer for Java auto-instrumentation
255260 */
256261export class AdotLambdaLayerJavaAutoInstrumentationVersion extends AdotLambdaLayerVersion {
262+ /**
263+ * Version 1.32.0
264+ */
265+ public static readonly V1_32_0_1 = new AdotLambdaLayerJavaAutoInstrumentationVersion ( '1.32.0-1' ) ;
266+
257267 /**
258268 * Version 1.32.0
259269 */
@@ -283,7 +293,7 @@ export class AdotLambdaLayerJavaAutoInstrumentationVersion extends AdotLambdaLay
283293 * The latest layer version available in this CDK version. New versions could
284294 * introduce incompatible changes. Make sure to test them before deploying to production.
285295 */
286- public static readonly LATEST = this . V1_32_0 ;
296+ public static readonly LATEST = this . V1_32_0_1 ;
287297
288298 private constructor ( protected readonly layerVersion : string ) {
289299 super ( AdotLambdaLayerType . JAVA_AUTO_INSTRUMENTATION , layerVersion ) ;
@@ -294,6 +304,11 @@ export class AdotLambdaLayerJavaAutoInstrumentationVersion extends AdotLambdaLay
294304 * The collection of versions of the ADOT Lambda Layer for Python SDK
295305 */
296306export class AdotLambdaLayerPythonSdkVersion extends AdotLambdaLayerVersion {
307+ /**
308+ * Version 1.29.0
309+ */
310+ public static readonly V1_29_0 = new AdotLambdaLayerPythonSdkVersion ( '1.29.0' ) ;
311+
297312 /**
298313 * Version 1.25.0
299314 */
@@ -358,7 +373,7 @@ export class AdotLambdaLayerPythonSdkVersion extends AdotLambdaLayerVersion {
358373 * The latest layer version available in this CDK version. New versions could
359374 * introduce incompatible changes. Make sure to test them before deploying to production.
360375 */
361- public static readonly LATEST = this . V1_25_0 ;
376+ public static readonly LATEST = this . V1_29_0 ;
362377
363378 private constructor ( protected readonly layerVersion : string ) {
364379 super ( AdotLambdaLayerType . PYTHON_SDK , layerVersion ) ;
@@ -369,6 +384,11 @@ export class AdotLambdaLayerPythonSdkVersion extends AdotLambdaLayerVersion {
369384 * The collection of versions of the ADOT Lambda Layer for JavaScript SDK
370385 */
371386export class AdotLambdaLayerJavaScriptSdkVersion extends AdotLambdaLayerVersion {
387+ /**
388+ * Version 1.30.0
389+ */
390+ public static readonly V1_30_0 = new AdotLambdaLayerJavaScriptSdkVersion ( '1.30.0' ) ;
391+
372392 /**
373393 * Version 1.18.1
374394 */
@@ -398,7 +418,7 @@ export class AdotLambdaLayerJavaScriptSdkVersion extends AdotLambdaLayerVersion
398418 * The latest layer version available in this CDK version. New versions could
399419 * introduce incompatible changes. Make sure to test them before deploying to production.
400420 */
401- public static readonly LATEST = this . V1_18_1 ;
421+ public static readonly LATEST = this . V1_30_0 ;
402422
403423 private constructor ( protected readonly layerVersion : string ) {
404424 super ( AdotLambdaLayerType . JAVASCRIPT_SDK , layerVersion ) ;
@@ -409,6 +429,11 @@ export class AdotLambdaLayerJavaScriptSdkVersion extends AdotLambdaLayerVersion
409429 * The collection of versions of the ADOT Lambda Layer for generic purpose
410430 */
411431export class AdotLambdaLayerGenericVersion extends AdotLambdaLayerVersion {
432+ /**
433+ * Version 0.115.0
434+ */
435+ public static readonly V0_115_0 = new AdotLambdaLayerGenericVersion ( '0.115.0' ) ;
436+
412437 /**
413438 * Version 0.102.1
414439 */
@@ -448,7 +473,7 @@ export class AdotLambdaLayerGenericVersion extends AdotLambdaLayerVersion {
448473 * The latest layer version available in this CDK version. New versions could
449474 * introduce incompatible changes. Make sure to test them before deploying to production.
450475 */
451- public static readonly LATEST = this . V0_102_1 ;
476+ public static readonly LATEST = this . V0_115_0 ;
452477
453478 private constructor ( protected readonly layerVersion : string ) {
454479 super ( AdotLambdaLayerType . GENERIC , layerVersion ) ;
0 commit comments