google-cloud-video-stitcher-v1 0.3.0 → 0.4.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: f16d2f29482c5ace98302f51bbb1afeb45c5ad0421262b176abd4601c91f4783
|
4
|
+
data.tar.gz: c549570c4a3be9fcf80f42d0dd37702b202937eddb9a9b387ecc14dcd1f614e6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aafd3ffcee42de9e2ff88624ec78492351a7a60bf4f748585ca9d2cbfaab858a147ade78ccf086ef06f284d336a4c83be5d0b93360437e35fa3c99376f0bb016
|
7
|
+
data.tar.gz: 5726168a2f4f9df20aaf99cd953c78c1f18592164eff0d8be9fb0e8f3ee4e8c05d414e4e54aa6874ce801ece13c9f1c5568365bd007b1f2023bec23648ffc170
|
data/AUTHENTICATION.md
CHANGED
@@ -112,7 +112,7 @@ credentials are discovered.
|
|
112
112
|
To configure your system for this, simply:
|
113
113
|
|
114
114
|
1. [Download and install the Cloud SDK](https://cloud.google.com/sdk)
|
115
|
-
2. Authenticate using OAuth 2.0 `$ gcloud auth login`
|
115
|
+
2. Authenticate using OAuth 2.0 `$ gcloud auth application-default login`
|
116
116
|
3. Write code as if already authenticated.
|
117
117
|
|
118
118
|
**NOTE:** This is _not_ recommended for running in production. The Cloud SDK
|
@@ -14,6 +14,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
14
14
|
oneof :cdn_key_config do
|
15
15
|
optional :google_cdn_key, :message, 5, "google.cloud.video.stitcher.v1.GoogleCdnKey"
|
16
16
|
optional :akamai_cdn_key, :message, 6, "google.cloud.video.stitcher.v1.AkamaiCdnKey"
|
17
|
+
optional :media_cdn_key, :message, 8, "google.cloud.video.stitcher.v1.MediaCdnKey"
|
17
18
|
end
|
18
19
|
end
|
19
20
|
add_message "google.cloud.video.stitcher.v1.GoogleCdnKey" do
|
@@ -23,6 +24,10 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
23
24
|
add_message "google.cloud.video.stitcher.v1.AkamaiCdnKey" do
|
24
25
|
optional :token_key, :bytes, 1
|
25
26
|
end
|
27
|
+
add_message "google.cloud.video.stitcher.v1.MediaCdnKey" do
|
28
|
+
optional :private_key, :bytes, 1
|
29
|
+
optional :key_name, :string, 2
|
30
|
+
end
|
26
31
|
end
|
27
32
|
end
|
28
33
|
|
@@ -34,6 +39,7 @@ module Google
|
|
34
39
|
CdnKey = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.video.stitcher.v1.CdnKey").msgclass
|
35
40
|
GoogleCdnKey = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.video.stitcher.v1.GoogleCdnKey").msgclass
|
36
41
|
AkamaiCdnKey = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.video.stitcher.v1.AkamaiCdnKey").msgclass
|
42
|
+
MediaCdnKey = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.video.stitcher.v1.MediaCdnKey").msgclass
|
37
43
|
end
|
38
44
|
end
|
39
45
|
end
|
@@ -31,6 +31,9 @@ module Google
|
|
31
31
|
# @!attribute [rw] akamai_cdn_key
|
32
32
|
# @return [::Google::Cloud::Video::Stitcher::V1::AkamaiCdnKey]
|
33
33
|
# The configuration for an Akamai CDN key.
|
34
|
+
# @!attribute [rw] media_cdn_key
|
35
|
+
# @return [::Google::Cloud::Video::Stitcher::V1::MediaCdnKey]
|
36
|
+
# The configuration for a Media CDN key.
|
34
37
|
# @!attribute [rw] name
|
35
38
|
# @return [::String]
|
36
39
|
# The resource name of the CDN key, in the form of
|
@@ -64,6 +67,18 @@ module Google
|
|
64
67
|
include ::Google::Protobuf::MessageExts
|
65
68
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
66
69
|
end
|
70
|
+
|
71
|
+
# Configuration for a Media CDN key.
|
72
|
+
# @!attribute [rw] private_key
|
73
|
+
# @return [::String]
|
74
|
+
# Input only. 64-byte ed25519 private key for this Media CDN key.
|
75
|
+
# @!attribute [rw] key_name
|
76
|
+
# @return [::String]
|
77
|
+
# The keyset name of the Media CDN key.
|
78
|
+
class MediaCdnKey
|
79
|
+
include ::Google::Protobuf::MessageExts
|
80
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
81
|
+
end
|
67
82
|
end
|
68
83
|
end
|
69
84
|
end
|
@@ -26,8 +26,6 @@ module Google
|
|
26
26
|
# service Foo {
|
27
27
|
# rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty);
|
28
28
|
# }
|
29
|
-
#
|
30
|
-
# The JSON representation for `Empty` is empty JSON object `{}`.
|
31
29
|
class Empty
|
32
30
|
include ::Google::Protobuf::MessageExts
|
33
31
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-video-stitcher-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.4.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: 2022-
|
11
|
+
date: 2022-11-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.12'
|
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.12'
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|