google-apis-slides_v1 0.26.0 → 0.27.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7834c518a42310f72fe47765a3b035387ab0e320cfb9deb3a1fbbc53a05b0a94
4
- data.tar.gz: fd7d5ce64d469abb717ef05d7307c53efa3e508606349935c57d755d371400f9
3
+ metadata.gz: 8acaf8af8e1448c7617a2f07eaba5415b217fec3cc8ad6a3bfc146119d5acf95
4
+ data.tar.gz: 4b7ff67ee1fcfe2958c9755de0ec8130ec656e58cafba941a5e9ce14e71b265d
5
5
  SHA512:
6
- metadata.gz: 331e88b1ba1e16143547c34d37235e4d2fff5f97303c04b513b0d04f449dd494744c092b867e23dc5df3be0ec211ded82905b49589be3347031f6fe0f30562d8
7
- data.tar.gz: e09210c9ea3dac22b179ee90333c9159c582a8c41481b8a5a9e153a14ff7cc375c27310a6fdd20eb5443a0b806ed3accb7b49a815a64ae163b09694de8ca0ed7
6
+ metadata.gz: 00ef0ed816ef57748d712b5eec8c9253b81c492f5865e301e3b31a864e5782cc0ca841ff188602a7bee903d49128067102a5beb45233ff17b8fa26e4e9fb4e85
7
+ data.tar.gz: d8ea2ff12f813996922b7295b45493db30aaf36215c25053c08d10f7e38c9e19c395d644a8d0f951115a8347c21f1b4b6cab381e7e98fd484d67dc05b1cd70ba
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-slides_v1
2
2
 
3
+ ### v0.27.0 (2024-03-17)
4
+
5
+ * Regenerated from discovery document revision 20240305
6
+
3
7
  ### v0.26.0 (2024-02-23)
4
8
 
5
9
  * Regenerated using generator version 0.14.0
@@ -2138,6 +2138,11 @@ module Google
2138
2138
  # @return [Google::Apis::SlidesV1::Size]
2139
2139
  attr_accessor :size
2140
2140
 
2141
+ # A PageElement kind representing a Speaker Spotlight.
2142
+ # Corresponds to the JSON property `speakerSpotlight`
2143
+ # @return [Google::Apis::SlidesV1::SpeakerSpotlight]
2144
+ attr_accessor :speaker_spotlight
2145
+
2141
2146
  # A PageElement kind representing a table.
2142
2147
  # Corresponds to the JSON property `table`
2143
2148
  # @return [Google::Apis::SlidesV1::Table]
@@ -2182,6 +2187,7 @@ module Google
2182
2187
  @shape = args[:shape] if args.key?(:shape)
2183
2188
  @sheets_chart = args[:sheets_chart] if args.key?(:sheets_chart)
2184
2189
  @size = args[:size] if args.key?(:size)
2190
+ @speaker_spotlight = args[:speaker_spotlight] if args.key?(:speaker_spotlight)
2185
2191
  @table = args[:table] if args.key?(:table)
2186
2192
  @title = args[:title] if args.key?(:title)
2187
2193
  @transform = args[:transform] if args.key?(:transform)
@@ -3619,6 +3625,56 @@ module Google
3619
3625
  end
3620
3626
  end
3621
3627
 
