google-cloud-recommender-v1 0.3.0 → 0.4.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -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
  # }
@@ -78,12 +78,12 @@ module Google
78
78
  # be expressed in JSON format as "3.000000001s", and 3 seconds and 1
79
79
  # microsecond should be expressed in JSON format as "3.000001s".
80
80
  # @!attribute [rw] seconds
81
- # @return [Integer]
81
+ # @return [::Integer]
82
82
  # Signed seconds of the span of time. Must be from -315,576,000,000
83
83
  # to +315,576,000,000 inclusive. Note: these bounds are computed from:
84
84
  # 60 sec/min * 60 min/hr * 24 hr/day * 365.25 days/year * 10000 years
85
85
  # @!attribute [rw] nanos
86
- # @return [Integer]
86
+ # @return [::Integer]
87
87
  # Signed fractions of a second at nanosecond resolution of the span
88
88
  # of time. Durations less than one second are represented with a 0
89
89
  # `seconds` field and a positive or negative `nanos` field. For durations
@@ -91,8 +91,8 @@ module Google
91
91
  # of the same sign as the `seconds` field. Must be from -999,999,999
92
92
  # to +999,999,999 inclusive.
93
93
  class Duration
94
- include Google::Protobuf::MessageExts
95
- extend Google::Protobuf::MessageExts::ClassMethods
94
+ include ::Google::Protobuf::MessageExts
95
+ extend ::Google::Protobuf::MessageExts::ClassMethods
96
96
  end
97
97
  end
98
98
  end
@@ -28,19 +28,19 @@ module Google
28
28
  #
29
29
  # The JSON representation for `Struct` is JSON object.
30
30
  # @!attribute [rw] fields
31
- # @return [Google::Protobuf::Map{String => Google::Protobuf::Value}]
31
+ # @return [::Google::Protobuf::Map{::String => ::Google::Protobuf::Value}]
32
32
  # Unordered map of dynamically typed values.
33
33
  class Struct
34
- include Google::Protobuf::MessageExts
35
- extend Google::Protobuf::MessageExts::ClassMethods
34
+ include ::Google::Protobuf::MessageExts
35
+ extend ::Google::Protobuf::MessageExts::ClassMethods
36
36
 
37
37
  # @!attribute [rw] key
38
- # @return [String]
38
+ # @return [::String]
39
39
  # @!attribute [rw] value
40
- # @return [Google::Protobuf::Value]
40
+ # @return [::Google::Protobuf::Value]
41
41
  class FieldsEntry
42
- include Google::Protobuf::MessageExts
43
- extend Google::Protobuf::MessageExts::ClassMethods
42
+ include ::Google::Protobuf::MessageExts
43
+ extend ::Google::Protobuf::MessageExts::ClassMethods
44
44
  end
45
45
  end
46
46
 
@@ -51,37 +51,37 @@ module Google
51
51
  #
52
52
  # The JSON representation for `Value` is JSON value.
53
53
  # @!attribute [rw] null_value
54
- # @return [Google::Protobuf::NullValue]
54
+ # @return [::Google::Protobuf::NullValue]
55
55
  # Represents a null value.
56
56
  # @!attribute [rw] number_value
57
- # @return [Float]
57
+ # @return [::Float]
58
58
  # Represents a double value.
59
59
  # @!attribute [rw] string_value
60
- # @return [String]
60
+ # @return [::String]
61
61
  # Represents a string value.
62
62
  # @!attribute [rw] bool_value
63
- # @return [Boolean]
63
+ # @return [::Boolean]
64
64
  # Represents a boolean value.
65
65
  # @!attribute [rw] struct_value
66
- # @return [Google::Protobuf::Struct]
66
+ # @return [::Google::Protobuf::Struct]
67
67
  # Represents a structured value.
68
68
  # @!attribute [rw] list_value
69
- # @return [Google::Protobuf::ListValue]
69
+ # @return [::Google::Protobuf::ListValue]
70
70
  # Represents a repeated `Value`.
71
71
  class Value
72
- include Google::Protobuf::MessageExts
73
- extend Google::Protobuf::MessageExts::ClassMethods
72
+ include ::Google::Protobuf::MessageExts
73
+ extend ::Google::Protobuf::MessageExts::ClassMethods
74
74
  end
75
75
 
76
76
  # `ListValue` is a wrapper around a repeated field of values.
77
77
  #
78
78
  # The JSON representation for `ListValue` is JSON array.
79
79
  # @!attribute [rw] values
