Skip to content

Commit 9191ad0

Browse files
feat: Automated regeneration of youtube v3 client (#15469)
Auto-created at 2023-07-16 10:38:06 +0000 using the toys pull request generator.
1 parent cd43601 commit 9191ad0

File tree

5 files changed

+14
-2
lines changed

5 files changed

+14
-2
lines changed

api_names_out.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -288027,6 +288027,7 @@
288027288027
"/youtube:v3/PlaylistSnippet/thumbnails": thumbnails
288028288028
"/youtube:v3/PlaylistSnippet/title": title
288029288029
"/youtube:v3/PlaylistStatus": playlist_status
288030+
"/youtube:v3/PlaylistStatus/podcastStatus": podcast_status
288030288031
"/youtube:v3/PlaylistStatus/privacyStatus": privacy_status
288031288032
"/youtube:v3/PromotedItem": promoted_item
288032288033
"/youtube:v3/PromotedItem/customMessage": custom_message

generated/google-apis-youtube_v3/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release history for google-apis-youtube_v3
22

3+
### v0.30.0 (2023-07-16)
4+
5+
* Regenerated from discovery document revision 20230711
6+
37
### v0.29.0 (2023-05-07)
48

59
* Regenerated from discovery document revision 20230502

generated/google-apis-youtube_v3/lib/google/apis/youtube_v3/classes.rb

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6229,6 +6229,11 @@ def update!(**args)
62296229
class PlaylistStatus
62306230
include Google::Apis::Core::Hashable
62316231

6232+
#
6233+
# Corresponds to the JSON property `podcastStatus`
6234+
# @return [String]
6235+
attr_accessor :podcast_status
6236+
62326237
# The playlist's privacy status.
62336238
# Corresponds to the JSON property `privacyStatus`
62346239
# @return [String]
@@ -6240,6 +6245,7 @@ def initialize(**args)
62406245

62416246
# Update properties of this object
62426247
def update!(**args)
6248+
@podcast_status = args[:podcast_status] if args.key?(:podcast_status)
62436249
@privacy_status = args[:privacy_status] if args.key?(:privacy_status)
62446250
end
62456251
end

generated/google-apis-youtube_v3/lib/google/apis/youtube_v3/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module YoutubeV3
1818
# Version of the google-apis-youtube_v3 gem
19-
GEM_VERSION = "0.29.0"
19+
GEM_VERSION = "0.30.0"
2020

2121
# Version of the code generator used to generate this client
2222
GENERATOR_VERSION = "0.12.0"
2323

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20230502"
25+
REVISION = "20230711"
2626
end
2727
end
2828
end

generated/google-apis-youtube_v3/lib/google/apis/youtube_v3/representations.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2772,6 +2772,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
27722772
class PlaylistStatus
27732773
# @private
27742774
class Representation < Google::Apis::Core::JsonRepresentation
2775+
property :podcast_status, as: 'podcastStatus'
27752776
property :privacy_status, as: 'privacyStatus'
27762777
end
27772778
end

0 commit comments

Comments
 (0)