google-apis-spanner_v1 0.23.0 → 0.24.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/spanner_v1/gem_version.rb +2 -2
- data/lib/google/apis/spanner_v1/service.rb +19 -17
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d21118bfea939956c650168df9b62ec3b03602e086c44ac41b9091242a624c9b
|
|
4
|
+
data.tar.gz: d1f8512a386fa6a10656f8edc4e9de1e3a0be5a2f7e3b51b9c49e8e578d567ba
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 85476a117c020df05d7f1cfa7f7932277bef795df67d90cdb0f831602256ff04ef6859e1eb252c9583d383493b69b31c7264bb307928a88546e93c18b34e0688
|
|
7
|
+
data.tar.gz: a0142e2d38dc8398b5560b60c43b4bd07e79b84f4e27b0aa9950522fded71c631cac300c05728261ca93de9f34211277810811ddbd532946c83aba1111e8ce6a
|
data/CHANGELOG.md
CHANGED
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module SpannerV1
|
|
18
18
|
# Version of the google-apis-spanner_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.24.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.4.1"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20220212"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -483,22 +483,23 @@ module Google
|
|
|
483
483
|
# true. * `metadata.@type` - the type of metadata. For example, the type string
|
|
484
484
|
# for CreateBackupMetadata is `type.googleapis.com/google.spanner.admin.database.
|
|
485
485
|
# v1.CreateBackupMetadata`. * `metadata.` - any field in metadata.value. `
|
|
486
|
-
# metadata
|
|
487
|
-
# - Error associated with the long-running operation. * `response.@type` -
|
|
488
|
-
# type of response. * `response.` - any field in response.value. You can
|
|
489
|
-
# multiple expressions by enclosing each expression in parentheses. By
|
|
490
|
-
# expressions are combined with AND logic, but you can specify AND, OR,
|
|
491
|
-
# logic explicitly. Here are a few examples: * `done:true` - The
|
|
492
|
-
# complete. * `(metadata.@type=type.googleapis.com/google.spanner.
|
|
493
|
-
# v1.CreateBackupMetadata) AND` \ `metadata.database:prod` -
|
|
494
|
-
# where: * The operation's metadata type is
|
|
495
|
-
# the backup was taken from has a name
|
|
496
|
-
# metadata.@type=type.googleapis.com/google.
|
|
497
|
-
# CreateBackupMetadata) AND` \ `(metadata.name:howl)
|
|
498
|
-
# start_time < \"2018-03-28T14:50:00Z\") AND` \ `(
|
|
499
|
-
# where: * The operation's metadata type is
|
|
500
|
-
# name contains the string "howl". * The
|
|
501
|
-
# 50:00Z. * The operation resulted in an
|
|
486
|
+
# metadata.@type` must be specified first if filtering on metadata fields. * `
|
|
487
|
+
# error` - Error associated with the long-running operation. * `response.@type` -
|
|
488
|
+
# the type of response. * `response.` - any field in response.value. You can
|
|
489
|
+
# combine multiple expressions by enclosing each expression in parentheses. By
|
|
490
|
+
# default, expressions are combined with AND logic, but you can specify AND, OR,
|
|
491
|
+
# and NOT logic explicitly. Here are a few examples: * `done:true` - The
|
|
492
|
+
# operation is complete. * `(metadata.@type=type.googleapis.com/google.spanner.
|
|
493
|
+
# admin.database.v1.CreateBackupMetadata) AND` \ `metadata.database:prod` -
|
|
494
|
+
# Returns operations where: * The operation's metadata type is
|
|
495
|
+
# CreateBackupMetadata. * The database the backup was taken from has a name
|
|
496
|
+
# containing the string "prod". * `(metadata.@type=type.googleapis.com/google.
|
|
497
|
+
# spanner.admin.database.v1.CreateBackupMetadata) AND` \ `(metadata.name:howl)
|
|
498
|
+
# AND` \ `(metadata.progress.start_time < \"2018-03-28T14:50:00Z\") AND` \ `(
|
|
499
|
+
# error:*)` - Returns operations where: * The operation's metadata type is
|
|
500
|
+
# CreateBackupMetadata. * The backup name contains the string "howl". * The
|
|
501
|
+
# operation started before 2018-03-28T14:50:00Z. * The operation resulted in an
|
|
502
|
+
# error.
|
|
502
503
|
# @param [Fixnum] page_size
|
|
503
504
|
# Number of operations to be returned in the response. If 0 or less, defaults to
|
|
504
505
|
# the server's maximum allowed page size.
|
|
@@ -1044,7 +1045,8 @@ module Google
|
|
|
1044
1045
|
# true. * `metadata.@type` - the type of metadata. For example, the type string
|
|
1045
1046
|
# for RestoreDatabaseMetadata is `type.googleapis.com/google.spanner.admin.
|
|
1046
1047
|
# database.v1.RestoreDatabaseMetadata`. * `metadata.` - any field in metadata.
|
|
1047
|
-
# value.
|
|
1048
|
+
# value. `metadata.@type` must be specified first, if filtering on metadata
|
|
1049
|
+
# fields. * `error` - Error associated with the long-running operation. * `
|
|
1048
1050
|
# response.@type` - the type of response. * `response.` - any field in response.
|
|
1049
1051
|
# value. You can combine multiple expressions by enclosing each expression in
|
|
1050
1052
|
# parentheses. By default, expressions are combined with AND logic. However, you
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-spanner_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.24.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-02-
|
|
11
|
+
date: 2022-02-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-apis-core
|
|
@@ -58,7 +58,7 @@ licenses:
|
|
|
58
58
|
metadata:
|
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-spanner_v1/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-spanner_v1/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-spanner_v1/v0.24.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-spanner_v1
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|