|
264 | 264 | ],
|
265 | 265 | "documentation":"<p>Lists all personal access tokens (PATs) associated with the user who calls the API. You can only list PATs associated with your Amazon Web Services Builder ID.</p>"
|
266 | 266 | },
|
| 267 | + "ListDevEnvironmentSessions":{ |
| 268 | + "name":"ListDevEnvironmentSessions", |
| 269 | + "http":{ |
| 270 | + "method":"POST", |
| 271 | + "requestUri":"/v1/spaces/{spaceName}/projects/{projectName}/devEnvironments/{devEnvironmentId}/sessions", |
| 272 | + "responseCode":200 |
| 273 | + }, |
| 274 | + "input":{"shape":"ListDevEnvironmentSessionsRequest"}, |
| 275 | + "output":{"shape":"ListDevEnvironmentSessionsResponse"}, |
| 276 | + "errors":[ |
| 277 | + {"shape":"ThrottlingException"}, |
| 278 | + {"shape":"ConflictException"}, |
| 279 | + {"shape":"ValidationException"}, |
| 280 | + {"shape":"ServiceQuotaExceededException"}, |
| 281 | + {"shape":"ResourceNotFoundException"}, |
| 282 | + {"shape":"AccessDeniedException"} |
| 283 | + ], |
| 284 | + "documentation":"<p>Retrieves a list of active sessions for a Dev Environment in a project.</p>" |
| 285 | + }, |
267 | 286 | "ListDevEnvironments":{
|
268 | 287 | "name":"ListDevEnvironments",
|
269 | 288 | "http":{
|
|
929 | 948 | },
|
930 | 949 | "documentation":"<p>Information about the configuration of a Dev Environment session.</p>"
|
931 | 950 | },
|
| 951 | + "DevEnvironmentSessionSummary":{ |
| 952 | + "type":"structure", |
| 953 | + "required":[ |
| 954 | + "spaceName", |
| 955 | + "projectName", |
| 956 | + "devEnvironmentId", |
| 957 | + "startedTime", |
| 958 | + "id" |
| 959 | + ], |
| 960 | + "members":{ |
| 961 | + "spaceName":{ |
| 962 | + "shape":"NameString", |
| 963 | + "documentation":"<p>The name of the space.</p>" |
| 964 | + }, |
| 965 | + "projectName":{ |
| 966 | + "shape":"NameString", |
| 967 | + "documentation":"<p>The name of the project in the space.</p>" |
| 968 | + }, |
| 969 | + "devEnvironmentId":{ |
| 970 | + "shape":"Uuid", |
| 971 | + "documentation":"<p>The system-generated unique ID of the Dev Environment.</p>" |
| 972 | + }, |
| 973 | + "startedTime":{ |
| 974 | + "shape":"SyntheticTimestamp_date_time", |
| 975 | + "documentation":"<p>The date and time the session started, in coordinated universal time (UTC) timestamp format as specified in <a href=\"https://www.rfc-editor.org/rfc/rfc3339#section-5.6\">RFC 3339</a> </p>" |
| 976 | + }, |
| 977 | + "id":{ |
| 978 | + "shape":"DevEnvironmentSessionSummaryIdString", |
| 979 | + "documentation":"<p>The system-generated unique ID of the Dev Environment session.</p>" |
| 980 | + } |
| 981 | + }, |
| 982 | + "documentation":"<p>Information about active sessions for a Dev Environment.</p>" |
| 983 | + }, |
| 984 | + "DevEnvironmentSessionSummaryIdString":{ |
| 985 | + "type":"string", |
| 986 | + "max":96, |
| 987 | + "min":1 |
| 988 | + }, |
932 | 989 | "DevEnvironmentSessionType":{
|
933 | 990 | "type":"string",
|
934 | 991 | "enum":[
|
935 | 992 | "SSM",
|
936 | 993 | "SSH"
|
937 | 994 | ]
|
938 | 995 | },
|
| 996 | + "DevEnvironmentSessionsSummaryList":{ |
| 997 | + "type":"list", |
| 998 | + "member":{"shape":"DevEnvironmentSessionSummary"} |
| 999 | + }, |
939 | 1000 | "DevEnvironmentStatus":{
|
940 | 1001 | "type":"string",
|
941 | 1002 | "enum":[
|
|
1612 | 1673 | }
|
1613 | 1674 | }
|
1614 | 1675 | },
|
| 1676 | + "ListDevEnvironmentSessionsRequest":{ |
| 1677 | + "type":"structure", |
| 1678 | + "required":[ |
| 1679 | + "spaceName", |
| 1680 | + "projectName", |
| 1681 | + "devEnvironmentId" |
| 1682 | + ], |
| 1683 | + "members":{ |
| 1684 | + "spaceName":{ |
| 1685 | + "shape":"NameString", |
| 1686 | + "documentation":"<p>The name of the space.</p>", |
| 1687 | + "location":"uri", |
| 1688 | + "locationName":"spaceName" |
| 1689 | + }, |
| 1690 | + "projectName":{ |
| 1691 | + "shape":"NameString", |
| 1692 | + "documentation":"<p>The name of the project in the space.</p>", |
| 1693 | + "location":"uri", |
| 1694 | + "locationName":"projectName" |
| 1695 | + }, |
| 1696 | + "devEnvironmentId":{ |
| 1697 | + "shape":"Uuid", |
| 1698 | + "documentation":"<p>The system-generated unique ID of the Dev Environment.</p>", |
| 1699 | + "location":"uri", |
| 1700 | + "locationName":"devEnvironmentId" |
| 1701 | + }, |
| 1702 | + "nextToken":{ |
| 1703 | + "shape":"ListDevEnvironmentSessionsRequestNextTokenString", |
| 1704 | + "documentation":"<p>A token returned from a call to this API to indicate the next batch of results to return, if any.</p>" |
| 1705 | + }, |
| 1706 | + "maxResults":{ |
| 1707 | + "shape":"ListDevEnvironmentSessionsRequestMaxResultsInteger", |
| 1708 | + "documentation":"<p>The maximum number of results to show in a single call to this API. If the number of results is larger than the number you specified, the response will include a <code>NextToken</code> element, which you can use to obtain additional results.</p>" |
| 1709 | + } |
| 1710 | + } |
| 1711 | + }, |
| 1712 | + "ListDevEnvironmentSessionsRequestMaxResultsInteger":{ |
| 1713 | + "type":"integer", |
| 1714 | + "box":true, |
| 1715 | + "max":200, |
| 1716 | + "min":1 |
| 1717 | + }, |
| 1718 | + "ListDevEnvironmentSessionsRequestNextTokenString":{ |
| 1719 | + "type":"string", |
| 1720 | + "max":10000, |
| 1721 | + "min":1 |
| 1722 | + }, |
| 1723 | + "ListDevEnvironmentSessionsResponse":{ |
| 1724 | + "type":"structure", |
| 1725 | + "required":["items"], |
| 1726 | + "members":{ |
| 1727 | + "items":{ |
| 1728 | + "shape":"DevEnvironmentSessionsSummaryList", |
| 1729 | + "documentation":"<p>Information about each session retrieved in the list.</p>" |
| 1730 | + }, |
| 1731 | + "nextToken":{ |
| 1732 | + "shape":"String", |
| 1733 | + "documentation":"<p>A token returned from a call to this API to indicate the next batch of results to return, if any.</p>" |
| 1734 | + } |
| 1735 | + } |
| 1736 | + }, |
1615 | 1737 | "ListDevEnvironmentsRequest":{
|
1616 | 1738 | "type":"structure",
|
1617 | 1739 | "required":[
|
|
2671 | 2793 | "min":1
|
2672 | 2794 | }
|
2673 | 2795 | },
|
2674 |
| - "documentation":"<p>Welcome to the Amazon CodeCatalyst API reference. This reference provides descriptions of operations and data types for Amazon CodeCatalyst. You can use the Amazon CodeCatalyst API to work with the following objects. </p> <p>Dev Environments and the Amazon Web Services Toolkits, by calling the following:</p> <ul> <li> <p> <a>CreateAccessToken</a>, which creates a personal access token (PAT) for the current user.</p> </li> <li> <p> <a>CreateDevEnvironment</a>, which creates a Dev Environment, where you can quickly work on the code stored in the source repositories of your project.</p> </li> <li> <p> <a>CreateProject</a> which creates a project in a specified space.</p> </li> <li> <p> <a>CreateSourceRepositoryBranch</a>, which creates a branch in a specified repository where you can work on code.</p> </li> <li> <p> <a>DeleteDevEnvironment</a>, which deletes a Dev Environment.</p> </li> <li> <p> <a>GetDevEnvironment</a>, which returns information about a Dev Environment.</p> </li> <li> <p> <a>GetProject</a>, which returns information about a project.</p> </li> <li> <p> <a>GetSourceRepositoryCloneUrls</a>, which returns information about the URLs that can be used with a Git client to clone a source repository.</p> </li> <li> <p> <a>GetSpace</a>, which returns information about a space.</p> </li> <li> <p> <a>GetSubscription</a>, which returns information about the Amazon Web Services account used for billing purposes and the billing plan for the space.</p> </li> <li> <p> <a>GetUserDetails</a>, which returns information about a user in Amazon CodeCatalyst.</p> </li> <li> <p> <a>ListDevEnvironments</a>, which retrieves a list of Dev Environments in a project.</p> </li> <li> <p> <a>ListProjects</a>, which retrieves a list of projects in a space.</p> </li> <li> <p> <a>ListSourceRepositories</a>, which retrieves a list of source repositories in a project.</p> </li> <li> <p> <a>ListSourceRepositoryBranches</a>, which retrieves a list of branches in a source repository.</p> </li> <li> <p> <a>ListSpaces</a>, which retrieves a list of spaces.</p> </li> <li> <p> <a>StartDevEnvironment</a>, which starts a specified Dev Environment and puts it into an active state.</p> </li> <li> <p> <a>StartDevEnvironmentSession</a>, which starts a session to a specified Dev Environment.</p> </li> <li> <p> <a>StopDevEnvironment</a>, which stops a specified Dev Environment and puts it into an stopped state.</p> </li> <li> <p> <a>StopDevEnvironmentSession</a>, which stops a session for a specified Dev Environment.</p> </li> <li> <p> <a>UpdateDevEnvironment</a>, which changes one or more values for a Dev Environment.</p> </li> <li> <p> <a>VerifySession</a>, which verifies whether the calling user has a valid Amazon CodeCatalyst login and session.</p> </li> </ul> <p>Security, activity, and resource management in Amazon CodeCatalyst, by calling the following:</p> <ul> <li> <p> <a>DeleteAccessToken</a>, which deletes a specified personal access token (PAT).</p> </li> <li> <p> <a>ListAccessTokens</a>, which lists all personal access tokens (PATs) associated with a user.</p> </li> <li> <p> <a>ListEventLogs</a>, which retrieves a list of events that occurred during a specified time period in a space.</p> </li> </ul> <note> <p>If you are using the Amazon CodeCatalyst APIs with an SDK or the CLI, you must configure your computer to work with Amazon CodeCatalyst and single sign-on (SSO). For more information, see <a href=\"https://docs.aws.amazon.com/codecatalyst/latest/userguide/set-up-cli.html\">Setting up to use the CLI with Amazon CodeCatalyst</a> and the SSO documentation for your SDK.</p> </note>" |
| 2796 | + "documentation":"<p>Welcome to the Amazon CodeCatalyst API reference. This reference provides descriptions of operations and data types for Amazon CodeCatalyst. You can use the Amazon CodeCatalyst API to work with the following objects. </p> <p>Dev Environments and the Amazon Web Services Toolkits, by calling the following:</p> <ul> <li> <p> <a>CreateAccessToken</a>, which creates a personal access token (PAT) for the current user.</p> </li> <li> <p> <a>CreateDevEnvironment</a>, which creates a Dev Environment, where you can quickly work on the code stored in the source repositories of your project.</p> </li> <li> <p> <a>CreateProject</a> which creates a project in a specified space.</p> </li> <li> <p> <a>CreateSourceRepositoryBranch</a>, which creates a branch in a specified repository where you can work on code.</p> </li> <li> <p> <a>DeleteDevEnvironment</a>, which deletes a Dev Environment.</p> </li> <li> <p> <a>GetDevEnvironment</a>, which returns information about a Dev Environment.</p> </li> <li> <p> <a>GetProject</a>, which returns information about a project.</p> </li> <li> <p> <a>GetSourceRepositoryCloneUrls</a>, which returns information about the URLs that can be used with a Git client to clone a source repository.</p> </li> <li> <p> <a>GetSpace</a>, which returns information about a space.</p> </li> <li> <p> <a>GetSubscription</a>, which returns information about the Amazon Web Services account used for billing purposes and the billing plan for the space.</p> </li> <li> <p> <a>GetUserDetails</a>, which returns information about a user in Amazon CodeCatalyst.</p> </li> <li> <p> <a>ListDevEnvironments</a>, which retrieves a list of Dev Environments in a project.</p> </li> <li> <p> <a>ListDevEnvironmentSessions</a>, which retrieves a list of active Dev Environment sessions in a project.</p> </li> <li> <p> <a>ListProjects</a>, which retrieves a list of projects in a space.</p> </li> <li> <p> <a>ListSourceRepositories</a>, which retrieves a list of source repositories in a project.</p> </li> <li> <p> <a>ListSourceRepositoryBranches</a>, which retrieves a list of branches in a source repository.</p> </li> <li> <p> <a>ListSpaces</a>, which retrieves a list of spaces.</p> </li> <li> <p> <a>StartDevEnvironment</a>, which starts a specified Dev Environment and puts it into an active state.</p> </li> <li> <p> <a>StartDevEnvironmentSession</a>, which starts a session to a specified Dev Environment.</p> </li> <li> <p> <a>StopDevEnvironment</a>, which stops a specified Dev Environment and puts it into an stopped state.</p> </li> <li> <p> <a>StopDevEnvironmentSession</a>, which stops a session for a specified Dev Environment.</p> </li> <li> <p> <a>UpdateDevEnvironment</a>, which changes one or more values for a Dev Environment.</p> </li> <li> <p> <a>VerifySession</a>, which verifies whether the calling user has a valid Amazon CodeCatalyst login and session.</p> </li> </ul> <p>Security, activity, and resource management in Amazon CodeCatalyst, by calling the following:</p> <ul> <li> <p> <a>DeleteAccessToken</a>, which deletes a specified personal access token (PAT).</p> </li> <li> <p> <a>ListAccessTokens</a>, which lists all personal access tokens (PATs) associated with a user.</p> </li> <li> <p> <a>ListEventLogs</a>, which retrieves a list of events that occurred during a specified time period in a space.</p> </li> </ul> <note> <p>If you are using the Amazon CodeCatalyst APIs with an SDK or the CLI, you must configure your computer to work with Amazon CodeCatalyst and single sign-on (SSO). For more information, see <a href=\"https://docs.aws.amazon.com/codecatalyst/latest/userguide/set-up-cli.html\">Setting up to use the CLI with Amazon CodeCatalyst</a> and the SSO documentation for your SDK.</p> </note>" |
2675 | 2797 | }
|
0 commit comments