google-apis-datastore_v1 0.24.0 → 0.26.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: 4188c064c0d5521c8bc542aecaa86d849118d7006358831b58c40253b5783a88
4
- data.tar.gz: b663c6463ae036f21ae856ae52b3e72734211fef29af1746be9a09790776ab9c
3
+ metadata.gz: 01e6d9dc54892c760b388a88a039dab480e5a24739cf90415481c4da81773ae8
4
+ data.tar.gz: 820956dd6269502fe8244387a074e9a49387d7e621a00596e08425d1d6d83a9c
5
5
  SHA512:
6
- metadata.gz: 92c719925640d959501b4efd2043be4377a4ee4a66e0a171eea67ff7e15d10962243111d58b6249b9c44b09d5e4789e5c8d39b25ecee3b476b8d683c896cb666
7
- data.tar.gz: 50be5fc59db23dde2c51f19bff1ee55519b839ae28e52e492d90a70180b5004da79c8d5a8d2544eca4453667ec57ef189262d5bd166b67742ffe6d87df67b5f9
6
+ metadata.gz: 0d6e022a3fece2f4844b97eaf117e4310b64504c895138dd06b3b3dd48677a831ba8082151c999ed53c47675898a775ebdf29d291a94809f289baefd3b835c3b
7
+ data.tar.gz: 682d30670156c507a5c7745b549e91ef22b1b92e3156cc2e4398ce579598575bded009cb0f2c2a67b4c85eb3196d769bcf80fd4233c80c354ce3474d5bb0a27e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-datastore_v1
2
2
 
3
+ ### v0.26.0 (2023-03-19)
4
+
5
+ * Regenerated from discovery document revision 20230315
6
+
7
+ ### v0.25.0 (2023-03-12)
8
+
9
+ * Regenerated from discovery document revision 20230307
10
+
3
11
  ### v0.24.0 (2023-02-15)
4
12
 
5
13
  * Regenerated using generator version 0.12.0
@@ -22,18 +22,18 @@ module Google
22
22
  module Apis
23
23
  module DatastoreV1
24
24
 
25
- # Defines a aggregation that produces a single result.
25
+ # Defines an aggregation that produces a single result.
26
26
  class Aggregation
27
27
  include Google::Apis::Core::Hashable
28
28
 
29
29
  # Optional. Optional name of the property to store the result of the aggregation.
30
30
  # If not provided, Datastore will pick a default name following the format `
31
31
  # property_`. For example: ``` AGGREGATE COUNT_UP_TO(1) AS count_up_to_1,
32
- # COUNT_UP_TO(2), COUNT_UP_TO(3) AS count_up_to_3, COUNT_UP_TO(4) OVER ( ... ); `
33
- # `` becomes: ``` AGGREGATE COUNT_UP_TO(1) AS count_up_to_1, COUNT_UP_TO(2) AS
34
- # property_1, COUNT_UP_TO(3) AS count_up_to_3, COUNT_UP_TO(4) AS property_2 OVER
35
- # ( ... ); ``` Requires: * Must be unique across all aggregation aliases. *
36
- # Conform to entity property name limitations.
32
+ # COUNT_UP_TO(2), COUNT_UP_TO(3) AS count_up_to_3, COUNT(*) OVER ( ... ); ```
33
+ # becomes: ``` AGGREGATE COUNT_UP_TO(1) AS count_up_to_1, COUNT_UP_TO(2) AS
34
+ # property_1, COUNT_UP_TO(3) AS count_up_to_3, COUNT(*) AS property_2 OVER ( ...
35
+ # ); ``` Requires: * Must be unique across all aggregation aliases. * Conform to
36
+ # entity property name limitations.
37
37
  # Corresponds to the JSON property `alias`
38
38
  # @return [String]
39
39
  attr_accessor :alias
@@ -373,7 +373,7 @@ module Google
373
373
 
374
374
  # Optional. Optional constraint on the maximum number of entities to count. This
375
375
  # provides a way to set an upper bound on the number of entities to scan,
376
- # limiting latency and cost. Unspecified is interpreted as no bound. If a zero
376
+ # limiting latency, and cost. Unspecified is interpreted as no bound. If a zero
377
377
  # value is provided, a count result of zero should always be expected. High-
378
378
  # Level Example: ``` AGGREGATE COUNT_UP_TO(1000) OVER ( SELECT * FROM k ); ```
379
379
  # Requires: * Must be non-negative when present.
@@ -1967,7 +1967,9 @@ module Google
1967
1967
 
1968
1968
  # The properties to make distinct. The query results will contain the first
1969
1969
  # result for each distinct combination of values for the given properties (if
1970
- # empty, all results are returned).
1970
+ # empty, all results are returned). Requires: * If `order` is specified, the set
1971
+ # of distinct on properties must appear before the non-distinct on properties in
1972
+ # `order`.
1971
1973
  # Corresponds to the JSON property `distinctOn`
1972
1974
  # @return [Array<Google::Apis::DatastoreV1::PropertyReference>]
1973
1975
  attr_accessor :distinct_on
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DatastoreV1
18
18
  # Version of the google-apis-datastore_v1 gem
19
- GEM_VERSION = "0.24.0"
19
+ GEM_VERSION = "0.26.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230126"
25
+ REVISION = "20230315"
26
26
  end
27
27
  end
28
28
  end
@@ -647,13 +647,7 @@ module Google
647
647
  end
648
648
 
649
649
  # Lists operations that match the specified filter in the request. If the server
650
- # doesn't support this method, it returns `UNIMPLEMENTED`. NOTE: the `name`
651
- # binding allows API services to override the binding to use different resource
652
- # name schemes, such as `users/*/operations`. To override the binding, API
653
- # services can add a binding such as `"/v1/`name=users/*`/operations"` to their
654
- # service configuration. For backwards compatibility, the default name includes
655
- # the operations collection id, however overriding users must ensure the name
656
- # binding is the parent resource, without the operations collection id.
650
+ # doesn't support this method, it returns `UNIMPLEMENTED`.
657
651
  # @param [String] name
658
652
  # The name of the operation's parent resource.
659
653
  # @param [String] filter
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-datastore_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.24.0
4
+ version: 0.26.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: 2023-02-19 00:00:00.000000000 Z
11
+ date: 2023-03-19 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-datastore_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-datastore_v1/v0.24.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datastore_v1/v0.26.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datastore_v1
63
63
  post_install_message:
64
64
  rdoc_options: []