openapi: 3.0.0 info: version: '2022-09-28' x-release: bearer title: Amazon CodeCatalyst description: '

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.

Spaces, by calling the following:

Projects, by calling the following:

Users, by calling the following:

Source repositories, by calling the following:

Dev Environments and the Amazon Web Services Toolkits, by calling the following:

Security, activity, and resource management in Amazon CodeCatalyst, by calling the following:

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 Setting up to use the CLI with Amazon CodeCatalyst and the SSO documentation for your SDK.

' x-logo: url: 'https://twitter.com/awscloud/profile_image?size=original' backgroundColor: '#FFFFFF' termsOfService: 'https://aws.amazon.com/service-terms/' contact: name: Mike Ralphson email: mike.ralphson@gmail.com url: 'https://github.com/mermade/aws2openapi' x-twitter: PermittedSoc license: name: Apache 2.0 License url: 'http://www.apache.org/licenses/' x-providerName: amazonaws.com x-serviceName: codecatalyst x-aws-signingName: codecatalyst x-origin: - contentType: application/json url: 'https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/codecatalyst-2022-09-28.normal.json' converter: url: 'https://github.com/mermade/aws2openapi' version: 1.0.0 x-apisguru-driver: external x-apiClientRegistration: url: 'https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct' x-apisguru-categories: - cloud x-preferred: true externalDocs: description: Amazon Web Services documentation url: 'https://docs.aws.amazon.com/codecatalyst/' servers: - url: 'http://codecatalyst.global.api.aws' variables: {} description: The general Amazon CodeCatalyst multi-region endpoint - url: 'https://codecatalyst.global.api.aws' variables: {} description: The general Amazon CodeCatalyst multi-region endpoint - url: 'http://codecatalyst.{region}.amazonaws.com.cn' variables: region: description: The AWS region enum: - cn-north-1 - cn-northwest-1 default: cn-north-1 description: The Amazon CodeCatalyst endpoint for China (Beijing) and China (Ningxia) - url: 'https://codecatalyst.{region}.amazonaws.com.cn' variables: region: description: The AWS region enum: - cn-north-1 - cn-northwest-1 default: cn-north-1 description: The Amazon CodeCatalyst endpoint for China (Beijing) and China (Ningxia) paths: /v1/accessTokens: put: operationId: CreateAccessToken description: 'Creates a personal access token (PAT) for the current user. A personal access token (PAT) is similar to a password. It is associated with your user identity for use across all spaces and projects in Amazon CodeCatalyst. You use PATs to access CodeCatalyst from resources that include integrated development environments (IDEs) and Git-based source repositories. PATs represent you in Amazon CodeCatalyst and you can manage them in your user settings.For more information, see Managing personal access tokens in Amazon CodeCatalyst.' responses: '201': description: Success content: application/json: schema: $ref: '#/components/schemas/CreateAccessTokenResponse' examples: CreateAccessToken201Example: summary: Default CreateAccessToken 201 response x-microcks-default: true value: secret: example-value name: example-resource expiresTime: example-value accessTokenId: '500123' '480': description: ThrottlingException content: application/json: schema: $ref: '#/components/schemas/ThrottlingException' examples: CreateAccessToken480Example: summary: Default CreateAccessToken 480 response x-microcks-default: true value: example-value '481': description: ConflictException content: application/json: schema: $ref: '#/components/schemas/ConflictException' examples: CreateAccessToken481Example: summary: Default CreateAccessToken 481 response x-microcks-default: true value: example-value '482': description: ValidationException content: application/json: schema: $ref: '#/components/schemas/ValidationException' examples: CreateAccessToken482Example: summary: Default CreateAccessToken 482 response x-microcks-default: true value: example-value '483': description: ServiceQuotaExceededException content: application/json: schema: $ref: '#/components/schemas/ServiceQuotaExceededException' examples: CreateAccessToken483Example: summary: Default CreateAccessToken 483 response x-microcks-default: true value: example-value '484': description: ResourceNotFoundException content: application/json: schema: $ref: '#/components/schemas/ResourceNotFoundException' examples: CreateAccessToken484Example: summary: Default CreateAccessToken 484 response x-microcks-default: true value: example-value '485': description: AccessDeniedException content: application/json: schema: $ref: '#/components/schemas/AccessDeniedException' examples: CreateAccessToken485Example: summary: Default CreateAccessToken 485 response x-microcks-default: true value: example-value parameters: [] requestBody: required: true content: application/json: schema: type: object required: - name properties: name: description: The friendly name of the personal access token. type: string minLength: 1 maxLength: 100 expiresTime: description: 'The date and time the personal access token expires, in coordinated universal time (UTC) timestamp format as specified in RFC 3339.' type: string format: date-time examples: CreateAccessTokenRequestExample: summary: Default CreateAccessToken request x-microcks-default: true value: name: example-resource expiresTime: example-value summary: Amazon CodeCatalyst Create Access Token x-microcks-operation: delay: 0 dispatcher: FALLBACK post: operationId: ListAccessTokens description: 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. responses: '200': description: Success content: application/json: schema: $ref: '#/components/schemas/ListAccessTokensResponse' examples: ListAccessTokens200Example: summary: Default ListAccessTokens 200 response x-microcks-default: true value: items: example-value nextToken: example-value '480': description: ThrottlingException content: application/json: schema: $ref: '#/components/schemas/ThrottlingException' examples: ListAccessTokens480Example: summary: Default ListAccessTokens 480 response x-microcks-default: true value: example-value '481': description: ConflictException content: application/json: schema: $ref: '#/components/schemas/ConflictException' examples: ListAccessTokens481Example: summary: Default ListAccessTokens 481 response x-microcks-default: true value: example-value '482': description: ValidationException content: application/json: schema: $ref: '#/components/schemas/ValidationException' examples: ListAccessTokens482Example: summary: Default ListAccessTokens 482 response x-microcks-default: true value: example-value '483': description: ServiceQuotaExceededException content: application/json: schema: $ref: '#/components/schemas/ServiceQuotaExceededException' examples: ListAccessTokens483Example: summary: Default ListAccessTokens 483 response x-microcks-default: true value: example-value '484': description: ResourceNotFoundException content: application/json: schema: $ref: '#/components/schemas/ResourceNotFoundException' examples: ListAccessTokens484Example: summary: Default ListAccessTokens 484 response x-microcks-default: true value: example-value '485': description: AccessDeniedException content: application/json: schema: $ref: '#/components/schemas/AccessDeniedException' examples: ListAccessTokens485Example: summary: Default ListAccessTokens 485 response x-microcks-default: true value: example-value parameters: - name: maxResults in: query schema: type: string description: Pagination limit required: false - name: nextToken in: query schema: type: string description: Pagination token required: false requestBody: required: true content: application/json: schema: type: object properties: maxResults: description: '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 NextToken element, which you can use to obtain additional results.' type: integer maximum: 10 nextToken: description: 'A token returned from a call to this API to indicate the next batch of results to return, if any.' type: string minLength: 1 maxLength: 10000 examples: ListAccessTokensRequestExample: summary: Default ListAccessTokens request x-microcks-default: true value: maxResults: 1 nextToken: example-value summary: Amazon CodeCatalyst List Access Tokens x-microcks-operation: delay: 0 dispatcher: FALLBACK '/v1/spaces/{spaceName}/projects/{projectName}/devEnvironments': put: operationId: CreateDevEnvironment description: '

Creates a Dev Environment in Amazon CodeCatalyst, a cloud-based development environment that you can use to quickly work on the code stored in the source repositories of your project.

When created in the Amazon CodeCatalyst console, by default a Dev Environment is configured to have a 2 core processor, 4GB of RAM, and 16GB of persistent storage. None of these defaults apply to a Dev Environment created programmatically.

' responses: '201': description: Success content: application/json: schema: $ref: '#/components/schemas/CreateDevEnvironmentResponse' examples: CreateDevEnvironment201Example: summary: Default CreateDevEnvironment 201 response x-microcks-default: true value: spaceName: example-resource projectName: example-resource id: '500123' '480': description: ThrottlingException content: application/json: schema: $ref: '#/components/schemas/ThrottlingException' examples: CreateDevEnvironment480Example: summary: Default CreateDevEnvironment 480 response x-microcks-default: true value: example-value '481': description: ConflictException content: application/json: schema: $ref: '#/components/schemas/ConflictException' examples: CreateDevEnvironment481Example: summary: Default CreateDevEnvironment 481 response x-microcks-default: true value: example-value '482': description: ValidationException content: application/json: schema: $ref: '#/components/schemas/ValidationException' examples: CreateDevEnvironment482Example: summary: Default CreateDevEnvironment 482 response x-microcks-default: true value: example-value '483': description: ServiceQuotaExceededException content: application/json: schema: $ref: '#/components/schemas/ServiceQuotaExceededException' examples: CreateDevEnvironment483Example: summary: Default CreateDevEnvironment 483 response x-microcks-default: true value: example-value '484': description: ResourceNotFoundException content: application/json: schema: $ref: '#/components/schemas/ResourceNotFoundException' examples: CreateDevEnvironment484Example: summary: Default CreateDevEnvironment 484 response x-microcks-default: true value: example-value '485': description: AccessDeniedException content: application/json: schema: $ref: '#/components/schemas/AccessDeniedException' examples: CreateDevEnvironment485Example: summary: Default CreateDevEnvironment 485 response x-microcks-default: true value: example-value parameters: - name: spaceName in: path required: true description: The name of the space. schema: type: string pattern: '[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 3 maxLength: 63 - name: projectName in: path required: true description: The name of the project in the space. schema: type: string pattern: '[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 3 maxLength: 63 requestBody: required: true content: application/json: schema: type: object required: - instanceType - persistentStorage properties: repositories: description: 'The source repository that contains the branch to clone into the Dev Environment. ' type: array items: $ref: '#/components/schemas/RepositoryInput' clientToken: description: 'A user-specified idempotency token. Idempotency ensures that an API request completes only once. With an idempotent request, if the original request completes successfully, the subsequent retries return the result from the original successful request and have no additional effect.' type: string minLength: 1 maxLength: 1024 alias: description: The user-defined alias for a Dev Environment. type: string pattern: '[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 1 maxLength: 128 ides: description: '

Information about the integrated development environment (IDE) configured for a Dev Environment.

An IDE is required to create a Dev Environment. For Dev Environment creation, this field contains configuration information and must be provided.

' type: array items: $ref: '#/components/schemas/IdeConfiguration' minItems: 0 maxItems: 1 instanceType: description: 'The Amazon EC2 instace type to use for the Dev Environment. ' type: string enum: - dev.standard1.small - dev.standard1.medium - dev.standard1.large - dev.standard1.xlarge inactivityTimeoutMinutes: description: 'The amount of time the Dev Environment will run without any activity detected before stopping, in minutes. Only whole integers are allowed. Dev Environments consume compute minutes when running.' type: integer minimum: 0 maximum: 1200 persistentStorage: description: 'Information about the configuration of persistent storage for a Dev Environment. ' type: object properties: sizeInGiB: allOf: - $ref: '#/components/schemas/PersistentStorageConfigurationSizeInGiBInteger' - description: '

The size of the persistent storage in gigabytes (specifically GiB).

Valid values for storage are based on memory sizes in 16GB increments. Valid values are 16, 32, and 64.

