Struct azure_devops_rust_api::artifacts::change_tracking::Client
source · pub struct Client(/* private fields */);
Implementations§
source§impl Client
impl Client
sourcepub fn get_feed_changes(
&self,
organization: impl Into<String>,
project: impl Into<String>
) -> RequestBuilder
pub fn get_feed_changes( &self, organization: impl Into<String>, project: impl Into<String> ) -> RequestBuilder
Query to determine which feeds have changed since the last call, tracked through the provided continuation token. Only changes to a feed itself are returned and impact the continuation token, not additions or alterations to packages within the feeds.
If the project parameter is present, gets all feed changes in the given project. If omitted, gets all feed changes in the organization.
Arguments:
organization
: The name of the Azure DevOps organization.project
: Project ID or project name
sourcepub fn get_feed_change(
&self,
organization: impl Into<String>,
feed_id: impl Into<String>,
project: impl Into<String>
) -> RequestBuilder
pub fn get_feed_change( &self, organization: impl Into<String>, feed_id: impl Into<String>, project: impl Into<String> ) -> RequestBuilder
Query a feed to determine its current state.
The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request.
Arguments:
organization
: The name of the Azure DevOps organization.feed_id
: Name or ID of the feed.project
: Project ID or project name
sourcepub fn get_package_changes(
&self,
organization: impl Into<String>,
feed_id: impl Into<String>,
project: impl Into<String>
) -> RequestBuilder
pub fn get_package_changes( &self, organization: impl Into<String>, feed_id: impl Into<String>, project: impl Into<String> ) -> RequestBuilder
Get a batch of package changes made to a feed. The changes returned are ‘most recent change’ so if an Add is followed by an Update before you begin enumerating, you’ll only see one change in the batch. While consuming batches using the continuation token, you may see changes to the same package version multiple times if they are happening as you enumerate.
The project parameter must be supplied if the feed was created in a project. If the feed is not associated with any project, omit the project parameter from the request.
Arguments:
organization
: The name of the Azure DevOps organization.feed_id
: Name or Id of the feed.project
: Project ID or project name