Lists all the code reviews that the customer has created in the past 90 days
Source:R/codegurureviewer_operations.R
codegurureviewer_list_code_reviews.RdLists all the code reviews that the customer has created in the past 90 days.
See https://www.paws-r-sdk.com/docs/codegurureviewer_list_code_reviews/ for full documentation.
Usage
codegurureviewer_list_code_reviews(
ProviderTypes = NULL,
States = NULL,
RepositoryNames = NULL,
Type,
MaxResults = NULL,
NextToken = NULL
)Arguments
- ProviderTypes
List of provider types for filtering that needs to be applied before displaying the result. For example,
providerTypes=[GitHub]lists code reviews from GitHub.- States
List of states for filtering that needs to be applied before displaying the result. For example,
states=[Pending]lists code reviews in the Pending state.The valid code review states are:
Completed: The code review is complete.Pending: The code review started and has not completed or failed.Failed: The code review failed.Deleting: The code review is being deleted.
- RepositoryNames
List of repository names for filtering that needs to be applied before displaying the result.
- Type
[required] The type of code reviews to list in the response.
- MaxResults
The maximum number of results that are returned per call. The default is 100.
- NextToken
If
nextTokenis returned, there are more results available. The value ofnextTokenis a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.