3628
+ # A PageElement kind representing a Speaker Spotlight.
3629
+ class SpeakerSpotlight
3630
+ include Google::Apis::Core::Hashable
3631
+
3632
+ # The properties of the SpeakerSpotlight.
3633
+ # Corresponds to the JSON property `speakerSpotlightProperties`
3634
+ # @return [Google::Apis::SlidesV1::SpeakerSpotlightProperties]
3635
+ attr_accessor :speaker_spotlight_properties
3636
+
3637
+ def initialize(**args)
3638
+ update!(**args)
3639
+ end
3640
+
3641
+ # Update properties of this object
3642
+ def update!(**args)
3643
+ @speaker_spotlight_properties = args[:speaker_spotlight_properties] if args.key?(:speaker_spotlight_properties)
3644
+ end
3645
+ end
3646
+
3647
+ # The properties of the SpeakerSpotlight.
3648
+ class SpeakerSpotlightProperties
3649
+ include Google::Apis::Core::Hashable
3650
+
3651
+ # The outline of a PageElement. If these fields are unset, they may be inherited
3652
+ # from a parent placeholder if it exists. If there is no parent, the fields will
3653
+ # default to the value used for new page elements created in the Slides editor,
3654
+ # which may depend on the page element kind.
3655
+ # Corresponds to the JSON property `outline`
3656
+ # @return [Google::Apis::SlidesV1::Outline]
3657
+ attr_accessor :outline
3658
+
3659
+ # The shadow properties of a page element. If these fields are unset, they may
3660
+ # be inherited from a parent placeholder if it exists. If there is no parent,
3661
+ # the fields will default to the value used for new page elements created in the
3662
+ # Slides editor, which may depend on the page element kind.
3663
+ # Corresponds to the JSON property `shadow`
3664
+ # @return [Google::Apis::SlidesV1::Shadow]
3665
+ attr_accessor :shadow
3666
+
3667
+ def initialize(**args)
3668
+ update!(**args)
3669
+ end
3670
+
3671
+ # Update properties of this object
3672
+ def update!(**args)
3673
+ @outline = args[:outline] if args.key?(:outline)
3674
+ @shadow = args[:shadow] if args.key?(:shadow)
3675
+ end
3676
+ end
3677
+
3622
3678
  # The stretched picture fill. The page or page element is filled entirely with
3623
3679
  # the specified picture. The picture is stretched to fit its container.
3624
3680
  class StretchedPictureFill
@@ -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.26.0"
19
+ GEM_VERSION = "0.27.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.14.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230705"
25
+ REVISION = "20240305"
26
26
  end
27
27
  end
28
28
  end
@@ -556,6 +556,18 @@ module Google
556
556
  include Google::Apis::Core::JsonObjectSupport
557
557
  end
558
558
 
559
+ class SpeakerSpotlight
560
+ class Representation < Google::Apis::Core::JsonRepresentation; end
561
+
562
+ include Google::Apis::Core::JsonObjectSupport
563
+ end
564
+
565
+ class SpeakerSpotlightProperties
566
+ class Representation < Google::Apis::Core::JsonRepresentation; end
567
+
568
+ include Google::Apis::Core::JsonObjectSupport
569
+ end
570
+
559
571
  class StretchedPictureFill
560
572
  class Representation < Google::Apis::Core::JsonRepresentation; end
561
573
 
@@ -1422,6 +1434,8 @@ module Google
1422
1434
 
1423
1435
  property :size, as: 'size', class: Google::Apis::SlidesV1::Size, decorator: Google::Apis::SlidesV1::Size::Representation
1424
1436
 
1437
+ property :speaker_spotlight, as: 'speakerSpotlight', class: Google::Apis::SlidesV1::SpeakerSpotlight, decorator: Google::Apis::SlidesV1::SpeakerSpotlight::Representation
1438
+
1425
1439
  property :table, as: 'table', class: Google::Apis::SlidesV1::Table, decorator: Google::Apis::SlidesV1::Table::Representation
1426
1440
 
1427
1441
  property :title, as: 'title'
@@ -1848,6 +1862,24 @@ module Google
1848
1862
  end
1849
1863
  end
1850
1864
 
1865
+ class SpeakerSpotlight
1866
+ # @private
1867
+ class Representation < Google::Apis::Core::JsonRepresentation
1868
+ property :speaker_spotlight_properties, as: 'speakerSpotlightProperties', class: Google::Apis::SlidesV1::SpeakerSpotlightProperties, decorator: Google::Apis::SlidesV1::SpeakerSpotlightProperties::Representation
1869
+
1870
+ end
1871
+ end
1872
+
1873
+ class SpeakerSpotlightProperties
1874
+ # @private
1875
+ class Representation < Google::Apis::Core::JsonRepresentation
1876
+ property :outline, as: 'outline', class: Google::Apis::SlidesV1::Outline, decorator: Google::Apis::SlidesV1::Outline::Representation
1877
+
1878
+ property :shadow, as: 'shadow', class: Google::Apis::SlidesV1::Shadow, decorator: Google::Apis::SlidesV1::Shadow::Representation
1879
+
1880
+ end
1881
+ end
1882
+
1851
1883
  class StretchedPictureFill
1852
1884
  # @private
1853
1885
  class Representation < Google::Apis::Core::JsonRepresentation
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.26.0
4
+ version: 0.27.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: 2024-02-25 00:00:00.000000000 Z
11
+ date: 2024-03-17 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.26.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-slides_v1/v0.27.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: []