forked from aws/aws-sdk-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAWSCodeBuild.java
More file actions
903 lines (859 loc) · 37 KB
/
AWSCodeBuild.java
File metadata and controls
903 lines (859 loc) · 37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
/*
* Copyright 2015-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
* the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
* and limitations under the License.
*/
package com.amazonaws.services.codebuild;
import javax.annotation.Generated;
import com.amazonaws.*;
import com.amazonaws.regions.*;
import com.amazonaws.services.codebuild.model.*;
/**
* Interface for accessing AWS CodeBuild.
* <p>
* <b>Note:</b> Do not directly implement this interface, new methods are added to it regularly. Extend from
* {@link com.amazonaws.services.codebuild.AbstractAWSCodeBuild} instead.
* </p>
* <p>
* <fullname>AWS CodeBuild</fullname>
* <p>
* AWS CodeBuild is a fully managed build service in the cloud. AWS CodeBuild compiles your source code, runs unit
* tests, and produces artifacts that are ready to deploy. AWS CodeBuild eliminates the need to provision, manage, and
* scale your own build servers. It provides prepackaged build environments for the most popular programming languages
* and build tools, such as Apache Maven, Gradle, and more. You can also fully customize build environments in AWS
* CodeBuild to use your own build tools. AWS CodeBuild scales automatically to meet peak build requests. You pay only
* for the build time you consume. For more information about AWS CodeBuild, see the <i> <a
* href="https://docs.aws.amazon.com/codebuild/latest/userguide/welcome.html">AWS CodeBuild User Guide</a>.</i>
* </p>
* <p>
* AWS CodeBuild supports these operations:
* </p>
* <ul>
* <li>
* <p>
* <code>BatchDeleteBuilds</code>: Deletes one or more builds.
* </p>
* </li>
* <li>
* <p>
* <code>BatchGetBuilds</code>: Gets information about one or more builds.
* </p>
* </li>
* <li>
* <p>
* <code>BatchGetProjects</code>: Gets information about one or more build projects. A <i>build project</i> defines how
* AWS CodeBuild runs a build. This includes information such as where to get the source code to build, the build
* environment to use, the build commands to run, and where to store the build output. A <i>build environment</i> is a
* representation of operating system, programming language runtime, and tools that AWS CodeBuild uses to run a build.
* You can add tags to build projects to help manage your resources and costs.
* </p>
* </li>
* <li>
* <p>
* <code>BatchGetReportGroups</code>: Returns an array of report groups.
* </p>
* </li>
* <li>
* <p>
* <code>BatchGetReports</code>: Returns an array of reports.
* </p>
* </li>
* <li>
* <p>
* <code>CreateProject</code>: Creates a build project.
* </p>
* </li>
* <li>
* <p>
* <code>CreateReportGroup</code>: Creates a report group. A report group contains a collection of reports.
* </p>
* </li>
* <li>
* <p>
* <code>CreateWebhook</code>: For an existing AWS CodeBuild build project that has its source code stored in a GitHub
* or Bitbucket repository, enables AWS CodeBuild to start rebuilding the source code every time a code change is pushed
* to the repository.
* </p>
* </li>
* <li>
* <p>
* <code>DeleteProject</code>: Deletes a build project.
* </p>
* </li>
* <li>
* <p>
* <code>DeleteReport</code>: Deletes a report.
* </p>
* </li>
* <li>
* <p>
* <code>DeleteReportGroup</code>: Deletes a report group.
* </p>
* </li>
* <li>
* <p>
* <code>DeleteResourcePolicy</code>: Deletes a resource policy that is identified by its resource ARN.
* </p>
* </li>
* <li>
* <p>
* <code>DeleteSourceCredentials</code>: Deletes a set of GitHub, GitHub Enterprise, or Bitbucket source credentials.
* </p>
* </li>
* <li>
* <p>
* <code>DeleteWebhook</code>: For an existing AWS CodeBuild build project that has its source code stored in a GitHub
* or Bitbucket repository, stops AWS CodeBuild from rebuilding the source code every time a code change is pushed to
* the repository.
* </p>
* </li>
* <li>
* <p>
* <code>DescribeTestCases</code>: Returns a list of details about test cases for a report.
* </p>
* </li>
* <li>
* <p>
* <code>GetResourcePolicy</code>: Gets a resource policy that is identified by its resource ARN.
* </p>
* </li>
* <li>
* <p>
* <code>ImportSourceCredentials</code>: Imports the source repository credentials for an AWS CodeBuild project that has
* its source code stored in a GitHub, GitHub Enterprise, or Bitbucket repository.
* </p>
* </li>
* <li>
* <p>
* <code>InvalidateProjectCache</code>: Resets the cache for a project.
* </p>
* </li>
* <li>
* <p>
* <code>ListBuilds</code>: Gets a list of build IDs, with each build ID representing a single build.
* </p>
* </li>
* <li>
* <p>
* <code>ListBuildsForProject</code>: Gets a list of build IDs for the specified build project, with each build ID
* representing a single build.
* </p>
* </li>
* <li>
* <p>
* <code>ListCuratedEnvironmentImages</code>: Gets information about Docker images that are managed by AWS CodeBuild.
* </p>
* </li>
* <li>
* <p>
* <code>ListProjects</code>: Gets a list of build project names, with each build project name representing a single
* build project.
* </p>
* </li>
* <li>
* <p>
* <code>ListReportGroups</code>: Gets a list ARNs for the report groups in the current AWS account.
* </p>
* </li>
* <li>
* <p>
* <code>ListReports</code>: Gets a list ARNs for the reports in the current AWS account.
* </p>
* </li>
* <li>
* <p>
* <code>ListReportsForReportGroup</code>: Returns a list of ARNs for the reports that belong to a
* <code>ReportGroup</code>.
* </p>
* </li>
* <li>
* <p>
* <code>ListSharedProjects</code>: Gets a list of ARNs associated with projects shared with the current AWS account or
* user.
* </p>
* </li>
* <li>
* <p>
* <code>ListSharedReportGroups</code>: Gets a list of ARNs associated with report groups shared with the current AWS
* account or user
* </p>
* </li>
* <li>
* <p>
* <code>ListSourceCredentials</code>: Returns a list of <code>SourceCredentialsInfo</code> objects. Each
* <code>SourceCredentialsInfo</code> object includes the authentication type, token ARN, and type of source provider
* for one set of credentials.
* </p>
* </li>
* <li>
* <p>
* <code>PutResourcePolicy</code>: Stores a resource policy for the ARN of a <code>Project</code> or
* <code>ReportGroup</code> object.
* </p>
* </li>
* <li>
* <p>
* <code>StartBuild</code>: Starts running a build.
* </p>
* </li>
* <li>
* <p>
* <code>StopBuild</code>: Attempts to stop running a build.
* </p>
* </li>
* <li>
* <p>
* <code>UpdateProject</code>: Changes the settings of an existing build project.
* </p>
* </li>
* <li>
* <p>
* <code>UpdateReportGroup</code>: Changes a report group.
* </p>
* </li>
* <li>
* <p>
* <code>UpdateWebhook</code>: Changes the settings of an existing webhook.
* </p>
* </li>
* </ul>
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public interface AWSCodeBuild {
/**
* The region metadata service name for computing region endpoints. You can use this value to retrieve metadata
* (such as supported regions) of the service.
*
* @see RegionUtils#getRegionsForService(String)
*/
String ENDPOINT_PREFIX = "codebuild";
/**
* Overrides the default endpoint for this client ("codebuild.us-east-1.amazonaws.com"). Callers can use this method
* to control which AWS region they want to work with.
* <p>
* Callers can pass in just the endpoint (ex: "codebuild.us-east-1.amazonaws.com") or a full URL, including the
* protocol (ex: "codebuild.us-east-1.amazonaws.com"). If the protocol is not specified here, the default protocol
* from this client's {@link ClientConfiguration} will be used, which by default is HTTPS.
* <p>
* For more information on using AWS regions with the AWS SDK for Java, and a complete list of all available
* endpoints for all AWS services, see: <a href=
* "https://docs.aws.amazon.com/sdk-for-java/v1/developer-guide/java-dg-region-selection.html#region-selection-choose-endpoint"
* > https://docs.aws.amazon.com/sdk-for-java/v1/developer-guide/java-dg-region-selection.html#region-selection-
* choose-endpoint</a>
* <p>
* <b>This method is not threadsafe. An endpoint should be configured when the client is created and before any
* service requests are made. Changing it afterwards creates inevitable race conditions for any service requests in
* transit or retrying.</b>
*
* @param endpoint
* The endpoint (ex: "codebuild.us-east-1.amazonaws.com") or a full URL, including the protocol (ex:
* "codebuild.us-east-1.amazonaws.com") of the region specific AWS endpoint this client will communicate
* with.
* @deprecated use {@link AwsClientBuilder#setEndpointConfiguration(AwsClientBuilder.EndpointConfiguration)} for
* example:
* {@code builder.setEndpointConfiguration(new EndpointConfiguration(endpoint, signingRegion));}
*/
@Deprecated
void setEndpoint(String endpoint);
/**
* An alternative to {@link AWSCodeBuild#setEndpoint(String)}, sets the regional endpoint for this client's service
* calls. Callers can use this method to control which AWS region they want to work with.
* <p>
* By default, all service endpoints in all regions use the https protocol. To use http instead, specify it in the
* {@link ClientConfiguration} supplied at construction.
* <p>
* <b>This method is not threadsafe. A region should be configured when the client is created and before any service
* requests are made. Changing it afterwards creates inevitable race conditions for any service requests in transit
* or retrying.</b>
*
* @param region
* The region this client will communicate with. See {@link Region#getRegion(com.amazonaws.regions.Regions)}
* for accessing a given region. Must not be null and must be a region where the service is available.
*
* @see Region#getRegion(com.amazonaws.regions.Regions)
* @see Region#createClient(Class, com.amazonaws.auth.AWSCredentialsProvider, ClientConfiguration)
* @see Region#isServiceSupported(String)
* @deprecated use {@link AwsClientBuilder#setRegion(String)}
*/
@Deprecated
void setRegion(Region region);
/**
* <p>
* Deletes one or more builds.
* </p>
*
* @param batchDeleteBuildsRequest
* @return Result of the BatchDeleteBuilds operation returned by the service.
* @throws InvalidInputException
* The input value that was provided is not valid.
* @sample AWSCodeBuild.BatchDeleteBuilds
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/BatchDeleteBuilds" target="_top">AWS
* API Documentation</a>
*/
BatchDeleteBuildsResult batchDeleteBuilds(BatchDeleteBuildsRequest batchDeleteBuildsRequest);
/**
* <p>
* Gets information about one or more builds.
* </p>
*
* @param batchGetBuildsRequest
* @return Result of the BatchGetBuilds operation returned by the service.
* @throws InvalidInputException
* The input value that was provided is not valid.
* @sample AWSCodeBuild.BatchGetBuilds
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/BatchGetBuilds" target="_top">AWS API
* Documentation</a>
*/
BatchGetBuildsResult batchGetBuilds(BatchGetBuildsRequest batchGetBuildsRequest);
/**
* <p>
* Gets information about one or more build projects.
* </p>
*
* @param batchGetProjectsRequest
* @return Result of the BatchGetProjects operation returned by the service.
* @throws InvalidInputException
* The input value that was provided is not valid.
* @sample AWSCodeBuild.BatchGetProjects
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/BatchGetProjects" target="_top">AWS API
* Documentation</a>
*/
BatchGetProjectsResult batchGetProjects(BatchGetProjectsRequest batchGetProjectsRequest);
/**
* <p>
* Returns an array of report groups.
* </p>
*
* @param batchGetReportGroupsRequest
* @return Result of the BatchGetReportGroups operation returned by the service.
* @throws InvalidInputException
* The input value that was provided is not valid.
* @sample AWSCodeBuild.BatchGetReportGroups
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/BatchGetReportGroups" target="_top">AWS
* API Documentation</a>
*/
BatchGetReportGroupsResult batchGetReportGroups(BatchGetReportGroupsRequest batchGetReportGroupsRequest);
/**
* <p>
* Returns an array of reports.
* </p>
*
* @param batchGetReportsRequest
* @return Result of the BatchGetReports operation returned by the service.
* @throws InvalidInputException
* The input value that was provided is not valid.
* @sample AWSCodeBuild.BatchGetReports
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/BatchGetReports" target="_top">AWS API
* Documentation</a>
*/
BatchGetReportsResult batchGetReports(BatchGetReportsRequest batchGetReportsRequest);
/**
* <p>
* Creates a build project.
* </p>
*
* @param createProjectRequest
* @return Result of the CreateProject operation returned by the service.
* @throws InvalidInputException
* The input value that was provided is not valid.
* @throws ResourceAlreadyExistsException
* The specified AWS resource cannot be created, because an AWS resource with the same settings already
* exists.
* @throws AccountLimitExceededException
* An AWS service limit was exceeded for the calling AWS account.
* @sample AWSCodeBuild.CreateProject
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/CreateProject" target="_top">AWS API
* Documentation</a>
*/
CreateProjectResult createProject(CreateProjectRequest createProjectRequest);
/**
* <p>
* Creates a report group. A report group contains a collection of reports.
* </p>
*
* @param createReportGroupRequest
* @return Result of the CreateReportGroup operation returned by the service.
* @throws InvalidInputException
* The input value that was provided is not valid.
* @throws ResourceAlreadyExistsException
* The specified AWS resource cannot be created, because an AWS resource with the same settings already
* exists.
* @throws AccountLimitExceededException
* An AWS service limit was exceeded for the calling AWS account.
* @sample AWSCodeBuild.CreateReportGroup
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/CreateReportGroup" target="_top">AWS
* API Documentation</a>
*/
CreateReportGroupResult createReportGroup(CreateReportGroupRequest createReportGroupRequest);
/**
* <p>
* For an existing AWS CodeBuild build project that has its source code stored in a GitHub or Bitbucket repository,
* enables AWS CodeBuild to start rebuilding the source code every time a code change is pushed to the repository.
* </p>
* <important>
* <p>
* If you enable webhooks for an AWS CodeBuild project, and the project is used as a build step in AWS CodePipeline,
* then two identical builds are created for each commit. One build is triggered through webhooks, and one through
* AWS CodePipeline. Because billing is on a per-build basis, you are billed for both builds. Therefore, if you are
* using AWS CodePipeline, we recommend that you disable webhooks in AWS CodeBuild. In the AWS CodeBuild console,
* clear the Webhook box. For more information, see step 5 in <a
* href="https://docs.aws.amazon.com/codebuild/latest/userguide/change-project.html#change-project-console">Change a
* Build Project's Settings</a>.
* </p>
* </important>
*
* @param createWebhookRequest
* @return Result of the CreateWebhook operation returned by the service.
* @throws InvalidInputException
* The input value that was provided is not valid.
* @throws OAuthProviderException
* There was a problem with the underlying OAuth provider.
* @throws ResourceAlreadyExistsException
* The specified AWS resource cannot be created, because an AWS resource with the same settings already
* exists.
* @throws ResourceNotFoundException
* The specified AWS resource cannot be found.
* @sample AWSCodeBuild.CreateWebhook
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/CreateWebhook" target="_top">AWS API
* Documentation</a>
*/
CreateWebhookResult createWebhook(CreateWebhookRequest createWebhookRequest);
/**
* <p>
* Deletes a build project. When you delete a project, its builds are not deleted.
* </p>
*
* @param deleteProjectRequest
* @return Result of the DeleteProject operation returned by the service.
* @throws InvalidInputException
* The input value that was provided is not valid.
* @sample AWSCodeBuild.DeleteProject
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/DeleteProject" target="_top">AWS API
* Documentation</a>
*/
DeleteProjectResult deleteProject(DeleteProjectRequest deleteProjectRequest);
/**
* <p>
* Deletes a report.
* </p>
*
* @param deleteReportRequest
* @return Result of the DeleteReport operation returned by the service.
* @throws InvalidInputException
* The input value that was provided is not valid.
* @sample AWSCodeBuild.DeleteReport
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/DeleteReport" target="_top">AWS API
* Documentation</a>
*/
DeleteReportResult deleteReport(DeleteReportRequest deleteReportRequest);
/**
* <p>
* <code>DeleteReportGroup</code>: Deletes a report group. Before you delete a report group, you must delete its
* reports. Use <a
* href="https://docs.aws.amazon.com/codebuild/latest/APIReference/API_ListReportsForReportGroup.html"
* >ListReportsForReportGroup</a> to get the reports in a report group. Use <a
* href="https://docs.aws.amazon.com/codebuild/latest/APIReference/API_DeleteReport.html">DeleteReport</a> to delete
* the reports. If you call <code>DeleteReportGroup</code> for a report group that contains one or more reports, an
* exception is thrown.
* </p>
*
* @param deleteReportGroupRequest
* @return Result of the DeleteReportGroup operation returned by the service.
* @throws InvalidInputException
* The input value that was provided is not valid.
* @sample AWSCodeBuild.DeleteReportGroup
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/DeleteReportGroup" target="_top">AWS
* API Documentation</a>
*/
DeleteReportGroupResult deleteReportGroup(DeleteReportGroupRequest deleteReportGroupRequest);
/**
* <p>
* Deletes a resource policy that is identified by its resource ARN.
* </p>
*
* @param deleteResourcePolicyRequest
* @return Result of the DeleteResourcePolicy operation returned by the service.
* @throws InvalidInputException
* The input value that was provided is not valid.
* @sample AWSCodeBuild.DeleteResourcePolicy
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/DeleteResourcePolicy" target="_top">AWS
* API Documentation</a>
*/
DeleteResourcePolicyResult deleteResourcePolicy(DeleteResourcePolicyRequest deleteResourcePolicyRequest);
/**
* <p>
* Deletes a set of GitHub, GitHub Enterprise, or Bitbucket source credentials.
* </p>
*
* @param deleteSourceCredentialsRequest
* @return Result of the DeleteSourceCredentials operation returned by the service.
* @throws InvalidInputException
* The input value that was provided is not valid.
* @throws ResourceNotFoundException
* The specified AWS resource cannot be found.
* @sample AWSCodeBuild.DeleteSourceCredentials
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/DeleteSourceCredentials"
* target="_top">AWS API Documentation</a>
*/
DeleteSourceCredentialsResult deleteSourceCredentials(DeleteSourceCredentialsRequest deleteSourceCredentialsRequest);
/**
* <p>
* For an existing AWS CodeBuild build project that has its source code stored in a GitHub or Bitbucket repository,
* stops AWS CodeBuild from rebuilding the source code every time a code change is pushed to the repository.
* </p>
*
* @param deleteWebhookRequest
* @return Result of the DeleteWebhook operation returned by the service.
* @throws InvalidInputException
* The input value that was provided is not valid.
* @throws ResourceNotFoundException
* The specified AWS resource cannot be found.
* @throws OAuthProviderException
* There was a problem with the underlying OAuth provider.
* @sample AWSCodeBuild.DeleteWebhook
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/DeleteWebhook" target="_top">AWS API
* Documentation</a>
*/
DeleteWebhookResult deleteWebhook(DeleteWebhookRequest deleteWebhookRequest);
/**
* <p>
* Returns a list of details about test cases for a report.
* </p>
*
* @param describeTestCasesRequest
* @return Result of the DescribeTestCases operation returned by the service.
* @throws InvalidInputException
* The input value that was provided is not valid.
* @throws ResourceNotFoundException
* The specified AWS resource cannot be found.
* @sample AWSCodeBuild.DescribeTestCases
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/DescribeTestCases" target="_top">AWS
* API Documentation</a>
*/
DescribeTestCasesResult describeTestCases(DescribeTestCasesRequest describeTestCasesRequest);
/**
* <p>
* Gets a resource policy that is identified by its resource ARN.
* </p>
*
* @param getResourcePolicyRequest
* @return Result of the GetResourcePolicy operation returned by the service.
* @throws ResourceNotFoundException
* The specified AWS resource cannot be found.
* @throws InvalidInputException
* The input value that was provided is not valid.
* @sample AWSCodeBuild.GetResourcePolicy
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/GetResourcePolicy" target="_top">AWS
* API Documentation</a>
*/
GetResourcePolicyResult getResourcePolicy(GetResourcePolicyRequest getResourcePolicyRequest);
/**
* <p>
* Imports the source repository credentials for an AWS CodeBuild project that has its source code stored in a
* GitHub, GitHub Enterprise, or Bitbucket repository.
* </p>
*
* @param importSourceCredentialsRequest
* @return Result of the ImportSourceCredentials operation returned by the service.
* @throws InvalidInputException
* The input value that was provided is not valid.
* @throws AccountLimitExceededException
* An AWS service limit was exceeded for the calling AWS account.
* @throws ResourceAlreadyExistsException
* The specified AWS resource cannot be created, because an AWS resource with the same settings already
* exists.
* @sample AWSCodeBuild.ImportSourceCredentials
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/ImportSourceCredentials"
* target="_top">AWS API Documentation</a>
*/
ImportSourceCredentialsResult importSourceCredentials(ImportSourceCredentialsRequest importSourceCredentialsRequest);
/**
* <p>
* Resets the cache for a project.
* </p>
*
* @param invalidateProjectCacheRequest
* @return Result of the InvalidateProjectCache operation returned by the service.
* @throws InvalidInputException
* The input value that was provided is not valid.
* @throws ResourceNotFoundException
* The specified AWS resource cannot be found.
* @sample AWSCodeBuild.InvalidateProjectCache
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/InvalidateProjectCache"
* target="_top">AWS API Documentation</a>
*/
InvalidateProjectCacheResult invalidateProjectCache(InvalidateProjectCacheRequest invalidateProjectCacheRequest);
/**
* <p>
* Gets a list of build IDs, with each build ID representing a single build.
* </p>
*
* @param listBuildsRequest
* @return Result of the ListBuilds operation returned by the service.
* @throws InvalidInputException
* The input value that was provided is not valid.
* @sample AWSCodeBuild.ListBuilds
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/ListBuilds" target="_top">AWS API
* Documentation</a>
*/
ListBuildsResult listBuilds(ListBuildsRequest listBuildsRequest);
/**
* <p>
* Gets a list of build IDs for the specified build project, with each build ID representing a single build.
* </p>
*
* @param listBuildsForProjectRequest
* @return Result of the ListBuildsForProject operation returned by the service.
* @throws InvalidInputException
* The input value that was provided is not valid.
* @throws ResourceNotFoundException
* The specified AWS resource cannot be found.
* @sample AWSCodeBuild.ListBuildsForProject
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/ListBuildsForProject" target="_top">AWS
* API Documentation</a>
*/
ListBuildsForProjectResult listBuildsForProject(ListBuildsForProjectRequest listBuildsForProjectRequest);
/**
* <p>
* Gets information about Docker images that are managed by AWS CodeBuild.
* </p>
*
* @param listCuratedEnvironmentImagesRequest
* @return Result of the ListCuratedEnvironmentImages operation returned by the service.
* @sample AWSCodeBuild.ListCuratedEnvironmentImages
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/ListCuratedEnvironmentImages"
* target="_top">AWS API Documentation</a>
*/
ListCuratedEnvironmentImagesResult listCuratedEnvironmentImages(ListCuratedEnvironmentImagesRequest listCuratedEnvironmentImagesRequest);
/**
* <p>
* Gets a list of build project names, with each build project name representing a single build project.
* </p>
*
* @param listProjectsRequest
* @return Result of the ListProjects operation returned by the service.
* @throws InvalidInputException
* The input value that was provided is not valid.
* @sample AWSCodeBuild.ListProjects
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/ListProjects" target="_top">AWS API
* Documentation</a>
*/
ListProjectsResult listProjects(ListProjectsRequest listProjectsRequest);
/**
* <p>
* Gets a list ARNs for the report groups in the current AWS account.
* </p>
*
* @param listReportGroupsRequest
* @return Result of the ListReportGroups operation returned by the service.
* @throws InvalidInputException
* The input value that was provided is not valid.
* @sample AWSCodeBuild.ListReportGroups
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/ListReportGroups" target="_top">AWS API
* Documentation</a>
*/
ListReportGroupsResult listReportGroups(ListReportGroupsRequest listReportGroupsRequest);
/**
* <p>
* Returns a list of ARNs for the reports in the current AWS account.
* </p>
*
* @param listReportsRequest
* @return Result of the ListReports operation returned by the service.
* @throws InvalidInputException
* The input value that was provided is not valid.
* @sample AWSCodeBuild.ListReports
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/ListReports" target="_top">AWS API
* Documentation</a>
*/
ListReportsResult listReports(ListReportsRequest listReportsRequest);
/**
* <p>
* Returns a list of ARNs for the reports that belong to a <code>ReportGroup</code>.
* </p>
*
* @param listReportsForReportGroupRequest
* @return Result of the ListReportsForReportGroup operation returned by the service.
* @throws InvalidInputException
* The input value that was provided is not valid.
* @throws ResourceNotFoundException
* The specified AWS resource cannot be found.
* @sample AWSCodeBuild.ListReportsForReportGroup
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/ListReportsForReportGroup"
* target="_top">AWS API Documentation</a>
*/
ListReportsForReportGroupResult listReportsForReportGroup(ListReportsForReportGroupRequest listReportsForReportGroupRequest);
/**
* <p>
* Gets a list of projects that are shared with other AWS accounts or users.
* </p>
*
* @param listSharedProjectsRequest
* @return Result of the ListSharedProjects operation returned by the service.
* @throws InvalidInputException
* The input value that was provided is not valid.
* @sample AWSCodeBuild.ListSharedProjects
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/ListSharedProjects" target="_top">AWS
* API Documentation</a>
*/
ListSharedProjectsResult listSharedProjects(ListSharedProjectsRequest listSharedProjectsRequest);
/**
* <p>
* Gets a list of report groups that are shared with other AWS accounts or users.
* </p>
*
* @param listSharedReportGroupsRequest
* @return Result of the ListSharedReportGroups operation returned by the service.
* @throws InvalidInputException
* The input value that was provided is not valid.
* @sample AWSCodeBuild.ListSharedReportGroups
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/ListSharedReportGroups"
* target="_top">AWS API Documentation</a>
*/
ListSharedReportGroupsResult listSharedReportGroups(ListSharedReportGroupsRequest listSharedReportGroupsRequest);
/**
* <p>
* Returns a list of <code>SourceCredentialsInfo</code> objects.
* </p>
*
* @param listSourceCredentialsRequest
* @return Result of the ListSourceCredentials operation returned by the service.
* @sample AWSCodeBuild.ListSourceCredentials
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/ListSourceCredentials"
* target="_top">AWS API Documentation</a>
*/
ListSourceCredentialsResult listSourceCredentials(ListSourceCredentialsRequest listSourceCredentialsRequest);
/**
* <p>
* Stores a resource policy for the ARN of a <code>Project</code> or <code>ReportGroup</code> object.
* </p>
*
* @param putResourcePolicyRequest
* @return Result of the PutResourcePolicy operation returned by the service.
* @throws ResourceNotFoundException
* The specified AWS resource cannot be found.
* @throws InvalidInputException
* The input value that was provided is not valid.
* @sample AWSCodeBuild.PutResourcePolicy
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/PutResourcePolicy" target="_top">AWS
* API Documentation</a>
*/
PutResourcePolicyResult putResourcePolicy(PutResourcePolicyRequest putResourcePolicyRequest);
/**
* <p>
* Starts running a build.
* </p>
*
* @param startBuildRequest
* @return Result of the StartBuild operation returned by the service.
* @throws InvalidInputException
* The input value that was provided is not valid.
* @throws ResourceNotFoundException
* The specified AWS resource cannot be found.
* @throws AccountLimitExceededException
* An AWS service limit was exceeded for the calling AWS account.
* @sample AWSCodeBuild.StartBuild
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/StartBuild" target="_top">AWS API
* Documentation</a>
*/
StartBuildResult startBuild(StartBuildRequest startBuildRequest);
/**
* <p>
* Attempts to stop running a build.
* </p>
*
* @param stopBuildRequest
* @return Result of the StopBuild operation returned by the service.
* @throws InvalidInputException
* The input value that was provided is not valid.
* @throws ResourceNotFoundException
* The specified AWS resource cannot be found.
* @sample AWSCodeBuild.StopBuild
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/StopBuild" target="_top">AWS API
* Documentation</a>
*/
StopBuildResult stopBuild(StopBuildRequest stopBuildRequest);
/**
* <p>
* Changes the settings of a build project.
* </p>
*
* @param updateProjectRequest
* @return Result of the UpdateProject operation returned by the service.
* @throws InvalidInputException
* The input value that was provided is not valid.
* @throws ResourceNotFoundException
* The specified AWS resource cannot be found.
* @sample AWSCodeBuild.UpdateProject
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/UpdateProject" target="_top">AWS API
* Documentation</a>
*/
UpdateProjectResult updateProject(UpdateProjectRequest updateProjectRequest);
/**
* <p>
* Updates a report group.
* </p>
*
* @param updateReportGroupRequest
* @return Result of the UpdateReportGroup operation returned by the service.
* @throws InvalidInputException
* The input value that was provided is not valid.
* @throws ResourceNotFoundException
* The specified AWS resource cannot be found.
* @sample AWSCodeBuild.UpdateReportGroup
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/UpdateReportGroup" target="_top">AWS
* API Documentation</a>
*/
UpdateReportGroupResult updateReportGroup(UpdateReportGroupRequest updateReportGroupRequest);
/**
* <p>
* Updates the webhook associated with an AWS CodeBuild build project.
* </p>
* <note>
* <p>
* If you use Bitbucket for your repository, <code>rotateSecret</code> is ignored.
* </p>
* </note>
*
* @param updateWebhookRequest
* @return Result of the UpdateWebhook operation returned by the service.
* @throws InvalidInputException
* The input value that was provided is not valid.
* @throws ResourceNotFoundException
* The specified AWS resource cannot be found.
* @throws OAuthProviderException
* There was a problem with the underlying OAuth provider.
* @sample AWSCodeBuild.UpdateWebhook
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/UpdateWebhook" target="_top">AWS API
* Documentation</a>
*/
UpdateWebhookResult updateWebhook(UpdateWebhookRequest updateWebhookRequest);
/**
* Shuts down this client object, releasing any resources that might be held open. This is an optional method, and
* callers are not expected to call it, but can if they want to explicitly release any open resources. Once a client
* has been shutdown, it should not be used to make any more requests.
*/
void shutdown();
/**
* Returns additional metadata for a previously executed successful request, typically used for debugging issues
* where a service isn't acting as expected. This data isn't considered part of the result data returned by an
* operation, so it's available through this separate, diagnostic interface.
* <p>
* Response metadata is only cached for a limited period of time, so if you need to access this extra diagnostic
* information for an executed request, you should use this method to retrieve it as soon as possible after
* executing a request.
*
* @param request
* The originally executed request.
*
* @return The response metadata for the specified request, or null if none is available.
*/
ResponseMetadata getCachedResponseMetadata(AmazonWebServiceRequest request);
}