@aws-sdk/client-codebuild 3.781.0 → 3.784.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.
Files changed (56) hide show
  1. package/README.md +72 -0
  2. package/dist-cjs/index.js +558 -1
  3. package/dist-es/CodeBuild.js +18 -0
  4. package/dist-es/commands/BatchGetCommandExecutionsCommand.js +23 -0
  5. package/dist-es/commands/BatchGetSandboxesCommand.js +22 -0
  6. package/dist-es/commands/ListCommandExecutionsForSandboxCommand.js +23 -0
  7. package/dist-es/commands/ListSandboxesCommand.js +22 -0
  8. package/dist-es/commands/ListSandboxesForProjectCommand.js +23 -0
  9. package/dist-es/commands/StartCommandExecutionCommand.js +23 -0
  10. package/dist-es/commands/StartSandboxCommand.js +23 -0
  11. package/dist-es/commands/StartSandboxConnectionCommand.js +22 -0
  12. package/dist-es/commands/StopSandboxCommand.js +22 -0
  13. package/dist-es/commands/index.js +9 -0
  14. package/dist-es/models/models_0.js +53 -0
  15. package/dist-es/pagination/ListCommandExecutionsForSandboxPaginator.js +4 -0
  16. package/dist-es/pagination/ListSandboxesForProjectPaginator.js +4 -0
  17. package/dist-es/pagination/ListSandboxesPaginator.js +4 -0
  18. package/dist-es/pagination/index.js +3 -0
  19. package/dist-es/protocols/Aws_json1_1.js +305 -1
  20. package/dist-types/CodeBuild.d.ts +65 -0
  21. package/dist-types/CodeBuildClient.d.ts +11 -2
  22. package/dist-types/commands/BatchGetCommandExecutionsCommand.d.ts +115 -0
  23. package/dist-types/commands/BatchGetSandboxesCommand.d.ts +248 -0
  24. package/dist-types/commands/ListCommandExecutionsForSandboxCommand.d.ts +116 -0
  25. package/dist-types/commands/ListSandboxesCommand.d.ts +80 -0
  26. package/dist-types/commands/ListSandboxesForProjectCommand.d.ts +84 -0
  27. package/dist-types/commands/StartCommandExecutionCommand.d.ts +112 -0
  28. package/dist-types/commands/StartSandboxCommand.d.ts +248 -0
  29. package/dist-types/commands/StartSandboxConnectionCommand.d.ts +82 -0
  30. package/dist-types/commands/StopSandboxCommand.d.ts +244 -0
  31. package/dist-types/commands/index.d.ts +9 -0
  32. package/dist-types/models/models_0.d.ts +639 -0
  33. package/dist-types/pagination/ListCommandExecutionsForSandboxPaginator.d.ts +7 -0
  34. package/dist-types/pagination/ListSandboxesForProjectPaginator.d.ts +7 -0
  35. package/dist-types/pagination/ListSandboxesPaginator.d.ts +7 -0
  36. package/dist-types/pagination/index.d.ts +3 -0
  37. package/dist-types/protocols/Aws_json1_1.d.ts +81 -0
  38. package/dist-types/ts3.4/CodeBuild.d.ts +155 -0
  39. package/dist-types/ts3.4/CodeBuildClient.d.ts +54 -0
  40. package/dist-types/ts3.4/commands/BatchGetCommandExecutionsCommand.d.ts +51 -0
  41. package/dist-types/ts3.4/commands/BatchGetSandboxesCommand.d.ts +50 -0
  42. package/dist-types/ts3.4/commands/ListCommandExecutionsForSandboxCommand.d.ts +51 -0
  43. package/dist-types/ts3.4/commands/ListSandboxesCommand.d.ts +47 -0
  44. package/dist-types/ts3.4/commands/ListSandboxesForProjectCommand.d.ts +51 -0
  45. package/dist-types/ts3.4/commands/StartCommandExecutionCommand.d.ts +51 -0
  46. package/dist-types/ts3.4/commands/StartSandboxCommand.d.ts +47 -0
  47. package/dist-types/ts3.4/commands/StartSandboxConnectionCommand.d.ts +51 -0
  48. package/dist-types/ts3.4/commands/StopSandboxCommand.d.ts +47 -0
  49. package/dist-types/ts3.4/commands/index.d.ts +9 -0
  50. package/dist-types/ts3.4/models/models_0.d.ts +167 -0
  51. package/dist-types/ts3.4/pagination/ListCommandExecutionsForSandboxPaginator.d.ts +11 -0
  52. package/dist-types/ts3.4/pagination/ListSandboxesForProjectPaginator.d.ts +11 -0
  53. package/dist-types/ts3.4/pagination/ListSandboxesPaginator.d.ts +11 -0
  54. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  55. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +108 -0
  56. package/package.json +5 -5