80
- # @return [Array<Google::Protobuf::Value>]
80
+ # @return [::Array<::Google::Protobuf::Value>]
81
81
  # Repeated field of dynamically typed values.
82
82
  class ListValue
83
- include Google::Protobuf::MessageExts
84
- extend Google::Protobuf::MessageExts::ClassMethods
83
+ include ::Google::Protobuf::MessageExts
84
+ extend ::Google::Protobuf::MessageExts::ClassMethods
85
85
  end
86
86
 
87
87
  # `NullValue` is a singleton enumeration to represent the null value for the
@@ -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,27 +92,29 @@ 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
- # @return [Integer]
105
+ # @return [::Integer]
102
106
  # Represents seconds of UTC time since Unix epoch
103
107
  # 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to
104
108
  # 9999-12-31T23:59:59Z inclusive.
105
109
  # @!attribute [rw] nanos
106
- # @return [Integer]
110
+ # @return [::Integer]
107
111
  # Non-negative fractions of a second at nanosecond resolution. Negative
108
112
  # second values with fractions must still have non-negative nanos values
109
113
  # that count forward in time. Must be from 0 to 999,999,999
110
114
  # inclusive.
111
115
  class Timestamp
112
- include Google::Protobuf::MessageExts
113
- extend Google::Protobuf::MessageExts::ClassMethods
116
+ include ::Google::Protobuf::MessageExts
117
+ extend ::Google::Protobuf::MessageExts::ClassMethods
114
118
  end
115
119
  end
116
120
  end
@@ -21,14 +21,14 @@ module Google
21
21
  module Type
22
22
  # Represents an amount of money with its currency type.
23
23
  # @!attribute [rw] currency_code
24
- # @return [String]
24
+ # @return [::String]
25
25
  # The 3-letter currency code defined in ISO 4217.
26
26
  # @!attribute [rw] units
27
- # @return [Integer]
27
+ # @return [::Integer]
28
28
  # The whole units of the amount.
29
29
  # For example if `currencyCode` is `"USD"`, then 1 unit is one US dollar.
30
30
  # @!attribute [rw] nanos
31
- # @return [Integer]
31
+ # @return [::Integer]
32
32
  # Number of nano (10^-9) units of the amount.
33
33
  # The value must be between -999,999,999 and +999,999,999 inclusive.
34
34
  # If `units` is positive, `nanos` must be positive or zero.
@@ -36,8 +36,8 @@ module Google
36
36
  # If `units` is negative, `nanos` must be negative or zero.
37
37
  # For example $-1.75 is represented as `units`=-1 and `nanos`=-750,000,000.
38
38
  class Money
39
- include Google::Protobuf::MessageExts
40
- extend Google::Protobuf::MessageExts::ClassMethods
39
+ include ::Google::Protobuf::MessageExts
40
+ extend ::Google::Protobuf::MessageExts::ClassMethods
41
41
  end
42
42
  end
43
43
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-recommender-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.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-25 00:00:00.000000000 Z
11
+ date: 2020-05-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common
@@ -58,14 +58,42 @@ dependencies:
58
58
  requirements:
59
59
  - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: '5.10'
61
+ version: '5.14'
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
- version: '5.10'
68
+ version: '5.14'
69
+ - !ruby/object:Gem::Dependency
70
+ name: minitest-focus
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '1.1'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '1.1'
83
+ - !ruby/object:Gem::Dependency
84
+ name: minitest-rg
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '5.2'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '5.2'
69
97
  - !ruby/object:Gem::Dependency
70
98
  name: rake
71
99
  requirement: !ruby/object:Gem::Requirement
@@ -134,7 +162,6 @@ files:
134
162
  - LICENSE.md
135
163
  - README.md
136
164
  - lib/google-cloud-recommender-v1.rb
137
- - lib/google/cloud/common_resources_pb.rb
138
165
  - lib/google/cloud/recommender/v1.rb
139
166
  - lib/google/cloud/recommender/v1/recommendation_pb.rb
140
167
  - lib/google/cloud/recommender/v1/recommender.rb
@@ -1,15 +0,0 @@
1
- # Generated by the protocol buffer compiler. DO NOT EDIT!
2
- # source: google/cloud/common_resources.proto
3
-
4
- require 'google/protobuf'
5
-
6
- require 'google/api/resource_pb'
7
- Google::Protobuf::DescriptorPool.generated_pool.build do
8
- add_file("google/cloud/common_resources.proto", :syntax => :proto3) do
9
- end
10
- end
11
-
12
- module Google
13
- module Cloud
14
- end
15
- end