google-apis-cloudsearch_v1 0.53.0 → 0.54.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: f24d446085db7baae4d0e877cec3a146e8b595aa8a0fc8684ec0152d1990f3cb
4
- data.tar.gz: c817e6d84c475ae5f8076956a8eb94713bae26b53e1ed4a566fb28a33c98c576
3
+ metadata.gz: 71651b778f3f9d5148de67b6a1df1e6a8f07dff513aef616874ceeef2e3fe373
4
+ data.tar.gz: c1a600c41dbed13aead0b49de75abf925a0a634938b745f65a60f721d90089f7
5
5
  SHA512:
6
- metadata.gz: aa5b108a5a02c62028c654deb48a847fe0c59f8e01366987a6ccfa9a196bad0bcc26c508bdee1b2d2c506a67c1f6f76d62604900e816934178f487f45fd8a0a6
7
- data.tar.gz: 1695a0e2e993772dc4a68b4664e11cb4dd36ff082f41d7d65d1bc38f72a6dcad8f21969ae452fa34934a57b095508dffcd515e0012683d2f31ce212d0d810afa
6
+ metadata.gz: c0fa8b37760f60be9bed900d6c496f1b55682d7ab0bce2d6e26c98bb8196e37450768c5ebdcad35f626ed320dfea08dac4080ecbc815d8e856e57074c19d292d
7
+ data.tar.gz: a094b61986763e24b78e7af8cded46878cb6a31ec9d67671052bda5caa1450d613966aadbc0b7075e855ad39be1eebe2d97fb00fff0c9665dca85d5a30e30697
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-cloudsearch_v1
2
2
 
3
+ ### v0.54.0 (2023-07-09)
4
+
5
+ * Regenerated from discovery document revision 20230628
6
+
3
7
  ### v0.53.0 (2023-06-25)
4
8
 
5
9
  * Regenerated from discovery document revision 20230614
@@ -22,37 +22,6 @@ 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
-
56
25
  #
57
26
  class Action
58
27
  include Google::Apis::Core::Hashable
@@ -3781,131 +3750,6 @@ module Google
3781
3750
  end
3782
3751
  end
3783
3752
 
