google-apis-cloudsearch_v1 0.18.0 → 0.19.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: b5cff3291c662548ca94546242f0e5cad047ac71f79bf4d7ab5cdd8bd76771a0
4
- data.tar.gz: dd516c049cb24a6e4a3df96359dc5a48c0839aa490a0580efe5ad2f965da1706
3
+ metadata.gz: 16b3d47ea6c18afb6ed35176cf9a924b7d32a9aa5f58c240dc10e5fbf890ed45
4
+ data.tar.gz: 060566d790bcadee23fe39f0341eb7ba031be0b417ceb6c87b6f2dd6cf14ea7e
5
5
  SHA512:
6
- metadata.gz: a81885fccdd511f2b36041d152de4ca04c8e9f3ed7a838da95107c2249a888120be444c88990114c972c1a4ce41e4b5ea37a2de78953f922f4f412145c2d61cc
7
- data.tar.gz: 850616363c82e2cf5b28dce78d12c281e65abf64f307c6086b0c93da96e86d1bf3860dd00a2ca2e965a6a94c4e5ac14a4e403f95df19fc0509bd836dc6ee28ce
6
+ metadata.gz: 5092793fefe0b67e06314a28fe786d8865c502d64e292e88b318b7a95d406f75cfd0a191ef9f837d8c59375bebde838ee05477c77d4db7138418e7d83916a832
7
+ data.tar.gz: 6e47aaefb8b909e6d55b797d75521e2511b3b7689ba3099747673efdae2c2dc0b713d3c1360faf3a4bda390e80683223f1a4d164338cadd9e2d0943cf6ab3c8b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-cloudsearch_v1
2
2
 
3
+ ### v0.19.0 (2022-02-07)
4
+
5
+ * Regenerated from discovery document revision 20220201
6
+
3
7
  ### v0.18.0 (2022-01-31)
4
8
 
5
9
  * Regenerated from discovery document revision 20220125
@@ -22,6 +22,37 @@ module Google
22
22
  module Apis
23
23
  module CloudsearchV1
24
24
 
25
+ # Next tag: 4
26
+ class AclInfo
27
+ include Google::Apis::Core::Hashable
28
+
29
+ # Number of groups which have at least read access to the document.
30
+ # Corresponds to the JSON property `groupsCount`
31
+ # @return [Fixnum]
32
+ attr_accessor :groups_count
33
+
34
+ # The scope to which the content was shared.
35
+ # Corresponds to the JSON property `scope`
36
+ # @return [String]
37
+ attr_accessor :scope
38
+
39
+ # Number of users which have at least read access to the document.
40
+ # Corresponds to the JSON property `usersCount`
41
+ # @return [Fixnum]
42
+ attr_accessor :users_count
43
+
44
+ def initialize(**args)
45
+ update!(**args)
46
+ end
47
+
48
+ # Update properties of this object
49
+ def update!(**args)
50
+ @groups_count = args[:groups_count] if args.key?(:groups_count)
51
+ @scope = args[:scope] if args.key?(:scope)
52
+ @users_count = args[:users_count] if args.key?(:users_count)
53
+ end
54
+ end
55
+
25
56
  # Represents the settings for Cloud audit logging
26
57
  class AuditLoggingSettings
27
58
  include Google::Apis::Core::Hashable
@@ -1553,6 +1584,119 @@ module Google
1553
1584
  end
1554
1585
  end
1555
1586
 