@@ -12,6 +12,18 @@ export declare class AccountLimitExceededException extends __BaseException {
12
12
  */
13
13
  constructor(opts: __ExceptionOptionType<AccountLimitExceededException, __BaseException>);
14
14
  }
15
+ /**
16
+ * <p>The CodeBuild access has been suspended for the calling Amazon Web Services account.</p>
17
+ * @public
18
+ */
19
+ export declare class AccountSuspendedException extends __BaseException {
20
+ readonly name: "AccountSuspendedException";
21
+ readonly $fault: "client";
22
+ /**
23
+ * @internal
24
+ */
25
+ constructor(opts: __ExceptionOptionType<AccountSuspendedException, __BaseException>);
26
+ }
15
27
  /**
16
28
  * @public
17
29
  * @enum
@@ -2534,6 +2546,118 @@ export interface BatchGetBuildsOutput {
2534
2546
  */
2535
2547
  buildsNotFound?: string[] | undefined;
2536
2548
  }
2549
+ /**
2550
+ * @public
2551
+ */
2552
+ export interface BatchGetCommandExecutionsInput {
2553
+ /**
2554
+ * <p>A <code>sandboxId</code> or <code>sandboxArn</code>.</p>
2555
+ * @public
2556
+ */
2557
+ sandboxId: string | undefined;
2558
+ /**
2559
+ * <p>A comma separated list of <code>commandExecutionIds</code>.</p>
2560
+ * @public
2561
+ */
2562
+ commandExecutionIds: string[] | undefined;
2563
+ }
2564
+ /**
2565
+ * @public
2566
+ * @enum
2567
+ */
2568
+ export declare const CommandType: {
2569
+ readonly SHELL: "SHELL";
2570
+ };
2571
+ /**
2572
+ * @public
2573
+ */
2574
+ export type CommandType = (typeof CommandType)[keyof typeof CommandType];
2575
+ /**
2576
+ * <p>Contains command execution information.</p>
2577
+ * @public
2578
+ */
2579
+ export interface CommandExecution {
2580
+ /**
2581
+ * <p>The ID of the command execution.</p>
2582
+ * @public
2583
+ */
2584
+ id?: string | undefined;
2585
+ /**
2586
+ * <p>A <code>sandboxId</code>.</p>
2587
+ * @public
2588
+ */
2589
+ sandboxId?: string | undefined;
2590
+ /**
2591
+ * <p>When the command execution process was initially submitted, expressed in Unix time format.</p>
2592
+ * @public
2593
+ */
2594
+ submitTime?: Date | undefined;
2595
+ /**
2596
+ * <p>When the command execution process started, expressed in Unix time format.</p>
2597
+ * @public
2598
+ */
2599
+ startTime?: Date | undefined;
2600
+ /**
2601
+ * <p>When the command execution process ended, expressed in Unix time format.</p>
2602
+ * @public
2603
+ */
2604
+ endTime?: Date | undefined;
2605
+ /**
2606
+ * <p>The status of the command execution.</p>
2607
+ * @public
2608
+ */
2609
+ status?: string | undefined;
2610
+ /**
2611
+ * <p>The command that needs to be executed.</p>
2612
+ * @public
2613
+ */
2614
+ command?: string | undefined;
2615
+ /**
2616
+ * <p>The command type.</p>
2617
+ * @public
2618
+ */
2619
+ type?: CommandType | undefined;
2620
+ /**
2621
+ * <p>The exit code to return upon completion.</p>
2622
+ * @public
2623
+ */
2624
+ exitCode?: string | undefined;
2625
+ /**
2626
+ * <p>The text written by the command to stdout.</p>
2627
+ * @public
2628
+ */
2629
+ standardOutputContent?: string | undefined;
2630
+ /**
2631
+ * <p>The text written by the command to stderr.</p>
2632
+ * @public
2633
+ */
2634
+ standardErrContent?: string | undefined;
2635
+ /**
2636
+ * <p>Information about build logs in CloudWatch Logs.</p>
2637
+ * @public
2638
+ */
2639
+ logs?: LogsLocation | undefined;
2640
+ /**
2641
+ * <p>A <code>sandboxArn</code>.</p>
2642
+ * @public
2643
+ */
2644
+ sandboxArn?: string | undefined;
2645
+ }
2646
+ /**
2647
+ * @public
2648
+ */
2649
+ export interface BatchGetCommandExecutionsOutput {
2650
+ /**
2651
+ * <p>Information about the requested command executions.</p>
2652
+ * @public
2653
+ */
2654
+ commandExecutions?: CommandExecution[] | undefined;
2655
+ /**
2656
+ * <p>The IDs of command executions for which information could not be found.</p>
2657
+ * @public
2658
+ */
2659
+ commandExecutionsNotFound?: string[] | undefined;
2660
+ }
2537
2661
  /**
2538
2662
  * @public
2539
2663
  */
