pub struct GetDifferencesInput {
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub after_commit_specifier: String,
pub after_path: Option<String>,
pub before_commit_specifier: Option<String>,
pub before_path: Option<String>,
pub repository_name: String,
}Fields§
§max_results: Option<i64>A non-zero, non-negative integer used to limit the number of returned results.
next_token: Option<String>An enumeration token that, when provided in a request, returns the next batch of the results.
after_commit_specifier: StringThe branch, tag, HEAD, or other fully qualified reference used to identify a commit.
after_path: Option<String>The file path in which to check differences. Limits the results to this path. Can also be used to specify the changed name of a directory or folder, if it has changed. If not specified, differences are shown for all paths.
before_commit_specifier: Option<String>The branch, tag, HEAD, or other fully qualified reference used to identify a commit (for example, the full commit ID). Optional. If not specified, all changes before the afterCommitSpecifier value are shown. If you do not use beforeCommitSpecifier in your request, consider limiting the results with maxResults.
before_path: Option<String>The file path in which to check for differences. Limits the results to this path. Can also be used to specify the previous name of a directory or folder. If beforePath and afterPath are not specified, differences are shown for all paths.
repository_name: StringThe name of the repository where you want to get differences.
Trait Implementations§
Source§impl Clone for GetDifferencesInput
impl Clone for GetDifferencesInput
Source§fn clone(&self) -> GetDifferencesInput
fn clone(&self) -> GetDifferencesInput
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more