google-apis-slides_v1 0.11.0 → 0.14.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 +13 -0
- data/OVERVIEW.md +1 -1
- data/lib/google/apis/slides_v1/classes.rb +27 -23
- data/lib/google/apis/slides_v1/gem_version.rb +3 -3
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c2f07e0672d5ed9597363fde5af17c6a9e3818f3703b12e206778bb109093352
|
4
|
+
data.tar.gz: 7106090649d34fb65c1a34ee2c1842359eb922337d6c948a04a009ac3dfca2bc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6c40f7add000b59d89469e092230a1ef55671bb09b389ffa1d609925c025077154a4dcb406ddfb32585f9609b3bab294d4fba761109f48aad1d549b3337ea5c6
|
7
|
+
data.tar.gz: bd4ef2fe67202c28dd73da6443aa0f315b90b98b7209a5f42cf49c20625589ffc7b1ce39e4976b7478ad11b48c79331c9232b8357da378ed7aea8b6cc34fab55
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,18 @@
|
|
1
1
|
# Release history for google-apis-slides_v1
|
2
2
|
|
3
|
+
### v0.14.0 (2022-04-13)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220404
|
6
|
+
|
7
|
+
### v0.13.0 (2022-03-29)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220322
|
10
|
+
* Regenerated using generator version 0.4.1
|
11
|
+
|
12
|
+
### v0.12.0 (2021-12-16)
|
13
|
+
|
14
|
+
* Unspecified changes
|
15
|
+
|
3
16
|
### v0.11.0 (2021-10-20)
|
4
17
|
|
5
18
|
* Unspecified changes
|
data/OVERVIEW.md
CHANGED
@@ -51,7 +51,7 @@ require "google/apis/slides_v1"
|
|
51
51
|
client = Google::Apis::SlidesV1::SlidesService.new
|
52
52
|
|
53
53
|
# Authenticate calls
|
54
|
-
client.
|
54
|
+
client.authorization = # ... use the googleauth gem to create credentials
|
55
55
|
```
|
56
56
|
|
57
57
|
See the class reference docs for information on the methods you can call from a client.
|
@@ -2013,16 +2013,17 @@ module Google
|
|
2013
2013
|
# @return [String]
|
2014
2014
|
attr_accessor :page_type
|
2015
2015
|
|
2016
|
-
# The revision ID of the presentation
|
2017
|
-
#
|
2018
|
-
#
|
2019
|
-
#
|
2020
|
-
#
|
2021
|
-
# 24 hours after it has been returned and cannot be
|
2022
|
-
# revision ID is unchanged between calls, then the
|
2023
|
-
# Conversely, a changed ID (for the same
|
2024
|
-
#
|
2025
|
-
# internal factors such as ID format
|
2016
|
+
# Output only. The revision ID of the presentation. Can be used in update
|
2017
|
+
# requests to assert the presentation revision hasn't changed since the last
|
2018
|
+
# read operation. Only populated if the user has edit access to the presentation.
|
2019
|
+
# The revision ID is not a sequential number but an opaque string. The format
|
2020
|
+
# of the revision ID might change over time. A returned revision ID is only
|
2021
|
+
# guaranteed to be valid for 24 hours after it has been returned and cannot be
|
2022
|
+
# shared across users. If the revision ID is unchanged between calls, then the
|
2023
|
+
# presentation has not changed. Conversely, a changed ID (for the same
|
2024
|
+
# presentation and user) usually means the presentation has been updated.
|
2025
|
+
# However, a changed ID can also be due to internal factors such as ID format
|
2026
|
+
# changes.
|
2026
2027
|
# Corresponds to the JSON property `revisionId`
|
2027
2028
|
# @return [String]
|
2028
2029
|
attr_accessor :revision_id
|
@@ -2435,15 +2436,16 @@ module Google
|
|
2435
2436
|
# @return [String]
|
2436
2437
|
attr_accessor :presentation_id
|
2437
2438
|
|
2438
|
-
# The revision ID of the presentation. Can be used in update
|
2439
|
-
#
|
2440
|
-
# Only populated if the user has edit access to the presentation.
|
2441
|
-
#
|
2439
|
+
# Output only. The revision ID of the presentation. Can be used in update
|
2440
|
+
# requests to assert the presentation revision hasn't changed since the last
|
2441
|
+
# read operation. Only populated if the user has edit access to the presentation.
|
2442
|
+
# The revision ID is not a sequential number but a nebulous string. The format
|
2443
|
+
# of the revision ID may change over time, so it should be treated opaquely. A
|
2442
2444
|
# returned revision ID is only guaranteed to be valid for 24 hours after it has
|
2443
2445
|
# been returned and cannot be shared across users. If the revision ID is
|
2444
2446
|
# unchanged between calls, then the presentation has not changed. Conversely, a
|
2445
2447
|
# changed ID (for the same presentation and user) usually means the presentation
|
2446
|
-
# has been updated
|
2448
|
+
# has been updated. However, a changed ID can also be due to internal factors
|
2447
2449
|
# such as ID format changes.
|
2448
2450
|
# Corresponds to the JSON property `revisionId`
|
2449
2451
|
# @return [String]
|
@@ -2768,7 +2770,8 @@ module Google
|
|
2768
2770
|
class ReplaceImageRequest
|
2769
2771
|
include Google::Apis::Core::Hashable
|
2770
2772
|
|
2771
|
-
# The ID of the existing image that will be replaced.
|
2773
|
+
# The ID of the existing image that will be replaced. The ID can be retrieved
|
2774
|
+
# from the response of a get request.
|
2772
2775
|
# Corresponds to the JSON property `imageObjectId`
|
2773
2776
|
# @return [String]
|
2774
2777
|
attr_accessor :image_object_id
|
@@ -2779,10 +2782,10 @@ module Google
|
|
2779
2782
|
attr_accessor :image_replace_method
|
2780
2783
|
|
2781
2784
|
# The image URL. The image is fetched once at insertion time and a copy is
|
2782
|
-
# stored for display inside the presentation. Images must be less than 50MB
|
2783
|
-
#
|
2784
|
-
#
|
2785
|
-
#
|
2785
|
+
# stored for display inside the presentation. Images must be less than 50MB,
|
2786
|
+
# cannot exceed 25 megapixels, and must be in PNG, JPEG, or GIF format. The
|
2787
|
+
# provided URL can't surpass 2 KB in length. The URL is saved with the image,
|
2788
|
+
# and exposed through the Image.source_url field.
|
2786
2789
|
# Corresponds to the JSON property `url`
|
2787
2790
|
# @return [String]
|
2788
2791
|
attr_accessor :url
|
@@ -5234,9 +5237,10 @@ module Google
|
|
5234
5237
|
include Google::Apis::Core::Hashable
|
5235
5238
|
|
5236
5239
|
# The revision ID of the presentation required for the write request. If
|
5237
|
-
# specified and the
|
5238
|
-
#
|
5239
|
-
#
|
5240
|
+
# specified and the required revision ID doesn't match the presentation's
|
5241
|
+
# current revision ID, the request is not processed and returns a 400 bad
|
5242
|
+
# request error. When a required revision ID is returned in a response, it
|
5243
|
+
# indicates the revision ID of the document after the request was applied.
|
5240
5244
|
# Corresponds to the JSON property `requiredRevisionId`
|
5241
5245
|
# @return [String]
|
5242
5246
|
attr_accessor :required_revision_id
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module SlidesV1
|
18
18
|
# Version of the google-apis-slides_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.14.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.4.
|
22
|
+
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220404"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-slides_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.14.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:
|
11
|
+
date: 2022-04-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-slides_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-slides_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-slides_v1/v0.14.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-slides_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.
|
78
|
+
rubygems_version: 3.3.5
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Google Slides API V1
|