@@ -4425,6 +4549,258 @@ export interface BatchGetReportsOutput {
4425
4549
  */
4426
4550
  reportsNotFound?: string[] | undefined;
4427
4551
  }
4552
+ /**
4553
+ * @public
4554
+ */
4555
+ export interface BatchGetSandboxesInput {
4556
+ /**
4557
+ * <p>A comma separated list of <code>sandboxIds</code> or <code>sandboxArns</code>.</p>
4558
+ * @public
4559
+ */
4560
+ ids: string[] | undefined;
4561
+ }
4562
+ /**
4563
+ * <p>Contains information about the sandbox phase.</p>
4564
+ * @public
4565
+ */
4566
+ export interface SandboxSessionPhase {
4567
+ /**
4568
+ * <p>The name of the sandbox phase.</p>
4569
+ * @public
4570
+ */
4571
+ phaseType?: string | undefined;
4572
+ /**
4573
+ * <p>The current status of the sandbox phase. Valid values include:</p>
4574
+ * <dl>
4575
+ * <dt>FAILED</dt>
4576
+ * <dd>
4577
+ * <p>The sandbox phase failed.</p>
4578
+ * </dd>
4579
+ * <dt>FAULT</dt>
4580
+ * <dd>
4581
+ * <p>The sandbox phase faulted.</p>
4582
+ * </dd>
4583
+ * <dt>IN_PROGRESS</dt>
4584
+ * <dd>
4585
+ * <p>The sandbox phase is still in progress.</p>
4586
+ * </dd>
4587
+ * <dt>STOPPED</dt>
4588
+ * <dd>
4589
+ * <p>The sandbox phase stopped.</p>
4590
+ * </dd>
4591
+ * <dt>SUCCEEDED</dt>
4592
+ * <dd>
4593
+ * <p>The sandbox phase succeeded.</p>
4594
+ * </dd>
4595
+ * <dt>TIMED_OUT</dt>
4596
+ * <dd>
4597
+ * <p>The sandbox phase timed out.</p>
4598
+ * </dd>
4599
+ * </dl>
4600
+ * @public
4601
+ */
4602
+ phaseStatus?: StatusType | undefined;
4603
+ /**
4604
+ * <p>When the sandbox phase started, expressed in Unix time format.</p>
4605
+ * @public
4606
+ */
4607
+ startTime?: Date | undefined;
4608
+ /**
4609
+ * <p>When the sandbox phase ended, expressed in Unix time format.</p>
4610
+ * @public
4611
+ */
4612
+ endTime?: Date | undefined;
4613
+ /**
4614
+ * <p>How long, in seconds, between the starting and ending times of the sandbox's
4615
+ * phase.</p>
4616
+ * @public
4617
+ */
4618
+ durationInSeconds?: number | undefined;
4619
+ /**
4620
+ * <p> An array of <code>PhaseContext</code> objects. </p>
4621
+ * @public
4622
+ */
4623
+ contexts?: PhaseContext[] | undefined;
4624
+ }
4625
+ /**
4626
+ * <p>Contains information about the sandbox session.</p>
4627
+ * @public
4628
+ */
4629
+ export interface SandboxSession {
4630
+ /**
4631
+ * <p>The ID of the sandbox session.</p>
4632
+ * @public
4633
+ */
4634
+ id?: string | undefined;
4635
+ /**
4636
+ * <p>The status of the sandbox session.</p>
4637
+ * @public
4638
+ */
4639
+ status?: string | undefined;
4640
+ /**
4641
+ * <p>When the sandbox session started, expressed in Unix time format.</p>
4642
+ * @public
4643
+ */
4644
+ startTime?: Date | undefined;
4645
+ /**
4646
+ * <p>When the sandbox session ended, expressed in Unix time format.</p>
4647
+ * @public
4648
+ */
4649
+ endTime?: Date | undefined;
4650
+ /**
4651
+ * <p>The current phase for the sandbox.</p>
4652
+ * @public
4653
+ */
4654
+ currentPhase?: string | undefined;
4655
+ /**
4656
+ * <p> An array of <code>SandboxSessionPhase</code> objects. </p>
4657
+ * @public
4658
+ */
4659
+ phases?: SandboxSessionPhase[] | undefined;
4660
+ /**
4661
+ * <p>An identifier for the version of this sandbox's source code.</p>
4662
+ * @public
4663
+ */
4664
+ resolvedSourceVersion?: string | undefined;
4665
+ /**
4666
+ * <p>Information about build logs in CloudWatch Logs.</p>
4667
+ * @public
4668
+ */
4669
+ logs?: LogsLocation | undefined;
4670
+ /**
4671
+ * <p>Describes a network interface.</p>
4672
+ * @public
4673
+ */
4674
+ networkInterface?: NetworkInterface | undefined;
4675
+ }
4676
+ /**
4677
+ * <p>Contains sandbox information.</p>
4678
+ * @public
4679
+ */
4680
+ export interface Sandbox {
4681
+ /**
4682
+ * <p>The ID of the sandbox.</p>
4683
+ * @public
4684
+ */
4685
+ id?: string | undefined;
4686
+ /**
4687
+ * <p>The ARN of the sandbox.</p>
4688
+ * @public
4689
+ */
4690
+ arn?: string | undefined;
4691
+ /**
4692
+ * <p>The CodeBuild project name.</p>
4693
+ * @public
4694
+ */
4695
+ projectName?: string | undefined;
4696
+ /**
4697
+ * <p>When the sandbox process was initially requested, expressed in Unix time format.</p>
4698
+ * @public
4699
+ */
4700
+ requestTime?: Date | undefined;
4701
+ /**
4702
+ * <p>When the sandbox process started, expressed in Unix time format.</p>
4703
+ * @public
4704
+ */
4705
+ startTime?: Date | undefined;
4706
+ /**
4707
+ * <p>When the sandbox process ended, expressed in Unix time format.</p>
4708
+ * @public
4709
+ */
4710
+ endTime?: Date | undefined;
4711
+ /**
4712
+ * <p>The status of the sandbox.</p>
4713
+ * @public
4714
+ */
4715
+ status?: string | undefined;
4716
+ /**
4717
+ * <p>Information about the build input source code for the build project.</p>
4718
+ * @public
4719
+ */
4720
+ source?: ProjectSource | undefined;
4721
+ /**
4722
+ * <p>Any version identifier for the version of the sandbox to be built.</p>
4723
+ * @public
4724
+ */
4725
+ sourceVersion?: string | undefined;
4726
+ /**
4727
+ * <p> An array of <code>ProjectSource</code> objects. </p>
4728
+ * @public
4729
+ */
4730
+ secondarySources?: ProjectSource[] | undefined;
4731
+ /**
4732
+ * <p> An array of <code>ProjectSourceVersion</code> objects.</p>
4733
+ * @public
4734
+ */
4735
+ secondarySourceVersions?: ProjectSourceVersion[] | undefined;
4736
+ /**
4737
+ * <p>Information about the build environment of the build project.</p>
4738
+ * @public
4739
+ */
4740
+ environment?: ProjectEnvironment | undefined;
4741
+ /**
4742
+ * <p>
4743
+ * An array of <code>ProjectFileSystemLocation</code> objects for a CodeBuild build project. A <code>ProjectFileSystemLocation</code> object
4744
+ * specifies the <code>identifier</code>, <code>location</code>, <code>mountOptions</code>,
4745
+ * <code>mountPoint</code>, and <code>type</code> of a file system created using Amazon Elastic File System.
4746
+ * </p>
4747
+ * @public
4748
+ */
4749
+ fileSystemLocations?: ProjectFileSystemLocation[] | undefined;
4750
+ /**
4751
+ * <p>How long, in minutes, from 5 to 2160 (36 hours), for CodeBuild to wait before timing out this sandbox if it does not
4752
+ * get marked as completed.</p>
4753
+ * @public
4754
+ */
4755
+ timeoutInMinutes?: number | undefined;
4756
+ /**
4757
+ * <p>The number of minutes a sandbox is allowed to be queued before it times out. </p>
4758
+ * @public
4759
+ */
4760
+ queuedTimeoutInMinutes?: number | undefined;
4761
+ /**
4762
+ * <p>Information about the VPC configuration that CodeBuild accesses.</p>
4763
+ * @public
4764
+ */
4765
+ vpcConfig?: VpcConfig | undefined;
4766
+ /**
4767
+ * <p> Information about logs for a build project. These can be logs in CloudWatch Logs, built in a
4768
+ * specified S3 bucket, or both. </p>
4769
+ * @public
4770
+ */
4771
+ logConfig?: LogsConfig | undefined;
4772
+ /**
4773
+ * <p>The Key Management Service customer master key (CMK) to be used for encrypting the sandbox output
4774
+ * artifacts.</p>
4775
+ * @public
4776
+ */
4777
+ encryptionKey?: string | undefined;
4778
+ /**
4779
+ * <p>The name of a service role used for this sandbox.</p>
4780
+ * @public
4781
+ */
4782
+ serviceRole?: string | undefined;
4783
+ /**
4784
+ * <p>The current session for the sandbox.</p>
4785
+ * @public
4786
+ */
4787
+ currentSession?: SandboxSession | undefined;
4788
+ }
4789
+ /**
4790
+ * @public
4791
+ */
4792
+ export interface BatchGetSandboxesOutput {
4793
+ /**
4794
+ * <p>Information about the requested sandboxes.</p>
4795
+ * @public
4796
+ */
4797
+ sandboxes?: Sandbox[] | undefined;
4798
+ /**
4799
+ * <p>The IDs of sandboxes for which information could not be found.</p>
4800
+ * @public
4801
+ */
4802
+ sandboxesNotFound?: string[] | undefined;
4803
+ }
4428
4804
  /**
4429
4805
  * <p>Specifies filters when retrieving batch builds.</p>
4430
4806
  * @public
@@ -5998,6 +6374,46 @@ export interface ListBuildsForProjectOutput {
5998
6374
  */
