google-apis-discoveryengine_v1alpha 0.62.0 → 0.63.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: 0600c3289768ff7430d9c3b39d1bcff4ad03015c3c0c1a102ca2aaf5de19a7a4
|
4
|
+
data.tar.gz: a1e019a7f78ca38ccb37fc8fbcd2bd541fa4422092a357b69ff13fcfc4f303aa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eb4a9dbfa6e91ce4968d059b87336fd39ec92e36384fa4933083bcf1d8e289484779507493b1520c0760ae3474203df1d198b89b6170aa60f92a6dfff43eb9b9
|
7
|
+
data.tar.gz: e6c78fc4683dcfcc30bc28d16720ddd4e45ec32e3d257b1ac9e22858471c2331bbba66841500ae89176b471493737a96e83654f76599b0971e19d4ae59bb6ac9
|
data/CHANGELOG.md
CHANGED
@@ -8572,6 +8572,12 @@ module Google
|
|
8572
8572
|
# @return [Array<String>]
|
8573
8573
|
attr_accessor :annotation_contents
|
8574
8574
|
|
8575
|
+
# Output only. The annotation metadata includes structured content in the
|
8576
|
+
# current chunk.
|
8577
|
+
# Corresponds to the JSON property `annotationMetadata`
|
8578
|
+
# @return [Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaChunkAnnotationMetadata>]
|
8579
|
+
attr_accessor :annotation_metadata
|
8580
|
+
|
8575
8581
|
# Metadata of the current chunk. This field is only populated on SearchService.
|
8576
8582
|
# Search API.
|
8577
8583
|
# Corresponds to the JSON property `chunkMetadata`
|
@@ -8634,6 +8640,7 @@ module Google
|
|
8634
8640
|
# Update properties of this object
|
8635
8641
|
def update!(**args)
|
8636
8642
|
@annotation_contents = args[:annotation_contents] if args.key?(:annotation_contents)
|
8643
|
+
@annotation_metadata = args[:annotation_metadata] if args.key?(:annotation_metadata)
|
8637
8644
|
@chunk_metadata = args[:chunk_metadata] if args.key?(:chunk_metadata)
|
8638
8645
|
@content = args[:content] if args.key?(:content)
|
8639
8646
|
@data_urls = args[:data_urls] if args.key?(:data_urls)
|
@@ -8646,6 +8653,32 @@ module Google
|
|
8646
8653
|
end
|
8647
8654
|
end
|
8648
8655
|
|
8656
|
+
# The annotation metadata includes structured content in the current chunk.
|
8657
|
+
class GoogleCloudDiscoveryengineV1alphaChunkAnnotationMetadata
|
8658
|
+
include Google::Apis::Core::Hashable
|
8659
|
+
|
8660
|
+
# Output only. Image id is provided if the structured content is based on an
|
8661
|
+
# image.
|
8662
|
+
# Corresponds to the JSON property `imageId`
|
8663
|
+
# @return [String]
|
8664
|
+
attr_accessor :image_id
|
8665
|
+
|
8666
|
+
# The structured content information.
|
8667
|
+
# Corresponds to the JSON property `structuredContent`
|
8668
|
+
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaChunkStructuredContent]
|
8669
|
+
attr_accessor :structured_content
|
8670
|
+
|
8671
|
+
def initialize(**args)
|
8672
|
+
update!(**args)
|
8673
|
+
end
|
8674
|
+
|
8675
|
+
# Update properties of this object
|
8676
|
+
def update!(**args)
|
8677
|
+
@image_id = args[:image_id] if args.key?(:image_id)
|
8678
|
+
@structured_content = args[:structured_content] if args.key?(:structured_content)
|
8679
|
+
end
|
8680
|
+
end
|
8681
|
+
|
8649
8682
|
# Metadata of the current chunk. This field is only populated on SearchService.
|
8650
8683
|
# Search API.
|
8651
8684
|
class GoogleCloudDiscoveryengineV1alphaChunkChunkMetadata
|
@@ -8734,6 +8767,31 @@ module Google
|
|
8734
8767
|
end
|
8735
8768
|
end
|
8736
8769
|
|
8770
|
+
# The structured content information.
|
8771
|
+
class GoogleCloudDiscoveryengineV1alphaChunkStructuredContent
|
8772
|
+
include Google::Apis::Core::Hashable
|
8773
|
+
|
8774
|
+
# Output only. The content of the structured content.
|
8775
|
+
# Corresponds to the JSON property `content`
|
8776
|
+
# @return [String]
|
8777
|
+
attr_accessor :content
|
8778
|
+
|
8779
|
+
# Output only. The structure type of the structured content.
|
8780
|
+
# Corresponds to the JSON property `structureType`
|
8781
|
+
# @return [String]
|
8782
|
+
attr_accessor :structure_type
|
8783
|
+
|
8784
|
+
def initialize(**args)
|
8785
|
+
update!(**args)
|
8786
|
+
end
|
8787
|
+
|
8788
|
+
# Update properties of this object
|
8789
|
+
def update!(**args)
|
8790
|
+
@content = args[:content] if args.key?(:content)
|
8791
|
+
@structure_type = args[:structure_type] if args.key?(:structure_type)
|
8792
|
+
end
|
8793
|
+
end
|
8794
|
+
|
8737
8795
|
# Cloud SQL source import data from.
|
8738
8796
|
class GoogleCloudDiscoveryengineV1alphaCloudSqlSource
|
8739
8797
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DiscoveryengineV1alpha
|
18
18
|
# Version of the google-apis-discoveryengine_v1alpha gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.63.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
|
@@ -1354,6 +1354,12 @@ module Google
|
|
1354
1354
|
include Google::Apis::Core::JsonObjectSupport
|
1355
1355
|
end
|
1356
1356
|
|
1357
|
+
class GoogleCloudDiscoveryengineV1alphaChunkAnnotationMetadata
|
1358
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1359
|
+
|
1360
|
+
include Google::Apis::Core::JsonObjectSupport
|
1361
|
+
end
|
1362
|
+
|
1357
1363
|
class GoogleCloudDiscoveryengineV1alphaChunkChunkMetadata
|
1358
1364
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1359
1365
|
|
@@ -1372,6 +1378,12 @@ module Google
|
|
1372
1378
|
include Google::Apis::Core::JsonObjectSupport
|
1373
1379
|
end
|
1374
1380
|
|
1381
|
+
class GoogleCloudDiscoveryengineV1alphaChunkStructuredContent
|
1382
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1383
|
+
|
1384
|
+
include Google::Apis::Core::JsonObjectSupport
|
1385
|
+
end
|
1386
|
+
|
1375
1387
|
class GoogleCloudDiscoveryengineV1alphaCloudSqlSource
|
1376
1388
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1377
1389
|
|
@@ -6602,6 +6614,8 @@ module Google
|
|
6602
6614
|
# @private
|
6603
6615
|
class Representation < Google::Apis::Core::JsonRepresentation
|
6604
6616
|
collection :annotation_contents, as: 'annotationContents'
|
6617
|
+
collection :annotation_metadata, as: 'annotationMetadata', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaChunkAnnotationMetadata, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaChunkAnnotationMetadata::Representation
|
6618
|
+
|
6605
6619
|
property :chunk_metadata, as: 'chunkMetadata', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaChunkChunkMetadata, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaChunkChunkMetadata::Representation
|
6606
6620
|
|
6607
6621
|
property :content, as: 'content'
|
@@ -6617,6 +6631,15 @@ module Google
|
|
6617
6631
|
end
|
6618
6632
|
end
|
6619
6633
|
|
6634
|
+
class GoogleCloudDiscoveryengineV1alphaChunkAnnotationMetadata
|
6635
|
+
# @private
|
6636
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
6637
|
+
property :image_id, as: 'imageId'
|
6638
|
+
property :structured_content, as: 'structuredContent', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaChunkStructuredContent, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaChunkStructuredContent::Representation
|
6639
|
+
|
6640
|
+
end
|
6641
|
+
end
|
6642
|
+
|
6620
6643
|
class GoogleCloudDiscoveryengineV1alphaChunkChunkMetadata
|
6621
6644
|
# @private
|
6622
6645
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -6644,6 +6667,14 @@ module Google
|
|
6644
6667
|
end
|
6645
6668
|
end
|
6646
6669
|
|
6670
|
+
class GoogleCloudDiscoveryengineV1alphaChunkStructuredContent
|
6671
|
+
# @private
|
6672
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
6673
|
+
property :content, as: 'content'
|
6674
|
+
property :structure_type, as: 'structureType'
|
6675
|
+
end
|
6676
|
+
end
|
6677
|
+
|
6647
6678
|
class GoogleCloudDiscoveryengineV1alphaCloudSqlSource
|
6648
6679
|
# @private
|
6649
6680
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-discoveryengine_v1alpha
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.63.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_v1alpha/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1alpha/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1alpha/v0.63.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1alpha
|
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 V1alpha
|
79
79
|
test_files: []
|