aws-sdk-batch 1.111.0 → 1.112.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/sig/client.rbs CHANGED
@@ -512,7 +512,7 @@ module Aws
512
512
  swappiness: ::Integer?
513
513
  }?,
514
514
  log_configuration: {
515
- log_driver: ("json-file" | "syslog" | "journald" | "gelf" | "fluentd" | "awslogs" | "splunk"),
515
+ log_driver: ("json-file" | "syslog" | "journald" | "gelf" | "fluentd" | "awslogs" | "splunk" | "awsfirelens"),
516
516
  options: Hash[::String, ::String]?,
517
517
  secret_options: Array[
518
518
  {
@@ -533,6 +533,7 @@ module Aws
533
533
  fargate_platform_configuration: {
534
534
  platform_version: ::String?
535
535
  }?,
536
+ enable_execute_command: bool?,
536
537
  ephemeral_storage: {
537
538
  size_in_gi_b: ::Integer
538
539
  }?,
@@ -626,7 +627,7 @@ module Aws
626
627
  swappiness: ::Integer?
627
628
  }?,
628
629
  log_configuration: {
629
- log_driver: ("json-file" | "syslog" | "journald" | "gelf" | "fluentd" | "awslogs" | "splunk"),
630
+ log_driver: ("json-file" | "syslog" | "journald" | "gelf" | "fluentd" | "awslogs" | "splunk" | "awsfirelens"),
630
631
  options: Hash[::String, ::String]?,
631
632
  secret_options: Array[
632
633
  {
@@ -647,6 +648,7 @@ module Aws
647
648
  fargate_platform_configuration: {
648
649
  platform_version: ::String?
649
650
  }?,
651
+ enable_execute_command: bool?,
650
652
  ephemeral_storage: {
651
653
  size_in_gi_b: ::Integer
652
654
  }?,
@@ -678,6 +680,10 @@ module Aws
678
680
  },
679
681
  ]?,
680
682
  essential: bool?,
683
+ firelens_configuration: {
684
+ type: ("fluentd" | "fluentbit"),
685
+ options: Hash[::String, ::String]?
686
+ }?,
681
687
  image: ::String,
682
688
  linux_parameters: {
683
689
  devices: Array[
@@ -700,7 +706,7 @@ module Aws
700
706
  swappiness: ::Integer?
701
707
  }?,
702
708
  log_configuration: {
703
- log_driver: ("json-file" | "syslog" | "journald" | "gelf" | "fluentd" | "awslogs" | "splunk"),
709
+ log_driver: ("json-file" | "syslog" | "journald" | "gelf" | "fluentd" | "awslogs" | "splunk" | "awsfirelens"),
704
710
  options: Hash[::String, ::String]?,
705
711
  secret_options: Array[
706
712
  {
@@ -776,7 +782,8 @@ module Aws
776
782
  }?
777
783
  }?
778
784
  },
779
- ]?
785
+ ]?,
786
+ enable_execute_command: bool?
780
787
  },
781
788
  ]
782
789
  }?,
@@ -1043,6 +1050,10 @@ module Aws
1043
1050
  },
1044
1051
  ]?,
1045
1052
  essential: bool?,
1053
+ firelens_configuration: {
1054
+ type: ("fluentd" | "fluentbit"),
1055
+ options: Hash[::String, ::String]?
1056
+ }?,
1046
1057
  image: ::String,
1047
1058
  linux_parameters: {
1048
1059
  devices: Array[
@@ -1065,7 +1076,7 @@ module Aws
1065
1076
  swappiness: ::Integer?
1066
1077
  }?,
1067
1078
  log_configuration: {
1068
- log_driver: ("json-file" | "syslog" | "journald" | "gelf" | "fluentd" | "awslogs" | "splunk"),
1079
+ log_driver: ("json-file" | "syslog" | "journald" | "gelf" | "fluentd" | "awslogs" | "splunk" | "awsfirelens"),
1069
1080
  options: Hash[::String, ::String]?,
1070
1081
  secret_options: Array[
1071
1082
  {
@@ -1141,7 +1152,8 @@ module Aws
1141
1152
  }?
1142
1153
  }?
1143
1154
  },
1144
- ]?
1155
+ ]?,
1156
+ enable_execute_command: bool?
1145
1157
  },
1146
1158
  ]
1147
1159
  },
