google-apis-slides_v1 0.8.0 → 0.9.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: c40434a22b029a26e19fb23074862b47bb3154cdbff81b33758e185bb1fd5fa1
4
- data.tar.gz: 9f3c7fcf45c9468f64af89174576ec63b483c9bc3fe54d9276306a84ce74c0dd
3
+ metadata.gz: d188c626bcc147cac0ea339bbeb1500b416c7969d2f12333f48e87627b087c23
4
+ data.tar.gz: c8cb2567f5389433d1e0828298e0ce24288984b5ab0869092222decb69030710
5
5
  SHA512:
6
- metadata.gz: 2d18df9b603a725de7ae009e32c4684fe074dbe01bcf416c68086a1a7e2758205876f3e7af0c6ef94dde3322352230daa602f8e3172d7c3f12f78be1e256ae95
7
- data.tar.gz: 4fb407c2224136e58b025b3c8a02e5e1616025236f2f0a090e5e57409e89b6bf7c49bbb78be5af93d8a986d5ed01f487a35d06ff08e67713e36338cc4a7cba2d
6
+ metadata.gz: 9f4942248f55a1653f1a9f5eed3196d419be13a1f8899e0863f6ceb39b050c14cebcef284cf67f2a7bbbe816fed92cbddaa4abd9a6c49bf0385693892fcd6665
7
+ data.tar.gz: 56ba32ca5439405d45f4df016373bda60daaeff7cb1b31c4a4986bec1e7cad3d93f20989fc69d53e12bb4b5c7e9936046e3cfa26cd61cdd88df8ce14cbe0fcdf
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-slides_v1
2
2
 
3
+ ### v0.9.0 (2021-07-13)
4
+
5
+ * Regenerated from discovery document revision 20210706
6
+
3
7
  ### v0.8.0 (2021-07-08)
4
8
 
5
9
  * Regenerated from discovery document revision 20210629
@@ -3011,6 +3011,11 @@ module Google
3011
3011
  # @return [Google::Apis::SlidesV1::UpdateShapePropertiesRequest]
3012
3012
  attr_accessor :update_shape_properties
3013
3013
 
3014
+ # Updates the properties of a Slide.
3015
+ # Corresponds to the JSON property `updateSlideProperties`
3016
+ # @return [Google::Apis::SlidesV1::UpdateSlidePropertiesRequest]
3017
+ attr_accessor :update_slide_properties
3018
+
3014
3019
  # Updates the position of slides in the presentation.
3015
3020
  # Corresponds to the JSON property `updateSlidesPosition`
3016
3021
  # @return [Google::Apis::SlidesV1::UpdateSlidesPositionRequest]
@@ -3088,6 +3093,7 @@ module Google
3088
3093
  @update_page_properties = args[:update_page_properties] if args.key?(:update_page_properties)
3089
3094
  @update_paragraph_style = args[:update_paragraph_style] if args.key?(:update_paragraph_style)
3090
3095
  @update_shape_properties = args[:update_shape_properties] if args.key?(:update_shape_properties)
3096
+ @update_slide_properties = args[:update_slide_properties] if args.key?(:update_slide_properties)
3091
3097
  @update_slides_position = args[:update_slides_position] if args.key?(:update_slides_position)
3092
3098
  @update_table_border_properties = args[:update_table_border_properties] if args.key?(:update_table_border_properties)
3093
3099
  @update_table_cell_properties = args[:update_table_cell_properties] if args.key?(:update_table_cell_properties)
@@ -4723,6 +4729,42 @@ module Google
4723
4729
  end
4724
4730
  end
4725
4731
 
