@@ -629,6 +629,12 @@ pub mod python_settings {
629
629
/// packages.
630
630
#[ prost( bool , tag="2" ) ]
631
631
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 ,
632
638
}
633
639
}
634
640
/// Settings for Node client libraries.
@@ -786,6 +792,14 @@ pub struct SelectiveGapicGeneration {
786
792
/// on public client surfaces.
787
793
#[ prost( string, repeated, tag="1" ) ]
788
794
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 ,
789
803
}
790
804
/// The organization for which the client libraries are being published.
791
805
/// Affects the url where generated docs are published, etc.
0 commit comments