5999
6375
  nextToken?: string | undefined;
6000
6376
  }
6377
+ /**
6378
+ * @public
6379
+ */
6380
+ export interface ListCommandExecutionsForSandboxInput {
6381
+ /**
6382
+ * <p>A <code>sandboxId</code> or <code>sandboxArn</code>.</p>
6383
+ * @public
6384
+ */
6385
+ sandboxId: string | undefined;
6386
+ /**
6387
+ * <p>The maximum number of sandbox records to be retrieved.</p>
6388
+ * @public
6389
+ */
6390
+ maxResults?: number | undefined;
6391
+ /**
6392
+ * <p>The order in which sandbox records should be retrieved.</p>
6393
+ * @public
6394
+ */
6395
+ sortOrder?: SortOrderType | undefined;
6396
+ /**
6397
+ * <p>The next token, if any, to get paginated results. You will get this value from previous execution of list sandboxes.</p>
6398
+ * @public
6399
+ */
6400
+ nextToken?: string | undefined;
6401
+ }
6402
+ /**
6403
+ * @public
6404
+ */
6405
+ export interface ListCommandExecutionsForSandboxOutput {
6406
+ /**
6407
+ * <p>Information about the requested command executions.</p>
6408
+ * @public
6409
+ */
6410
+ commandExecutions?: CommandExecution[] | undefined;
6411
+ /**
6412
+ * <p>Information about the next token to get paginated results.</p>
6413
+ * @public
6414
+ */
6415
+ nextToken?: string | undefined;
6416
+ }
6001
6417
  /**
6002
6418
  * @public
6003
6419
  */
