google-apis-youtube_v3 0.41.0 → 0.43.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a288768ac37c0a9806fd2506a979b1bde45377892ed40041894146f3d9459c8a
|
4
|
+
data.tar.gz: 005ec094dd8b3a970c42ec3ded5f227632708eb96fb9638a4fbfc0d7477289d2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 26014e6f18ccf5f1e0fbd1061e0529f399789fc0fbe19e0d7a8f3e8fa6cde39b986be7a30700df9b014d1209a6d1569c270314bd088d95cf17ccd3f323cd27aa
|
7
|
+
data.tar.gz: 844bddba52df02bd840d182255b16d8eb807c3908954de5762473a6383337f603dfbd5baa84464d1ed925f497e2dbba3a79b6a7664d362aec64cca09382b80bc
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,15 @@
|
|
1
1
|
# Release history for google-apis-youtube_v3
|
2
2
|
|
3
|
+
### v0.43.0 (2024-08-18)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240814
|
6
|
+
* Regenerated using generator version 0.15.1
|
7
|
+
|
8
|
+
### v0.42.0 (2024-05-19)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20240514
|
11
|
+
* Regenerated using generator version 0.15.0
|
12
|
+
|
3
13
|
### v0.41.0 (2024-03-17)
|
4
14
|
|
5
15
|
* Regenerated from discovery document revision 20240310
|
@@ -6547,6 +6547,11 @@ module Google
|
|
6547
6547
|
class PlaylistStatus
|
6548
6548
|
include Google::Apis::Core::Hashable
|
6549
6549
|
|
6550
|
+
# The playlist's podcast status.
|
6551
|
+
# Corresponds to the JSON property `podcastStatus`
|
6552
|
+
# @return [String]
|
6553
|
+
attr_accessor :podcast_status
|
6554
|
+
|
6550
6555
|
# The playlist's privacy status.
|
6551
6556
|
# Corresponds to the JSON property `privacyStatus`
|
6552
6557
|
# @return [String]
|
@@ -6558,6 +6563,7 @@ module Google
|
|
6558
6563
|
|
6559
6564
|
# Update properties of this object
|
6560
6565
|
def update!(**args)
|
6566
|
+
@podcast_status = args[:podcast_status] if args.key?(:podcast_status)
|
6561
6567
|
@privacy_status = args[:privacy_status] if args.key?(:privacy_status)
|
6562
6568
|
end
|
6563
6569
|
end
|
@@ -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.43.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240814"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1811,7 +1811,7 @@ module Google
|
|
1811
1811
|
# The id of the live chat for which comments should be returned.
|
1812
1812
|
# @param [Array<String>, String] part
|
1813
1813
|
# The *part* parameter specifies the liveChatComment resource parts that the API
|
1814
|
-
# response will include. Supported values are id and
|
1814
|
+
# response will include. Supported values are id, snippet, and authorDetails.
|
1815
1815
|
# @param [String] hl
|
1816
1816
|
# Specifies the localization language in which the system messages should be
|
1817
1817
|
# returned.
|
@@ -1856,6 +1856,39 @@ module Google
|
|
1856
1856
|
execute_or_queue_command(command, &block)
|
1857
1857
|
end
|
1858
1858
|
|
1859
|
+
# Transition a durable chat event.
|
1860
|
+
# @param [String] id
|
1861
|
+
# The ID that uniquely identify the chat message event to transition.
|
1862
|
+
# @param [String] status
|
1863
|
+
# The status to which the chat event is going to transition.
|
1864
|
+
# @param [String] fields
|
1865
|
+
# Selector specifying which fields to include in a partial response.
|
1866
|
+
# @param [String] quota_user
|
1867
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1868
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1869
|
+
# @param [Google::Apis::RequestOptions] options
|
1870
|
+
# Request-specific options
|
1871
|
+
#
|
1872
|
+
# @yield [result, err] Result & error if block supplied
|
1873
|
+
# @yieldparam result [Google::Apis::YoutubeV3::LiveChatMessage] parsed result object
|
1874
|
+
# @yieldparam err [StandardError] error object if request failed
|
1875
|
+
#
|
1876
|
+
# @return [Google::Apis::YoutubeV3::LiveChatMessage]
|
1877
|
+
#
|
1878
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1879
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1880
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1881
|
+
def transition_live_chat_message(id: nil, status: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1882
|
+
command = make_simple_command(:post, 'youtube/v3/liveChat/messages/transition', options)
|
1883
|
+
command.response_representation = Google::Apis::YoutubeV3::LiveChatMessage::Representation
|
1884
|
+
command.response_class = Google::Apis::YoutubeV3::LiveChatMessage
|
1885
|
+
command.query['id'] = id unless id.nil?
|
1886
|
+
command.query['status'] = status unless status.nil?
|
1887
|
+
command.query['fields'] = fields unless fields.nil?
|
1888
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1889
|
+
execute_or_queue_command(command, &block)
|
1890
|
+
end
|
1891
|
+
|
1859
1892
|
# Deletes a chat moderator.
|
1860
1893
|
# @param [String] id
|
1861
1894
|
# @param [String] fields
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.43.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-
|
11
|
+
date: 2024-08-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.15.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.15.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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-youtube_v3/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-youtube_v3/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-youtube_v3/v0.43.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-youtube_v3
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|