-
Notifications
You must be signed in to change notification settings - Fork 2
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
Version 4.0.0 - Orders API Rework and Tasking Updates #14
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…ingOrderRequest/TaskingBatchOrderRequest
…rder/orderresult into single Order type
…ing about it matching a field
…points to download_resource
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This update brings the Arlula Python SDK in line with the Arlula API version
2024-07
. It has numerous breaking changes, mainly relating to the new and thus has a new major version.Additions:
Dataset
,Order
andCampaign
classes.Priority
andCloudLevel
classes.ListResponse
andListRequest
helper classes.OrdersAPI
:list_orders
lists all orders the authenticated API account has access to.list_datasets
lists all datasets the authenticated API account has access to.list_campaigns
lists all campaigns the authenticated API account has access to.list_order_campaigns
lists all campaigns the associated with the specified order.list_order_datasets
lists all datasets the associated with the specified order.list_campaign_datasets
lists all datasets the associated with the specified campaign.get_order
gets details of specified order.get_campaign
gets details of specified campaign.get_dataset
gets details of specified dataset.get_resource
gets details of specified resource.Breaking changes:
OrderResult
andDetailedOrder
classes in favour of the newOrder
classTaskingAPI.batch_order
andArchiveAPI.batch_order
from[]OrderResult
toOrder
TaskingAPI.order
andArchiveAPI.order
fromOrderResult
toOrder
OrdersAPI.get
andOrdersAPI.list
endpoints in favour ofOrdersAPI.get_order
andOrdersAPI.list_orders
priority
andcloud
fields toTaskingOrderRequest
.OrdersAPI
:download_order
->download_dataset
get_resource_as_file
->download_resource_as_file
get_resource_as_memory
->download_resource_as_memory
TaskingSearchResult.polygons
toTaskingSearchResult.polygon
(now only returns a polygon rather than a multipolygon)Other:
requests
to2.32.3
.