@@ -6526,6 +6942,81 @@ export interface ListReportsForReportGroupOutput {
6526
6942
  */
6527
6943
  reports?: string[] | undefined;
6528
6944
  }
6945
+ /**
6946
+ * @public
6947
+ */
6948
+ export interface ListSandboxesInput {
6949
+ /**
6950
+ * <p>The maximum number of sandbox records to be retrieved.</p>
6951
+ * @public
6952
+ */
6953
+ maxResults?: number | undefined;
6954
+ /**
6955
+ * <p>The order in which sandbox records should be retrieved.</p>
6956
+ * @public
6957
+ */
6958
+ sortOrder?: SortOrderType | undefined;
6959
+ /**
6960
+ * <p>The next token, if any, to get paginated results. You will get this value from previous execution of list sandboxes.</p>
6961
+ * @public
6962
+ */
6963
+ nextToken?: string | undefined;
6964
+ }
6965
+ /**
6966
+ * @public
6967
+ */
6968
+ export interface ListSandboxesOutput {
6969
+ /**
6970
+ * <p>Information about the requested sandbox IDs.</p>
6971
+ * @public
6972
+ */
6973
+ ids?: string[] | undefined;
6974
+ /**
6975
+ * <p>Information about the next token to get paginated results.</p>
6976
+ * @public
6977
+ */
6978
+ nextToken?: string | undefined;
6979
+ }
6980
+ /**
6981
+ * @public
6982
+ */
6983
+ export interface ListSandboxesForProjectInput {
6984
+ /**
6985
+ * <p>The CodeBuild project name.</p>
6986
+ * @public
6987
+ */
6988
+ projectName: string | undefined;
6989
+ /**
6990
+ * <p>The maximum number of sandbox records to be retrieved.</p>
6991
+ * @public
6992
+ */
6993
+ maxResults?: number | undefined;
6994
+ /**
6995
+ * <p>The order in which sandbox records should be retrieved.</p>
6996
+ * @public
6997
+ */
6998
+ sortOrder?: SortOrderType | undefined;
6999
+ /**
7000
+ * <p>The next token, if any, to get paginated results. You will get this value from previous execution of list sandboxes.</p>
7001
+ * @public
7002
+ */
7003
+ nextToken?: string | undefined;
7004
+ }
7005
+ /**
7006
+ * @public
7007
+ */
7008
+ export interface ListSandboxesForProjectOutput {
7009
+ /**
7010
+ * <p>Information about the requested sandbox IDs.</p>
7011
+ * @public
7012
+ */
7013
+ ids?: string[] | undefined;
7014
+ /**
7015
+ * <p>Information about the next token to get paginated results.</p>
7016
+ * @public
7017
+ */
7018
+ nextToken?: string | undefined;
7019
+ }
6529
7020
  /**
6530
7021
  * @public
6531
7022
  * @enum
@@ -7397,6 +7888,102 @@ export interface StartBuildBatchOutput {
7397
7888
  */