1587
+ # The corpus specific metadata for office-type documents, from Google Docs and
1588
+ # other sources. This message is passed to the scorer and beyond. Next tag: 7
1589
+ class GoogleDocsMetadata
1590
+ include Google::Apis::Core::Hashable
1591
+
1592
+ # Next tag: 4
1593
+ # Corresponds to the JSON property `aclInfo`
1594
+ # @return [Google::Apis::CloudsearchV1::AclInfo]
1595
+ attr_accessor :acl_info
1596
+
1597
+ # The conceptual type (presentation, document, etc.) of this document.
1598
+ # Corresponds to the JSON property `documentType`
1599
+ # @return [String]
1600
+ attr_accessor :document_type
1601
+
1602
+ # The file extension of the document. NOTE: As of October 2018 this field is not
1603
+ # backfilled for old documents.
1604
+ # Corresponds to the JSON property `fileExtension`
1605
+ # @return [String]
1606
+ attr_accessor :file_extension
1607
+
1608
+ # The last time this document was modified, in seconds since epoch. Only counts
1609
+ # content modifications.
1610
+ # Corresponds to the JSON property `lastContentModifiedTimestamp`
1611
+ # @return [Fixnum]
1612
+ attr_accessor :last_content_modified_timestamp
1613
+
1614
+ # A message containing information about a specific result. This information is
1615
+ # passed to the scorer and beyond; in particular, GWS relies on it to format the
1616
+ # result in the UI. Split from GoogleDocsMetadata in case we later want to reuse
1617
+ # the message.
1618
+ # Corresponds to the JSON property `resultInfo`
1619
+ # @return [Google::Apis::CloudsearchV1::GoogleDocsResultInfo]
1620
+ attr_accessor :result_info
1621
+
1622
+ # Next tag: 2
1623
+ # Corresponds to the JSON property `typeInfo`
1624
+ # @return [Google::Apis::CloudsearchV1::TypeInfo]
1625
+ attr_accessor :type_info
1626
+
1627
+ def initialize(**args)
1628
+ update!(**args)
1629
+ end
1630
+
1631
+ # Update properties of this object
1632
+ def update!(**args)
1633
+ @acl_info = args[:acl_info] if args.key?(:acl_info)
1634
+ @document_type = args[:document_type] if args.key?(:document_type)
1635
+ @file_extension = args[:file_extension] if args.key?(:file_extension)
1636
+ @last_content_modified_timestamp = args[:last_content_modified_timestamp] if args.key?(:last_content_modified_timestamp)
1637
+ @result_info = args[:result_info] if args.key?(:result_info)
1638
+ @type_info = args[:type_info] if args.key?(:type_info)
1639
+ end
1640
+ end
1641
+
1642
+ # A message containing information about a specific result. This information is
1643
+ # passed to the scorer and beyond; in particular, GWS relies on it to format the
1644
+ # result in the UI. Split from GoogleDocsMetadata in case we later want to reuse
1645
+ # the message.
1646
+ class GoogleDocsResultInfo
1647
+ include Google::Apis::Core::Hashable
1648
+
1649
+ # The SHA1 hash of the object in Drive, if any.
1650
+ # Corresponds to the JSON property `attachmentSha1`
1651
+ # @return [String]
1652
+ attr_accessor :attachment_sha1
1653
+
1654
+ # Identifies a particular object, including both Users and DirEntries. This Id
1655
+ # is unique across the entire server instance, such as the production or qa
1656
+ # instance.
1657
+ # Corresponds to the JSON property `cosmoId`
1658
+ # @return [Google::Apis::CloudsearchV1::Id]
1659
+ attr_accessor :cosmo_id
1660
+
1661
+ # For Cosmo objects, the Cosmo namespace the object was in. This allows
1662
+ # downstream clients to identify whether a document was created in Writely or
1663
+ # Kix, Presently or Punch, or whether it was uploaded from GDrive. See
1664
+ # storage_cosmo.Id.NAME_SPACE for a list of all Cosmo name spaces.
1665
+ # Corresponds to the JSON property `cosmoNameSpace`
1666
+ # @return [Fixnum]
1667
+ attr_accessor :cosmo_name_space
1668
+
1669
+ # The encrypted (user-visible) id of this object. Knowing the id is sufficient
1670
+ # to create a canonical URL for this document.
1671
+ # Corresponds to the JSON property `encryptedId`
1672
+ # @return [String]
1673
+ attr_accessor :encrypted_id
1674
+
1675
+ # The mimetype of the document.
1676
+ # Corresponds to the JSON property `mimeType`
1677
+ # @return [String]
1678
+ attr_accessor :mime_type
1679
+
1680
+ # The visibility indicator in the UI will be based upon this.
1681
+ # Corresponds to the JSON property `shareScope`
1682
+ # @return [Google::Apis::CloudsearchV1::ShareScope]
1683
+ attr_accessor :share_scope
1684
+
1685
+ def initialize(**args)
1686
+ update!(**args)
1687
+ end
1688
+
1689
+ # Update properties of this object
1690
+ def update!(**args)
1691
+ @attachment_sha1 = args[:attachment_sha1] if args.key?(:attachment_sha1)
1692
+ @cosmo_id = args[:cosmo_id] if args.key?(:cosmo_id)
1693
+ @cosmo_name_space = args[:cosmo_name_space] if args.key?(:cosmo_name_space)
1694
+ @encrypted_id = args[:encrypted_id] if args.key?(:encrypted_id)
1695
+ @mime_type = args[:mime_type] if args.key?(:mime_type)
1696
+ @share_scope = args[:share_scope] if args.key?(:share_scope)
1697
+ end
1698
+ end
1699
+
1556
1700
  # Used to provide a search operator for html properties. This is optional.
