pub struct Client(/* private fields */);Implementations§
Source§impl Client
impl Client
Sourcepub fn get_recycle_bin_packages(
&self,
organization: impl Into<String>,
feed_id: impl Into<String>,
project: impl Into<String>,
) -> RequestBuilder
pub fn get_recycle_bin_packages( &self, organization: impl Into<String>, feed_id: impl Into<String>, project: impl Into<String>, ) -> RequestBuilder
Query for packages within the recycle bin.
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 empty_recycle_bin(
&self,
organization: impl Into<String>,
feed_id: impl Into<String>,
project: impl Into<String>,
) -> RequestBuilder
pub fn empty_recycle_bin( &self, organization: impl Into<String>, feed_id: impl Into<String>, project: impl Into<String>, ) -> RequestBuilder
Queues a job to remove all package versions from a feed’s recycle bin
Arguments:
organization: The name of the Azure DevOps organization.feed_id: Name or Id of the feedproject: Project ID or project name
Sourcepub fn get_recycle_bin_package(
&self,
organization: impl Into<String>,
feed_id: impl Into<String>,
package_id: impl Into<String>,
project: impl Into<String>,
) -> RequestBuilder
pub fn get_recycle_bin_package( &self, organization: impl Into<String>, feed_id: impl Into<String>, package_id: impl Into<String>, project: impl Into<String>, ) -> RequestBuilder
Get information about a package and all its versions within the recycle bin.
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.package_id: The package Id (GUID Id, not the package name).project: Project ID or project name
Sourcepub fn get_recycle_bin_package_versions(
&self,
organization: impl Into<String>,
feed_id: impl Into<String>,
package_id: impl Into<String>,
project: impl Into<String>,
) -> RequestBuilder
pub fn get_recycle_bin_package_versions( &self, organization: impl Into<String>, feed_id: impl Into<String>, package_id: impl Into<String>, project: impl Into<String>, ) -> RequestBuilder
Get a list of package versions within the recycle bin.
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.package_id: The package Id (GUID Id, not the package name).project: Project ID or project name
Sourcepub fn get_recycle_bin_package_version(
&self,
organization: impl Into<String>,
feed_id: impl Into<String>,
package_id: impl Into<String>,
package_version_id: impl Into<String>,
project: impl Into<String>,
) -> RequestBuilder
pub fn get_recycle_bin_package_version( &self, organization: impl Into<String>, feed_id: impl Into<String>, package_id: impl Into<String>, package_version_id: impl Into<String>, project: impl Into<String>, ) -> RequestBuilder
Get information about a package version within the recycle bin.
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.package_id: The package Id (GUID Id, not the package name).package_version_id: The package version Id 9guid Id, not the version string).project: Project ID or project name