7398
7889
  buildBatch?: BuildBatch | undefined;
7399
7890
  }
7891
+ /**
7892
+ * @public
7893
+ */
7894
+ export interface StartCommandExecutionInput {
7895
+ /**
7896
+ * <p>A <code>sandboxId</code> or <code>sandboxArn</code>.</p>
7897
+ * @public
7898
+ */
7899
+ sandboxId: string | undefined;
7900
+ /**
7901
+ * <p>The command that needs to be executed.</p>
7902
+ * @public
7903
+ */
7904
+ command: string | undefined;
7905
+ /**
7906
+ * <p>The command type.</p>
7907
+ * @public
7908
+ */
7909
+ type?: CommandType | undefined;
7910
+ }
7911
+ /**
7912
+ * @public
7913
+ */
7914
+ export interface StartCommandExecutionOutput {
7915
+ /**
7916
+ * <p>Information about the requested command executions.</p>
7917
+ * @public
7918
+ */
7919
+ commandExecution?: CommandExecution | undefined;
7920
+ }
7921
+ /**
7922
+ * @public
7923
+ */
7924
+ export interface StartSandboxInput {
7925
+ /**
7926
+ * <p>The CodeBuild project name.</p>
7927
+ * @public
7928
+ */
7929
+ projectName?: string | undefined;
7930
+ /**
7931
+ * <p>A unique client token.</p>
7932
+ * @public
7933
+ */
7934
+ idempotencyToken?: string | undefined;
7935
+ }
7936
+ /**
7937
+ * @public
7938
+ */
7939
+ export interface StartSandboxOutput {
7940
+ /**
7941
+ * <p>Information about the requested sandbox.</p>
7942
+ * @public
7943
+ */
7944
+ sandbox?: Sandbox | undefined;
7945
+ }
7946
+ /**
7947
+ * @public
7948
+ */
7949
+ export interface StartSandboxConnectionInput {
7950
+ /**
7951
+ * <p>A <code>sandboxId</code> or <code>sandboxArn</code>.</p>
7952
+ * @public
7953
+ */
7954
+ sandboxId: string | undefined;
7955
+ }
7956
+ /**
7957
+ * <p>Contains information about the Session Manager session.</p>
7958
+ * @public
7959
+ */
7960
+ export interface SSMSession {
7961
+ /**
7962
+ * <p>The ID of the session.</p>
7963
+ * @public
7964
+ */
7965
+ sessionId?: string | undefined;
7966
+ /**
7967
+ * <p>An encrypted token value containing session and caller information.</p>
7968
+ * @public
7969
+ */
7970
+ tokenValue?: string | undefined;
7971
+ /**
7972
+ * <p>A URL back to SSM Agent on the managed node that the Session Manager client uses to send commands and receive output from the node.</p>
7973
+ * @public
7974
+ */
7975
+ streamUrl?: string | undefined;
7976
+ }
7977
+ /**
7978
+ * @public
7979
+ */
7980
+ export interface StartSandboxConnectionOutput {
7981
+ /**
7982
+ * <p>Information about the Session Manager session.</p>
7983
+ * @public
7984
+ */
7985
+ ssmSession?: SSMSession | undefined;
7986
+ }
7400
7987
  /**
7401
7988
  * @public
7402
7989
  */