data/sig/types.rbs CHANGED
@@ -193,6 +193,7 @@ module Aws::Batch
193
193
  attr_accessor ephemeral_storage: Types::EphemeralStorage
194
194
  attr_accessor runtime_platform: Types::RuntimePlatform
195
195
  attr_accessor repository_credentials: Types::RepositoryCredentials
196
+ attr_accessor enable_execute_command: bool
196
197
  SENSITIVE: []
197
198
  end
198
199
 
@@ -227,6 +228,7 @@ module Aws::Batch
227
228
  attr_accessor secrets: ::Array[Types::Secret]
228
229
  attr_accessor network_configuration: Types::NetworkConfiguration
229
230
  attr_accessor fargate_platform_configuration: Types::FargatePlatformConfiguration
231
+ attr_accessor enable_execute_command: bool
230
232
  attr_accessor ephemeral_storage: Types::EphemeralStorage
231
233
  attr_accessor runtime_platform: Types::RuntimePlatform
232
234
  attr_accessor repository_credentials: Types::RepositoryCredentials
@@ -477,6 +479,7 @@ module Aws::Batch
477
479
  attr_accessor network_configuration: Types::NetworkConfiguration
478
480
  attr_accessor runtime_platform: Types::RuntimePlatform
479
481
  attr_accessor volumes: ::Array[Types::Volume]
482
+ attr_accessor enable_execute_command: bool
480
483
  SENSITIVE: []
481
484
  end
482
485
 
@@ -491,6 +494,7 @@ module Aws::Batch
491
494
  attr_accessor network_configuration: Types::NetworkConfiguration
492
495
  attr_accessor runtime_platform: Types::RuntimePlatform
493
496
  attr_accessor volumes: ::Array[Types::Volume]
497
+ attr_accessor enable_execute_command: bool
494
498
  SENSITIVE: []
495
499
  end
496
500
 
@@ -703,6 +707,12 @@ module Aws::Batch
703
707
  SENSITIVE: []
704
708
  end
705
709
 
710
+ class FirelensConfiguration
711
+ attr_accessor type: ("fluentd" | "fluentbit")
712
+ attr_accessor options: ::Hash[::String, ::String]
713
+ SENSITIVE: []
714
+ end
715
+
706
716
  class FrontOfQueueDetail
707
717
  attr_accessor jobs: ::Array[Types::FrontOfQueueJobSummary]
708
718
  attr_accessor last_updated_at: ::Integer
@@ -960,7 +970,7 @@ module Aws::Batch
960
970
  end
961
971
 
962
972
  class LogConfiguration
963
- attr_accessor log_driver: ("json-file" | "syslog" | "journald" | "gelf" | "fluentd" | "awslogs" | "splunk")
973
+ attr_accessor log_driver: ("json-file" | "syslog" | "journald" | "gelf" | "fluentd" | "awslogs" | "splunk" | "awsfirelens")
964
974
  attr_accessor options: ::Hash[::String, ::String]
965
975
  attr_accessor secret_options: ::Array[Types::Secret]
966
976
  SENSITIVE: []
@@ -1157,6 +1167,7 @@ module Aws::Batch
1157
1167
  attr_accessor depends_on: ::Array[Types::TaskContainerDependency]
1158
1168
  attr_accessor environment: ::Array[Types::KeyValuePair]
1159
1169
  attr_accessor essential: bool
1170
+ attr_accessor firelens_configuration: Types::FirelensConfiguration
1160
1171
  attr_accessor image: ::String
1161
1172
  attr_accessor linux_parameters: Types::LinuxParameters
1162
1173
  attr_accessor log_configuration: Types::LogConfiguration
@@ -1189,6 +1200,7 @@ module Aws::Batch
1189
1200
  attr_accessor depends_on: ::Array[Types::TaskContainerDependency]
1190
1201
  attr_accessor environment: ::Array[Types::KeyValuePair]
1191
1202
  attr_accessor essential: bool
1203
+ attr_accessor firelens_configuration: Types::FirelensConfiguration
1192
1204
  attr_accessor image: ::String
1193
1205
  attr_accessor linux_parameters: Types::LinuxParameters
1194
1206
  attr_accessor log_configuration: Types::LogConfiguration
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-batch
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.111.0
4
+ version: 1.112.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-02-26 00:00:00.000000000 Z
11
+ date: 2025-03-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core