google-apis-discoveryengine_v1beta 0.65.0 → 0.66.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: 9089dbf85ba89f5fc3499071a3b80d2e1a9e76f70b17ac1ebda8929904013e81
|
4
|
+
data.tar.gz: 3d9868229317a98c455df4aecb662186cff927baf79a5fb08d441bd038cd29ec
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d8fd461167c5659d4b9b435c02e431056b658d320a301b827a68c9f1de8266348cc1448d17d225fd13383290020c23f7f5ede9a22853e436a1191cba6eb13bcb
|
7
|
+
data.tar.gz: dc7df58df433750fa37b09e5ba2dc245a650c7ab3d0770cde14dc51a889f70eed222efff049ae4af0b73c824b397708959a8d3b4bb2c3446bbb53359cad51f24
|
data/CHANGELOG.md
CHANGED
@@ -15168,6 +15168,12 @@ module Google
|
|
15168
15168
|
# @return [Array<String>]
|
15169
15169
|
attr_accessor :annotation_contents
|
15170
15170
|
|
15171
|
+
# Output only. The annotation metadata includes structured content in the
|
15172
|
+
# current chunk.
|
15173
|
+
# Corresponds to the JSON property `annotationMetadata`
|
15174
|
+
# @return [Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaChunkAnnotationMetadata>]
|
15175
|
+
attr_accessor :annotation_metadata
|
15176
|
+
|
15171
15177
|
# Metadata of the current chunk. This field is only populated on SearchService.
|
15172
15178
|
# Search API.
|
15173
15179
|
# Corresponds to the JSON property `chunkMetadata`
|
@@ -15230,6 +15236,7 @@ module Google
|
|
15230
15236
|
# Update properties of this object
|
15231
15237
|
def update!(**args)
|
15232
15238
|
@annotation_contents = args[:annotation_contents] if args.key?(:annotation_contents)
|
15239
|
+
@annotation_metadata = args[:annotation_metadata] if args.key?(:annotation_metadata)
|
15233
15240
|
@chunk_metadata = args[:chunk_metadata] if args.key?(:chunk_metadata)
|
15234
15241
|
@content = args[:content] if args.key?(:content)
|
15235
15242
|
@data_urls = args[:data_urls] if args.key?(:data_urls)
|
@@ -15242,6 +15249,32 @@ module Google
|
|
15242
15249
|
end
|
15243
15250
|
end
|
15244
15251
|
|
15252
|
+
# The annotation metadata includes structured content in the current chunk.
|
15253
|
+
class GoogleCloudDiscoveryengineV1betaChunkAnnotationMetadata
|
15254
|
+
include Google::Apis::Core::Hashable
|
15255
|
+
|
15256
|
+
# Output only. Image id is provided if the structured content is based on an
|
15257
|
+
# image.
|
15258
|
+
# Corresponds to the JSON property `imageId`
|
15259
|
+
# @return [String]
|
15260
|
+
attr_accessor :image_id
|
15261
|
+
|
15262
|
+
# The structured content information.
|
15263
|
+
# Corresponds to the JSON property `structuredContent`
|
15264
|
+
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaChunkStructuredContent]
|
15265
|
+
attr_accessor :structured_content
|
15266
|
+
|
15267
|
+
def initialize(**args)
|
15268
|
+
update!(**args)
|
15269
|
+
end
|
15270
|
+
|
15271
|
+
# Update properties of this object
|
15272
|
+
def update!(**args)
|
15273
|
+
@image_id = args[:image_id] if args.key?(:image_id)
|
15274
|
+
@structured_content = args[:structured_content] if args.key?(:structured_content)
|
15275
|
+
end
|
15276
|
+
end
|
15277
|
+
|
15245
15278
|
# Metadata of the current chunk. This field is only populated on SearchService.
|
15246
15279
|
# Search API.
|
15247
15280
|
class GoogleCloudDiscoveryengineV1betaChunkChunkMetadata
|
@@ -15330,6 +15363,31 @@ module Google
|
|
15330
15363
|
end
|
15331
15364
|
end
|
15332
15365
|
|
15366
|
+
# The structured content information.
|
15367
|
+
class GoogleCloudDiscoveryengineV1betaChunkStructuredContent
|
15368
|
+
include Google::Apis::Core::Hashable
|
15369
|
+
|
15370
|
+
# Output only. The content of the structured content.
|
15371
|
+
# Corresponds to the JSON property `content`
|
15372
|
+
# @return [String]
|
15373
|
+
attr_accessor :content
|
15374
|
+
|
15375
|
+
# Output only. The structure type of the structured content.
|
15376
|
+
# Corresponds to the JSON property `structureType`
|
15377
|
+
# @return [String]
|
15378
|
+
attr_accessor :structure_type
|
15379
|
+
|
15380
|
+
def initialize(**args)
|
15381
|
+
update!(**args)
|
15382
|
+
end
|
15383
|
+
|
15384
|
+
# Update properties of this object
|
15385
|
+
def update!(**args)
|
15386
|
+
@content = args[:content] if args.key?(:content)
|
15387
|
+
@structure_type = args[:structure_type] if args.key?(:structure_type)
|
15388
|
+
end
|
15389
|
+
end
|
15390
|
+
|
15333
15391
|
# Cloud SQL source import data from.
|
15334
15392
|
class GoogleCloudDiscoveryengineV1betaCloudSqlSource
|
15335
15393
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DiscoveryengineV1beta
|
18
18
|
# Version of the google-apis-discoveryengine_v1beta gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.66.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.17.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250519"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -2446,6 +2446,12 @@ module Google
|
|
2446
2446
|
include Google::Apis::Core::JsonObjectSupport
|
2447
2447
|
end
|
2448
2448
|
|
2449
|
+
class GoogleCloudDiscoveryengineV1betaChunkAnnotationMetadata
|
2450
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2451
|
+
|
2452
|
+
include Google::Apis::Core::JsonObjectSupport
|
2453
|
+
end
|
2454
|
+
|
2449
2455
|
class GoogleCloudDiscoveryengineV1betaChunkChunkMetadata
|
2450
2456
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2451
2457
|
|
@@ -2464,6 +2470,12 @@ module Google
|
|
2464
2470
|
include Google::Apis::Core::JsonObjectSupport
|
2465
2471
|
end
|
2466
2472
|
|
2473
|
+
class GoogleCloudDiscoveryengineV1betaChunkStructuredContent
|
2474
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2475
|
+
|
2476
|
+
include Google::Apis::Core::JsonObjectSupport
|
2477
|
+
end
|
2478
|
+
|
2467
2479
|
class GoogleCloudDiscoveryengineV1betaCloudSqlSource
|
2468
2480
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2469
2481
|
|
@@ -8240,6 +8252,8 @@ module Google
|
|
8240
8252
|
# @private
|
8241
8253
|
class Representation < Google::Apis::Core::JsonRepresentation
|
8242
8254
|
collection :annotation_contents, as: 'annotationContents'
|
8255
|
+
collection :annotation_metadata, as: 'annotationMetadata', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaChunkAnnotationMetadata, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaChunkAnnotationMetadata::Representation
|
8256
|
+
|
8243
8257
|
property :chunk_metadata, as: 'chunkMetadata', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaChunkChunkMetadata, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaChunkChunkMetadata::Representation
|
8244
8258
|
|
8245
8259
|
property :content, as: 'content'
|
@@ -8255,6 +8269,15 @@ module Google
|
|
8255
8269
|
end
|
8256
8270
|
end
|
8257
8271
|
|
8272
|
+
class GoogleCloudDiscoveryengineV1betaChunkAnnotationMetadata
|
8273
|
+
# @private
|
8274
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
8275
|
+
property :image_id, as: 'imageId'
|
8276
|
+
property :structured_content, as: 'structuredContent', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaChunkStructuredContent, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaChunkStructuredContent::Representation
|
8277
|
+
|
8278
|
+
end
|
8279
|
+
end
|
8280
|
+
|
8258
8281
|
class GoogleCloudDiscoveryengineV1betaChunkChunkMetadata
|
8259
8282
|
# @private
|
8260
8283
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -8282,6 +8305,14 @@ module Google
|
|
8282
8305
|
end
|
8283
8306
|
end
|
8284
8307
|
|
8308
|
+
class GoogleCloudDiscoveryengineV1betaChunkStructuredContent
|
8309
|
+
# @private
|
8310
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
8311
|
+
property :content, as: 'content'
|
8312
|
+
property :structure_type, as: 'structureType'
|
8313
|
+
end
|
8314
|
+
end
|
8315
|
+
|
8285
8316
|
class GoogleCloudDiscoveryengineV1betaCloudSqlSource
|
8286
8317
|
# @private
|
8287
8318
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-discoveryengine_v1beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.66.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-discoveryengine_v1beta/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1beta/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1beta/v0.66.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1beta
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '0'
|
75
75
|
requirements: []
|
76
|
-
rubygems_version: 3.6.
|
76
|
+
rubygems_version: 3.6.9
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for Discovery Engine API V1beta
|
79
79
|
test_files: []
|