pub struct Client(/* private fields */);Implementations§
Source§impl Client
impl Client
Sourcepub fn get_test_log_store_endpoint_details_for_sub_result_log(
&self,
organization: impl Into<String>,
project: impl Into<String>,
run_id: i32,
result_id: i32,
sub_result_id: i32,
type_: impl Into<String>,
file_path: impl Into<String>,
) -> RequestBuilder
pub fn get_test_log_store_endpoint_details_for_sub_result_log( &self, organization: impl Into<String>, project: impl Into<String>, run_id: i32, result_id: i32, sub_result_id: i32, type_: impl Into<String>, file_path: impl Into<String>, ) -> RequestBuilder
Get SAS Uri of a test subresults attachment
Arguments:
organization: The name of the Azure DevOps organization.project: Project ID or project namerun_id: Id of the test run that contains resultresult_id: Id of the test result that contains subresultsub_result_id: Id of the test subresult whose file sas uri is neededtype_: type of the filefile_path: filePath for which sas uri is needed
Sourcepub fn get_test_log_store_endpoint_details_for_result_log(
&self,
organization: impl Into<String>,
project: impl Into<String>,
run_id: i32,
result_id: i32,
type_: impl Into<String>,
file_path: impl Into<String>,
) -> RequestBuilder
pub fn get_test_log_store_endpoint_details_for_result_log( &self, organization: impl Into<String>, project: impl Into<String>, run_id: i32, result_id: i32, type_: impl Into<String>, file_path: impl Into<String>, ) -> RequestBuilder
Get SAS Uri of a test results attachment
Arguments:
organization: The name of the Azure DevOps organization.project: Project ID or project namerun_id: Id of the test run that contains resultresult_id: Id of the test result whose files need to be downloadedtype_: type of the filefile_path: filePath for which sas uri is needed
Sourcepub fn test_log_store_endpoint_details_for_result(
&self,
organization: impl Into<String>,
project: impl Into<String>,
run_id: i32,
result_id: i32,
sub_result_id: i32,
file_path: impl Into<String>,
type_: impl Into<String>,
) -> RequestBuilder
pub fn test_log_store_endpoint_details_for_result( &self, organization: impl Into<String>, project: impl Into<String>, run_id: i32, result_id: i32, sub_result_id: i32, file_path: impl Into<String>, type_: impl Into<String>, ) -> RequestBuilder
Create empty file for a result and Get Sas uri for the file
Arguments:
organization: The name of the Azure DevOps organization.project: Project ID or project namerun_id: Id of the test run that contains the resultresult_id: Id of the test results that contains sub resultsub_result_id: Id of the test sub result whose file sas uri is neededfile_path: file path inside the sub result for which sas uri is neededtype_: Type of the file for download
Sourcepub fn get_test_log_store_endpoint_details_for_run_log(
&self,
organization: impl Into<String>,
project: impl Into<String>,
run_id: i32,
type_: impl Into<String>,
file_path: impl Into<String>,
) -> RequestBuilder
pub fn get_test_log_store_endpoint_details_for_run_log( &self, organization: impl Into<String>, project: impl Into<String>, run_id: i32, type_: impl Into<String>, file_path: impl Into<String>, ) -> RequestBuilder
Get SAS Uri of a test run attachment
Arguments:
organization: The name of the Azure DevOps organization.project: Project ID or project namerun_id: Id of the test run whose file has to be downloadedtype_: type of the filefile_path: filePath for which sas uri is needed
Sourcepub fn test_log_store_endpoint_details_for_run(
&self,
organization: impl Into<String>,
project: impl Into<String>,
run_id: i32,
test_log_store_operation_type: impl Into<String>,
) -> RequestBuilder
pub fn test_log_store_endpoint_details_for_run( &self, organization: impl Into<String>, project: impl Into<String>, run_id: i32, test_log_store_operation_type: impl Into<String>, ) -> RequestBuilder
Create empty file for a run and Get Sas uri for the file
Arguments:
organization: The name of the Azure DevOps organization.project: Project ID or project namerun_id: Id of the run to get endpoint detailstest_log_store_operation_type: Type of operation to perform using sas uri
Sourcepub fn get_test_log_store_endpoint_details_for_build_log(
&self,
organization: impl Into<String>,
project: impl Into<String>,
build: i32,
type_: impl Into<String>,
file_path: impl Into<String>,
) -> RequestBuilder
pub fn get_test_log_store_endpoint_details_for_build_log( &self, organization: impl Into<String>, project: impl Into<String>, build: i32, type_: impl Into<String>, file_path: impl Into<String>, ) -> RequestBuilder
Get SAS Uri of a build attachment
Arguments:
organization: The name of the Azure DevOps organization.project: Project ID or project namebuild: Id of the build to gettype_: type of the filefile_path: filePath for which sas uri is needed
Sourcepub fn test_log_store_endpoint_details_for_build(
&self,
organization: impl Into<String>,
project: impl Into<String>,
build_id: i32,
test_log_store_operation_type: impl Into<String>,
) -> RequestBuilder
pub fn test_log_store_endpoint_details_for_build( &self, organization: impl Into<String>, project: impl Into<String>, build_id: i32, test_log_store_operation_type: impl Into<String>, ) -> RequestBuilder
Create and Get sas uri of the build container
Arguments:
organization: The name of the Azure DevOps organization.project: Project ID or project namebuild_id: Id of the build to gettest_log_store_operation_type: Type of operation to perform using sas uri
Auto Trait Implementations§
impl Freeze for Client
impl !RefUnwindSafe for Client
impl Send for Client
impl Sync for Client
impl Unpin for Client
impl !UnwindSafe for Client
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more