@@ -1756,10 +1756,16 @@ import { LinuxArmBuildImage } from './linux-arm-build-image';
1756
1756
* @see https://docs.aws.amazon.com/codebuild/latest/userguide/build-env-ref-available.html
1757
1757
*/
1758
1758
export class LinuxBuildImage implements IBuildImage {
1759
+ /** @deprecated Use LinuxBuildImage.STANDARD_7_0 instead. */
1759
1760
public static readonly STANDARD_1_0 = LinuxBuildImage . codeBuildImage ( 'aws/codebuild/standard:1.0' ) ;
1761
+ /** @deprecated Use LinuxBuildImage.STANDARD_7_0 instead. */
1760
1762
public static readonly STANDARD_2_0 = LinuxBuildImage . codeBuildImage ( 'aws/codebuild/standard:2.0' ) ;
1763
+ /** @deprecated Use LinuxBuildImage.STANDARD_7_0 instead. */
1761
1764
public static readonly STANDARD_3_0 = LinuxBuildImage . codeBuildImage ( 'aws/codebuild/standard:3.0' ) ;
1762
- /** The `aws/codebuild/standard:4.0` build image. */
1765
+ /**
1766
+ * The `aws/codebuild/standard:4.0` build image.
1767
+ * @deprecated Use LinuxBuildImage.STANDARD_7_0 instead.
1768
+ * */
1763
1769
public static readonly STANDARD_4_0 = LinuxBuildImage . codeBuildImage ( 'aws/codebuild/standard:4.0' ) ;
1764
1770
/** The `aws/codebuild/standard:5.0` build image. */
1765
1771
public static readonly STANDARD_5_0 = LinuxBuildImage . codeBuildImage ( 'aws/codebuild/standard:5.0' ) ;
@@ -1768,84 +1774,89 @@ export class LinuxBuildImage implements IBuildImage {
1768
1774
/** The `aws/codebuild/standard:7.0` build image. */
1769
1775
public static readonly STANDARD_7_0 = LinuxBuildImage . codeBuildImage ( 'aws/codebuild/standard:7.0' ) ;
1770
1776
1777
+ /** @deprecated Use LinuxBuildImage.AMAZON_LINUX_2_5 instead. */
1771
1778
public static readonly AMAZON_LINUX_2 = LinuxBuildImage . codeBuildImage ( 'aws/codebuild/amazonlinux2-x86_64-standard:1.0' ) ;
1779
+ /** @deprecated Use LinuxBuildImage.AMAZON_LINUX_2_5 instead. */
1772
1780
public static readonly AMAZON_LINUX_2_2 = LinuxBuildImage . codeBuildImage ( 'aws/codebuild/amazonlinux2-x86_64-standard:2.0' ) ;
1773
- /** The Amazon Linux 2 x86_64 standard image, version `3.0`. */
1781
+ /**
1782
+ * The Amazon Linux 2 x86_64 standard image, version `3.0`.
1783
+ * @deprecated Use LinuxBuildImage.AMAZON_LINUX_2_5 instead.
1784
+ * */
1774
1785
public static readonly AMAZON_LINUX_2_3 = LinuxBuildImage . codeBuildImage ( 'aws/codebuild/amazonlinux2-x86_64-standard:3.0' ) ;
1775
1786
/** The Amazon Linux 2 x86_64 standard image, version `4.0`. */
1776
1787
public static readonly AMAZON_LINUX_2_4 = LinuxBuildImage . codeBuildImage ( 'aws/codebuild/amazonlinux2-x86_64-standard:4.0' ) ;
1777
1788
/** The Amazon Linux 2 x86_64 standard image, version `5.0`. */
1778
1789
public static readonly AMAZON_LINUX_2_5 = LinuxBuildImage . codeBuildImage ( 'aws/codebuild/amazonlinux2-x86_64-standard:5.0' ) ;
1779
1790
1780
- /** @deprecated Use LinuxArmBuildImage.AMAZON_LINUX_2_STANDARD_1_0 instead. */
1791
+ /** @deprecated Use LinuxArmBuildImage.AMAZON_LINUX_2_STANDARD_3_0 instead. */
1781
1792
public static readonly AMAZON_LINUX_2_ARM = LinuxArmBuildImage . AMAZON_LINUX_2_STANDARD_1_0 ;
1782
1793
/**
1783
1794
* Image "aws/codebuild/amazonlinux2-aarch64-standard:2.0".
1784
- * @deprecated Use LinuxArmBuildImage.AMAZON_LINUX_2_STANDARD_2_0 instead.
1795
+ * @deprecated Use LinuxArmBuildImage.AMAZON_LINUX_2_STANDARD_3_0 instead.
1785
1796
* */
1786
1797
public static readonly AMAZON_LINUX_2_ARM_2 = LinuxArmBuildImage . AMAZON_LINUX_2_STANDARD_2_0 ;
1787
1798
/** @deprecated Use LinuxArmBuildImage.AMAZON_LINUX_2_STANDARD_3_0 instead. */
1788
1799
public static readonly AMAZON_LINUX_2_ARM_3 = LinuxArmBuildImage . AMAZON_LINUX_2_STANDARD_3_0 ;
1789
1800
1790
- /** @deprecated Use `STANDARD_2_0 ` and specify runtime in buildspec runtime-versions section */
1801
+ /** @deprecated Use `STANDARD_7_0 ` and specify runtime in buildspec runtime-versions section */
1791
1802
public static readonly UBUNTU_14_04_BASE = LinuxBuildImage . codeBuildImage ( 'aws/codebuild/ubuntu-base:14.04' ) ;
1792
- /** @deprecated Use `STANDARD_2_0 ` and specify runtime in buildspec runtime-versions section */
1803
+ /** @deprecated Use `STANDARD_7_0 ` and specify runtime in buildspec runtime-versions section */
1793
1804
public static readonly UBUNTU_14_04_ANDROID_JAVA8_24_4_1 = LinuxBuildImage . codeBuildImage ( 'aws/codebuild/android-java-8:24.4.1' ) ;
1794
- /** @deprecated Use `STANDARD_2_0 ` and specify runtime in buildspec runtime-versions section */
1805
+ /** @deprecated Use `STANDARD_7_0 ` and specify runtime in buildspec runtime-versions section */
1795
1806
public static readonly UBUNTU_14_04_ANDROID_JAVA8_26_1_1 = LinuxBuildImage . codeBuildImage ( 'aws/codebuild/android-java-8:26.1.1' ) ;
1796
- /** @deprecated Use `STANDARD_2_0 ` and specify runtime in buildspec runtime-versions section */
1807
+ /** @deprecated Use `STANDARD_7_0 ` and specify runtime in buildspec runtime-versions section */
1797
1808
public static readonly UBUNTU_14_04_DOCKER_17_09_0 = LinuxBuildImage . codeBuildImage ( 'aws/codebuild/docker:17.09.0' ) ;
1798
- /** @deprecated Use `STANDARD_2_0 ` and specify runtime in buildspec runtime-versions section */
1809
+ /** @deprecated Use `STANDARD_7_0 ` and specify runtime in buildspec runtime-versions section */
1799
1810
public static readonly UBUNTU_14_04_DOCKER_18_09_0 = LinuxBuildImage . codeBuildImage ( 'aws/codebuild/docker:18.09.0' ) ;
1800
- /** @deprecated Use `STANDARD_2_0 ` and specify runtime in buildspec runtime-versions section */
1811
+ /** @deprecated Use `STANDARD_7_0 ` and specify runtime in buildspec runtime-versions section */
1801
1812
public static readonly UBUNTU_14_04_GOLANG_1_10 = LinuxBuildImage . codeBuildImage ( 'aws/codebuild/golang:1.10' ) ;
1802
- /** @deprecated Use `STANDARD_2_0 ` and specify runtime in buildspec runtime-versions section */
1813
+ /** @deprecated Use `STANDARD_7_0 ` and specify runtime in buildspec runtime-versions section */
1803
1814
public static readonly UBUNTU_14_04_GOLANG_1_11 = LinuxBuildImage . codeBuildImage ( 'aws/codebuild/golang:1.11' ) ;
1804
- /** @deprecated Use `STANDARD_2_0 ` and specify runtime in buildspec runtime-versions section */
1815
+ /** @deprecated Use `STANDARD_7_0 ` and specify runtime in buildspec runtime-versions section */
1805
1816
public static readonly UBUNTU_14_04_OPEN_JDK_8 = LinuxBuildImage . codeBuildImage ( 'aws/codebuild/java:openjdk-8' ) ;
1806
- /** @deprecated Use `STANDARD_2_0 ` and specify runtime in buildspec runtime-versions section */
1817
+ /** @deprecated Use `STANDARD_7_0 ` and specify runtime in buildspec runtime-versions section */
1807
1818
public static readonly UBUNTU_14_04_OPEN_JDK_9 = LinuxBuildImage . codeBuildImage ( 'aws/codebuild/java:openjdk-9' ) ;
1808
- /** @deprecated Use `STANDARD_2_0 ` and specify runtime in buildspec runtime-versions section */
1819
+ /** @deprecated Use `STANDARD_7_0 ` and specify runtime in buildspec runtime-versions section */
1809
1820
public static readonly UBUNTU_14_04_OPEN_JDK_11 = LinuxBuildImage . codeBuildImage ( 'aws/codebuild/java:openjdk-11' ) ;
1810
- /** @deprecated Use `STANDARD_2_0 ` and specify runtime in buildspec runtime-versions section */
1821
+ /** @deprecated Use `STANDARD_7_0 ` and specify runtime in buildspec runtime-versions section */
1811
1822
public static readonly UBUNTU_14_04_NODEJS_10_14_1 = LinuxBuildImage . codeBuildImage ( 'aws/codebuild/nodejs:10.14.1' ) ;
1812
- /** @deprecated Use `STANDARD_2_0 ` and specify runtime in buildspec runtime-versions section */
1823
+ /** @deprecated Use `STANDARD_7_0 ` and specify runtime in buildspec runtime-versions section */
1813
1824
public static readonly UBUNTU_14_04_NODEJS_10_1_0 = LinuxBuildImage . codeBuildImage ( 'aws/codebuild/nodejs:10.1.0' ) ;
1814
- /** @deprecated Use `STANDARD_2_0 ` and specify runtime in buildspec runtime-versions section */
1825
+ /** @deprecated Use `STANDARD_7_0 ` and specify runtime in buildspec runtime-versions section */
1815
1826
public static readonly UBUNTU_14_04_NODEJS_8_11_0 = LinuxBuildImage . codeBuildImage ( 'aws/codebuild/nodejs:8.11.0' ) ;
1816
- /** @deprecated Use `STANDARD_2_0 ` and specify runtime in buildspec runtime-versions section */
1827
+ /** @deprecated Use `STANDARD_7_0 ` and specify runtime in buildspec runtime-versions section */
1817
1828
public static readonly UBUNTU_14_04_NODEJS_6_3_1 = LinuxBuildImage . codeBuildImage ( 'aws/codebuild/nodejs:6.3.1' ) ;
1818
- /** @deprecated Use `STANDARD_2_0 ` and specify runtime in buildspec runtime-versions section */
1829
+ /** @deprecated Use `STANDARD_7_0 ` and specify runtime in buildspec runtime-versions section */
1819
1830
public static readonly UBUNTU_14_04_PHP_5_6 = LinuxBuildImage . codeBuildImage ( 'aws/codebuild/php:5.6' ) ;
1820
- /** @deprecated Use `STANDARD_2_0 ` and specify runtime in buildspec runtime-versions section */
1831
+ /** @deprecated Use `STANDARD_7_0 ` and specify runtime in buildspec runtime-versions section */
1821
1832
public static readonly UBUNTU_14_04_PHP_7_0 = LinuxBuildImage . codeBuildImage ( 'aws/codebuild/php:7.0' ) ;
1822
- /** @deprecated Use `STANDARD_2_0 ` and specify runtime in buildspec runtime-versions section */
1833
+ /** @deprecated Use `STANDARD_7_0 ` and specify runtime in buildspec runtime-versions section */
1823
1834
public static readonly UBUNTU_14_04_PHP_7_1 = LinuxBuildImage . codeBuildImage ( 'aws/codebuild/php:7.1' ) ;
1824
- /** @deprecated Use `STANDARD_2_0 ` and specify runtime in buildspec runtime-versions section */
1835
+ /** @deprecated Use `STANDARD_7_0 ` and specify runtime in buildspec runtime-versions section */
1825
1836
public static readonly UBUNTU_14_04_PYTHON_3_7_1 = LinuxBuildImage . codeBuildImage ( 'aws/codebuild/python:3.7.1' ) ;
1826
- /** @deprecated Use `STANDARD_2_0 ` and specify runtime in buildspec runtime-versions section */
1837
+ /** @deprecated Use `STANDARD_7_0 ` and specify runtime in buildspec runtime-versions section */
1827
1838
public static readonly UBUNTU_14_04_PYTHON_3_6_5 = LinuxBuildImage . codeBuildImage ( 'aws/codebuild/python:3.6.5' ) ;
1828
- /** @deprecated Use `STANDARD_2_0 ` and specify runtime in buildspec runtime-versions section */
1839
+ /** @deprecated Use `STANDARD_7_0 ` and specify runtime in buildspec runtime-versions section */
1829
1840
public static readonly UBUNTU_14_04_PYTHON_3_5_2 = LinuxBuildImage . codeBuildImage ( 'aws/codebuild/python:3.5.2' ) ;
1830
- /** @deprecated Use `STANDARD_2_0 ` and specify runtime in buildspec runtime-versions section */
1841
+ /** @deprecated Use `STANDARD_7_0 ` and specify runtime in buildspec runtime-versions section */
1831
1842
public static readonly UBUNTU_14_04_PYTHON_3_4_5 = LinuxBuildImage . codeBuildImage ( 'aws/codebuild/python:3.4.5' ) ;
1832
- /** @deprecated Use `STANDARD_2_0 ` and specify runtime in buildspec runtime-versions section */
1843
+ /** @deprecated Use `STANDARD_7_0 ` and specify runtime in buildspec runtime-versions section */
1833
1844
public static readonly UBUNTU_14_04_PYTHON_3_3_6 = LinuxBuildImage . codeBuildImage ( 'aws/codebuild/python:3.3.6' ) ;
1834
- /** @deprecated Use `STANDARD_2_0 ` and specify runtime in buildspec runtime-versions section */
1845
+ /** @deprecated Use `STANDARD_7_0 ` and specify runtime in buildspec runtime-versions section */
1835
1846
public static readonly UBUNTU_14_04_PYTHON_2_7_12 = LinuxBuildImage . codeBuildImage ( 'aws/codebuild/python:2.7.12' ) ;
1836
- /** @deprecated Use `STANDARD_2_0 ` and specify runtime in buildspec runtime-versions section */
1847
+ /** @deprecated Use `STANDARD_7_0 ` and specify runtime in buildspec runtime-versions section */
1837
1848
public static readonly UBUNTU_14_04_RUBY_2_5_3 = LinuxBuildImage . codeBuildImage ( 'aws/codebuild/ruby:2.5.3' ) ;
1838
- /** @deprecated Use `STANDARD_2_0 ` and specify runtime in buildspec runtime-versions section */
1849
+ /** @deprecated Use `STANDARD_7_0 ` and specify runtime in buildspec runtime-versions section */
1839
1850
public static readonly UBUNTU_14_04_RUBY_2_5_1 = LinuxBuildImage . codeBuildImage ( 'aws/codebuild/ruby:2.5.1' ) ;
1840
- /** @deprecated Use `STANDARD_2_0 ` and specify runtime in buildspec runtime-versions section */
1851
+ /** @deprecated Use `STANDARD_7_0 ` and specify runtime in buildspec runtime-versions section */
1841
1852
public static readonly UBUNTU_14_04_RUBY_2_3_1 = LinuxBuildImage . codeBuildImage ( 'aws/codebuild/ruby:2.3.1' ) ;
1842
- /** @deprecated Use `STANDARD_2_0 ` and specify runtime in buildspec runtime-versions section */
1853
+ /** @deprecated Use `STANDARD_7_0 ` and specify runtime in buildspec runtime-versions section */
1843
1854
public static readonly UBUNTU_14_04_RUBY_2_2_5 = LinuxBuildImage . codeBuildImage ( 'aws/codebuild/ruby:2.2.5' ) ;
1844
- /** @deprecated Use `STANDARD_2_0 ` and specify runtime in buildspec runtime-versions section */
1855
+ /** @deprecated Use `STANDARD_7_0 ` and specify runtime in buildspec runtime-versions section */
1845
1856
public static readonly UBUNTU_14_04_DOTNET_CORE_1_1 = LinuxBuildImage . codeBuildImage ( 'aws/codebuild/dot-net:core-1' ) ;
1846
- /** @deprecated Use `STANDARD_2_0 ` and specify runtime in buildspec runtime-versions section */
1857
+ /** @deprecated Use `STANDARD_7_0 ` and specify runtime in buildspec runtime-versions section */
1847
1858
public static readonly UBUNTU_14_04_DOTNET_CORE_2_0 = LinuxBuildImage . codeBuildImage ( 'aws/codebuild/dot-net:core-2.0' ) ;
1848
- /** @deprecated Use `STANDARD_2_0 ` and specify runtime in buildspec runtime-versions section */
1859
+ /** @deprecated Use `STANDARD_7_0 ` and specify runtime in buildspec runtime-versions section */
1849
1860
public static readonly UBUNTU_14_04_DOTNET_CORE_2_1 = LinuxBuildImage . codeBuildImage ( 'aws/codebuild/dot-net:core-2.1' ) ;
1850
1861
1851
1862
/**
0 commit comments