google-apis-youtube_v3 0.6.0 → 0.10.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: eb3a92bfe8bb49e0a020a128056b86a2c68d153df554279cdbf70830a9adace2
|
4
|
+
data.tar.gz: aba8d1749c0aa63f716ad6ced6756c3b726a82e9eb3bac986606ffa30ad30aad
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6f6541c513d84c0c802a69cde1852291d716b0de7ca715ddf1b44b47abf196201fa29f8bf9cecad53a4071d2910b5d09bce61a62438e7763c8b37aaf71713ed2
|
7
|
+
data.tar.gz: 2316a5572f643bc8640c7722295607b0c39d9b660063243cad39c5b8086add167229cbf7209c5087b8eee366d19b315b9eaf9addad721d5a09a7ea77445537c4
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,22 @@
|
|
1
1
|
# Release history for google-apis-youtube_v3
|
2
2
|
|
3
|
+
### v0.10.0 (2021-09-01)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20210828
|
6
|
+
|
7
|
+
### v0.9.0 (2021-06-29)
|
8
|
+
|
9
|
+
* Regenerated using generator version 0.4.0
|
10
|
+
|
11
|
+
### v0.8.0 (2021-06-25)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20210624
|
14
|
+
|
15
|
+
### v0.7.0 (2021-06-03)
|
16
|
+
|
17
|
+
* Regenerated from discovery document revision 20210601
|
18
|
+
* Regenerated using generator version 0.3.0
|
19
|
+
|
3
20
|
### v0.6.0 (2021-05-20)
|
4
21
|
|
5
22
|
* Regenerated from discovery document revision 20210410
|
@@ -4058,6 +4058,42 @@ module Google
|
|
4058
4058
|
end
|
4059
4059
|
end
|
4060
4060
|
|
4061
|
+
#
|
4062
|
+
class LiveChatMemberMilestoneChatDetails
|
4063
|
+
include Google::Apis::Core::Hashable
|
4064
|
+
|
4065
|
+
# The name of the Level at which the viever is a member. The Level names are
|
4066
|
+
# defined by the YouTube channel offering the Membership. In some situations
|
4067
|
+
# this field isn't filled.
|
4068
|
+
# Corresponds to the JSON property `memberLevelName`
|
4069
|
+
# @return [String]
|
4070
|
+
attr_accessor :member_level_name
|
4071
|
+
|
4072
|
+
# The total amount of months (rounded up) the viewer has been a member that
|
4073
|
+
# granted them this Member Milestone Chat. This is the same number of months as
|
4074
|
+
# is being displayed to YouTube users.
|
4075
|
+
# Corresponds to the JSON property `memberMonth`
|
4076
|
+
# @return [Fixnum]
|
4077
|
+
attr_accessor :member_month
|
4078
|
+
|
4079
|
+
# The comment added by the member to this Member Milestone Chat. This field is
|
4080
|
+
# empty for messages without a comment from the member.
|
4081
|
+
# Corresponds to the JSON property `userComment`
|
4082
|
+
# @return [String]
|
4083
|
+
attr_accessor :user_comment
|
4084
|
+
|
4085
|
+
def initialize(**args)
|
4086
|
+
update!(**args)
|
4087
|
+
end
|
4088
|
+
|
4089
|
+
# Update properties of this object
|
4090
|
+
def update!(**args)
|
4091
|
+
@member_level_name = args[:member_level_name] if args.key?(:member_level_name)
|
4092
|
+
@member_month = args[:member_month] if args.key?(:member_month)
|
4093
|
+
@user_comment = args[:user_comment] if args.key?(:user_comment)
|
4094
|
+
end
|
4095
|
+
end
|
4096
|
+
|
4061
4097
|
# A *liveChatMessage* resource represents a chat message in a YouTube Live Chat.
|
4062
4098
|
class LiveChatMessage
|
4063
4099
|
include Google::Apis::Core::Hashable
|
@@ -4084,7 +4120,7 @@ module Google
|
|
4084
4120
|
# @return [String]
|
4085
4121
|
attr_accessor :kind
|
4086
4122
|
|
4087
|
-
#
|
4123
|
+
# Next ID: 31
|
4088
4124
|
# Corresponds to the JSON property `snippet`
|
4089
4125
|
# @return [Google::Apis::YoutubeV3::LiveChatMessageSnippet]
|
4090
4126
|
attr_accessor :snippet
|
@@ -4281,17 +4317,18 @@ module Google
|
|
4281
4317
|
end
|
4282
4318
|
end
|
4283
4319
|
|
4284
|
-
#
|
4320
|
+
# Next ID: 31
|
4285
4321
|
class LiveChatMessageSnippet
|
4286
4322
|
include Google::Apis::Core::Hashable
|
4287
4323
|
|
4288
4324
|
# The ID of the user that authored this message, this field is not always filled.
|
4289
4325
|
# textMessageEvent - the user that wrote the message fanFundingEvent - the user
|
4290
4326
|
# that funded the broadcast newSponsorEvent - the user that just became a
|
4291
|
-
# sponsor
|
4292
|
-
#
|
4293
|
-
#
|
4294
|
-
# that made the purchase
|
4327
|
+
# sponsor memberMilestoneChatEvent - the member that sent the message
|
4328
|
+
# messageDeletedEvent - the moderator that took the action messageRetractedEvent
|
4329
|
+
# - the author that retracted their message userBannedEvent - the moderator that
|
4330
|
+
# took the action superChatEvent - the user that made the purchase
|
4331
|
+
# superStickerEvent - the user that made the purchase
|
4295
4332
|
# Corresponds to the JSON property `authorChannelId`
|
4296
4333
|
# @return [String]
|
4297
4334
|
attr_accessor :author_channel_id
|
@@ -4320,6 +4357,12 @@ module Google
|
|
4320
4357
|
# @return [String]
|
4321
4358
|
attr_accessor :live_chat_id
|
4322
4359
|
|
4360
|
+
# Details about the Member Milestone Chat event, this is only set if the type is
|
4361
|
+
# 'memberMilestoneChatEvent'.
|
4362
|
+
# Corresponds to the JSON property `memberMilestoneChatDetails`
|
4363
|
+
# @return [Google::Apis::YoutubeV3::LiveChatMemberMilestoneChatDetails]
|
4364
|
+
attr_accessor :member_milestone_chat_details
|
4365
|
+
|
4323
4366
|
#
|
4324
4367
|
# Corresponds to the JSON property `messageDeletedDetails`
|
4325
4368
|
# @return [Google::Apis::YoutubeV3::LiveChatMessageDeletedDetails]
|
@@ -4330,6 +4373,12 @@ module Google
|
|
4330
4373
|
# @return [Google::Apis::YoutubeV3::LiveChatMessageRetractedDetails]
|
4331
4374
|
attr_accessor :message_retracted_details
|
4332
4375
|
|
4376
|
+
# Details about the New Member Announcement event, this is only set if the type
|
4377
|
+
# is 'newSponsorEvent'. Please note that "member" is the new term for "sponsor".
|
4378
|
+
# Corresponds to the JSON property `newSponsorDetails`
|
4379
|
+
# @return [Google::Apis::YoutubeV3::LiveChatNewSponsorDetails]
|
4380
|
+
attr_accessor :new_sponsor_details
|
4381
|
+
|
4333
4382
|
# The date and time when the message was orignally published.
|
4334
4383
|
# Corresponds to the JSON property `publishedAt`
|
4335
4384
|
# @return [DateTime]
|
@@ -4375,8 +4424,10 @@ module Google
|
|
4375
4424
|
@fan_funding_event_details = args[:fan_funding_event_details] if args.key?(:fan_funding_event_details)
|
4376
4425
|
@has_display_content = args[:has_display_content] if args.key?(:has_display_content)
|
4377
4426
|
@live_chat_id = args[:live_chat_id] if args.key?(:live_chat_id)
|
4427
|
+
@member_milestone_chat_details = args[:member_milestone_chat_details] if args.key?(:member_milestone_chat_details)
|
4378
4428
|
@message_deleted_details = args[:message_deleted_details] if args.key?(:message_deleted_details)
|
4379
4429
|
@message_retracted_details = args[:message_retracted_details] if args.key?(:message_retracted_details)
|
4430
|
+
@new_sponsor_details = args[:new_sponsor_details] if args.key?(:new_sponsor_details)
|
4380
4431
|
@published_at = args[:published_at] if args.key?(:published_at)
|
4381
4432
|
@super_chat_details = args[:super_chat_details] if args.key?(:super_chat_details)
|
4382
4433
|
@super_sticker_details = args[:super_sticker_details] if args.key?(:super_sticker_details)
|
@@ -4522,6 +4573,35 @@ module Google
|
|
4522
4573
|
end
|
4523
4574
|
end
|
4524
4575
|
|
4576
|
+
#
|
4577
|
+
class LiveChatNewSponsorDetails
|
4578
|
+
include Google::Apis::Core::Hashable
|
4579
|
+
|
4580
|
+
# If the viewer just had upgraded from a lower level. For viewers that were not
|
4581
|
+
# members at the time of purchase, this field is false.
|
4582
|
+
# Corresponds to the JSON property `isUpgrade`
|
4583
|
+
# @return [Boolean]
|
4584
|
+
attr_accessor :is_upgrade
|
4585
|
+
alias_method :is_upgrade?, :is_upgrade
|
4586
|
+
|
4587
|
+
# The name of the Level that the viewer just had joined. The Level names are
|
4588
|
+
# defined by the YouTube channel offering the Membership. In some situations
|
4589
|
+
# this field isn't filled.
|
4590
|
+
# Corresponds to the JSON property `memberLevelName`
|
4591
|
+
# @return [String]
|
4592
|
+
attr_accessor :member_level_name
|
4593
|
+
|
4594
|
+
def initialize(**args)
|
4595
|
+
update!(**args)
|
4596
|
+
end
|
4597
|
+
|
4598
|
+
# Update properties of this object
|
4599
|
+
def update!(**args)
|
4600
|
+
@is_upgrade = args[:is_upgrade] if args.key?(:is_upgrade)
|
4601
|
+
@member_level_name = args[:member_level_name] if args.key?(:member_level_name)
|
4602
|
+
end
|
4603
|
+
end
|
4604
|
+
|
4525
4605
|
#
|
4526
4606
|
class LiveChatSuperChatDetails
|
4527
4607
|
include Google::Apis::Core::Hashable
|
@@ -6760,6 +6840,12 @@ module Google
|
|
6760
6840
|
class TestItem
|
6761
6841
|
include Google::Apis::Core::Hashable
|
6762
6842
|
|
6843
|
+
#
|
6844
|
+
# Corresponds to the JSON property `featuredPart`
|
6845
|
+
# @return [Boolean]
|
6846
|
+
attr_accessor :featured_part
|
6847
|
+
alias_method :featured_part?, :featured_part
|
6848
|
+
|
6763
6849
|
#
|
6764
6850
|
# Corresponds to the JSON property `gaia`
|
6765
6851
|
# @return [Fixnum]
|
@@ -6781,6 +6867,7 @@ module Google
|
|
6781
6867
|
|
6782
6868
|
# Update properties of this object
|
6783
6869
|
def update!(**args)
|
6870
|
+
@featured_part = args[:featured_part] if args.key?(:featured_part)
|
6784
6871
|
@gaia = args[:gaia] if args.key?(:gaia)
|
6785
6872
|
@id = args[:id] if args.key?(:id)
|
6786
6873
|
@snippet = args[:snippet] if args.key?(:snippet)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module YoutubeV3
|
18
18
|
# Version of the google-apis-youtube_v3 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.10.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210828"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -496,6 +496,12 @@ module Google
|
|
496
496
|
include Google::Apis::Core::JsonObjectSupport
|
497
497
|
end
|
498
498
|
|
499
|
+
class LiveChatMemberMilestoneChatDetails
|
500
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
501
|
+
|
502
|
+
include Google::Apis::Core::JsonObjectSupport
|
503
|
+
end
|
504
|
+
|
499
505
|
class LiveChatMessage
|
500
506
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
501
507
|
|
@@ -550,6 +556,12 @@ module Google
|
|
550
556
|
include Google::Apis::Core::JsonObjectSupport
|
551
557
|
end
|
552
558
|
|
559
|
+
class LiveChatNewSponsorDetails
|
560
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
561
|
+
|
562
|
+
include Google::Apis::Core::JsonObjectSupport
|
563
|
+
end
|
564
|
+
|
553
565
|
class LiveChatSuperChatDetails
|
554
566
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
555
567
|
|
@@ -2142,6 +2154,15 @@ module Google
|
|
2142
2154
|
end
|
2143
2155
|
end
|
2144
2156
|
|
2157
|
+
class LiveChatMemberMilestoneChatDetails
|
2158
|
+
# @private
|
2159
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2160
|
+
property :member_level_name, as: 'memberLevelName'
|
2161
|
+
property :member_month, as: 'memberMonth'
|
2162
|
+
property :user_comment, as: 'userComment'
|
2163
|
+
end
|
2164
|
+
end
|
2165
|
+
|
2145
2166
|
class LiveChatMessage
|
2146
2167
|
# @private
|
2147
2168
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2212,10 +2233,14 @@ module Google
|
|
2212
2233
|
|
2213
2234
|
property :has_display_content, as: 'hasDisplayContent'
|
2214
2235
|
property :live_chat_id, as: 'liveChatId'
|
2236
|
+
property :member_milestone_chat_details, as: 'memberMilestoneChatDetails', class: Google::Apis::YoutubeV3::LiveChatMemberMilestoneChatDetails, decorator: Google::Apis::YoutubeV3::LiveChatMemberMilestoneChatDetails::Representation
|
2237
|
+
|
2215
2238
|
property :message_deleted_details, as: 'messageDeletedDetails', class: Google::Apis::YoutubeV3::LiveChatMessageDeletedDetails, decorator: Google::Apis::YoutubeV3::LiveChatMessageDeletedDetails::Representation
|
2216
2239
|
|
2217
2240
|
property :message_retracted_details, as: 'messageRetractedDetails', class: Google::Apis::YoutubeV3::LiveChatMessageRetractedDetails, decorator: Google::Apis::YoutubeV3::LiveChatMessageRetractedDetails::Representation
|
2218
2241
|
|
2242
|
+
property :new_sponsor_details, as: 'newSponsorDetails', class: Google::Apis::YoutubeV3::LiveChatNewSponsorDetails, decorator: Google::Apis::YoutubeV3::LiveChatNewSponsorDetails::Representation
|
2243
|
+
|
2219
2244
|
property :published_at, as: 'publishedAt', type: DateTime
|
2220
2245
|
|
2221
2246
|
property :super_chat_details, as: 'superChatDetails', class: Google::Apis::YoutubeV3::LiveChatSuperChatDetails, decorator: Google::Apis::YoutubeV3::LiveChatSuperChatDetails::Representation
|
@@ -2268,6 +2293,14 @@ module Google
|
|
2268
2293
|
end
|
2269
2294
|
end
|
2270
2295
|
|
2296
|
+
class LiveChatNewSponsorDetails
|
2297
|
+
# @private
|
2298
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2299
|
+
property :is_upgrade, as: 'isUpgrade'
|
2300
|
+
property :member_level_name, as: 'memberLevelName'
|
2301
|
+
end
|
2302
|
+
end
|
2303
|
+
|
2271
2304
|
class LiveChatSuperChatDetails
|
2272
2305
|
# @private
|
2273
2306
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2885,6 +2918,7 @@ module Google
|
|
2885
2918
|
class TestItem
|
2886
2919
|
# @private
|
2887
2920
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2921
|
+
property :featured_part, as: 'featuredPart'
|
2888
2922
|
property :gaia, :numeric_string => true, as: 'gaia'
|
2889
2923
|
property :id, as: 'id'
|
2890
2924
|
property :snippet, as: 'snippet', class: Google::Apis::YoutubeV3::TestItemTestItemSnippet, decorator: Google::Apis::YoutubeV3::TestItemTestItemSnippet::Representation
|
@@ -927,42 +927,6 @@ module Google
|
|
927
927
|
execute_or_queue_command(command, &block)
|
928
928
|
end
|
929
929
|
|
930
|
-
# Updates an existing resource.
|
931
|
-
# @param [Array<String>, String] part
|
932
|
-
# The *part* parameter specifies a comma-separated list of commentThread
|
933
|
-
# resource properties that the API response will include. You must at least
|
934
|
-
# include the snippet part in the parameter value since that part contains all
|
935
|
-
# of the properties that the API request can update.
|
936
|
-
# @param [Google::Apis::YoutubeV3::CommentThread] comment_thread_object
|
937
|
-
# @param [String] fields
|
938
|
-
# Selector specifying which fields to include in a partial response.
|
939
|
-
# @param [String] quota_user
|
940
|
-
# Available to use for quota purposes for server-side applications. Can be any
|
941
|
-
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
942
|
-
# @param [Google::Apis::RequestOptions] options
|
943
|
-
# Request-specific options
|
944
|
-
#
|
945
|
-
# @yield [result, err] Result & error if block supplied
|
946
|
-
# @yieldparam result [Google::Apis::YoutubeV3::CommentThread] parsed result object
|
947
|
-
# @yieldparam err [StandardError] error object if request failed
|
948
|
-
#
|
949
|
-
# @return [Google::Apis::YoutubeV3::CommentThread]
|
950
|
-
#
|
951
|
-
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
952
|
-
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
953
|
-
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
954
|
-
def update_comment_thread(part, comment_thread_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
955
|
-
command = make_simple_command(:put, 'youtube/v3/commentThreads', options)
|
956
|
-
command.request_representation = Google::Apis::YoutubeV3::CommentThread::Representation
|
957
|
-
command.request_object = comment_thread_object
|
958
|
-
command.response_representation = Google::Apis::YoutubeV3::CommentThread::Representation
|
959
|
-
command.response_class = Google::Apis::YoutubeV3::CommentThread
|
960
|
-
command.query['part'] = part unless part.nil?
|
961
|
-
command.query['fields'] = fields unless fields.nil?
|
962
|
-
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
963
|
-
execute_or_queue_command(command, &block)
|
964
|
-
end
|
965
|
-
|
966
930
|
# Deletes a resource.
|
967
931
|
# @param [String] id
|
968
932
|
# @param [String] fields
|
@@ -2996,7 +2960,7 @@ module Google
|
|
2996
2960
|
# Retrieves a list of resources, possibly filtered.
|
2997
2961
|
# @param [Array<String>, String] part
|
2998
2962
|
# The *part* parameter specifies the superChatEvent resource parts that the API
|
2999
|
-
# response will include.
|
2963
|
+
# response will include. This parameter is currently not supported.
|
3000
2964
|
# @param [String] hl
|
3001
2965
|
# Return rendered funding amounts in specified language.
|
3002
2966
|
# @param [Fixnum] max_results
|
@@ -3805,6 +3769,42 @@ module Google
|
|
3805
3769
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
3806
3770
|
execute_or_queue_command(command, &block)
|
3807
3771
|
end
|
3772
|
+
|
3773
|
+
# Updates an existing resource.
|
3774
|
+
# @param [Google::Apis::YoutubeV3::CommentThread] comment_thread_object
|
3775
|
+
# @param [Array<String>, String] part
|
3776
|
+
# The *part* parameter specifies a comma-separated list of commentThread
|
3777
|
+
# resource properties that the API response will include. You must at least
|
3778
|
+
# include the snippet part in the parameter value since that part contains all
|
3779
|
+
# of the properties that the API request can update.
|
3780
|
+
# @param [String] fields
|
3781
|
+
# Selector specifying which fields to include in a partial response.
|
3782
|
+
# @param [String] quota_user
|
3783
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
3784
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
3785
|
+
# @param [Google::Apis::RequestOptions] options
|
3786
|
+
# Request-specific options
|
3787
|
+
#
|
3788
|
+
# @yield [result, err] Result & error if block supplied
|
3789
|
+
# @yieldparam result [Google::Apis::YoutubeV3::CommentThread] parsed result object
|
3790
|
+
# @yieldparam err [StandardError] error object if request failed
|
3791
|
+
#
|
3792
|
+
# @return [Google::Apis::YoutubeV3::CommentThread]
|
3793
|
+
#
|
3794
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
3795
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
3796
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
3797
|
+
def update_youtube_v3_comment_threads(comment_thread_object = nil, part: nil, fields: nil, quota_user: nil, options: nil, &block)
|
3798
|
+
command = make_simple_command(:put, 'youtube/v3/commentThreads', options)
|
3799
|
+
command.request_representation = Google::Apis::YoutubeV3::CommentThread::Representation
|
3800
|
+
command.request_object = comment_thread_object
|
3801
|
+
command.response_representation = Google::Apis::YoutubeV3::CommentThread::Representation
|
3802
|
+
command.response_class = Google::Apis::YoutubeV3::CommentThread
|
3803
|
+
command.query['part'] = part unless part.nil?
|
3804
|
+
command.query['fields'] = fields unless fields.nil?
|
3805
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
3806
|
+
execute_or_queue_command(command, &block)
|
3807
|
+
end
|
3808
3808
|
|
3809
3809
|
protected
|
3810
3810
|
|
metadata
CHANGED
@@ -1,29 +1,35 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-youtube_v3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.10.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-
|
11
|
+
date: 2021-09-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.4'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 2.a
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0.4'
|
30
|
+
- - "<"
|
25
31
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
32
|
+
version: 2.a
|
27
33
|
description: This is the simple REST client for YouTube Data API v3 V3. Simple REST
|
28
34
|
clients are Ruby client libraries that provide access to Google services via their
|
29
35
|
HTTP REST API endpoints. These libraries are generated and updated automatically
|
@@ -52,7 +58,7 @@ licenses:
|
|
52
58
|
metadata:
|
53
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-youtube_v3/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-youtube_v3/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-youtube_v3/v0.10.0
|
56
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-youtube_v3
|
57
63
|
post_install_message:
|
58
64
|
rdoc_options: []
|