1557
1701
  # Search operators let users restrict the query to specific fields relevant to
1558
1702
  # the type of item being searched.
@@ -1628,6 +1772,48 @@ module Google
1628
1772
  end
1629
1773
  end
1630
1774
 
1775
+ # Identifies a particular object, including both Users and DirEntries. This Id
1776
+ # is unique across the entire server instance, such as the production or qa
1777
+ # instance.
1778
+ class Id
1779
+ include Google::Apis::Core::Hashable
1780
+
1781
+ # The User account in which the DirEntry was originally created. If name_space==
1782
+ # GAIA, then it's the gaia_id of the user this id is referring to.
1783
+ # Corresponds to the JSON property `creatorUserId`
1784
+ # @return [Fixnum]
1785
+ attr_accessor :creator_user_id
1786
+
1787
+ # The local identifier for the DirEntry (local to the creator's account).
1788
+ # local_id + app_name is guaranteed to be unique within the creator account, but
1789
+ # not across all User accounts. The string is case sensitive. Ignore if
1790
+ # name_space==GAIA. NB For name_space==COSMO, all local_id's should be defined
1791
+ # in google3/java/com/google/storage/cosmo/server/api/SpecialObjectIds.java as
1792
+ # they have a special predefined meaning. See cosmo.client.CosmoIdFactory.
1793
+ # createObjectId(long,String) for IMPORTANT recommendations when generating IDs.
1794
+ # Corresponds to the JSON property `localId`
1795
+ # @return [String]
1796
+ attr_accessor :local_id
1797
+
1798
+ # The name space in which this id is unique (typically the application that
1799
+ # created it). Values should be drawn from the above enum, but for
1800
+ # experimentation, use values greater than 1000.
1801
+ # Corresponds to the JSON property `nameSpace`
1802
+ # @return [Fixnum]
1803
+ attr_accessor :name_space
1804
+
1805
+ def initialize(**args)
1806
+ update!(**args)
1807
+ end
1808
+
1809
+ # Update properties of this object
1810
+ def update!(**args)
1811
+ @creator_user_id = args[:creator_user_id] if args.key?(:creator_user_id)
1812
+ @local_id = args[:local_id] if args.key?(:local_id)
1813
+ @name_space = args[:name_space] if args.key?(:name_space)
1814
+ end
1815
+ end
1816
+
1631
1817
  #
1632
1818
  class IndexItemOptions
1633
1819
  include Google::Apis::Core::Hashable
@@ -1917,9 +2103,9 @@ module Google
1917
2103
  # Item using lexical ordering. Cloud Search Indexing won't index or delete any
1918
2104
  # queued item with a version value that is less than or equal to the version of
1919
2105
  # the currently indexed item. The maximum length for this field is 1024 bytes.
1920
- # See [this guide](https://developers.devsite.corp.google.com/cloud-search/docs/
1921
- # guides/operations) to understand how item version affects reindexing after
1922
- # delete item.
2106
+ # For information on how item version affects the deletion process, refer to [
2107
+ # Handle revisions after manual deletes](https://developers.google.com/cloud-
2108
+ # search/docs/guides/operations).
1923
2109
  # Corresponds to the JSON property `version`
