@@ -935,46 +935,6 @@ export type EnvironmentType = (typeof EnvironmentType)[keyof typeof EnvironmentT
935
935
export interface ProjectEnvironment {
936
936
/**
937
937
* <p>The type of build environment to use for related builds.</p>
938
- * <ul>
939
- * <li>
940
- * <p>The environment type <code>ARM_CONTAINER</code> is available only in regions
941
- * US East (N. Virginia), US East (Ohio), US West (Oregon), EU (Ireland),
942
- * Asia Pacific (Mumbai), Asia Pacific (Tokyo), Asia Pacific (Sydney), and
943
- * EU (Frankfurt).</p>
944
- * </li>
945
- * <li>
946
- * <p>The environment type <code>LINUX_CONTAINER</code> is available only in regions
947
- * US East (N. Virginia), US East (Ohio), US West (Oregon),
948
- * Canada (Central), EU (Ireland), EU (London),
949
- * EU (Frankfurt), Asia Pacific (Tokyo), Asia Pacific (Seoul),
950
- * Asia Pacific (Singapore), Asia Pacific (Sydney), China (Beijing), and
951
- * China (Ningxia).</p>
952
- * </li>
953
- * <li>
954
- * <p>The environment type <code>LINUX_GPU_CONTAINER</code> is available only in
955
- * regions US East (N. Virginia), US East (Ohio), US West (Oregon),
956
- * Canada (Central), EU (Ireland), EU (London),
957
- * EU (Frankfurt), Asia Pacific (Tokyo), Asia Pacific (Seoul),
958
- * Asia Pacific (Singapore), Asia Pacific (Sydney) , China (Beijing), and
959
- * China (Ningxia).</p>
960
- * </li>
961
- * </ul>
962
- * <ul>
963
- * <li>
964
- * <p>The environment types <code>ARM_LAMBDA_CONTAINER</code> and
965
- * <code>LINUX_LAMBDA_CONTAINER</code> are available only in regions
966
- * US East (N. Virginia), US East (Ohio), US West (Oregon), Asia Pacific (Mumbai), Asia Pacific (Singapore),
967
- * Asia Pacific (Sydney), Asia Pacific (Tokyo), EU (Frankfurt), EU (Ireland), and South America (São Paulo).</p>
968
- * </li>
969
- * </ul>
970
- * <ul>
971
- * <li>
972
- * <p>The environment types <code>WINDOWS_CONTAINER</code> and
973
- * <code>WINDOWS_SERVER_2019_CONTAINER</code> are available only in regions
974
- * US East (N. Virginia), US East (Ohio), US West (Oregon), and
975
- * EU (Ireland).</p>
976
- * </li>
977
- * </ul>
978
938
* <note>
979
939
* <p>If you're using compute fleets during project creation, <code>type</code> will be ignored.</p>
980
940
* </note>
@@ -3765,6 +3725,7 @@ export const WebhookFilterType = {
3765
3725
EVENT : "EVENT" ,
3766
3726
FILE_PATH : "FILE_PATH" ,
3767
3727
HEAD_REF : "HEAD_REF" ,
3728
+ ORGANIZATION_NAME : "ORGANIZATION_NAME" ,
3768
3729
RELEASE_NAME : "RELEASE_NAME" ,
3769
3730
REPOSITORY_NAME : "REPOSITORY_NAME" ,
3770
3731
TAG_NAME : "TAG_NAME" ,
@@ -3782,9 +3743,10 @@ export type WebhookFilterType = (typeof WebhookFilterType)[keyof typeof WebhookF
3782
3743
*/
3783
3744
export interface WebhookFilter {
3784
3745
/**
3785
- * <p> The type of webhook filter. There are nine webhook filter types: <code>EVENT</code>,
3746
+ * <p> The type of webhook filter. There are 11 webhook filter types: <code>EVENT</code>,
3786
3747
* <code>ACTOR_ACCOUNT_ID</code>, <code>HEAD_REF</code>, <code>BASE_REF</code>,
3787
3748
* <code>FILE_PATH</code>, <code>COMMIT_MESSAGE</code>, <code>TAG_NAME</code>, <code>RELEASE_NAME</code>,
3749
+ * <code>REPOSITORY_NAME</code>, <code>ORGANIZATION_NAME</code>,
3788
3750
* and <code>WORKFLOW_NAME</code>. </p>
3789
3751
* <ul>
3790
3752
* <li>
@@ -3854,9 +3816,7 @@ export interface WebhookFilter {
3854
3816
* <p> A webhook triggers a build when the path of a changed file matches the
3855
3817
* regular expression <code>pattern</code>. </p>
3856
3818
* <note>
3857
- * <p> Works with GitHub and Bitbucket events push and pull requests events.
3858
- * Also works with GitHub Enterprise push events, but does not work with
3859
- * GitHub Enterprise pull request events. </p>
3819
+ * <p> Works with push and pull request events only. </p>
3860
3820
* </note>
3861
3821
* </li>
3862
3822
* </ul>
@@ -3868,9 +3828,7 @@ export interface WebhookFilter {
3868
3828
* <p>A webhook triggers a build when the head commit message matches the
3869
3829
* regular expression <code>pattern</code>.</p>
3870
3830
* <note>
3871
- * <p> Works with GitHub and Bitbucket events push and pull requests events.
3872
- * Also works with GitHub Enterprise push events, but does not work with
3873
- * GitHub Enterprise pull request events. </p>
3831
+ * <p> Works with push and pull request events only. </p>
3874
3832
* </note>
3875
3833
* </li>
3876
3834
* </ul>
@@ -3904,14 +3862,26 @@ export interface WebhookFilter {
3904
3862
* <ul>
3905
3863
* <li>
3906
3864
* <p>A webhook triggers a build when the repository name matches the
3907
- * regular expression pattern.</p>
3865
+ * regular expression <code> pattern</code> .</p>
3908
3866
* <note>
3909
3867
* <p> Works with GitHub global or organization webhooks only. </p>
3910
3868
* </note>
3911
3869
* </li>
3912
3870
* </ul>
3913
3871
* </li>
3914
3872
* <li>
3873
+ * <p>ORGANIZATION_NAME</p>
3874
+ * <ul>
3875
+ * <li>
3876
+ * <p>A webhook triggers a build when the organization name matches the
3877
+ * regular expression <code>pattern</code>.</p>
3878
+ * <note>
3879
+ * <p> Works with GitHub global webhooks only. </p>
3880
+ * </note>
3881
+ * </li>
3882
+ * </ul>
3883
+ * </li>
3884
+ * <li>
3915
3885
* <p>WORKFLOW_NAME</p>
3916
3886
* <ul>
3917
3887
* <li>
0 commit comments