google-cloud-video-transcoder 0.1.0 → 1.0.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: 3fe1141f85b9ecf471e561fd7d42dbcc8f34c4d970c85655487d24d3ebf50387
4
- data.tar.gz: def488fafd81b9534fe98365128836499013114e0dc8e5072e02400eab5e1276
3
+ metadata.gz: c746d79a5c0dafc568b81e64aaf5b58ee67e336c5df7180c312c21a7ecade7fa
4
+ data.tar.gz: 7ce05d5a53404e0ac3f56dcfa54dba963cf45b5a3035043c0cdb40349f4fd1dd
5
5
  SHA512:
6
- metadata.gz: 5baed89dc1ebe6a59888aa11f2244a85ddcbe63cc4afddc1193ba84cca81160e6834b5f0a25f2c65a92938136511a3851885a43fec762961bc7e0416cc5527e8
7
- data.tar.gz: 37133f65fac8c273981835c6ea2d1205559800140366c1dea7752657ac097c231169a0e23d05325eb1c2197a3513c5e2b1d5123ce34f56e886cffc211dcc9444
6
+ metadata.gz: 88ef845a6b15abd2055330405f2db95092a623d0dbd2a3fb1c94d1c721531d3ed189e3b7a72dc1b75ca0d52986a17618b93b4a8a81b689d3d8bc6c838707138d
7
+ data.tar.gz: 30f40b7c65c67f181cc30154bc443562b9778fc97568fcc6a5494453937e4a6a4f3da29252fe8bebaddf131fdb106321f206b5e2ff4782bce11e8b2042a839b1
data/AUTHENTICATION.md CHANGED
@@ -64,13 +64,13 @@ 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::V1beta1::TranscoderService::Credentials`):
67
+ `::Google::Cloud::Video::Transcoder::V1::TranscoderService::Credentials`):
68
68
 
69
- 1. `TRANSCODER_CREDENTIALS` - Path to JSON file, or JSON contents
70
- 2. `TRANSCODER_KEYFILE` - Path to JSON file, or JSON contents
71
- 3. `GOOGLE_CLOUD_CREDENTIALS` - Path to JSON file, or JSON contents
72
- 4. `GOOGLE_CLOUD_KEYFILE` - Path to JSON file, or JSON contents
73
- 5. `GOOGLE_APPLICATION_CREDENTIALS` - Path to JSON file
69
+ * `TRANSCODER_CREDENTIALS` - Path to JSON file, or JSON contents
70
+ * `TRANSCODER_KEYFILE` - Path to JSON file, or JSON contents
71
+ * `GOOGLE_CLOUD_CREDENTIALS` - Path to JSON file, or JSON contents
72
+ * `GOOGLE_CLOUD_KEYFILE` - Path to JSON file, or JSON contents
73
+ * `GOOGLE_APPLICATION_CREDENTIALS` - Path to JSON file
74
74
 
75
75
  ```ruby
76
76
  require "google/cloud/video/transcoder"
@@ -82,8 +82,8 @@ client = Google::Cloud::Video::Transcoder.transcoder_service
82
82
 
83
83
  ### Configuration
84
84
 
85
- The **Credentials JSON** can be configured instead of placing them in
86
- environment variables. Either on an individual client initialization:
85
+ The path to the **Credentials JSON** file can be configured instead of storing
86
+ it in an environment variable. Either on an individual client initialization:
87
87
 
88
88
  ```ruby
89
89
  require "google/cloud/video/transcoder"
@@ -93,7 +93,7 @@ client = Google::Cloud::Video::Transcoder.transcoder_service do |config|
93
93
  end
94
94
  ```
95
95
 
96
- Or configured globally for all clients:
96
+ Or globally for all clients:
97
97
 
98
98
  ```ruby
99
99
  require "google/cloud/video/transcoder"
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/)
@@ -62,11 +63,11 @@ end
62
63
 
63
64
  ## Supported Ruby Versions
64
65
 
65
- This library is supported on Ruby 2.4+.
66
+ This library is supported on Ruby 2.5+.
66
67
 
67
68
  Google provides official support for Ruby versions that are actively supported
68
69
  by Ruby Core—that is, Ruby versions that are either in normal maintenance or
69
- in security maintenance, and not end of life. Currently, this means Ruby 2.4
70
+ in security maintenance, and not end of life. Currently, this means Ruby 2.5
70
71
  and later. Older versions of Ruby _may_ still work, but are unsupported and not
71
72
  recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details
72
73
  about the Ruby support schedule.
@@ -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-v1beta1`.
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-v1beta1`.
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::V1beta1::TranscoderService::Client](https://googleapis.dev/ruby/google-cloud-video-transcoder-v1beta1/latest/Google/Cloud/Video/Transcoder/V1beta1/TranscoderService/Client.html)
53
- # for version V1beta1 of the API.
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 `:v1beta1`.
69
+ # Defaults to `:v1`.
70
70
  # @return [TranscoderService::Client] A client object for the specified version.
71
71
  #
72
- def self.transcoder_service version: :v1beta1, &block
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
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module Video
23
23
  module Transcoder
24
- VERSION = "0.1.0"
24
+ VERSION = "1.0.0"
25
25
  end
26
26
  end
27
27
  end
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.1.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-02-23 00:00:00.000000000 Z
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
@@ -16,42 +16,68 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '1.5'
19
+ version: '1.6'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '1.5'
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
30
50
  requirements:
31
- - - "~>"
51
+ - - ">="
32
52
  - !ruby/object:Gem::Version
33
53
  version: '0.0'
54
+ - - "<"
55
+ - !ruby/object:Gem::Version
56
+ version: 2.a
34
57
  type: :runtime
35
58
  prerelease: false
36
59
  version_requirements: !ruby/object:Gem::Requirement
37
60
  requirements:
38
- - - "~>"
61
+ - - ">="
39
62
  - !ruby/object:Gem::Version
40
63
  version: '0.0'
64
+ - - "<"
65
+ - !ruby/object:Gem::Version
66
+ version: 2.a
41
67
  - !ruby/object:Gem::Dependency
42
68
  name: google-style
43
69
  requirement: !ruby/object:Gem::Requirement
44
70
  requirements:
45
71
  - - "~>"
46
72
  - !ruby/object:Gem::Version
47
- version: 1.24.0
73
+ version: 1.25.1
48
74
  type: :development
49
75
  prerelease: false
50
76
  version_requirements: !ruby/object:Gem::Requirement
51
77
  requirements:
52
78
  - - "~>"
53
79
  - !ruby/object:Gem::Version
54
- version: 1.24.0
80
+ version: 1.25.1
55
81
  - !ruby/object:Gem::Dependency
56
82
  name: minitest
57
83
  requirement: !ruby/object:Gem::Requirement
@@ -176,14 +202,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
176
202
  requirements:
177
203
  - - ">="
178
204
  - !ruby/object:Gem::Version
179
- version: '2.4'
205
+ version: '2.5'
180
206
  required_rubygems_version: !ruby/object:Gem::Requirement
181
207
  requirements:
182
208
  - - ">="
183
209
  - !ruby/object:Gem::Version
184
210
  version: '0'
185
211
  requirements: []
186
- rubygems_version: 3.2.6
212
+ rubygems_version: 3.2.17
187
213
  signing_key:
188
214
  specification_version: 4
189
215
  summary: API Client library for the Transcoder API