google-cloud-billing-v1 0.3.1 → 0.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/AUTHENTICATION.md +6 -6
- data/README.md +48 -1
- data/lib/google-cloud-billing-v1.rb +21 -1
- data/lib/google/cloud/billing/v1.rb +16 -0
- data/lib/google/cloud/billing/v1/cloud_billing.rb +30 -1
- data/lib/google/cloud/billing/v1/cloud_billing/client.rb +303 -308
- data/lib/google/cloud/billing/v1/cloud_billing/credentials.rb +1 -1
- data/lib/google/cloud/billing/v1/cloud_billing/paths.rb +1 -1
- data/lib/google/cloud/billing/v1/cloud_catalog.rb +32 -1
- data/lib/google/cloud/billing/v1/cloud_catalog/client.rb +101 -99
- data/lib/google/cloud/billing/v1/cloud_catalog/credentials.rb +1 -1
- data/lib/google/cloud/billing/v1/cloud_catalog/paths.rb +1 -1
- data/lib/google/cloud/billing/v1/version.rb +1 -1
- data/proto_docs/google/api/resource.rb +12 -12
- data/proto_docs/google/cloud/billing/v1/cloud_billing.rb +48 -48
- data/proto_docs/google/cloud/billing/v1/cloud_catalog.rb +66 -66
- data/proto_docs/google/iam/v1/iam_policy.rb +21 -20
- data/proto_docs/google/iam/v1/options.rb +40 -0
- data/proto_docs/google/iam/v1/policy.rb +126 -34
- data/proto_docs/google/protobuf/field_mask.rb +3 -3
- data/proto_docs/google/protobuf/timestamp.rb +4 -4
- data/proto_docs/google/type/expr.rb +52 -0
- data/proto_docs/google/type/money.rb +5 -5
- metadata +45 -10
- data/lib/google/cloud/common_resources_pb.rb +0 -15
@@ -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-billing-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.5.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: 2020-
|
11
|
+
date: 2020-06-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|
@@ -42,16 +42,22 @@ dependencies:
|
|
42
42
|
name: grpc-google-iam-v1
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
-
- - "
|
45
|
+
- - ">="
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: 0.6.
|
47
|
+
version: 0.6.10
|
48
|
+
- - "<"
|
49
|
+
- !ruby/object:Gem::Version
|
50
|
+
version: '2.0'
|
48
51
|
type: :runtime
|
49
52
|
prerelease: false
|
50
53
|
version_requirements: !ruby/object:Gem::Requirement
|
51
54
|
requirements:
|
52
|
-
- - "
|
55
|
+
- - ">="
|
56
|
+
- !ruby/object:Gem::Version
|
57
|
+
version: 0.6.10
|
58
|
+
- - "<"
|
53
59
|
- !ruby/object:Gem::Version
|
54
|
-
version: 0
|
60
|
+
version: '2.0'
|
55
61
|
- !ruby/object:Gem::Dependency
|
56
62
|
name: google-style
|
57
63
|
requirement: !ruby/object:Gem::Requirement
|
@@ -72,14 +78,42 @@ dependencies:
|
|
72
78
|
requirements:
|
73
79
|
- - "~>"
|
74
80
|
- !ruby/object:Gem::Version
|
75
|
-
version: '5.
|
81
|
+
version: '5.14'
|
82
|
+
type: :development
|
83
|
+
prerelease: false
|
84
|
+
version_requirements: !ruby/object:Gem::Requirement
|
85
|
+
requirements:
|
86
|
+
- - "~>"
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: '5.14'
|
89
|
+
- !ruby/object:Gem::Dependency
|
90
|
+
name: minitest-focus
|
91
|
+
requirement: !ruby/object:Gem::Requirement
|
92
|
+
requirements:
|
93
|
+
- - "~>"
|
94
|
+
- !ruby/object:Gem::Version
|
95
|
+
version: '1.1'
|
96
|
+
type: :development
|
97
|
+
prerelease: false
|
98
|
+
version_requirements: !ruby/object:Gem::Requirement
|
99
|
+
requirements:
|
100
|
+
- - "~>"
|
101
|
+
- !ruby/object:Gem::Version
|
102
|
+
version: '1.1'
|
103
|
+
- !ruby/object:Gem::Dependency
|
104
|
+
name: minitest-rg
|
105
|
+
requirement: !ruby/object:Gem::Requirement
|
106
|
+
requirements:
|
107
|
+
- - "~>"
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: '5.2'
|
76
110
|
type: :development
|
77
111
|
prerelease: false
|
78
112
|
version_requirements: !ruby/object:Gem::Requirement
|
79
113
|
requirements:
|
80
114
|
- - "~>"
|
81
115
|
- !ruby/object:Gem::Version
|
82
|
-
version: '5.
|
116
|
+
version: '5.2'
|
83
117
|
- !ruby/object:Gem::Dependency
|
84
118
|
name: rake
|
85
119
|
requirement: !ruby/object:Gem::Requirement
|
@@ -162,16 +196,17 @@ files:
|
|
162
196
|
- lib/google/cloud/billing/v1/cloud_catalog_pb.rb
|
163
197
|
- lib/google/cloud/billing/v1/cloud_catalog_services_pb.rb
|
164
198
|
- lib/google/cloud/billing/v1/version.rb
|
165
|
-
- lib/google/cloud/common_resources_pb.rb
|
166
199
|
- proto_docs/README.md
|
167
200
|
- proto_docs/google/api/field_behavior.rb
|
168
201
|
- proto_docs/google/api/resource.rb
|
169
202
|
- proto_docs/google/cloud/billing/v1/cloud_billing.rb
|
170
203
|
- proto_docs/google/cloud/billing/v1/cloud_catalog.rb
|
171
204
|
- proto_docs/google/iam/v1/iam_policy.rb
|
205
|
+
- proto_docs/google/iam/v1/options.rb
|
172
206
|
- proto_docs/google/iam/v1/policy.rb
|
173
207
|
- proto_docs/google/protobuf/field_mask.rb
|
174
208
|
- proto_docs/google/protobuf/timestamp.rb
|
209
|
+
- proto_docs/google/type/expr.rb
|
175
210
|
- proto_docs/google/type/money.rb
|
176
211
|
homepage: https://github.com/googleapis/google-cloud-ruby
|
177
212
|
licenses:
|
@@ -192,7 +227,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
192
227
|
- !ruby/object:Gem::Version
|
193
228
|
version: '0'
|
194
229
|
requirements: []
|
195
|
-
rubygems_version: 3.
|
230
|
+
rubygems_version: 3.1.3
|
196
231
|
signing_key:
|
197
232
|
specification_version: 4
|
198
233
|
summary: API Client library for the Billing V1 API
|
@@ -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
|