google-apis-datastore_v1beta3 0.30.0 → 0.31.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 17ba7afb2969373f122cf332d363e07470de955c1be0596a4f39c0a0bb67493d
4
- data.tar.gz: 4fa9a4af70b5e18abaa9f810fc11243eadb1646a74501a5935387a36eeb99b16
3
+ metadata.gz: 1206907b1cb8e762b8e33ece6c3ad37d51ec9674d60423786e330e5179730a63
4
+ data.tar.gz: f533fb244658025789cd225c0b42d04083bce29d00e6422a77fb6003be4110c9
5
5
  SHA512:
6
- metadata.gz: 829becab9fce85cebb5b3b787db21a8287bb6b17efd293325be208b47737a78d6f6e38d825b751d41040a758ef24162292d5a9148b414832f96de9322a4907bd
7
- data.tar.gz: 5b8f2c8b0097c55bc8b6eee0426bd204e574f3587bfcae5df253501fe49c6fc7f57b98491c6968df2a56130a921d15452992056668adc4906fc8654d77d2e24e
6
+ metadata.gz: f2143d0c709b759c89826ccab9dfa9d42e753ee84b22d64429efcee8eb499aaa05912035f81af289c5d841c6e0b7e239b29c45004bf393d9633462623f91c4a9
7
+ data.tar.gz: c7e129055c3171864641b6fffee6962ef5fb097d2bd92c626ece77b294a3c042bc5b48241ebe5d2235b3651b8532948684fb42a47ea9d76bfbc5186fc2b2310c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-datastore_v1beta3
2
2
 
3
+ ### v0.31.0 (2024-02-23)
4
+
5
+ * Regenerated from discovery document revision 20240215
6
+ * Regenerated using generator version 0.14.0
7
+
3
8
  ### v0.30.0 (2024-02-18)
4
9
 
5
10
  * Regenerated from discovery document revision 20240208
