@maxim_mazurok/gapi.client.redis-v1 0.1.20251021 → 0.1.20260107
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +9 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://redis.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20260107
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -399,6 +399,8 @@ declare namespace gapi.client {
|
|
|
399
399
|
id?: DatabaseResourceId;
|
|
400
400
|
/** The type of the instance. Specified at creation time. */
|
|
401
401
|
instanceType?: string;
|
|
402
|
+
/** Optional. Whether deletion protection is enabled for this resource. */
|
|
403
|
+
isDeletionProtectionEnabled?: boolean;
|
|
402
404
|
/** The resource location. REQUIRED */
|
|
403
405
|
location?: string;
|
|
404
406
|
/** Machine configuration for this resource. */
|
|
@@ -689,7 +691,7 @@ declare namespace gapi.client {
|
|
|
689
691
|
nextPageToken?: string;
|
|
690
692
|
/** A list of operations that matches the specified filter in the request. */
|
|
691
693
|
operations?: Operation[];
|
|
692
|
-
/** Unordered list. Unreachable resources. Populated when the request sets `ListOperationsRequest.return_partial_success` and reads across collections
|
|
694
|
+
/** Unordered list. Unreachable resources. Populated when the request sets `ListOperationsRequest.return_partial_success` and reads across collections. For example, when attempting to list all resources across all supported locations. */
|
|
693
695
|
unreachable?: string[];
|
|
694
696
|
}
|
|
695
697
|
interface Location {
|
|
@@ -705,8 +707,12 @@ declare namespace gapi.client {
|
|
|
705
707
|
name?: string;
|
|
706
708
|
}
|
|
707
709
|
interface MachineConfiguration {
|
|
710
|
+
/** Optional. Baseline slots for BigQuery Reservations. Baseline slots are in increments of 50. */
|
|
711
|
+
baselineSlots?: string;
|
|
708
712
|
/** The number of CPUs. Deprecated. Use vcpu_count instead. TODO(b/342344482) add proto validations again after bug fix. */
|
|
709
713
|
cpuCount?: number;
|
|
714
|
+
/** Optional. Max slots for BigQuery Reservations. Max slots are in increments of 50. */
|
|
715
|
+
maxReservationSlots?: string;
|
|
710
716
|
/** Memory size in bytes. TODO(b/342344482) add proto validations again after bug fix. */
|
|
711
717
|
memorySizeInBytes?: string;
|
|
712
718
|
/** Optional. Number of shards (if applicable). */
|
|
@@ -2224,7 +2230,7 @@ declare namespace gapi.client {
|
|
|
2224
2230
|
prettyPrint?: boolean;
|
|
2225
2231
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
2226
2232
|
quotaUser?: string;
|
|
2227
|
-
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the
|
|
2233
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
2228
2234
|
returnPartialSuccess?: boolean;
|
|
2229
2235
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2230
2236
|
upload_protocol?: string;
|