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