data/OVERVIEW.md CHANGED
@@ -83,9 +83,9 @@ The [product documentation](https://cloud.google.com/datastore/) may provide gui
83
83
 
84
84
  ## Supported Ruby versions
85
85
 
86
- This library is supported on Ruby 2.5+.
86
+ This library is supported on Ruby 2.7+.
87
87
 
88
- Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Currently, this means Ruby 2.5 and later. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
88
+ Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
89
89
 
90
90
  ## License
91
91
 
@@ -494,29 +494,6 @@ module Google
494
494
  end
495
495
  end
496
496
 
497
- # Explain options for the query.
498
- class ExplainOptions
499
- include Google::Apis::Core::Hashable
500
-
501
- # Optional. Whether to execute this query. When false (the default), the query
502
- # will be planned, returning only metrics from the planning stages. When true,
503
- # the query will be planned and executed, returning the full query results along
504
- # with both planning and execution stage metrics.
505
- # Corresponds to the JSON property `analyze`
506
- # @return [Boolean]
507
- attr_accessor :analyze
508
- alias_method :analyze?, :analyze
509
-
510
- def initialize(**args)
511
- update!(**args)
512
- end
513
-
514
- # Update properties of this object
515
- def update!(**args)
516
- @analyze = args[:analyze] if args.key?(:analyze)
517
- end
518
- end
519
-
520
497
  # A holder for any type of filter.
521
498
  class Filter
522
499
  include Google::Apis::Core::Hashable
@@ -1990,11 +1967,6 @@ module Google
1990
1967
  # @return [Google::Apis::DatastoreV1beta3::AggregationQuery]
1991
1968
  attr_accessor :aggregation_query
1992
1969
 
1993
- # Explain options for the query.
1994
- # Corresponds to the JSON property `explainOptions`
1995
- # @return [Google::Apis::DatastoreV1beta3::ExplainOptions]
1996
- attr_accessor :explain_options
1997
-
1998
1970
  # A [GQL query](https://cloud.google.com/datastore/docs/apis/gql/gql_reference).
1999
1971
  # Corresponds to the JSON property `gqlQuery`
2000
1972
  # @return [Google::Apis::DatastoreV1beta3::GqlQuery]
@@ -2026,7 +1998,6 @@ module Google
2026
1998
  # Update properties of this object
2027
1999
  def update!(**args)
2028
2000
  @aggregation_query = args[:aggregation_query] if args.key?(:aggregation_query)
2029
- @explain_options = args[:explain_options] if args.key?(:explain_options)
2030
2001
  @gql_query = args[:gql_query] if args.key?(:gql_query)
2031
2002
  @partition_id = args[:partition_id] if args.key?(:partition_id)
2032
2003
  @read_options = args[:read_options] if args.key?(:read_options)
@@ -2062,11 +2033,6 @@ module Google
2062
2033
  class RunQueryRequest
2063
2034
  include Google::Apis::Core::Hashable
2064
2035
 
2065
- # Explain options for the query.
2066
- # Corresponds to the JSON property `explainOptions`
2067
- # @return [Google::Apis::DatastoreV1beta3::ExplainOptions]
2068
- attr_accessor :explain_options
2069
-
2070
2036
  # A [GQL query](https://cloud.google.com/datastore/docs/apis/gql/gql_reference).
2071
2037
  # Corresponds to the JSON property `gqlQuery`
2072
2038
  # @return [Google::Apis::DatastoreV1beta3::GqlQuery]
@@ -2102,7 +2068,6 @@ module Google
2102
2068
 
2103
2069
  # Update properties of this object
2104
2070
  def update!(**args)
2105
- @explain_options = args[:explain_options] if args.key?(:explain_options)
2106
2071
  @gql_query = args[:gql_query] if args.key?(:gql_query)
2107
2072
  @partition_id = args[:partition_id] if args.key?(:partition_id)
2108
2073
  @query = args[:query] if args.key?(:query)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DatastoreV1beta3
18
18
  # Version of the google-apis-datastore_v1beta3 gem
19
- GEM_VERSION = "0.30.0"
19
+ GEM_VERSION = "0.31.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.13.1"
22
+ GENERATOR_VERSION = "0.14.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240208"
25
+ REVISION = "20240215"
26
26
  end
27
27
  end
28
28
  end
@@ -118,12 +118,6 @@ module Google
118
118
  include Google::Apis::Core::JsonObjectSupport
119
119
  end
120
120
 
121
- class ExplainOptions
122
- class Representation < Google::Apis::Core::JsonRepresentation; end
123
-
124
- include Google::Apis::Core::JsonObjectSupport
125
- end
126
-
127
121
  class Filter
128
122
  class Representation < Google::Apis::Core::JsonRepresentation; end
129
123
 
@@ -570,13 +564,6 @@ module Google
570
564
  end
571
565
  end
572
566
 
573
- class ExplainOptions
574
- # @private
575
- class Representation < Google::Apis::Core::JsonRepresentation
576
- property :analyze, as: 'analyze'
577
- end
578
- end
579
-
580
567
  class Filter
581
568
  # @private
582
569
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1006,8 +993,6 @@ module Google
1006
993
  class Representation < Google::Apis::Core::JsonRepresentation
1007
994
  property :aggregation_query, as: 'aggregationQuery', class: Google::Apis::DatastoreV1beta3::AggregationQuery, decorator: Google::Apis::DatastoreV1beta3::AggregationQuery::Representation
1008
995
 
1009
- property :explain_options, as: 'explainOptions', class: Google::Apis::DatastoreV1beta3::ExplainOptions, decorator: Google::Apis::DatastoreV1beta3::ExplainOptions::Representation
1010
-
1011
996
  property :gql_query, as: 'gqlQuery', class: Google::Apis::DatastoreV1beta3::GqlQuery, decorator: Google::Apis::DatastoreV1beta3::GqlQuery::Representation
1012
997
 
1013
998
  property :partition_id, as: 'partitionId', class: Google::Apis::DatastoreV1beta3::PartitionId, decorator: Google::Apis::DatastoreV1beta3::PartitionId::Representation
@@ -1030,8 +1015,6 @@ module Google
1030
1015
  class RunQueryRequest
1031
1016
  # @private
1032
1017
  class Representation < Google::Apis::Core::JsonRepresentation
1033
- property :explain_options, as: 'explainOptions', class: Google::Apis::DatastoreV1beta3::ExplainOptions, decorator: Google::Apis::DatastoreV1beta3::ExplainOptions::Representation
1034
-
1035
1018
  property :gql_query, as: 'gqlQuery', class: Google::Apis::DatastoreV1beta3::GqlQuery, decorator: Google::Apis::DatastoreV1beta3::GqlQuery::Representation
1036
1019
 
1037
1020
  property :partition_id, as: 'partitionId', class: Google::Apis::DatastoreV1beta3::PartitionId, decorator: Google::Apis::DatastoreV1beta3::PartitionId::Representation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-datastore_v1beta3
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.30.0
4
+ version: 0.31.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: 2024-02-18 00:00:00.000000000 Z
11
+ date: 2024-02-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.12.0
19
+ version: 0.14.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.12.0
29
+ version: 0.14.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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-datastore_v1beta3/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-datastore_v1beta3/v0.30.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datastore_v1beta3/v0.31.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datastore_v1beta3
63
63
  post_install_message:
64
64
  rdoc_options: []
@@ -68,14 +68,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
68
68
  requirements:
69
69
  - - ">="
70
70
  - !ruby/object:Gem::Version
71
- version: '2.5'
71
+ version: '2.7'
72
72
  required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  requirements:
74
74
  - - ">="
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.5.3
78
+ rubygems_version: 3.5.6
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Cloud Datastore API V1beta3