google-apis-cloudsearch_v1 0.28.0 → 0.29.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: e2eebc552d0fe94a74b81de16aab0bc0c3cc680c0984125d133ff630914739b8
4
+ data.tar.gz: 22957acbbfc878f65889d229a9078c4248636815b890fbff3be4a8ab60634c53
5
5
  SHA512:
6
- metadata.gz: ce0d015e09cbd520391ce964231799f455b769cb8e4e5b7ebf27b69e5be5100f79d3b94f900127a410d134ad5d4404bd4112cb09adc3fdfc1c4581f429e1637b
7
- data.tar.gz: 9c0382724df003c65ca0808318e45036bd486c326f9b3a5c722087b2091f8cbdba20607bd0dd496f4795381c3318988bc50c23d100619f8b2372fbf5fee9ce99
6
+ metadata.gz: cd3598b1a8b20b57a96138fd2e3f4d7067d13f623d8a7e2171595faccf3cbf21b1ca8555897879978a388159944d8e3bcb6b146468d84100f78a769f439496e6
7
+ data.tar.gz: 5968a10d746f3cf5e910615d142ed35ebdb6079ca94e8db0e7bd588a200d48068d2ccb97573a48408004abc4f83935cc4fe47e309769513c6107967f31eadb75
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-cloudsearch_v1
2
2
 
3
+ ### v0.29.0 (2022-06-21)
4
+
5
+ * Regenerated from discovery document revision 20220613
6
+ * Regenerated using generator version 0.7.0
7
+
3
8
  ### v0.28.0 (2022-06-07)
4
9
 
5
10
  * Regenerated from discovery document revision 20220530
@@ -3460,6 +3460,11 @@ module Google
3460
3460
  # @return [Array<Google::Apis::CloudsearchV1::Name>]
3461
3461
  attr_accessor :person_names
3462
3462
 
3463
+ # The person's phone numbers
3464
+ # Corresponds to the JSON property `phoneNumbers`
3465
+ # @return [Array<Google::Apis::CloudsearchV1::PhoneNumber>]
3466
+ attr_accessor :phone_numbers
3467
+
3463
3468
  # A person's read-only photo. A picture shown next to the person's name to help
3464
3469
  # others recognize the person in search results.
3465
3470
  # Corresponds to the JSON property `photos`
@@ -3476,10 +3481,36 @@ module Google
3476
3481
  @name = args[:name] if args.key?(:name)
3477
3482
  @obfuscated_id = args[:obfuscated_id] if args.key?(:obfuscated_id)
3478
3483
  @person_names = args[:person_names] if args.key?(:person_names)
3484
+ @phone_numbers = args[:phone_numbers] if args.key?(:phone_numbers)
3479
3485
  @photos = args[:photos] if args.key?(:photos)
3480
3486
  end
3481
3487
  end
3482
3488
 
3489
+ # A person's Phone Number
3490
+ class PhoneNumber
3491
+ include Google::Apis::Core::Hashable
3492
+
3493
+ # The phone number of the person.
3494
+ # Corresponds to the JSON property `phoneNumber`
3495
+ # @return [String]
3496
+ attr_accessor :phone_number
3497
+
3498
+ #
3499
+ # Corresponds to the JSON property `type`
3500
+ # @return [String]
3501
+ attr_accessor :type
3502
+
3503
+ def initialize(**args)
3504
+ update!(**args)
3505
+ end
3506
+
3507
+ # Update properties of this object
3508
+ def update!(**args)
3509
+ @phone_number = args[:phone_number] if args.key?(:phone_number)
3510
+ @type = args[:type] if args.key?(:type)
3511
+ end
3512
+ end
3513
+
3483
3514
  # A person's photo.
3484
3515
  class Photo
3485
3516
  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.29.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.7.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220530"
25
+ REVISION = "20220613"
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
 
@@ -2085,11 +2091,21 @@ module Google
2085
2091
  property :obfuscated_id, as: 'obfuscatedId'
2086
2092
  collection :person_names, as: 'personNames', class: Google::Apis::CloudsearchV1::Name, decorator: Google::Apis::CloudsearchV1::Name::Representation
2087
2093
 
2094
+ collection :phone_numbers, as: 'phoneNumbers', class: Google::Apis::CloudsearchV1::PhoneNumber, decorator: Google::Apis::CloudsearchV1::PhoneNumber::Representation
2095
+
2088
2096
  collection :photos, as: 'photos', class: Google::Apis::CloudsearchV1::Photo, decorator: Google::Apis::CloudsearchV1::Photo::Representation
2089
2097
 
2090
2098
  end
2091
2099
  end
2092
2100
 
2101
+ class PhoneNumber
2102
+ # @private
2103
+ class Representation < Google::Apis::Core::JsonRepresentation
2104
+ property :phone_number, as: 'phoneNumber'
2105
+ property :type, as: 'type'
2106
+ end
2107
+ end
2108
+
2093
2109
  class Photo
2094
2110
  # @private
2095
2111
  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.29.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-06-27 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.6'
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.6'
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.29.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: []