openapi: 3.0.0 info: version: '2022-09-28' x-release: bearer title: Amazon CodeCatalyst AccessTokens Spaces API 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 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) security: - hmac: [] tags: - name: Spaces paths: /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 tags: - Spaces 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 tags: - Spaces /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 tags: - Spaces 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 tags: - Spaces /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 tags: - Spaces 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 tags: - Spaces 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 tags: - Spaces /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 tags: - Spaces /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 tags: - Spaces 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 tags: - Spaces 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 tags: - Spaces /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 tags: - Spaces 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 tags: - Spaces 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 tags: - Spaces /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 tags: - Spaces 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 tags: - Spaces 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 tags: - Spaces /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 tags: - Spaces /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 tags: - Spaces /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 tags: - Spaces /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 tags: - Spaces /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 tags: - Spaces /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 tags: - Spaces /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 tags: - Spaces /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 tags: - Spaces /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 tags: - Spaces /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 tags: - Spaces /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 tags: - Spaces components: schemas: DevEnvironmentSessionSummaryIdString: type: string minLength: 1 maxLength: 96 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. StopDevEnvironmentSessionResponseSessionIdString: type: string minLength: 1 maxLength: 96 ResourceNotFoundException: {} SyntheticTimestamp_date_time: type: string format: date-time PersistentStorageSizeInGiBInteger: type: integer minimum: 0 maximum: 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}' 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. StatusReason: type: string minLength: 0 maxLength: 1024 IdeConfigurationList: type: array items: $ref: '#/components/schemas/IdeConfiguration' minItems: 0 maxItems: 1 IdeNameString: type: string minLength: 1 maxLength: 128 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. ' Timestamp: type: string format: date-time DevEnvironmentStatus: type: string enum: - PENDING - RUNNING - STARTING - STOPPING - STOPPED - FAILED - DELETING - DELETED GetDevEnvironmentResponseCreatorIdString: type: string minLength: 0 maxLength: 1024 IdeConfigurationRuntimeString: type: string minLength: 1 maxLength: 400 RegionString: type: string pattern: (us(?:-gov)?|af|ap|ca|cn|eu|sa)-(central|(?:north|south)?(?:east|west)?)-(\d+) minLength: 3 maxLength: 16 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. FilterKey: type: string enum: - hasAccessTo InactivityTimeoutMinutes: type: integer minimum: 0 maximum: 1200 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. StartDevEnvironmentSessionResponseSessionIdString: type: string minLength: 1 maxLength: 96 PersistentStorageConfigurationSizeInGiBInteger: type: integer minimum: 0 maximum: 64 DevEnvironmentRepositorySummaries: type: array items: $ref: '#/components/schemas/DevEnvironmentRepositorySummary' SensitiveString: type: string format: password StringList: type: array items: $ref: '#/components/schemas/String' IdeRuntimeString: type: string minLength: 1 maxLength: 400 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. ' UpdateDevEnvironmentResponseAliasString: type: string pattern: '[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 1 maxLength: 128 NameString: type: string pattern: '[a-zA-Z0-9]+(?:[-_\.][a-zA-Z0-9]+)*' minLength: 3 maxLength: 63 ClientToken: type: string minLength: 1 maxLength: 1024 ExecuteCommandSessionConfigurationArgumentsMemberString: type: string minLength: 1 maxLength: 255 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. ' 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. 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. SourceRepositoryBranchRefString: type: string minLength: 1 maxLength: 255 String: type: string 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. ExecuteCommandSessionConfigurationCommandString: type: string minLength: 1 maxLength: 255 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. 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. 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. ' 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. ' ThrottlingException: {} 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. 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. 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. 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. 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. 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. EventLogEntries: type: array items: $ref: '#/components/schemas/EventLogEntry' GetDevEnvironmentResponseAliasString: type: string minLength: 0 maxLength: 128 DevEnvironmentSummaryList: type: array items: $ref: '#/components/schemas/DevEnvironmentSummary' ListSourceRepositoryBranchesItems: type: array items: $ref: '#/components/schemas/ListSourceRepositoryBranchesItem' DevEnvironmentSessionType: type: string enum: - SSM - SSH 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. 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. 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. 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. SpaceSummaries: type: array items: $ref: '#/components/schemas/SpaceSummary' 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. 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. ServiceQuotaExceededException: {} 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. 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. 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. ProjectSummaries: type: array items: $ref: '#/components/schemas/ProjectSummary' 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. DevEnvironmentSummaryAliasString: type: string minLength: 0 maxLength: 128 InstanceType: type: string enum: - dev.standard1.small - dev.standard1.medium - dev.standard1.large - dev.standard1.xlarge 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. ComparisonOperator: type: string enum: - EQ - GT - GE - LT - LE ConflictException: {} 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. 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. 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. 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. 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. GetSourceRepositoryCloneUrlsResponse: type: object required: - https properties: https: allOf: - $ref: '#/components/schemas/String' - description: The HTTPS URL to use when cloning the source repository. ValidationException: {} 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. 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. 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. 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. ExecuteCommandSessionConfigurationArguments: type: array items: $ref: '#/components/schemas/ExecuteCommandSessionConfigurationArgumentsMemberString' SourceRepositoryDescriptionString: type: string minLength: 1 maxLength: 255 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. Ides: type: array items: $ref: '#/components/schemas/Ide' minItems: 0 maxItems: 1 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. DevEnvironmentSummaryCreatorIdString: type: string minLength: 0 maxLength: 1024 ListSourceRepositoriesItems: type: array items: $ref: '#/components/schemas/ListSourceRepositoriesItem' 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. ' IdeConfigurationNameString: type: string minLength: 1 maxLength: 128 SourceRepositoryNameString: type: string pattern: (?!.*[.]git$)[\w\-.]* minLength: 1 maxLength: 100 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. UserType: type: string enum: - USER - AWS_ACCOUNT - UNKNOWN OperationType: type: string enum: - READONLY - MUTATION AccessDeniedException: {} DevEnvironmentSessionsSummaryList: type: array items: $ref: '#/components/schemas/DevEnvironmentSessionSummary' SourceRepositoryBranchString: type: string minLength: 1 maxLength: 100 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. ' 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. 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}' securitySchemes: hmac: type: apiKey name: Authorization in: header externalDocs: description: Amazon Web Services documentation url: https://docs.aws.amazon.com/codecatalyst/