google-cloud-billing-v1 0.4.1 → 0.5.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: '069d513cbc1c7fac56c88af8ae481229b31a39f28b68a28d23e5d84477a8c75f'
4
- data.tar.gz: add53c1300a218d45e91fd25f881d5df067f777dfdc753c3117ada5644c16420
3
+ metadata.gz: 537787e064b423ab6baf7e90f22c1ad962cd9ef58d51a2a9a00d3198765d0711
4
+ data.tar.gz: 8294ce97c47e11a5c7271db9f465bda066e5c0e143a3189bb6bd553eee4202c2
5
5
  SHA512:
6
- metadata.gz: c614a78c093e6a3814ed4b9fd1b330bf0ea2fd24c3f149e4d9c16dba1ee3e55c1b934aff4e2bdc21024aad46d45bba521374f7235c03b7da6d385a9de2828ae5
7
- data.tar.gz: f17a11ce837e8e4b5b3d85a7463103f18b7d543cf2454bb5d60be6e1e86a280ceca63f289ce05046117c54b69942c60ad3e8585cb750ba84e3527511256fce77
6
+ metadata.gz: 1d88bd7796f341339d1a0e55141f13b4af52e6a4d71bb374083a0aac2a8aa637ee1176551f6642993444e78d8451eb91acc354a73d6c4bf19b21fb8108c3d805
7
+ data.tar.gz: 1db8cc301903e010e58708f971d8390f2ceb2755ca74b69134216c2e1d27268fe8e782185331b9eab9822207409cbb86358d5b94d05bdc2ac40709c1fc01536a
@@ -204,7 +204,8 @@ module Google
204
204
  if credentials.is_a?(String) || credentials.is_a?(Hash)
205
205
  credentials = Credentials.new credentials, scope: @config.scope
206
206
  end
207
- @quota_project_id = credentials.respond_to?(:quota_project_id) ? credentials.quota_project_id : nil
207
+ @quota_project_id = @config.quota_project
208
+ @quota_project_id ||= credentials.quota_project_id if credentials.respond_to? :quota_project_id
208
209
 
