|
95 | 95 | ],
|
96 | 96 | "documentation":"<p>Deletes a build project.</p>"
|
97 | 97 | },
|
| 98 | + "DeleteSourceCredentials":{ |
| 99 | + "name":"DeleteSourceCredentials", |
| 100 | + "http":{ |
| 101 | + "method":"POST", |
| 102 | + "requestUri":"/" |
| 103 | + }, |
| 104 | + "input":{"shape":"DeleteSourceCredentialsInput"}, |
| 105 | + "output":{"shape":"DeleteSourceCredentialsOutput"}, |
| 106 | + "errors":[ |
| 107 | + {"shape":"InvalidInputException"}, |
| 108 | + {"shape":"ResourceNotFoundException"} |
| 109 | + ], |
| 110 | + "documentation":"<p> Deletes a set of GitHub, GitHub Enterprise, or Bitbucket source credentials. </p>" |
| 111 | + }, |
98 | 112 | "DeleteWebhook":{
|
99 | 113 | "name":"DeleteWebhook",
|
100 | 114 | "http":{
|
|
110 | 124 | ],
|
111 | 125 | "documentation":"<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>"
|
112 | 126 | },
|
| 127 | + "ImportSourceCredentials":{ |
| 128 | + "name":"ImportSourceCredentials", |
| 129 | + "http":{ |
| 130 | + "method":"POST", |
| 131 | + "requestUri":"/" |
| 132 | + }, |
| 133 | + "input":{"shape":"ImportSourceCredentialsInput"}, |
| 134 | + "output":{"shape":"ImportSourceCredentialsOutput"}, |
| 135 | + "errors":[ |
| 136 | + {"shape":"InvalidInputException"}, |
| 137 | + {"shape":"AccountLimitExceededException"} |
| 138 | + ], |
| 139 | + "documentation":"<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>" |
| 140 | + }, |
113 | 141 | "InvalidateProjectCache":{
|
114 | 142 | "name":"InvalidateProjectCache",
|
115 | 143 | "http":{
|
|
174 | 202 | ],
|
175 | 203 | "documentation":"<p>Gets a list of build project names, with each build project name representing a single build project.</p>"
|
176 | 204 | },
|
| 205 | + "ListSourceCredentials":{ |
| 206 | + "name":"ListSourceCredentials", |
| 207 | + "http":{ |
| 208 | + "method":"POST", |
| 209 | + "requestUri":"/" |
| 210 | + }, |
| 211 | + "input":{"shape":"ListSourceCredentialsInput"}, |
| 212 | + "output":{"shape":"ListSourceCredentialsOutput"}, |
| 213 | + "documentation":"<p> Returns a list of <code>SourceCredentialsInfo</code> objects. </p>" |
| 214 | + }, |
177 | 215 | "StartBuild":{
|
178 | 216 | "name":"StartBuild",
|
179 | 217 | "http":{
|
|
263 | 301 | "NO_ARTIFACTS"
|
264 | 302 | ]
|
265 | 303 | },
|
| 304 | + "AuthType":{ |
| 305 | + "type":"string", |
| 306 | + "enum":[ |
| 307 | + "OAUTH", |
| 308 | + "BASIC_AUTH", |
| 309 | + "PERSONAL_ACCESS_TOKEN" |
| 310 | + ] |
| 311 | + }, |
266 | 312 | "BatchDeleteBuildsInput":{
|
267 | 313 | "type":"structure",
|
268 | 314 | "required":["ids"],
|
|
714 | 760 | "members":{
|
715 | 761 | }
|
716 | 762 | },
|
| 763 | + "DeleteSourceCredentialsInput":{ |
| 764 | + "type":"structure", |
| 765 | + "required":["arn"], |
| 766 | + "members":{ |
| 767 | + "arn":{ |
| 768 | + "shape":"NonEmptyString", |
| 769 | + "documentation":"<p> The Amazon Resource Name (ARN) of the token.</p>" |
| 770 | + } |
| 771 | + } |
| 772 | + }, |
| 773 | + "DeleteSourceCredentialsOutput":{ |
| 774 | + "type":"structure", |
| 775 | + "members":{ |
| 776 | + "arn":{ |
| 777 | + "shape":"NonEmptyString", |
| 778 | + "documentation":"<p> The Amazon Resource Name (ARN) of the token. </p>" |
| 779 | + } |
| 780 | + } |
| 781 | + }, |
717 | 782 | "DeleteWebhookInput":{
|
718 | 783 | "type":"structure",
|
719 | 784 | "required":["projectName"],
|
|
835 | 900 | "type":"list",
|
836 | 901 | "member":{"shape":"String"}
|
837 | 902 | },
|
| 903 | + "ImportSourceCredentialsInput":{ |
| 904 | + "type":"structure", |
| 905 | + "required":[ |
| 906 | + "token", |
| 907 | + "serverType", |
| 908 | + "authType" |
| 909 | + ], |
| 910 | + "members":{ |
| 911 | + "username":{ |
| 912 | + "shape":"NonEmptyString", |
| 913 | + "documentation":"<p> The Bitbucket username when the <code>authType</code> is BASIC_AUTH. This parameter is not valid for other types of source providers or connections. </p>" |
| 914 | + }, |
| 915 | + "token":{ |
| 916 | + "shape":"SensitiveNonEmptyString", |
| 917 | + "documentation":"<p> For GitHub or GitHub Enterprise, this is the personal access token. For Bitbucket, this is the app password. </p>" |
| 918 | + }, |
| 919 | + "serverType":{ |
| 920 | + "shape":"ServerType", |
| 921 | + "documentation":"<p> The source provider used for this project. </p>" |
| 922 | + }, |
| 923 | + "authType":{ |
| 924 | + "shape":"AuthType", |
| 925 | + "documentation":"<p> The type of authentication used to connect to a GitHub, GitHub Enterprise, or Bitbucket repository. An OAUTH connection is not supported by the API and must be created using the AWS CodeBuild console. </p>" |
| 926 | + } |
| 927 | + } |
| 928 | + }, |
| 929 | + "ImportSourceCredentialsOutput":{ |
| 930 | + "type":"structure", |
| 931 | + "members":{ |
| 932 | + "arn":{ |
| 933 | + "shape":"NonEmptyString", |
| 934 | + "documentation":"<p> The Amazon Resource Name (ARN) of the token. </p>" |
| 935 | + } |
| 936 | + } |
| 937 | + }, |
838 | 938 | "InvalidInputException":{
|
839 | 939 | "type":"structure",
|
840 | 940 | "members":{
|
|
979 | 1079 | }
|
980 | 1080 | }
|
981 | 1081 | },
|
| 1082 | + "ListSourceCredentialsInput":{ |
| 1083 | + "type":"structure", |
| 1084 | + "members":{ |
| 1085 | + } |
| 1086 | + }, |
| 1087 | + "ListSourceCredentialsOutput":{ |
| 1088 | + "type":"structure", |
| 1089 | + "members":{ |
| 1090 | + "sourceCredentialsInfos":{ |
| 1091 | + "shape":"SourceCredentialsInfos", |
| 1092 | + "documentation":"<p> 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>" |
| 1093 | + } |
| 1094 | + } |
| 1095 | + }, |
982 | 1096 | "LogsConfig":{
|
983 | 1097 | "type":"structure",
|
984 | 1098 | "members":{
|
|
1334 | 1448 | },
|
1335 | 1449 | "auth":{
|
1336 | 1450 | "shape":"SourceAuth",
|
1337 |
| - "documentation":"<p>Information about the authorization settings for AWS CodeBuild to access the source code to be built.</p> <p>This information is for the AWS CodeBuild console's use only. Your code should not get or set this information directly (unless the build project's source <code>type</code> value is <code>BITBUCKET</code> or <code>GITHUB</code>).</p>" |
| 1451 | + "documentation":"<p>Information about the authorization settings for AWS CodeBuild to access the source code to be built.</p> <p>This information is for the AWS CodeBuild console's use only. Your code should not get or set this information directly.</p>" |
1338 | 1452 | },
|
1339 | 1453 | "reportBuildStatus":{
|
1340 | 1454 | "shape":"WrapperBoolean",
|
|
1413 | 1527 | "member":{"shape":"NonEmptyString"},
|
1414 | 1528 | "max":5
|
1415 | 1529 | },
|
| 1530 | + "SensitiveNonEmptyString":{ |
| 1531 | + "type":"string", |
| 1532 | + "min":1, |
| 1533 | + "sensitive":true |
| 1534 | + }, |
| 1535 | + "ServerType":{ |
| 1536 | + "type":"string", |
| 1537 | + "enum":[ |
| 1538 | + "GITHUB", |
| 1539 | + "BITBUCKET", |
| 1540 | + "GITHUB_ENTERPRISE" |
| 1541 | + ] |
| 1542 | + }, |
1416 | 1543 | "SortOrderType":{
|
1417 | 1544 | "type":"string",
|
1418 | 1545 | "enum":[
|
|
1426 | 1553 | "members":{
|
1427 | 1554 | "type":{
|
1428 | 1555 | "shape":"SourceAuthType",
|
1429 |
| - "documentation":"<p>The authorization type to use. The only valid value is <code>OAUTH</code>, which represents the OAuth authorization type.</p>" |
| 1556 | + "documentation":"<note> <p> This data type is deprecated and is no longer accurate or used. </p> </note> <p>The authorization type to use. The only valid value is <code>OAUTH</code>, which represents the OAuth authorization type.</p>" |
1430 | 1557 | },
|
1431 | 1558 | "resource":{
|
1432 | 1559 | "shape":"String",
|
1433 | 1560 | "documentation":"<p>The resource value that applies to the specified authorization type.</p>"
|
1434 | 1561 | }
|
1435 | 1562 | },
|
1436 |
| - "documentation":"<p>Information about the authorization settings for AWS CodeBuild to access the source code to be built.</p> <p>This information is for the AWS CodeBuild console's use only. Your code should not get or set this information directly (unless the build project's source <code>type</code> value is <code>BITBUCKET</code> or <code>GITHUB</code>).</p>" |
| 1563 | + "documentation":"<p>Information about the authorization settings for AWS CodeBuild to access the source code to be built.</p> <p>This information is for the AWS CodeBuild console's use only. Your code should not get or set this information directly.</p>" |
1437 | 1564 | },
|
1438 | 1565 | "SourceAuthType":{
|
1439 | 1566 | "type":"string",
|
1440 | 1567 | "enum":["OAUTH"]
|
1441 | 1568 | },
|
| 1569 | + "SourceCredentialsInfo":{ |
| 1570 | + "type":"structure", |
| 1571 | + "members":{ |
| 1572 | + "arn":{ |
| 1573 | + "shape":"NonEmptyString", |
| 1574 | + "documentation":"<p> The Amazon Resource Name (ARN) of the token. </p>" |
| 1575 | + }, |
| 1576 | + "serverType":{ |
| 1577 | + "shape":"ServerType", |
| 1578 | + "documentation":"<p> The type of source provider. The valid options are GITHUB, GITHUB_ENTERPRISE, or BITBUCKET. </p>" |
| 1579 | + }, |
| 1580 | + "authType":{ |
| 1581 | + "shape":"AuthType", |
| 1582 | + "documentation":"<p> The type of authentication used by the credentials. Valid options are OAUTH, BASIC_AUTH, or PERSONAL_ACCESS_TOKEN. </p>" |
| 1583 | + } |
| 1584 | + }, |
| 1585 | + "documentation":"<p> Information about the credentials for a GitHub, GitHub Enterprise, or Bitbucket repository. </p>" |
| 1586 | + }, |
| 1587 | + "SourceCredentialsInfos":{ |
| 1588 | + "type":"list", |
| 1589 | + "member":{"shape":"SourceCredentialsInfo"} |
| 1590 | + }, |
1442 | 1591 | "SourceType":{
|
1443 | 1592 | "type":"string",
|
1444 | 1593 | "enum":[
|
|
1788 | 1937 | "WrapperInt":{"type":"integer"},
|
1789 | 1938 | "WrapperLong":{"type":"long"}
|
1790 | 1939 | },
|
1791 |
| - "documentation":"<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>AWS CodeBuild User Guide</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>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>CreateProject</code>: Creates a build project.</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>UpdateWebhook</code>: Changes the settings of an existing webhook.</p> </li> <li> <p> <code>DeleteProject</code>: Deletes a build project.</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>ListProjects</code>: Gets a list of build project names, with each build project name representing a single build project.</p> </li> <li> <p> <code>UpdateProject</code>: Changes the settings of an existing build project.</p> </li> <li> <p> <code>BatchGetBuilds</code>: Gets information about one or more builds.</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>StartBuild</code>: Starts running a build.</p> </li> <li> <p> <code>StopBuild</code>: Attempts to stop running a build.</p> </li> <li> <p> <code>ListCuratedEnvironmentImages</code>: Gets information about Docker images that are managed by AWS CodeBuild.</p> </li> </ul>" |
| 1940 | + "documentation":"<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>AWS CodeBuild User Guide</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>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>CreateProject</code>: Creates a build project.</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>UpdateWebhook</code>: Changes the settings of an existing webhook.</p> </li> <li> <p> <code>DeleteProject</code>: Deletes a build project.</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>ListProjects</code>: Gets a list of build project names, with each build project name representing a single build project.</p> </li> <li> <p> <code>UpdateProject</code>: Changes the settings of an existing build project.</p> </li> <li> <p> <code>BatchGetBuilds</code>: Gets information about one or more builds.</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>StartBuild</code>: Starts running a build.</p> </li> <li> <p> <code>StopBuild</code>: Attempts to stop running a build.</p> </li> <li> <p> <code>ListCuratedEnvironmentImages</code>: Gets information about Docker images that are managed by AWS CodeBuild.</p> </li> <li> <p> <code>DeleteSourceCredentials</code>: Deletes a set of GitHub, GitHub Enterprise, or Bitbucket source credentials.</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>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> </ul>" |
1792 | 1941 | }
|
0 commit comments