Skip to content

Commit 0b335d3

Browse files
Add Python3.14 (python3.14) and Java 25 (java25) support to AWS Lambda
1 parent d141a01 commit 0b335d3

File tree

5 files changed

+22
-10
lines changed

5 files changed

+22
-10
lines changed

docgenerator/AWSSDKDocSamples/Lambda.GeneratedSamples.extra.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -447,10 +447,10 @@
447447
<value>
448448
<example>
449449
<para>
450-
The following example returns details for the provisioned concurrency configuration for the BLUE alias of the specified function.
450+
The following example displays details for the provisioned concurrency configuration for the BLUE alias of the specified function.
451451
</para>
452452
<code
453-
title="To get a provisioned concurrency configuration"
453+
title="To view a provisioned concurrency configuration"
454454
source=".\AWSSDKDocSamples\Lambda\Lambda.GeneratedSamples.cs"
455455
region="example-1" />
456456
</example>
@@ -466,10 +466,10 @@
466466
<value>
467467
<example>
468468
<para>
469-
The following example displays details for the provisioned concurrency configuration for the BLUE alias of the specified function.
469+
The following example returns details for the provisioned concurrency configuration for the BLUE alias of the specified function.
470470
</para>
471471
<code
472-
title="To view a provisioned concurrency configuration"
472+
title="To get a provisioned concurrency configuration"
473473
source=".\AWSSDKDocSamples\Lambda\Lambda.GeneratedSamples.cs"
474474
region="example-2" />
475475
</example>

generator/ServiceModels/lambda/lambda-2015-03-31.api.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4268,7 +4268,9 @@
42684268
"java21",
42694269
"python3.13",
42704270
"nodejs22.x",
4271-
"nodejs24.x"
4271+
"java25",
4272+
"nodejs24.x",
4273+
"python3.14"
42724274
]
42734275
},
42744276
"RuntimeVersionArn":{

generator/ServiceModels/lambda/lambda-2015-03-31.examples.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -502,9 +502,9 @@
502502
"RequestedProvisionedConcurrentExecutions": 100,
503503
"Status": "READY"
504504
},
505-
"description": "The following example returns details for the provisioned concurrency configuration for the BLUE alias of the specified function.",
505+
"description": "The following example displays details for the provisioned concurrency configuration for the BLUE alias of the specified function.",
506506
"id": "example-1",
507-
"title": "To get a provisioned concurrency configuration"
507+
"title": "To view a provisioned concurrency configuration"
508508
},
509509
{
510510
"input": {
@@ -518,9 +518,9 @@
518518
"RequestedProvisionedConcurrentExecutions": 100,
519519
"Status": "READY"
520520
},
521-
"description": "The following example displays details for the provisioned concurrency configuration for the BLUE alias of the specified function.",
521+
"description": "The following example returns details for the provisioned concurrency configuration for the BLUE alias of the specified function.",
522522
"id": "example-2",
523-
"title": "To view a provisioned concurrency configuration"
523+
"title": "To get a provisioned concurrency configuration"
524524
}
525525
],
526526
"Invoke": [

generator/ServiceModels/lambda/lambda-2015-03-31.normal.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5754,7 +5754,9 @@
57545754
"java21",
57555755
"python3.13",
57565756
"nodejs22.x",
5757-
"nodejs24.x"
5757+
"java25",
5758+
"nodejs24.x",
5759+
"python3.14"
57585760
]
57595761
},
57605762
"RuntimeVersionArn":{

sdk/src/Services/Lambda/Generated/ServiceEnumerations.cs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1267,6 +1267,10 @@ public class Runtime : ConstantClass
12671267
/// </summary>
12681268
public static readonly Runtime Java21 = new Runtime("java21");
12691269
/// <summary>
1270+
/// Constant Java25 for Runtime
1271+
/// </summary>
1272+
public static readonly Runtime Java25 = new Runtime("java25");
1273+
/// <summary>
12701274
/// Constant Java8 for Runtime
12711275
/// </summary>
12721276
public static readonly Runtime Java8 = new Runtime("java8");
@@ -1359,6 +1363,10 @@ public class Runtime : ConstantClass
13591363
/// </summary>
13601364
public static readonly Runtime Python313 = new Runtime("python3.13");
13611365
/// <summary>
1366+
/// Constant Python314 for Runtime
1367+
/// </summary>
1368+
public static readonly Runtime Python314 = new Runtime("python3.14");
1369+
/// <summary>
13621370
/// Constant Python36 for Runtime
13631371
/// </summary>
13641372
public static readonly Runtime Python36 = new Runtime("python3.6");

0 commit comments

Comments
 (0)