' examples: CreateDevEnvironmentRequestExample: summary: Default CreateDevEnvironment request x-microcks-default: true value: repositories: - repositoryName: example-resource branchName: example-resource clientToken: example-value alias: example-value ides: - runtime: example-value name: example-resource instanceType: dev.standard1.small inactivityTimeoutMinutes: 1718153645993 persistentStorage: sizeInGiB: example-value summary: Amazon CodeCatalyst Create Dev Environment x-microcks-operation: delay: 0 dispatcher: FALLBACK post: operationId: ListDevEnvironments description: Retrieves a list of Dev Environments in a project. responses: '200': description: Success content: application/json: schema: $ref: '#/components/schemas/ListDevEnvironmentsResponse' examples: ListDevEnvironments200Example: summary: Default ListDevEnvironments 200 response x-microcks-default: true value: items: example-value nextToken: example-value '480': description: ThrottlingException content: application/json: schema: $ref: '#/components/schemas/ThrottlingException' examples: ListDevEnvironments480Example: summary: Default ListDevEnvironments 480 response x-microcks-default: true value: example-value '481': description: ConflictException content: application/json: schema: $ref: '#/components/schemas/ConflictException' examples: ListDevEnvironments481Example: summary: Default ListDevEnvironments 481 response x-microcks-default: true value: example-value '482': description: ValidationException content: application/json: schema: $ref: '#/components/schemas/ValidationException' examples: ListDevEnvironments482Example: summary: Default ListDevEnvironments 482 response x-microcks-default: true value: example-value '483': description: ServiceQuotaExceededException content: application/json: schema: $ref: '#/components/schemas/ServiceQuotaExceededException' examples: ListDevEnvironments483Example: summary: Default ListDevEnvironments 483 response x-microcks-default: true value: example-value '484': description: ResourceNotFoundException content: application/json: schema: $ref: '#/components/schemas/ResourceNotFoundException' examples: ListDevEnvironments484Example: summary: Default ListDevEnvironments 484 response x-microcks-default: true value: example-value '485': description: AccessDeniedException content: application/json: schema: $ref: '#/components/schemas/AccessDeniedException' examples: ListDevEnvironments485Example: summary: Default ListDevEnvironments 485 response x-microcks-default: true value: example-value parameters: - name: spaceName in: path required: true description: The name of the space. schema: type: string pattern: '[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 3 maxLength: 63 - name: projectName in: path required: true description: The name of the project in the space. schema: type: string pattern: '[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 3 maxLength: 63 - name: maxResults in: query schema: type: string description: Pagination limit required: false - name: nextToken in: query schema: type: string description: Pagination token required: false requestBody: required: true content: application/json: schema: type: object properties: filters: description: Information about filters to apply to narrow the results returned in the list. type: array items: $ref: '#/components/schemas/Filter' nextToken: description: 'A token returned from a call to this API to indicate the next batch of results to return, if any.' type: string minLength: 1 maxLength: 10000 maxResults: description: '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 NextToken element, which you can use to obtain additional results.' type: integer minimum: 1 maximum: 50 examples: ListDevEnvironmentsRequestExample: summary: Default ListDevEnvironments request x-microcks-default: true value: filters: - key: example-value values: example-value comparisonOperator: example-value nextToken: example-value maxResults: 1 summary: Amazon CodeCatalyst List Dev Environments x-microcks-operation: delay: 0 dispatcher: FALLBACK '/v1/spaces/{spaceName}/projects': put: operationId: CreateProject description: Creates a project in a specified space. responses: '201': description: Success content: application/json: schema: $ref: '#/components/schemas/CreateProjectResponse' examples: CreateProject201Example: summary: Default CreateProject 201 response x-microcks-default: true value: spaceName: example-resource name: example-resource displayName: example-resource description: Example description '480': description: ThrottlingException content: application/json: schema: $ref: '#/components/schemas/ThrottlingException' examples: CreateProject480Example: summary: Default CreateProject 480 response x-microcks-default: true value: example-value '481': description: ConflictException content: application/json: schema: $ref: '#/components/schemas/ConflictException' examples: CreateProject481Example: summary: Default CreateProject 481 response x-microcks-default: true value: example-value '482': description: ValidationException content: application/json: schema: $ref: '#/components/schemas/ValidationException' examples: CreateProject482Example: summary: Default CreateProject 482 response x-microcks-default: true value: example-value '483': description: ServiceQuotaExceededException content: application/json: schema: $ref: '#/components/schemas/ServiceQuotaExceededException' examples: CreateProject483Example: summary: Default CreateProject 483 response x-microcks-default: true value: example-value '484': description: ResourceNotFoundException content: application/json: schema: $ref: '#/components/schemas/ResourceNotFoundException' examples: CreateProject484Example: summary: Default CreateProject 484 response x-microcks-default: true value: example-value '485': description: AccessDeniedException content: application/json: schema: $ref: '#/components/schemas/AccessDeniedException' examples: CreateProject485Example: summary: Default CreateProject 485 response x-microcks-default: true value: example-value parameters: - name: spaceName in: path required: true description: The name of the space. schema: type: string pattern: '[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 3 maxLength: 63 requestBody: required: true content: application/json: schema: type: object required: - displayName properties: displayName: description: The friendly name of the project that will be displayed to users. type: string pattern: '[a-zA-Z0-9]+(?:[-_\. ][a-zA-Z0-9]+)*' minLength: 3 maxLength: 63 description: description: The description of the project. This description will be displayed to all users of the project. We recommend providing a brief description of the project and its intended purpose. type: string pattern: '[a-zA-Z0-9]+(?:[-_a-zA-Z0-9.,;:/\+=?&$% ])*' minLength: 0 maxLength: 200 examples: CreateProjectRequestExample: summary: Default CreateProject request x-microcks-default: true value: displayName: example-resource description: Example description summary: Amazon CodeCatalyst Create Project x-microcks-operation: delay: 0 dispatcher: FALLBACK post: operationId: ListProjects description: Retrieves a list of projects. responses: '200': description: Success content: application/json: schema: $ref: '#/components/schemas/ListProjectsResponse' examples: ListProjects200Example: summary: Default ListProjects 200 response x-microcks-default: true value: nextToken: example-value items: example-value '480': description: ThrottlingException content: application/json: schema: $ref: '#/components/schemas/ThrottlingException' examples: ListProjects480Example: summary: Default ListProjects 480 response x-microcks-default: true value: example-value '481': description: ConflictException content: application/json: schema: $ref: '#/components/schemas/ConflictException' examples: ListProjects481Example: summary: Default ListProjects 481 response x-microcks-default: true value: example-value '482': description: ValidationException content: application/json: schema: $ref: '#/components/schemas/ValidationException' examples: ListProjects482Example: summary: Default ListProjects 482 response x-microcks-default: true value: example-value '483': description: ServiceQuotaExceededException content: application/json: schema: $ref: '#/components/schemas/ServiceQuotaExceededException' examples: ListProjects483Example: summary: Default ListProjects 483 response x-microcks-default: true value: example-value '484': description: ResourceNotFoundException content: application/json: schema: $ref: '#/components/schemas/ResourceNotFoundException' examples: ListProjects484Example: summary: Default ListProjects 484 response x-microcks-default: true value: example-value '485': description: AccessDeniedException content: application/json: schema: $ref: '#/components/schemas/AccessDeniedException' examples: ListProjects485Example: summary: Default ListProjects 485 response x-microcks-default: true value: example-value parameters: - name: spaceName in: path required: true description: The name of the space. schema: type: string pattern: '[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 3 maxLength: 63 - name: maxResults in: query schema: type: string description: Pagination limit required: false - name: nextToken in: query schema: type: string description: Pagination token required: false requestBody: required: true content: application/json: schema: type: object properties: nextToken: description: 'A token returned from a call to this API to indicate the next batch of results to return, if any.' type: string minLength: 1 maxLength: 10000 maxResults: description: '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 NextToken element, which you can use to obtain additional results.' type: integer minimum: 1 maximum: 100 filters: description: Information about filters to apply to narrow the results returned in the list. type: array items: $ref: '#/components/schemas/ProjectListFilter' examples: ListProjectsRequestExample: summary: Default ListProjects request x-microcks-default: true value: nextToken: example-value maxResults: 1 filters: - key: example-value values: example-value comparisonOperator: example-value summary: Amazon CodeCatalyst List Projects x-microcks-operation: delay: 0 dispatcher: FALLBACK '/v1/spaces/{spaceName}/projects/{projectName}/sourceRepositories/{name}': put: operationId: CreateSourceRepository description: Creates an empty Git-based source repository in a specified project. The repository is created with an initial empty commit with a default branch named main. responses: '201': description: Success content: application/json: schema: $ref: '#/components/schemas/CreateSourceRepositoryResponse' examples: CreateSourceRepository201Example: summary: Default CreateSourceRepository 201 response x-microcks-default: true value: spaceName: example-resource projectName: example-resource name: example-resource description: Example description '480': description: ThrottlingException content: application/json: schema: $ref: '#/components/schemas/ThrottlingException' examples: CreateSourceRepository480Example: summary: Default CreateSourceRepository 480 response x-microcks-default: true value: example-value '481': description: ConflictException content: application/json: schema: $ref: '#/components/schemas/ConflictException' examples: CreateSourceRepository481Example: summary: Default CreateSourceRepository 481 response x-microcks-default: true value: example-value '482': description: ValidationException content: application/json: schema: $ref: '#/components/schemas/ValidationException' examples: CreateSourceRepository482Example: summary: Default CreateSourceRepository 482 response x-microcks-default: true value: example-value '483': description: ServiceQuotaExceededException content: application/json: schema: $ref: '#/components/schemas/ServiceQuotaExceededException' examples: CreateSourceRepository483Example: summary: Default CreateSourceRepository 483 response x-microcks-default: true value: example-value '484': description: ResourceNotFoundException content: application/json: schema: $ref: '#/components/schemas/ResourceNotFoundException' examples: CreateSourceRepository484Example: summary: Default CreateSourceRepository 484 response x-microcks-default: true value: example-value '485': description: AccessDeniedException content: application/json: schema: $ref: '#/components/schemas/AccessDeniedException' examples: CreateSourceRepository485Example: summary: Default CreateSourceRepository 485 response x-microcks-default: true value: example-value parameters: - name: spaceName in: path required: true description: The name of the space. schema: type: string pattern: '[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 3 maxLength: 63 - name: projectName in: path required: true description: The name of the project in the space. schema: type: string pattern: '[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 3 maxLength: 63 - name: name in: path required: true description: 'The name of the source repository. For more information about name requirements, see Quotas for source repositories.' schema: type: string pattern: '(?!.*[.]git$)[\w\-.]*' minLength: 1 maxLength: 100 requestBody: required: true content: application/json: schema: type: object properties: description: description: The description of the source repository. type: string minLength: 1 maxLength: 255 examples: CreateSourceRepositoryRequestExample: summary: Default CreateSourceRepository request x-microcks-default: true value: description: Example description summary: Amazon CodeCatalyst Create Source Repository x-microcks-operation: delay: 0 dispatcher: FALLBACK delete: operationId: DeleteSourceRepository description: Deletes a source repository in Amazon CodeCatalyst. You cannot use this API to delete a linked repository. It can only be used to delete a Amazon CodeCatalyst source repository. responses: '200': description: Success content: application/json: schema: $ref: '#/components/schemas/DeleteSourceRepositoryResponse' examples: DeleteSourceRepository200Example: summary: Default DeleteSourceRepository 200 response x-microcks-default: true value: spaceName: example-resource projectName: example-resource name: example-resource '480': description: ThrottlingException content: application/json: schema: $ref: '#/components/schemas/ThrottlingException' examples: DeleteSourceRepository480Example: summary: Default DeleteSourceRepository 480 response x-microcks-default: true value: example-value '481': description: ConflictException content: application/json: schema: $ref: '#/components/schemas/ConflictException' examples: DeleteSourceRepository481Example: summary: Default DeleteSourceRepository 481 response x-microcks-default: true value: example-value '482': description: ValidationException content: application/json: schema: $ref: '#/components/schemas/ValidationException' examples: DeleteSourceRepository482Example: summary: Default DeleteSourceRepository 482 response x-microcks-default: true value: example-value '483': description: ServiceQuotaExceededException content: application/json: schema: $ref: '#/components/schemas/ServiceQuotaExceededException' examples: DeleteSourceRepository483Example: summary: Default DeleteSourceRepository 483 response x-microcks-default: true value: example-value '484': description: ResourceNotFoundException content: application/json: schema: $ref: '#/components/schemas/ResourceNotFoundException' examples: DeleteSourceRepository484Example: summary: Default DeleteSourceRepository 484 response x-microcks-default: true value: example-value '485': description: AccessDeniedException content: application/json: schema: $ref: '#/components/schemas/AccessDeniedException' examples: DeleteSourceRepository485Example: summary: Default DeleteSourceRepository 485 response x-microcks-default: true value: example-value parameters: - name: spaceName in: path required: true description: The name of the space. schema: type: string pattern: '[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 3 maxLength: 63 - name: projectName in: path required: true description: The name of the project in the space. schema: type: string pattern: '[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 3 maxLength: 63 - name: name in: path required: true description: The name of the source repository. schema: type: string pattern: '(?!.*[.]git$)[\w\-.]*' minLength: 1 maxLength: 100 summary: Amazon CodeCatalyst Delete Source Repository x-microcks-operation: delay: 0 dispatcher: FALLBACK get: operationId: GetSourceRepository description: Returns information about a source repository. responses: '200': description: Success content: application/json: schema: $ref: '#/components/schemas/GetSourceRepositoryResponse' examples: GetSourceRepository200Example: summary: Default GetSourceRepository 200 response x-microcks-default: true value: spaceName: example-resource projectName: example-resource name: example-resource description: Example description lastUpdatedTime: example-value createdTime: example-value '480': description: ThrottlingException content: application/json: schema: $ref: '#/components/schemas/ThrottlingException' examples: GetSourceRepository480Example: summary: Default GetSourceRepository 480 response x-microcks-default: true value: example-value '481': description: ConflictException content: application/json: schema: $ref: '#/components/schemas/ConflictException' examples: GetSourceRepository481Example: summary: Default GetSourceRepository 481 response x-microcks-default: true value: example-value '482': description: ValidationException content: application/json: schema: $ref: '#/components/schemas/ValidationException' examples: GetSourceRepository482Example: summary: Default GetSourceRepository 482 response x-microcks-default: true value: example-value '483': description: ServiceQuotaExceededException content: application/json: schema: $ref: '#/components/schemas/ServiceQuotaExceededException' examples: GetSourceRepository483Example: summary: Default GetSourceRepository 483 response x-microcks-default: true value: example-value '484': description: ResourceNotFoundException content: application/json: schema: $ref: '#/components/schemas/ResourceNotFoundException' examples: GetSourceRepository484Example: summary: Default GetSourceRepository 484 response x-microcks-default: true value: example-value '485': description: AccessDeniedException content: application/json: schema: $ref: '#/components/schemas/AccessDeniedException' examples: GetSourceRepository485Example: summary: Default GetSourceRepository 485 response x-microcks-default: true value: example-value parameters: - name: spaceName in: path required: true description: The name of the space. schema: type: string pattern: '[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 3 maxLength: 63 - name: projectName in: path required: true description: The name of the project in the space. schema: type: string pattern: '[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 3 maxLength: 63 - name: name in: path required: true description: The name of the source repository. schema: type: string pattern: '(?!.*[.]git$)[\w\-.]*' minLength: 1 maxLength: 100 summary: Amazon CodeCatalyst Get Source Repository x-microcks-operation: delay: 0 dispatcher: FALLBACK '/v1/spaces/{spaceName}/projects/{projectName}/sourceRepositories/{sourceRepositoryName}/branches/{name}': put: operationId: CreateSourceRepositoryBranch description:

Creates a branch in a specified source repository in Amazon CodeCatalyst.

This API only creates a branch in a source repository hosted in Amazon CodeCatalyst. You cannot use this API to create a branch in a linked repository.