1924
2110
  # NOTE: Values are automatically base64 encoded/decoded in the client library.
1925
2111
  # @return [String]
@@ -4493,6 +4679,32 @@ module Google
4493
4679
  end
4494
4680
  end
4495
4681
 
4682
+ #
4683
+ class ShareScope
4684
+ include Google::Apis::Core::Hashable
4685
+
4686
+ # If scope is DOMAIN, this field contains the dasher domain, for example "google.
4687
+ # com".
4688
+ # Corresponds to the JSON property `domain`
4689
+ # @return [String]
4690
+ attr_accessor :domain
4691
+
4692
+ # The scope to which the content was shared.
4693
+ # Corresponds to the JSON property `scope`
4694
+ # @return [String]
4695
+ attr_accessor :scope
4696
+
4697
+ def initialize(**args)
4698
+ update!(**args)
4699
+ end
4700
+
4701
+ # Update properties of this object
4702
+ def update!(**args)
4703
+ @domain = args[:domain] if args.key?(:domain)
4704
+ @scope = args[:scope] if args.key?(:scope)
4705
+ end
4706
+ end
4707
+
4496
4708
  # Snippet of the search result, which summarizes the content of the resulting
4497
4709
  # page.
4498
4710
  class Snippet
@@ -5092,6 +5304,25 @@ module Google
5092
5304
  end
5093
5305
  end
5094
5306
 
5307
+ # Next tag: 2
5308
+ class TypeInfo
5309
+ include Google::Apis::Core::Hashable
5310
+
5311
+ # Next tag: 2
5312
+ # Corresponds to the JSON property `videoInfo`
5313
+ # @return [Google::Apis::CloudsearchV1::VideoInfo]
5314
+ attr_accessor :video_info
5315
+
5316
+ def initialize(**args)
5317
+ update!(**args)
5318
+ end
5319
+
5320
+ # Update properties of this object
5321
+ def update!(**args)
5322
+ @video_info = args[:video_info] if args.key?(:video_info)
5323
+ end
5324
+ end
5325
+
5095
5326
  #
5096
5327
  class UnmappedIdentity
5097
5328
  include Google::Apis::Core::Hashable
@@ -5336,6 +5567,26 @@ module Google
5336
5567
  @value = args[:value] if args.key?(:value)
5337
5568
  end
5338
5569
  end
5570
+
5571
+ # Next tag: 2
5572
+ class VideoInfo
5573
+ include Google::Apis::Core::Hashable
5574
+
5575
+ # Duration of the video in milliseconds. This field can be absent for recently
5576
+ # uploaded video or inaccurate sometimes.
5577
+ # Corresponds to the JSON property `duration`
5578
+ # @return [Fixnum]
5579
+ attr_accessor :duration
5580
+
5581
+ def initialize(**args)
5582
+ update!(**args)
5583
+ end
5584
+
5585
+ # Update properties of this object
5586
+ def update!(**args)
5587
+ @duration = args[:duration] if args.key?(:duration)
5588
+ end
5589
+ end
5339
5590
  end
5340
5591
  end
5341
5592
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CloudsearchV1
18
18
  # Version of the google-apis-cloudsearch_v1 gem
19
- GEM_VERSION = "0.18.0"
19
+ GEM_VERSION = "0.19.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220125"
25
+ REVISION = "20220201"
26
26
  end
27
27
  end
28
28
  end
@@ -22,6 +22,12 @@ module Google
22
22
  module Apis
23
23
  module CloudsearchV1
24
24
 
25
+ class AclInfo
26
+ class Representation < Google::Apis::Core::JsonRepresentation; end
27
+
28
+ include Google::Apis::Core::JsonObjectSupport
29
+ end
30
+
25
31
  class AuditLoggingSettings
26
32
  class Representation < Google::Apis::Core::JsonRepresentation; end
27
33
 
@@ -340,6 +346,18 @@ module Google
340
346
  include Google::Apis::Core::JsonObjectSupport
