Skip to content

Commit ab4af14

Browse files
authored
Merge branch 'main' into dfeddad/fix-duplicate-env-var-airbyte-workload-api-server
2 parents a403546 + 947254d commit ab4af14

File tree

402 files changed

+20577
-12014
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

402 files changed

+20577
-12014
lines changed

airbyte-api/problems-api/src/main/openapi/api-problems.yaml

Lines changed: 146 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,28 @@ components:
8787
detail:
8888
type: string
8989
default: Your email domain requires SSO sign-in. Please sign in using your SSO provider.
90+
EmbeddedEndpointMovedProblemResponse:
91+
x-implements: io.airbyte.api.problems.ProblemResponse
92+
type: object
93+
allOf:
94+
- $ref: "#/components/schemas/BaseProblemFields"
95+
- type: object
96+
properties:
97+
status:
98+
type: integer
99+
default: 301
100+
type:
101+
type: string
102+
default: error:embedded/endpoint-moved
103+
title:
104+
type: string
105+
default: Airbyte Embedded Endpoint Moved
106+
detail:
107+
type: string
108+
default: This endpoint for Airbyte Embedded has moved. Please see https://api.airbyte.ai/api/v1/redoc for the latest Airbyte Embedded API documentation and update your configuration.
109+
documentationUrl:
110+
type: string
111+
default: "https://api.airbyte.ai/api/v1/redoc"
90112
LicenseEntitlementProblemResponse:
91113
x-implements: io.airbyte.api.problems.ProblemResponse
92114
type: object
@@ -1618,3 +1640,127 @@ components:
16181640
type: string
16191641
format: uuid
16201642
description: The ID of the destination
1643+
SSOConfigRetrievalProblemResponse:
1644+
x-implements: io.airbyte.api.problems.ProblemResponse
1645+
type: object
1646+
allOf:
1647+
- $ref: "#/components/schemas/BaseProblemFields"
1648+
- type: object
1649+
properties:
1650+
status:
1651+
type: integer
1652+
default: 500
1653+
type:
1654+
type: string
1655+
default: error:sso-config-retrieval
1656+
title:
1657+
type: string
1658+
default: SSO config retrieval error
1659+
detail:
1660+
type: string
1661+
default: An error occurred when attempting to retrieve sso config data
1662+
data:
1663+
$ref: "#/components/schemas/ProblemSSOConfigRetrievalData"
1664+
ProblemSSOConfigRetrievalData:
1665+
type: object
1666+
required:
1667+
- organizationId
1668+
properties:
1669+
organizationId:
1670+
type: string
1671+
errorMessage:
1672+
type: string
1673+
SSOSetupProblemResponse:
1674+
x-implements: io.airbyte.api.problems.ProblemResponse
1675+
type: object
1676+
allOf:
1677+
- $ref: "#/components/schemas/BaseProblemFields"
1678+
- type: object
1679+
properties:
1680+
status:
1681+
type: integer
1682+
default: 500
1683+
type:
1684+
type: string
1685+
default: error:sso-setup
1686+
title:
1687+
type: string
1688+
default: SSO setup configuration error
1689+
detail:
1690+
type: string
1691+
default: An error occurred when performing a SSO setup
1692+
data:
1693+
$ref: "#/components/schemas/ProblemSSOSetupData"
1694+
ProblemSSOSetupData:
1695+
type: object
1696+
required:
1697+
- companyIdentifier
1698+
properties:
1699+
companyIdentifier:
1700+
type: string
1701+
errorMessage:
1702+
type: string
1703+
SSODeletionProblemResponse:
1704+
x-implements: io.airbyte.api.problems.ProblemResponse
1705+
type: object
1706+
allOf:
1707+
- $ref: "#/components/schemas/BaseProblemFields"
1708+
- type: object
1709+
properties:
1710+
status:
1711+
type: integer
1712+
default: 500
1713+
type:
1714+
type: string
1715+
default: error:sso-deletion
1716+
title:
1717+
type: string
1718+
default: SSO deletion failed
1719+
detail:
1720+
type: string
1721+
default: An error occurred when performing an SSO config delete
1722+
data:
1723+
$ref: "#/components/schemas/ProblemSSODeletionData"
1724+
ProblemSSODeletionData:
1725+
type: object
1726+
required:
1727+
- organizationId
1728+
- companyIdentifier
1729+
properties:
1730+
organizationId:
1731+
type: string
1732+
format: uuid
1733+
companyIdentifier:
1734+
type: string
1735+
errorMessage:
1736+
type: string
1737+
SSOCredentialUpdateProblemResponse:
1738+
x-implements: io.airbyte.api.problems.ProblemResponse
1739+
type: object
1740+
allOf:
1741+
- $ref: "#/components/schemas/BaseProblemFields"
1742+
- type: object
1743+
properties:
1744+
status:
1745+
type: integer
1746+
default: 500
1747+
type:
1748+
type: string
1749+
default: error:sso-credential-update
1750+
title:
1751+
type: string
1752+
default: SSO credential update failed
1753+
detail:
1754+
type: string
1755+
default: An error occurred when performing an SSO IDP credentials update
1756+
data:
1757+
$ref: "#/components/schemas/ProblemSSOCredentialUpdateData"
1758+
ProblemSSOCredentialUpdateData:
1759+
type: object
1760+
required:
1761+
- companyIdentifier
1762+
properties:
1763+
companyIdentifier:
1764+
type: string
1765+
errorMessage:
1766+
type: string

0 commit comments

Comments
 (0)