3784
- # The corpus specific metadata for office-type documents, from Google Docs and
3785
- # other sources. This message is passed to the scorer and beyond. Next tag: 9
3786
- class GoogleDocsMetadata
3787
- include Google::Apis::Core::Hashable
3788
-
3789
- # Next tag: 4
3790
- # Corresponds to the JSON property `aclInfo`
3791
- # @return [Google::Apis::CloudsearchV1::AclInfo]
3792
- attr_accessor :acl_info
3793
-
3794
- # The conceptual type (presentation, document, etc.) of this document.
3795
- # Corresponds to the JSON property `documentType`
3796
- # @return [String]
3797
- attr_accessor :document_type
3798
-
3799
- # The file extension of the document. NOTE: As of October 2018 this field is not
3800
- # backfilled for old documents.
3801
- # Corresponds to the JSON property `fileExtension`
3802
- # @return [String]
3803
- attr_accessor :file_extension
3804
-
3805
- # The last time this document was modified, in seconds since epoch. Only counts
3806
- # content modifications.
3807
- # Corresponds to the JSON property `lastContentModifiedTimestamp`
3808
- # @return [Fixnum]
3809
- attr_accessor :last_content_modified_timestamp
3810
-
3811
- # Contains number of subscribers for the document.
3812
- # Corresponds to the JSON property `numSubscribers`
3813
- # @return [Fixnum]
3814
- attr_accessor :num_subscribers
3815
-
3816
- # Size of untruncated viewers list.
3817
- # Corresponds to the JSON property `numViewers`
3818
- # @return [Fixnum]
3819
- attr_accessor :num_viewers
3820
-
3821
- # A message containing information about a specific result. This information is
3822
- # passed to the scorer and beyond; in particular, GWS relies on it to format the
3823
- # result in the UI. Split from GoogleDocsMetadata in case we later want to reuse
3824
- # the message.
3825
- # Corresponds to the JSON property `resultInfo`
3826
- # @return [Google::Apis::CloudsearchV1::GoogleDocsResultInfo]
3827
- attr_accessor :result_info
3828
-
3829
- # Next tag: 2
3830
- # Corresponds to the JSON property `typeInfo`
3831
- # @return [Google::Apis::CloudsearchV1::TypeInfo]
3832
- attr_accessor :type_info
3833
-
3834
- def initialize(**args)
3835
- update!(**args)
3836
- end
3837
-
3838
- # Update properties of this object
3839
- def update!(**args)
3840
- @acl_info = args[:acl_info] if args.key?(:acl_info)
3841
- @document_type = args[:document_type] if args.key?(:document_type)
3842
- @file_extension = args[:file_extension] if args.key?(:file_extension)
3843
- @last_content_modified_timestamp = args[:last_content_modified_timestamp] if args.key?(:last_content_modified_timestamp)
3844
- @num_subscribers = args[:num_subscribers] if args.key?(:num_subscribers)
3845
- @num_viewers = args[:num_viewers] if args.key?(:num_viewers)
3846
- @result_info = args[:result_info] if args.key?(:result_info)
3847
- @type_info = args[:type_info] if args.key?(:type_info)
3848
- end
3849
- end
3850
-
3851
- # A message containing information about a specific result. This information is
3852
- # passed to the scorer and beyond; in particular, GWS relies on it to format the
3853
- # result in the UI. Split from GoogleDocsMetadata in case we later want to reuse
3854
- # the message.
3855
- class GoogleDocsResultInfo
3856
- include Google::Apis::Core::Hashable
3857
-
3858
- # The SHA1 hash of the object in Drive, if any.
3859
- # Corresponds to the JSON property `attachmentSha1`
3860
- # @return [String]
3861
- attr_accessor :attachment_sha1
3862
-
3863
- # Identifies a particular object, including both Users and DirEntries. This Id
3864
- # is unique across the entire server instance, such as the production or qa
3865
- # instance.
3866
- # Corresponds to the JSON property `cosmoId`
3867
- # @return [Google::Apis::CloudsearchV1::Id]
3868
- attr_accessor :cosmo_id
3869
-
3870
- # For Cosmo objects, the Cosmo namespace the object was in. This allows
3871
- # downstream clients to identify whether a document was created in Writely or
3872
- # Kix, Presently or Punch, or whether it was uploaded from GDrive. See
3873
- # storage_cosmo.Id.NAME_SPACE for a list of all Cosmo name spaces.
3874
- # Corresponds to the JSON property `cosmoNameSpace`
3875
- # @return [Fixnum]
3876
- attr_accessor :cosmo_name_space
3877
-
3878
- # The encrypted (user-visible) id of this object. Knowing the id is sufficient
3879
- # to create a canonical URL for this document.
3880
- # Corresponds to the JSON property `encryptedId`
3881
- # @return [String]
3882
- attr_accessor :encrypted_id
3883
-
3884
- # The mimetype of the document.
3885
- # Corresponds to the JSON property `mimeType`
3886
- # @return [String]
3887
- attr_accessor :mime_type
3888
-
3889
- # The visibility indicator in the UI will be based upon this.
3890
- # Corresponds to the JSON property `shareScope`
3891
- # @return [Google::Apis::CloudsearchV1::ShareScope]
3892
- attr_accessor :share_scope
3893
-
3894
- def initialize(**args)
3895
- update!(**args)
3896
- end
3897
-
3898
- # Update properties of this object
3899
- def update!(**args)
3900
- @attachment_sha1 = args[:attachment_sha1] if args.key?(:attachment_sha1)
3901
- @cosmo_id = args[:cosmo_id] if args.key?(:cosmo_id)
3902
- @cosmo_name_space = args[:cosmo_name_space] if args.key?(:cosmo_name_space)
3903
- @encrypted_id = args[:encrypted_id] if args.key?(:encrypted_id)
3904
- @mime_type = args[:mime_type] if args.key?(:mime_type)
3905
- @share_scope = args[:share_scope] if args.key?(:share_scope)
3906
- end
3907
- end
3908
-
3909
3753
  # Used to provide a search operator for html properties. This is optional.
3910
3754
  # Search operators let users restrict the query to specific fields relevant to
3911
3755
  # the type of item being searched.
@@ -3981,53 +3825,6 @@ module Google
3981
3825
  end
3982
3826
  end
3983
3827
 
