google-cloud-billing-budgets 1.1.2 → 2.0.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4050c2d6de75f0568f85f8bad5e50c7c4024c9538056129dd3b8311a61e7763b
4
- data.tar.gz: 11e98dffea36f0d01f1d74429a0814fe0ea61ae6401d6b684c346c8801b8e6c3
3
+ metadata.gz: cbb9a2de82476b29ebb53738c33a1d83eb51094cfb83c643364f631c92dc6eb3
4
+ data.tar.gz: 7c19b415d092b6534090314d678f31b19b9085b55fb468bebe55515fe4ab0cba
5
5
  SHA512:
6
- metadata.gz: 6155c3bfeed924e897f7fb6531d5bb7a8c4c74d52a29d36a4778f551ecfa94bfd13dff29ac6d882ab250b39d0becd6069236e89fe3f40939b97087c90be7bc6c
7
- data.tar.gz: 51921076e9d379f5d240a0310bba367297c24fdc31d2aedc5137a52f6ff68e6d6799046a0a75c1f093be9acf7325750162f264590d8879f5dd1bcfc5c8237283
6
+ metadata.gz: 68d8dd2fce64cd4038c3d51076b5d59d0f0bc5443f2826785078b8ddc857c8e101c47a4c2ef940b751aa0527af867912014d19675526abe848b6c24a4a7ec069
7
+ data.tar.gz: b1a882f7c0142589e01b6f8a7d8db512dcda00161f8d89d8e67f85f01d9edc38c43521b2ef7f183d07545f1423f8c7e2906301097ae45c09a833ade81c33fb30
data/AUTHENTICATION.md CHANGED
@@ -64,7 +64,7 @@ containers where writing files is difficult or not encouraged.
64
64
 
65
65
  The environment variables that google-cloud-billing-budgets
66
66
  checks for credentials are configured on the service Credentials class (such as
67
- `::Google::Cloud::Billing::Budgets::V1beta1::BudgetService::Credentials`):
67
+ `::Google::Cloud::Billing::Budgets::V1::BudgetService::Credentials`):
68
68
 
69
69
  * `BILLING_BUDGETS_CREDENTIALS` - Path to JSON file, or JSON contents
70
70
  * `BILLING_BUDGETS_KEYFILE` - Path to JSON file, or JSON contents
data/README.md CHANGED
@@ -16,6 +16,7 @@ for this library, google-cloud-billing-budgets, to see the convenience methods f
16
16
  constructing client objects. Reference documentation for the client objects
17
17
  themselves can be found in the client library documentation for the versioned
18
18
  client gems:
19
+ [google-cloud-billing-budgets-v1](https://googleapis.dev/ruby/google-cloud-billing-budgets-v1/latest),
19
20
  [google-cloud-billing-budgets-v1beta1](https://googleapis.dev/ruby/google-cloud-billing-budgets-v1beta1/latest).
20
21
 
21
22
  See also the [Product Documentation](https://cloud.google.com/billing/docs/how-to/budget-api-overview)
@@ -76,7 +77,7 @@ about the Ruby support schedule.
76
77
  Most modern Ruby client libraries for Google APIs come in two flavors: the main
77
78
  client library with a name such as `google-cloud-billing-budgets`,
78
79
  and lower-level _versioned_ client libraries with names such as
79
- `google-cloud-billing-budgets-v1beta1`.
80
+ `google-cloud-billing-budgets-v1`.
80
81
  _In most cases, you should install the main client._
81
82
 
82
83
  ### What's the difference between the main client and a versioned client?
@@ -114,7 +115,7 @@ You can use a versioned client if you are content with a possibly lower-level
114
115
  class interface, you explicitly want to avoid features provided by the main
115
116
  client, or you want to access a specific service version not be covered by the
116
117
  main client. You can identify versioned client gems because the service version
117
- is part of the name, e.g. `google-cloud-billing-budgets-v1beta1`.
118
+ is part of the name, e.g. `google-cloud-billing-budgets-v1`.
118
119
 
119
120
  ### What about the google-apis-<name> clients?
120
121
 
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module Billing
23
23
  module Budgets
24
- VERSION = "1.1.2"
24
+ VERSION = "2.0.0"
25
25
  end
26
26
  end
27
27
  end
@@ -49,8 +49,8 @@ module Google
49
49
  # Create a new client object for BudgetService.
50
50
  #
51
51
  # By default, this returns an instance of
52
- # [Google::Cloud::Billing::Budgets::V1beta1::BudgetService::Client](https://googleapis.dev/ruby/google-cloud-billing-budgets-v1beta1/latest/Google/Cloud/Billing/Budgets/V1beta1/BudgetService/Client.html)
53
- # for version V1beta1 of the API.
52
+ # [Google::Cloud::Billing::Budgets::V1::BudgetService::Client](https://googleapis.dev/ruby/google-cloud-billing-budgets-v1/latest/Google/Cloud/Billing/Budgets/V1/BudgetService/Client.html)
53
+ # for version V1 of the API.
54
54
  # However, you can specify specify a different API version by passing it in the
55
55
  # `version` parameter. If the BudgetService service is
56
56
  # supported by that API version, and the corresponding gem is available, the
@@ -62,10 +62,10 @@ module Google
62
62
  # budget plan and rules to execute as we track spend against that plan.
63
63
  #
64
64
  # @param version [::String, ::Symbol] The API version to connect to. Optional.
65
- # Defaults to `:v1beta1`.
65
+ # Defaults to `:v1`.
66
66
  # @return [BudgetService::Client] A client object for the specified version.
67
67
  #
68
- def self.budget_service version: :v1beta1, &block
68
+ def self.budget_service version: :v1, &block
69
69
  require "google/cloud/billing/budgets/#{version.to_s.downcase}"
70
70
 
71
71
  package_name = Google::Cloud::Billing::Budgets
metadata CHANGED
@@ -1,15 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-billing-budgets
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.2
4
+ version: 2.0.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: 2021-07-12 00:00:00.000000000 Z
11
+ date: 2021-09-28 00:00:00.000000000 Z
12
12
  dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: google-cloud-billing-budgets-v1
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0.0'
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: 2.a
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: '0.0'
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: 2.a
13
33
  - !ruby/object:Gem::Dependency
14
34
  name: google-cloud-billing-budgets-v1beta1
15
35
  requirement: !ruby/object:Gem::Requirement