airbyte-internal-ops 0.4.2__py3-none-any.whl → 0.5.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (130) hide show
  1. {airbyte_internal_ops-0.4.2.dist-info → airbyte_internal_ops-0.5.1.dist-info}/METADATA +2 -1
  2. {airbyte_internal_ops-0.4.2.dist-info → airbyte_internal_ops-0.5.1.dist-info}/RECORD +21 -129
  3. airbyte_ops_mcp/cli/cloud.py +31 -2
  4. airbyte_ops_mcp/cloud_admin/api_client.py +506 -33
  5. airbyte_ops_mcp/cloud_admin/models.py +56 -0
  6. airbyte_ops_mcp/constants.py +58 -0
  7. airbyte_ops_mcp/{_legacy/airbyte_ci/metadata_service/docker_hub.py → docker_hub.py} +16 -10
  8. airbyte_ops_mcp/mcp/cloud_connector_versions.py +491 -10
  9. airbyte_ops_mcp/mcp/prerelease.py +5 -44
  10. airbyte_ops_mcp/mcp/prod_db_queries.py +128 -4
  11. airbyte_ops_mcp/mcp/regression_tests.py +10 -5
  12. airbyte_ops_mcp/{_legacy/airbyte_ci/metadata_service/validators/metadata_validator.py → metadata_validator.py} +18 -12
  13. airbyte_ops_mcp/prod_db_access/queries.py +51 -0
  14. airbyte_ops_mcp/prod_db_access/sql.py +76 -0
  15. airbyte_ops_mcp/regression_tests/ci_output.py +8 -4
  16. airbyte_ops_mcp/regression_tests/connection_fetcher.py +16 -5
  17. airbyte_ops_mcp/regression_tests/http_metrics.py +21 -2
  18. airbyte_ops_mcp/regression_tests/models.py +7 -1
  19. airbyte_ops_mcp/telemetry.py +162 -0
  20. airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/.gitignore +0 -1
  21. airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/README.md +0 -420
  22. airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/__init__.py +0 -2
  23. airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/__init__.py +0 -1
  24. airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/backends/__init__.py +0 -8
  25. airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/backends/base_backend.py +0 -16
  26. airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/backends/duckdb_backend.py +0 -87
  27. airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/backends/file_backend.py +0 -165
  28. airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/connection_objects_retrieval.py +0 -377
  29. airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/connector_runner.py +0 -247
  30. airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/errors.py +0 -7
  31. airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/evaluation_modes.py +0 -25
  32. airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/hacks.py +0 -23
  33. airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/json_schema_helper.py +0 -384
  34. airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/mitm_addons.py +0 -37
  35. airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/models.py +0 -595
  36. airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/proxy.py +0 -207
  37. airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/secret_access.py +0 -47
  38. airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/segment_tracking.py +0 -45
  39. airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/utils.py +0 -214
  40. airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/conftest.py.disabled +0 -751
  41. airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/consts.py +0 -4
  42. airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/poetry.lock +0 -4480
  43. airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/pytest.ini +0 -9
  44. airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/regression_tests/__init__.py +0 -1
  45. airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/regression_tests/test_check.py +0 -61
  46. airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/regression_tests/test_discover.py +0 -117
  47. airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/regression_tests/test_read.py +0 -627
  48. airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/regression_tests/test_spec.py +0 -43
  49. airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/report.py +0 -542
  50. airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/stash_keys.py +0 -38
  51. airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/templates/__init__.py +0 -0
  52. airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/templates/private_details.html.j2 +0 -305
  53. airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/templates/report.html.j2 +0 -515
  54. airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/utils.py +0 -187
  55. airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/validation_tests/__init__.py +0 -0
  56. airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/validation_tests/test_check.py +0 -61
  57. airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/validation_tests/test_discover.py +0 -217
  58. airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/validation_tests/test_read.py +0 -177
  59. airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/validation_tests/test_spec.py +0 -631
  60. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/README.md +0 -91
  61. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/bin/bundle-schemas.js +0 -48
  62. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/bin/generate-metadata-models.sh +0 -36
  63. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ActorDefinitionResourceRequirements.py +0 -54
  64. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/AirbyteInternal.py +0 -22
  65. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/AllowedHosts.py +0 -18
  66. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorBreakingChanges.py +0 -65
  67. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorBuildOptions.py +0 -15
  68. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorIPCOptions.py +0 -25
  69. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorMetadataDefinitionV0.json +0 -897
  70. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorMetadataDefinitionV0.py +0 -478
  71. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorMetrics.py +0 -24
  72. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorPackageInfo.py +0 -12
  73. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorRegistryDestinationDefinition.py +0 -407
  74. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorRegistryReleases.py +0 -406
  75. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorRegistrySourceDefinition.py +0 -407
  76. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorRegistryV0.py +0 -413
  77. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorReleases.py +0 -98
  78. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorTestSuiteOptions.py +0 -58
  79. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/GeneratedFields.py +0 -62
  80. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/GitInfo.py +0 -31
  81. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/JobType.py +0 -23
  82. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/NormalizationDestinationDefinitionConfig.py +0 -24
  83. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/RegistryOverrides.py +0 -111
  84. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ReleaseStage.py +0 -15
  85. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/RemoteRegistries.py +0 -23
  86. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ResourceRequirements.py +0 -18
  87. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/RolloutConfiguration.py +0 -29
  88. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/Secret.py +0 -34
  89. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/SecretStore.py +0 -22
  90. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/SourceFileInfo.py +0 -16
  91. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/SuggestedStreams.py +0 -18
  92. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/SupportLevel.py +0 -15
  93. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/TestConnections.py +0 -14
  94. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/__init__.py +0 -31
  95. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/airbyte-connector-metadata-schema.json +0 -0
  96. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ActorDefinitionResourceRequirements.yaml +0 -30
  97. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/AirbyteInternal.yaml +0 -32
  98. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/AllowedHosts.yaml +0 -13
  99. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorBreakingChanges.yaml +0 -65
  100. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorBuildOptions.yaml +0 -10
  101. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorIPCOptions.yaml +0 -29
  102. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorMetadataDefinitionV0.yaml +0 -172
  103. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorMetrics.yaml +0 -30
  104. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorPackageInfo.yaml +0 -9
  105. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorRegistryDestinationDefinition.yaml +0 -90
  106. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorRegistryReleases.yaml +0 -35
  107. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorRegistrySourceDefinition.yaml +0 -92
  108. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorRegistryV0.yaml +0 -18
  109. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorReleases.yaml +0 -16
  110. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorTestSuiteOptions.yaml +0 -28
  111. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/GeneratedFields.yaml +0 -16
  112. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/GitInfo.yaml +0 -21
  113. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/JobType.yaml +0 -14
  114. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/NormalizationDestinationDefinitionConfig.yaml +0 -21
  115. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/RegistryOverrides.yaml +0 -38
  116. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ReleaseStage.yaml +0 -11
  117. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/RemoteRegistries.yaml +0 -25
  118. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ResourceRequirements.yaml +0 -16
  119. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/RolloutConfiguration.yaml +0 -29
  120. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/Secret.yaml +0 -19
  121. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/SecretStore.yaml +0 -16
  122. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/SourceFileInfo.yaml +0 -17
  123. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/SuggestedStreams.yaml +0 -13
  124. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/SupportLevel.yaml +0 -10
  125. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/TestConnections.yaml +0 -17
  126. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/package-lock.json +0 -62
  127. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/package.json +0 -12
  128. airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/transform.py +0 -71
  129. {airbyte_internal_ops-0.4.2.dist-info → airbyte_internal_ops-0.5.1.dist-info}/WHEEL +0 -0
  130. {airbyte_internal_ops-0.4.2.dist-info → airbyte_internal_ops-0.5.1.dist-info}/entry_points.txt +0 -0
