google-apis-dataportability_v1beta 0.10.0 → 0.12.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 +4 -4
- data/CHANGELOG.md +9 -0
- data/lib/google/apis/dataportability_v1beta/classes.rb +108 -0
- data/lib/google/apis/dataportability_v1beta/gem_version.rb +3 -3
- data/lib/google/apis/dataportability_v1beta/representations.rb +55 -0
- data/lib/google/apis/dataportability_v1beta/service.rb +65 -0
- data/lib/google/apis/dataportability_v1beta.rb +68 -65
- metadata +4 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dbabac1e7f85c71ce00755cbd24ac92f69193d548c382c3a61cf7c7a8ed2db0c
|
4
|
+
data.tar.gz: 2093bf9f97871cc1f4d44bb65d976379ad7491a6b44c7134c48482c29658359f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 119694985f7e87e9084d2f6657385739b669aeb3089d968c8b73308abf5a31e378d163236b72908c7c891db9bfd6fa4cb94ed28e7b610aae32040c9eaa59c84e
|
7
|
+
data.tar.gz: 384a454c4a1b6708488ebac5106092de5835b9e54259d2e11ae1aace14032ceab9f909d56db9089757f6bebcf98c072007afe973d4af56cefac46deb5184de13
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-dataportability_v1beta
|
2
2
|
|
3
|
+
### v0.12.0 (2025-03-09)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250305
|
6
|
+
|
7
|
+
### v0.11.0 (2025-02-26)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250212
|
10
|
+
* Regenerated using generator version 0.16.0
|
11
|
+
|
3
12
|
### v0.10.0 (2024-12-02)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20240828
|
@@ -22,6 +22,73 @@ module Google
|
|
22
22
|
module Apis
|
23
23
|
module DataportabilityV1beta
|
24
24
|
|
25
|
+
# Request to cancel a Portability Archive job.
|
26
|
+
class CancelPortabilityArchiveRequest
|
27
|
+
include Google::Apis::Core::Hashable
|
28
|
+
|
29
|
+
def initialize(**args)
|
30
|
+
update!(**args)
|
31
|
+
end
|
32
|
+
|
33
|
+
# Update properties of this object
|
34
|
+
def update!(**args)
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
# Response to canceling a Data Portability Archive job.
|
39
|
+
class CancelPortabilityArchiveResponse
|
40
|
+
include Google::Apis::Core::Hashable
|
41
|
+
|
42
|
+
def initialize(**args)
|
43
|
+
update!(**args)
|
44
|
+
end
|
45
|
+
|
46
|
+
# Update properties of this object
|
47
|
+
def update!(**args)
|
48
|
+
end
|
49
|
+
end
|
50
|
+
|
51
|
+
# Request to check the token's access type. All required information is derived
|
52
|
+
# from the attached OAuth token.
|
53
|
+
class CheckAccessTypeRequest
|
54
|
+
include Google::Apis::Core::Hashable
|
55
|
+
|
56
|
+
def initialize(**args)
|
57
|
+
update!(**args)
|
58
|
+
end
|
59
|
+
|
60
|
+
# Update properties of this object
|
61
|
+
def update!(**args)
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
# Response to checking the token's access type.
|
66
|
+
class CheckAccessTypeResponse
|
67
|
+
include Google::Apis::Core::Hashable
|
68
|
+
|
69
|
+
# Jobs initiated with this token will be one-time if any requested resources
|
70
|
+
# have one-time access.
|
71
|
+
# Corresponds to the JSON property `oneTimeResources`
|
72
|
+
# @return [Array<String>]
|
73
|
+
attr_accessor :one_time_resources
|
74
|
+
|
75
|
+
# Jobs initiated with this token will be time-based if all requested resources
|
76
|
+
# have time-based access.
|
77
|
+
# Corresponds to the JSON property `timeBasedResources`
|
78
|
+
# @return [Array<String>]
|
79
|
+
attr_accessor :time_based_resources
|
80
|
+
|
81
|
+
def initialize(**args)
|
82
|
+
update!(**args)
|
83
|
+
end
|
84
|
+
|
85
|
+
# Update properties of this object
|
86
|
+
def update!(**args)
|
87
|
+
@one_time_resources = args[:one_time_resources] if args.key?(:one_time_resources)
|
88
|
+
@time_based_resources = args[:time_based_resources] if args.key?(:time_based_resources)
|
89
|
+
end
|
90
|
+
end
|
91
|
+
|
25
92
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
26
93
|
# messages in your APIs. A typical example is to use it as the request or the
|
27
94
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
@@ -42,19 +109,37 @@ module Google
|
|
42
109
|
class InitiatePortabilityArchiveRequest
|
43
110
|
include Google::Apis::Core::Hashable
|
44
111
|
|
112
|
+
# Optional. The timestamp that represents the end point for the data you are
|
113
|
+
# exporting. If the end_time is not specified in the
|
114
|
+
# InitiatePortabilityArchiveRequest, this field is set to the latest available
|
115
|
+
# data.
|
116
|
+
# Corresponds to the JSON property `endTime`
|
117
|
+
# @return [String]
|
118
|
+
attr_accessor :end_time
|
119
|
+
|
45
120
|
# The resources from which you're exporting data. These values have a 1:1
|
46
121
|
# correspondence with the OAuth scopes.
|
47
122
|
# Corresponds to the JSON property `resources`
|
48
123
|
# @return [Array<String>]
|
49
124
|
attr_accessor :resources
|
50
125
|
|
126
|
+
# Optional. The timestamp that represents the starting point for the data you
|
127
|
+
# are exporting. If the start_time is not specified in the
|
128
|
+
# InitiatePortabilityArchiveRequest, the field is set to the earliest available
|
129
|
+
# data.
|
130
|
+
# Corresponds to the JSON property `startTime`
|
131
|
+
# @return [String]
|
132
|
+
attr_accessor :start_time
|
133
|
+
|
51
134
|
def initialize(**args)
|
52
135
|
update!(**args)
|
53
136
|
end
|
54
137
|
|
55
138
|
# Update properties of this object
|
56
139
|
def update!(**args)
|
140
|
+
@end_time = args[:end_time] if args.key?(:end_time)
|
57
141
|
@resources = args[:resources] if args.key?(:resources)
|
142
|
+
@start_time = args[:start_time] if args.key?(:start_time)
|
58
143
|
end
|
59
144
|
end
|
60
145
|
|
@@ -62,6 +147,11 @@ module Google
|
|
62
147
|
class InitiatePortabilityArchiveResponse
|
63
148
|
include Google::Apis::Core::Hashable
|
64
149
|
|
150
|
+
# The access type of the Archive job initiated by the API.
|
151
|
+
# Corresponds to the JSON property `accessType`
|
152
|
+
# @return [String]
|
153
|
+
attr_accessor :access_type
|
154
|
+
|
65
155
|
# The archive job ID that is initiated in the API. This can be used to get the
|
66
156
|
# state of the job.
|
67
157
|
# Corresponds to the JSON property `archiveJobId`
|
@@ -74,6 +164,7 @@ module Google
|
|
74
164
|
|
75
165
|
# Update properties of this object
|
76
166
|
def update!(**args)
|
167
|
+
@access_type = args[:access_type] if args.key?(:access_type)
|
77
168
|
@archive_job_id = args[:archive_job_id] if args.key?(:archive_job_id)
|
78
169
|
end
|
79
170
|
end
|
@@ -82,6 +173,14 @@ module Google
|
|
82
173
|
class PortabilityArchiveState
|
83
174
|
include Google::Apis::Core::Hashable
|
84
175
|
|
176
|
+
# The timestamp that represents the end point for the data you are exporting. If
|
177
|
+
# the end_time value is set in the InitiatePortabilityArchiveRequest, this field
|
178
|
+
# is set to that value. If end_time is not set, this value is set to the time
|
179
|
+
# the export was requested.
|
180
|
+
# Corresponds to the JSON property `exportTime`
|
181
|
+
# @return [String]
|
182
|
+
attr_accessor :export_time
|
183
|
+
|
85
184
|
# The resource name of ArchiveJob's PortabilityArchiveState singleton. The
|
86
185
|
# format is: archiveJobs/`archive_job`/portabilityArchiveState. archive_job is
|
87
186
|
# the job ID provided in the request.
|
@@ -89,6 +188,13 @@ module Google
|
|
89
188
|
# @return [String]
|
90
189
|
attr_accessor :name
|
91
190
|
|
191
|
+
# The timestamp that represents the starting point for the data you are
|
192
|
+
# exporting. This field is set only if the start_time field is specified in the
|
193
|
+
# InitiatePortabilityArchiveRequest.
|
194
|
+
# Corresponds to the JSON property `startTime`
|
195
|
+
# @return [String]
|
196
|
+
attr_accessor :start_time
|
197
|
+
|
92
198
|
# Resource that represents the state of the Archive job.
|
93
199
|
# Corresponds to the JSON property `state`
|
94
200
|
# @return [String]
|
@@ -106,7 +212,9 @@ module Google
|
|
106
212
|
|
107
213
|
# Update properties of this object
|
108
214
|
def update!(**args)
|
215
|
+
@export_time = args[:export_time] if args.key?(:export_time)
|
109
216
|
@name = args[:name] if args.key?(:name)
|
217
|
+
@start_time = args[:start_time] if args.key?(:start_time)
|
110
218
|
@state = args[:state] if args.key?(:state)
|
111
219
|
@urls = args[:urls] if args.key?(:urls)
|
112
220
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DataportabilityV1beta
|
18
18
|
# Version of the google-apis-dataportability_v1beta gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.12.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250305"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -22,6 +22,30 @@ module Google
|
|
22
22
|
module Apis
|
23
23
|
module DataportabilityV1beta
|
24
24
|
|
25
|
+
class CancelPortabilityArchiveRequest
|
26
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
27
|
+
|
28
|
+
include Google::Apis::Core::JsonObjectSupport
|
29
|
+
end
|
30
|
+
|
31
|
+
class CancelPortabilityArchiveResponse
|
32
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
|
+
|
34
|
+
include Google::Apis::Core::JsonObjectSupport
|
35
|
+
end
|
36
|
+
|
37
|
+
class CheckAccessTypeRequest
|
38
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
39
|
+
|
40
|
+
include Google::Apis::Core::JsonObjectSupport
|
41
|
+
end
|
42
|
+
|
43
|
+
class CheckAccessTypeResponse
|
44
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
45
|
+
|
46
|
+
include Google::Apis::Core::JsonObjectSupport
|
47
|
+
end
|
48
|
+
|
25
49
|
class Empty
|
26
50
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
27
51
|
|
@@ -64,6 +88,32 @@ module Google
|
|
64
88
|
include Google::Apis::Core::JsonObjectSupport
|
65
89
|
end
|
66
90
|
|
91
|
+
class CancelPortabilityArchiveRequest
|
92
|
+
# @private
|
93
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
94
|
+
end
|
95
|
+
end
|
96
|
+
|
97
|
+
class CancelPortabilityArchiveResponse
|
98
|
+
# @private
|
99
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
100
|
+
end
|
101
|
+
end
|
102
|
+
|
103
|
+
class CheckAccessTypeRequest
|
104
|
+
# @private
|
105
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
106
|
+
end
|
107
|
+
end
|
108
|
+
|
109
|
+
class CheckAccessTypeResponse
|
110
|
+
# @private
|
111
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
112
|
+
collection :one_time_resources, as: 'oneTimeResources'
|
113
|
+
collection :time_based_resources, as: 'timeBasedResources'
|
114
|
+
end
|
115
|
+
end
|
116
|
+
|
67
117
|
class Empty
|
68
118
|
# @private
|
69
119
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -73,13 +123,16 @@ module Google
|
|
73
123
|
class InitiatePortabilityArchiveRequest
|
74
124
|
# @private
|
75
125
|
class Representation < Google::Apis::Core::JsonRepresentation
|
126
|
+
property :end_time, as: 'endTime'
|
76
127
|
collection :resources, as: 'resources'
|
128
|
+
property :start_time, as: 'startTime'
|
77
129
|
end
|
78
130
|
end
|
79
131
|
|
80
132
|
class InitiatePortabilityArchiveResponse
|
81
133
|
# @private
|
82
134
|
class Representation < Google::Apis::Core::JsonRepresentation
|
135
|
+
property :access_type, as: 'accessType'
|
83
136
|
property :archive_job_id, as: 'archiveJobId'
|
84
137
|
end
|
85
138
|
end
|
@@ -87,7 +140,9 @@ module Google
|
|
87
140
|
class PortabilityArchiveState
|
88
141
|
# @private
|
89
142
|
class Representation < Google::Apis::Core::JsonRepresentation
|
143
|
+
property :export_time, as: 'exportTime'
|
90
144
|
property :name, as: 'name'
|
145
|
+
property :start_time, as: 'startTime'
|
91
146
|
property :state, as: 'state'
|
92
147
|
collection :urls, as: 'urls'
|
93
148
|
end
|
@@ -54,6 +54,71 @@ module Google
|
|
54
54
|
@batch_path = 'batch'
|
55
55
|
end
|
56
56
|
|
57
|
+
# Gets the access type of the token.
|
58
|
+
# @param [Google::Apis::DataportabilityV1beta::CheckAccessTypeRequest] check_access_type_request_object
|
59
|
+
# @param [String] fields
|
60
|
+
# Selector specifying which fields to include in a partial response.
|
61
|
+
# @param [String] quota_user
|
62
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
63
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
64
|
+
# @param [Google::Apis::RequestOptions] options
|
65
|
+
# Request-specific options
|
66
|
+
#
|
67
|
+
# @yield [result, err] Result & error if block supplied
|
68
|
+
# @yieldparam result [Google::Apis::DataportabilityV1beta::CheckAccessTypeResponse] parsed result object
|
69
|
+
# @yieldparam err [StandardError] error object if request failed
|
70
|
+
#
|
71
|
+
# @return [Google::Apis::DataportabilityV1beta::CheckAccessTypeResponse]
|
72
|
+
#
|
73
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
74
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
75
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
76
|
+
def check_access_type(check_access_type_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
77
|
+
command = make_simple_command(:post, 'v1beta/accessType:check', options)
|
78
|
+
command.request_representation = Google::Apis::DataportabilityV1beta::CheckAccessTypeRequest::Representation
|
79
|
+
command.request_object = check_access_type_request_object
|
80
|
+
command.response_representation = Google::Apis::DataportabilityV1beta::CheckAccessTypeResponse::Representation
|
81
|
+
command.response_class = Google::Apis::DataportabilityV1beta::CheckAccessTypeResponse
|
82
|
+
command.query['fields'] = fields unless fields.nil?
|
83
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
84
|
+
execute_or_queue_command(command, &block)
|
85
|
+
end
|
86
|
+
|
87
|
+
# Cancels a Portability Archive job.
|
88
|
+
# @param [String] name
|
89
|
+
# Required. The Archive job ID you're canceling. This is returned by the
|
90
|
+
# InitiatePortabilityArchive response. The format is: archiveJobs/`archive_job`.
|
91
|
+
# Canceling is only executed if the job is in progress.
|
92
|
+
# @param [Google::Apis::DataportabilityV1beta::CancelPortabilityArchiveRequest] cancel_portability_archive_request_object
|
93
|
+
# @param [String] fields
|
94
|
+
# Selector specifying which fields to include in a partial response.
|
95
|
+
# @param [String] quota_user
|
96
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
97
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
98
|
+
# @param [Google::Apis::RequestOptions] options
|
99
|
+
# Request-specific options
|
100
|
+
#
|
101
|
+
# @yield [result, err] Result & error if block supplied
|
102
|
+
# @yieldparam result [Google::Apis::DataportabilityV1beta::CancelPortabilityArchiveResponse] parsed result object
|
103
|
+
# @yieldparam err [StandardError] error object if request failed
|
104
|
+
#
|
105
|
+
# @return [Google::Apis::DataportabilityV1beta::CancelPortabilityArchiveResponse]
|
106
|
+
#
|
107
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
108
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
109
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
110
|
+
def cancel_archive_job_portability_archive(name, cancel_portability_archive_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
111
|
+
command = make_simple_command(:post, 'v1beta/{+name}:cancel', options)
|
112
|
+
command.request_representation = Google::Apis::DataportabilityV1beta::CancelPortabilityArchiveRequest::Representation
|
113
|
+
command.request_object = cancel_portability_archive_request_object
|
114
|
+
command.response_representation = Google::Apis::DataportabilityV1beta::CancelPortabilityArchiveResponse::Representation
|
115
|
+
command.response_class = Google::Apis::DataportabilityV1beta::CancelPortabilityArchiveResponse
|
116
|
+
command.params['name'] = name unless name.nil?
|
117
|
+
command.query['fields'] = fields unless fields.nil?
|
118
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
119
|
+
execute_or_queue_command(command, &block)
|
120
|
+
end
|
121
|
+
|
57
122
|
# Retrieves the state of an Archive job for the Portability API.
|
58
123
|
# @param [String] name
|
59
124
|
# Required. The archive job ID that is returned when you request the state of
|
@@ -32,199 +32,202 @@ module Google
|
|
32
32
|
# This is NOT the gem version.
|
33
33
|
VERSION = 'V1beta'
|
34
34
|
|
35
|
-
# Move a copy of the Google Alerts subscriptions you created
|
35
|
+
# Move a copy of the Google Alerts subscriptions you created
|
36
36
|
AUTH_DATAPORTABILITY_ALERTS_SUBSCRIPTIONS = 'https://www.googleapis.com/auth/dataportability.alerts.subscriptions'
|
37
37
|
|
38
|
-
# Move a copy of messages between you and the businesses you have conversations with across Google services
|
38
|
+
# Move a copy of messages between you and the businesses you have conversations with across Google services
|
39
39
|
AUTH_DATAPORTABILITY_BUSINESSMESSAGING_CONVERSATIONS = 'https://www.googleapis.com/auth/dataportability.businessmessaging.conversations'
|
40
40
|
|
41
|
-
# Move a copy of the information you entered into online forms in Chrome
|
41
|
+
# Move a copy of the information you entered into online forms in Chrome
|
42
42
|
AUTH_DATAPORTABILITY_CHROME_AUTOFILL = 'https://www.googleapis.com/auth/dataportability.chrome.autofill'
|
43
43
|
|
44
|
-
# Move a copy of pages you bookmarked in Chrome
|
44
|
+
# Move a copy of pages you bookmarked in Chrome
|
45
45
|
AUTH_DATAPORTABILITY_CHROME_BOOKMARKS = 'https://www.googleapis.com/auth/dataportability.chrome.bookmarks'
|
46
46
|
|
47
|
-
# Move a copy of words you added to Chrome's dictionary
|
47
|
+
# Move a copy of words you added to Chrome's dictionary
|
48
48
|
AUTH_DATAPORTABILITY_CHROME_DICTIONARY = 'https://www.googleapis.com/auth/dataportability.chrome.dictionary'
|
49
49
|
|
50
|
-
# Move a copy of extensions you installed from the Chrome Web Store
|
50
|
+
# Move a copy of extensions you installed from the Chrome Web Store
|
51
51
|
AUTH_DATAPORTABILITY_CHROME_EXTENSIONS = 'https://www.googleapis.com/auth/dataportability.chrome.extensions'
|
52
52
|
|
53
|
-
# Move a copy of sites you visited in Chrome
|
53
|
+
# Move a copy of sites you visited in Chrome
|
54
54
|
AUTH_DATAPORTABILITY_CHROME_HISTORY = 'https://www.googleapis.com/auth/dataportability.chrome.history'
|
55
55
|
|
56
|
-
# Move a copy of pages you added to your reading list in Chrome
|
56
|
+
# Move a copy of pages you added to your reading list in Chrome
|
57
57
|
AUTH_DATAPORTABILITY_CHROME_READING_LIST = 'https://www.googleapis.com/auth/dataportability.chrome.reading_list'
|
58
58
|
|
59
|
-
# Move a copy of your settings in Chrome
|
59
|
+
# Move a copy of your settings in Chrome
|
60
60
|
AUTH_DATAPORTABILITY_CHROME_SETTINGS = 'https://www.googleapis.com/auth/dataportability.chrome.settings'
|
61
61
|
|
62
|
-
# Move a copy of searches and sites you follow, saved by Discover
|
62
|
+
# Move a copy of searches and sites you follow, saved by Discover
|
63
63
|
AUTH_DATAPORTABILITY_DISCOVER_FOLLOWS = 'https://www.googleapis.com/auth/dataportability.discover.follows'
|
64
64
|
|
65
|
-
# Move a copy of links to your liked documents, saved by Discover
|
65
|
+
# Move a copy of links to your liked documents, saved by Discover
|
66
66
|
AUTH_DATAPORTABILITY_DISCOVER_LIKES = 'https://www.googleapis.com/auth/dataportability.discover.likes'
|
67
67
|
|
68
|
-
# Move a copy of content you marked as not interested, saved by Discover
|
68
|
+
# Move a copy of content you marked as not interested, saved by Discover
|
69
69
|
AUTH_DATAPORTABILITY_DISCOVER_NOT_INTERESTED = 'https://www.googleapis.com/auth/dataportability.discover.not_interested'
|
70
70
|
|
71
|
-
# Move a copy of the places you labeled on Maps
|
71
|
+
# Move a copy of the places you labeled on Maps
|
72
72
|
AUTH_DATAPORTABILITY_MAPS_ALIASED_PLACES = 'https://www.googleapis.com/auth/dataportability.maps.aliased_places'
|
73
73
|
|
74
|
-
# Move a copy of your pinned trips on Maps
|
74
|
+
# Move a copy of your pinned trips on Maps
|
75
75
|
AUTH_DATAPORTABILITY_MAPS_COMMUTE_ROUTES = 'https://www.googleapis.com/auth/dataportability.maps.commute_routes'
|
76
76
|
|
77
|
-
# Move a copy of your commute settings on Maps
|
77
|
+
# Move a copy of your commute settings on Maps
|
78
78
|
AUTH_DATAPORTABILITY_MAPS_COMMUTE_SETTINGS = 'https://www.googleapis.com/auth/dataportability.maps.commute_settings'
|
79
79
|
|
80
|
-
# Move a copy of your electric vehicle profile on Maps
|
80
|
+
# Move a copy of your electric vehicle profile on Maps
|
81
81
|
AUTH_DATAPORTABILITY_MAPS_EV_PROFILE = 'https://www.googleapis.com/auth/dataportability.maps.ev_profile'
|
82
82
|
|
83
|
-
# Move a copy of the corrections you made to places or map information on Maps
|
83
|
+
# Move a copy of the corrections you made to places or map information on Maps
|
84
84
|
AUTH_DATAPORTABILITY_MAPS_FACTUAL_CONTRIBUTIONS = 'https://www.googleapis.com/auth/dataportability.maps.factual_contributions'
|
85
85
|
|
86
|
-
# Move a copy of your updates to places on Maps
|
86
|
+
# Move a copy of your updates to places on Maps
|
87
87
|
AUTH_DATAPORTABILITY_MAPS_OFFERING_CONTRIBUTIONS = 'https://www.googleapis.com/auth/dataportability.maps.offering_contributions'
|
88
88
|
|
89
|
-
# Move a copy of the photos and videos you posted on Maps
|
89
|
+
# Move a copy of the photos and videos you posted on Maps
|
90
90
|
AUTH_DATAPORTABILITY_MAPS_PHOTOS_VIDEOS = 'https://www.googleapis.com/auth/dataportability.maps.photos_videos'
|
91
91
|
|
92
|
-
# Move a copy of the questions and answers you posted on Maps
|
92
|
+
# Move a copy of the questions and answers you posted on Maps
|
93
93
|
AUTH_DATAPORTABILITY_MAPS_QUESTIONS_ANSWERS = 'https://www.googleapis.com/auth/dataportability.maps.questions_answers'
|
94
94
|
|
95
|
-
# Move a copy of your reviews and posts on Maps
|
95
|
+
# Move a copy of your reviews and posts on Maps
|
96
96
|
AUTH_DATAPORTABILITY_MAPS_REVIEWS = 'https://www.googleapis.com/auth/dataportability.maps.reviews'
|
97
97
|
|
98
|
-
# Move a copy of your Starred places list on Maps
|
98
|
+
# Move a copy of your Starred places list on Maps
|
99
99
|
AUTH_DATAPORTABILITY_MAPS_STARRED_PLACES = 'https://www.googleapis.com/auth/dataportability.maps.starred_places'
|
100
100
|
|
101
|
-
# Move a copy of your Maps activity
|
101
|
+
# Move a copy of your Maps activity
|
102
102
|
AUTH_DATAPORTABILITY_MYACTIVITY_MAPS = 'https://www.googleapis.com/auth/dataportability.myactivity.maps'
|
103
103
|
|
104
|
-
# Move a copy of your My Ad Center activity
|
104
|
+
# Move a copy of your My Ad Center activity
|
105
105
|
AUTH_DATAPORTABILITY_MYACTIVITY_MYADCENTER = 'https://www.googleapis.com/auth/dataportability.myactivity.myadcenter'
|
106
106
|
|
107
|
-
# Move a copy of your Google Play activity
|
107
|
+
# Move a copy of your Google Play activity
|
108
108
|
AUTH_DATAPORTABILITY_MYACTIVITY_PLAY = 'https://www.googleapis.com/auth/dataportability.myactivity.play'
|
109
109
|
|
110
|
-
# Move a copy of your Google Search activity
|
110
|
+
# Move a copy of your Google Search activity
|
111
111
|
AUTH_DATAPORTABILITY_MYACTIVITY_SEARCH = 'https://www.googleapis.com/auth/dataportability.myactivity.search'
|
112
112
|
|
113
|
-
# Move a copy of your Shopping activity
|
113
|
+
# Move a copy of your Shopping activity
|
114
114
|
AUTH_DATAPORTABILITY_MYACTIVITY_SHOPPING = 'https://www.googleapis.com/auth/dataportability.myactivity.shopping'
|
115
115
|
|
116
|
-
# Move a copy of your YouTube activity
|
116
|
+
# Move a copy of your YouTube activity
|
117
117
|
AUTH_DATAPORTABILITY_MYACTIVITY_YOUTUBE = 'https://www.googleapis.com/auth/dataportability.myactivity.youtube'
|
118
118
|
|
119
|
-
# Move a copy of the maps you created in My Maps
|
119
|
+
# Move a copy of the maps you created in My Maps
|
120
120
|
AUTH_DATAPORTABILITY_MYMAPS_MAPS = 'https://www.googleapis.com/auth/dataportability.mymaps.maps'
|
121
121
|
|
122
|
-
# Move a copy of your food purchase and reservation activity
|
122
|
+
# Move a copy of your food purchase and reservation activity
|
123
123
|
AUTH_DATAPORTABILITY_ORDER_RESERVE_PURCHASES_RESERVATIONS = 'https://www.googleapis.com/auth/dataportability.order_reserve.purchases_reservations'
|
124
124
|
|
125
|
-
# Move a copy of information about your devices with Google Play Store installed
|
125
|
+
# Move a copy of information about your devices with Google Play Store installed
|
126
126
|
AUTH_DATAPORTABILITY_PLAY_DEVICES = 'https://www.googleapis.com/auth/dataportability.play.devices'
|
127
127
|
|
128
|
-
# Move a copy of your Google Play Store Grouping tags created by app developers
|
128
|
+
# Move a copy of your Google Play Store Grouping tags created by app developers
|
129
129
|
AUTH_DATAPORTABILITY_PLAY_GROUPING = 'https://www.googleapis.com/auth/dataportability.play.grouping'
|
130
130
|
|
131
|
-
# Move a copy of your Google Play Store app installations
|
131
|
+
# Move a copy of your Google Play Store app installations
|
132
132
|
AUTH_DATAPORTABILITY_PLAY_INSTALLS = 'https://www.googleapis.com/auth/dataportability.play.installs'
|
133
133
|
|
134
|
-
# Move a copy of your Google Play Store downloads, including books, games, and apps
|
134
|
+
# Move a copy of your Google Play Store downloads, including books, games, and apps
|
135
135
|
AUTH_DATAPORTABILITY_PLAY_LIBRARY = 'https://www.googleapis.com/auth/dataportability.play.library'
|
136
136
|
|
137
|
-
# Move a copy of information about your Google Play Store Points
|
137
|
+
# Move a copy of information about your Google Play Store Points
|
138
138
|
AUTH_DATAPORTABILITY_PLAY_PLAYPOINTS = 'https://www.googleapis.com/auth/dataportability.play.playpoints'
|
139
139
|
|
140
|
-
# Move a copy of information about your Google Play Store promotions
|
140
|
+
# Move a copy of information about your Google Play Store promotions
|
141
141
|
AUTH_DATAPORTABILITY_PLAY_PROMOTIONS = 'https://www.googleapis.com/auth/dataportability.play.promotions'
|
142
142
|
|
143
|
-
# Move a copy of your Google Play Store purchases
|
143
|
+
# Move a copy of your Google Play Store purchases
|
144
144
|
AUTH_DATAPORTABILITY_PLAY_PURCHASES = 'https://www.googleapis.com/auth/dataportability.play.purchases'
|
145
145
|
|
146
|
-
# Move a copy of your Google Play Store redemption activities
|
146
|
+
# Move a copy of your Google Play Store redemption activities
|
147
147
|
AUTH_DATAPORTABILITY_PLAY_REDEMPTIONS = 'https://www.googleapis.com/auth/dataportability.play.redemptions'
|
148
148
|
|
149
|
-
# Move a copy of your Google Play Store subscriptions
|
149
|
+
# Move a copy of your Google Play Store subscriptions
|
150
150
|
AUTH_DATAPORTABILITY_PLAY_SUBSCRIPTIONS = 'https://www.googleapis.com/auth/dataportability.play.subscriptions'
|
151
151
|
|
152
|
-
# Move a copy of your Google Play Store user settings and preferences
|
152
|
+
# Move a copy of your Google Play Store user settings and preferences
|
153
153
|
AUTH_DATAPORTABILITY_PLAY_USERSETTINGS = 'https://www.googleapis.com/auth/dataportability.play.usersettings'
|
154
154
|
|
155
|
-
# Move a copy of your saved links, images, places, and collections from your use of Google services
|
155
|
+
# Move a copy of your saved links, images, places, and collections from your use of Google services
|
156
156
|
AUTH_DATAPORTABILITY_SAVED_COLLECTIONS = 'https://www.googleapis.com/auth/dataportability.saved.collections'
|
157
157
|
|
158
|
-
# Move a copy of your
|
158
|
+
# Move a copy of your comments on Google Search
|
159
|
+
AUTH_DATAPORTABILITY_SEARCH_UGC_COMMENTS = 'https://www.googleapis.com/auth/dataportability.search_ugc.comments'
|
160
|
+
|
161
|
+
# Move a copy of your media reviews on Google Search
|
159
162
|
AUTH_DATAPORTABILITY_SEARCH_UGC_MEDIA_REVIEWS_AND_STARS = 'https://www.googleapis.com/auth/dataportability.search_ugc.media.reviews_and_stars'
|
160
163
|
|
161
|
-
# Move a copy of your self-reported video streaming provider preferences from Google Search and Google TV
|
164
|
+
# Move a copy of your self-reported video streaming provider preferences from Google Search and Google TV
|
162
165
|
AUTH_DATAPORTABILITY_SEARCH_UGC_MEDIA_STREAMING_VIDEO_PROVIDERS = 'https://www.googleapis.com/auth/dataportability.search_ugc.media.streaming_video_providers'
|
163
166
|
|
164
|
-
# Move a copy of your indicated thumbs up and thumbs down on media in Google Search and Google TV
|
167
|
+
# Move a copy of your indicated thumbs up and thumbs down on media in Google Search and Google TV
|
165
168
|
AUTH_DATAPORTABILITY_SEARCH_UGC_MEDIA_THUMBS = 'https://www.googleapis.com/auth/dataportability.search_ugc.media.thumbs'
|
166
169
|
|
167
|
-
# Move a copy of information about the movies and TV shows you marked as watched on Google Search and Google TV
|
170
|
+
# Move a copy of information about the movies and TV shows you marked as watched on Google Search and Google TV
|
168
171
|
AUTH_DATAPORTABILITY_SEARCH_UGC_MEDIA_WATCHED = 'https://www.googleapis.com/auth/dataportability.search_ugc.media.watched'
|
169
172
|
|
170
|
-
# Move a copy of your notification settings on the Google Search app
|
173
|
+
# Move a copy of your notification settings on the Google Search app
|
171
174
|
AUTH_DATAPORTABILITY_SEARCHNOTIFICATIONS_SETTINGS = 'https://www.googleapis.com/auth/dataportability.searchnotifications.settings'
|
172
175
|
|
173
|
-
# Move a copy of your notification subscriptions on Google Search app
|
176
|
+
# Move a copy of your notification subscriptions on Google Search app
|
174
177
|
AUTH_DATAPORTABILITY_SEARCHNOTIFICATIONS_SUBSCRIPTIONS = 'https://www.googleapis.com/auth/dataportability.searchnotifications.subscriptions'
|
175
178
|
|
176
|
-
# Move a copy of your shipping information on Shopping
|
179
|
+
# Move a copy of your shipping information on Shopping
|
177
180
|
AUTH_DATAPORTABILITY_SHOPPING_ADDRESSES = 'https://www.googleapis.com/auth/dataportability.shopping.addresses'
|
178
181
|
|
179
|
-
# Move a copy of reviews you wrote about products or online stores on Google Search
|
182
|
+
# Move a copy of reviews you wrote about products or online stores on Google Search
|
180
183
|
AUTH_DATAPORTABILITY_SHOPPING_REVIEWS = 'https://www.googleapis.com/auth/dataportability.shopping.reviews'
|
181
184
|
|
182
|
-
# Move a copy of the images and videos you uploaded to Street View
|
185
|
+
# Move a copy of the images and videos you uploaded to Street View
|
183
186
|
AUTH_DATAPORTABILITY_STREETVIEW_IMAGERY = 'https://www.googleapis.com/auth/dataportability.streetview.imagery'
|
184
187
|
|
185
|
-
# Move a copy of information about your YouTube channel
|
188
|
+
# Move a copy of information about your YouTube channel
|
186
189
|
AUTH_DATAPORTABILITY_YOUTUBE_CHANNEL = 'https://www.googleapis.com/auth/dataportability.youtube.channel'
|
187
190
|
|
188
|
-
# Move a copy of your YouTube clips metadata
|
191
|
+
# Move a copy of your YouTube clips metadata
|
189
192
|
AUTH_DATAPORTABILITY_YOUTUBE_CLIPS = 'https://www.googleapis.com/auth/dataportability.youtube.clips'
|
190
193
|
|
191
|
-
# Move a copy of your YouTube comments
|
194
|
+
# Move a copy of your YouTube comments
|
192
195
|
AUTH_DATAPORTABILITY_YOUTUBE_COMMENTS = 'https://www.googleapis.com/auth/dataportability.youtube.comments'
|
193
196
|
|
194
|
-
# Move a copy of your YouTube messages in live chat
|
197
|
+
# Move a copy of your YouTube messages in live chat
|
195
198
|
AUTH_DATAPORTABILITY_YOUTUBE_LIVE_CHAT = 'https://www.googleapis.com/auth/dataportability.youtube.live_chat'
|
196
199
|
|
197
|
-
# Move a copy of your uploaded YouTube music tracks and your YouTube music library
|
200
|
+
# Move a copy of your uploaded YouTube music tracks and your YouTube music library
|
198
201
|
AUTH_DATAPORTABILITY_YOUTUBE_MUSIC = 'https://www.googleapis.com/auth/dataportability.youtube.music'
|
199
202
|
|
200
|
-
# Move a copy of your YouTube playables saved game progress files
|
203
|
+
# Move a copy of your YouTube playables saved game progress files
|
201
204
|
AUTH_DATAPORTABILITY_YOUTUBE_PLAYABLE = 'https://www.googleapis.com/auth/dataportability.youtube.playable'
|
202
205
|
|
203
|
-
# Move a copy of your YouTube posts
|
206
|
+
# Move a copy of your YouTube posts
|
204
207
|
AUTH_DATAPORTABILITY_YOUTUBE_POSTS = 'https://www.googleapis.com/auth/dataportability.youtube.posts'
|
205
208
|
|
206
|
-
# Move a copy of your YouTube private playlists
|
209
|
+
# Move a copy of your YouTube private playlists
|
207
210
|
AUTH_DATAPORTABILITY_YOUTUBE_PRIVATE_PLAYLISTS = 'https://www.googleapis.com/auth/dataportability.youtube.private_playlists'
|
208
211
|
|
209
|
-
# Move a copy of your private YouTube videos and information about them
|
212
|
+
# Move a copy of your private YouTube videos and information about them
|
210
213
|
AUTH_DATAPORTABILITY_YOUTUBE_PRIVATE_VIDEOS = 'https://www.googleapis.com/auth/dataportability.youtube.private_videos'
|
211
214
|
|
212
|
-
# Move a copy of your public YouTube playlists
|
215
|
+
# Move a copy of your public YouTube playlists
|
213
216
|
AUTH_DATAPORTABILITY_YOUTUBE_PUBLIC_PLAYLISTS = 'https://www.googleapis.com/auth/dataportability.youtube.public_playlists'
|
214
217
|
|
215
|
-
# Move a copy of your public YouTube videos and information about them
|
218
|
+
# Move a copy of your public YouTube videos and information about them
|
216
219
|
AUTH_DATAPORTABILITY_YOUTUBE_PUBLIC_VIDEOS = 'https://www.googleapis.com/auth/dataportability.youtube.public_videos'
|
217
220
|
|
218
|
-
# Move a copy of your YouTube shopping wishlists, and wishlist items
|
221
|
+
# Move a copy of your YouTube shopping wishlists, and wishlist items
|
219
222
|
AUTH_DATAPORTABILITY_YOUTUBE_SHOPPING = 'https://www.googleapis.com/auth/dataportability.youtube.shopping'
|
220
223
|
|
221
|
-
# Move a copy of your YouTube channel subscriptions, even if they're private
|
224
|
+
# Move a copy of your YouTube channel subscriptions, even if they're private
|
222
225
|
AUTH_DATAPORTABILITY_YOUTUBE_SUBSCRIPTIONS = 'https://www.googleapis.com/auth/dataportability.youtube.subscriptions'
|
223
226
|
|
224
|
-
# Move a copy of your unlisted YouTube playlists
|
227
|
+
# Move a copy of your unlisted YouTube playlists
|
225
228
|
AUTH_DATAPORTABILITY_YOUTUBE_UNLISTED_PLAYLISTS = 'https://www.googleapis.com/auth/dataportability.youtube.unlisted_playlists'
|
226
229
|
|
227
|
-
# Move a copy of your unlisted YouTube videos and information about them
|
230
|
+
# Move a copy of your unlisted YouTube videos and information about them
|
228
231
|
AUTH_DATAPORTABILITY_YOUTUBE_UNLISTED_VIDEOS = 'https://www.googleapis.com/auth/dataportability.youtube.unlisted_videos'
|
229
232
|
end
|
230
233
|
end
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-dataportability_v1beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.12.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-03-09 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: google-apis-core
|
@@ -58,9 +57,8 @@ licenses:
|
|
58
57
|
metadata:
|
59
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataportability_v1beta/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dataportability_v1beta/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dataportability_v1beta/v0.12.0
|
62
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataportability_v1beta
|
63
|
-
post_install_message:
|
64
62
|
rdoc_options: []
|
65
63
|
require_paths:
|
66
64
|
- lib
|
@@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
73
|
- !ruby/object:Gem::Version
|
76
74
|
version: '0'
|
77
75
|
requirements: []
|
78
|
-
rubygems_version: 3.5
|
79
|
-
signing_key:
|
76
|
+
rubygems_version: 3.6.5
|
80
77
|
specification_version: 4
|
81
78
|
summary: Simple REST client for Data Portability API V1beta
|
82
79
|
test_files: []
|