@@ -7437,6 +8024,26 @@ export interface StopBuildBatchOutput {
7437
8024
  */
7438
8025
  buildBatch?: BuildBatch | undefined;
7439
8026
  }
8027
+ /**
8028
+ * @public
8029
+ */
8030
+ export interface StopSandboxInput {
8031
+ /**
8032
+ * <p>Information about the requested sandbox ID.</p>
8033
+ * @public
8034
+ */
8035
+ id: string | undefined;
8036
+ }
8037
+ /**
8038
+ * @public
8039
+ */
8040
+ export interface StopSandboxOutput {
8041
+ /**
8042
+ * <p>Information about the requested sandbox.</p>
8043
+ * @public
8044
+ */
8045
+ sandbox?: Sandbox | undefined;
8046
+ }
7440
8047
  /**
7441
8048
  * @public
7442
8049
  */
@@ -8050,11 +8657,43 @@ export interface UpdateWebhookOutput {
8050
8657
  */
8051
8658
  webhook?: Webhook | undefined;
8052
8659
  }
8660
+ /**
8661
+ * @internal
8662
+ */
8663
+ export declare const CommandExecutionFilterSensitiveLog: (obj: CommandExecution) => any;
8664
+ /**
8665
+ * @internal
8666
+ */
8667
+ export declare const BatchGetCommandExecutionsOutputFilterSensitiveLog: (obj: BatchGetCommandExecutionsOutput) => any;
8053
8668
  /**
8054
8669
  * @internal
8055
8670
  */
