@@ -66,6 +66,7 @@ import {
66
66
Hive ,
67
67
ImageConfigurationInput ,
68
68
InitialCapacityConfig ,
69
+ InteractiveConfiguration ,
69
70
InternalServerException ,
70
71
JobDriver ,
71
72
JobRun ,
@@ -124,6 +125,7 @@ export const se_CreateApplicationCommand = async (
124
125
clientToken : [ true , ( _ ) => _ ?? generateIdempotencyToken ( ) ] ,
125
126
imageConfiguration : ( _ ) => _json ( _ ) ,
126
127
initialCapacity : ( _ ) => _json ( _ ) ,
128
+ interactiveConfiguration : ( _ ) => _json ( _ ) ,
127
129
maximumCapacity : ( _ ) => _json ( _ ) ,
128
130
monitoringConfiguration : ( _ ) => _json ( _ ) ,
129
131
name : [ ] ,
@@ -392,6 +394,7 @@ export const se_UpdateApplicationCommand = async (
392
394
clientToken : [ true , ( _ ) => _ ?? generateIdempotencyToken ( ) ] ,
393
395
imageConfiguration : ( _ ) => _json ( _ ) ,
394
396
initialCapacity : ( _ ) => _json ( _ ) ,
397
+ interactiveConfiguration : ( _ ) => _json ( _ ) ,
395
398
maximumCapacity : ( _ ) => _json ( _ ) ,
396
399
monitoringConfiguration : ( _ ) => _json ( _ ) ,
397
400
networkConfiguration : ( _ ) => _json ( _ ) ,
@@ -884,6 +887,8 @@ const se_ConfigurationOverrides = (input: ConfigurationOverrides, context: __Ser
884
887
885
888
// se_InitialCapacityConfigMap omitted.
886
889
890
+ // se_InteractiveConfiguration omitted.
891
+
887
892
// se_JobDriver omitted.
888
893
889
894
// se_LogTypeList omitted.
@@ -931,6 +936,7 @@ const de_Application = (output: any, context: __SerdeContext): Application => {
931
936
createdAt : ( _ : any ) => __expectNonNull ( __parseEpochTimestamp ( __expectNumber ( _ ) ) ) ,
932
937
imageConfiguration : _json ,
933
938
initialCapacity : _json ,
939
+ interactiveConfiguration : _json ,
934
940
maximumCapacity : _json ,
935
941
monitoringConfiguration : _json ,
936
942
name : __expectString ,
@@ -1025,6 +1031,8 @@ const de_ConfigurationOverrides = (output: any, context: __SerdeContext): Config
1025
1031
1026
1032
// de_InitialCapacityConfigMap omitted.
1027
1033
1034
+ // de_InteractiveConfiguration omitted.
1035
+
1028
1036
// de_JobDriver omitted.
1029
1037
1030
1038
/**
0 commit comments