google-cloud-speech-v1 0.1.0 → 0.1.1

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: 16c36ab424981a9e3eb6df7dffc8f63fb9d7097282624583cac9746b1659104d
4
- data.tar.gz: 894917e5fd0e67b3d13a6b06a3659b99c0adb93ed5967cb5a7be2367480fa07b
3
+ metadata.gz: 224b44e2649f8ed7aefc4d0ab4d363e5da93ee150a99d8ba8b07662379d94dc1
4
+ data.tar.gz: c8b981f971e5257037de77a850a6c355543dbe5c4d531164ad6d0bdc0c404803
5
5
  SHA512:
6
- metadata.gz: 231889c6947edec01c9f3c63182eb2c8f13845d79aedb2e438ee1328377f27652e58451f79ef01b81848d5cc6ba3d4e15ee1a99037ff05a9dda8434d5cb857c7
7
- data.tar.gz: 60b3b375f0222692a989de9c9da9d1861773683bb0eaf26d8cade2de70212051755bf84a40c52bbef6874a096d1b9deabf1aced5cbd8b8f7b1046cbd51dae96e
6
+ metadata.gz: a77d4b2d0f91d88514a65f2a0728ee851ef7a791333e1c7d88c468a77bf12bcceabe4ac410ad569b97aabc57549fa328ce14be1c9403c8512f4e235d2f2988da
7
+ data.tar.gz: a7ca15ad669561c95c0df4003bfb8d90b30c35eb13798e0e145de5d233748c3e074c078854edd5c3f85a396565e5edced69989b4df9fc03a3c5973a3c63d5e5a
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module Speech
23
23
  module V1
24
- VERSION = "0.1.0"
24
+ VERSION = "0.1.1"
25
25
  end
26
26
  end
27
27
  end
@@ -101,7 +101,8 @@ module Google
101
101
  # @!attribute [rw] type_url
102
102
  # @return [String]
103
103
  # A URL/resource name that uniquely identifies the type of the serialized
104
- # protocol buffer message. The last segment of the URL's path must represent
104
+ # protocol buffer message. This string must contain at least
105
+ # one "/" character. The last segment of the URL's path must represent
105
106
  # the fully qualified name of the type (as in
106
107
  # `path/google.protobuf.Duration`). The name should be in a canonical form
107
108
  # (e.g., leading "." is not accepted).
@@ -40,7 +40,7 @@ module Google
40
40
  # if (duration.seconds < 0 && duration.nanos > 0) {
41
41
  # duration.seconds += 1;
42
42
  # duration.nanos -= 1000000000;
43
- # } else if (durations.seconds > 0 && duration.nanos < 0) {
43
+ # } else if (duration.seconds > 0 && duration.nanos < 0) {
44
44
  # duration.seconds -= 1;
45
45
  # duration.nanos += 1000000000;
46
46
  # }
@@ -19,17 +19,19 @@
19
19
 
20
20
  module Google
21
21
  module Protobuf
22
- # A Timestamp represents a point in time independent of any time zone
23
- # or calendar, represented as seconds and fractions of seconds at
24
- # nanosecond resolution in UTC Epoch time. It is encoded using the
25
- # Proleptic Gregorian Calendar which extends the Gregorian calendar
26
- # backwards to year one. It is encoded assuming all minutes are 60
27
- # seconds long, i.e. leap seconds are "smeared" so that no leap second
28
- # table is needed for interpretation. Range is from
29
- # 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z.
30
- # By restricting to that range, we ensure that we can convert to
31
- # and from RFC 3339 date strings.
32
- # See [https://www.ietf.org/rfc/rfc3339.txt](https://www.ietf.org/rfc/rfc3339.txt).
22
+ # A Timestamp represents a point in time independent of any time zone or local
23
+ # calendar, encoded as a count of seconds and fractions of seconds at
24
+ # nanosecond resolution. The count is relative to an epoch at UTC midnight on
25
+ # January 1, 1970, in the proleptic Gregorian calendar which extends the
26
+ # Gregorian calendar backwards to year one.
27
+ #
28
+ # All minutes are 60 seconds long. Leap seconds are "smeared" so that no leap
29
+ # second table is needed for interpretation, using a [24-hour linear
30
+ # smear](https://developers.google.com/time/smear).
31
+ #
32
+ # The range is from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z. By
33
+ # restricting to that range, we ensure that we can convert to and from [RFC
34
+ # 3339](https://www.ietf.org/rfc/rfc3339.txt) date strings.
33
35
  #
34
36
  # # Examples
35
37
  #
@@ -90,12 +92,14 @@ module Google
90
92
  # 01:30 UTC on January 15, 2017.
91
93
  #
92
94
  # In JavaScript, one can convert a Date object to this format using the
93
- # standard [toISOString()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString]
95
+ # standard
96
+ # [toISOString()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString)
94
97
  # method. In Python, a standard `datetime.datetime` object can be converted
95
- # to this format using [`strftime`](https://docs.python.org/2/library/time.html#time.strftime)
96
- # with the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one
97
- # can use the Joda Time's [`ISODateTimeFormat.dateTime()`](
98
- # http://www.joda.org/joda-time/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime--
98
+ # to this format using
99
+ # [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) with
100
+ # the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use
101
+ # the Joda Time's [`ISODateTimeFormat.dateTime()`](
102
+ # http://www.joda.org/joda-time/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime%2D%2D
99
103
  # ) to obtain a formatter capable of generating timestamps in this format.
100
104
  # @!attribute [rw] seconds
101
105
  # @return [Integer]
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-speech-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-03-30 00:00:00.000000000 Z
11
+ date: 2020-04-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common