3984
- # Identifies a particular object, including both Users and DirEntries. This Id
3985
- # is unique across the entire server instance, such as the production or qa
3986
- # instance.
3987
- class Id
3988
- include Google::Apis::Core::Hashable
3989
-
3990
- # The User account in which the DirEntry was originally created. If name_space==
3991
- # GAIA, then it's the gaia_id of the user this id is referring to. This field
3992
- # should really be called the "bucket ID", not the creator ID. In some
3993
- # circumstances, such as copying a Google Docs file, a user can create an item
3994
- # in a different user's bucket, so it should not be relied upon for anything
3995
- # other than bucket location. To look up the requesting user who initially
3996
- # created item, use the `creator_id` DirEntry field instead.
3997
- # Corresponds to the JSON property `creatorUserId`
3998
- # @return [Fixnum]
3999
- attr_accessor :creator_user_id
4000
-
4001
- # The local identifier for the DirEntry (local to the creator's account).
4002
- # local_id + app_name is guaranteed to be unique within the creator account, but
4003
- # not across all User accounts. The string is case sensitive. Ignore if
4004
- # name_space==GAIA. NB For name_space==COSMO, all local_id's should be defined
4005
- # in google3/java/com/google/storage/cosmo/server/api/SpecialObjectIds.java as
4006
- # they have a special predefined meaning. See cosmo.client.CosmoIdFactory.
4007
- # createObjectId(long,String) for IMPORTANT recommendations when generating IDs.
4008
- # Corresponds to the JSON property `localId`
4009
- # @return [String]
4010
- attr_accessor :local_id
4011
-
4012
- # The name space in which this id is unique (typically the application that
4013
- # created it). Values should be drawn from the above enum, but for
4014
- # experimentation, use values greater than 1000.
4015
- # Corresponds to the JSON property `nameSpace`
4016
- # @return [Fixnum]
4017
- attr_accessor :name_space
4018
-
4019
- def initialize(**args)
4020
- update!(**args)
4021
- end
4022
-
4023
- # Update properties of this object
4024
- def update!(**args)
4025
- @creator_user_id = args[:creator_user_id] if args.key?(:creator_user_id)
4026
- @local_id = args[:local_id] if args.key?(:local_id)
4027
- @name_space = args[:name_space] if args.key?(:name_space)
4028
- end
4029
- end
4030
-
4031
3828
  #
4032
3829
  class IndexItemOptions
4033
3830
  include Google::Apis::Core::Hashable
@@ -6605,9 +6402,8 @@ module Google
6605
6402
  # translations. Set this field using the language set in browser or for the page.
6606
6403
  # In the event that the user's language preference is known, set this field to
6607
6404
  # the known user language. When specified, the documents in search results are
6608
- # biased towards the specified language. From Suggest API perspective, for 3p
6609
- # suggest this is used as a hint while making predictions to add language
6610
- # boosting.
6405
+ # biased towards the specified language. The Suggest API uses this field as a
6406
+ # hint to make better third-party autocomplete predictions.
6611
6407
  # Corresponds to the JSON property `languageCode`
6612
6408
  # @return [String]
6613
6409
  attr_accessor :language_code
@@ -7436,32 +7232,6 @@ module Google
7436
7232
  end
7437
7233
  end
7438
7234
 
7439
- #
7440
- class ShareScope
7441
- include Google::Apis::Core::Hashable
7442
-
7443
- # If scope is DOMAIN, this field contains the dasher domain, for example "google.
7444
- # com".
7445
- # Corresponds to the JSON property `domain`
7446
- # @return [String]
7447
- attr_accessor :domain
7448
-
7449
- # The scope to which the content was shared.
7450
- # Corresponds to the JSON property `scope`
7451
- # @return [String]
7452
- attr_accessor :scope
7453
-
7454
- def initialize(**args)
7455
- update!(**args)
7456
- end
7457
-
7458
- # Update properties of this object
7459
- def update!(**args)
7460
- @domain = args[:domain] if args.key?(:domain)
7461
- @scope = args[:scope] if args.key?(:scope)
7462
- end
7463
- end
7464
-
7465
7235
  # Snippet of the search result, which summarizes the content of the resulting
7466
7236
  # page.
7467
7237
  class Snippet
@@ -8128,25 +7898,6 @@ module Google
8128
7898
  end
8129
7899
  end
8130
7900
 
8131
- # Next tag: 2
8132
- class TypeInfo
8133
- include Google::Apis::Core::Hashable
8134
-
8135
- # Next tag: 2
8136
- # Corresponds to the JSON property `videoInfo`
8137
- # @return [Google::Apis::CloudsearchV1::VideoInfo]
8138
- attr_accessor :video_info
8139
-
8140
- def initialize(**args)
8141
- update!(**args)
8142
- end
8143
-
8144
- # Update properties of this object
8145
- def update!(**args)
8146
- @video_info = args[:video_info] if args.key?(:video_info)
8147
- end
8148
- end
8149
-
8150
7901
  #
8151
7902
  class UnmappedIdentity
8152
7903
  include Google::Apis::Core::Hashable
@@ -8424,26 +8175,6 @@ module Google
8424
8175
  @value = args[:value] if args.key?(:value)
