Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Source CloudTrail: correct typo in spec.json #9299

Merged
merged 2 commits into from
Jan 6, 2022
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"sourceDefinitionId": "6ff047c0-f5d5-4ce5-8c81-204a830fa7e1",
"name": "AWS CloudTrail",
"dockerRepository": "airbyte/source-aws-cloudtrail",
"dockerImageTag": "0.1.2",
"dockerImageTag": "0.1.4",
"documentationUrl": "https://docs.airbyte.io/integrations/sources/aws-cloudtrail",
"icon": "awscloudtrail.svg"
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
- name: AWS CloudTrail
sourceDefinitionId: 6ff047c0-f5d5-4ce5-8c81-204a830fa7e1
dockerRepository: airbyte/source-aws-cloudtrail
dockerImageTag: 0.1.3
dockerImageTag: 0.1.4
documentationUrl: https://docs.airbyte.io/integrations/sources/aws-cloudtrail
icon: awscloudtrail.svg
sourceType: api
Expand Down
4 changes: 2 additions & 2 deletions airbyte-config/init/src/main/resources/seed/source_specs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
supportsNormalization: false
supportsDBT: false
supported_destination_sync_modes: []
- dockerImage: "airbyte/source-aws-cloudtrail:0.1.3"
- dockerImage: "airbyte/source-aws-cloudtrail:0.1.4"
spec:
documentationUrl: "https://docs.airbyte.io/integrations/sources/aws-cloudtrail"
connectionSpecification:
Expand Down Expand Up @@ -78,7 +78,7 @@
start_date:
type: "string"
title: "Start Date"
description: "The date you would like to replicate data. Data in ClouTraid\
description: "The date you would like to replicate data. Data in AWS CloudTrail\
\ is available for last 90 days only. Format: YYYY-MM-DD."
examples:
- "2021-01-01"
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ RUN pip install .

ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]

LABEL io.airbyte.version=0.1.3
LABEL io.airbyte.version=0.1.4
LABEL io.airbyte.name=airbyte/source-aws-cloudtrail
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"start_date": {
"type": "string",
"title": "Start Date",
"description": "The date you would like to replicate data. Data in ClouTraid is available for last 90 days only. Format: YYYY-MM-DD.",
"description": "The date you would like to replicate data. Data in AWS CloudTrail is available for last 90 days only. Format: YYYY-MM-DD.",
"examples": ["2021-01-01"],
"default": "1970-01-01",
"pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}$"
Expand Down