Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: bump default deadline on CreateDatabase and RestoreDatabase to 2 minutes #2274

Merged
merged 5 commits into from
Jan 22, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .jsdoc.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2024 Google LLC
// Copyright 2025 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -40,7 +40,7 @@ module.exports = {
includePattern: '\\.js$'
},
templates: {
copyright: 'Copyright 2024 Google LLC',
copyright: 'Copyright 2025 Google LLC',
includeDate: false,
sourceFiles: false,
systemName: '@google-cloud/firestore',
Expand Down
27 changes: 27 additions & 0 deletions dev/protos/admin_v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -1521,6 +1521,10 @@
"(google.api.field_behavior)": "REQUIRED",
"(google.api.resource_reference).type": "firestore.googleapis.com/Location"
}
},
"filter": {
"type": "string",
"id": 2
}
}
},
Expand Down Expand Up @@ -2172,6 +2176,10 @@
"rule": "repeated",
"type": "ClientLibraryDestination",
"id": 2
},
"selectiveGapicGeneration": {
"type": "SelectiveGapicGeneration",
"id": 3
}
}
},
Expand Down Expand Up @@ -2324,6 +2332,10 @@
"restAsyncIoEnabled": {
"type": "bool",
"id": 1
},
"protobufPythonicTypesEnabled": {
"type": "bool",
"id": 2
}
}
}
Expand Down Expand Up @@ -2383,6 +2395,11 @@
"common": {
"type": "CommonLanguageSettings",
"id": 1
},
"renamedServices": {
"keyType": "string",
"type": "string",
"id": 2
}
}
},
Expand Down Expand Up @@ -2444,6 +2461,15 @@
"PACKAGE_MANAGER": 20
}
},
"SelectiveGapicGeneration": {
"fields": {
"methods": {
"rule": "repeated",
"type": "string",
"id": 1
}
}
},
"LaunchStage": {
"values": {
"LAUNCH_STAGE_UNSPECIFIED": 0,
Expand Down Expand Up @@ -3970,6 +3996,7 @@
"java_multiple_files": true,
"java_outer_classname": "OperationsProto",
"java_package": "com.google.longrunning",
"objc_class_prefix": "GLRUN",
"php_namespace": "Google\\LongRunning"
},
"nested": {
Expand Down
72 changes: 72 additions & 0 deletions dev/protos/firestore_admin_v1_proto_api.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3219,6 +3219,9 @@ export namespace google {

/** ListBackupsRequest parent */
parent?: (string|null);

/** ListBackupsRequest filter */
filter?: (string|null);
}

/** Represents a ListBackupsRequest. */
Expand All @@ -3233,6 +3236,9 @@ export namespace google {
/** ListBackupsRequest parent. */
public parent: string;

/** ListBackupsRequest filter. */
public filter: string;

/**
* Creates a ListBackupsRequest message from a plain object. Also converts values to their respective internal types.
* @param object Plain object
Expand Down Expand Up @@ -4770,6 +4776,9 @@ export namespace google {

/** CommonLanguageSettings destinations */
destinations?: (google.api.ClientLibraryDestination[]|null);

/** CommonLanguageSettings selectiveGapicGeneration */
selectiveGapicGeneration?: (google.api.ISelectiveGapicGeneration|null);
}

/** Represents a CommonLanguageSettings. */
Expand All @@ -4787,6 +4796,9 @@ export namespace google {
/** CommonLanguageSettings destinations. */
public destinations: google.api.ClientLibraryDestination[];

/** CommonLanguageSettings selectiveGapicGeneration. */
public selectiveGapicGeneration?: (google.api.ISelectiveGapicGeneration|null);

/**
* Creates a CommonLanguageSettings message from a plain object. Also converts values to their respective internal types.
* @param object Plain object
Expand Down Expand Up @@ -5249,6 +5261,9 @@ export namespace google {

/** ExperimentalFeatures restAsyncIoEnabled */
restAsyncIoEnabled?: (boolean|null);

/** ExperimentalFeatures protobufPythonicTypesEnabled */
protobufPythonicTypesEnabled?: (boolean|null);
}

/** Represents an ExperimentalFeatures. */
Expand All @@ -5263,6 +5278,9 @@ export namespace google {
/** ExperimentalFeatures restAsyncIoEnabled. */
public restAsyncIoEnabled: boolean;

/** ExperimentalFeatures protobufPythonicTypesEnabled. */
public protobufPythonicTypesEnabled: boolean;

/**
* Creates an ExperimentalFeatures message from a plain object. Also converts values to their respective internal types.
* @param object Plain object
Expand Down Expand Up @@ -5472,6 +5490,9 @@ export namespace google {

/** GoSettings common */
common?: (google.api.ICommonLanguageSettings|null);

/** GoSettings renamedServices */
renamedServices?: ({ [k: string]: string }|null);
}

/** Represents a GoSettings. */
Expand All @@ -5486,6 +5507,9 @@ export namespace google {
/** GoSettings common. */
public common?: (google.api.ICommonLanguageSettings|null);

/** GoSettings renamedServices. */
public renamedServices: { [k: string]: string };

/**
* Creates a GoSettings message from a plain object. Also converts values to their respective internal types.
* @param object Plain object
Expand Down Expand Up @@ -5652,6 +5676,54 @@ export namespace google {
type ClientLibraryDestination =
"CLIENT_LIBRARY_DESTINATION_UNSPECIFIED"| "GITHUB"| "PACKAGE_MANAGER";

/** Properties of a SelectiveGapicGeneration. */
interface ISelectiveGapicGeneration {

/** SelectiveGapicGeneration methods */
methods?: (string[]|null);
}

/** Represents a SelectiveGapicGeneration. */
class SelectiveGapicGeneration implements ISelectiveGapicGeneration {

/**
* Constructs a new SelectiveGapicGeneration.
* @param [properties] Properties to set
*/
constructor(properties?: google.api.ISelectiveGapicGeneration);

/** SelectiveGapicGeneration methods. */
public methods: string[];

/**
* Creates a SelectiveGapicGeneration message from a plain object. Also converts values to their respective internal types.
* @param object Plain object
* @returns SelectiveGapicGeneration
*/
public static fromObject(object: { [k: string]: any }): google.api.SelectiveGapicGeneration;

/**
* Creates a plain object from a SelectiveGapicGeneration message. Also converts values to other types if specified.
* @param message SelectiveGapicGeneration
* @param [options] Conversion options
* @returns Plain object
*/
public static toObject(message: google.api.SelectiveGapicGeneration, options?: $protobuf.IConversionOptions): { [k: string]: any };

/**
* Converts this SelectiveGapicGeneration to JSON.
* @returns JSON object
*/
public toJSON(): { [k: string]: any };

/**
* Gets the default type url for SelectiveGapicGeneration
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
* @returns The default type url
*/
public static getTypeUrl(typeUrlPrefix?: string): string;
}

/** LaunchStage enum. */
type LaunchStage =
"LAUNCH_STAGE_UNSPECIFIED"| "UNIMPLEMENTED"| "PRELAUNCH"| "EARLY_ACCESS"| "ALPHA"| "BETA"| "GA"| "DEPRECATED";
Expand Down
Loading
Loading