@@ -1,172 +0,0 @@
1
- ---
2
- "$schema": http://json-schema.org/draft-07/schema#
3
- "$id": https://github.com/airbytehq/airbyte/airbyte-ci/connectors_ci/metadata_service/lib/models/src/ConnectorMetadataDefinitionV0.yml
4
-
5
- title: ConnectorMetadataDefinitionV0
6
- description: describes the metadata of a connector
7
- type: object
8
- required:
9
- - metadataSpecVersion
10
- - data
11
- additionalProperties: false
12
- properties:
13
- metadataSpecVersion:
14
- type: "string"
15
- data:
16
- type: object
17
- required:
18
- - name
19
- - definitionId
20
- - connectorType
21
- - dockerRepository
22
- - dockerImageTag
23
- - license
24
- - documentationUrl
25
- - githubIssueLabel
26
- - connectorSubtype
27
- - releaseStage
28
- additionalProperties: false
29
- properties:
30
- name:
31
- type: string
32
- icon:
33
- type: string
34
- definitionId:
35
- type: string
36
- format: uuid
37
- connectorBuildOptions:
38
- "$ref": ConnectorBuildOptions.yaml
39
- connectorTestSuitesOptions:
40
- type: array
41
- items:
42
- "$ref": ConnectorTestSuiteOptions.yaml
43
- connectorType:
44
- type: string
45
- enum:
46
- - destination
47
- - source
48
- dockerRepository:
49
- type: string
50
- dockerImageTag:
51
- type: string
52
- supportsDbt:
53
- type: boolean
54
- supportsNormalization:
55
- type: boolean
56
- license:
57
- type: string
58
- documentationUrl:
59
- type: string
60
- format: uri
61
- externalDocumentationUrls:
62
- type: array
63
- description: "An array of external vendor documentation URLs (changelogs, API references, deprecation notices, etc.)"
64
- items:
65
- type: object
66
- required:
67
- - title
68
- - url
69
- additionalProperties: false
70
- properties:
71
- title:
72
- type: string
73
- description: "Display title for the documentation link"
74
- url:
75
- type: string
76
- format: uri
77
- description: "URL to the external documentation"
78
- type:
79
- type: string
80
- description: "Category of documentation"
81
- enum:
82
- - api_deprecations
83
- - api_reference
84
- - api_release_history
85
- - authentication_guide
86
- - data_model_reference
87
- - developer_community
88
- - migration_guide
89
- - other
90
- - permissions_scopes
91
- - rate_limits
92
- - sql_reference
93
- - status_page
94
- requiresLogin:
95
- type: boolean
96
- description: "Whether the URL requires authentication to access"
97
- default: false
98
- githubIssueLabel:
99
- type: string
100
- maxSecondsBetweenMessages:
101
- description: Maximum delay between 2 airbyte protocol messages, in second. The source will timeout if this delay is reached
102
- type: integer
103
- releaseDate:
104
- description: The date when this connector was first released, in yyyy-mm-dd format.
105
- type: string
106
- format: date
107
- protocolVersion:
108
- type: string
109
- description: the Airbyte Protocol version supported by the connector
110
- erdUrl:
111
- type: string
112
- description: The URL where you can visualize the ERD
113
- connectorSubtype:
114
- type: string
115
- enum:
116
- - api
117
- - database
118
- - datalake
119
- - file
120
- - custom
121
- - message_queue
122
- - unknown
123
- - vectorstore
124
- releaseStage:
125
- "$ref": ReleaseStage.yaml
126
- supportLevel:
127
- "$ref": SupportLevel.yaml
128
- tags:
129
- type: array
130
- description: "An array of tags that describe the connector. E.g: language:python, keyword:rds, etc."
131
- items:
132
- type: string
133
- default: []
134
- registryOverrides:
135
- anyOf:
136
- - type: object
137
- additionalProperties: false
138
- properties:
139
- oss:
140
- anyOf:
141
- - "$ref": RegistryOverrides.yaml
142
- cloud:
143
- anyOf:
144
- - "$ref": RegistryOverrides.yaml
145
-
146
- allowedHosts:
147
- "$ref": AllowedHosts.yaml
148
- releases:
149
- "$ref": ConnectorReleases.yaml
150
- normalizationConfig:
151
- "$ref": NormalizationDestinationDefinitionConfig.yaml
152
- suggestedStreams:
153
- "$ref": SuggestedStreams.yaml
154
- resourceRequirements:
155
- "$ref": ActorDefinitionResourceRequirements.yaml
156
- ab_internal:
157
- "$ref": AirbyteInternal.yaml
158
- remoteRegistries:
159
- "$ref": RemoteRegistries.yaml
160
- supportsRefreshes:
161
- type: boolean
162
- default: false
163
- generated:
164
- "$ref": GeneratedFields.yaml
165
- supportsFileTransfer:
166
- type: boolean
167
- default: false
168
- supportsDataActivation:
169
- type: boolean
170
- default: false
171
- connectorIPCOptions:
172
- "$ref": ConnectorIPCOptions.yaml
@@ -1,30 +0,0 @@
1
- ---
2
- "$schema": http://json-schema.org/draft-07/schema#
3
- "$id": https://github.com/airbytehq/airbyte/airbyte-ci/connectors_ci/metadata_service/lib/models/src/ConnectorMetrics.yaml
4
- title: ConnectorMetrics
5
- description: Information about the source file that generated the registry entry
6
- type: object
7
- properties:
8
- all:
9
- type: ConnectorMetric
10
- cloud:
11
- type: ConnectorMetric
12
- oss:
13
- type: ConnectorMetric
14
- definitions:
15
- ConnectorMetric:
16
- type: object
17
- properties:
18
- usage:
19
- oneOf:
20
- - type: string
21
- - type: string
22
- enum: [low, medium, high]
23
- sync_success_rate:
24
- oneOf:
25
- - type: string
26
- - type: string
27
- enum: [low, medium, high]
28
- connector_version:
29
- type: string
30
- additionalProperties: true
@@ -1,9 +0,0 @@
1
- ---
2
- "$schema": http://json-schema.org/draft-07/schema#
3
- "$id": https://github.com/airbytehq/airbyte/airbyte-ci/connectors_ci/metadata_service/lib/models/src/ConnectorPackageInfo.yaml
4
- title: ConnectorPackageInfo
5
- description: Information about the contents of the connector image
6
- type: object
7
- properties:
8
- cdk_version:
9
- type: string
@@ -1,90 +0,0 @@
1
- ---
2
- "$schema": http://json-schema.org/draft-07/schema#
3
- "$id": https://github.com/airbytehq/airbyte-platform/blob/main/airbyte-config/config-models/src/main/resources/types/ConnectorRegistryDestinationDefinition.yaml
4
- title: ConnectorRegistryDestinationDefinition
5
- description: describes a destination
6
- type: object
7
- required:
8
- - destinationDefinitionId
9
- - name
10
- - dockerRepository
11
- - dockerImageTag
12
- - documentationUrl
13
- - spec
14
- additionalProperties: true
15
- properties:
16
- destinationDefinitionId:
17
- type: string
18
- format: uuid
19
- name:
20
- type: string
21
- dockerRepository:
22
- type: string
23
- dockerImageTag:
24
- type: string
25
- documentationUrl:
26
- type: string
27
- icon:
28
- type: string
29
- iconUrl:
30
- type: string
31
- spec:
32
- type: object
33
- tombstone:
34
- description: if false, the configuration is active. if true, then this
35
- configuration is permanently off.
36
- type: boolean
37
- default: false
38
- public:
39
- description: true if this connector definition is available to all workspaces
40
- type: boolean
41
- default: false
42
- custom:
43
- description: whether this is a custom connector definition
44
- type: boolean
45
- default: false
46
- releaseStage:
47
- "$ref": ReleaseStage.yaml
48
- supportLevel:
49
- "$ref": SupportLevel.yaml
50
- releaseDate:
51
- description: The date when this connector was first released, in yyyy-mm-dd format.
52
- type: string
53
- format: date
54
- tags:
55
- type: array
56
- description: "An array of tags that describe the connector. E.g: language:python, keyword:rds, etc."
57
- items:
58
- type: string
59
- resourceRequirements:
60
- "$ref": ActorDefinitionResourceRequirements.yaml
61
- protocolVersion:
62
- type: string
63
- description: the Airbyte Protocol version supported by the connector
64
- normalizationConfig:
65
- "$ref": NormalizationDestinationDefinitionConfig.yaml
66
- supportsDbt:
67
- type: boolean
68
- description: an optional flag indicating whether DBT is used in the normalization. If the flag value is NULL - DBT is not used.
69
- allowedHosts:
70
- "$ref": AllowedHosts.yaml
71
- releases:
72
- "$ref": ConnectorRegistryReleases.yaml
73
- ab_internal:
74
- "$ref": AirbyteInternal.yaml
75
- supportsRefreshes:
76
- type: boolean
77
- default: false
78
- supportsFileTransfer:
79
- type: boolean
80
- default: false
81
- supportsDataActivation:
82
- type: boolean
83
- default: false
84
- generated:
85
- "$ref": GeneratedFields.yaml
86
- packageInfo:
87
- "$ref": ConnectorPackageInfo.yaml
88
- language:
89
- type: string
90
- description: The language the connector is written in
@@ -1,35 +0,0 @@
1
- ---
2
- "$schema": http://json-schema.org/draft-07/schema#
3
- "$id": https://github.com/airbytehq/airbyte/airbyte-ci/connectors/metadata_service/lib/metadata_service/models/src/ConnectorRegistryReleases.yaml
4
- title: ConnectorRegistryReleases
5
- description: Contains information about different types of releases for a connector.
6
- type: object
7
- additionalProperties: false
8
- properties:
9
- releaseCandidates:
10
- $ref: "#/definitions/ConnectorReleaseCandidates"
11
- rolloutConfiguration:
12
- $ref: RolloutConfiguration.yaml
13
- breakingChanges:
14
- $ref: ConnectorBreakingChanges.yaml
15
- migrationDocumentationUrl:
16
- description: URL to documentation on how to migrate from the previous version to the current version. Defaults to ${documentationUrl}-migrations
17
- type: string
18
- format: uri
19
- definitions:
20
- ConnectorReleaseCandidates:
21
- description: Each entry denotes a release candidate version of a connector.
22
- type: object
23
- additionalProperties: false
24
- minProperties: 1
25
- maxProperties: 1
26
- patternProperties:
27
- "^\\d+\\.\\d+\\.\\d+(-[0-9A-Za-z-.]+)?$":
28
- $ref: "#/definitions/VersionReleaseCandidate"
29
- VersionReleaseCandidate:
30
- description: Contains information about a release candidate version of a connector.
31
- additionalProperties: false
32
- type: object
33
- oneOf:
34
- - $ref: ConnectorRegistrySourceDefinition.yaml
35
- - $ref: ConnectorRegistryDestinationDefinition.yaml
@@ -1,92 +0,0 @@
1
- ---
2
- "$schema": http://json-schema.org/draft-07/schema#
3
- "$id": https://github.com/airbytehq/airbyte-platform/blob/main/airbyte-config/config-models/src/main/resources/types/ConnectorRegistrySourceDefinition.yaml
4
- title: ConnectorRegistrySourceDefinition
5
- description: describes a source
6
- type: object
7
- required:
8
- - sourceDefinitionId
9
- - name
10
- - dockerRepository
11
- - dockerImageTag
12
- - documentationUrl
13
- - spec
14
- additionalProperties: true
15
- properties:
16
- sourceDefinitionId:
17
- type: string
18
- format: uuid
19
- name:
20
- type: string
21
- dockerRepository:
22
- type: string
23
- dockerImageTag:
24
- type: string
25
- documentationUrl:
26
- type: string
27
- icon:
28
- type: string
29
- iconUrl:
30
- type: string
31
- sourceType:
32
- type: string
33
- enum:
34
- - api
35
- - file
36
- - database
37
- - custom
38
- spec:
39
- type: object
40
- tombstone:
41
- description: if false, the configuration is active. if true, then this
42
- configuration is permanently off.
43
- type: boolean
44
- default: false
45
- public:
46
- description: true if this connector definition is available to all workspaces
47
- type: boolean
48
- default: false
49
- custom:
50
- description: whether this is a custom connector definition
51
- type: boolean
52
- default: false
53
- releaseStage:
54
- "$ref": ReleaseStage.yaml
55
- supportLevel:
56
- "$ref": SupportLevel.yaml
57
- releaseDate:
58
- description: The date when this connector was first released, in yyyy-mm-dd format.
59
- type: string
60
- format: date
61
- resourceRequirements:
62
- "$ref": ActorDefinitionResourceRequirements.yaml
63
- protocolVersion:
64
- type: string
65
- description: the Airbyte Protocol version supported by the connector
66
- allowedHosts:
67
- "$ref": AllowedHosts.yaml
68
- suggestedStreams:
69
- "$ref": SuggestedStreams.yaml
70
- maxSecondsBetweenMessages:
71
- description: Number of seconds allowed between 2 airbyte protocol messages. The source will timeout if this delay is reach
72
- type: integer
73
- erdUrl:
74
- type: string
75
- description: The URL where you can visualize the ERD
76
- releases:
77
- "$ref": ConnectorRegistryReleases.yaml
78
- ab_internal:
79
- "$ref": AirbyteInternal.yaml
80
- generated:
81
- "$ref": GeneratedFields.yaml
82
- packageInfo:
83
- "$ref": ConnectorPackageInfo.yaml
84
- language:
85
- type: string
86
- description: The language the connector is written in
87
- supportsFileTransfer:
88
- type: boolean
89
- default: false
90
- supportsDataActivation:
91
- type: boolean
92
- default: false
@@ -1,18 +0,0 @@
1
- ---
2
- "$schema": http://json-schema.org/draft-07/schema#
3
- "$id": https://github.com/airbytehq/airbyte-platform/blob/main/airbyte-config/config-models/src/main/resources/types/ConnectorRegistryV0.yaml
4
- title: ConnectorRegistryV0
5
- description: describes the collection of connectors retrieved from a registry
6
- type: object
7
- required:
8
- - destinations
9
- - sources
10
- properties:
11
- destinations:
12
- type: array
13
- items:
14
- $ref: ConnectorRegistryDestinationDefinition.yaml
15
- sources:
16
- type: array
17
- items:
18
- $ref: ConnectorRegistrySourceDefinition.yaml
@@ -1,16 +0,0 @@
1
- ---
2
- "$schema": http://json-schema.org/draft-07/schema#
3
- "$id": https://github.com/airbytehq/airbyte/airbyte-ci/connectors/metadata_service/lib/metadata_service/models/src/ConnectorReleases.yaml
4
- title: ConnectorReleases
5
- description: Contains information about different types of releases for a connector.
6
- type: object
7
- additionalProperties: false
8
- properties:
9
- rolloutConfiguration:
10
- $ref: RolloutConfiguration.yaml
11
- breakingChanges:
12
- $ref: ConnectorBreakingChanges.yaml
13
- migrationDocumentationUrl:
14
- description: URL to documentation on how to migrate from the previous version to the current version. Defaults to ${documentationUrl}-migrations
15
- type: string
16
- format: uri
@@ -1,28 +0,0 @@
1
- ---
2
- "$schema": http://json-schema.org/draft-07/schema#
3
- "$id": https://github.com/airbytehq/airbyte/airbyte-ci/connectors/metadata_service/lib/metadata_service/models/src/ConnectorTestOptions.yaml
4
- title: ConnectorTestSuiteOptions
5
- description: Options for a specific connector test suite.
6
- type: object
7
- required:
8
- - suite
9
- additionalProperties: false
10
- properties:
11
- suite:
12
- description: "Name of the configured test suite"
13
- type: string
14
- enum:
15
- - "unitTests"
16
- - "integrationTests"
17
- - "acceptanceTests"
18
- - "liveTests"
19
- testSecrets:
20
- description: "List of secrets required to run the test suite"
21
- type: array
22
- items:
23
- "$ref": "Secret.yaml"
24
- testConnections:
25
- description: "List of sandbox cloud connections that tests can be run against"
26
- type: array
27
- items:
28
- "$ref": "TestConnections.yaml"
@@ -1,16 +0,0 @@
1
- ---
2
- "$schema": http://json-schema.org/draft-07/schema#
3
- "$id": https://github.com/airbytehq/airbyte/airbyte-ci/connectors_ci/metadata_service/lib/models/src/GeneratedFields.yaml
4
- title: GeneratedFields
5
- description: Optional schema for fields generated at metadata upload time
6
- type: object
7
- properties:
8
- git:
9
- "$ref": GitInfo.yaml
10
- source_file_info:
11
- "$ref": SourceFileInfo.yaml
12
- metrics:
13
- "$ref": ConnectorMetrics.yaml
14
- sbomUrl:
15
- type: string
16
- description: URL to the SBOM file
@@ -1,21 +0,0 @@
1
- ---
2
- "$schema": http://json-schema.org/draft-07/schema#
3
- "$id": https://github.com/airbytehq/airbyte/airbyte-ci/connectors/metadata_service/lib/metadata_service/models/src/GitInfo.yaml
4
- title: GitInfo
5
- description: Information about the author of the last commit that modified this file. DO NOT DEFINE THIS FIELD MANUALLY. It will be overwritten by the CI.
6
- type: object
7
- additionalProperties: false
8
- properties:
9
- commit_sha:
10
- type: string
11
- description: The git commit sha of the last commit that modified this file.
12
- commit_timestamp:
13
- type: string
14
- format: date-time
15
- description: The git commit timestamp of the last commit that modified this file.
16
- commit_author:
17
- type: string
18
- description: The git commit author of the last commit that modified this file.
19
- commit_author_email:
20
- type: string
21
- description: The git commit author email of the last commit that modified this file.
@@ -1,14 +0,0 @@
1
- ---
2
- "$schema": http://json-schema.org/draft-07/schema#
3
- "$id": https://github.com/airbytehq/airbyte/airbyte-ci/connectors/metadata_service/lib/metadata_service/models/src/JobType.yaml
4
- title: JobType
5
- description: enum that describes the different types of jobs that the platform runs.
6
- type: string
7
- enum:
8
- - get_spec
9
- - check_connection
10
- - discover_schema
11
- - sync
12
- - reset_connection
13
- - connection_updater
14
- - replicate
@@ -1,21 +0,0 @@
1
- ---
2
- "$schema": http://json-schema.org/draft-07/schema#
3
- "$id": https://github.com/airbytehq/airbyte/airbyte-ci/connectors/metadata_service/lib/metadata_service/models/src/NormalizationDestinationDefinitionConfig.yaml
4
- title: NormalizationDestinationDefinitionConfig
5
- description: describes a normalization config for destination definition
6
- type: object
7
- required:
8
- - normalizationRepository
9
- - normalizationTag
10
- - normalizationIntegrationType
11
- additionalProperties: true
12
- properties:
13
- normalizationRepository:
14
- type: string
15
- description: a field indicating the name of the repository to be used for normalization. If the value of the flag is NULL - normalization is not used.
16
- normalizationTag:
17
- type: string
18
- description: a field indicating the tag of the docker repository to be used for normalization.
19
- normalizationIntegrationType:
20
- type: string
21
- description: a field indicating the type of integration dialect to use for normalization.
@@ -1,38 +0,0 @@
1
- ---
2
- "$schema": http://json-schema.org/draft-07/schema#
3
- "$id": https://github.com/airbytehq/airbyte/airbyte-ci/connectors_ci/metadata_service/lib/models/src/RegistryOverrides.yml
4
- title: RegistryOverrides
5
- description: describes the overrides per registry of a connector
6
- type: object
7
- additionalProperties: false
8
- required:
9
- - enabled
10
- properties:
11
- enabled:
12
- type: boolean
13
- default: false
14
- name:
15
- type: string
16
- dockerRepository:
17
- type: string
18
- dockerImageTag:
19
- type: string
20
- supportsDbt:
21
- type: boolean
22
- supportsNormalization:
23
- type: boolean
24
- license:
25
- type: string
26
- documentationUrl:
27
- type: string
28
- format: uri
29
- connectorSubtype:
30
- type: string
31
- allowedHosts:
32
- $ref: AllowedHosts.yaml
33
- normalizationConfig:
34
- "$ref": NormalizationDestinationDefinitionConfig.yaml
35
- suggestedStreams:
36
- $ref: SuggestedStreams.yaml
37
- resourceRequirements:
38
- $ref: ActorDefinitionResourceRequirements.yaml
@@ -1,11 +0,0 @@
1
- ---
2
- "$schema": http://json-schema.org/draft-07/schema#
3
- "$id": https://github.com/airbytehq/airbyte-platform/blob/main/airbyte-config/config-models/src/main/resources/types/ReleaseStage.yaml
4
- title: ReleaseStage
5
- description: enum that describes a connector's release stage
6
- type: string
7
- enum:
8
- - alpha
9
- - beta
10
- - generally_available
11
- - custom
@@ -1,25 +0,0 @@
1
- ---
2
- "$schema": http://json-schema.org/draft-07/schema#
3
- "$id": https://github.com/airbytehq/airbyte/airbyte-ci/connectors_ci/metadata_service/lib/models/src/RemoteRegistries.yml
4
- title: RemoteRegistries
5
- description: describes how the connector is published to remote registries
6
- type: object
7
- additionalProperties: false
8
- properties:
9
- pypi:
10
- $ref: "#/definitions/PyPi"
11
- definitions:
12
- PyPi:
13
- title: PyPi
14
- description: describes the PyPi publishing options
15
- type: object
16
- additionalProperties: false
17
- required:
18
- - enabled
19
- - packageName
20
- properties:
21
- enabled:
22
- type: boolean
23
- packageName:
24
- type: string
25
- description: The name of the package on PyPi.
@@ -1,16 +0,0 @@
1
- ---
2
- "$schema": http://json-schema.org/draft-07/schema#
3
- "$id": https://github.com/airbytehq/airbyte/airbyte-ci/connectors/metadata_service/lib/metadata_service/models/src/ResourceRequirements.yaml
4
- title: ResourceRequirements
5
- description: generic configuration for pod source requirements
6
- type: object
7
- additionalProperties: false
8
- properties:
9
- cpu_request:
10
- type: string
11
- cpu_limit:
12
- type: string
13
- memory_request:
14
- type: string
15
- memory_limit:
16
- type: string