Skip to content

Commit c8c24b3

Browse files
Automated Protos Update (#141)
Co-authored-by: viambot <[email protected]>
1 parent 521fb57 commit c8c24b3

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

src/gen/google.api.rs

+14
Original file line numberDiff line numberDiff line change
@@ -629,6 +629,12 @@ pub mod python_settings {
629629
/// packages.
630630
#[prost(bool, tag="2")]
631631
pub protobuf_pythonic_types_enabled: bool,
632+
/// Disables generation of an unversioned Python package for this client
633+
/// library. This means that the module names will need to be versioned in
634+
/// import statements. For example `import google.cloud.library_v2` instead
635+
/// of `import google.cloud.library`.
636+
#[prost(bool, tag="3")]
637+
pub unversioned_package_disabled: bool,
632638
}
633639
}
634640
/// Settings for Node client libraries.
@@ -786,6 +792,14 @@ pub struct SelectiveGapicGeneration {
786792
/// on public client surfaces.
787793
#[prost(string, repeated, tag="1")]
788794
pub methods: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
795+
/// Setting this to true indicates to the client generators that methods
796+
/// that would be excluded from the generation should instead be generated
797+
/// in a way that indicates these methods should not be consumed by
798+
/// end users. How this is expressed is up to individual language
799+
/// implementations to decide. Some examples may be: added annotations,
800+
/// obfuscated identifiers, or other language idiomatic patterns.
801+
#[prost(bool, tag="2")]
802+
pub generate_omitted_as_internal: bool,
789803
}
790804
/// The organization for which the client libraries are being published.
791805
/// Affects the url where generated docs are published, etc.

0 commit comments

Comments
 (0)