Skip to content

Commit 49d5088

Browse files
author
APIs and Common Services team
committed
Automated SDK update
This updates the SDK from internal repo commit segmentio/public-api@7b03d4b7.
1 parent 8e353d3 commit 49d5088

File tree

599 files changed

+729
-623
lines changed

Some content is hidden

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

599 files changed

+729
-623
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ See the next sections for more information on how to use the Segment Public API.
1111

1212
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
1313

14-
- API version: 57.2.0
15-
- Package version: 57.2.0
14+
- API version: 57.3.0
15+
- Package version: 57.3.0
1616
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
1717

1818
For more information, please visit [https://docs.segmentapis.com](https://docs.segmentapis.com)

docs/DBTApi.md renamed to docs/DbtApi.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# segment_public_api.DBTApi
1+
# segment_public_api.DbtApi
22

33
All URIs are relative to *https://api.segmentapis.com*
44

55
Method | HTTP request | Description
66
------------- | ------------- | -------------
7-
[**create_dbt_model_sync_trigger**](DBTApi.md#create_dbt_model_sync_trigger) | **POST** /dbt-model-syncs/trigger | Create Dbt Model Sync Trigger
7+
[**create_dbt_model_sync_trigger**](DbtApi.md#create_dbt_model_sync_trigger) | **POST** /dbt-model-syncs/trigger | Create Dbt Model Sync Trigger
88

99

1010

@@ -38,16 +38,16 @@ configuration = segment_public_api.Configuration(
3838
# Enter a context with an instance of the API client
3939
with segment_public_api.ApiClient(configuration) as api_client:
4040
# Create an instance of the API class
41-
api_instance = segment_public_api.DBTApi(api_client)
41+
api_instance = segment_public_api.DbtApi(api_client)
4242
create_dbt_model_sync_trigger_input = {"sourceId":"source-id"} # CreateDbtModelSyncTriggerInput |
4343

4444
try:
4545
# Create Dbt Model Sync Trigger
4646
api_response = api_instance.create_dbt_model_sync_trigger(create_dbt_model_sync_trigger_input)
47-
print("The response of DBTApi->create_dbt_model_sync_trigger:\n")
47+
print("The response of DbtApi->create_dbt_model_sync_trigger:\n")
4848
pprint(api_response)
4949
except Exception as e:
50-
print("Exception when calling DBTApi->create_dbt_model_sync_trigger: %s\n" % e)
50+
print("Exception when calling DbtApi->create_dbt_model_sync_trigger: %s\n" % e)
5151
```
5252

5353

segment_public_api/__init__.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,23 +7,22 @@
77
88
The Segment Public API helps you manage your Segment Workspaces and its resources. You can use the API to perform CRUD (create, read, update, delete) operations at no extra charge. This includes working with resources such as Sources, Destinations, Warehouses, Tracking Plans, and the Segment Destinations and Sources Catalogs. All CRUD endpoints in the API follow REST conventions and use standard HTTP methods. Different URL endpoints represent different resources in a Workspace. See the next sections for more information on how to use the Segment Public API.
99
10-
The version of the OpenAPI document: 57.2.0
10+
The version of the OpenAPI document: 57.3.0
1111
1212
Generated by OpenAPI Generator (https://openapi-generator.tech)
1313
1414
Do not edit the class manually.
1515
""" # noqa: E501
1616

1717

18-
__version__ = "57.2.0"
18+
__version__ = "57.3.0"
1919

2020
# import apis into sdk package
2121
from segment_public_api.api.api_calls_api import APICallsApi
2222
from segment_public_api.api.audiences_api import AudiencesApi
2323
from segment_public_api.api.audit_trail_api import AuditTrailApi
2424
from segment_public_api.api.catalog_api import CatalogApi
2525
from segment_public_api.api.computed_traits_api import ComputedTraitsApi
26-
from segment_public_api.api.dbt_api import DBTApi
2726
from segment_public_api.api.deletion_and_suppression_api import DeletionAndSuppressionApi
2827
from segment_public_api.api.delivery_overview_api import DeliveryOverviewApi
2928
from segment_public_api.api.destination_filters_api import DestinationFiltersApi
@@ -47,6 +46,7 @@
4746
from segment_public_api.api.transformations_api import TransformationsApi
4847
from segment_public_api.api.warehouses_api import WarehousesApi
4948
from segment_public_api.api.workspaces_api import WorkspacesApi
49+
from segment_public_api.api.dbt_api import DbtApi
5050

5151
# import ApiClient
5252
from segment_public_api.api_response import ApiResponse
@@ -515,6 +515,7 @@
515515
from segment_public_api.models.reverse_etl_manual_sync_job_output import ReverseETLManualSyncJobOutput
516516
from segment_public_api.models.reverse_etl_sync_status import ReverseETLSyncStatus
517517
from segment_public_api.models.reverse_etl_cron_schedule_config import ReverseEtlCronScheduleConfig
518+
from segment_public_api.models.reverse_etl_dbt_cloud_schedule_config import ReverseEtlDbtCloudScheduleConfig
518519
from segment_public_api.models.reverse_etl_model import ReverseEtlModel
519520
from segment_public_api.models.reverse_etl_periodic_schedule_config import ReverseEtlPeriodicScheduleConfig
520521
from segment_public_api.models.reverse_etl_schedule_config import ReverseEtlScheduleConfig

segment_public_api/api/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
from segment_public_api.api.audit_trail_api import AuditTrailApi
77
from segment_public_api.api.catalog_api import CatalogApi
88
from segment_public_api.api.computed_traits_api import ComputedTraitsApi
9-
from segment_public_api.api.dbt_api import DBTApi
109
from segment_public_api.api.deletion_and_suppression_api import DeletionAndSuppressionApi
1110
from segment_public_api.api.delivery_overview_api import DeliveryOverviewApi
1211
from segment_public_api.api.destination_filters_api import DestinationFiltersApi
@@ -30,4 +29,5 @@
3029
from segment_public_api.api.transformations_api import TransformationsApi
3130
from segment_public_api.api.warehouses_api import WarehousesApi
3231
from segment_public_api.api.workspaces_api import WorkspacesApi
32+
from segment_public_api.api.dbt_api import DbtApi
3333

segment_public_api/api/api_calls_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
The Segment Public API helps you manage your Segment Workspaces and its resources. You can use the API to perform CRUD (create, read, update, delete) operations at no extra charge. This includes working with resources such as Sources, Destinations, Warehouses, Tracking Plans, and the Segment Destinations and Sources Catalogs. All CRUD endpoints in the API follow REST conventions and use standard HTTP methods. Different URL endpoints represent different resources in a Workspace. See the next sections for more information on how to use the Segment Public API.
77
8-
The version of the OpenAPI document: 57.2.0
8+
The version of the OpenAPI document: 57.3.0
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

segment_public_api/api/audiences_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
The Segment Public API helps you manage your Segment Workspaces and its resources. You can use the API to perform CRUD (create, read, update, delete) operations at no extra charge. This includes working with resources such as Sources, Destinations, Warehouses, Tracking Plans, and the Segment Destinations and Sources Catalogs. All CRUD endpoints in the API follow REST conventions and use standard HTTP methods. Different URL endpoints represent different resources in a Workspace. See the next sections for more information on how to use the Segment Public API.
77
8-
The version of the OpenAPI document: 57.2.0
8+
The version of the OpenAPI document: 57.3.0
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

segment_public_api/api/audit_trail_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
The Segment Public API helps you manage your Segment Workspaces and its resources. You can use the API to perform CRUD (create, read, update, delete) operations at no extra charge. This includes working with resources such as Sources, Destinations, Warehouses, Tracking Plans, and the Segment Destinations and Sources Catalogs. All CRUD endpoints in the API follow REST conventions and use standard HTTP methods. Different URL endpoints represent different resources in a Workspace. See the next sections for more information on how to use the Segment Public API.
77
8-
The version of the OpenAPI document: 57.2.0
8+
The version of the OpenAPI document: 57.3.0
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

segment_public_api/api/catalog_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
The Segment Public API helps you manage your Segment Workspaces and its resources. You can use the API to perform CRUD (create, read, update, delete) operations at no extra charge. This includes working with resources such as Sources, Destinations, Warehouses, Tracking Plans, and the Segment Destinations and Sources Catalogs. All CRUD endpoints in the API follow REST conventions and use standard HTTP methods. Different URL endpoints represent different resources in a Workspace. See the next sections for more information on how to use the Segment Public API.
77
8-
The version of the OpenAPI document: 57.2.0
8+
The version of the OpenAPI document: 57.3.0
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

segment_public_api/api/computed_traits_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
The Segment Public API helps you manage your Segment Workspaces and its resources. You can use the API to perform CRUD (create, read, update, delete) operations at no extra charge. This includes working with resources such as Sources, Destinations, Warehouses, Tracking Plans, and the Segment Destinations and Sources Catalogs. All CRUD endpoints in the API follow REST conventions and use standard HTTP methods. Different URL endpoints represent different resources in a Workspace. See the next sections for more information on how to use the Segment Public API.
77
8-
The version of the OpenAPI document: 57.2.0
8+
The version of the OpenAPI document: 57.3.0
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

segment_public_api/api/dbt_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
The Segment Public API helps you manage your Segment Workspaces and its resources. You can use the API to perform CRUD (create, read, update, delete) operations at no extra charge. This includes working with resources such as Sources, Destinations, Warehouses, Tracking Plans, and the Segment Destinations and Sources Catalogs. All CRUD endpoints in the API follow REST conventions and use standard HTTP methods. Different URL endpoints represent different resources in a Workspace. See the next sections for more information on how to use the Segment Public API.
77
8-
The version of the OpenAPI document: 57.2.0
8+
The version of the OpenAPI document: 57.3.0
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111
@@ -30,7 +30,7 @@
3030
)
3131

3232

33-
class DBTApi:
33+
class DbtApi:
3434
"""NOTE: This class is auto generated by OpenAPI Generator
3535
Ref: https://openapi-generator.tech
3636

0 commit comments

Comments
 (0)