1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetRepository`](crate::operation::get_repository::builders::GetRepositoryFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`provider(RepositoryProvider)`](crate::operation::get_repository::builders::GetRepositoryFluentBuilder::provider) / [`set_provider(Option<RepositoryProvider>)`](crate::operation::get_repository::builders::GetRepositoryFluentBuilder::set_provider): <p>The repository provider.</p>
    ///   - [`name(impl Into<String>)`](crate::operation::get_repository::builders::GetRepositoryFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::get_repository::builders::GetRepositoryFluentBuilder::set_name): <p>The repository name, for example <code>myrepos/myrepo</code>.</p>
    /// - On success, responds with [`GetRepositoryOutput`](crate::operation::get_repository::GetRepositoryOutput) with field(s):
    ///   - [`repository(Option<Repository>)`](crate::operation::get_repository::GetRepositoryOutput::repository): <p>The repository link's detail data that's returned by Proton.</p>
    /// - On failure, responds with [`SdkError<GetRepositoryError>`](crate::operation::get_repository::GetRepositoryError)
    pub fn get_repository(
        &self,
    ) -> crate::operation::get_repository::builders::GetRepositoryFluentBuilder {
        crate::operation::get_repository::builders::GetRepositoryFluentBuilder::new(
            self.handle.clone(),
        )
    }
}