google-cloud-billing-budgets-v1beta1 0.13.0 → 0.14.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: c4badac2138751dfb6780b92528c27c252a048de5cd554984be203077a6405f7
4
- data.tar.gz: 99177c43d56b0a34d29a78c13515dbfb9831b668013588714be4536e6c6bb709
3
+ metadata.gz: 81576e1926ad91d7b0753ed42322a8b54f9738a045d572f980946cbb5c9692cf
4
+ data.tar.gz: 6f020d5b2cd8a4b0166c97a0aff5e2f934d883fd1bd35b045ddeda02a7f3cb28
5
5
  SHA512:
6
- metadata.gz: 206e09bc98dbc34cb97c0b7b4f6daf9f5a3126067a71261c142a1112f65b8ed70f90c747a987e4cab170cdbd86528813a08c262130be04b62c23064e68c0ef45
7
- data.tar.gz: aab230497608c4ec1ce5142e4316720dc0f5273fb9fdc24941daa9ee6316943fbaef8aa907ef68dfeb6f3a660a7244e7ffc514fc18e15af3fdc0d8d9b00aa878
6
+ metadata.gz: 57e61c1a6c89cb0a3707faae35328ce0e2817d7a898a91e6661f1f10d091d050d50993fa6f1a8ef4dec5141860ce6e03fb5876b9d6fb69b18f86316cd22418d1
7
+ data.tar.gz: cc5982da03ad3055facee11f709b008f5c2a9c24150290fde74f0e244624e94869195c05264dfaaf601f0fe80c6c9fddc619e6ffc50b90befa3704d615287b4a
data/README.md CHANGED
@@ -86,7 +86,7 @@ To browse ready to use code samples check [Google Cloud Samples](https://cloud.g
86
86
 
87
87
  ## Supported Ruby Versions
88
88
 
89
- This library is supported on Ruby 2.7+.
89
+ This library is supported on Ruby 3.0+.
90
90
 
91
91
  Google provides official support for Ruby versions that are actively supported
92
92
  by Ruby Core—that is, Ruby versions that are either in normal maintenance or
@@ -726,6 +726,13 @@ module Google
726
726
  # * (`GRPC::Core::Channel`) a gRPC channel with included credentials
727
727
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
728
728
  # * (`nil`) indicating no credentials
729
+ #
730
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
731
+ # external source for authentication to Google Cloud, you must validate it before
732
+ # providing it to a Google API client library. Providing an unvalidated credential
733
+ # configuration to Google APIs can compromise the security of your systems and data.
734
+ # For more information, refer to [Validate credential configurations from external
735
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
729
736
  # @return [::Object]
730
737
  # @!attribute [rw] scope
731
738
  # The OAuth scopes
@@ -22,7 +22,7 @@ module Google
22
22
  module Billing
23
23
  module Budgets
24
24
  module V1beta1
25
- VERSION = "0.13.0"
25
+ VERSION = "0.14.0"
26
26
  end
27
27
  end
28
28
  end
@@ -74,6 +74,8 @@ module Google
74
74
  # match the currency of the billing account. If specified when updating a
75
75
  # budget, it must match the currency_code of the existing budget.
76
76
  # The `currency_code` is provided on output.
77
+ #
78
+ # Note: The following fields are mutually exclusive: `specified_amount`, `last_period_amount`. If a field in that set is populated, all other fields in the set will automatically be cleared.
77
79
  # @!attribute [rw] last_period_amount
78
80
  # @return [::Google::Cloud::Billing::Budgets::V1beta1::LastPeriodAmount]
79
81
  # Use the last period's actual spend as the budget for the present period.
@@ -81,6 +83,8 @@ module Google
81
83
  # {::Google::Cloud::Billing::Budgets::V1beta1::Filter#calendar_period Filter.calendar_period}.
82
84
  # It cannot be set in combination with
83
85
  # {::Google::Cloud::Billing::Budgets::V1beta1::Filter#custom_period Filter.custom_period}.
86
+ #
87
+ # Note: The following fields are mutually exclusive: `last_period_amount`, `specified_amount`. If a field in that set is populated, all other fields in the set will automatically be cleared.
84
88
  class BudgetAmount
85
89
  include ::Google::Protobuf::MessageExts
86
90
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -272,10 +276,14 @@ module Google
272
276
  # April, May, June. After that, it will track usage from July 1 to
273
277
  # September 30 when the current calendar month is July, August, September,
274
278
  # so on.
279
+ #
280
+ # Note: The following fields are mutually exclusive: `calendar_period`, `custom_period`. If a field in that set is populated, all other fields in the set will automatically be cleared.
275
281
  # @!attribute [rw] custom_period
276
282
  # @return [::Google::Cloud::Billing::Budgets::V1beta1::CustomPeriod]
277
283
  # Optional. Specifies to track usage from any start date (required) to any
278
284
  # end date (optional). This time period is static, it does not recur.
285
+ #
286
+ # Note: The following fields are mutually exclusive: `custom_period`, `calendar_period`. If a field in that set is populated, all other fields in the set will automatically be cleared.
279
287
  class Filter
280
288
  include ::Google::Protobuf::MessageExts
281
289
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -53,21 +53,33 @@ module Google
53
53
  # @!attribute [rw] null_value
54
54
  # @return [::Google::Protobuf::NullValue]
55
55
  # Represents a null value.
56
+ #
57
+ # Note: The following fields are mutually exclusive: `null_value`, `number_value`, `string_value`, `bool_value`, `struct_value`, `list_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
56
58
  # @!attribute [rw] number_value
57
59
  # @return [::Float]
58
60
  # Represents a double value.
61
+ #
62
+ # Note: The following fields are mutually exclusive: `number_value`, `null_value`, `string_value`, `bool_value`, `struct_value`, `list_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
59
63
  # @!attribute [rw] string_value
60
64
  # @return [::String]
61
65
  # Represents a string value.
66
+ #
67
+ # Note: The following fields are mutually exclusive: `string_value`, `null_value`, `number_value`, `bool_value`, `struct_value`, `list_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
62
68
  # @!attribute [rw] bool_value
63
69
  # @return [::Boolean]
64
70
  # Represents a boolean value.
71
+ #
72
+ # Note: The following fields are mutually exclusive: `bool_value`, `null_value`, `number_value`, `string_value`, `struct_value`, `list_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
65
73
  # @!attribute [rw] struct_value
66
74
  # @return [::Google::Protobuf::Struct]
67
75
  # Represents a structured value.
76
+ #
77
+ # Note: The following fields are mutually exclusive: `struct_value`, `null_value`, `number_value`, `string_value`, `bool_value`, `list_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
68
78
  # @!attribute [rw] list_value
69
79
  # @return [::Google::Protobuf::ListValue]
70
80
  # Represents a repeated `Value`.
81
+ #
82
+ # Note: The following fields are mutually exclusive: `list_value`, `null_value`, `number_value`, `string_value`, `bool_value`, `struct_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
71
83
  class Value
72
84
  include ::Google::Protobuf::MessageExts
73
85
  extend ::Google::Protobuf::MessageExts::ClassMethods
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-billing-budgets-v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.13.0
4
+ version: 0.14.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-12-10 00:00:00.000000000 Z
10
+ date: 2025-01-29 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: gapic-common
@@ -16,7 +15,7 @@ dependencies:
16
15
  requirements:
17
16
  - - ">="
18
17
  - !ruby/object:Gem::Version
19
- version: 0.24.0
18
+ version: 0.25.0
20
19
  - - "<"
21
20
  - !ruby/object:Gem::Version
22
21
  version: 2.a
@@ -26,7 +25,7 @@ dependencies:
26
25
  requirements:
27
26
  - - ">="
28
27
  - !ruby/object:Gem::Version
29
- version: 0.24.0
28
+ version: 0.25.0
30
29
  - - "<"
31
30
  - !ruby/object:Gem::Version
32
31
  version: 2.a
@@ -84,7 +83,6 @@ homepage: https://github.com/googleapis/google-cloud-ruby
84
83
  licenses:
85
84
  - Apache-2.0
86
85
  metadata: {}
87
- post_install_message:
88
86
  rdoc_options: []
89
87
  require_paths:
90
88
  - lib
@@ -92,15 +90,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
92
90
  requirements:
93
91
  - - ">="
94
92
  - !ruby/object:Gem::Version
95
- version: '2.7'
93
+ version: '3.0'
96
94
  required_rubygems_version: !ruby/object:Gem::Requirement
97
95
  requirements:
98
96
  - - ">="
99
97
  - !ruby/object:Gem::Version
100
98
  version: '0'
101
99
  requirements: []
102
- rubygems_version: 3.5.23
103
- signing_key:
100
+ rubygems_version: 3.6.2
104
101
  specification_version: 4
105
102
  summary: The Cloud Billing Budget API stores Cloud Billing budgets, which define a
106
103
  budget plan and the rules to execute as spend is tracked against that plan.