responses: '201': description: Success content: application/json: schema: $ref: '#/components/schemas/CreateSourceRepositoryBranchResponse' examples: CreateSourceRepositoryBranch201Example: summary: Default CreateSourceRepositoryBranch 201 response x-microcks-default: true value: ref: example-value name: example-resource lastUpdatedTime: example-value headCommitId: '500123' '480': description: ThrottlingException content: application/json: schema: $ref: '#/components/schemas/ThrottlingException' examples: CreateSourceRepositoryBranch480Example: summary: Default CreateSourceRepositoryBranch 480 response x-microcks-default: true value: example-value '481': description: ConflictException content: application/json: schema: $ref: '#/components/schemas/ConflictException' examples: CreateSourceRepositoryBranch481Example: summary: Default CreateSourceRepositoryBranch 481 response x-microcks-default: true value: example-value '482': description: ValidationException content: application/json: schema: $ref: '#/components/schemas/ValidationException' examples: CreateSourceRepositoryBranch482Example: summary: Default CreateSourceRepositoryBranch 482 response x-microcks-default: true value: example-value '483': description: ServiceQuotaExceededException content: application/json: schema: $ref: '#/components/schemas/ServiceQuotaExceededException' examples: CreateSourceRepositoryBranch483Example: summary: Default CreateSourceRepositoryBranch 483 response x-microcks-default: true value: example-value '484': description: ResourceNotFoundException content: application/json: schema: $ref: '#/components/schemas/ResourceNotFoundException' examples: CreateSourceRepositoryBranch484Example: summary: Default CreateSourceRepositoryBranch 484 response x-microcks-default: true value: example-value '485': description: AccessDeniedException content: application/json: schema: $ref: '#/components/schemas/AccessDeniedException' examples: CreateSourceRepositoryBranch485Example: summary: Default CreateSourceRepositoryBranch 485 response x-microcks-default: true value: example-value parameters: - name: spaceName in: path required: true description: The name of the space. schema: type: string pattern: '[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 3 maxLength: 63 - name: projectName in: path required: true description: The name of the project in the space. schema: type: string pattern: '[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 3 maxLength: 63 - name: sourceRepositoryName in: path required: true description: The name of the repository where you want to create a branch. schema: type: string pattern: '(?!.*[.]git$)[\w\-.]*' minLength: 1 maxLength: 100 - name: name in: path required: true description: The name for the branch you're creating. schema: type: string minLength: 1 maxLength: 100 requestBody: required: true content: application/json: schema: type: object properties: headCommitId: description: The commit ID in an existing branch from which you want to create the new branch. type: string examples: CreateSourceRepositoryBranchRequestExample: summary: Default CreateSourceRepositoryBranch request x-microcks-default: true value: headCommitId: '500123' summary: Amazon CodeCatalyst Create Source Repository Branch x-microcks-operation: delay: 0 dispatcher: FALLBACK '/v1/accessTokens/{id}': delete: operationId: DeleteAccessToken description: Deletes a specified personal access token (PAT). A personal access token can only be deleted by the user who created it. responses: '200': description: Success content: application/json: schema: $ref: '#/components/schemas/DeleteAccessTokenResponse' examples: DeleteAccessToken200Example: summary: Default DeleteAccessToken 200 response x-microcks-default: true value: {} '480': description: ThrottlingException content: application/json: schema: $ref: '#/components/schemas/ThrottlingException' examples: DeleteAccessToken480Example: summary: Default DeleteAccessToken 480 response x-microcks-default: true value: example-value '481': description: ConflictException content: application/json: schema: $ref: '#/components/schemas/ConflictException' examples: DeleteAccessToken481Example: summary: Default DeleteAccessToken 481 response x-microcks-default: true value: example-value '482': description: ValidationException content: application/json: schema: $ref: '#/components/schemas/ValidationException' examples: DeleteAccessToken482Example: summary: Default DeleteAccessToken 482 response x-microcks-default: true value: example-value '483': description: ServiceQuotaExceededException content: application/json: schema: $ref: '#/components/schemas/ServiceQuotaExceededException' examples: DeleteAccessToken483Example: summary: Default DeleteAccessToken 483 response x-microcks-default: true value: example-value '484': description: ResourceNotFoundException content: application/json: schema: $ref: '#/components/schemas/ResourceNotFoundException' examples: DeleteAccessToken484Example: summary: Default DeleteAccessToken 484 response x-microcks-default: true value: example-value '485': description: AccessDeniedException content: application/json: schema: $ref: '#/components/schemas/AccessDeniedException' examples: DeleteAccessToken485Example: summary: Default DeleteAccessToken 485 response x-microcks-default: true value: example-value parameters: - name: id in: path required: true description: The ID of the personal access token to delete. You can find the IDs of all PATs associated with your Amazon Web Services Builder ID in a space by calling ListAccessTokens. schema: type: string minLength: 1 maxLength: 36 summary: Amazon CodeCatalyst Delete Access Token x-microcks-operation: delay: 0 dispatcher: FALLBACK '/v1/spaces/{spaceName}/projects/{projectName}/devEnvironments/{id}': delete: operationId: DeleteDevEnvironment description: 'Deletes a Dev Environment. ' responses: '200': description: Success content: application/json: schema: $ref: '#/components/schemas/DeleteDevEnvironmentResponse' examples: DeleteDevEnvironment200Example: summary: Default DeleteDevEnvironment 200 response x-microcks-default: true value: spaceName: example-resource projectName: example-resource id: '500123' '480': description: ThrottlingException content: application/json: schema: $ref: '#/components/schemas/ThrottlingException' examples: DeleteDevEnvironment480Example: summary: Default DeleteDevEnvironment 480 response x-microcks-default: true value: example-value '481': description: ConflictException content: application/json: schema: $ref: '#/components/schemas/ConflictException' examples: DeleteDevEnvironment481Example: summary: Default DeleteDevEnvironment 481 response x-microcks-default: true value: example-value '482': description: ValidationException content: application/json: schema: $ref: '#/components/schemas/ValidationException' examples: DeleteDevEnvironment482Example: summary: Default DeleteDevEnvironment 482 response x-microcks-default: true value: example-value '483': description: ServiceQuotaExceededException content: application/json: schema: $ref: '#/components/schemas/ServiceQuotaExceededException' examples: DeleteDevEnvironment483Example: summary: Default DeleteDevEnvironment 483 response x-microcks-default: true value: example-value '484': description: ResourceNotFoundException content: application/json: schema: $ref: '#/components/schemas/ResourceNotFoundException' examples: DeleteDevEnvironment484Example: summary: Default DeleteDevEnvironment 484 response x-microcks-default: true value: example-value '485': description: AccessDeniedException content: application/json: schema: $ref: '#/components/schemas/AccessDeniedException' examples: DeleteDevEnvironment485Example: summary: Default DeleteDevEnvironment 485 response x-microcks-default: true value: example-value parameters: - name: spaceName in: path required: true description: The name of the space. schema: type: string pattern: '[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 3 maxLength: 63 - name: projectName in: path required: true description: The name of the project in the space. schema: type: string pattern: '[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 3 maxLength: 63 - name: id in: path required: true description: 'The system-generated unique ID of the Dev Environment you want to delete. To retrieve a list of Dev Environment IDs, use ListDevEnvironments.' schema: type: string pattern: '[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}' summary: Amazon CodeCatalyst Delete Dev Environment x-microcks-operation: delay: 0 dispatcher: FALLBACK get: operationId: GetDevEnvironment description: Returns information about a Dev Environment for a source repository in a project. Dev Environments are specific to the user who creates them. responses: '200': description: Success content: application/json: schema: $ref: '#/components/schemas/GetDevEnvironmentResponse' examples: GetDevEnvironment200Example: summary: Default GetDevEnvironment 200 response x-microcks-default: true value: spaceName: example-resource projectName: example-resource id: '500123' lastUpdatedTime: example-value creatorId: '500123' status: ACTIVE statusReason: ACTIVE repositories: example-value '480': description: ThrottlingException content: application/json: schema: $ref: '#/components/schemas/ThrottlingException' examples: GetDevEnvironment480Example: summary: Default GetDevEnvironment 480 response x-microcks-default: true value: example-value '481': description: ConflictException content: application/json: schema: $ref: '#/components/schemas/ConflictException' examples: GetDevEnvironment481Example: summary: Default GetDevEnvironment 481 response x-microcks-default: true value: example-value '482': description: ValidationException content: application/json: schema: $ref: '#/components/schemas/ValidationException' examples: GetDevEnvironment482Example: summary: Default GetDevEnvironment 482 response x-microcks-default: true value: example-value '483': description: ServiceQuotaExceededException content: application/json: schema: $ref: '#/components/schemas/ServiceQuotaExceededException' examples: GetDevEnvironment483Example: summary: Default GetDevEnvironment 483 response x-microcks-default: true value: example-value '484': description: ResourceNotFoundException content: application/json: schema: $ref: '#/components/schemas/ResourceNotFoundException' examples: GetDevEnvironment484Example: summary: Default GetDevEnvironment 484 response x-microcks-default: true value: example-value '485': description: AccessDeniedException content: application/json: schema: $ref: '#/components/schemas/AccessDeniedException' examples: GetDevEnvironment485Example: summary: Default GetDevEnvironment 485 response x-microcks-default: true value: example-value parameters: - name: spaceName in: path required: true description: The name of the space. schema: type: string pattern: '[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 3 maxLength: 63 - name: projectName in: path required: true description: The name of the project in the space. schema: type: string pattern: '[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 3 maxLength: 63 - name: id in: path required: true description: 'The system-generated unique ID of the Dev Environment for which you want to view information. To retrieve a list of Dev Environment IDs, use ListDevEnvironments.' schema: type: string pattern: '[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}' summary: Amazon CodeCatalyst Get Dev Environment x-microcks-operation: delay: 0 dispatcher: FALLBACK patch: operationId: UpdateDevEnvironment description: Changes one or more values for a Dev Environment. Updating certain values of the Dev Environment will cause a restart. responses: '200': description: Success content: application/json: schema: $ref: '#/components/schemas/UpdateDevEnvironmentResponse' examples: UpdateDevEnvironment200Example: summary: Default UpdateDevEnvironment 200 response x-microcks-default: true value: id: '500123' spaceName: example-resource projectName: example-resource alias: example-value ides: '500123' instanceType: STANDARD inactivityTimeoutMinutes: example-value clientToken: example-value '480': description: ThrottlingException content: application/json: schema: $ref: '#/components/schemas/ThrottlingException' examples: UpdateDevEnvironment480Example: summary: Default UpdateDevEnvironment 480 response x-microcks-default: true value: example-value '481': description: ConflictException content: application/json: schema: $ref: '#/components/schemas/ConflictException' examples: UpdateDevEnvironment481Example: summary: Default UpdateDevEnvironment 481 response x-microcks-default: true value: example-value '482': description: ValidationException content: application/json: schema: $ref: '#/components/schemas/ValidationException' examples: UpdateDevEnvironment482Example: summary: Default UpdateDevEnvironment 482 response x-microcks-default: true value: example-value '483': description: ServiceQuotaExceededException content: application/json: schema: $ref: '#/components/schemas/ServiceQuotaExceededException' examples: UpdateDevEnvironment483Example: summary: Default UpdateDevEnvironment 483 response x-microcks-default: true value: example-value '484': description: ResourceNotFoundException content: application/json: schema: $ref: '#/components/schemas/ResourceNotFoundException' examples: UpdateDevEnvironment484Example: summary: Default UpdateDevEnvironment 484 response x-microcks-default: true value: example-value '485': description: AccessDeniedException content: application/json: schema: $ref: '#/components/schemas/AccessDeniedException' examples: UpdateDevEnvironment485Example: summary: Default UpdateDevEnvironment 485 response x-microcks-default: true value: example-value parameters: - name: spaceName in: path required: true description: The name of the space. schema: type: string pattern: '[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 3 maxLength: 63 - name: projectName in: path required: true description: The name of the project in the space. schema: type: string pattern: '[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 3 maxLength: 63 - name: id in: path required: true description: 'The system-generated unique ID of the Dev Environment. ' schema: type: string pattern: '[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}' requestBody: required: true content: application/json: schema: type: object properties: alias: description: The user-specified alias for the Dev Environment. Changing this value will not cause a restart. type: string pattern: '$|^[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 0 maxLength: 128 ides: description: Information about the integrated development environment (IDE) configured for a Dev Environment. type: array items: $ref: '#/components/schemas/IdeConfiguration' minItems: 0 maxItems: 1 instanceType: description:

The Amazon EC2 instace type to use for the Dev Environment.

Changing this value will cause a restart of the Dev Environment if it is running.

type: string enum: - dev.standard1.small - dev.standard1.medium - dev.standard1.large - dev.standard1.xlarge inactivityTimeoutMinutes: description: '

The amount of time the Dev Environment will run without any activity detected before stopping, in minutes. Only whole integers are allowed. Dev Environments consume compute minutes when running.

Changing this value will cause a restart of the Dev Environment if it is running.

' type: integer minimum: 0 maximum: 1200 clientToken: description: 'A user-specified idempotency token. Idempotency ensures that an API request completes only once. With an idempotent request, if the original request completes successfully, the subsequent retries return the result from the original successful request and have no additional effect.' type: string minLength: 1 maxLength: 1024 examples: UpdateDevEnvironmentRequestExample: summary: Default UpdateDevEnvironment request x-microcks-default: true value: alias: example-value ides: - runtime: example-value name: example-resource instanceType: dev.standard1.small inactivityTimeoutMinutes: 1718153645993 clientToken: example-value summary: Amazon CodeCatalyst Update Dev Environment x-microcks-operation: delay: 0 dispatcher: FALLBACK '/v1/spaces/{spaceName}/projects/{name}': delete: operationId: DeleteProject description: Deletes a project in a space. responses: '200': description: Success content: application/json: schema: $ref: '#/components/schemas/DeleteProjectResponse' examples: DeleteProject200Example: summary: Default DeleteProject 200 response x-microcks-default: true value: spaceName: example-resource name: example-resource displayName: example-resource '480': description: ThrottlingException content: application/json: schema: $ref: '#/components/schemas/ThrottlingException' examples: DeleteProject480Example: summary: Default DeleteProject 480 response x-microcks-default: true value: example-value '481': description: ConflictException content: application/json: schema: $ref: '#/components/schemas/ConflictException' examples: DeleteProject481Example: summary: Default DeleteProject 481 response x-microcks-default: true value: example-value '482': description: ValidationException content: application/json: schema: $ref: '#/components/schemas/ValidationException' examples: DeleteProject482Example: summary: Default DeleteProject 482 response x-microcks-default: true value: example-value '483': description: ServiceQuotaExceededException content: application/json: schema: $ref: '#/components/schemas/ServiceQuotaExceededException' examples: DeleteProject483Example: summary: Default DeleteProject 483 response x-microcks-default: true value: example-value '484': description: ResourceNotFoundException content: application/json: schema: $ref: '#/components/schemas/ResourceNotFoundException' examples: DeleteProject484Example: summary: Default DeleteProject 484 response x-microcks-default: true value: example-value '485': description: AccessDeniedException content: application/json: schema: $ref: '#/components/schemas/AccessDeniedException' examples: DeleteProject485Example: summary: Default DeleteProject 485 response x-microcks-default: true value: example-value parameters: - name: spaceName in: path required: true description: The name of the space. schema: type: string pattern: '[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 3 maxLength: 63 - name: name in: path required: true description: 'The name of the project in the space. To retrieve a list of project names, use ListProjects.' schema: type: string pattern: '[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 3 maxLength: 63 summary: Amazon CodeCatalyst Delete Project x-microcks-operation: delay: 0 dispatcher: FALLBACK get: operationId: GetProject description: Returns information about a project. responses: '200': description: Success content: application/json: schema: $ref: '#/components/schemas/GetProjectResponse' examples: GetProject200Example: summary: Default GetProject 200 response x-microcks-default: true value: spaceName: example-resource name: example-resource displayName: example-resource description: Example description '480': description: ThrottlingException content: application/json: schema: $ref: '#/components/schemas/ThrottlingException' examples: GetProject480Example: summary: Default GetProject 480 response x-microcks-default: true value: example-value '481': description: ConflictException content: application/json: schema: $ref: '#/components/schemas/ConflictException' examples: GetProject481Example: summary: Default GetProject 481 response x-microcks-default: true value: example-value '482': description: ValidationException content: application/json: schema: $ref: '#/components/schemas/ValidationException' examples: GetProject482Example: summary: Default GetProject 482 response x-microcks-default: true value: example-value '483': description: ServiceQuotaExceededException content: application/json: schema: $ref: '#/components/schemas/ServiceQuotaExceededException' examples: GetProject483Example: summary: Default GetProject 483 response x-microcks-default: true value: example-value '484': description: ResourceNotFoundException content: application/json: schema: $ref: '#/components/schemas/ResourceNotFoundException' examples: GetProject484Example: summary: Default GetProject 484 response x-microcks-default: true value: example-value '485': description: AccessDeniedException content: application/json: schema: $ref: '#/components/schemas/AccessDeniedException' examples: GetProject485Example: summary: Default GetProject 485 response x-microcks-default: true value: example-value parameters: - name: spaceName in: path required: true description: The name of the space. schema: type: string pattern: '[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 3 maxLength: 63 - name: name in: path required: true description: The name of the project in the space. schema: type: string pattern: '[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 3 maxLength: 63 summary: Amazon CodeCatalyst Get Project x-microcks-operation: delay: 0 dispatcher: FALLBACK patch: operationId: UpdateProject description: Changes one or more values for a project. responses: '200': description: Success content: application/json: schema: $ref: '#/components/schemas/UpdateProjectResponse' examples: UpdateProject200Example: summary: Default UpdateProject 200 response x-microcks-default: true value: spaceName: example-resource name: example-resource displayName: example-resource description: Example description '480': description: ThrottlingException content: application/json: schema: $ref: '#/components/schemas/ThrottlingException' examples: UpdateProject480Example: summary: Default UpdateProject 480 response x-microcks-default: true value: example-value '481': description: ConflictException content: application/json: schema: $ref: '#/components/schemas/ConflictException' examples: UpdateProject481Example: summary: Default UpdateProject 481 response x-microcks-default: true value: example-value '482': description: ValidationException content: application/json: schema: $ref: '#/components/schemas/ValidationException' examples: UpdateProject482Example: summary: Default UpdateProject 482 response x-microcks-default: true value: example-value '483': description: ServiceQuotaExceededException content: application/json: schema: $ref: '#/components/schemas/ServiceQuotaExceededException' examples: UpdateProject483Example: summary: Default UpdateProject 483 response x-microcks-default: true value: example-value '484': description: ResourceNotFoundException content: application/json: schema: $ref: '#/components/schemas/ResourceNotFoundException' examples: UpdateProject484Example: summary: Default UpdateProject 484 response x-microcks-default: true value: example-value '485': description: AccessDeniedException content: application/json: schema: $ref: '#/components/schemas/AccessDeniedException' examples: UpdateProject485Example: summary: Default UpdateProject 485 response x-microcks-default: true value: example-value parameters: - name: spaceName in: path required: true description: The name of the space. schema: type: string pattern: '[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 3 maxLength: 63 - name: name in: path required: true description: The name of the project. schema: type: string pattern: '[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 3 maxLength: 63 requestBody: required: true content: application/json: schema: type: object properties: description: description: The description of the project. type: string pattern: '[a-zA-Z0-9]+(?:[-_a-zA-Z0-9.,;:/\+=?&$% ])*' minLength: 0 maxLength: 200 examples: UpdateProjectRequestExample: summary: Default UpdateProject request x-microcks-default: true value: description: Example description summary: Amazon CodeCatalyst Update Project x-microcks-operation: delay: 0 dispatcher: FALLBACK '/v1/spaces/{name}': delete: operationId: DeleteSpace description: '

Deletes a space.

Deleting a space cannot be undone. Additionally, since space names must be unique across Amazon CodeCatalyst, you cannot reuse names of deleted spaces.

' responses: '200': description: Success content: application/json: schema: $ref: '#/components/schemas/DeleteSpaceResponse' examples: DeleteSpace200Example: summary: Default DeleteSpace 200 response x-microcks-default: true value: name: example-resource displayName: example-resource '480': description: ThrottlingException content: application/json: schema: $ref: '#/components/schemas/ThrottlingException' examples: DeleteSpace480Example: summary: Default DeleteSpace 480 response x-microcks-default: true value: example-value '481': description: ConflictException content: application/json: schema: $ref: '#/components/schemas/ConflictException' examples: DeleteSpace481Example: summary: Default DeleteSpace 481 response x-microcks-default: true value: example-value '482': description: ValidationException content: application/json: schema: $ref: '#/components/schemas/ValidationException' examples: DeleteSpace482Example: summary: Default DeleteSpace 482 response x-microcks-default: true value: example-value '483': description: ServiceQuotaExceededException content: application/json: schema: $ref: '#/components/schemas/ServiceQuotaExceededException' examples: DeleteSpace483Example: summary: Default DeleteSpace 483 response x-microcks-default: true value: example-value '484': description: ResourceNotFoundException content: application/json: schema: $ref: '#/components/schemas/ResourceNotFoundException' examples: DeleteSpace484Example: summary: Default DeleteSpace 484 response x-microcks-default: true value: example-value '485': description: AccessDeniedException content: application/json: schema: $ref: '#/components/schemas/AccessDeniedException' examples: DeleteSpace485Example: summary: Default DeleteSpace 485 response x-microcks-default: true value: example-value parameters: - name: name in: path required: true description: 'The name of the space. To retrieve a list of space names, use ListSpaces.' schema: type: string pattern: '[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 3 maxLength: 63 summary: Amazon CodeCatalyst Delete Space x-microcks-operation: delay: 0 dispatcher: FALLBACK get: operationId: GetSpace description: Returns information about an space. responses: '200': description: Success content: application/json: schema: $ref: '#/components/schemas/GetSpaceResponse' examples: GetSpace200Example: summary: Default GetSpace 200 response x-microcks-default: true value: name: example-resource regionName: example-resource displayName: example-resource description: Example description '480': description: ThrottlingException content: application/json: schema: $ref: '#/components/schemas/ThrottlingException' examples: GetSpace480Example: summary: Default GetSpace 480 response x-microcks-default: true value: example-value '481': description: ConflictException content: application/json: schema: $ref: '#/components/schemas/ConflictException' examples: GetSpace481Example: summary: Default GetSpace 481 response x-microcks-default: true value: example-value '482': description: ValidationException content: application/json: schema: $ref: '#/components/schemas/ValidationException' examples: GetSpace482Example: summary: Default GetSpace 482 response x-microcks-default: true value: example-value '483': description: ServiceQuotaExceededException content: application/json: schema: $ref: '#/components/schemas/ServiceQuotaExceededException' examples: GetSpace483Example: summary: Default GetSpace 483 response x-microcks-default: true value: example-value '484': description: ResourceNotFoundException content: application/json: schema: $ref: '#/components/schemas/ResourceNotFoundException' examples: GetSpace484Example: summary: Default GetSpace 484 response x-microcks-default: true value: example-value '485': description: AccessDeniedException content: application/json: schema: $ref: '#/components/schemas/AccessDeniedException' examples: GetSpace485Example: summary: Default GetSpace 485 response x-microcks-default: true value: example-value parameters: - name: name in: path required: true description: The name of the space. schema: type: string pattern: '[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 3 maxLength: 63 summary: Amazon CodeCatalyst Get Space x-microcks-operation: delay: 0 dispatcher: FALLBACK patch: operationId: UpdateSpace description: Changes one or more values for a space. responses: '200': description: Success content: application/json: schema: $ref: '#/components/schemas/UpdateSpaceResponse' examples: UpdateSpace200Example: summary: Default UpdateSpace 200 response x-microcks-default: true value: name: example-resource displayName: example-resource description: Example description '480': description: ThrottlingException content: application/json: schema: $ref: '#/components/schemas/ThrottlingException' examples: UpdateSpace480Example: summary: Default UpdateSpace 480 response x-microcks-default: true value: example-value '481': description: ConflictException content: application/json: schema: $ref: '#/components/schemas/ConflictException' examples: UpdateSpace481Example: summary: Default UpdateSpace 481 response x-microcks-default: true value: example-value '482': description: ValidationException content: application/json: schema: $ref: '#/components/schemas/ValidationException' examples: UpdateSpace482Example: summary: Default UpdateSpace 482 response x-microcks-default: true value: example-value '483': description: ServiceQuotaExceededException content: application/json: schema: $ref: '#/components/schemas/ServiceQuotaExceededException' examples: UpdateSpace483Example: summary: Default UpdateSpace 483 response x-microcks-default: true value: example-value '484': description: ResourceNotFoundException content: application/json: schema: $ref: '#/components/schemas/ResourceNotFoundException' examples: UpdateSpace484Example: summary: Default UpdateSpace 484 response x-microcks-default: true value: example-value '485': description: AccessDeniedException content: application/json: schema: $ref: '#/components/schemas/AccessDeniedException' examples: UpdateSpace485Example: summary: Default UpdateSpace 485 response x-microcks-default: true value: example-value parameters: - name: name in: path required: true description: The name of the space. schema: type: string pattern: '[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 3 maxLength: 63 requestBody: required: true content: application/json: schema: type: object properties: description: description: The description of the space. type: string pattern: '[a-zA-Z0-9]+(?:[-_a-zA-Z0-9.,;:/\+=?&$% ])*' minLength: 0 maxLength: 200 examples: UpdateSpaceRequestExample: summary: Default UpdateSpace request x-microcks-default: true value: description: Example description summary: Amazon CodeCatalyst Update Space x-microcks-operation: delay: 0 dispatcher: FALLBACK '/v1/spaces/{spaceName}/projects/{projectName}/sourceRepositories/{sourceRepositoryName}/cloneUrls': get: operationId: GetSourceRepositoryCloneUrls description: Returns information about the URLs that can be used with a Git client to clone a source repository. responses: '200': description: Success content: application/json: schema: $ref: '#/components/schemas/GetSourceRepositoryCloneUrlsResponse' examples: GetSourceRepositoryCloneUrls200Example: summary: Default GetSourceRepositoryCloneUrls 200 response x-microcks-default: true value: https: example-value '480': description: ThrottlingException content: application/json: schema: $ref: '#/components/schemas/ThrottlingException' examples: GetSourceRepositoryCloneUrls480Example: summary: Default GetSourceRepositoryCloneUrls 480 response x-microcks-default: true value: https://example.amazonaws.com '481': description: ConflictException content: application/json: schema: $ref: '#/components/schemas/ConflictException' examples: GetSourceRepositoryCloneUrls481Example: summary: Default GetSourceRepositoryCloneUrls 481 response x-microcks-default: true value: https://example.amazonaws.com '482': description: ValidationException content: application/json: schema: $ref: '#/components/schemas/ValidationException' examples: GetSourceRepositoryCloneUrls482Example: summary: Default GetSourceRepositoryCloneUrls 482 response x-microcks-default: true value: https://example.amazonaws.com '483': description: ServiceQuotaExceededException content: application/json: schema: $ref: '#/components/schemas/ServiceQuotaExceededException' examples: GetSourceRepositoryCloneUrls483Example: summary: Default GetSourceRepositoryCloneUrls 483 response x-microcks-default: true value: https://example.amazonaws.com '484': description: ResourceNotFoundException content: application/json: schema: $ref: '#/components/schemas/ResourceNotFoundException' examples: GetSourceRepositoryCloneUrls484Example: summary: Default GetSourceRepositoryCloneUrls 484 response x-microcks-default: true value: https://example.amazonaws.com '485': description: AccessDeniedException content: application/json: schema: $ref: '#/components/schemas/AccessDeniedException' examples: GetSourceRepositoryCloneUrls485Example: summary: Default GetSourceRepositoryCloneUrls 485 response x-microcks-default: true value: https://example.amazonaws.com parameters: - name: spaceName in: path required: true description: The name of the space. schema: type: string pattern: '[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 3 maxLength: 63 - name: projectName in: path required: true description: The name of the project in the space. schema: type: string pattern: '[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 3 maxLength: 63 - name: sourceRepositoryName in: path required: true description: The name of the source repository. schema: type: string pattern: '(?!.*[.]git$)[\w\-.]*' minLength: 1 maxLength: 100 summary: Amazon CodeCatalyst Get Source Repository Clone Urls x-microcks-operation: delay: 0 dispatcher: FALLBACK '/v1/spaces/{spaceName}/subscription': get: operationId: GetSubscription description: Returns information about the Amazon Web Services account used for billing purposes and the billing plan for the space. responses: '200': description: Success content: application/json: schema: $ref: '#/components/schemas/GetSubscriptionResponse' examples: GetSubscription200Example: summary: Default GetSubscription 200 response x-microcks-default: true value: subscriptionType: STANDARD awsAccountName: example-resource '480': description: ThrottlingException content: application/json: schema: $ref: '#/components/schemas/ThrottlingException' examples: GetSubscription480Example: summary: Default GetSubscription 480 response x-microcks-default: true value: example-value '481': description: ConflictException content: application/json: schema: $ref: '#/components/schemas/ConflictException' examples: GetSubscription481Example: summary: Default GetSubscription 481 response x-microcks-default: true value: example-value '482': description: ValidationException content: application/json: schema: $ref: '#/components/schemas/ValidationException' examples: GetSubscription482Example: summary: Default GetSubscription 482 response x-microcks-default: true value: example-value '483': description: ServiceQuotaExceededException content: application/json: schema: $ref: '#/components/schemas/ServiceQuotaExceededException' examples: GetSubscription483Example: summary: Default GetSubscription 483 response x-microcks-default: true value: example-value '484': description: ResourceNotFoundException content: application/json: schema: $ref: '#/components/schemas/ResourceNotFoundException' examples: GetSubscription484Example: summary: Default GetSubscription 484 response x-microcks-default: true value: example-value '485': description: AccessDeniedException content: application/json: schema: $ref: '#/components/schemas/AccessDeniedException' examples: GetSubscription485Example: summary: Default GetSubscription 485 response x-microcks-default: true value: example-value parameters: - name: spaceName in: path required: true description: The name of the space. schema: type: string pattern: '[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 3 maxLength: 63 summary: Amazon CodeCatalyst Get Subscription x-microcks-operation: delay: 0 dispatcher: FALLBACK /userDetails: get: operationId: GetUserDetails description: 'Returns information about a user. ' responses: '200': description: Success content: application/json: schema: $ref: '#/components/schemas/GetUserDetailsResponse' examples: GetUserDetails200Example: summary: Default GetUserDetails 200 response x-microcks-default: true value: userId: '500123' userName: example-resource displayName: example-resource primaryEmail: example-value version: 1.0.0 '480': description: ThrottlingException content: application/json: schema: $ref: '#/components/schemas/ThrottlingException' examples: GetUserDetails480Example: summary: Default GetUserDetails 480 response x-microcks-default: true value: example-value '481': description: ConflictException content: application/json: schema: $ref: '#/components/schemas/ConflictException' examples: GetUserDetails481Example: summary: Default GetUserDetails 481 response x-microcks-default: true value: example-value '482': description: ValidationException content: application/json: schema: $ref: '#/components/schemas/ValidationException' examples: GetUserDetails482Example: summary: Default GetUserDetails 482 response x-microcks-default: true value: example-value '483': description: ServiceQuotaExceededException content: application/json: schema: $ref: '#/components/schemas/ServiceQuotaExceededException' examples: GetUserDetails483Example: summary: Default GetUserDetails 483 response x-microcks-default: true value: example-value '484': description: ResourceNotFoundException content: application/json: schema: $ref: '#/components/schemas/ResourceNotFoundException' examples: GetUserDetails484Example: summary: Default GetUserDetails 484 response x-microcks-default: true value: example-value '485': description: AccessDeniedException content: application/json: schema: $ref: '#/components/schemas/AccessDeniedException' examples: GetUserDetails485Example: summary: Default GetUserDetails 485 response x-microcks-default: true value: example-value parameters: - name: id in: query required: false description: 'The system-generated unique ID of the user. ' schema: type: string minLength: 1 maxLength: 256 - name: userName in: query required: false description: The name of the user as displayed in Amazon CodeCatalyst. schema: type: string pattern: '[a-zA-Z0-9]{3,100}' minLength: 3 maxLength: 100 summary: Amazon CodeCatalyst Get User Details x-microcks-operation: delay: 0 dispatcher: FALLBACK '/v1/spaces/{spaceName}/projects/{projectName}/devEnvironments/{devEnvironmentId}/sessions': post: operationId: ListDevEnvironmentSessions description: Retrieves a list of active sessions for a Dev Environment in a project. responses: '200': description: Success content: application/json: schema: $ref: '#/components/schemas/ListDevEnvironmentSessionsResponse' examples: ListDevEnvironmentSessions200Example: summary: Default ListDevEnvironmentSessions 200 response x-microcks-default: true value: items: example-value nextToken: example-value '480': description: ThrottlingException content: application/json: schema: $ref: '#/components/schemas/ThrottlingException' examples: ListDevEnvironmentSessions480Example: summary: Default ListDevEnvironmentSessions 480 response x-microcks-default: true value: example-value '481': description: ConflictException content: application/json: schema: $ref: '#/components/schemas/ConflictException' examples: ListDevEnvironmentSessions481Example: summary: Default ListDevEnvironmentSessions 481 response x-microcks-default: true value: example-value '482': description: ValidationException content: application/json: schema: $ref: '#/components/schemas/ValidationException' examples: ListDevEnvironmentSessions482Example: summary: Default ListDevEnvironmentSessions 482 response x-microcks-default: true value: example-value '483': description: ServiceQuotaExceededException content: application/json: schema: $ref: '#/components/schemas/ServiceQuotaExceededException' examples: ListDevEnvironmentSessions483Example: summary: Default ListDevEnvironmentSessions 483 response x-microcks-default: true value: example-value '484': description: ResourceNotFoundException content: application/json: schema: $ref: '#/components/schemas/ResourceNotFoundException' examples: ListDevEnvironmentSessions484Example: summary: Default ListDevEnvironmentSessions 484 response x-microcks-default: true value: example-value '485': description: AccessDeniedException content: application/json: schema: $ref: '#/components/schemas/AccessDeniedException' examples: ListDevEnvironmentSessions485Example: summary: Default ListDevEnvironmentSessions 485 response x-microcks-default: true value: example-value parameters: - name: spaceName in: path required: true description: The name of the space. schema: type: string pattern: '[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 3 maxLength: 63 - name: projectName in: path required: true description: The name of the project in the space. schema: type: string pattern: '[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 3 maxLength: 63 - name: devEnvironmentId in: path required: true description: The system-generated unique ID of the Dev Environment. schema: type: string pattern: '[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}' - name: maxResults in: query schema: type: string description: Pagination limit required: false - name: nextToken in: query schema: type: string description: Pagination token required: false requestBody: required: true content: application/json: schema: type: object properties: nextToken: description: 'A token returned from a call to this API to indicate the next batch of results to return, if any.' type: string minLength: 1 maxLength: 10000 maxResults: description: '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 NextToken element, which you can use to obtain additional results.' type: integer minimum: 1 maximum: 200 examples: ListDevEnvironmentSessionsRequestExample: summary: Default ListDevEnvironmentSessions request x-microcks-default: true value: nextToken: example-value maxResults: 1 summary: Amazon CodeCatalyst List Dev Environment Sessions x-microcks-operation: delay: 0 dispatcher: FALLBACK '/v1/spaces/{spaceName}/eventLogs': post: operationId: ListEventLogs description: Retrieves a list of events that occurred during a specified time period in a space. You can use these events to audit user and system activity in a space. responses: '200': description: Success content: application/json: schema: $ref: '#/components/schemas/ListEventLogsResponse' examples: ListEventLogs200Example: summary: Default ListEventLogs 200 response x-microcks-default: true value: nextToken: example-value items: example-value '480': description: ThrottlingException content: application/json: schema: $ref: '#/components/schemas/ThrottlingException' examples: ListEventLogs480Example: summary: Default ListEventLogs 480 response x-microcks-default: true value: example-value '481': description: ConflictException content: application/json: schema: $ref: '#/components/schemas/ConflictException' examples: ListEventLogs481Example: summary: Default ListEventLogs 481 response x-microcks-default: true value: example-value '482': description: ValidationException content: application/json: schema: $ref: '#/components/schemas/ValidationException' examples: ListEventLogs482Example: summary: Default ListEventLogs 482 response x-microcks-default: true value: example-value '483': description: ServiceQuotaExceededException content: application/json: schema: $ref: '#/components/schemas/ServiceQuotaExceededException' examples: ListEventLogs483Example: summary: Default ListEventLogs 483 response x-microcks-default: true value: example-value '484': description: ResourceNotFoundException content: application/json: schema: $ref: '#/components/schemas/ResourceNotFoundException' examples: ListEventLogs484Example: summary: Default ListEventLogs 484 response x-microcks-default: true value: example-value '485': description: AccessDeniedException content: application/json: schema: $ref: '#/components/schemas/AccessDeniedException' examples: ListEventLogs485Example: summary: Default ListEventLogs 485 response x-microcks-default: true value: example-value parameters: - name: spaceName in: path required: true description: The name of the space. schema: type: string pattern: '[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 3 maxLength: 63 - name: maxResults in: query schema: type: string description: Pagination limit required: false - name: nextToken in: query schema: type: string description: Pagination token required: false requestBody: required: true content: application/json: schema: type: object required: - startTime - endTime properties: startTime: description: 'The date and time when you want to start retrieving events, in coordinated universal time (UTC) timestamp format as specified in RFC 3339.' type: string format: date-time endTime: description: 'The time after which you do not want any events retrieved, in coordinated universal time (UTC) timestamp format as specified in RFC 3339.' type: string format: date-time eventName: description: The name of the event. type: string nextToken: description: 'A token returned from a call to this API to indicate the next batch of results to return, if any.' type: string minLength: 1 maxLength: 10000 maxResults: description: '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 NextToken element, which you can use to obtain additional results.' type: integer minimum: 1 maximum: 250 examples: ListEventLogsRequestExample: summary: Default ListEventLogs request x-microcks-default: true value: startTime: example-value endTime: example-value eventName: example-resource nextToken: example-value maxResults: 1 summary: Amazon CodeCatalyst List Event Logs x-microcks-operation: delay: 0 dispatcher: FALLBACK '/v1/spaces/{spaceName}/projects/{projectName}/sourceRepositories': post: operationId: ListSourceRepositories description: Retrieves a list of source repositories in a project. responses: '200': description: Success content: application/json: schema: $ref: '#/components/schemas/ListSourceRepositoriesResponse' examples: ListSourceRepositories200Example: summary: Default ListSourceRepositories 200 response x-microcks-default: true value: items: example-value nextToken: example-value '480': description: ThrottlingException content: application/json: schema: $ref: '#/components/schemas/ThrottlingException' examples: ListSourceRepositories480Example: summary: Default ListSourceRepositories 480 response x-microcks-default: true value: example-value '481': description: ConflictException content: application/json: schema: $ref: '#/components/schemas/ConflictException' examples: ListSourceRepositories481Example: summary: Default ListSourceRepositories 481 response x-microcks-default: true value: example-value '482': description: ValidationException content: application/json: schema: $ref: '#/components/schemas/ValidationException' examples: ListSourceRepositories482Example: summary: Default ListSourceRepositories 482 response x-microcks-default: true value: example-value '483': description: ServiceQuotaExceededException content: application/json: schema: $ref: '#/components/schemas/ServiceQuotaExceededException' examples: ListSourceRepositories483Example: summary: Default ListSourceRepositories 483 response x-microcks-default: true value: example-value '484': description: ResourceNotFoundException content: application/json: schema: $ref: '#/components/schemas/ResourceNotFoundException' examples: ListSourceRepositories484Example: summary: Default ListSourceRepositories 484 response x-microcks-default: true value: example-value '485': description: AccessDeniedException content: application/json: schema: $ref: '#/components/schemas/AccessDeniedException' examples: ListSourceRepositories485Example: summary: Default ListSourceRepositories 485 response x-microcks-default: true value: example-value parameters: - name: spaceName in: path required: true description: The name of the space. schema: type: string pattern: '[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 3 maxLength: 63 - name: projectName in: path required: true description: The name of the project in the space. schema: type: string pattern: '[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 3 maxLength: 63 - name: maxResults in: query schema: type: string description: Pagination limit required: false - name: nextToken in: query schema: type: string description: Pagination token required: false requestBody: required: true content: application/json: schema: type: object properties: nextToken: description: 'A token returned from a call to this API to indicate the next batch of results to return, if any.' type: string minLength: 1 maxLength: 10000 maxResults: description: '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 NextToken element, which you can use to obtain additional results.' type: integer minimum: 1 maximum: 200 examples: ListSourceRepositoriesRequestExample: summary: Default ListSourceRepositories request x-microcks-default: true value: nextToken: example-value maxResults: 1 summary: Amazon CodeCatalyst List Source Repositories x-microcks-operation: delay: 0 dispatcher: FALLBACK '/v1/spaces/{spaceName}/projects/{projectName}/sourceRepositories/{sourceRepositoryName}/branches': post: operationId: ListSourceRepositoryBranches description: Retrieves a list of branches in a specified source repository. responses: '200': description: Success content: application/json: schema: $ref: '#/components/schemas/ListSourceRepositoryBranchesResponse' examples: ListSourceRepositoryBranches200Example: summary: Default ListSourceRepositoryBranches 200 response x-microcks-default: true value: nextToken: example-value items: example-value '480': description: ThrottlingException content: application/json: schema: $ref: '#/components/schemas/ThrottlingException' examples: ListSourceRepositoryBranches480Example: summary: Default ListSourceRepositoryBranches 480 response x-microcks-default: true value: example-value '481': description: ConflictException content: application/json: schema: $ref: '#/components/schemas/ConflictException' examples: ListSourceRepositoryBranches481Example: summary: Default ListSourceRepositoryBranches 481 response x-microcks-default: true value: example-value '482': description: ValidationException content: application/json: schema: $ref: '#/components/schemas/ValidationException' examples: ListSourceRepositoryBranches482Example: summary: Default ListSourceRepositoryBranches 482 response x-microcks-default: true value: example-value '483': description: ServiceQuotaExceededException content: application/json: schema: $ref: '#/components/schemas/ServiceQuotaExceededException' examples: ListSourceRepositoryBranches483Example: summary: Default ListSourceRepositoryBranches 483 response x-microcks-default: true value: example-value '484': description: ResourceNotFoundException content: application/json: schema: $ref: '#/components/schemas/ResourceNotFoundException' examples: ListSourceRepositoryBranches484Example: summary: Default ListSourceRepositoryBranches 484 response x-microcks-default: true value: example-value '485': description: AccessDeniedException content: application/json: schema: $ref: '#/components/schemas/AccessDeniedException' examples: ListSourceRepositoryBranches485Example: summary: Default ListSourceRepositoryBranches 485 response x-microcks-default: true value: example-value parameters: - name: spaceName in: path required: true description: The name of the space. schema: type: string pattern: '[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 3 maxLength: 63 - name: projectName in: path required: true description: The name of the project in the space. schema: type: string pattern: '[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 3 maxLength: 63 - name: sourceRepositoryName in: path required: true description: The name of the source repository. schema: type: string pattern: '(?!.*[.]git$)[\w\-.]*' minLength: 1 maxLength: 100 - name: maxResults in: query schema: type: string description: Pagination limit required: false - name: nextToken in: query schema: type: string description: Pagination token required: false requestBody: required: true content: application/json: schema: type: object properties: nextToken: description: 'A token returned from a call to this API to indicate the next batch of results to return, if any.' type: string minLength: 1 maxLength: 10000 maxResults: description: '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 NextToken element, which you can use to obtain additional results.' type: integer minimum: 1 maximum: 50 examples: ListSourceRepositoryBranchesRequestExample: summary: Default ListSourceRepositoryBranches request x-microcks-default: true value: nextToken: example-value maxResults: 1 summary: Amazon CodeCatalyst List Source Repository Branches x-microcks-operation: delay: 0 dispatcher: FALLBACK /v1/spaces: post: operationId: ListSpaces description: Retrieves a list of spaces. responses: '200': description: Success content: application/json: schema: $ref: '#/components/schemas/ListSpacesResponse' examples: ListSpaces200Example: summary: Default ListSpaces 200 response x-microcks-default: true value: nextToken: example-value items: example-value '480': description: ThrottlingException content: application/json: schema: $ref: '#/components/schemas/ThrottlingException' examples: ListSpaces480Example: summary: Default ListSpaces 480 response x-microcks-default: true value: example-value '481': description: ConflictException content: application/json: schema: $ref: '#/components/schemas/ConflictException' examples: ListSpaces481Example: summary: Default ListSpaces 481 response x-microcks-default: true value: example-value '482': description: ValidationException content: application/json: schema: $ref: '#/components/schemas/ValidationException' examples: ListSpaces482Example: summary: Default ListSpaces 482 response x-microcks-default: true value: example-value '483': description: ServiceQuotaExceededException content: application/json: schema: $ref: '#/components/schemas/ServiceQuotaExceededException' examples: ListSpaces483Example: summary: Default ListSpaces 483 response x-microcks-default: true value: example-value '484': description: ResourceNotFoundException content: application/json: schema: $ref: '#/components/schemas/ResourceNotFoundException' examples: ListSpaces484Example: summary: Default ListSpaces 484 response x-microcks-default: true value: example-value '485': description: AccessDeniedException content: application/json: schema: $ref: '#/components/schemas/AccessDeniedException' examples: ListSpaces485Example: summary: Default ListSpaces 485 response x-microcks-default: true value: example-value parameters: - name: nextToken in: query schema: type: string description: Pagination token required: false requestBody: required: true content: application/json: schema: type: object properties: nextToken: description: 'A token returned from a call to this API to indicate the next batch of results to return, if any.' type: string minLength: 1 maxLength: 10000 examples: ListSpacesRequestExample: summary: Default ListSpaces request x-microcks-default: true value: nextToken: example-value summary: Amazon CodeCatalyst List Spaces x-microcks-operation: delay: 0 dispatcher: FALLBACK '/v1/spaces/{spaceName}/projects/{projectName}/devEnvironments/{id}/start': put: operationId: StartDevEnvironment description: 'Starts a specified Dev Environment and puts it into an active state. ' responses: '200': description: Success content: application/json: schema: $ref: '#/components/schemas/StartDevEnvironmentResponse' examples: StartDevEnvironment200Example: summary: Default StartDevEnvironment 200 response x-microcks-default: true value: spaceName: example-resource projectName: example-resource id: '500123' status: ACTIVE '480': description: ThrottlingException content: application/json: schema: $ref: '#/components/schemas/ThrottlingException' examples: StartDevEnvironment480Example: summary: Default StartDevEnvironment 480 response x-microcks-default: true value: example-value '481': description: ConflictException content: application/json: schema: $ref: '#/components/schemas/ConflictException' examples: StartDevEnvironment481Example: summary: Default StartDevEnvironment 481 response x-microcks-default: true value: example-value '482': description: ValidationException content: application/json: schema: $ref: '#/components/schemas/ValidationException' examples: StartDevEnvironment482Example: summary: Default StartDevEnvironment 482 response x-microcks-default: true value: example-value '483': description: ServiceQuotaExceededException content: application/json: schema: $ref: '#/components/schemas/ServiceQuotaExceededException' examples: StartDevEnvironment483Example: summary: Default StartDevEnvironment 483 response x-microcks-default: true value: example-value '484': description: ResourceNotFoundException content: application/json: schema: $ref: '#/components/schemas/ResourceNotFoundException' examples: StartDevEnvironment484Example: summary: Default StartDevEnvironment 484 response x-microcks-default: true value: example-value '485': description: AccessDeniedException content: application/json: schema: $ref: '#/components/schemas/AccessDeniedException' examples: StartDevEnvironment485Example: summary: Default StartDevEnvironment 485 response x-microcks-default: true value: example-value parameters: - name: spaceName in: path required: true description: The name of the space. schema: type: string pattern: '[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 3 maxLength: 63 - name: projectName in: path required: true description: The name of the project in the space. schema: type: string pattern: '[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 3 maxLength: 63 - name: id in: path required: true description: 'The system-generated unique ID of the Dev Environment. ' schema: type: string pattern: '[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}' requestBody: required: true content: application/json: schema: type: object properties: ides: description: 'Information about the integrated development environment (IDE) configured for a Dev Environment. ' type: array items: $ref: '#/components/schemas/IdeConfiguration' minItems: 0 maxItems: 1 instanceType: description: 'The Amazon EC2 instace type to use for the Dev Environment. ' type: string enum: - dev.standard1.small - dev.standard1.medium - dev.standard1.large - dev.standard1.xlarge inactivityTimeoutMinutes: description: 'The amount of time the Dev Environment will run without any activity detected before stopping, in minutes. Only whole integers are allowed. Dev Environments consume compute minutes when running.' type: integer minimum: 0 maximum: 1200 examples: StartDevEnvironmentRequestExample: summary: Default StartDevEnvironment request x-microcks-default: true value: ides: - runtime: example-value name: example-resource instanceType: dev.standard1.small inactivityTimeoutMinutes: 1718153645993 summary: Amazon CodeCatalyst Start Dev Environment x-microcks-operation: delay: 0 dispatcher: FALLBACK '/v1/spaces/{spaceName}/projects/{projectName}/devEnvironments/{id}/session': put: operationId: StartDevEnvironmentSession description: Starts a session for a specified Dev Environment. responses: '200': description: Success content: application/json: schema: $ref: '#/components/schemas/StartDevEnvironmentSessionResponse' examples: StartDevEnvironmentSession200Example: summary: Default StartDevEnvironmentSession 200 response x-microcks-default: true value: accessDetails: streamUrl: https://example.amazonaws.com tokenValue: example-value sessionId: '500123' spaceName: example-resource projectName: example-resource id: '500123' '480': description: ThrottlingException content: application/json: schema: $ref: '#/components/schemas/ThrottlingException' examples: StartDevEnvironmentSession480Example: summary: Default StartDevEnvironmentSession 480 response x-microcks-default: true value: example-value '481': description: ConflictException content: application/json: schema: $ref: '#/components/schemas/ConflictException' examples: StartDevEnvironmentSession481Example: summary: Default StartDevEnvironmentSession 481 response x-microcks-default: true value: example-value '482': description: ValidationException content: application/json: schema: $ref: '#/components/schemas/ValidationException' examples: StartDevEnvironmentSession482Example: summary: Default StartDevEnvironmentSession 482 response x-microcks-default: true value: example-value '483': description: ServiceQuotaExceededException content: application/json: schema: $ref: '#/components/schemas/ServiceQuotaExceededException' examples: StartDevEnvironmentSession483Example: summary: Default StartDevEnvironmentSession 483 response x-microcks-default: true value: example-value '484': description: ResourceNotFoundException content: application/json: schema: $ref: '#/components/schemas/ResourceNotFoundException' examples: StartDevEnvironmentSession484Example: summary: Default StartDevEnvironmentSession 484 response x-microcks-default: true value: example-value '485': description: AccessDeniedException content: application/json: schema: $ref: '#/components/schemas/AccessDeniedException' examples: StartDevEnvironmentSession485Example: summary: Default StartDevEnvironmentSession 485 response x-microcks-default: true value: example-value parameters: - name: spaceName in: path required: true description: The name of the space. schema: type: string pattern: '[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 3 maxLength: 63 - name: projectName in: path required: true description: The name of the project in the space. schema: type: string pattern: '[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 3 maxLength: 63 - name: id in: path required: true description: The system-generated unique ID of the Dev Environment. schema: type: string pattern: '[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}' requestBody: required: true content: application/json: schema: type: object required: - sessionConfiguration properties: sessionConfiguration: description: Information about the configuration of a Dev Environment session. type: object properties: sessionType: allOf: - $ref: '#/components/schemas/DevEnvironmentSessionType' - description: The type of the session. executeCommandSessionConfiguration: allOf: - $ref: '#/components/schemas/ExecuteCommandSessionConfiguration' - description: Information about optional commands that will be run on the Dev Environment when the SSH session begins. examples: StartDevEnvironmentSessionRequestExample: summary: Default StartDevEnvironmentSession request x-microcks-default: true value: sessionConfiguration: sessionType: STANDARD executeCommandSessionConfiguration: example-value summary: Amazon CodeCatalyst Start Dev Environment Session x-microcks-operation: delay: 0 dispatcher: FALLBACK '/v1/spaces/{spaceName}/projects/{projectName}/devEnvironments/{id}/stop': put: operationId: StopDevEnvironment description: Pauses a specified Dev Environment and places it in a non-running state. Stopped Dev Environments do not consume compute minutes. responses: '200': description: Success content: application/json: schema: $ref: '#/components/schemas/StopDevEnvironmentResponse' examples: StopDevEnvironment200Example: summary: Default StopDevEnvironment 200 response x-microcks-default: true value: spaceName: example-resource projectName: example-resource id: '500123' status: ACTIVE '480': description: ThrottlingException content: application/json: schema: $ref: '#/components/schemas/ThrottlingException' examples: StopDevEnvironment480Example: summary: Default StopDevEnvironment 480 response x-microcks-default: true value: example-value '481': description: ConflictException content: application/json: schema: $ref: '#/components/schemas/ConflictException' examples: StopDevEnvironment481Example: summary: Default StopDevEnvironment 481 response x-microcks-default: true value: example-value '482': description: ValidationException content: application/json: schema: $ref: '#/components/schemas/ValidationException' examples: StopDevEnvironment482Example: summary: Default StopDevEnvironment 482 response x-microcks-default: true value: example-value '483': description: ServiceQuotaExceededException content: application/json: schema: $ref: '#/components/schemas/ServiceQuotaExceededException' examples: StopDevEnvironment483Example: summary: Default StopDevEnvironment 483 response x-microcks-default: true value: example-value '484': description: ResourceNotFoundException content: application/json: schema: $ref: '#/components/schemas/ResourceNotFoundException' examples: StopDevEnvironment484Example: summary: Default StopDevEnvironment 484 response x-microcks-default: true value: example-value '485': description: AccessDeniedException content: application/json: schema: $ref: '#/components/schemas/AccessDeniedException' examples: StopDevEnvironment485Example: summary: Default StopDevEnvironment 485 response x-microcks-default: true value: example-value parameters: - name: spaceName in: path required: true description: The name of the space. schema: type: string pattern: '[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 3 maxLength: 63 - name: projectName in: path required: true description: The name of the project in the space. schema: type: string pattern: '[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 3 maxLength: 63 - name: id in: path required: true description: 'The system-generated unique ID of the Dev Environment. ' schema: type: string pattern: '[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}' summary: Amazon CodeCatalyst Stop Dev Environment x-microcks-operation: delay: 0 dispatcher: FALLBACK '/v1/spaces/{spaceName}/projects/{projectName}/devEnvironments/{id}/session/{sessionId}': delete: operationId: StopDevEnvironmentSession description: Stops a session for a specified Dev Environment. responses: '200': description: Success content: application/json: schema: $ref: '#/components/schemas/StopDevEnvironmentSessionResponse' examples: StopDevEnvironmentSession200Example: summary: Default StopDevEnvironmentSession 200 response x-microcks-default: true value: spaceName: example-resource projectName: example-resource id: '500123' sessionId: '500123' '480': description: ThrottlingException content: application/json: schema: $ref: '#/components/schemas/ThrottlingException' examples: StopDevEnvironmentSession480Example: summary: Default StopDevEnvironmentSession 480 response x-microcks-default: true value: example-value '481': description: ConflictException content: application/json: schema: $ref: '#/components/schemas/ConflictException' examples: StopDevEnvironmentSession481Example: summary: Default StopDevEnvironmentSession 481 response x-microcks-default: true value: example-value '482': description: ValidationException content: application/json: schema: $ref: '#/components/schemas/ValidationException' examples: StopDevEnvironmentSession482Example: summary: Default StopDevEnvironmentSession 482 response x-microcks-default: true value: example-value '483': description: ServiceQuotaExceededException content: application/json: schema: $ref: '#/components/schemas/ServiceQuotaExceededException' examples: StopDevEnvironmentSession483Example: summary: Default StopDevEnvironmentSession 483 response x-microcks-default: true value: example-value '484': description: ResourceNotFoundException content: application/json: schema: $ref: '#/components/schemas/ResourceNotFoundException' examples: StopDevEnvironmentSession484Example: summary: Default StopDevEnvironmentSession 484 response x-microcks-default: true value: example-value '485': description: AccessDeniedException content: application/json: schema: $ref: '#/components/schemas/AccessDeniedException' examples: StopDevEnvironmentSession485Example: summary: Default StopDevEnvironmentSession 485 response x-microcks-default: true value: example-value parameters: - name: spaceName in: path required: true description: The name of the space. schema: type: string pattern: '[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 3 maxLength: 63 - name: projectName in: path required: true description: The name of the project in the space. schema: type: string pattern: '[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 3 maxLength: 63 - name: id in: path required: true description: 'The system-generated unique ID of the Dev Environment. To obtain this ID, use ListDevEnvironments.' schema: type: string pattern: '[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}' - name: sessionId in: path required: true description: The system-generated unique ID of the Dev Environment session. This ID is returned by StartDevEnvironmentSession. schema: type: string minLength: 1 maxLength: 96 summary: Amazon CodeCatalyst Stop Dev Environment Session x-microcks-operation: delay: 0 dispatcher: FALLBACK /session: get: operationId: VerifySession description: 'Verifies whether the calling user has a valid Amazon CodeCatalyst login and session. If successful, this returns the ID of the user in Amazon CodeCatalyst.' responses: '200': description: Success content: application/json: schema: $ref: '#/components/schemas/VerifySessionResponse' examples: VerifySession200Example: summary: Default VerifySession 200 response x-microcks-default: true value: identity: '500123' '480': description: ThrottlingException content: application/json: schema: $ref: '#/components/schemas/ThrottlingException' examples: VerifySession480Example: summary: Default VerifySession 480 response x-microcks-default: true value: example-value '481': description: ConflictException content: application/json: schema: $ref: '#/components/schemas/ConflictException' examples: VerifySession481Example: summary: Default VerifySession 481 response x-microcks-default: true value: example-value '482': description: ValidationException content: application/json: schema: $ref: '#/components/schemas/ValidationException' examples: VerifySession482Example: summary: Default VerifySession 482 response x-microcks-default: true value: example-value '483': description: ServiceQuotaExceededException content: application/json: schema: $ref: '#/components/schemas/ServiceQuotaExceededException' examples: VerifySession483Example: summary: Default VerifySession 483 response x-microcks-default: true value: example-value '484': description: ResourceNotFoundException content: application/json: schema: $ref: '#/components/schemas/ResourceNotFoundException' examples: VerifySession484Example: summary: Default VerifySession 484 response x-microcks-default: true value: example-value '485': description: AccessDeniedException content: application/json: schema: $ref: '#/components/schemas/AccessDeniedException' examples: VerifySession485Example: summary: Default VerifySession 485 response x-microcks-default: true value: example-value summary: Amazon CodeCatalyst Verify Session x-microcks-operation: delay: 0 dispatcher: FALLBACK components: parameters: {} securitySchemes: hmac: type: apiKey name: Authorization in: header schemas: CreateAccessTokenResponse: type: object required: - secret - name - expiresTime - accessTokenId properties: secret: allOf: - $ref: '#/components/schemas/AccessTokenSecret' - description: The secret value of the personal access token. name: allOf: - $ref: '#/components/schemas/AccessTokenName' - description: The friendly name of the personal access token. expiresTime: allOf: - $ref: '#/components/schemas/SyntheticTimestamp_date_time' - description: 'The date and time the personal access token expires, in coordinated universal time (UTC) timestamp format as specified in RFC 3339. If not specified, the default is one year from creation.' accessTokenId: allOf: - $ref: '#/components/schemas/AccessTokenId' - description: The system-generated unique ID of the access token. ThrottlingException: {} ConflictException: {} ValidationException: {} ServiceQuotaExceededException: {} ResourceNotFoundException: {} AccessDeniedException: {} CreateDevEnvironmentResponse: type: object required: - spaceName - projectName - id properties: spaceName: allOf: - $ref: '#/components/schemas/NameString' - description: The name of the space. projectName: allOf: - $ref: '#/components/schemas/NameString' - description: The name of the project in the space. id: allOf: - $ref: '#/components/schemas/Uuid' - description: 'The system-generated unique ID of the Dev Environment. ' RepositoryInput: type: object required: - repositoryName properties: repositoryName: allOf: - $ref: '#/components/schemas/SourceRepositoryNameString' - description: The name of the source repository. branchName: allOf: - $ref: '#/components/schemas/SourceRepositoryBranchString' - description: The name of the branch in a source repository. description: Information about a repository that will be cloned to a Dev Environment. IdeConfiguration: type: object properties: runtime: allOf: - $ref: '#/components/schemas/IdeConfigurationRuntimeString' - description:

A link to the IDE runtime image.

This parameter is not required for VSCode.

name: allOf: - $ref: '#/components/schemas/IdeConfigurationNameString' - description: 'The name of the IDE. Valid values include Cloud9, IntelliJ, PyCharm, GoLand, and VSCode.' description: Information about the configuration of an integrated development environment (IDE) for a Dev Environment. PersistentStorageConfigurationSizeInGiBInteger: type: integer minimum: 0 maximum: 64 CreateProjectResponse: type: object required: - name properties: spaceName: allOf: - $ref: '#/components/schemas/NameString' - description: The name of the space. name: allOf: - $ref: '#/components/schemas/NameString' - description: The name of the project in the space. displayName: allOf: - $ref: '#/components/schemas/String' - description: The friendly name of the project. description: allOf: - $ref: '#/components/schemas/String' - description: The description of the project. CreateSourceRepositoryResponse: type: object required: - spaceName - projectName - name properties: spaceName: allOf: - $ref: '#/components/schemas/NameString' - description: The name of the space. projectName: allOf: - $ref: '#/components/schemas/NameString' - description: The name of the project in the space. name: allOf: - $ref: '#/components/schemas/SourceRepositoryNameString' - description: The name of the source repository. description: allOf: - $ref: '#/components/schemas/SourceRepositoryDescriptionString' - description: The description of the source repository. CreateSourceRepositoryBranchResponse: type: object properties: ref: allOf: - $ref: '#/components/schemas/SourceRepositoryBranchRefString' - description: The Git reference name of the branch. name: allOf: - $ref: '#/components/schemas/SourceRepositoryBranchString' - description: The name of the newly created branch. lastUpdatedTime: allOf: - $ref: '#/components/schemas/SyntheticTimestamp_date_time' - description: 'The time the branch was last updated, in coordinated universal time (UTC) timestamp format as specified in RFC 3339.' headCommitId: allOf: - $ref: '#/components/schemas/String' - description: The commit ID of the tip of the newly created branch. DeleteAccessTokenResponse: type: object properties: {} DeleteDevEnvironmentResponse: type: object required: - spaceName - projectName - id properties: spaceName: allOf: - $ref: '#/components/schemas/NameString' - description: The name of the space. projectName: allOf: - $ref: '#/components/schemas/NameString' - description: The name of the project in the space. id: allOf: - $ref: '#/components/schemas/Uuid' - description: 'The system-generated unique ID of the deleted Dev Environment. ' DeleteProjectResponse: type: object required: - spaceName - name properties: spaceName: allOf: - $ref: '#/components/schemas/NameString' - description: The name of the space. name: allOf: - $ref: '#/components/schemas/NameString' - description: The name of the project in the space. displayName: allOf: - $ref: '#/components/schemas/String' - description: The friendly name displayed to users of the project in Amazon CodeCatalyst. DeleteSourceRepositoryResponse: type: object required: - spaceName - projectName - name properties: spaceName: allOf: - $ref: '#/components/schemas/NameString' - description: The name of the space. projectName: allOf: - $ref: '#/components/schemas/NameString' - description: The name of the project in the space. name: allOf: - $ref: '#/components/schemas/SourceRepositoryNameString' - description: The name of the repository. DeleteSpaceResponse: type: object required: - name properties: name: allOf: - $ref: '#/components/schemas/NameString' - description: The name of the space. displayName: allOf: - $ref: '#/components/schemas/String' - description: The friendly name of the space displayed to users of the space in Amazon CodeCatalyst. GetDevEnvironmentResponse: type: object required: - spaceName - projectName - id - lastUpdatedTime - creatorId - status - repositories - instanceType - inactivityTimeoutMinutes - persistentStorage properties: spaceName: allOf: - $ref: '#/components/schemas/NameString' - description: The name of the space. projectName: allOf: - $ref: '#/components/schemas/NameString' - description: The name of the project in the space. id: allOf: - $ref: '#/components/schemas/Uuid' - description: 'The system-generated unique ID of the Dev Environment. ' lastUpdatedTime: allOf: - $ref: '#/components/schemas/SyntheticTimestamp_date_time' - description: 'The time when the Dev Environment was last updated, in coordinated universal time (UTC) timestamp format as specified in RFC 3339.' creatorId: allOf: - $ref: '#/components/schemas/GetDevEnvironmentResponseCreatorIdString' - description: 'The system-generated unique ID of the user who created the Dev Environment. ' status: allOf: - $ref: '#/components/schemas/DevEnvironmentStatus' - description: The current status of the Dev Environment. statusReason: allOf: - $ref: '#/components/schemas/StatusReason' - description: The reason for the status. repositories: allOf: - $ref: '#/components/schemas/DevEnvironmentRepositorySummaries' - description: 'The source repository that contains the branch cloned into the Dev Environment. ' alias: allOf: - $ref: '#/components/schemas/GetDevEnvironmentResponseAliasString' - description: 'The user-specified alias for the Dev Environment. ' ides: allOf: - $ref: '#/components/schemas/Ides' - description: 'Information about the integrated development environment (IDE) configured for the Dev Environment. ' instanceType: allOf: - $ref: '#/components/schemas/InstanceType' - description: 'The Amazon EC2 instace type to use for the Dev Environment. ' inactivityTimeoutMinutes: allOf: - $ref: '#/components/schemas/InactivityTimeoutMinutes' - description: 'The amount of time the Dev Environment will run without any activity detected before stopping, in minutes.' persistentStorage: allOf: - $ref: '#/components/schemas/PersistentStorage' - description: 'Information about the amount of storage allocated to the Dev Environment. By default, a Dev Environment is configured to have 16GB of persistent storage.' GetProjectResponse: type: object required: - name properties: spaceName: allOf: - $ref: '#/components/schemas/NameString' - description: The name of the space. name: allOf: - $ref: '#/components/schemas/String' - description: The name of the project in the space. displayName: allOf: - $ref: '#/components/schemas/String' - description: The friendly name of the project displayed to users in Amazon CodeCatalyst. description: allOf: - $ref: '#/components/schemas/String' - description: The description of the project. GetSourceRepositoryResponse: type: object required: - spaceName - projectName - name - lastUpdatedTime - createdTime properties: spaceName: allOf: - $ref: '#/components/schemas/NameString' - description: The name of the space. projectName: allOf: - $ref: '#/components/schemas/NameString' - description: The name of the project in the space. name: allOf: - $ref: '#/components/schemas/SourceRepositoryNameString' - description: The name of the source repository. description: allOf: - $ref: '#/components/schemas/SourceRepositoryDescriptionString' - description: The description of the source repository. lastUpdatedTime: allOf: - $ref: '#/components/schemas/Timestamp' - description: 'The time the source repository was last updated, in coordinated universal time (UTC) timestamp format as specified in RFC 3339.' createdTime: allOf: - $ref: '#/components/schemas/Timestamp' - description: 'The time the source repository was created, in coordinated universal time (UTC) timestamp format as specified in RFC 3339.' GetSourceRepositoryCloneUrlsResponse: type: object required: - https properties: https: allOf: - $ref: '#/components/schemas/String' - description: The HTTPS URL to use when cloning the source repository. GetSpaceResponse: type: object required: - name - regionName properties: name: allOf: - $ref: '#/components/schemas/NameString' - description: The name of the space. regionName: allOf: - $ref: '#/components/schemas/RegionString' - description: The Amazon Web Services Region where the space exists. displayName: allOf: - $ref: '#/components/schemas/String' - description: The friendly name of the space displayed to users. description: allOf: - $ref: '#/components/schemas/String' - description: The description of the space. GetSubscriptionResponse: type: object properties: subscriptionType: allOf: - $ref: '#/components/schemas/String' - description: The type of the billing plan for the space. awsAccountName: allOf: - $ref: '#/components/schemas/NameString' - description: The display name of the Amazon Web Services account used for billing for the space. GetUserDetailsResponse: type: object properties: userId: allOf: - $ref: '#/components/schemas/String' - description: The system-generated unique ID of the user. userName: allOf: - $ref: '#/components/schemas/String' - description: The name of the user as displayed in Amazon CodeCatalyst. displayName: allOf: - $ref: '#/components/schemas/String' - description: The friendly name displayed for the user in Amazon CodeCatalyst. primaryEmail: allOf: - $ref: '#/components/schemas/EmailAddress' - description: The email address provided by the user when they signed up. version: allOf: - $ref: '#/components/schemas/String' - description:

ListAccessTokensResponse: type: object required: - items properties: items: allOf: - $ref: '#/components/schemas/AccessTokenSummaries' - description: A list of personal access tokens (PATs) associated with the calling user identity. nextToken: allOf: - $ref: '#/components/schemas/String' - description: 'A token returned from a call to this API to indicate the next batch of results to return, if any.' ListDevEnvironmentSessionsResponse: type: object required: - items properties: items: allOf: - $ref: '#/components/schemas/DevEnvironmentSessionsSummaryList' - description: Information about each session retrieved in the list. nextToken: allOf: - $ref: '#/components/schemas/String' - description: 'A token returned from a call to this API to indicate the next batch of results to return, if any.' ListDevEnvironmentsResponse: type: object required: - items properties: items: allOf: - $ref: '#/components/schemas/DevEnvironmentSummaryList' - description: Information about the Dev Environments in a project. nextToken: allOf: - $ref: '#/components/schemas/String' - description: 'A token returned from a call to this API to indicate the next batch of results to return, if any.' Filter: type: object required: - key - values properties: key: allOf: - $ref: '#/components/schemas/String' - description: A key that can be used to sort results. values: allOf: - $ref: '#/components/schemas/StringList' - description: The values of the key. comparisonOperator: allOf: - $ref: '#/components/schemas/String' - description: The operator used to compare the fields. description: Information about a filter used to limit results of a query. ListEventLogsResponse: type: object required: - items properties: nextToken: allOf: - $ref: '#/components/schemas/String' - description: 'A token returned from a call to this API to indicate the next batch of results to return, if any.' items: allOf: - $ref: '#/components/schemas/EventLogEntries' - description: Information about each event retrieved in the list. ListProjectsResponse: type: object properties: nextToken: allOf: - $ref: '#/components/schemas/String' - description: 'A token returned from a call to this API to indicate the next batch of results to return, if any.' items: allOf: - $ref: '#/components/schemas/ProjectSummaries' - description: Information about the projects. ProjectListFilter: type: object required: - key - values properties: key: allOf: - $ref: '#/components/schemas/FilterKey' - description: A key that can be used to sort results. values: allOf: - $ref: '#/components/schemas/StringList' - description: The values of the key. comparisonOperator: allOf: - $ref: '#/components/schemas/ComparisonOperator' - description: The operator used to compare the fields. description: nformation about the filter used to narrow the results returned in a list of projects. ListSourceRepositoriesResponse: type: object properties: items: allOf: - $ref: '#/components/schemas/ListSourceRepositoriesItems' - description: Information about the source repositories. nextToken: allOf: - $ref: '#/components/schemas/String' - description: 'A token returned from a call to this API to indicate the next batch of results to return, if any.' ListSourceRepositoryBranchesResponse: type: object required: - items properties: nextToken: allOf: - $ref: '#/components/schemas/String' - description: 'A token returned from a call to this API to indicate the next batch of results to return, if any.' items: allOf: - $ref: '#/components/schemas/ListSourceRepositoryBranchesItems' - description: Information about the source branches. ListSpacesResponse: type: object properties: nextToken: allOf: - $ref: '#/components/schemas/String' - description: 'A token returned from a call to this API to indicate the next batch of results to return, if any.' items: allOf: - $ref: '#/components/schemas/SpaceSummaries' - description: 'Information about the spaces. ' StartDevEnvironmentResponse: type: object required: - spaceName - projectName - id - status properties: spaceName: allOf: - $ref: '#/components/schemas/NameString' - description: The name of the space. projectName: allOf: - $ref: '#/components/schemas/NameString' - description: The name of the project in the space. id: allOf: - $ref: '#/components/schemas/Uuid' - description: 'The system-generated unique ID of the Dev Environment. ' status: allOf: - $ref: '#/components/schemas/DevEnvironmentStatus' - description: 'The status of the Dev Environment. ' StartDevEnvironmentSessionResponse: type: object required: - accessDetails - spaceName - projectName - id properties: accessDetails: $ref: '#/components/schemas/DevEnvironmentAccessDetails' sessionId: allOf: - $ref: '#/components/schemas/StartDevEnvironmentSessionResponseSessionIdString' - description: The system-generated unique ID of the Dev Environment session. spaceName: allOf: - $ref: '#/components/schemas/NameString' - description: The name of the space. projectName: allOf: - $ref: '#/components/schemas/NameString' - description: The name of the project in the space. id: allOf: - $ref: '#/components/schemas/Uuid' - description: The system-generated unique ID of the Dev Environment. DevEnvironmentSessionType: type: string enum: - SSM - SSH ExecuteCommandSessionConfiguration: type: object required: - command properties: command: allOf: - $ref: '#/components/schemas/ExecuteCommandSessionConfigurationCommandString' - description: The command used at the beginning of the SSH session to a Dev Environment. arguments: allOf: - $ref: '#/components/schemas/ExecuteCommandSessionConfigurationArguments' - description: An array of arguments containing arguments and members. description: Information about the commands that will be run on a Dev Environment when an SSH session begins. StopDevEnvironmentResponse: type: object required: - spaceName - projectName - id - status properties: spaceName: allOf: - $ref: '#/components/schemas/NameString' - description: The name of the space. projectName: allOf: - $ref: '#/components/schemas/NameString' - description: The name of the project in the space. id: allOf: - $ref: '#/components/schemas/Uuid' - description: 'The system-generated unique ID of the Dev Environment. ' status: allOf: - $ref: '#/components/schemas/DevEnvironmentStatus' - description: 'The status of the Dev Environment. ' StopDevEnvironmentSessionResponse: type: object required: - spaceName - projectName - id - sessionId properties: spaceName: allOf: - $ref: '#/components/schemas/NameString' - description: The name of the space. projectName: allOf: - $ref: '#/components/schemas/NameString' - description: The name of the project in the space. id: allOf: - $ref: '#/components/schemas/Uuid' - description: The system-generated unique ID of the Dev Environment. sessionId: allOf: - $ref: '#/components/schemas/StopDevEnvironmentSessionResponseSessionIdString' - description: The system-generated unique ID of the Dev Environment session. UpdateDevEnvironmentResponse: type: object required: - id - spaceName - projectName properties: id: allOf: - $ref: '#/components/schemas/Uuid' - description: 'The system-generated unique ID of the Dev Environment. ' spaceName: allOf: - $ref: '#/components/schemas/NameString' - description: The name of the space. projectName: allOf: - $ref: '#/components/schemas/NameString' - description: The name of the project in the space. alias: allOf: - $ref: '#/components/schemas/UpdateDevEnvironmentResponseAliasString' - description: The user-specified alias for the Dev Environment. ides: allOf: - $ref: '#/components/schemas/IdeConfigurationList' - description: Information about the integrated development environment (IDE) configured for the Dev Environment. instanceType: allOf: - $ref: '#/components/schemas/InstanceType' - description: 'The Amazon EC2 instace type to use for the Dev Environment. ' inactivityTimeoutMinutes: allOf: - $ref: '#/components/schemas/InactivityTimeoutMinutes' - description: 'The amount of time the Dev Environment will run without any activity detected before stopping, in minutes. ' clientToken: allOf: - $ref: '#/components/schemas/ClientToken' - description: 'A user-specified idempotency token. Idempotency ensures that an API request completes only once. With an idempotent request, if the original request completes successfully, the subsequent retries return the result from the original successful request and have no additional effect.' UpdateProjectResponse: type: object properties: spaceName: allOf: - $ref: '#/components/schemas/NameString' - description: The name of the space. name: allOf: - $ref: '#/components/schemas/NameString' - description: The name of the project. displayName: allOf: - $ref: '#/components/schemas/String' - description: The friendly name of the project displayed to users in Amazon CodeCatalyst. description: allOf: - $ref: '#/components/schemas/String' - description: The description of the project. UpdateSpaceResponse: type: object properties: name: allOf: - $ref: '#/components/schemas/NameString' - description: The name of the space. displayName: allOf: - $ref: '#/components/schemas/String' - description: The friendly name of the space displayed to users in Amazon CodeCatalyst. description: allOf: - $ref: '#/components/schemas/String' - description: The description of the space. VerifySessionResponse: type: object properties: identity: allOf: - $ref: '#/components/schemas/VerifySessionResponseIdentityString' - description: The system-generated unique ID of the user in Amazon CodeCatalyst. AccessTokenId: type: string minLength: 1 maxLength: 36 AccessTokenName: type: string minLength: 1 maxLength: 100 AccessTokenSecret: type: string minLength: 1 maxLength: 4000 format: password AccessTokenSummary: type: object required: - id - name properties: id: allOf: - $ref: '#/components/schemas/AccessTokenId' - description: The system-generated ID of the personal access token. name: allOf: - $ref: '#/components/schemas/AccessTokenName' - description: The friendly name of the personal access token. expiresTime: allOf: - $ref: '#/components/schemas/SyntheticTimestamp_date_time' - description: 'The date and time when the personal access token will expire, in coordinated universal time (UTC) timestamp format as specified in RFC 3339.' description: Information about a specified personal access token (PAT). AccessTokenSummaries: type: array items: $ref: '#/components/schemas/AccessTokenSummary' SyntheticTimestamp_date_time: type: string format: date-time Boolean: type: boolean ClientToken: type: string minLength: 1 maxLength: 1024 ComparisonOperator: type: string enum: - EQ - GT - GE - LT - LE CreateAccessTokenRequest: type: object required: - name title: CreateAccessTokenRequest properties: name: allOf: - $ref: '#/components/schemas/AccessTokenName' - description: The friendly name of the personal access token. expiresTime: allOf: - $ref: '#/components/schemas/SyntheticTimestamp_date_time' - description: 'The date and time the personal access token expires, in coordinated universal time (UTC) timestamp format as specified in RFC 3339.' NameString: type: string pattern: '[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 3 maxLength: 63 RepositoriesInput: type: array items: $ref: '#/components/schemas/RepositoryInput' CreateDevEnvironmentRequestAliasString: type: string pattern: '[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 1 maxLength: 128 IdeConfigurationList: type: array items: $ref: '#/components/schemas/IdeConfiguration' minItems: 0 maxItems: 1 InstanceType: type: string enum: - dev.standard1.small - dev.standard1.medium - dev.standard1.large - dev.standard1.xlarge InactivityTimeoutMinutes: type: integer minimum: 0 maximum: 1200 PersistentStorageConfiguration: type: object required: - sizeInGiB properties: sizeInGiB: allOf: - $ref: '#/components/schemas/PersistentStorageConfigurationSizeInGiBInteger' - description: '

The size of the persistent storage in gigabytes (specifically GiB).

Valid values for storage are based on memory sizes in 16GB increments. Valid values are 16, 32, and 64.

' description: 'Information about the configuration of persistent storage for a Dev Environment. ' CreateDevEnvironmentRequest: type: object required: - instanceType - persistentStorage title: CreateDevEnvironmentRequest properties: repositories: allOf: - $ref: '#/components/schemas/RepositoriesInput' - description: 'The source repository that contains the branch to clone into the Dev Environment. ' clientToken: allOf: - $ref: '#/components/schemas/ClientToken' - description: 'A user-specified idempotency token. Idempotency ensures that an API request completes only once. With an idempotent request, if the original request completes successfully, the subsequent retries return the result from the original successful request and have no additional effect.' alias: allOf: - $ref: '#/components/schemas/CreateDevEnvironmentRequestAliasString' - description: The user-defined alias for a Dev Environment. ides: allOf: - $ref: '#/components/schemas/IdeConfigurationList' - description: '

Information about the integrated development environment (IDE) configured for a Dev Environment.

An IDE is required to create a Dev Environment. For Dev Environment creation, this field contains configuration information and must be provided.

' instanceType: allOf: - $ref: '#/components/schemas/InstanceType' - description: 'The Amazon EC2 instace type to use for the Dev Environment. ' inactivityTimeoutMinutes: allOf: - $ref: '#/components/schemas/InactivityTimeoutMinutes' - description: 'The amount of time the Dev Environment will run without any activity detected before stopping, in minutes. Only whole integers are allowed. Dev Environments consume compute minutes when running.' persistentStorage: allOf: - $ref: '#/components/schemas/PersistentStorageConfiguration' - description: '

Information about the amount of storage allocated to the Dev Environment.

By default, a Dev Environment is configured to have 16GB of persistent storage when created from the Amazon CodeCatalyst console, but there is no default when programmatically creating a Dev Environment. Valid values for persistent storage are based on memory sizes in 16GB increments. Valid values are 16, 32, and 64.

' Uuid: type: string pattern: '[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}' ProjectDisplayName: type: string pattern: '[a-zA-Z0-9]+(?:[-_\. ][a-zA-Z0-9]+)*' minLength: 3 maxLength: 63 ProjectDescription: type: string pattern: '[a-zA-Z0-9]+(?:[-_a-zA-Z0-9.,;:/\+=?&$% ])*' minLength: 0 maxLength: 200 CreateProjectRequest: type: object required: - displayName title: CreateProjectRequest properties: displayName: allOf: - $ref: '#/components/schemas/ProjectDisplayName' - description: The friendly name of the project that will be displayed to users. description: allOf: - $ref: '#/components/schemas/ProjectDescription' - description: The description of the project. This description will be displayed to all users of the project. We recommend providing a brief description of the project and its intended purpose. String: type: string SourceRepositoryNameString: type: string pattern: '(?!.*[.]git$)[\w\-.]*' minLength: 1 maxLength: 100 SourceRepositoryBranchString: type: string minLength: 1 maxLength: 100 CreateSourceRepositoryBranchRequest: type: object title: CreateSourceRepositoryBranchRequest properties: headCommitId: allOf: - $ref: '#/components/schemas/String' - description: The commit ID in an existing branch from which you want to create the new branch. SourceRepositoryBranchRefString: type: string minLength: 1 maxLength: 255 SourceRepositoryDescriptionString: type: string minLength: 1 maxLength: 255 CreateSourceRepositoryRequest: type: object title: CreateSourceRepositoryRequest properties: description: allOf: - $ref: '#/components/schemas/SourceRepositoryDescriptionString' - description: The description of the source repository. DeleteAccessTokenRequest: type: object title: DeleteAccessTokenRequest properties: {} DeleteDevEnvironmentRequest: type: object title: DeleteDevEnvironmentRequest properties: {} DeleteProjectRequest: type: object title: DeleteProjectRequest properties: {} DeleteSourceRepositoryRequest: type: object title: DeleteSourceRepositoryRequest properties: {} DeleteSpaceRequest: type: object title: DeleteSpaceRequest properties: {} SensitiveString: type: string format: password DevEnvironmentAccessDetails: type: object required: - streamUrl - tokenValue properties: streamUrl: allOf: - $ref: '#/components/schemas/SensitiveString' - description: The URL used to send commands to and from the Dev Environment. tokenValue: allOf: - $ref: '#/components/schemas/SensitiveString' - description: An encrypted token value that contains session and caller information used to authenticate the connection. description: Information about connection details for a Dev Environment. DevEnvironmentRepositorySummary: type: object required: - repositoryName properties: repositoryName: allOf: - $ref: '#/components/schemas/SourceRepositoryNameString' - description: The name of the source repository. branchName: allOf: - $ref: '#/components/schemas/SourceRepositoryBranchString' - description: 'The name of the branch in a source repository cloned into the Dev Environment. ' description: 'Information about the source repsitory for a Dev Environment. ' DevEnvironmentRepositorySummaries: type: array items: $ref: '#/components/schemas/DevEnvironmentRepositorySummary' DevEnvironmentSessionConfiguration: type: object required: - sessionType properties: sessionType: allOf: - $ref: '#/components/schemas/DevEnvironmentSessionType' - description: The type of the session. executeCommandSessionConfiguration: allOf: - $ref: '#/components/schemas/ExecuteCommandSessionConfiguration' - description: Information about optional commands that will be run on the Dev Environment when the SSH session begins. description: Information about the configuration of a Dev Environment session. DevEnvironmentSessionSummaryIdString: type: string minLength: 1 maxLength: 96 DevEnvironmentSessionSummary: type: object required: - spaceName - projectName - devEnvironmentId - startedTime - id properties: spaceName: allOf: - $ref: '#/components/schemas/NameString' - description: The name of the space. projectName: allOf: - $ref: '#/components/schemas/NameString' - description: The name of the project in the space. devEnvironmentId: allOf: - $ref: '#/components/schemas/Uuid' - description: The system-generated unique ID of the Dev Environment. startedTime: allOf: - $ref: '#/components/schemas/SyntheticTimestamp_date_time' - description: 'The date and time the session started, in coordinated universal time (UTC) timestamp format as specified in RFC 3339 ' id: allOf: - $ref: '#/components/schemas/DevEnvironmentSessionSummaryIdString' - description: The system-generated unique ID of the Dev Environment session. description: Information about active sessions for a Dev Environment. DevEnvironmentSessionsSummaryList: type: array items: $ref: '#/components/schemas/DevEnvironmentSessionSummary' DevEnvironmentStatus: type: string enum: - PENDING - RUNNING - STARTING - STOPPING - STOPPED - FAILED - DELETING - DELETED DevEnvironmentSummaryCreatorIdString: type: string minLength: 0 maxLength: 1024 StatusReason: type: string minLength: 0 maxLength: 1024 DevEnvironmentSummaryAliasString: type: string minLength: 0 maxLength: 128 Ides: type: array items: $ref: '#/components/schemas/Ide' minItems: 0 maxItems: 1 PersistentStorage: type: object required: - sizeInGiB properties: sizeInGiB: allOf: - $ref: '#/components/schemas/PersistentStorageSizeInGiBInteger' - description: '

The size of the persistent storage in gigabytes (specifically GiB).

Valid values for storage are based on memory sizes in 16GB increments. Valid values are 16, 32, and 64.

' description: Information about the persistent storage for a Dev Environment. DevEnvironmentSummary: type: object required: - id - lastUpdatedTime - creatorId - status - repositories - instanceType - inactivityTimeoutMinutes - persistentStorage properties: spaceName: allOf: - $ref: '#/components/schemas/NameString' - description: The name of the space. projectName: allOf: - $ref: '#/components/schemas/NameString' - description: The name of the project in the space. id: allOf: - $ref: '#/components/schemas/Uuid' - description: 'The system-generated unique ID for the Dev Environment. ' lastUpdatedTime: allOf: - $ref: '#/components/schemas/SyntheticTimestamp_date_time' - description: 'The time when the Dev Environment was last updated, in coordinated universal time (UTC) timestamp format as specified in RFC 3339.' creatorId: allOf: - $ref: '#/components/schemas/DevEnvironmentSummaryCreatorIdString' - description: 'The system-generated unique ID of the user who created the Dev Environment. ' status: allOf: - $ref: '#/components/schemas/DevEnvironmentStatus' - description: 'The status of the Dev Environment. ' statusReason: allOf: - $ref: '#/components/schemas/StatusReason' - description: The reason for the status. repositories: allOf: - $ref: '#/components/schemas/DevEnvironmentRepositorySummaries' - description: 'Information about the repositories that will be cloned into the Dev Environment. If no rvalue is specified, no repository is cloned.' alias: allOf: - $ref: '#/components/schemas/DevEnvironmentSummaryAliasString' - description: The user-specified alias for the Dev Environment. ides: allOf: - $ref: '#/components/schemas/Ides' - description: Information about the integrated development environment (IDE) configured for a Dev Environment. instanceType: allOf: - $ref: '#/components/schemas/InstanceType' - description: 'The Amazon EC2 instace type used for the Dev Environment. ' inactivityTimeoutMinutes: allOf: - $ref: '#/components/schemas/InactivityTimeoutMinutes' - description: 'The amount of time the Dev Environment will run without any activity detected before stopping, in minutes. Dev Environments consume compute minutes when running.' persistentStorage: allOf: - $ref: '#/components/schemas/PersistentStorage' - description: Information about the configuration of persistent storage for the Dev Environment. description: 'Information about a Dev Environment. ' DevEnvironmentSummaryList: type: array items: $ref: '#/components/schemas/DevEnvironmentSummary' EmailAddress: type: object properties: email: allOf: - $ref: '#/components/schemas/String' - description: The email address. verified: allOf: - $ref: '#/components/schemas/Boolean' - description: Whether the email address has been verified. description: Information about an email address. EventLogEntry: type: object required: - id - eventName - eventType - eventCategory - eventSource - eventTime - operationType - userIdentity properties: id: allOf: - $ref: '#/components/schemas/String' - description: The system-generated unique ID of the event. eventName: allOf: - $ref: '#/components/schemas/String' - description: The name of the event. eventType: allOf: - $ref: '#/components/schemas/String' - description: The type of the event. eventCategory: allOf: - $ref: '#/components/schemas/String' - description: The category for the event. eventSource: allOf: - $ref: '#/components/schemas/String' - description: The source of the event. eventTime: allOf: - $ref: '#/components/schemas/SyntheticTimestamp_date_time' - description: 'The time the event took place, in coordinated universal time (UTC) timestamp format as specified in RFC 3339.' operationType: allOf: - $ref: '#/components/schemas/OperationType' - description: The type of the event. userIdentity: allOf: - $ref: '#/components/schemas/UserIdentity' - description: The system-generated unique ID of the user whose actions are recorded in the event. projectInformation: allOf: - $ref: '#/components/schemas/ProjectInformation' - description: Information about the project where the event occurred. requestId: allOf: - $ref: '#/components/schemas/String' - description: The system-generated unique ID of the request. requestPayload: allOf: - $ref: '#/components/schemas/EventPayload' - description: Information about the payload of the request. responsePayload: allOf: - $ref: '#/components/schemas/EventPayload' - description: 'Information about the payload of the response, if any.' errorCode: allOf: - $ref: '#/components/schemas/String' - description: 'The code of the error, if any.' sourceIpAddress: allOf: - $ref: '#/components/schemas/String' - description: The IP address of the user whose actions are recorded in the event. userAgent: allOf: - $ref: '#/components/schemas/String' - description: The user agent whose actions are recorded in the event. description: Information about an entry in an event log of Amazon CodeCatalyst activity. EventLogEntries: type: array items: $ref: '#/components/schemas/EventLogEntry' OperationType: type: string enum: - READONLY - MUTATION UserIdentity: type: object required: - userType - principalId properties: userType: allOf: - $ref: '#/components/schemas/UserType' - description: The role assigned to the user in a Amazon CodeCatalyst space or project when the event occurred. principalId: allOf: - $ref: '#/components/schemas/String' - description: The ID of the Amazon CodeCatalyst service principal. userName: allOf: - $ref: '#/components/schemas/String' - description: The display name of the user in Amazon CodeCatalyst. awsAccountId: allOf: - $ref: '#/components/schemas/String' - description: 'The Amazon Web Services account number of the user in Amazon Web Services, if any.' description: Information about a user whose activity is recorded in an event for a space. ProjectInformation: type: object properties: name: allOf: - $ref: '#/components/schemas/String' - description: The name of the project in the space. projectId: allOf: - $ref: '#/components/schemas/String' - description: The system-generated unique ID of the project. description: Information about a project in a space. EventPayload: type: object properties: contentType: allOf: - $ref: '#/components/schemas/String' - description: The type of content in the event payload. data: allOf: - $ref: '#/components/schemas/String' - description: The data included in the event payload. description: Information about the payload of an event recording Amazon CodeCatalyst activity. ExecuteCommandSessionConfigurationCommandString: type: string minLength: 1 maxLength: 255 ExecuteCommandSessionConfigurationArguments: type: array items: $ref: '#/components/schemas/ExecuteCommandSessionConfigurationArgumentsMemberString' ExecuteCommandSessionConfigurationArgumentsMemberString: type: string minLength: 1 maxLength: 255 StringList: type: array items: $ref: '#/components/schemas/String' FilterKey: type: string enum: - hasAccessTo Filters: type: array items: $ref: '#/components/schemas/Filter' GetDevEnvironmentRequest: type: object title: GetDevEnvironmentRequest properties: {} GetDevEnvironmentResponseCreatorIdString: type: string minLength: 0 maxLength: 1024 GetDevEnvironmentResponseAliasString: type: string minLength: 0 maxLength: 128 GetProjectRequest: type: object title: GetProjectRequest properties: {} GetSourceRepositoryCloneUrlsRequest: type: object title: GetSourceRepositoryCloneUrlsRequest properties: {} GetSourceRepositoryRequest: type: object title: GetSourceRepositoryRequest properties: {} Timestamp: type: string format: date-time GetSpaceRequest: type: object title: GetSpaceRequest properties: {} RegionString: type: string pattern: '(us(?:-gov)?|af|ap|ca|cn|eu|sa)-(central|(?:north|south)?(?:east|west)?)-(\d+)' minLength: 3 maxLength: 16 GetSubscriptionRequest: type: object title: GetSubscriptionRequest properties: {} GetUserDetailsRequestIdString: type: string minLength: 1 maxLength: 256 GetUserDetailsRequestUserNameString: type: string pattern: '[a-zA-Z0-9]{3,100}' minLength: 3 maxLength: 100 GetUserDetailsRequest: type: object title: GetUserDetailsRequest properties: {} IdeRuntimeString: type: string minLength: 1 maxLength: 400 IdeNameString: type: string minLength: 1 maxLength: 128 Ide: type: object properties: runtime: allOf: - $ref: '#/components/schemas/IdeRuntimeString' - description: A link to the IDE runtime image. name: allOf: - $ref: '#/components/schemas/IdeNameString' - description: The name of the IDE. description: Information about an integrated development environment (IDE) used in a Dev Environment. IdeConfigurationRuntimeString: type: string minLength: 1 maxLength: 400 IdeConfigurationNameString: type: string minLength: 1 maxLength: 128 ListAccessTokensRequestMaxResultsInteger: type: integer maximum: 10 ListAccessTokensRequestNextTokenString: type: string minLength: 1 maxLength: 10000 ListAccessTokensRequest: type: object title: ListAccessTokensRequest properties: maxResults: allOf: - $ref: '#/components/schemas/ListAccessTokensRequestMaxResultsInteger' - description: '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 NextToken element, which you can use to obtain additional results.' nextToken: allOf: - $ref: '#/components/schemas/ListAccessTokensRequestNextTokenString' - description: 'A token returned from a call to this API to indicate the next batch of results to return, if any.' ListDevEnvironmentSessionsRequestNextTokenString: type: string minLength: 1 maxLength: 10000 ListDevEnvironmentSessionsRequestMaxResultsInteger: type: integer minimum: 1 maximum: 200 ListDevEnvironmentSessionsRequest: type: object title: ListDevEnvironmentSessionsRequest properties: nextToken: allOf: - $ref: '#/components/schemas/ListDevEnvironmentSessionsRequestNextTokenString' - description: 'A token returned from a call to this API to indicate the next batch of results to return, if any.' maxResults: allOf: - $ref: '#/components/schemas/ListDevEnvironmentSessionsRequestMaxResultsInteger' - description: '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 NextToken element, which you can use to obtain additional results.' ListDevEnvironmentsRequestNextTokenString: type: string minLength: 1 maxLength: 10000 ListDevEnvironmentsRequestMaxResultsInteger: type: integer minimum: 1 maximum: 50 ListDevEnvironmentsRequest: type: object title: ListDevEnvironmentsRequest properties: filters: allOf: - $ref: '#/components/schemas/Filters' - description: Information about filters to apply to narrow the results returned in the list. nextToken: allOf: - $ref: '#/components/schemas/ListDevEnvironmentsRequestNextTokenString' - description: 'A token returned from a call to this API to indicate the next batch of results to return, if any.' maxResults: allOf: - $ref: '#/components/schemas/ListDevEnvironmentsRequestMaxResultsInteger' - description: '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 NextToken element, which you can use to obtain additional results.' ListEventLogsRequestNextTokenString: type: string minLength: 1 maxLength: 10000 ListEventLogsRequestMaxResultsInteger: type: integer minimum: 1 maximum: 250 ListEventLogsRequest: type: object required: - startTime - endTime title: ListEventLogsRequest properties: startTime: allOf: - $ref: '#/components/schemas/SyntheticTimestamp_date_time' - description: 'The date and time when you want to start retrieving events, in coordinated universal time (UTC) timestamp format as specified in RFC 3339.' endTime: allOf: - $ref: '#/components/schemas/SyntheticTimestamp_date_time' - description: 'The time after which you do not want any events retrieved, in coordinated universal time (UTC) timestamp format as specified in RFC 3339.' eventName: allOf: - $ref: '#/components/schemas/String' - description: The name of the event. nextToken: allOf: - $ref: '#/components/schemas/ListEventLogsRequestNextTokenString' - description: 'A token returned from a call to this API to indicate the next batch of results to return, if any.' maxResults: allOf: - $ref: '#/components/schemas/ListEventLogsRequestMaxResultsInteger' - description: '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 NextToken element, which you can use to obtain additional results.' ListProjectsRequestNextTokenString: type: string minLength: 1 maxLength: 10000 ListProjectsRequestMaxResultsInteger: type: integer minimum: 1 maximum: 100 ProjectListFilters: type: array items: $ref: '#/components/schemas/ProjectListFilter' ListProjectsRequest: type: object title: ListProjectsRequest properties: nextToken: allOf: - $ref: '#/components/schemas/ListProjectsRequestNextTokenString' - description: 'A token returned from a call to this API to indicate the next batch of results to return, if any.' maxResults: allOf: - $ref: '#/components/schemas/ListProjectsRequestMaxResultsInteger' - description: '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 NextToken element, which you can use to obtain additional results.' filters: allOf: - $ref: '#/components/schemas/ProjectListFilters' - description: Information about filters to apply to narrow the results returned in the list. ProjectSummaries: type: array items: $ref: '#/components/schemas/ProjectSummary' SourceRepositoryIdString: type: string pattern: '[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}' ListSourceRepositoriesItem: type: object required: - id - name - lastUpdatedTime - createdTime properties: id: allOf: - $ref: '#/components/schemas/SourceRepositoryIdString' - description: The system-generated unique ID of the source repository. name: allOf: - $ref: '#/components/schemas/SourceRepositoryNameString' - description: The name of the source repository. description: allOf: - $ref: '#/components/schemas/SourceRepositoryDescriptionString' - description: 'The description of the repository, if any.' lastUpdatedTime: allOf: - $ref: '#/components/schemas/Timestamp' - description: 'The time the source repository was last updated, in coordinated universal time (UTC) timestamp format as specified in RFC 3339.' createdTime: allOf: - $ref: '#/components/schemas/Timestamp' - description: 'The time the source repository was created, in coordinated universal time (UTC) timestamp format as specified in RFC 3339.' description: Information about a source repository returned in a list of source repositories. ListSourceRepositoriesItems: type: array items: $ref: '#/components/schemas/ListSourceRepositoriesItem' ListSourceRepositoriesRequestNextTokenString: type: string minLength: 1 maxLength: 10000 ListSourceRepositoriesRequestMaxResultsInteger: type: integer minimum: 1 maximum: 200 ListSourceRepositoriesRequest: type: object title: ListSourceRepositoriesRequest properties: nextToken: allOf: - $ref: '#/components/schemas/ListSourceRepositoriesRequestNextTokenString' - description: 'A token returned from a call to this API to indicate the next batch of results to return, if any.' maxResults: allOf: - $ref: '#/components/schemas/ListSourceRepositoriesRequestMaxResultsInteger' - description: '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 NextToken element, which you can use to obtain additional results.' ListSourceRepositoryBranchesItem: type: object properties: ref: allOf: - $ref: '#/components/schemas/SourceRepositoryBranchRefString' - description: The Git reference name of the branch. name: allOf: - $ref: '#/components/schemas/SourceRepositoryBranchString' - description: The name of the branch. lastUpdatedTime: allOf: - $ref: '#/components/schemas/SyntheticTimestamp_date_time' - description: 'The time the branch was last updated, in coordinated universal time (UTC) timestamp format as specified in RFC 3339.' headCommitId: allOf: - $ref: '#/components/schemas/String' - description: 'The commit ID of the tip of the branch at the time of the request, also known as the head commit.' description: Information about a branch of a source repository returned in a list of branches. ListSourceRepositoryBranchesItems: type: array items: $ref: '#/components/schemas/ListSourceRepositoryBranchesItem' ListSourceRepositoryBranchesRequestNextTokenString: type: string minLength: 1 maxLength: 10000 ListSourceRepositoryBranchesRequestMaxResultsInteger: type: integer minimum: 1 maximum: 50 ListSourceRepositoryBranchesRequest: type: object title: ListSourceRepositoryBranchesRequest properties: nextToken: allOf: - $ref: '#/components/schemas/ListSourceRepositoryBranchesRequestNextTokenString' - description: 'A token returned from a call to this API to indicate the next batch of results to return, if any.' maxResults: allOf: - $ref: '#/components/schemas/ListSourceRepositoryBranchesRequestMaxResultsInteger' - description: '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 NextToken element, which you can use to obtain additional results.' ListSpacesRequestNextTokenString: type: string minLength: 1 maxLength: 10000 ListSpacesRequest: type: object title: ListSpacesRequest properties: nextToken: allOf: - $ref: '#/components/schemas/ListSpacesRequestNextTokenString' - description: 'A token returned from a call to this API to indicate the next batch of results to return, if any.' SpaceSummaries: type: array items: $ref: '#/components/schemas/SpaceSummary' PersistentStorageSizeInGiBInteger: type: integer minimum: 0 maximum: 64 ProjectSummary: type: object required: - name properties: name: allOf: - $ref: '#/components/schemas/String' - description: The name of the project in the space. displayName: allOf: - $ref: '#/components/schemas/String' - description: The friendly name displayed to users of the project in Amazon CodeCatalyst. description: allOf: - $ref: '#/components/schemas/String' - description: The description of the project. description: Information about a project. SpaceDescription: type: string pattern: '[a-zA-Z0-9]+(?:[-_a-zA-Z0-9.,;:/\+=?&$% ])*' minLength: 0 maxLength: 200 SpaceSummary: type: object required: - name - regionName properties: name: allOf: - $ref: '#/components/schemas/NameString' - description: The name of the space. regionName: allOf: - $ref: '#/components/schemas/RegionString' - description: The Amazon Web Services Region where the space exists. displayName: allOf: - $ref: '#/components/schemas/String' - description: The friendly name of the space displayed to users. description: allOf: - $ref: '#/components/schemas/String' - description: The description of the space. description: Information about an space. StartDevEnvironmentRequest: type: object title: StartDevEnvironmentRequest properties: ides: allOf: - $ref: '#/components/schemas/IdeConfigurationList' - description: 'Information about the integrated development environment (IDE) configured for a Dev Environment. ' instanceType: allOf: - $ref: '#/components/schemas/InstanceType' - description: 'The Amazon EC2 instace type to use for the Dev Environment. ' inactivityTimeoutMinutes: allOf: - $ref: '#/components/schemas/InactivityTimeoutMinutes' - description: 'The amount of time the Dev Environment will run without any activity detected before stopping, in minutes. Only whole integers are allowed. Dev Environments consume compute minutes when running.' StartDevEnvironmentSessionRequest: type: object required: - sessionConfiguration title: StartDevEnvironmentSessionRequest properties: sessionConfiguration: $ref: '#/components/schemas/DevEnvironmentSessionConfiguration' StartDevEnvironmentSessionResponseSessionIdString: type: string minLength: 1 maxLength: 96 StopDevEnvironmentRequest: type: object title: StopDevEnvironmentRequest properties: {} StopDevEnvironmentSessionRequestSessionIdString: type: string minLength: 1 maxLength: 96 StopDevEnvironmentSessionRequest: type: object title: StopDevEnvironmentSessionRequest properties: {} StopDevEnvironmentSessionResponseSessionIdString: type: string minLength: 1 maxLength: 96 UpdateDevEnvironmentRequestAliasString: type: string pattern: '$|^[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 0 maxLength: 128 UpdateDevEnvironmentRequest: type: object title: UpdateDevEnvironmentRequest properties: alias: allOf: - $ref: '#/components/schemas/UpdateDevEnvironmentRequestAliasString' - description: The user-specified alias for the Dev Environment. Changing this value will not cause a restart. ides: allOf: - $ref: '#/components/schemas/IdeConfigurationList' - description: Information about the integrated development environment (IDE) configured for a Dev Environment. instanceType: allOf: - $ref: '#/components/schemas/InstanceType' - description:

The Amazon EC2 instace type to use for the Dev Environment.

Changing this value will cause a restart of the Dev Environment if it is running.

inactivityTimeoutMinutes: allOf: - $ref: '#/components/schemas/InactivityTimeoutMinutes' - description: '

The amount of time the Dev Environment will run without any activity detected before stopping, in minutes. Only whole integers are allowed. Dev Environments consume compute minutes when running.

Changing this value will cause a restart of the Dev Environment if it is running.

' clientToken: allOf: - $ref: '#/components/schemas/ClientToken' - description: 'A user-specified idempotency token. Idempotency ensures that an API request completes only once. With an idempotent request, if the original request completes successfully, the subsequent retries return the result from the original successful request and have no additional effect.' UpdateDevEnvironmentResponseAliasString: type: string pattern: '[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 1 maxLength: 128 UpdateProjectRequest: type: object title: UpdateProjectRequest properties: description: allOf: - $ref: '#/components/schemas/ProjectDescription' - description: The description of the project. UpdateSpaceRequest: type: object title: UpdateSpaceRequest properties: description: allOf: - $ref: '#/components/schemas/SpaceDescription' - description: The description of the space. UserType: type: string enum: - USER - AWS_ACCOUNT - UNKNOWN VerifySessionResponseIdentityString: type: string minLength: 1 maxLength: 256 security: - hmac: []