341
347
  end
342
348
 
349
+ class GoogleDocsMetadata
350
+ class Representation < Google::Apis::Core::JsonRepresentation; end
351
+
352
+ include Google::Apis::Core::JsonObjectSupport
353
+ end
354
+
355
+ class GoogleDocsResultInfo
356
+ class Representation < Google::Apis::Core::JsonRepresentation; end
357
+
358
+ include Google::Apis::Core::JsonObjectSupport
359
+ end
360
+
343
361
  class HtmlOperatorOptions
344
362
  class Representation < Google::Apis::Core::JsonRepresentation; end
345
363
 
@@ -358,6 +376,12 @@ module Google
358
376
  include Google::Apis::Core::JsonObjectSupport
359
377
  end
360
378
 
379
+ class Id
380
+ class Representation < Google::Apis::Core::JsonRepresentation; end
381
+
382
+ include Google::Apis::Core::JsonObjectSupport
383
+ end
384
+
361
385
  class IndexItemOptions
362
386
  class Representation < Google::Apis::Core::JsonRepresentation; end
363
387
 
@@ -808,6 +832,12 @@ module Google
808
832
  include Google::Apis::Core::JsonObjectSupport
809
833
  end
810
834
 
835
+ class ShareScope
836
+ class Representation < Google::Apis::Core::JsonRepresentation; end
837
+
838
+ include Google::Apis::Core::JsonObjectSupport
839
+ end
840
+
811
841
  class Snippet
812
842
  class Representation < Google::Apis::Core::JsonRepresentation; end
813
843
 
@@ -934,6 +964,12 @@ module Google
934
964
  include Google::Apis::Core::JsonObjectSupport
935
965
  end
936
966
 
967
+ class TypeInfo
968
+ class Representation < Google::Apis::Core::JsonRepresentation; end
969
+
970
+ include Google::Apis::Core::JsonObjectSupport
971
+ end
972
+
937
973
  class UnmappedIdentity
938
974
  class Representation < Google::Apis::Core::JsonRepresentation; end
939
975
 
@@ -982,6 +1018,21 @@ module Google
982
1018
  include Google::Apis::Core::JsonObjectSupport
983
1019
  end
984
1020
 
1021
+ class VideoInfo
1022
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1023
+
1024
+ include Google::Apis::Core::JsonObjectSupport
1025
+ end
1026
+
1027
+ class AclInfo
1028
+ # @private
1029
+ class Representation < Google::Apis::Core::JsonRepresentation
1030
+ property :groups_count, as: 'groupsCount'
1031
+ property :scope, as: 'scope'
1032
+ property :users_count, as: 'usersCount'
1033
+ end
1034
+ end
1035
+
985
1036
  class AuditLoggingSettings
986
1037
  # @private
987
1038
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1443,6 +1494,35 @@ module Google
1443
1494
  end
1444
1495
  end
1445
1496
 
1497
+ class GoogleDocsMetadata
1498
+ # @private
1499
+ class Representation < Google::Apis::Core::JsonRepresentation
1500
+ property :acl_info, as: 'aclInfo', class: Google::Apis::CloudsearchV1::AclInfo, decorator: Google::Apis::CloudsearchV1::AclInfo::Representation
1501
+
1502
+ property :document_type, as: 'documentType'
1503
+ property :file_extension, as: 'fileExtension'
1504
+ property :last_content_modified_timestamp, :numeric_string => true, as: 'lastContentModifiedTimestamp'
1505
+ property :result_info, as: 'resultInfo', class: Google::Apis::CloudsearchV1::GoogleDocsResultInfo, decorator: Google::Apis::CloudsearchV1::GoogleDocsResultInfo::Representation
1506
+
1507
+ property :type_info, as: 'typeInfo', class: Google::Apis::CloudsearchV1::TypeInfo, decorator: Google::Apis::CloudsearchV1::TypeInfo::Representation
1508
+
1509
+ end
1510
+ end
1511
+
1512
+ class GoogleDocsResultInfo
1513
+ # @private
1514
+ class Representation < Google::Apis::Core::JsonRepresentation
1515
+ property :attachment_sha1, as: 'attachmentSha1'
1516
+ property :cosmo_id, as: 'cosmoId', class: Google::Apis::CloudsearchV1::Id, decorator: Google::Apis::CloudsearchV1::Id::Representation
1517
+
1518
+ property :cosmo_name_space, as: 'cosmoNameSpace'
1519
+ property :encrypted_id, as: 'encryptedId'
1520
+ property :mime_type, as: 'mimeType'
1521
+ property :share_scope, as: 'shareScope', class: Google::Apis::CloudsearchV1::ShareScope, decorator: Google::Apis::CloudsearchV1::ShareScope::Representation
1522
+
1523
+ end
1524
+ end
1525
+
1446
1526
  class HtmlOperatorOptions
