google-cloud-media_translation-v1beta1 0.4.1 → 0.4.2

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: 108ddc7de03b0dc5d22a2ec513cca5771fbe9a8946d6f17a8e8788051e3a4429
4
- data.tar.gz: fd6d9f1b4a0615490317fa7939f0d95ce8689eb7bd2b5891c4b71b83852f1745
3
+ metadata.gz: 565a1fbb457e931a667578c02209b28d430e2f6b3379044b170a2b93dc31041a
4
+ data.tar.gz: 072e033830edb980b4924dfeabf887fc5e116728d8da2744578e14d208f17aae
5
5
  SHA512:
6
- metadata.gz: 070ec3df2cc30ae52da15b21eb3fb1eaff3ea693ba9353b624fd705ef51119145ae7e942fb9fb28d87214becf02ba6c3b133c7c95be371e466d297d75517104e
7
- data.tar.gz: d3e7a37d6350ef68c8920c2d4ca87b511960df86bfe64600f0b522b52368a28bc8b8076226e2585f28747b9660575432a3a2b542b4b20ea3702af00a45a14da5
6
+ metadata.gz: 4aa37b0ea0543e1b7108e25ee8f9b6b5f317efbd3dcb603a6fb1e7adcb3262d72910cc885d475dfc283a1c272aaa26884cfe180830710241273a086cc35d125f
7
+ data.tar.gz: 836cc35682fcc5e4eb674a4426c5d1b37ef884a3e9696da6104f33b73b44f16016c67d4001dc40f8d9026904fd2f8df9896ea97a648e5a9ff6ed12047083dbf9
data/AUTHENTICATION.md CHANGED
@@ -66,11 +66,11 @@ The environment variables that google-cloud-media_translation-v1beta1
66
66
  checks for credentials are configured on the service Credentials class (such as
67
67
  {::Google::Cloud::MediaTranslation::V1beta1::SpeechTranslationService::Credentials}):
68
68
 
69
- 1. `MEDIA_TRANSLATION_CREDENTIALS` - Path to JSON file, or JSON contents
70
- 2. `MEDIA_TRANSLATION_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
+ * `MEDIA_TRANSLATION_CREDENTIALS` - Path to JSON file, or JSON contents
70
+ * `MEDIA_TRANSLATION_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/media_translation/v1beta1"
@@ -82,8 +82,8 @@ client = ::Google::Cloud::MediaTranslation::V1beta1::SpeechTranslationService::C
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/media_translation/v1beta1"
@@ -93,7 +93,7 @@ client = ::Google::Cloud::MediaTranslation::V1beta1::SpeechTranslationService::C
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/media_translation/v1beta1"
data/README.md CHANGED
@@ -31,10 +31,6 @@ In order to use this library, you first need to go through the following steps:
31
31
 
32
32
  ```ruby
33
33
  require "google/cloud/media_translation/v1beta1"
34
-
35
- client = ::Google::Cloud::MediaTranslation::V1beta1::SpeechTranslationService::Client.new
36
- request = my_create_request
37
- response = client.streaming_translate_speech request
38
34
  ```
39
35
 
40
36
  View the [Client Library Documentation](https://googleapis.dev/ruby/google-cloud-media_translation-v1beta1/latest)
@@ -65,10 +65,7 @@ module Google
65
65
 
66
66
  default_config.timeout = 400.0
67
67
  default_config.retry_policy = {
68
- initial_delay: 1.0,
69
- max_delay: 60.0,
70
- multiplier: 1.3,
71
- retry_codes: [14, 2, 4]
68
+ initial_delay: 1.0, max_delay: 60.0, multiplier: 1.3, retry_codes: [14, 2, 4]
72
69
  }
73
70
 
74
71
  default_config.rpcs.streaming_translate_speech.timeout = 400.0
@@ -141,7 +138,7 @@ module Google
141
138
  !@config.endpoint.split(".").first.include?("-")
142
139
  credentials ||= Credentials.default scope: @config.scope,
143
140
  enable_self_signed_jwt: enable_self_signed_jwt
144
- if credentials.is_a?(String) || credentials.is_a?(Hash)
141
+ if credentials.is_a?(::String) || credentials.is_a?(::Hash)
145
142
  credentials = Credentials.new credentials, scope: @config.scope
146
143
  end
147
144
  @quota_project_id = @config.quota_project
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module MediaTranslation
23
23
  module V1beta1
24
- VERSION = "0.4.1"
24
+ VERSION = "0.4.2"
25
25
  end
26
26
  end
27
27
  end
@@ -27,7 +27,7 @@ module Google
27
27
  # Provides translation from/to media types.
28
28
  class Service
29
29
 
30
- include ::GRPC::GenericService
30
+ include GRPC::GenericService
31
31
 
32
32
  self.marshal_class_method = :encode
33
33
  self.unmarshal_class_method = :decode
@@ -57,9 +57,15 @@ module Google
57
57
 
58
58
  # Denotes that a (repeated) field is an unordered list.
59
59
  # This indicates that the service may provide the elements of the list
60
- # in any arbitrary order, rather than the order the user originally
60
+ # in any arbitrary order, rather than the order the user originally
61
61
  # provided. Additionally, the list's order may or may not be stable.
62
62
  UNORDERED_LIST = 6
63
+
64
+ # Denotes that this field returns a non-empty default value if not set.
65
+ # This indicates that if the user provides the empty value in a request,
66
+ # a non-empty value will be returned. The user will not be aware of what
67
+ # non-empty value to expect.
68
+ NON_EMPTY_DEFAULT = 7
63
69
  end
64
70
  end
65
71
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-media_translation-v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.1
4
+ version: 0.4.2
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-06-17 00:00:00.000000000 Z
11
+ date: 2021-07-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common