google-apis-cloudsearch_v1 0.29.0 → 0.32.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: e2eebc552d0fe94a74b81de16aab0bc0c3cc680c0984125d133ff630914739b8
4
- data.tar.gz: 22957acbbfc878f65889d229a9078c4248636815b890fbff3be4a8ab60634c53
3
+ metadata.gz: aa30129977ed647aff7fd457f0b8d7b6ecf101a67202f53a994bc46fb609e0ed
4
+ data.tar.gz: f1dcdba54bdc3b3be3ea0f04e698f2141cc8c305268ec81e5ceff5de9031abbc
5
5
  SHA512:
6
- metadata.gz: cd3598b1a8b20b57a96138fd2e3f4d7067d13f623d8a7e2171595faccf3cbf21b1ca8555897879978a388159944d8e3bcb6b146468d84100f78a769f439496e6
7
- data.tar.gz: 5968a10d746f3cf5e910615d142ed35ebdb6079ca94e8db0e7bd588a200d48068d2ccb97573a48408004abc4f83935cc4fe47e309769513c6107967f31eadb75
6
+ metadata.gz: 2916e33957d350058fbd675485fe22905c3f4d5cd276a13352293b89956929912a88052f5e2d6479326b1a589a04e8a5d32daa16c19995b681845e5ae552cb97
7
+ data.tar.gz: fd0ae507704667c68343540983743099fc22945bb034a43c62de8741f63dccdbf3559abdf54fcf883f587965926a742f6cb21ecaf8a65f158f0bb764e7183e8a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Release history for google-apis-cloudsearch_v1
2
2
 
3
+ ### v0.32.0 (2022-07-21)
4
+
5
+ * Regenerated from discovery document revision 20220718
6
+
7
+ ### v0.31.0 (2022-07-13)
8
+
9
+ * Regenerated from discovery document revision 20220703
10
+ * Regenerated using generator version 0.9.0
11
+
12
+ ### v0.30.0 (2022-06-30)
13
+
14
+ * Regenerated using generator version 0.8.0
15
+
3
16
  ### v0.29.0 (2022-06-21)
4
17
 
5
18
  * Regenerated from discovery document revision 20220613
@@ -1687,18 +1687,19 @@ module Google
1687
1687
  class GSuitePrincipal
1688
1688
  include Google::Apis::Core::Hashable
1689
1689
 
1690
- # This principal represents all users of the G Suite domain of the customer.
1690
+ # This principal represents all users of the Google Workspace domain of the
1691
+ # customer.
1691
1692
  # Corresponds to the JSON property `gsuiteDomain`
1692
1693
  # @return [Boolean]
1693
1694
  attr_accessor :gsuite_domain
1694
1695
  alias_method :gsuite_domain?, :gsuite_domain
1695
1696
 
1696
- # This principal references a G Suite group account
1697
+ # This principal references a Google Workspace group name.
1697
1698
  # Corresponds to the JSON property `gsuiteGroupEmail`
1698
1699
  # @return [String]
1699
1700
  attr_accessor :gsuite_group_email
1700
1701
 
1701
- # This principal references a G Suite user account
1702
+ # This principal references a Google Workspace user account.
1702
1703
  # Corresponds to the JSON property `gsuiteUserEmail`
1703
1704
  # @return [String]
1704
1705
  attr_accessor :gsuite_user_email
@@ -2177,8 +2178,8 @@ module Google
2177
2178
  class IndexItemOptions
2178
2179
  include Google::Apis::Core::Hashable
2179
2180
 
2180
- # Specifies if the index request should allow gsuite principals that do not
2181
- # exist or are deleted in the index request.
2181
+ # Specifies if the index request should allow Google Workspace principals that
2182
+ # do not exist or are deleted.
2182
2183
  # Corresponds to the JSON property `allowUnknownGsuitePrincipals`
2183
2184
  # @return [Boolean]
2184
2185
  attr_accessor :allow_unknown_gsuite_principals
@@ -3301,6 +3302,19 @@ module Google
3301
3302
  # @return [Google::Apis::CloudsearchV1::FreshnessOptions]
3302
3303
  attr_accessor :freshness_options
3303
3304
 
3305
+ # Operators that can be used to filter suggestions. For Suggest API, only
3306
+ # operators mentioned here will be honored in the FilterOptions. Only TEXT and
3307
+ # ENUM operators are supported. NOTE: "objecttype", "type" and "mimetype" are
3308
+ # already supported. This property is to configure schema specific operators.
3309
+ # Even though this is an array, only one operator can be specified. This is an
3310
+ # array for future extensibility. Operators mapping to multiple properties
3311
+ # within the same object are not supported. If the operator spans across
3312
+ # different object types, this option has to be set once for each object
3313
+ # definition.
3314
+ # Corresponds to the JSON property `suggestionFilteringOperators`
3315
+ # @return [Array<String>]
3316
+ attr_accessor :suggestion_filtering_operators
3317
+
3304
3318
  def initialize(**args)
3305
3319
  update!(**args)
3306
3320
  end
@@ -3309,6 +3323,7 @@ module Google
3309
3323
  def update!(**args)
3310
3324
  @display_options = args[:display_options] if args.key?(:display_options)
3311
3325
  @freshness_options = args[:freshness_options] if args.key?(:freshness_options)
3326
+ @suggestion_filtering_operators = args[:suggestion_filtering_operators] if args.key?(:suggestion_filtering_operators)
3312
3327
  end
3313
3328
  end
3314
3329
 
@@ -3608,7 +3623,7 @@ module Google
3608
3623
  # @return [String]
3609
3624
  attr_accessor :group_resource_name
3610
3625
 
3611
- # This principal is a GSuite user, group or domain.
3626
+ # This principal is a Google Workspace user, group or domain.
3612
3627
  # Corresponds to the JSON property `gsuitePrincipal`
3613
3628
  # @return [Google::Apis::CloudsearchV1::GSuitePrincipal]
3614
3629
  attr_accessor :gsuite_principal
@@ -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.29.0"
19
+ GEM_VERSION = "0.32.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.7.0"
22
+ GENERATOR_VERSION = "0.9.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220613"
25
+ REVISION = "20220718"
26
26
  end
27
27
  end
28
28
  end
@@ -2043,6 +2043,7 @@ module Google
2043
2043
 
2044
2044
  property :freshness_options, as: 'freshnessOptions', class: Google::Apis::CloudsearchV1::FreshnessOptions, decorator: Google::Apis::CloudsearchV1::FreshnessOptions::Representation
2045
2045
 
2046
+ collection :suggestion_filtering_operators, as: 'suggestionFilteringOperators'
2046
2047
  end
2047
2048
  end
2048
2049
 
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.29.0
4
+ version: 0.32.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-06-27 00:00:00.000000000 Z
11
+ date: 2022-07-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.6'
19
+ version: '0.7'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.6'
29
+ version: '0.7'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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.29.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudsearch_v1/v0.32.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: []