google-apis-people_v1 0.14.0 → 0.18.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 474e9e451d75217f8758710b40b6dc05c24b4657ce23aafb7638568a82ac6de2
|
4
|
+
data.tar.gz: a91be56d3973d68bf7b30d199406cbded1e990600a8f8e21fff3c8e3a46a6aca
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 35fd4be9afc29988c422a6977586578bf028e7d6682597e91d61eda96fbcada028bb2f84c6c1628248098a0cecfa2361d49bde6d28686fa8ec39e31f761de9ec
|
7
|
+
data.tar.gz: '039c289acabe9305bc748afb5767c8b6189e84333f76cabb1ca8e220cce50e3e68ab10b0a2aab3da398ad4bf65d9ed67041f323f5bd2fd22290bbec565ef7ed0'
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Release history for google-apis-people_v1
|
2
2
|
|
3
|
+
### v0.18.0 (2021-07-28)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20210726
|
6
|
+
|
7
|
+
### v0.17.0 (2021-07-22)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20210720
|
10
|
+
|
11
|
+
### v0.16.0 (2021-07-16)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20210714
|
14
|
+
|
15
|
+
### v0.15.0 (2021-06-29)
|
16
|
+
|
17
|
+
* Regenerated using generator version 0.4.0
|
18
|
+
|
3
19
|
### v0.14.0 (2021-06-25)
|
4
20
|
|
5
21
|
* Regenerated from discovery document revision 20210623
|
@@ -1005,8 +1005,7 @@ module Google
|
|
1005
1005
|
class FieldMetadata
|
1006
1006
|
include Google::Apis::Core::Hashable
|
1007
1007
|
|
1008
|
-
# True if the field is the primary field
|
1009
|
-
# field.
|
1008
|
+
# True if the field is the primary field for the person.
|
1010
1009
|
# Corresponds to the JSON property `primary`
|
1011
1010
|
# @return [Boolean]
|
1012
1011
|
attr_accessor :primary
|
@@ -1017,6 +1016,12 @@ module Google
|
|
1017
1016
|
# @return [Google::Apis::PeopleV1::Source]
|
1018
1017
|
attr_accessor :source
|
1019
1018
|
|
1019
|
+
# True if the field is the primary field for the source.
|
1020
|
+
# Corresponds to the JSON property `sourcePrimary`
|
1021
|
+
# @return [Boolean]
|
1022
|
+
attr_accessor :source_primary
|
1023
|
+
alias_method :source_primary?, :source_primary
|
1024
|
+
|
1020
1025
|
# Output only. True if the field is verified; false if the field is unverified.
|
1021
1026
|
# A verified field is typically a name, email address, phone number, or website
|
1022
1027
|
# that has been confirmed to be owned by the person.
|
@@ -1033,6 +1038,7 @@ module Google
|
|
1033
1038
|
def update!(**args)
|
1034
1039
|
@primary = args[:primary] if args.key?(:primary)
|
1035
1040
|
@source = args[:source] if args.key?(:source)
|
1041
|
+
@source_primary = args[:source_primary] if args.key?(:source_primary)
|
1036
1042
|
@verified = args[:verified] if args.key?(:verified)
|
1037
1043
|
end
|
1038
1044
|
end
|
@@ -1934,12 +1940,9 @@ module Google
|
|
1934
1940
|
# @return [Array<Google::Apis::PeopleV1::CoverPhoto>]
|
1935
1941
|
attr_accessor :cover_photos
|
1936
1942
|
|
1937
|
-
# The person's email addresses. For
|
1938
|
-
#
|
1939
|
-
#
|
1940
|
-
# people/listDirectoryPeople) the number of email addresses is limited to 100.
|
1941
|
-
# If a Person has more email addresses the entire set can be obtained by calling
|
1942
|
-
# ['people.get'](/people/api/rest/v1/people/get).
|
1943
|
+
# The person's email addresses. For `people.connections.list` and `otherContacts.
|
1944
|
+
# list` the number of email addresses is limited to 100. If a Person has more
|
1945
|
+
# email addresses the entire set can be obtained by calling GetPeople.
|
1943
1946
|
# Corresponds to the JSON property `emailAddresses`
|
1944
1947
|
# @return [Array<Google::Apis::PeopleV1::EmailAddress>]
|
1945
1948
|
attr_accessor :email_addresses
|
@@ -2025,12 +2028,9 @@ module Google
|
|
2025
2028
|
# @return [Array<Google::Apis::PeopleV1::Organization>]
|
2026
2029
|
attr_accessor :organizations
|
2027
2030
|
|
2028
|
-
# The person's phone numbers. For
|
2029
|
-
#
|
2030
|
-
#
|
2031
|
-
# people/listDirectoryPeople) the number of phone numbers is limited to 100. If
|
2032
|
-
# a Person has more phone numbers the entire set can be obtained by calling ['
|
2033
|
-
# people.get'](/people/api/rest/v1/people/get).
|
2031
|
+
# The person's phone numbers. For `people.connections.list` and `otherContacts.
|
2032
|
+
# list` the number of phone numbers is limited to 100. If a Person has more
|
2033
|
+
# phone numbers the entire set can be obtained by calling GetPeople.
|
2034
2034
|
# Corresponds to the JSON property `phoneNumbers`
|
2035
2035
|
# @return [Array<Google::Apis::PeopleV1::PhoneNumber>]
|
2036
2036
|
attr_accessor :phone_numbers
|
@@ -2145,10 +2145,8 @@ module Google
|
|
2145
2145
|
class PersonMetadata
|
2146
2146
|
include Google::Apis::Core::Hashable
|
2147
2147
|
|
2148
|
-
# Output only. True if the person resource has been deleted. Populated only for
|
2149
|
-
#
|
2150
|
-
# otherContacts.list`](/people/api/rest/v1/otherContacts/list) requests that
|
2151
|
-
# include a sync token.
|
2148
|
+
# Output only. True if the person resource has been deleted. Populated only for `
|
2149
|
+
# people.connections.list` and `otherContacts.list` sync requests.
|
2152
2150
|
# Corresponds to the JSON property `deleted`
|
2153
2151
|
# @return [Boolean]
|
2154
2152
|
attr_accessor :deleted
|
@@ -2166,10 +2164,9 @@ module Google
|
|
2166
2164
|
attr_accessor :object_type
|
2167
2165
|
|
2168
2166
|
# Output only. Any former resource names this person has had. Populated only for
|
2169
|
-
#
|
2170
|
-
#
|
2171
|
-
#
|
2172
|
-
# verified phone number, or profile URL.
|
2167
|
+
# `people.connections.list` requests that include a sync token. The resource
|
2168
|
+
# name may change when adding or removing fields that link a contact and profile
|
2169
|
+
# such as a verified email, verified phone number, or profile URL.
|
2173
2170
|
# Corresponds to the JSON property `previousResourceNames`
|
2174
2171
|
# @return [Array<String>]
|
2175
2172
|
attr_accessor :previous_resource_names
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module PeopleV1
|
18
18
|
# Version of the google-apis-people_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.18.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210726"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -736,6 +736,7 @@ module Google
|
|
736
736
|
property :primary, as: 'primary'
|
737
737
|
property :source, as: 'source', class: Google::Apis::PeopleV1::Source, decorator: Google::Apis::PeopleV1::Source::Representation
|
738
738
|
|
739
|
+
property :source_primary, as: 'sourcePrimary'
|
739
740
|
property :verified, as: 'verified'
|
740
741
|
end
|
741
742
|
end
|
@@ -352,34 +352,54 @@ module Google
|
|
352
352
|
end
|
353
353
|
|
354
354
|
# List all "Other contacts", that is contacts that are not in a contact group. "
|
355
|
-
# Other contacts" are typically auto created contacts from interactions.
|
355
|
+
# Other contacts" are typically auto created contacts from interactions. Sync
|
356
|
+
# tokens expire 7 days after the full sync. A request with an expired sync token
|
357
|
+
# will result in a 410 error. In the case of such an error clients should make a
|
358
|
+
# full sync request without a `sync_token`. The first page of a full sync
|
359
|
+
# request has an additional quota. If the quota is exceeded, a 429 error will be
|
360
|
+
# returned. This quota is fixed and can not be increased. When the `sync_token`
|
361
|
+
# is specified, resources deleted since the last sync will be returned as a
|
362
|
+
# person with `PersonMetadata.deleted` set to true. When the `page_token` or `
|
363
|
+
# sync_token` is specified, all other request parameters must match the first
|
364
|
+
# call. Writes may have a propagation delay of several minutes for sync requests.
|
365
|
+
# Incremental syncs are not intended for read-after-write use cases. See
|
366
|
+
# example usage at [List the user's other contacts that have changed](/people/v1/
|
367
|
+
# other-contacts#list_the_users_other_contacts_that_have_changed).
|
356
368
|
# @param [Fixnum] page_size
|
357
369
|
# Optional. The number of "Other contacts" to include in the response. Valid
|
358
370
|
# values are between 1 and 1000, inclusive. Defaults to 100 if not set or set to
|
359
371
|
# 0.
|
360
372
|
# @param [String] page_token
|
361
|
-
# Optional. A page token, received from a previous `
|
373
|
+
# Optional. A page token, received from a previous response `next_page_token`.
|
362
374
|
# Provide this to retrieve the subsequent page. When paginating, all other
|
363
|
-
# parameters provided to `
|
364
|
-
# the page token.
|
375
|
+
# parameters provided to `otherContacts.list` must match the first call that
|
376
|
+
# provided the page token.
|
365
377
|
# @param [String] read_mask
|
366
378
|
# Required. A field mask to restrict which fields on each person are returned.
|
367
379
|
# Multiple fields can be specified by separating them with commas. Valid values
|
368
380
|
# are: * emailAddresses * metadata * names * phoneNumbers * photos
|
369
381
|
# @param [Boolean] request_sync_token
|
370
|
-
# Optional. Whether the response should
|
371
|
-
# used to get
|
372
|
-
#
|
373
|
-
#
|
382
|
+
# Optional. Whether the response should return `next_sync_token` on the last
|
383
|
+
# page of results. It can be used to get incremental changes since the last
|
384
|
+
# request by setting it on the request `sync_token`. More details about sync
|
385
|
+
# behavior at `otherContacts.list`.
|
386
|
+
# @param [Array<String>, String] sources
|
387
|
+
# Optional. A mask of what source types to return. Defaults to
|
388
|
+
# READ_SOURCE_TYPE_CONTACT if not set. If READ_SOURCE_TYPE_CONTACT is used,
|
389
|
+
# valid values for the readMask are: * emailAddresses * metadata * names *
|
390
|
+
# phoneNumbers * photos If READ_SOURCE_TYPE_PROFILE is used, valid values for
|
391
|
+
# the readMask are: * addresses * ageRanges * biographies * birthdays *
|
392
|
+
# calendarUrls * clientData * coverPhotos * emailAddresses * events *
|
393
|
+
# externalIds * genders * imClients * interests * locales * locations *
|
394
|
+
# memberships * metadata * miscKeywords * names * nicknames * occupations *
|
395
|
+
# organizations * phoneNumbers * photos * relations * sipAddresses * skills *
|
396
|
+
# urls * userDefined
|
374
397
|
# @param [String] sync_token
|
375
|
-
# Optional. A sync token, received from a previous `
|
398
|
+
# Optional. A sync token, received from a previous response `next_sync_token`
|
376
399
|
# Provide this to retrieve only the resources changed since the last request.
|
377
|
-
#
|
378
|
-
# the
|
379
|
-
#
|
380
|
-
# people#Person.PersonMetadata.FIELDS.deleted) set to true. When the `syncToken`
|
381
|
-
# is specified, all other parameters provided to `ListOtherContacts` must match
|
382
|
-
# the call that provided the sync token.
|
400
|
+
# When syncing, all other parameters provided to `otherContacts.list` must match
|
401
|
+
# the first call that provided the sync token. More details about sync behavior
|
402
|
+
# at `otherContacts.list`.
|
383
403
|
# @param [String] fields
|
384
404
|
# Selector specifying which fields to include in a partial response.
|
385
405
|
# @param [String] quota_user
|
@@ -397,7 +417,7 @@ module Google
|
|
397
417
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
398
418
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
399
419
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
400
|
-
def list_other_contacts(page_size: nil, page_token: nil, read_mask: nil, request_sync_token: nil, sync_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
420
|
+
def list_other_contacts(page_size: nil, page_token: nil, read_mask: nil, request_sync_token: nil, sources: nil, sync_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
401
421
|
command = make_simple_command(:get, 'v1/otherContacts', options)
|
402
422
|
command.response_representation = Google::Apis::PeopleV1::ListOtherContactsResponse::Representation
|
403
423
|
command.response_class = Google::Apis::PeopleV1::ListOtherContactsResponse
|
@@ -405,6 +425,7 @@ module Google
|
|
405
425
|
command.query['pageToken'] = page_token unless page_token.nil?
|
406
426
|
command.query['readMask'] = read_mask unless read_mask.nil?
|
407
427
|
command.query['requestSyncToken'] = request_sync_token unless request_sync_token.nil?
|
428
|
+
command.query['sources'] = sources unless sources.nil?
|
408
429
|
command.query['syncToken'] = sync_token unless sync_token.nil?
|
409
430
|
command.query['fields'] = fields unless fields.nil?
|
410
431
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
@@ -681,8 +702,7 @@ module Google
|
|
681
702
|
# get information about the authenticated user, specify `people/me`. - To get
|
682
703
|
# information about a google account, specify `people/`account_id``. - To get
|
683
704
|
# information about a contact, specify the resource name that identifies the
|
684
|
-
# contact as returned by
|
685
|
-
# connections/list).
|
705
|
+
# contact as returned by `people.connections.list`.
|
686
706
|
# @param [String] person_fields
|
687
707
|
# Required. A field mask to restrict which fields on the person are returned.
|
688
708
|
# Multiple fields can be specified by separating them with commas. Valid values
|
@@ -749,9 +769,8 @@ module Google
|
|
749
769
|
# resourceNames=<name2>&... - To get information about the authenticated user,
|
750
770
|
# specify `people/me`. - To get information about a google account, specify `
|
751
771
|
# people/`account_id``. - To get information about a contact, specify the
|
752
|
-
# resource name that identifies the contact as returned by
|
753
|
-
# list
|
754
|
-
# resource names.
|
772
|
+
# resource name that identifies the contact as returned by `people.connections.
|
773
|
+
# list`. There is a maximum of 200 resource names.
|
755
774
|
# @param [Array<String>, String] sources
|
756
775
|
# Optional. A mask of what source types to return. Defaults to
|
757
776
|
# READ_SOURCE_TYPE_CONTACT and READ_SOURCE_TYPE_PROFILE if not set.
|
@@ -786,7 +805,14 @@ module Google
|
|
786
805
|
end
|
787
806
|
|
788
807
|
# Provides a list of domain profiles and domain contacts in the authenticated
|
789
|
-
# user's domain directory.
|
808
|
+
# user's domain directory. When the `sync_token` is specified, resources deleted
|
809
|
+
# since the last sync will be returned as a person with `PersonMetadata.deleted`
|
810
|
+
# set to true. When the `page_token` or `sync_token` is specified, all other
|
811
|
+
# request parameters must match the first call. Writes may have a propagation
|
812
|
+
# delay of several minutes for sync requests. Incremental syncs are not intended
|
813
|
+
# for read-after-write use cases. See example usage at [List the directory
|
814
|
+
# people that have changed](/people/v1/directory#
|
815
|
+
# list_the_directory_people_that_have_changed).
|
790
816
|
# @param [Array<String>, String] merge_sources
|
791
817
|
# Optional. Additional data to merge into the directory sources if they are
|
792
818
|
# connected through verified join keys such as email addresses or phone numbers.
|
@@ -794,10 +820,10 @@ module Google
|
|
794
820
|
# Optional. The number of people to include in the response. Valid values are
|
795
821
|
# between 1 and 1000, inclusive. Defaults to 100 if not set or set to 0.
|
796
822
|
# @param [String] page_token
|
797
|
-
# Optional. A page token, received from a previous `
|
823
|
+
# Optional. A page token, received from a previous response `next_page_token`.
|
798
824
|
# Provide this to retrieve the subsequent page. When paginating, all other
|
799
|
-
# parameters provided to `
|
800
|
-
# the page token.
|
825
|
+
# parameters provided to `people.listDirectoryPeople` must match the first call
|
826
|
+
# that provided the page token.
|
801
827
|
# @param [String] read_mask
|
802
828
|
# Required. A field mask to restrict which fields on each person are returned.
|
803
829
|
# Multiple fields can be specified by separating them with commas. Valid values
|
@@ -807,16 +833,17 @@ module Google
|
|
807
833
|
# miscKeywords * names * nicknames * occupations * organizations * phoneNumbers *
|
808
834
|
# photos * relations * sipAddresses * skills * urls * userDefined
|
809
835
|
# @param [Boolean] request_sync_token
|
810
|
-
# Optional. Whether the response should
|
811
|
-
#
|
812
|
-
#
|
836
|
+
# Optional. Whether the response should return `next_sync_token`. It can be used
|
837
|
+
# to get incremental changes since the last request by setting it on the request
|
838
|
+
# `sync_token`. More details about sync behavior at `people.listDirectoryPeople`.
|
813
839
|
# @param [Array<String>, String] sources
|
814
840
|
# Required. Directory sources to return.
|
815
841
|
# @param [String] sync_token
|
816
|
-
# Optional. A sync token, received from a previous `
|
842
|
+
# Optional. A sync token, received from a previous response `next_sync_token`
|
817
843
|
# Provide this to retrieve only the resources changed since the last request.
|
818
|
-
# When syncing, all other parameters provided to `
|
819
|
-
# match the call that provided the sync token.
|
844
|
+
# When syncing, all other parameters provided to `people.listDirectoryPeople`
|
845
|
+
# must match the first call that provided the sync token. More details about
|
846
|
+
# sync behavior at `people.listDirectoryPeople`.
|
820
847
|
# @param [String] fields
|
821
848
|
# Selector specifying which fields to include in a partial response.
|
822
849
|
# @param [String] quota_user
|
@@ -914,9 +941,9 @@ module Google
|
|
914
941
|
# Optional. The number of people to include in the response. Valid values are
|
915
942
|
# between 1 and 500, inclusive. Defaults to 100 if not set or set to 0.
|
916
943
|
# @param [String] page_token
|
917
|
-
# Optional. A page token, received from a previous `
|
944
|
+
# Optional. A page token, received from a previous response `next_page_token`.
|
918
945
|
# Provide this to retrieve the subsequent page. When paginating, all other
|
919
|
-
# parameters provided to `SearchDirectoryPeople` must match the call that
|
946
|
+
# parameters provided to `SearchDirectoryPeople` must match the first call that
|
920
947
|
# provided the page token.
|
921
948
|
# @param [String] query
|
922
949
|
# Required. Prefix query that matches fields in the person. Does NOT use the
|
@@ -1065,12 +1092,19 @@ module Google
|
|
1065
1092
|
execute_or_queue_command(command, &block)
|
1066
1093
|
end
|
1067
1094
|
|
1068
|
-
# Provides a list of the authenticated user's contacts.
|
1069
|
-
#
|
1070
|
-
#
|
1071
|
-
#
|
1072
|
-
#
|
1073
|
-
#
|
1095
|
+
# Provides a list of the authenticated user's contacts. Sync tokens expire 7
|
1096
|
+
# days after the full sync. A request with an expired sync token will result in
|
1097
|
+
# a 410 error. In the case of such an error clients should make a full sync
|
1098
|
+
# request without a `sync_token`. The first page of a full sync request has an
|
1099
|
+
# additional quota. If the quota is exceeded, a 429 error will be returned. This
|
1100
|
+
# quota is fixed and can not be increased. When the `sync_token` is specified,
|
1101
|
+
# resources deleted since the last sync will be returned as a person with `
|
1102
|
+
# PersonMetadata.deleted` set to true. When the `page_token` or `sync_token` is
|
1103
|
+
# specified, all other request parameters must match the first call. Writes may
|
1104
|
+
# have a propagation delay of several minutes for sync requests. Incremental
|
1105
|
+
# syncs are not intended for read-after-write use cases. See example usage at [
|
1106
|
+
# List the user's contacts that have changed](/people/v1/contacts#
|
1107
|
+
# list_the_users_contacts_that_have_changed).
|
1074
1108
|
# @param [String] resource_name
|
1075
1109
|
# Required. The resource name to return connections for. Only `people/me` is
|
1076
1110
|
# valid.
|
@@ -1078,10 +1112,10 @@ module Google
|
|
1078
1112
|
# Optional. The number of connections to include in the response. Valid values
|
1079
1113
|
# are between 1 and 1000, inclusive. Defaults to 100 if not set or set to 0.
|
1080
1114
|
# @param [String] page_token
|
1081
|
-
# Optional. A page token, received from a previous `
|
1115
|
+
# Optional. A page token, received from a previous response `next_page_token`.
|
1082
1116
|
# Provide this to retrieve the subsequent page. When paginating, all other
|
1083
|
-
# parameters provided to `
|
1084
|
-
# page token.
|
1117
|
+
# parameters provided to `people.connections.list` must match the first call
|
1118
|
+
# that provided the page token.
|
1085
1119
|
# @param [String] person_fields
|
1086
1120
|
# Required. A field mask to restrict which fields on each person are returned.
|
1087
1121
|
# Multiple fields can be specified by separating them with commas. Valid values
|
@@ -1095,13 +1129,10 @@ module Google
|
|
1095
1129
|
# Each path should start with `person.`: for example, `person.names` or `person.
|
1096
1130
|
# photos`.
|
1097
1131
|
# @param [Boolean] request_sync_token
|
1098
|
-
# Optional. Whether the response should
|
1099
|
-
# page
|
1100
|
-
#
|
1101
|
-
#
|
1102
|
-
# have an additional rate limit per user. Each client should generally only be
|
1103
|
-
# doing a full sync once every few days per user and so should not hit this
|
1104
|
-
# limit.
|
1132
|
+
# Optional. Whether the response should return `next_sync_token` on the last
|
1133
|
+
# page of results. It can be used to get incremental changes since the last
|
1134
|
+
# request by setting it on the request `sync_token`. More details about sync
|
1135
|
+
# behavior at `people.connections.list`.
|
1105
1136
|
# @param [String] sort_order
|
1106
1137
|
# Optional. The order in which the connections should be sorted. Defaults to `
|
1107
1138
|
# LAST_MODIFIED_ASCENDING`.
|
@@ -1109,15 +1140,11 @@ module Google
|
|
1109
1140
|
# Optional. A mask of what source types to return. Defaults to
|
1110
1141
|
# READ_SOURCE_TYPE_CONTACT and READ_SOURCE_TYPE_PROFILE if not set.
|
1111
1142
|
# @param [String] sync_token
|
1112
|
-
# Optional. A sync token, received from a previous `
|
1143
|
+
# Optional. A sync token, received from a previous response `next_sync_token`
|
1113
1144
|
# Provide this to retrieve only the resources changed since the last request.
|
1114
|
-
# When
|
1115
|
-
#
|
1116
|
-
# people
|
1117
|
-
# is specified, all other parameters provided to `ListConnections` except `
|
1118
|
-
# page_size` and `page_token` must match the initial call that provided the sync
|
1119
|
-
# token. Sync tokens expire after seven days, after which a full sync request
|
1120
|
-
# without a `sync_token` should be made.
|
1145
|
+
# When syncing, all other parameters provided to `people.connections.list` must
|
1146
|
+
# match the first call that provided the sync token. More details about sync
|
1147
|
+
# behavior at `people.connections.list`.
|
1121
1148
|
# @param [String] fields
|
1122
1149
|
# Selector specifying which fields to include in a partial response.
|
1123
1150
|
# @param [String] quota_user
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-people_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.18.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: 2021-
|
11
|
+
date: 2021-08-02 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.
|
19
|
+
version: '0.4'
|
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.
|
29
|
+
version: '0.4'
|
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/master/generated/google-apis-people_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-people_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-people_v1/v0.18.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-people_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|