google-apis-developerknowledge_v1alpha 0.7.0 → 0.8.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f2bcf64c409e29b133914ba92a40cb9de98f342af7e512b6c9bf26cbd15e4530
4
- data.tar.gz: a4ab080595c500af04bb44f7f86f5e3626ed780382b8f8eb9fa33166accac1b3
3
+ metadata.gz: 98cb1c52c17604077eadf4daf27bf6ea990491d020d15be5fe9b192a77998a13
4
+ data.tar.gz: 2dadacb17738ac8cd3a8e74f4c5665e8256341984461918f213486b3cf6f7eba
5
5
  SHA512:
6
- metadata.gz: b2097680bd65c87dd2eaa59a9d855c195adaa57cf8fe1e0113226b3e0f52d256e68ec55f84f70079713ae6d27595be8f5f391346a8f83825c53b725c2859ff59
7
- data.tar.gz: a35beea29595c734d375ccbe079db4758bbba33e90349157e98388c8908f4bdde5e134b9c4afacfac1d3535108ad22fd3f912a4157eb75216d31cee302177e46
6
+ metadata.gz: b68f0030635183681550dec870ee7c5602f74e97e7f455253878b2f531dd47943ff36bf8c3088b1e52970a56a31aaf827b6e96b7ba8a5cfb99e06acc84611319
7
+ data.tar.gz: 74e7bcee902ba3210ea7b48d140a3312c3f7c6193bb8b6e2c28e87bae8822163f246d9a71e4c9055ce661e94f3a158c87c93658271ccfbbd1d163221c39e7b08
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-developerknowledge_v1alpha
2
2
 
3
+ ### v0.8.0 (2026-08-16)
4
+
5
+ * Regenerated from discovery document revision 20260809
6
+
3
7
  ### v0.7.0 (2026-08-09)
4
8
 
5
9
  * Regenerated from discovery document revision 20260802
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DeveloperknowledgeV1alpha
18
18
  # Version of the google-apis-developerknowledge_v1alpha gem
19
- GEM_VERSION = "0.7.0"
19
+ GEM_VERSION = "0.8.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.19.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260802"
25
+ REVISION = "20260809"
26
26
  end
27
27
  end
28
28
  end
@@ -136,29 +136,32 @@ module Google
136
136
  # Optional. Applies a strict filter to the search results. The expression
137
137
  # supports a subset of the syntax described at https://google.aip.dev/160. While
138
138
  # `SearchDocumentChunks` returns DocumentChunks, the filter is applied to `
139
- # DocumentChunk.document` fields. Supported fields for filtering: * `data_source`
140
- # (STRING): The source of the document, e.g. `docs.cloud.google.com`. See https:
141
- # //developers.google.com/knowledge/reference/corpus-reference for the complete
142
- # list of data sources in the corpus. * `update_time` (TIMESTAMP): The timestamp
143
- # of when the document was last meaningfully updated. A meaningful update is one
144
- # that changes document's markdown content or metadata. * `uri` (STRING): The
145
- # document URI, e.g. `https://docs.cloud.google.com/bigquery/docs/tables`.
146
- # STRING fields support `=` (equals) and `!=` (not equals) operators for **exact
147
- # match** on the whole string. Partial match, prefix match, and regexp match are
148
- # not supported. TIMESTAMP fields support `=`, `<`, `<=`, `>`, and `>=`
149
- # operators. Timestamps must be in RFC-3339 format, e.g., `"2025-01-01T00:00:00Z"
150
- # `. Note: Field names must be in `snake_case` (e.g., `data_source`). Values on
151
- # the right-hand side of filtering expressions must be string literals enclosed
152
- # in double quotes (e.g., `"docs.cloud.google.com"`). You can combine
153
- # expressions using `AND`, `OR`, and `NOT` (or `-`) logical operators. `OR` has
154
- # higher precedence than `AND`. Use parentheses for explicit precedence grouping.
155
- # Examples: * `data_source = "docs.cloud.google.com" OR data_source = "firebase.
156
- # google.com"` * `data_source != "firebase.google.com"` * `update_time < "2024-
157
- # 01-01T00:00:00Z"` * `update_time >= "2025-01-22T00:00:00Z" AND (data_source = "
158
- # developer.chrome.com" OR data_source = "web.dev")` * `uri = "https://docs.
159
- # cloud.google.com/release-notes"` The `filter` string must not exceed 500
160
- # characters; values longer than 500 characters will result in an `
161
- # INVALID_ARGUMENT` error.
139
+ # DocumentChunk.document` fields. Supported fields for filtering: * `
140
+ # content_length_bytes` (INTEGER): The length of the `Document.content` field in
141
+ # bytes. * `data_source` (STRING): The source of the document, e.g. `docs.cloud.
142
+ # google.com`. See https://developers.google.com/knowledge/reference/corpus-
143
+ # reference for the complete list of data sources in the corpus. * `update_time`
144
+ # (TIMESTAMP): The timestamp of when the document was last meaningfully updated.
145
+ # A meaningful update is one that changes document's markdown content or
146
+ # metadata. * `uri` (STRING): The document URI, e.g. `https://docs.cloud.google.
147
+ # com/bigquery/docs/tables`. INTEGER fields support `=`, `<`, `<=`, `>`, and `>=`
148
+ # operators. STRING fields support `=` (equals) and `!=` (not equals) operators
149
+ # for **exact match** on the whole string. Partial match, prefix match, and
150
+ # regexp match are not supported. TIMESTAMP fields support `=`, `<`, `<=`, `>`,
151
+ # and `>=` operators. Timestamps must be in RFC-3339 format, e.g., `"2025-01-
152
+ # 01T00:00:00Z"`. Note: Field names must be in `snake_case` (e.g., `data_source`)
153
+ # . Values on the right-hand side of filtering expressions must be string
154
+ # literals enclosed in double quotes (e.g., `"docs.cloud.google.com"`). You can
155
+ # combine expressions using `AND`, `OR`, and `NOT` (or `-`) logical operators. `
156
+ # OR` has higher precedence than `AND`. Use parentheses for explicit precedence
157
+ # grouping. Examples: * Filter by `Document.content_length_bytes`: `
158
+ # content_length_bytes < 50000` * `data_source = "docs.cloud.google.com" OR
159
+ # data_source = "firebase.google.com"` * `data_source != "firebase.google.com"` *
160
+ # `update_time < "2024-01-01T00:00:00Z"` * `update_time >= "2025-01-22T00:00:
161
+ # 00Z" AND (data_source = "developer.chrome.com" OR data_source = "web.dev")` * `
162
+ # uri = "https://docs.cloud.google.com/release-notes"` The `filter` string must
163
+ # not exceed 500 characters; values longer than 500 characters will result in an
164
+ # `INVALID_ARGUMENT` error.
162
165
  # @param [Fixnum] page_size
163
166
  # Optional. Specifies the maximum number of results to return. The service may
164
167
  # return fewer than this value. If unspecified, at most 5 results will be
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-developerknowledge_v1alpha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-developerknowledge_v1alpha/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-developerknowledge_v1alpha/v0.7.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-developerknowledge_v1alpha/v0.8.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-developerknowledge_v1alpha
62
62
  rdoc_options: []
63
63
  require_paths: