google-apis-cloudsearch_v1 0.28.0 → 0.31.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: 963639f45c1ecc2c0825fa405336ef098d175c33d565d8430a8bb399febd82ad
4
- data.tar.gz: acaaa90bd109d1422329191534f2c5f74ff9395225a0ccf6c06d5486a457d94b
3
+ metadata.gz: be1813cd2d8b35f56279de20ed19c83a57f0964092210d7745f8de8217521d7e
4
+ data.tar.gz: e1aa448b33282b1ea1a04ce55162898e56fd24571c59ba28925434ef021f826f
5
5
  SHA512:
6
- metadata.gz: ce0d015e09cbd520391ce964231799f455b769cb8e4e5b7ebf27b69e5be5100f79d3b94f900127a410d134ad5d4404bd4112cb09adc3fdfc1c4581f429e1637b
7
- data.tar.gz: 9c0382724df003c65ca0808318e45036bd486c326f9b3a5c722087b2091f8cbdba20607bd0dd496f4795381c3318988bc50c23d100619f8b2372fbf5fee9ce99
6
+ metadata.gz: 4fa94ed231515c6e3844c76426785dffa463a9019e101a43d287cbe295519cb8977dc8d085e3a5752120eca7068d3b515aa8f6a1579ce74b848421383565d59d
7
+ data.tar.gz: 2a0221b77a15cbae7fce42183da0f49597e0d1abcd25e385fd2b521d9d1672aa1358c6cd57c7a511fdcab183b5acefd2816f1eb2e2e694cdf734feb3be514318
data/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Release history for google-apis-cloudsearch_v1
2
2
 
3
+ ### v0.31.0 (2022-07-13)
4
+
5
+ * Regenerated from discovery document revision 20220703
6
+ * Regenerated using generator version 0.9.0
7
+
8
+ ### v0.30.0 (2022-06-30)
9
+
10
+ * Regenerated using generator version 0.8.0
11
+
12
+ ### v0.29.0 (2022-06-21)
13
+
14
+ * Regenerated from discovery document revision 20220613
15
+ * Regenerated using generator version 0.7.0
16
+
3
17
  ### v0.28.0 (2022-06-07)
4
18
 
5
19
  * Regenerated from discovery document revision 20220530
@@ -3301,6 +3301,19 @@ module Google
3301
3301
  # @return [Google::Apis::CloudsearchV1::FreshnessOptions]
3302
3302
  attr_accessor :freshness_options
3303
3303
 
3304
+ # Operators that can be used to filter suggestions. For Suggest API, only
3305
+ # operators mentioned here will be honored in the FilterOptions. Only TEXT and
3306
+ # ENUM operators are supported. NOTE: "objecttype", "type" and "mimetype" are
3307
+ # already supported. This property is to configure schema specific operators.
3308
+ # Even though this is an array, only one operator can be specified. This is an
3309
+ # array for future extensibility. Operators mapping to multiple properties
3310
+ # within the same object are not supported. If the operator spans across
3311
+ # different object types, this option has to be set once for each object
3312
+ # definition.
3313
+ # Corresponds to the JSON property `suggestionFilteringOperators`
3314
+ # @return [Array<String>]
3315
+ attr_accessor :suggestion_filtering_operators
3316
+
3304
3317
  def initialize(**args)
3305
3318
  update!(**args)
3306
3319
  end
@@ -3309,6 +3322,7 @@ module Google
3309
3322
  def update!(**args)
3310
3323
  @display_options = args[:display_options] if args.key?(:display_options)
3311
3324
  @freshness_options = args[:freshness_options] if args.key?(:freshness_options)
3325
+ @suggestion_filtering_operators = args[:suggestion_filtering_operators] if args.key?(:suggestion_filtering_operators)
3312
3326
  end
3313
3327
  end
3314
3328
 
@@ -3460,6 +3474,11 @@ module Google
3460
3474
  # @return [Array<Google::Apis::CloudsearchV1::Name>]
3461
3475
  attr_accessor :person_names
3462
3476
 
3477
+ # The person's phone numbers
3478
+ # Corresponds to the JSON property `phoneNumbers`
3479
+ # @return [Array<Google::Apis::CloudsearchV1::PhoneNumber>]
3480
+ attr_accessor :phone_numbers
3481
+
3463
3482
  # A person's read-only photo. A picture shown next to the person's name to help