4732
+ # Updates the properties of a Slide.
4733
+ class UpdateSlidePropertiesRequest
4734
+ include Google::Apis::Core::Hashable
4735
+
4736
+ # The fields that should be updated. At least one field must be specified. The
4737
+ # root 'slideProperties' is implied and should not be specified. A single `"*"`
4738
+ # can be used as short-hand for listing every field. For example to update
4739
+ # whether a slide is skipped, set `fields` to `"isSkipped"`. To reset a property
4740
+ # to its default value, include its field name in the field mask but leave the
4741
+ # field itself unset.
4742
+ # Corresponds to the JSON property `fields`
4743
+ # @return [String]
4744
+ attr_accessor :fields
4745
+
4746
+ # The object ID of the slide the update is applied to.
4747
+ # Corresponds to the JSON property `objectId`
4748
+ # @return [String]
4749
+ attr_accessor :object_id_prop
4750
+
4751
+ # The properties of Page that are only relevant for pages with page_type SLIDE.
4752
+ # Corresponds to the JSON property `slideProperties`
4753
+ # @return [Google::Apis::SlidesV1::SlideProperties]
4754
+ attr_accessor :slide_properties
4755
+
4756
+ def initialize(**args)
4757
+ update!(**args)
4758
+ end
4759
+
4760
+ # Update properties of this object
4761
+ def update!(**args)
4762
+ @fields = args[:fields] if args.key?(:fields)
4763
+ @object_id_prop = args[:object_id_prop] if args.key?(:object_id_prop)
4764
+ @slide_properties = args[:slide_properties] if args.key?(:slide_properties)
4765
+ end
4766
+ end
4767
+
4726
4768
  # Updates the position of slides in the presentation.
4727
4769
  class UpdateSlidesPositionRequest
4728
4770
  include Google::Apis::Core::Hashable
@@ -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.8.0"
19
+ GEM_VERSION = "0.9.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210629"
25
+ REVISION = "20210706"
26
26
  end
27
27
  end
28
28
  end
@@ -748,6 +748,12 @@ module Google
748
748
  include Google::Apis::Core::JsonObjectSupport
749
749
  end
750
750
 
751
+ class UpdateSlidePropertiesRequest
752
+ class Representation < Google::Apis::Core::JsonRepresentation; end
753
+
754
+ include Google::Apis::Core::JsonObjectSupport
755
+ end
756
+
751
757
  class UpdateSlidesPositionRequest
752
758
  class Representation < Google::Apis::Core::JsonRepresentation; end
753
759
 
@@ -1670,6 +1676,8 @@ module Google
1670
1676
 
1671
1677
  property :update_shape_properties, as: 'updateShapeProperties', class: Google::Apis::SlidesV1::UpdateShapePropertiesRequest, decorator: Google::Apis::SlidesV1::UpdateShapePropertiesRequest::Representation
1672
1678
 
1679
+ property :update_slide_properties, as: 'updateSlideProperties', class: Google::Apis::SlidesV1::UpdateSlidePropertiesRequest, decorator: Google::Apis::SlidesV1::UpdateSlidePropertiesRequest::Representation
1680
+
1673
1681
  property :update_slides_position, as: 'updateSlidesPosition', class: Google::Apis::SlidesV1::UpdateSlidesPositionRequest, decorator: Google::Apis::SlidesV1::UpdateSlidesPositionRequest::Representation
1674
1682
 
1675
1683
  property :update_table_border_properties, as: 'updateTableBorderProperties', class: Google::Apis::SlidesV1::UpdateTableBorderPropertiesRequest, decorator: Google::Apis::SlidesV1::UpdateTableBorderPropertiesRequest::Representation
@@ -2165,6 +2173,16 @@ module Google
2165
2173
  end
2166
2174
  end
2167
2175
 
2176
+ class UpdateSlidePropertiesRequest
2177
+ # @private
2178
+ class Representation < Google::Apis::Core::JsonRepresentation
2179
+ property :fields, as: 'fields'
2180
+ property :object_id_prop, as: 'objectId'
2181
+ property :slide_properties, as: 'slideProperties', class: Google::Apis::SlidesV1::SlideProperties, decorator: Google::Apis::SlidesV1::SlideProperties::Representation
2182
+
2183
+ end
2184
+ end
2185
+
2168
2186
  class UpdateSlidesPositionRequest
2169
2187
  # @private
2170
2188
  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.8.0
4
+ version: 0.9.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-07-12 00:00:00.000000000 Z
11
+ date: 2021-07-19 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/master/generated/google-apis-slides_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-slides_v1/v0.8.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-slides_v1/v0.9.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-slides_v1
63
63
  post_install_message:
64
64
  rdoc_options: []