@@ -3219,6 +3219,9 @@ export namespace google {
32193219
32203220 /** ListBackupsRequest parent */
32213221 parent ?: ( string | null ) ;
3222+
3223+ /** ListBackupsRequest filter */
3224+ filter ?: ( string | null ) ;
32223225 }
32233226
32243227 /** Represents a ListBackupsRequest. */
@@ -3233,6 +3236,9 @@ export namespace google {
32333236 /** ListBackupsRequest parent. */
32343237 public parent : string ;
32353238
3239+ /** ListBackupsRequest filter. */
3240+ public filter : string ;
3241+
32363242 /**
32373243 * Creates a ListBackupsRequest message from a plain object. Also converts values to their respective internal types.
32383244 * @param object Plain object
@@ -4770,6 +4776,9 @@ export namespace google {
47704776
47714777 /** CommonLanguageSettings destinations */
47724778 destinations ?: ( google . api . ClientLibraryDestination [ ] | null ) ;
4779+
4780+ /** CommonLanguageSettings selectiveGapicGeneration */
4781+ selectiveGapicGeneration ?: ( google . api . ISelectiveGapicGeneration | null ) ;
47734782 }
47744783
47754784 /** Represents a CommonLanguageSettings. */
@@ -4787,6 +4796,9 @@ export namespace google {
47874796 /** CommonLanguageSettings destinations. */
47884797 public destinations : google . api . ClientLibraryDestination [ ] ;
47894798
4799+ /** CommonLanguageSettings selectiveGapicGeneration. */
4800+ public selectiveGapicGeneration ?: ( google . api . ISelectiveGapicGeneration | null ) ;
4801+
47904802 /**
47914803 * Creates a CommonLanguageSettings message from a plain object. Also converts values to their respective internal types.
47924804 * @param object Plain object
@@ -5249,6 +5261,9 @@ export namespace google {
52495261
52505262 /** ExperimentalFeatures restAsyncIoEnabled */
52515263 restAsyncIoEnabled ?: ( boolean | null ) ;
5264+
5265+ /** ExperimentalFeatures protobufPythonicTypesEnabled */
5266+ protobufPythonicTypesEnabled ?: ( boolean | null ) ;
52525267 }
52535268
52545269 /** Represents an ExperimentalFeatures. */
@@ -5263,6 +5278,9 @@ export namespace google {
52635278 /** ExperimentalFeatures restAsyncIoEnabled. */
52645279 public restAsyncIoEnabled : boolean ;
52655280
5281+ /** ExperimentalFeatures protobufPythonicTypesEnabled. */
5282+ public protobufPythonicTypesEnabled : boolean ;
5283+
52665284 /**
52675285 * Creates an ExperimentalFeatures message from a plain object. Also converts values to their respective internal types.
52685286 * @param object Plain object
@@ -5472,6 +5490,9 @@ export namespace google {
54725490
54735491 /** GoSettings common */
54745492 common ?: ( google . api . ICommonLanguageSettings | null ) ;
5493+
5494+ /** GoSettings renamedServices */
5495+ renamedServices ?: ( { [ k : string ] : string } | null ) ;
54755496 }
54765497
54775498 /** Represents a GoSettings. */
@@ -5486,6 +5507,9 @@ export namespace google {
54865507 /** GoSettings common. */
54875508 public common ?: ( google . api . ICommonLanguageSettings | null ) ;
54885509
5510+ /** GoSettings renamedServices. */
5511+ public renamedServices : { [ k : string ] : string } ;
5512+
54895513 /**
54905514 * Creates a GoSettings message from a plain object. Also converts values to their respective internal types.
54915515 * @param object Plain object
@@ -5652,6 +5676,54 @@ export namespace google {
56525676 type ClientLibraryDestination =
56535677 "CLIENT_LIBRARY_DESTINATION_UNSPECIFIED" | "GITHUB" | "PACKAGE_MANAGER" ;
56545678
5679+ /** Properties of a SelectiveGapicGeneration. */
5680+ interface ISelectiveGapicGeneration {
5681+
5682+ /** SelectiveGapicGeneration methods */
5683+ methods ?: ( string [ ] | null ) ;
5684+ }
5685+
5686+ /** Represents a SelectiveGapicGeneration. */
5687+ class SelectiveGapicGeneration implements ISelectiveGapicGeneration {
5688+
5689+ /**
5690+ * Constructs a new SelectiveGapicGeneration.
5691+ * @param [properties] Properties to set
5692+ */
5693+ constructor ( properties ?: google . api . ISelectiveGapicGeneration ) ;
5694+
5695+ /** SelectiveGapicGeneration methods. */
5696+ public methods : string [ ] ;
5697+
5698+ /**
5699+ * Creates a SelectiveGapicGeneration message from a plain object. Also converts values to their respective internal types.
5700+ * @param object Plain object
5701+ * @returns SelectiveGapicGeneration
5702+ */
5703+ public static fromObject ( object : { [ k : string ] : any } ) : google . api . SelectiveGapicGeneration ;
5704+
5705+ /**
5706+ * Creates a plain object from a SelectiveGapicGeneration message. Also converts values to other types if specified.
5707+ * @param message SelectiveGapicGeneration
5708+ * @param [options] Conversion options
5709+ * @returns Plain object
5710+ */
5711+ public static toObject ( message : google . api . SelectiveGapicGeneration , options ?: $protobuf . IConversionOptions ) : { [ k : string ] : any } ;
5712+
5713+ /**
5714+ * Converts this SelectiveGapicGeneration to JSON.
5715+ * @returns JSON object
5716+ */
5717+ public toJSON ( ) : { [ k : string ] : any } ;
5718+
5719+ /**
5720+ * Gets the default type url for SelectiveGapicGeneration
5721+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
5722+ * @returns The default type url
5723+ */
5724+ public static getTypeUrl ( typeUrlPrefix ?: string ) : string ;
5725+ }
5726+
56555727 /** LaunchStage enum. */
56565728 type LaunchStage =
56575729 "LAUNCH_STAGE_UNSPECIFIED" | "UNIMPLEMENTED" | "PRELAUNCH" | "EARLY_ACCESS" | "ALPHA" | "BETA" | "GA" | "DEPRECATED" ;
0 commit comments