3464
3483
  # others recognize the person in search results.
3465
3484
  # Corresponds to the JSON property `photos`
@@ -3476,10 +3495,36 @@ module Google
3476
3495
  @name = args[:name] if args.key?(:name)
3477
3496
  @obfuscated_id = args[:obfuscated_id] if args.key?(:obfuscated_id)
3478
3497
  @person_names = args[:person_names] if args.key?(:person_names)
3498
+ @phone_numbers = args[:phone_numbers] if args.key?(:phone_numbers)
3479
3499
  @photos = args[:photos] if args.key?(:photos)
3480
3500
  end
3481
3501
  end
3482
3502
 
3503
+ # A person's Phone Number
3504
+ class PhoneNumber
3505
+ include Google::Apis::Core::Hashable
3506
+
3507
+ # The phone number of the person.
3508
+ # Corresponds to the JSON property `phoneNumber`
3509
+ # @return [String]
3510
+ attr_accessor :phone_number
3511
+
3512
+ #
3513
+ # Corresponds to the JSON property `type`
3514
+ # @return [String]
3515
+ attr_accessor :type
3516
+
3517
+ def initialize(**args)
3518
+ update!(**args)
3519
+ end
3520
+
3521
+ # Update properties of this object
3522
+ def update!(**args)
3523
+ @phone_number = args[:phone_number] if args.key?(:phone_number)
3524
+ @type = args[:type] if args.key?(:type)
3525
+ end
3526
+ end
3527
+
3483
3528
  # A person's photo.
3484
3529
  class Photo
3485
3530
  include Google::Apis::Core::Hashable
@@ -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.28.0"
19
+ GEM_VERSION = "0.31.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.5.0"
22
+ GENERATOR_VERSION = "0.9.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220530"
25
+ REVISION = "20220703"
26
26
  end
27
27
  end
28
28
  end
@@ -640,6 +640,12 @@ module Google
640
640
  include Google::Apis::Core::JsonObjectSupport
641
641
  end
642
642
 
643
+ class PhoneNumber
644
+ class Representation < Google::Apis::Core::JsonRepresentation; end
645
+
646
+ include Google::Apis::Core::JsonObjectSupport
647
+ end
648
+
643
649
  class Photo
644
650
  class Representation < Google::Apis::Core::JsonRepresentation; end
645
651
 
@@ -2037,6 +2043,7 @@ module Google
2037
2043
 
2038
2044
  property :freshness_options, as: 'freshnessOptions', class: Google::Apis::CloudsearchV1::FreshnessOptions, decorator: Google::Apis::CloudsearchV1::FreshnessOptions::Representation
2039
2045
 
2046
+ collection :suggestion_filtering_operators, as: 'suggestionFilteringOperators'
2040
2047
  end
2041
2048
  end
2042
2049
 
@@ -2085,11 +2092,21 @@ module Google
2085
2092
  property :obfuscated_id, as: 'obfuscatedId'
2086
2093
  collection :person_names, as: 'personNames', class: Google::Apis::CloudsearchV1::Name, decorator: Google::Apis::CloudsearchV1::Name::Representation
2087
2094
 
2095
+ collection :phone_numbers, as: 'phoneNumbers', class: Google::Apis::CloudsearchV1::PhoneNumber, decorator: Google::Apis::CloudsearchV1::PhoneNumber::Representation
2096
+
2088
2097
  collection :photos, as: 'photos', class: Google::Apis::CloudsearchV1::Photo, decorator: Google::Apis::CloudsearchV1::Photo::Representation
2089
2098
 
2090
2099
  end
2091
2100
  end
2092
2101
 
2102
+ class PhoneNumber
2103
+ # @private
2104
+ class Representation < Google::Apis::Core::JsonRepresentation
2105
+ property :phone_number, as: 'phoneNumber'
2106
+ property :type, as: 'type'
2107
+ end
2108
+ end
2109
+
2093
2110
  class Photo
2094
2111
  # @private
2095
2112
  class Representation < Google::Apis::Core::JsonRepresentation
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.28.0
4
+ version: 0.31.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-13 00:00:00.000000000 Z
11
+ date: 2022-07-18 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.5'
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.5'
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.28.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudsearch_v1/v0.31.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: []