209
210
  @cloud_billing_stub = ::Gapic::ServiceStub.new(
210
211
  ::Google::Cloud::Billing::V1::CloudBilling::Stub,
@@ -1056,24 +1057,28 @@ module Google
1056
1057
  # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should
1057
1058
  # trigger a retry.
1058
1059
  # @return [::Hash]
1060
+ # @!attribute [rw] quota_project
1061
+ # A separate project against which to charge quota.
1062
+ # @return [::String]
1059
1063
  #
1060
1064
  class Configuration
1061
1065
  extend ::Gapic::Config
1062
1066
 
1063
- config_attr :endpoint, "cloudbilling.googleapis.com", String
1064
- config_attr :credentials, nil do |value|
1067
+ config_attr :endpoint, "cloudbilling.googleapis.com", ::String
1068
+ config_attr :credentials, nil do |value|
1065
1069
  allowed = [::String, ::Hash, ::Proc, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
1066
1070
  allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
1067
1071
  allowed.any? { |klass| klass === value }
1068
1072
  end
1069
- config_attr :scope, nil, ::String, ::Array, nil
1070
- config_attr :lib_name, nil, ::String, nil
1071
- config_attr :lib_version, nil, ::String, nil
1072
- config_attr(:channel_args, { "grpc.service_config_disable_resolution"=>1 }, ::Hash, nil)
1073
- config_attr :interceptors, nil, ::Array, nil
1074
- config_attr :timeout, nil, ::Numeric, nil
1075
- config_attr :metadata, nil, ::Hash, nil
1076
- config_attr :retry_policy, nil, ::Hash, Proc, nil
1073
+ config_attr :scope, nil, ::String, ::Array, nil
1074
+ config_attr :lib_name, nil, ::String, nil
1075
+ config_attr :lib_version, nil, ::String, nil
1076
+ config_attr(:channel_args, { "grpc.service_config_disable_resolution"=>1 }, ::Hash, nil)
1077
+ config_attr :interceptors, nil, ::Array, nil
1078
+ config_attr :timeout, nil, ::Numeric, nil
1079
+ config_attr :metadata, nil, ::Hash, nil
1080
+ config_attr :retry_policy, nil, ::Hash, ::Proc, nil
1081
+ config_attr :quota_project, nil, ::String, nil
1077
1082
 
1078
1083
  # @private
1079
1084
  def initialize parent_config = nil
@@ -136,7 +136,8 @@ module Google
136
136
  if credentials.is_a?(String) || credentials.is_a?(Hash)
137
137
  credentials = Credentials.new credentials, scope: @config.scope
138
138
  end
139
- @quota_project_id = credentials.respond_to?(:quota_project_id) ? credentials.quota_project_id : nil
139
+ @quota_project_id = @config.quota_project
140
+ @quota_project_id ||= credentials.quota_project_id if credentials.respond_to? :quota_project_id
140
141
 
141
142
  @cloud_catalog_stub = ::Gapic::ServiceStub.new(
142
143
  ::Google::Cloud::Billing::V1::CloudCatalog::Stub,
@@ -382,24 +383,28 @@ module Google
382
383
  # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should
383
384
  # trigger a retry.
384
385
  # @return [::Hash]
386
+ # @!attribute [rw] quota_project
387
+ # A separate project against which to charge quota.
388
+ # @return [::String]
385
389
  #
386
390
  class Configuration
387
391
  extend ::Gapic::Config
388
392
 
389
- config_attr :endpoint, "cloudbilling.googleapis.com", String
390
- config_attr :credentials, nil do |value|
393
+ config_attr :endpoint, "cloudbilling.googleapis.com", ::String
394
+ config_attr :credentials, nil do |value|
391
395
  allowed = [::String, ::Hash, ::Proc, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
392
396
  allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
393
397
  allowed.any? { |klass| klass === value }
394
398
  end
395
- config_attr :scope, nil, ::String, ::Array, nil
396
- config_attr :lib_name, nil, ::String, nil
397
- config_attr :lib_version, nil, ::String, nil
398
- config_attr(:channel_args, { "grpc.service_config_disable_resolution"=>1 }, ::Hash, nil)
399
- config_attr :interceptors, nil, ::Array, nil
400
- config_attr :timeout, nil, ::Numeric, nil
401
- config_attr :metadata, nil, ::Hash, nil
402
- config_attr :retry_policy, nil, ::Hash, Proc, nil
399
+ config_attr :scope, nil, ::String, ::Array, nil
400
+ config_attr :lib_name, nil, ::String, nil
401
+ config_attr :lib_version, nil, ::String, nil
402
+ config_attr(:channel_args, { "grpc.service_config_disable_resolution"=>1 }, ::Hash, nil)
403
+ config_attr :interceptors, nil, ::Array, nil
404
+ config_attr :timeout, nil, ::Numeric, nil
405
+ config_attr :metadata, nil, ::Hash, nil
406
+ config_attr :retry_policy, nil, ::Hash, ::Proc, nil
407
+ config_attr :quota_project, nil, ::String, nil
403
408
 
404
409
  # @private
405
410
  def initialize parent_config = nil
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module Billing
23
23
  module V1
24
- VERSION = "0.4.1"
24
+ VERSION = "0.5.0"
25
25
  end
26
26
  end
27
27
  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.1
4
+ version: 0.5.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: 2020-05-05 00:00:00.000000000 Z
11
+ date: 2020-05-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common
@@ -78,14 +78,42 @@ dependencies:
78
78
  requirements:
79
79
  - - "~>"
80
80
  - !ruby/object:Gem::Version
81
- version: '5.10'
81
+ version: '5.14'
82
82
  type: :development
83
83
  prerelease: false
84
84
  version_requirements: !ruby/object:Gem::Requirement
85
85
  requirements:
86
86
  - - "~>"
87
87
  - !ruby/object:Gem::Version
88
- version: '5.10'
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'
110
+ type: :development
111
+ prerelease: false
112
+ version_requirements: !ruby/object:Gem::Requirement
113
+ requirements:
114
+ - - "~>"
115
+ - !ruby/object:Gem::Version
116
+ version: '5.2'
89
117
  - !ruby/object:Gem::Dependency
90
118
  name: rake
91
119
  requirement: !ruby/object:Gem::Requirement