8056
8671
  export declare const ImportSourceCredentialsInputFilterSensitiveLog: (obj: ImportSourceCredentialsInput) => any;
8672
+ /**
8673
+ * @internal
8674
+ */
8675
+ export declare const ListCommandExecutionsForSandboxInputFilterSensitiveLog: (obj: ListCommandExecutionsForSandboxInput) => any;
8676
+ /**
8677
+ * @internal
8678
+ */
8679
+ export declare const ListCommandExecutionsForSandboxOutputFilterSensitiveLog: (obj: ListCommandExecutionsForSandboxOutput) => any;
8057
8680
  /**
8058
8681
  * @internal
8059
8682
  */
8060
8683
  export declare const ListFleetsInputFilterSensitiveLog: (obj: ListFleetsInput) => any;
8684
+ /**
8685
+ * @internal
8686
+ */
8687
+ export declare const ListSandboxesForProjectInputFilterSensitiveLog: (obj: ListSandboxesForProjectInput) => any;
8688
+ /**
8689
+ * @internal
8690
+ */
8691
+ export declare const StartCommandExecutionInputFilterSensitiveLog: (obj: StartCommandExecutionInput) => any;
8692
+ /**
8693
+ * @internal
8694
+ */
8695
+ export declare const StartCommandExecutionOutputFilterSensitiveLog: (obj: StartCommandExecutionOutput) => any;
8696
+ /**
8697
+ * @internal
8698
+ */
8699
+ export declare const StartSandboxInputFilterSensitiveLog: (obj: StartSandboxInput) => any;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListCommandExecutionsForSandboxCommandInput, ListCommandExecutionsForSandboxCommandOutput } from "../commands/ListCommandExecutionsForSandboxCommand";
3
+ import { CodeBuildPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListCommandExecutionsForSandbox: (config: CodeBuildPaginationConfiguration, input: ListCommandExecutionsForSandboxCommandInput, ...rest: any[]) => Paginator<ListCommandExecutionsForSandboxCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListSandboxesForProjectCommandInput, ListSandboxesForProjectCommandOutput } from "../commands/ListSandboxesForProjectCommand";
3
+ import { CodeBuildPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListSandboxesForProject: (config: CodeBuildPaginationConfiguration, input: ListSandboxesForProjectCommandInput, ...rest: any[]) => Paginator<ListSandboxesForProjectCommandOutput>;