aws-sdk-batch 1.80.0 → 1.82.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-batch/client.rb +748 -24
- data/lib/aws-sdk-batch/client_api.rb +140 -0
- data/lib/aws-sdk-batch/endpoint_provider.rb +3 -3
- data/lib/aws-sdk-batch/types.rb +1423 -197
- data/lib/aws-sdk-batch.rb +1 -1
- data/sig/client.rbs +353 -2
- data/sig/types.rbs +130 -0
- metadata +2 -2
data/lib/aws-sdk-batch.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -430,6 +430,9 @@ module Aws
|
|
430
430
|
runtime_platform: {
|
431
431
|
operating_system_family: ::String?,
|
432
432
|
cpu_architecture: ::String?
|
433
|
+
}?,
|
434
|
+
repository_credentials: {
|
435
|
+
credentials_parameter: ::String
|
433
436
|
}?
|
434
437
|
},
|
435
438
|
?node_properties: {
|
@@ -541,7 +544,132 @@ module Aws
|
|
541
544
|
runtime_platform: {
|
542
545
|
operating_system_family: ::String?,
|
543
546
|
cpu_architecture: ::String?
|
547
|
+
}?,
|
548
|
+
repository_credentials: {
|
549
|
+
credentials_parameter: ::String
|
544
550
|
}?
|
551
|
+
}?,
|
552
|
+
instance_types: Array[::String]?,
|
553
|
+
ecs_properties: {
|
554
|
+
task_properties: Array[
|
555
|
+
{
|
556
|
+
containers: Array[
|
557
|
+
{
|
558
|
+
command: Array[::String]?,
|
559
|
+
depends_on: Array[
|
560
|
+
{
|
561
|
+
container_name: ::String?,
|
562
|
+
condition: ::String?
|
563
|
+
},
|
564
|
+
]?,
|
565
|
+
environment: Array[
|
566
|
+
{
|
567
|
+
name: ::String?,
|
568
|
+
value: ::String?
|
569
|
+
},
|
570
|
+
]?,
|
571
|
+
essential: bool?,
|
572
|
+
image: ::String,
|
573
|
+
linux_parameters: {
|
574
|
+
devices: Array[
|
575
|
+
{
|
576
|
+
host_path: ::String,
|
577
|
+
container_path: ::String?,
|
578
|
+
permissions: Array[("READ" | "WRITE" | "MKNOD")]?
|
579
|
+
},
|
580
|
+
]?,
|
581
|
+
init_process_enabled: bool?,
|
582
|
+
shared_memory_size: ::Integer?,
|
583
|
+
tmpfs: Array[
|
584
|
+
{
|
585
|
+
container_path: ::String,
|
586
|
+
size: ::Integer,
|
587
|
+
mount_options: Array[::String]?
|
588
|
+
},
|
589
|
+
]?,
|
590
|
+
max_swap: ::Integer?,
|
591
|
+
swappiness: ::Integer?
|
592
|
+
}?,
|
593
|
+
log_configuration: {
|
594
|
+
log_driver: ("json-file" | "syslog" | "journald" | "gelf" | "fluentd" | "awslogs" | "splunk"),
|
595
|
+
options: Hash[::String, ::String]?,
|
596
|
+
secret_options: Array[
|
597
|
+
{
|
598
|
+
name: ::String,
|
599
|
+
value_from: ::String
|
600
|
+
},
|
601
|
+
]?
|
602
|
+
}?,
|
603
|
+
mount_points: Array[
|
604
|
+
{
|
605
|
+
container_path: ::String?,
|
606
|
+
read_only: bool?,
|
607
|
+
source_volume: ::String?
|
608
|
+
},
|
609
|
+
]?,
|
610
|
+
name: ::String?,
|
611
|
+
privileged: bool?,
|
612
|
+
readonly_root_filesystem: bool?,
|
613
|
+
repository_credentials: {
|
614
|
+
credentials_parameter: ::String
|
615
|
+
}?,
|
616
|
+
resource_requirements: Array[
|
617
|
+
{
|
618
|
+
value: ::String,
|
619
|
+
type: ("GPU" | "VCPU" | "MEMORY")
|
620
|
+
},
|
621
|
+
]?,
|
622
|
+
secrets: Array[
|
623
|
+
{
|
624
|
+
name: ::String,
|
625
|
+
value_from: ::String
|
626
|
+
},
|
627
|
+
]?,
|
628
|
+
ulimits: Array[
|
629
|
+
{
|
630
|
+
hard_limit: ::Integer,
|
631
|
+
name: ::String,
|
632
|
+
soft_limit: ::Integer
|
633
|
+
},
|
634
|
+
]?,
|
635
|
+
user: ::String?
|
636
|
+
},
|
637
|
+
],
|
638
|
+
ephemeral_storage: {
|
639
|
+
size_in_gi_b: ::Integer
|
640
|
+
}?,
|
641
|
+
execution_role_arn: ::String?,
|
642
|
+
platform_version: ::String?,
|
643
|
+
ipc_mode: ::String?,
|
644
|
+
task_role_arn: ::String?,
|
645
|
+
pid_mode: ::String?,
|
646
|
+
network_configuration: {
|
647
|
+
assign_public_ip: ("ENABLED" | "DISABLED")?
|
648
|
+
}?,
|
649
|
+
runtime_platform: {
|
650
|
+
operating_system_family: ::String?,
|
651
|
+
cpu_architecture: ::String?
|
652
|
+
}?,
|
653
|
+
volumes: Array[
|
654
|
+
{
|
655
|
+
host: {
|
656
|
+
source_path: ::String?
|
657
|
+
}?,
|
658
|
+
name: ::String?,
|
659
|
+
efs_volume_configuration: {
|
660
|
+
file_system_id: ::String,
|
661
|
+
root_directory: ::String?,
|
662
|
+
transit_encryption: ("ENABLED" | "DISABLED")?,
|
663
|
+
transit_encryption_port: ::Integer?,
|
664
|
+
authorization_config: {
|
665
|
+
access_point_id: ::String?,
|
666
|
+
iam: ("ENABLED" | "DISABLED")?
|
667
|
+
}?
|
668
|
+
}?
|
669
|
+
},
|
670
|
+
]?
|
671
|
+
},
|
672
|
+
]
|
545
673
|
}?
|
546
674
|
},
|
547
675
|
]
|
@@ -601,6 +729,39 @@ module Aws
|
|
601
729
|
}?
|
602
730
|
},
|
603
731
|
]?,
|
732
|
+
init_containers: Array[
|
733
|
+
{
|
734
|
+
name: ::String?,
|
735
|
+
image: ::String,
|
736
|
+
image_pull_policy: ::String?,
|
737
|
+
command: Array[::String]?,
|
738
|
+
args: Array[::String]?,
|
739
|
+
env: Array[
|
740
|
+
{
|
741
|
+
name: ::String,
|
742
|
+
value: ::String?
|
743
|
+
},
|
744
|
+
]?,
|
745
|
+
resources: {
|
746
|
+
limits: Hash[::String, ::String]?,
|
747
|
+
requests: Hash[::String, ::String]?
|
748
|
+
}?,
|
749
|
+
volume_mounts: Array[
|
750
|
+
{
|
751
|
+
name: ::String?,
|
752
|
+
mount_path: ::String?,
|
753
|
+
read_only: bool?
|
754
|
+
},
|
755
|
+
]?,
|
756
|
+
security_context: {
|
757
|
+
run_as_user: ::Integer?,
|
758
|
+
run_as_group: ::Integer?,
|
759
|
+
privileged: bool?,
|
760
|
+
read_only_root_filesystem: bool?,
|
761
|
+
run_as_non_root: bool?
|
762
|
+
}?
|
763
|
+
},
|
764
|
+
]?,
|
604
765
|
volumes: Array[
|
605
766
|
{
|
606
767
|
name: ::String,
|
@@ -619,8 +780,130 @@ module Aws
|
|
619
780
|
]?,
|
620
781
|
metadata: {
|
621
782
|
labels: Hash[::String, ::String]?
|
622
|
-
}
|
783
|
+
}?,
|
784
|
+
share_process_namespace: bool?
|
623
785
|
}?
|
786
|
+
},
|
787
|
+
?ecs_properties: {
|
788
|
+
task_properties: Array[
|
789
|
+
{
|
790
|
+
containers: Array[
|
791
|
+
{
|
792
|
+
command: Array[::String]?,
|
793
|
+
depends_on: Array[
|
794
|
+
{
|
795
|
+
container_name: ::String?,
|
796
|
+
condition: ::String?
|
797
|
+
},
|
798
|
+
]?,
|
799
|
+
environment: Array[
|
800
|
+
{
|
801
|
+
name: ::String?,
|
802
|
+
value: ::String?
|
803
|
+
},
|
804
|
+
]?,
|
805
|
+
essential: bool?,
|
806
|
+
image: ::String,
|
807
|
+
linux_parameters: {
|
808
|
+
devices: Array[
|
809
|
+
{
|
810
|
+
host_path: ::String,
|
811
|
+
container_path: ::String?,
|
812
|
+
permissions: Array[("READ" | "WRITE" | "MKNOD")]?
|
813
|
+
},
|
814
|
+
]?,
|
815
|
+
init_process_enabled: bool?,
|
816
|
+
shared_memory_size: ::Integer?,
|
817
|
+
tmpfs: Array[
|
818
|
+
{
|
819
|
+
container_path: ::String,
|
820
|
+
size: ::Integer,
|
821
|
+
mount_options: Array[::String]?
|
822
|
+
},
|
823
|
+
]?,
|
824
|
+
max_swap: ::Integer?,
|
825
|
+
swappiness: ::Integer?
|
826
|
+
}?,
|
827
|
+
log_configuration: {
|
828
|
+
log_driver: ("json-file" | "syslog" | "journald" | "gelf" | "fluentd" | "awslogs" | "splunk"),
|
829
|
+
options: Hash[::String, ::String]?,
|
830
|
+
secret_options: Array[
|
831
|
+
{
|
832
|
+
name: ::String,
|
833
|
+
value_from: ::String
|
834
|
+
},
|
835
|
+
]?
|
836
|
+
}?,
|
837
|
+
mount_points: Array[
|
838
|
+
{
|
839
|
+
container_path: ::String?,
|
840
|
+
read_only: bool?,
|
841
|
+
source_volume: ::String?
|
842
|
+
},
|
843
|
+
]?,
|
844
|
+
name: ::String?,
|
845
|
+
privileged: bool?,
|
846
|
+
readonly_root_filesystem: bool?,
|
847
|
+
repository_credentials: {
|
848
|
+
credentials_parameter: ::String
|
849
|
+
}?,
|
850
|
+
resource_requirements: Array[
|
851
|
+
{
|
852
|
+
value: ::String,
|
853
|
+
type: ("GPU" | "VCPU" | "MEMORY")
|
854
|
+
},
|
855
|
+
]?,
|
856
|
+
secrets: Array[
|
857
|
+
{
|
858
|
+
name: ::String,
|
859
|
+
value_from: ::String
|
860
|
+
},
|
861
|
+
]?,
|
862
|
+
ulimits: Array[
|
863
|
+
{
|
864
|
+
hard_limit: ::Integer,
|
865
|
+
name: ::String,
|
866
|
+
soft_limit: ::Integer
|
867
|
+
},
|
868
|
+
]?,
|
869
|
+
user: ::String?
|
870
|
+
},
|
871
|
+
],
|
872
|
+
ephemeral_storage: {
|
873
|
+
size_in_gi_b: ::Integer
|
874
|
+
}?,
|
875
|
+
execution_role_arn: ::String?,
|
876
|
+
platform_version: ::String?,
|
877
|
+
ipc_mode: ::String?,
|
878
|
+
task_role_arn: ::String?,
|
879
|
+
pid_mode: ::String?,
|
880
|
+
network_configuration: {
|
881
|
+
assign_public_ip: ("ENABLED" | "DISABLED")?
|
882
|
+
}?,
|
883
|
+
runtime_platform: {
|
884
|
+
operating_system_family: ::String?,
|
885
|
+
cpu_architecture: ::String?
|
886
|
+
}?,
|
887
|
+
volumes: Array[
|
888
|
+
{
|
889
|
+
host: {
|
890
|
+
source_path: ::String?
|
891
|
+
}?,
|
892
|
+
name: ::String?,
|
893
|
+
efs_volume_configuration: {
|
894
|
+
file_system_id: ::String,
|
895
|
+
root_directory: ::String?,
|
896
|
+
transit_encryption: ("ENABLED" | "DISABLED")?,
|
897
|
+
transit_encryption_port: ::Integer?,
|
898
|
+
authorization_config: {
|
899
|
+
access_point_id: ::String?,
|
900
|
+
iam: ("ENABLED" | "DISABLED")?
|
901
|
+
}?
|
902
|
+
}?
|
903
|
+
},
|
904
|
+
]?
|
905
|
+
},
|
906
|
+
]
|
624
907
|
}
|
625
908
|
) -> _RegisterJobDefinitionResponseSuccess
|
626
909
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RegisterJobDefinitionResponseSuccess
|
@@ -688,7 +971,32 @@ module Aws
|
|
688
971
|
type: ("GPU" | "VCPU" | "MEMORY")
|
689
972
|
},
|
690
973
|
]?
|
691
|
-
}
|
974
|
+
}?,
|
975
|
+
ecs_properties_override: {
|
976
|
+
task_properties: Array[
|
977
|
+
{
|
978
|
+
containers: Array[
|
979
|
+
{
|
980
|
+
command: Array[::String]?,
|
981
|
+
environment: Array[
|
982
|
+
{
|
983
|
+
name: ::String?,
|
984
|
+
value: ::String?
|
985
|
+
},
|
986
|
+
]?,
|
987
|
+
name: ::String?,
|
988
|
+
resource_requirements: Array[
|
989
|
+
{
|
990
|
+
value: ::String,
|
991
|
+
type: ("GPU" | "VCPU" | "MEMORY")
|
992
|
+
},
|
993
|
+
]?
|
994
|
+
},
|
995
|
+
]?
|
996
|
+
},
|
997
|
+
]?
|
998
|
+
}?,
|
999
|
+
instance_types: Array[::String]?
|
692
1000
|
},
|
693
1001
|
]?
|
694
1002
|
},
|
@@ -712,6 +1020,25 @@ module Aws
|
|
712
1020
|
pod_properties: {
|
713
1021
|
containers: Array[
|
714
1022
|
{
|
1023
|
+
name: ::String?,
|
1024
|
+
image: ::String?,
|
1025
|
+
command: Array[::String]?,
|
1026
|
+
args: Array[::String]?,
|
1027
|
+
env: Array[
|
1028
|
+
{
|
1029
|
+
name: ::String,
|
1030
|
+
value: ::String?
|
1031
|
+
},
|
1032
|
+
]?,
|
1033
|
+
resources: {
|
1034
|
+
limits: Hash[::String, ::String]?,
|
1035
|
+
requests: Hash[::String, ::String]?
|
1036
|
+
}?
|
1037
|
+
},
|
1038
|
+
]?,
|
1039
|
+
init_containers: Array[
|
1040
|
+
{
|
1041
|
+
name: ::String?,
|
715
1042
|
image: ::String?,
|
716
1043
|
command: Array[::String]?,
|
717
1044
|
args: Array[::String]?,
|
@@ -731,6 +1058,30 @@ module Aws
|
|
731
1058
|
labels: Hash[::String, ::String]?
|
732
1059
|
}?
|
733
1060
|
}?
|
1061
|
+
},
|
1062
|
+
?ecs_properties_override: {
|
1063
|
+
task_properties: Array[
|
1064
|
+
{
|
1065
|
+
containers: Array[
|
1066
|
+
{
|
1067
|
+
command: Array[::String]?,
|
1068
|
+
environment: Array[
|
1069
|
+
{
|
1070
|
+
name: ::String?,
|
1071
|
+
value: ::String?
|
1072
|
+
},
|
1073
|
+
]?,
|
1074
|
+
name: ::String?,
|
1075
|
+
resource_requirements: Array[
|
1076
|
+
{
|
1077
|
+
value: ::String,
|
1078
|
+
type: ("GPU" | "VCPU" | "MEMORY")
|
1079
|
+
},
|
1080
|
+
]?
|
1081
|
+
},
|
1082
|
+
]?
|
1083
|
+
},
|
1084
|
+
]?
|
734
1085
|
}
|
735
1086
|
) -> _SubmitJobResponseSuccess
|
736
1087
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SubmitJobResponseSuccess
|
data/sig/types.rbs
CHANGED
@@ -154,6 +154,7 @@ module Aws::Batch
|
|
154
154
|
attr_accessor fargate_platform_configuration: Types::FargatePlatformConfiguration
|
155
155
|
attr_accessor ephemeral_storage: Types::EphemeralStorage
|
156
156
|
attr_accessor runtime_platform: Types::RuntimePlatform
|
157
|
+
attr_accessor repository_credentials: Types::RepositoryCredentials
|
157
158
|
SENSITIVE: []
|
158
159
|
end
|
159
160
|
|
@@ -190,6 +191,7 @@ module Aws::Batch
|
|
190
191
|
attr_accessor fargate_platform_configuration: Types::FargatePlatformConfiguration
|
191
192
|
attr_accessor ephemeral_storage: Types::EphemeralStorage
|
192
193
|
attr_accessor runtime_platform: Types::RuntimePlatform
|
194
|
+
attr_accessor repository_credentials: Types::RepositoryCredentials
|
193
195
|
SENSITIVE: []
|
194
196
|
end
|
195
197
|
|
@@ -368,6 +370,51 @@ module Aws::Batch
|
|
368
370
|
SENSITIVE: []
|
369
371
|
end
|
370
372
|
|
373
|
+
class EcsProperties
|
374
|
+
attr_accessor task_properties: ::Array[Types::EcsTaskProperties]
|
375
|
+
SENSITIVE: []
|
376
|
+
end
|
377
|
+
|
378
|
+
class EcsPropertiesDetail
|
379
|
+
attr_accessor task_properties: ::Array[Types::EcsTaskDetails]
|
380
|
+
SENSITIVE: []
|
381
|
+
end
|
382
|
+
|
383
|
+
class EcsPropertiesOverride
|
384
|
+
attr_accessor task_properties: ::Array[Types::TaskPropertiesOverride]
|
385
|
+
SENSITIVE: []
|
386
|
+
end
|
387
|
+
|
388
|
+
class EcsTaskDetails
|
389
|
+
attr_accessor containers: ::Array[Types::TaskContainerDetails]
|
390
|
+
attr_accessor container_instance_arn: ::String
|
391
|
+
attr_accessor task_arn: ::String
|
392
|
+
attr_accessor ephemeral_storage: Types::EphemeralStorage
|
393
|
+
attr_accessor execution_role_arn: ::String
|
394
|
+
attr_accessor platform_version: ::String
|
395
|
+
attr_accessor ipc_mode: ::String
|
396
|
+
attr_accessor task_role_arn: ::String
|
397
|
+
attr_accessor pid_mode: ::String
|
398
|
+
attr_accessor network_configuration: Types::NetworkConfiguration
|
399
|
+
attr_accessor runtime_platform: Types::RuntimePlatform
|
400
|
+
attr_accessor volumes: ::Array[Types::Volume]
|
401
|
+
SENSITIVE: []
|
402
|
+
end
|
403
|
+
|
404
|
+
class EcsTaskProperties
|
405
|
+
attr_accessor containers: ::Array[Types::TaskContainerProperties]
|
406
|
+
attr_accessor ephemeral_storage: Types::EphemeralStorage
|
407
|
+
attr_accessor execution_role_arn: ::String
|
408
|
+
attr_accessor platform_version: ::String
|
409
|
+
attr_accessor ipc_mode: ::String
|
410
|
+
attr_accessor task_role_arn: ::String
|
411
|
+
attr_accessor pid_mode: ::String
|
412
|
+
attr_accessor network_configuration: Types::NetworkConfiguration
|
413
|
+
attr_accessor runtime_platform: Types::RuntimePlatform
|
414
|
+
attr_accessor volumes: ::Array[Types::Volume]
|
415
|
+
SENSITIVE: []
|
416
|
+
end
|
417
|
+
|
371
418
|
class EksAttemptContainerDetail
|
372
419
|
attr_accessor exit_code: ::Integer
|
373
420
|
attr_accessor reason: ::String
|
@@ -376,6 +423,7 @@ module Aws::Batch
|
|
376
423
|
|
377
424
|
class EksAttemptDetail
|
378
425
|
attr_accessor containers: ::Array[Types::EksAttemptContainerDetail]
|
426
|
+
attr_accessor init_containers: ::Array[Types::EksAttemptContainerDetail]
|
379
427
|
attr_accessor pod_name: ::String
|
380
428
|
attr_accessor node_name: ::String
|
381
429
|
attr_accessor started_at: ::Integer
|
@@ -425,6 +473,7 @@ module Aws::Batch
|
|
425
473
|
end
|
426
474
|
|
427
475
|
class EksContainerOverride
|
476
|
+
attr_accessor name: ::String
|
428
477
|
attr_accessor image: ::String
|
429
478
|
attr_accessor command: ::Array[::String]
|
430
479
|
attr_accessor args: ::Array[::String]
|
@@ -476,8 +525,10 @@ module Aws::Batch
|
|
476
525
|
attr_accessor host_network: bool
|
477
526
|
attr_accessor dns_policy: ::String
|
478
527
|
attr_accessor containers: ::Array[Types::EksContainer]
|
528
|
+
attr_accessor init_containers: ::Array[Types::EksContainer]
|
479
529
|
attr_accessor volumes: ::Array[Types::EksVolume]
|
480
530
|
attr_accessor metadata: Types::EksMetadata
|
531
|
+
attr_accessor share_process_namespace: bool
|
481
532
|
SENSITIVE: []
|
482
533
|
end
|
483
534
|
|
@@ -486,15 +537,18 @@ module Aws::Batch
|
|
486
537
|
attr_accessor host_network: bool
|
487
538
|
attr_accessor dns_policy: ::String
|
488
539
|
attr_accessor containers: ::Array[Types::EksContainerDetail]
|
540
|
+
attr_accessor init_containers: ::Array[Types::EksContainerDetail]
|
489
541
|
attr_accessor volumes: ::Array[Types::EksVolume]
|
490
542
|
attr_accessor pod_name: ::String
|
491
543
|
attr_accessor node_name: ::String
|
492
544
|
attr_accessor metadata: Types::EksMetadata
|
545
|
+
attr_accessor share_process_namespace: bool
|
493
546
|
SENSITIVE: []
|
494
547
|
end
|
495
548
|
|
496
549
|
class EksPodPropertiesOverride
|
497
550
|
attr_accessor containers: ::Array[Types::EksContainerOverride]
|
551
|
+
attr_accessor init_containers: ::Array[Types::EksContainerOverride]
|
498
552
|
attr_accessor metadata: Types::EksMetadata
|
499
553
|
SENSITIVE: []
|
500
554
|
end
|
@@ -573,6 +627,7 @@ module Aws::Batch
|
|
573
627
|
attr_accessor tags: ::Hash[::String, ::String]
|
574
628
|
attr_accessor propagate_tags: bool
|
575
629
|
attr_accessor platform_capabilities: ::Array[("EC2" | "FARGATE")]
|
630
|
+
attr_accessor ecs_properties: Types::EcsProperties
|
576
631
|
attr_accessor eks_properties: Types::EksProperties
|
577
632
|
attr_accessor container_orchestration_type: ("ECS" | "EKS")
|
578
633
|
SENSITIVE: []
|
@@ -611,6 +666,7 @@ module Aws::Batch
|
|
611
666
|
attr_accessor platform_capabilities: ::Array[("EC2" | "FARGATE")]
|
612
667
|
attr_accessor eks_properties: Types::EksPropertiesDetail
|
613
668
|
attr_accessor eks_attempts: ::Array[Types::EksAttemptDetail]
|
669
|
+
attr_accessor ecs_properties: Types::EcsPropertiesDetail
|
614
670
|
attr_accessor is_cancelled: bool
|
615
671
|
attr_accessor is_terminated: bool
|
616
672
|
SENSITIVE: []
|
@@ -773,12 +829,16 @@ module Aws::Batch
|
|
773
829
|
class NodePropertyOverride
|
774
830
|
attr_accessor target_nodes: ::String
|
775
831
|
attr_accessor container_overrides: Types::ContainerOverrides
|
832
|
+
attr_accessor ecs_properties_override: Types::EcsPropertiesOverride
|
833
|
+
attr_accessor instance_types: ::Array[::String]
|
776
834
|
SENSITIVE: []
|
777
835
|
end
|
778
836
|
|
779
837
|
class NodeRangeProperty
|
780
838
|
attr_accessor target_nodes: ::String
|
781
839
|
attr_accessor container: Types::ContainerProperties
|
840
|
+
attr_accessor instance_types: ::Array[::String]
|
841
|
+
attr_accessor ecs_properties: Types::EcsProperties
|
782
842
|
SENSITIVE: []
|
783
843
|
end
|
784
844
|
|
@@ -795,6 +855,7 @@ module Aws::Batch
|
|
795
855
|
attr_accessor tags: ::Hash[::String, ::String]
|
796
856
|
attr_accessor platform_capabilities: ::Array[("EC2" | "FARGATE")]
|
797
857
|
attr_accessor eks_properties: Types::EksProperties
|
858
|
+
attr_accessor ecs_properties: Types::EcsProperties
|
798
859
|
SENSITIVE: []
|
799
860
|
end
|
800
861
|
|
@@ -805,6 +866,11 @@ module Aws::Batch
|
|
805
866
|
SENSITIVE: []
|
806
867
|
end
|
807
868
|
|
869
|
+
class RepositoryCredentials
|
870
|
+
attr_accessor credentials_parameter: ::String
|
871
|
+
SENSITIVE: []
|
872
|
+
end
|
873
|
+
|
808
874
|
class ResourceRequirement
|
809
875
|
attr_accessor value: ::String
|
810
876
|
attr_accessor type: ("GPU" | "VCPU" | "MEMORY")
|
@@ -869,6 +935,7 @@ module Aws::Batch
|
|
869
935
|
attr_accessor timeout: Types::JobTimeout
|
870
936
|
attr_accessor tags: ::Hash[::String, ::String]
|
871
937
|
attr_accessor eks_properties_override: Types::EksPropertiesOverride
|
938
|
+
attr_accessor ecs_properties_override: Types::EcsPropertiesOverride
|
872
939
|
SENSITIVE: []
|
873
940
|
end
|
874
941
|
|
@@ -888,6 +955,69 @@ module Aws::Batch
|
|
888
955
|
class TagResourceResponse < Aws::EmptyStructure
|
889
956
|
end
|
890
957
|
|
958
|
+
class TaskContainerDependency
|
959
|
+
attr_accessor container_name: ::String
|
960
|
+
attr_accessor condition: ::String
|
961
|
+
SENSITIVE: []
|
962
|
+
end
|
963
|
+
|
964
|
+
class TaskContainerDetails
|
965
|
+
attr_accessor command: ::Array[::String]
|
966
|
+
attr_accessor depends_on: ::Array[Types::TaskContainerDependency]
|
967
|
+
attr_accessor environment: ::Array[Types::KeyValuePair]
|
968
|
+
attr_accessor essential: bool
|
969
|
+
attr_accessor image: ::String
|
970
|
+
attr_accessor linux_parameters: Types::LinuxParameters
|
971
|
+
attr_accessor log_configuration: Types::LogConfiguration
|
972
|
+
attr_accessor mount_points: ::Array[Types::MountPoint]
|
973
|
+
attr_accessor name: ::String
|
974
|
+
attr_accessor privileged: bool
|
975
|
+
attr_accessor readonly_root_filesystem: bool
|
976
|
+
attr_accessor repository_credentials: Types::RepositoryCredentials
|
977
|
+
attr_accessor resource_requirements: ::Array[Types::ResourceRequirement]
|
978
|
+
attr_accessor secrets: ::Array[Types::Secret]
|
979
|
+
attr_accessor ulimits: ::Array[Types::Ulimit]
|
980
|
+
attr_accessor user: ::String
|
981
|
+
attr_accessor exit_code: ::Integer
|
982
|
+
attr_accessor reason: ::String
|
983
|
+
attr_accessor log_stream_name: ::String
|
984
|
+
attr_accessor network_interfaces: ::Array[Types::NetworkInterface]
|
985
|
+
SENSITIVE: []
|
986
|
+
end
|
987
|
+
|
988
|
+
class TaskContainerOverrides
|
989
|
+
attr_accessor command: ::Array[::String]
|
990
|
+
attr_accessor environment: ::Array[Types::KeyValuePair]
|
991
|
+
attr_accessor name: ::String
|
992
|
+
attr_accessor resource_requirements: ::Array[Types::ResourceRequirement]
|
993
|
+
SENSITIVE: []
|
994
|
+
end
|
995
|
+
|
996
|
+
class TaskContainerProperties
|
997
|
+
attr_accessor command: ::Array[::String]
|
998
|
+
attr_accessor depends_on: ::Array[Types::TaskContainerDependency]
|
999
|
+
attr_accessor environment: ::Array[Types::KeyValuePair]
|
1000
|
+
attr_accessor essential: bool
|
1001
|
+
attr_accessor image: ::String
|
1002
|
+
attr_accessor linux_parameters: Types::LinuxParameters
|
1003
|
+
attr_accessor log_configuration: Types::LogConfiguration
|
1004
|
+
attr_accessor mount_points: ::Array[Types::MountPoint]
|
1005
|
+
attr_accessor name: ::String
|
1006
|
+
attr_accessor privileged: bool
|
1007
|
+
attr_accessor readonly_root_filesystem: bool
|
1008
|
+
attr_accessor repository_credentials: Types::RepositoryCredentials
|
1009
|
+
attr_accessor resource_requirements: ::Array[Types::ResourceRequirement]
|
1010
|
+
attr_accessor secrets: ::Array[Types::Secret]
|
1011
|
+
attr_accessor ulimits: ::Array[Types::Ulimit]
|
1012
|
+
attr_accessor user: ::String
|
1013
|
+
SENSITIVE: []
|
1014
|
+
end
|
1015
|
+
|
1016
|
+
class TaskPropertiesOverride
|
1017
|
+
attr_accessor containers: ::Array[Types::TaskContainerOverrides]
|
1018
|
+
SENSITIVE: []
|
1019
|
+
end
|
1020
|
+
|
891
1021
|
class TerminateJobRequest
|
892
1022
|
attr_accessor job_id: ::String
|
893
1023
|
attr_accessor reason: ::String
|
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.
|
4
|
+
version: 1.82.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: 2024-
|
11
|
+
date: 2024-02-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|