google-cloud-video-transcoder 0.2.2 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/AUTHENTICATION.md +1 -1
- data/README.md +3 -2
- data/lib/google/cloud/video/transcoder.rb +4 -4
- data/lib/google/cloud/video/transcoder/version.rb +1 -1
- metadata +22 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c746d79a5c0dafc568b81e64aaf5b58ee67e336c5df7180c312c21a7ecade7fa
|
4
|
+
data.tar.gz: 7ce05d5a53404e0ac3f56dcfa54dba963cf45b5a3035043c0cdb40349f4fd1dd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 88ef845a6b15abd2055330405f2db95092a623d0dbd2a3fb1c94d1c721531d3ed189e3b7a72dc1b75ca0d52986a17618b93b4a8a81b689d3d8bc6c838707138d
|
7
|
+
data.tar.gz: 30f40b7c65c67f181cc30154bc443562b9778fc97568fcc6a5494453937e4a6a4f3da29252fe8bebaddf131fdb106321f206b5e2ff4782bce11e8b2042a839b1
|
data/AUTHENTICATION.md
CHANGED
@@ -64,7 +64,7 @@ containers where writing files is difficult or not encouraged.
|
|
64
64
|
|
65
65
|
The environment variables that google-cloud-video-transcoder
|
66
66
|
checks for credentials are configured on the service Credentials class (such as
|
67
|
-
`::Google::Cloud::Video::Transcoder::
|
67
|
+
`::Google::Cloud::Video::Transcoder::V1::TranscoderService::Credentials`):
|
68
68
|
|
69
69
|
* `TRANSCODER_CREDENTIALS` - Path to JSON file, or JSON contents
|
70
70
|
* `TRANSCODER_KEYFILE` - Path to JSON file, or JSON contents
|
data/README.md
CHANGED
@@ -16,6 +16,7 @@ for this library, google-cloud-video-transcoder, to see the convenience methods
|
|
16
16
|
constructing client objects. Reference documentation for the client objects
|
17
17
|
themselves can be found in the client library documentation for the versioned
|
18
18
|
client gems:
|
19
|
+
[google-cloud-video-transcoder-v1](https://googleapis.dev/ruby/google-cloud-video-transcoder-v1/latest),
|
19
20
|
[google-cloud-video-transcoder-v1beta1](https://googleapis.dev/ruby/google-cloud-video-transcoder-v1beta1/latest).
|
20
21
|
|
21
22
|
See also the [Product Documentation](https://cloud.google.com/transcoder/)
|
@@ -76,7 +77,7 @@ about the Ruby support schedule.
|
|
76
77
|
Most modern Ruby client libraries for Google APIs come in two flavors: the main
|
77
78
|
client library with a name such as `google-cloud-video-transcoder`,
|
78
79
|
and lower-level _versioned_ client libraries with names such as
|
79
|
-
`google-cloud-video-transcoder-
|
80
|
+
`google-cloud-video-transcoder-v1`.
|
80
81
|
_In most cases, you should install the main client._
|
81
82
|
|
82
83
|
### What's the difference between the main client and a versioned client?
|
@@ -114,7 +115,7 @@ You can use a versioned client if you are content with a possibly lower-level
|
|
114
115
|
class interface, you explicitly want to avoid features provided by the main
|
115
116
|
client, or you want to access a specific service version not be covered by the
|
116
117
|
main client. You can identify versioned client gems because the service version
|
117
|
-
is part of the name, e.g. `google-cloud-video-transcoder-
|
118
|
+
is part of the name, e.g. `google-cloud-video-transcoder-v1`.
|
118
119
|
|
119
120
|
### What about the google-apis-<name> clients?
|
120
121
|
|
@@ -49,8 +49,8 @@ module Google
|
|
49
49
|
# Create a new client object for TranscoderService.
|
50
50
|
#
|
51
51
|
# By default, this returns an instance of
|
52
|
-
# [Google::Cloud::Video::Transcoder::
|
53
|
-
# for version
|
52
|
+
# [Google::Cloud::Video::Transcoder::V1::TranscoderService::Client](https://googleapis.dev/ruby/google-cloud-video-transcoder-v1/latest/Google/Cloud/Video/Transcoder/V1/TranscoderService/Client.html)
|
53
|
+
# for version V1 of the API.
|
54
54
|
# However, you can specify specify a different API version by passing it in the
|
55
55
|
# `version` parameter. If the TranscoderService service is
|
56
56
|
# supported by that API version, and the corresponding gem is available, the
|
@@ -66,10 +66,10 @@ module Google
|
|
66
66
|
# concatenation, and digital ad-stitch ready content generation.
|
67
67
|
#
|
68
68
|
# @param version [::String, ::Symbol] The API version to connect to. Optional.
|
69
|
-
# Defaults to `:
|
69
|
+
# Defaults to `:v1`.
|
70
70
|
# @return [TranscoderService::Client] A client object for the specified version.
|
71
71
|
#
|
72
|
-
def self.transcoder_service version: :
|
72
|
+
def self.transcoder_service version: :v1, &block
|
73
73
|
require "google/cloud/video/transcoder/#{version.to_s.downcase}"
|
74
74
|
|
75
75
|
package_name = Google::Cloud::Video::Transcoder
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-video-transcoder
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.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-08-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-cloud-core
|
@@ -24,6 +24,26 @@ dependencies:
|
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '1.6'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: google-cloud-video-transcoder-v1
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0.0'
|
34
|
+
- - "<"
|
35
|
+
- !ruby/object:Gem::Version
|
36
|
+
version: 2.a
|
37
|
+
type: :runtime
|
38
|
+
prerelease: false
|
39
|
+
version_requirements: !ruby/object:Gem::Requirement
|
40
|
+
requirements:
|
41
|
+
- - ">="
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: '0.0'
|
44
|
+
- - "<"
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: 2.a
|
27
47
|
- !ruby/object:Gem::Dependency
|
28
48
|
name: google-cloud-video-transcoder-v1beta1
|
29
49
|
requirement: !ruby/object:Gem::Requirement
|