google-apis-youtube_v3 0.12.0 → 0.15.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: a805d2f6aa41499224ff499a7e75e642ede2059ae5ecc3d66355c7ed5c7d4571
4
- data.tar.gz: 49558ce06265ced49ff706adf90e8a89796188cc9913c54ae4dbb66ad4a706c5
3
+ metadata.gz: 9e1618c4076d4ff460b4cb68eb67194b78de408fd5ee79b4e17042815f33864f
4
+ data.tar.gz: '04920e5e569b2830fc72721e2092754af7c54e2252c4fc23531e789d3e463217'
5
5
  SHA512:
6
- metadata.gz: 642e7554f0ce017bffd6d6d1911939cd8dc07109413430fb1d12daa469834e88b1794fe15603361d46a35f751ea3efbc4bac5ea60a45c79f52c643d25fce3905
7
- data.tar.gz: 6e25b81358ea31330fec0e6029b2c795b280cbaecaeb266d88642ab0c5b32f0bed142e461f502d3784895b5e3e1fd487cfa695f05b29b5de0ea16765681076f7
6
+ metadata.gz: 5c0c840c241e0425304b8e1afc5a1b5bebe70f8d48e25adb055774419fcf4c6a97ffc734c3ad3266da4885d1d33bf1bb2f758949fc12700a17a2210394e2e1ca
7
+ data.tar.gz: 1f8d1450f4c4b929238699966bfbb052b5605b0cfd99c9c9fb6823e84245ddc9a06855370a9697313045f2b429cb90b6d5a921ef13f22afd85225be4d8b382fb
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Release history for google-apis-youtube_v3
2
2
 
3
+ ### v0.15.0 (2022-03-01)
4
+
5
+ * Regenerated from discovery document revision 20220227
6
+ * Regenerated using generator version 0.4.1
7
+
8
+ ### v0.14.0 (2021-12-14)
9
+
10
+ * Unspecified changes
11
+
12
+ ### v0.13.0 (2021-10-21)
13
+
14
+ * Unspecified changes
15
+
3
16
  ### v0.12.0 (2021-09-17)
4
17
 
5
18
  * Regenerated from discovery document revision 20210915
data/OVERVIEW.md CHANGED
@@ -51,7 +51,7 @@ require "google/apis/youtube_v3"
51
51
  client = Google::Apis::YoutubeV3::YouTubeService.new
52
52
 
53
53
  # Authenticate calls
54
- client.authentication = # ... use the googleauth gem to create credentials
54
+ client.authorization = # ... use the googleauth gem to create credentials
55
55
  ```
56
56
 
57
57
  See the class reference docs for information on the methods you can call from a client.
@@ -60,8 +60,8 @@ See the class reference docs for information on the methods you can call from a
60
60
 
61
61
  More detailed descriptions of the Google simple REST clients are available in two documents.
62
62
 
63
- * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
- * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
63
+ * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
+ * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
65
65
 
66
66
  (Note: the above documents are written for the simple REST clients in general, and their examples may not reflect the Youtube service in particular.)
67
67
 
@@ -904,7 +904,7 @@ module Google
904
904
  # @return [String]
905
905
  attr_accessor :frame_rate
906
906
 
907
- # Describes information necessary for ingesting an RTMP or an HTTP stream.
907
+ # Describes information necessary for ingesting an RTMP, HTTP, or SRT stream.
908
908
  # Corresponds to the JSON property `ingestionInfo`
909
909
  # @return [Google::Apis::YoutubeV3::IngestionInfo]
910
910
  attr_accessor :ingestion_info
@@ -3290,7 +3290,7 @@ module Google
3290
3290
  end
3291
3291
  end
3292
3292
 
3293
- # Describes information necessary for ingesting an RTMP or an HTTP stream.
3293
+ # Describes information necessary for ingesting an RTMP, HTTP, or SRT stream.
3294
3294
  class IngestionInfo
3295
3295
  include Google::Apis::Core::Hashable
3296
3296
 
@@ -3322,7 +3322,7 @@ module Google
3322
3322
  # @return [String]
3323
3323
  attr_accessor :rtmps_ingestion_address
3324
3324
 
3325
- # The HTTP or RTMP stream name that YouTube assigns to the video stream.
3325
+ # The stream name that YouTube assigns to the video stream.
3326
3326
  # Corresponds to the JSON property `streamName`
3327
3327
  # @return [String]
3328
3328
  attr_accessor :stream_name
@@ -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.12.0"
19
+ GEM_VERSION = "0.15.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.0"
22
+ GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210915"
25
+ REVISION = "20220227"
26
26
  end
27
27
  end
28
28
  end
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.12.0
4
+ version: 0.15.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-09-20 00:00:00.000000000 Z
11
+ date: 2022-03-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -57,9 +57,9 @@ licenses:
57
57
  - Apache-2.0
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
- changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-youtube_v3/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-youtube_v3/v0.12.0
62
- source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-youtube_v3
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.15.0
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: []
65
65
  require_paths:
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.2.17
78
+ rubygems_version: 3.3.5
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for YouTube Data API v3 V3