8425
8176
  end
8426
8177
  end
8427
-
8428
- # Next tag: 2
8429
- class VideoInfo
8430
- include Google::Apis::Core::Hashable
8431
-
8432
- # Duration of the video in milliseconds. This field can be absent for recently
8433
- # uploaded video or inaccurate sometimes.
8434
- # Corresponds to the JSON property `duration`
8435
- # @return [Fixnum]
8436
- attr_accessor :duration
8437
-
8438
- def initialize(**args)
8439
- update!(**args)
8440
- end
8441
-
8442
- # Update properties of this object
8443
- def update!(**args)
8444
- @duration = args[:duration] if args.key?(:duration)
8445
- end
8446
- end
8447
8178
  end
8448
8179
  end
8449
8180
  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.53.0"
19
+ GEM_VERSION = "0.54.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230614"
25
+ REVISION = "20230628"
26
26
  end
27
27
  end
28
28
  end
@@ -22,12 +22,6 @@ 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
-
31
25
  class Action
32
26
  class Representation < Google::Apis::Core::JsonRepresentation; end
33
27
 
@@ -646,18 +640,6 @@ module Google
646
640
  include Google::Apis::Core::JsonObjectSupport
647
641
  end
648
642
 
649
- class GoogleDocsMetadata
650
- class Representation < Google::Apis::Core::JsonRepresentation; end
651
-
652
- include Google::Apis::Core::JsonObjectSupport
653
- end
654
-
655
- class GoogleDocsResultInfo
656
- class Representation < Google::Apis::Core::JsonRepresentation; end
657
-
658
- include Google::Apis::Core::JsonObjectSupport
659
- end
660
-
661
643
  class HtmlOperatorOptions
662
644
  class Representation < Google::Apis::Core::JsonRepresentation; end
663
645
 
@@ -676,12 +658,6 @@ module Google
676
658
  include Google::Apis::Core::JsonObjectSupport
677
659
  end
678
660
 
679
- class Id
680
- class Representation < Google::Apis::Core::JsonRepresentation; end
681
-
682
- include Google::Apis::Core::JsonObjectSupport
683
- end
684
-
685
661
  class IndexItemOptions
686
662
  class Representation < Google::Apis::Core::JsonRepresentation; end
687
663
 
@@ -1198,12 +1174,6 @@ module Google
1198
1174
  include Google::Apis::Core::JsonObjectSupport
1199
1175
  end
1200
1176
 
1201
- class ShareScope
1202
- class Representation < Google::Apis::Core::JsonRepresentation; end
1203
-
1204
- include Google::Apis::Core::JsonObjectSupport
1205
- end
1206
-
1207
1177
  class Snippet
1208
1178
  class Representation < Google::Apis::Core::JsonRepresentation; end
1209
1179
 
@@ -1336,12 +1306,6 @@ module Google
1336
1306
  include Google::Apis::Core::JsonObjectSupport
1337
1307
  end
1338
1308
 
1339
- class TypeInfo
1340
- class Representation < Google::Apis::Core::JsonRepresentation; end
1341
-
1342
- include Google::Apis::Core::JsonObjectSupport
1343
- end
1344
-
1345
1309
  class UnmappedIdentity
1346
1310
  class Representation < Google::Apis::Core::JsonRepresentation; end
1347
1311
 
@@ -1396,21 +1360,6 @@ module Google
1396
1360
  include Google::Apis::Core::JsonObjectSupport
1397
1361
  end
1398
1362
 
1399
- class VideoInfo
1400
- class Representation < Google::Apis::Core::JsonRepresentation; end
1401
-
1402
- include Google::Apis::Core::JsonObjectSupport
1403
- end
1404
-
1405
- class AclInfo
1406
- # @private
1407
- class Representation < Google::Apis::Core::JsonRepresentation
1408
- property :groups_count, as: 'groupsCount'
1409
- property :scope, as: 'scope'
1410
- property :users_count, as: 'usersCount'
1411
- end
1412
- end
1413
-
1414
1363
  class Action
1415
1364
  # @private
1416
1365
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2501,37 +2450,6 @@ module Google
2501
2450
  end
2502
2451
  end
2503
2452
 