1447
1527
  # @private
1448
1528
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1467,6 +1547,15 @@ module Google
1467
1547
  end
1468
1548
  end
1469
1549
 
1550
+ class Id
1551
+ # @private
1552
+ class Representation < Google::Apis::Core::JsonRepresentation
1553
+ property :creator_user_id, :numeric_string => true, as: 'creatorUserId'
1554
+ property :local_id, as: 'localId'
1555
+ property :name_space, as: 'nameSpace'
1556
+ end
1557
+ end
1558
+
1470
1559
  class IndexItemOptions
1471
1560
  # @private
1472
1561
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2289,6 +2378,14 @@ module Google
2289
2378
  end
2290
2379
  end
2291
2380
 
2381
+ class ShareScope
2382
+ # @private
2383
+ class Representation < Google::Apis::Core::JsonRepresentation
2384
+ property :domain, as: 'domain'
2385
+ property :scope, as: 'scope'
2386
+ end
2387
+ end
2388
+
2292
2389
  class Snippet
2293
2390
  # @private
2294
2391
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2474,6 +2571,14 @@ module Google
2474
2571
  end
2475
2572
  end
2476
2573
 
2574
+ class TypeInfo
2575
+ # @private
2576
+ class Representation < Google::Apis::Core::JsonRepresentation
2577
+ property :video_info, as: 'videoInfo', class: Google::Apis::CloudsearchV1::VideoInfo, decorator: Google::Apis::CloudsearchV1::VideoInfo::Representation
2578
+
2579
+ end
2580
+ end
2581
+
2477
2582
  class UnmappedIdentity
2478
2583
  # @private
2479
2584
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2549,6 +2654,13 @@ module Google
2549
2654
 
2550
2655
  end
2551
2656
  end
2657
+
2658
+ class VideoInfo
2659
+ # @private
2660
+ class Representation < Google::Apis::Core::JsonRepresentation
2661
+ property :duration, as: 'duration'
2662
+ end
2663
+ end
2552
2664
  end
2553
2665
  end
2554
2666
  end
@@ -382,10 +382,10 @@ module Google
382
382
  # compares the Item version in the index to the version of the queued Item using
383
383
  # lexical ordering. Cloud Search Indexing won't delete any queued item with a
384
384
  # version value that is less than or equal to the version of the currently
385
- # indexed item. The maximum length for this field is 1024 bytes. See [this guide]
386
- # (https://developers.devsite.corp.google.com/cloud-search/docs/guides/
387
- # operations) to understand how item version affects reindexing after delete
388
- # item.
385
+ # indexed item. The maximum length for this field is 1024 bytes. For information
386
+ # on how item version affects the deletion process, refer to [Handle revisions
387
+ # after manual deletes](https://developers.google.com/cloud-search/docs/guides/
388
+ # operations).
389
389
  # @param [String] fields
390
390
  # Selector specifying which fields to include in a partial response.
391
391
  # @param [String] quota_user
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-cloudsearch_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.18.0
4
+ version: 0.19.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: 2022-02-07 00:00:00.000000000 Z
11
+ date: 2022-02-14 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-cloudsearch_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudsearch_v1/v0.18.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudsearch_v1/v0.19.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudsearch_v1
63
63
  post_install_message:
64
64
  rdoc_options: []