google-apis-developerknowledge_v1 0.6.0 → 0.7.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 37bc4906110952047945b2baa45960b47c40659678b12a1c6961c46d413d9969
|
|
4
|
+
data.tar.gz: 0d0a93d1b78b6311913eea4c490ef04d0069090330f9fdbe5ad513b82c26bdee
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e4ad6e0d16d7c7524735e1576a9f21e9e733f43b004cbb54dfdd7ee7d8b89d16a945b9916e98dddd1da4151742d206663610afd2643569b19715d090e90f0017
|
|
7
|
+
data.tar.gz: 2183021ec491db6e8baea4a76f9ff128f277b6fc6708e3a5c55506550daeb8c4b279cb11e453a6d7c5498a6806edfee8a897eab11c04e79754dc022b35d3670e
|
data/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
# Release history for google-apis-developerknowledge_v1
|
|
2
2
|
|
|
3
|
-
### v0.
|
|
3
|
+
### v0.7.0 (2026-08-09)
|
|
4
4
|
|
|
5
|
-
* Regenerated from discovery document revision
|
|
5
|
+
* Regenerated from discovery document revision 20260802
|
|
6
|
+
|
|
7
|
+
### v0.6.0 (2026-07-26)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260719
|
|
6
10
|
|
|
7
11
|
### v0.5.0 (2026-07-12)
|
|
8
12
|
|
|
@@ -184,7 +184,9 @@ module Google
|
|
|
184
184
|
end
|
|
185
185
|
end
|
|
186
186
|
|
|
187
|
-
# A Document represents a
|
|
187
|
+
# A Document represents a page of documentation in the Developer Knowledge
|
|
188
|
+
# corpus, like the page at https://docs.cloud.google.com/storage/docs/creating-
|
|
189
|
+
# buckets.
|
|
188
190
|
class Document
|
|
189
191
|
include Google::Apis::Core::Hashable
|
|
190
192
|
|
|
@@ -268,7 +270,9 @@ module Google
|
|
|
268
270
|
# @return [String]
|
|
269
271
|
attr_accessor :content
|
|
270
272
|
|
|
271
|
-
# A Document represents a
|
|
273
|
+
# A Document represents a page of documentation in the Developer Knowledge
|
|
274
|
+
# corpus, like the page at https://docs.cloud.google.com/storage/docs/creating-
|
|
275
|
+
# buckets.
|
|
272
276
|
# Corresponds to the JSON property `document`
|
|
273
277
|
# @return [Google::Apis::DeveloperknowledgeV1::Document]
|
|
274
278
|
attr_accessor :document
|
|
@@ -326,8 +330,8 @@ module Google
|
|
|
326
330
|
class SearchDocumentChunksResponse
|
|
327
331
|
include Google::Apis::Core::Hashable
|
|
328
332
|
|
|
329
|
-
#
|
|
330
|
-
#
|
|
333
|
+
# Provides a token that can be sent as `page_token` to retrieve the next page.
|
|
334
|
+
# If this field is omitted, there are no subsequent pages.
|
|
331
335
|
# Corresponds to the JSON property `nextPageToken`
|
|
332
336
|
# @return [String]
|
|
333
337
|
attr_accessor :next_page_token
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module DeveloperknowledgeV1
|
|
18
18
|
# Version of the google-apis-developerknowledge_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.7.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 = "
|
|
25
|
+
REVISION = "20260802"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -56,7 +56,9 @@ module Google
|
|
|
56
56
|
# Required. Specifies the names of the documents to retrieve. A maximum of 20
|
|
57
57
|
# documents can be retrieved in a batch. The documents are returned in the same
|
|
58
58
|
# order as the `names` in the request. Format: `documents/`uri_without_scheme``
|
|
59
|
-
# Example: `documents/docs.cloud.google.com/storage/docs/creating-buckets`
|
|
59
|
+
# Example: `documents/docs.cloud.google.com/storage/docs/creating-buckets` Each
|
|
60
|
+
# name must not exceed 500 characters; values longer than 500 characters will
|
|
61
|
+
# result in an `INVALID_ARGUMENT` error.
|
|
60
62
|
# @param [String] view
|
|
61
63
|
# Optional. Specifies the DocumentView of the document. If unspecified,
|
|
62
64
|
# DeveloperKnowledge.BatchGetDocuments defaults to `DOCUMENT_VIEW_CONTENT`.
|
|
@@ -92,7 +94,8 @@ module Google
|
|
|
92
94
|
# @param [String] name
|
|
93
95
|
# Required. Specifies the name of the document to retrieve. Format: `documents/`
|
|
94
96
|
# uri_without_scheme`` Example: `documents/docs.cloud.google.com/storage/docs/
|
|
95
|
-
# creating-buckets`
|
|
97
|
+
# creating-buckets` The name must not exceed 500 characters; values longer than
|
|
98
|
+
# 500 characters will result in an `INVALID_ARGUMENT` error.
|
|
96
99
|
# @param [String] view
|
|
97
100
|
# Optional. Specifies the DocumentView of the document. If unspecified,
|
|
98
101
|
# DeveloperKnowledge.GetDocument defaults to `DOCUMENT_VIEW_CONTENT`.
|
|
@@ -133,29 +136,29 @@ module Google
|
|
|
133
136
|
# Optional. Applies a strict filter to the search results. The expression
|
|
134
137
|
# supports a subset of the syntax described at https://google.aip.dev/160. While
|
|
135
138
|
# `SearchDocumentChunks` returns DocumentChunks, the filter is applied to `
|
|
136
|
-
# DocumentChunk.document` fields. Supported fields for filtering: * `
|
|
137
|
-
#
|
|
138
|
-
#
|
|
139
|
-
#
|
|
140
|
-
#
|
|
141
|
-
#
|
|
142
|
-
#
|
|
143
|
-
#
|
|
144
|
-
#
|
|
145
|
-
#
|
|
146
|
-
#
|
|
147
|
-
#
|
|
148
|
-
#
|
|
149
|
-
#
|
|
150
|
-
# `) logical operators. `OR` has
|
|
151
|
-
#
|
|
152
|
-
#
|
|
153
|
-
#
|
|
154
|
-
#
|
|
155
|
-
# = "
|
|
156
|
-
#
|
|
157
|
-
#
|
|
158
|
-
#
|
|
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.
|
|
159
162
|
# @param [Fixnum] page_size
|
|
160
163
|
# Optional. Specifies the maximum number of results to return. The service may
|
|
161
164
|
# return fewer than this value. If unspecified, at most 5 results will be
|
|
@@ -165,7 +168,8 @@ module Google
|
|
|
165
168
|
# SearchDocumentChunks` call. Provide this to retrieve the subsequent page.
|
|
166
169
|
# @param [String] query
|
|
167
170
|
# Required. Provides the raw query string provided by the user, such as "How to
|
|
168
|
-
# create a Cloud Storage bucket?".
|
|
171
|
+
# create a Cloud Storage bucket?". The query must not exceed 500 characters;
|
|
172
|
+
# values longer than 500 characters will result in an `INVALID_ARGUMENT` error.
|
|
169
173
|
# @param [String] fields
|
|
170
174
|
# Selector specifying which fields to include in a partial response.
|
|
171
175
|
# @param [String] quota_user
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-developerknowledge_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.7.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_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-developerknowledge_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-developerknowledge_v1/v0.7.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-developerknowledge_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|