Skip to content

Commit d559080

Browse files
fix: bump default deadline on CreateDatabase and RestoreDatabase to 2 minutes (#2274)
* chore: remove redundant gRPC service config file feat: specify retry configuration PiperOrigin-RevId: 712493958 Source-Link: googleapis/googleapis@29aea41 Source-Link: googleapis/googleapis-gen@04bcbab Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiMDRiY2JhYjQ1MDU5ODllOTg0YjE0MDNkNDM4ZmZmYzAzMTIxNDRhZiJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * fix: bump default deadline on CreateDatabase and RestoreDatabase to 2 minutes feat: add filter argument to FirestoreAdmin.ListBackupsRequest PiperOrigin-RevId: 716763143 Source-Link: googleapis/googleapis@3776db1 Source-Link: googleapis/googleapis-gen@10db5ac Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiMTBkYjVhYzQ3NmE5NGFhNGM5ZTBhMjQ5NDZkOWZhMWI3ZWE0NTZmNiJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com> Co-authored-by: Mark Duckworth <1124037+MarkDuckworth@users.noreply.github.com>
1 parent f58fe79 commit d559080

24 files changed

+1106
-49
lines changed

.jsdoc.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2024 Google LLC
1+
// Copyright 2025 Google LLC
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.
@@ -40,7 +40,7 @@ module.exports = {
4040
includePattern: '\\.js$'
4141
},
4242
templates: {
43-
copyright: 'Copyright 2024 Google LLC',
43+
copyright: 'Copyright 2025 Google LLC',
4444
includeDate: false,
4545
sourceFiles: false,
4646
systemName: '@google-cloud/firestore',

dev/protos/admin_v1.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1521,6 +1521,10 @@
15211521
"(google.api.field_behavior)": "REQUIRED",
15221522
"(google.api.resource_reference).type": "firestore.googleapis.com/Location"
15231523
}
1524+
},
1525+
"filter": {
1526+
"type": "string",
1527+
"id": 2
15241528
}
15251529
}
15261530
},
@@ -2172,6 +2176,10 @@
21722176
"rule": "repeated",
21732177
"type": "ClientLibraryDestination",
21742178
"id": 2
2179+
},
2180+
"selectiveGapicGeneration": {
2181+
"type": "SelectiveGapicGeneration",
2182+
"id": 3
21752183
}
21762184
}
21772185
},
@@ -2324,6 +2332,10 @@
23242332
"restAsyncIoEnabled": {
23252333
"type": "bool",
23262334
"id": 1
2335+
},
2336+
"protobufPythonicTypesEnabled": {
2337+
"type": "bool",
2338+
"id": 2
23272339
}
23282340
}
23292341
}
@@ -2383,6 +2395,11 @@
23832395
"common": {
23842396
"type": "CommonLanguageSettings",
23852397
"id": 1
2398+
},
2399+
"renamedServices": {
2400+
"keyType": "string",
2401+
"type": "string",
2402+
"id": 2
23862403
}
23872404
}
23882405
},
@@ -2444,6 +2461,15 @@
24442461
"PACKAGE_MANAGER": 20
24452462
}
24462463
},
2464+
"SelectiveGapicGeneration": {
2465+
"fields": {
2466+
"methods": {
2467+
"rule": "repeated",
2468+
"type": "string",
2469+
"id": 1
2470+
}
2471+
}
2472+
},
24472473
"LaunchStage": {
24482474
"values": {
24492475
"LAUNCH_STAGE_UNSPECIFIED": 0,
@@ -3970,6 +3996,7 @@
39703996
"java_multiple_files": true,
39713997
"java_outer_classname": "OperationsProto",
39723998
"java_package": "com.google.longrunning",
3999+
"objc_class_prefix": "GLRUN",
39734000
"php_namespace": "Google\\LongRunning"
39744001
},
39754002
"nested": {

dev/protos/firestore_admin_v1_proto_api.d.ts

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)