2504
- class GoogleDocsMetadata
2505
- # @private
2506
- class Representation < Google::Apis::Core::JsonRepresentation
2507
- property :acl_info, as: 'aclInfo', class: Google::Apis::CloudsearchV1::AclInfo, decorator: Google::Apis::CloudsearchV1::AclInfo::Representation
2508
-
2509
- property :document_type, as: 'documentType'
2510
- property :file_extension, as: 'fileExtension'
2511
- property :last_content_modified_timestamp, :numeric_string => true, as: 'lastContentModifiedTimestamp'
2512
- property :num_subscribers, as: 'numSubscribers'
2513
- property :num_viewers, as: 'numViewers'
2514
- property :result_info, as: 'resultInfo', class: Google::Apis::CloudsearchV1::GoogleDocsResultInfo, decorator: Google::Apis::CloudsearchV1::GoogleDocsResultInfo::Representation
2515
-
2516
- property :type_info, as: 'typeInfo', class: Google::Apis::CloudsearchV1::TypeInfo, decorator: Google::Apis::CloudsearchV1::TypeInfo::Representation
2517
-
2518
- end
2519
- end
2520
-
2521
- class GoogleDocsResultInfo
2522
- # @private
2523
- class Representation < Google::Apis::Core::JsonRepresentation
2524
- property :attachment_sha1, as: 'attachmentSha1'
2525
- property :cosmo_id, as: 'cosmoId', class: Google::Apis::CloudsearchV1::Id, decorator: Google::Apis::CloudsearchV1::Id::Representation
2526
-
2527
- property :cosmo_name_space, as: 'cosmoNameSpace'
2528
- property :encrypted_id, as: 'encryptedId'
2529
- property :mime_type, as: 'mimeType'
2530
- property :share_scope, as: 'shareScope', class: Google::Apis::CloudsearchV1::ShareScope, decorator: Google::Apis::CloudsearchV1::ShareScope::Representation
2531
-
2532
- end
2533
- end
2534
-
2535
2453
  class HtmlOperatorOptions
2536
2454
  # @private
2537
2455
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2556,15 +2474,6 @@ module Google
2556
2474
  end
2557
2475
  end
2558
2476
 
2559
- class Id
2560
- # @private
2561
- class Representation < Google::Apis::Core::JsonRepresentation
2562
- property :creator_user_id, :numeric_string => true, as: 'creatorUserId'
2563
- property :local_id, as: 'localId'
2564
- property :name_space, as: 'nameSpace'
2565
- end
2566
- end
2567
-
2568
2477
  class IndexItemOptions
2569
2478
  # @private
2570
2479
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3530,14 +3439,6 @@ module Google
3530
3439
  end
3531
3440
  end
3532
3441
 
3533
- class ShareScope
3534
- # @private
3535
- class Representation < Google::Apis::Core::JsonRepresentation
3536
- property :domain, as: 'domain'
3537
- property :scope, as: 'scope'
3538
- end
3539
- end
3540
-
3541
3442
  class Snippet
3542
3443
  # @private
3543
3444
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3740,14 +3641,6 @@ module Google
3740
3641
  end
3741
3642
  end
3742
3643
 
3743
- class TypeInfo
3744
- # @private
3745
- class Representation < Google::Apis::Core::JsonRepresentation
3746
- property :video_info, as: 'videoInfo', class: Google::Apis::CloudsearchV1::VideoInfo, decorator: Google::Apis::CloudsearchV1::VideoInfo::Representation
3747
-
3748
- end
3749
- end
3750
-
3751
3644
  class UnmappedIdentity
3752
3645
  # @private
3753
3646
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3832,13 +3725,6 @@ module Google
3832
3725
 
3833
3726
  end
3834
3727
  end
3835
-
3836
- class VideoInfo
3837
- # @private
3838
- class Representation < Google::Apis::Core::JsonRepresentation
3839
- property :duration, as: 'duration'
3840
- end
3841
- end
3842
3728
  end
3843
3729
  end
3844
3730
  end
@@ -990,9 +990,8 @@ module Google
990
990
  # translations. Set this field using the language set in browser or for the page.
991
991
  # In the event that the user's language preference is known, set this field to
992
992
  # the known user language. When specified, the documents in search results are
993
- # biased towards the specified language. From Suggest API perspective, for 3p
994
- # suggest this is used as a hint while making predictions to add language
995
- # boosting.
993
+ # biased towards the specified language. The Suggest API uses this field as a
994
+ # hint to make better third-party autocomplete predictions.
996
995
  # @param [String] request_options_search_application_id
997
996
  # The ID generated when you create a search application using the [admin console]
998
997
  # (https://support.google.com/a/answer/9043922).
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.53.0
4
+ version: 0.54.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: 2023-07-02 00:00:00.000000000 Z
11
+ date: 2023-07-09 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.53.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudsearch_v1/v0.54.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: []