Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
76 changes: 41 additions & 35 deletions openapi/src/data-pipelines.openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,8 @@ components:
project_id:
$ref: '#/components/schemas/ProjectId'
type:
$ref: '#/components/schemas/PipelineType'
type: string
default: gcs-raw
trial:
type: boolean
default: false
Expand Down Expand Up @@ -479,7 +480,8 @@ components:
project_id:
$ref: '#/components/schemas/ProjectId'
type:
$ref: '#/components/schemas/PipelineType'
type: string
default: s3-raw
trial:
type: boolean
default: false
Expand Down Expand Up @@ -637,7 +639,8 @@ components:
project_id:
$ref: '#/components/schemas/ProjectId'
type:
$ref: '#/components/schemas/PipelineType'
type: string
default: azure-raw
trial:
type: boolean
default: false
Expand Down Expand Up @@ -767,7 +770,8 @@ components:
project_id:
$ref: '#/components/schemas/ProjectId'
type:
$ref: '#/components/schemas/PipelineType'
type: string
default: bigquery
trial:
type: boolean
default: false
Expand Down Expand Up @@ -822,11 +826,10 @@ components:
Mixpanel event data. `people` exports Mixpanel user data.
sync:
type: boolean
default: false
enum:
- true
default: true
description: >
**Default**: `false`


A value of `true` updates exported data with any changes that occur
in your Mixpanel dataset. These changes include deletions, late
data, and imports that fall into your export window.
Expand Down Expand Up @@ -919,6 +922,8 @@ components:
- type
- from_date
- bq_region
- sync
- schema_type

SchematizedSnowflakePipeline:
title: Schematized Snowflake Pipeline
Expand All @@ -927,7 +932,8 @@ components:
project_id:
$ref: '#/components/schemas/ProjectId'
type:
$ref: '#/components/schemas/PipelineType'
type: string
default: snowflake
trial:
type: boolean
default: false
Expand Down Expand Up @@ -982,11 +988,10 @@ components:
Mixpanel event data. `people` exports Mixpanel user data.
sync:
type: boolean
default: false
enum:
- true
default: true
description: >
**Default**: `false`


A value of `true` updates exported data with any changes that occur
in your Mixpanel dataset. These changes include deletions, late
data, and imports that fall into your export window.
Expand Down Expand Up @@ -1057,6 +1062,8 @@ components:
- from_date
- snowflake_share_with
- region
- sync
- schema_type

SchematizedAWSPipeline:
title: Schematized AWS Pipeline
Expand All @@ -1065,7 +1072,8 @@ components:
project_id:
$ref: '#/components/schemas/ProjectId'
type:
$ref: '#/components/schemas/PipelineType'
type: string
default: aws
trial:
type: boolean
default: false
Expand Down Expand Up @@ -1120,11 +1128,10 @@ components:
Mixpanel event data. `people` exports Mixpanel user data.
sync:
type: boolean
default: false
enum:
- true
default: true
description: >
**Default**: `false`


A value of `true` updates exported data with any changes that occur
in your Mixpanel dataset. These changes include deletions, late
data, and imports that fall into your export window.
Expand Down Expand Up @@ -1266,6 +1273,8 @@ components:
- s3_bucket
- s3_region
- s3_role
- sync
- schema_type

SchematizedAzurePipeline:
title: Schematized Azure Pipeline
Expand All @@ -1274,7 +1283,8 @@ components:
project_id:
$ref: '#/components/schemas/ProjectId'
type:
$ref: '#/components/schemas/PipelineType'
type: string
default: azure-blob
trial:
type: boolean
default: false
Expand Down Expand Up @@ -1329,11 +1339,10 @@ components:
Mixpanel event data. `people` exports Mixpanel user data.
sync:
type: boolean
default: false
enum:
- true
default: true
description: >
**Default**: `false`


A value of `true` updates exported data with any changes that occur
in your Mixpanel dataset. These changes include deletions, late
data, and imports that fall into your export window.
Expand Down Expand Up @@ -1426,6 +1435,8 @@ components:
- client_id
- client_secret
- tenant_id
- sync
- schema_type

SchematizedGCSPipeline:
title: Schematized GCS Pipeline
Expand All @@ -1434,7 +1445,8 @@ components:
project_id:
$ref: '#/components/schemas/ProjectId'
type:
$ref: '#/components/schemas/PipelineType'
type: string
default: gcs-schema
trial:
type: boolean
default: false
Expand Down Expand Up @@ -1474,9 +1486,10 @@ components:
Mixpanel event data. `people` exports Mixpanel user data.
sync:
type: boolean
default: false
enum:
- true
default: true
description: >
**Default**: `false`
A value of `true` updates exported data with any changes that occur
in your Mixpanel dataset. These changes include deletions, late
data, and imports that fall into your export window.
Expand Down Expand Up @@ -1575,6 +1588,8 @@ components:
- from_date
- gcs_bucket
- gcs_region
- sync
- schema_type
ErrorResponse:
type: object
properties:
Expand Down Expand Up @@ -1613,15 +1628,6 @@ components:
SchematizedEditParams:
allOf:
- $ref: '#/components/schemas/RawEditParams'
- type: object
properties:
enable_sync:
type: boolean
default: false
description: >
A value of `true` enables sync for your pipelines which updates exported data with
any changes that occur in your Mixpanel dataset. These changes include deletions, late
data, and imports that fall into your export window.
AzureCommonEditParams:
type: object
properties:
Expand Down
Loading