google-apis-apigee_v1 0.105.0 → 0.106.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: 9e3b12105314a457a5e193a3445c80d397344aabad6b3489b05679f189c6328c
4
- data.tar.gz: de9be170b7c9ae856b46e5847ca07a27c18f1004dedbed37e2884fad6e0f6fbd
3
+ metadata.gz: 23a894ba7e4bae7592c48e4084bda2580bda606d2651adb2e5be1b92a3dfe142
4
+ data.tar.gz: 258c42cc10432924df25c3ebdd88e5ca25eae6d97e9b8992c1fa5c2a15277985
5
5
  SHA512:
6
- metadata.gz: 4d31b1dd09bbf8e9a857c9d4639c036b886730ae97acee06a7153a9ab4a879c27abcb207b95831d418752329c760e332e047034d02ab3cde38e6a0f823b2a903
7
- data.tar.gz: 6eb665a963910ae85f2ac53a60be2bc69ca6c62359907625aa9e78fb19b714ebd6b62b3993ea4f5f3a3366c94078f5eb0ac5ba023b964b2b3f740834679258a3
6
+ metadata.gz: f50e3a6b73afe98a8de1ceb14e8a1ea1fc983954b1b3ca642338f08e4cde07f052d25eb28278c71df44eb906f1909197edd13dee16ec420eee11a0244342dfd5
7
+ data.tar.gz: 1b3d4536470a5a24f5132ed5799a792c3e6e6f643e64e5902b039291f5ed6983f6ff20e405483c692ed15d77fb66bd67a24d458a9035bd26c5e7268263437442
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-apigee_v1
2
2
 
3
+ ### v0.106.0 (2025-05-11)
4
+
5
+ * Regenerated from discovery document revision 20250506
6
+ * Regenerated using generator version 0.17.0
7
+
3
8
  ### v0.105.0 (2025-04-27)
4
9
 
5
10
  * Regenerated from discovery document revision 20250421
data/OVERVIEW.md CHANGED
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/apigee-api-management/) may
83
83
 
84
84
  ## Supported Ruby versions
85
85
 
86
- This library is supported on Ruby 2.7+.
86
+ This library is supported on Ruby 3.1+.
87
87
 
88
88
  Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
89
89
 
@@ -7438,7 +7438,7 @@ module Google
7438
7438
  end
7439
7439
  end
7440
7440
 
7441
- #
7441
+ # Encapsulates a response format for JavaScript Optimized Scenario.
7442
7442
  class GoogleCloudApigeeV1OptimizedStats
7443
7443
  include Google::Apis::Core::Hashable
7444
7444
 
@@ -7466,7 +7466,7 @@ module Google
7466
7466
  class GoogleCloudApigeeV1OptimizedStatsNode
7467
7467
  include Google::Apis::Core::Hashable
7468
7468
 
7469
- #
7469
+ # List of data values.
7470
7470
  # Corresponds to the JSON property `data`
7471
7471
  # @return [Array<Object>]
7472
7472
  attr_accessor :data
@@ -8642,12 +8642,14 @@ module Google
8642
8642
 
8643
8643
  # API call volume ranges and the fees charged when the total number of API calls
8644
8644
  # is within a given range. The method used to calculate the final fee depends on
8645
- # the selected pricing model. For example, if the pricing model is `STAIRSTEP`
8646
- # and the ranges are defined as follows: ``` ` "start": 1, "end": 100, "fee": 75
8647
- # `, ` "start": 101, "end": 200, "fee": 100 `, ` ``` Then the following fees
8648
- # would be charged based on the total number of API calls (assuming the currency
8649
- # selected is `USD`): * 1 call costs $75 * 50 calls cost $75 * 150 calls cost $
8650
- # 100 The number of API calls cannot exceed 200.
8645
+ # the selected pricing model. For example, if the pricing model is `BANDED` and
8646
+ # the ranges are defined as follows: ``` ` "start": 1, "end": 100, "fee": 2 `, `
8647
+ # "start": 101, "end": 200, "fee": 1.50 `, ` "start": 201, "end": 0, "fee": 1 `,
8648
+ # ` ``` Then the following fees would be charged based on the total number of
8649
+ # API calls (assuming the currency selected is `USD`): * 50 calls cost 50 x $2 =
8650
+ # $100 * 150 calls cost 100 x $2 + 50 x $1.5 = $275 * 250 calls cost 100 x $2 +
8651
+ # 100 x $1.5 + 50 x $1 = $400 * 500 calls cost 100 x $2 + 100 x $1.5 + 300 x $1 =
8652
+ # $650
8651
8653
  # Corresponds to the JSON property `consumptionPricingRates`
8652
8654
  # @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1RateRange>]
8653
8655
  attr_accessor :consumption_pricing_rates
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ApigeeV1
18
18
  # Version of the google-apis-apigee_v1 gem
19
- GEM_VERSION = "0.105.0"
19
+ GEM_VERSION = "0.106.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.16.0"
22
+ GENERATOR_VERSION = "0.17.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250421"
25
+ REVISION = "20250506"
26
26
  end
27
27
  end
28
28
  end
@@ -2687,10 +2687,10 @@ module Google
2687
2687
  # avoid service disruptions, a consumer key and secret should not exceed 2 KBs
2688
2688
  # each. **Note**: When creating the consumer key and secret, an association to
2689
2689
  # API products will not be made. Therefore, you should not specify the
2690
- # associated API products in your request. Instead, use the
2691
- # ProductizeAppGroupAppKey API to make the association after the consumer key
2692
- # and secret are created. If a consumer key and secret already exist, you can
2693
- # keep them or delete them using the DeleteAppGroupAppKey API.
2690
+ # associated API products in your request. Instead, use the UpdateAppGroupAppKey
2691
+ # API to make the association after the consumer key and secret are created. If
2692
+ # a consumer key and secret already exist, you can keep them or delete them
2693
+ # using the DeleteAppGroupAppKey API.
2694
2694
  # @param [String] parent
2695
2695
  # Required. Parent of the AppGroup app key. Use the following structure in your
2696
2696
  # request: `organizations/`org`/appgroups/`app_group_name`/apps/`app`/keys`
@@ -7940,8 +7940,7 @@ module Google
7940
7940
  # @param [String] filter
7941
7941
  # Filter that enables you to drill-down on specific dimension values.
7942
7942
  # @param [String] limit
7943
- # Maximum number of result items to return. The default and maximum value that
7944
- # can be returned is 14400.
7943
+ # Maximum number of result items to return.
7945
7944
  # @param [String] offset
7946
7945
  # Offset value. Use `offset` with `limit` to enable pagination of results. For
7947
7946
  # example, to display results 11-20, set limit to `10` and offset to `10`.
@@ -7956,7 +7955,7 @@ module Google
7956
7955
  # Flag that specifies whether the sort order should be ascending or descending.
7957
7956
  # Valid values include `DESC` and `ASC`.
7958
7957
  # @param [String] sortby
7959
- # Comma-separated list of columns to sort the final result.
7958
+ # Comma-separated list of metrics to sort the final result.
7960
7959
  # @param [String] time_range
7961
7960
  # Required. Time interval for the interactive query. Time range is specified in
7962
7961
  # GMT as `start~end`. For example: `04/15/2017 00:00~05/15/2017 23:59`
@@ -9368,8 +9367,7 @@ module Google
9368
9367
  # @param [String] filter
9369
9368
  # Filter that enables you to drill down on specific dimension values.
9370
9369
  # @param [String] limit
9371
- # Maximum number of result items to return. The default and maximum value that
9372
- # can be returned is 14400.
9370
+ # Maximum number of result items to return.
9373
9371
  # @param [String] offset
9374
9372
  # Offset value. Use `offset` with `limit` to enable pagination of results. For
9375
9373
  # example, to display results 11-20, set limit to `10` and offset to `10`.
@@ -9384,7 +9382,7 @@ module Google
9384
9382
  # Flag that specifies whether the sort order should be ascending or descending.
9385
9383
  # Valid values include: `DESC` and `ASC`.
9386
9384
  # @param [String] sortby
9387
- # Comma-separated list of columns to sort the final result.
9385
+ # Comma-separated list of metrics to sort the final result.
9388
9386
  # @param [String] time_range
9389
9387
  # Time interval for the interactive query. Time range is specified in GMT as `
9390
9388
  # start~end`. For example: `04/15/2017 00:00~05/15/2017 23:59`
@@ -10162,8 +10160,7 @@ module Google
10162
10160
  # @param [String] filter
10163
10161
  # Flag that enables drill-down on specific dimension values.
10164
10162
  # @param [String] limit
10165
- # Maximum number of result items to return. The default and maximum value that
10166
- # can be returned is 14400.
10163
+ # Maximum number of result items to return.
10167
10164
  # @param [String] offset
10168
10165
  # Offset value. Use `offset` with `limit` to enable pagination of results. For
10169
10166
  # example, to display results 11-20, set limit to `10` and offset to `10`.
@@ -10176,7 +10173,7 @@ module Google
10176
10173
  # Flag that specifies if the sort order should be ascending or descending. Valid
10177
10174
  # values are `DESC` and `ASC`.
10178
10175
  # @param [String] sortby
10179
- # Comma-separated list of columns to sort the final result.
10176
+ # Comma-separated list of metrics to sort the final result.
10180
10177
  # @param [String] time_range
10181
10178
  # Time interval for the interactive query. Time range is specified in GMT as `
10182
10179
  # start~end`. For example: `04/15/2017 00:00~05/15/2017 23:59`
@@ -11190,8 +11187,7 @@ module Google
11190
11187
  # @param [String] filter
11191
11188
  # Filter that enables you to drill-down on specific dimension values.
11192
11189
  # @param [String] limit
11193
- # Maximum number of result items to return. The default and maximum value that
11194
- # can be returned is 14400.
11190
+ # Maximum number of result items to return.
11195
11191
  # @param [String] offset
11196
11192
  # Offset value. Use `offset` with `limit` to enable pagination of results. For
11197
11193
  # example, to display results 11-20, set limit to `10` and offset to `10`.
@@ -11204,7 +11200,7 @@ module Google
11204
11200
  # Flag that specifies whether the sort order should be ascending or descending.
11205
11201
  # Valid values include `DESC` and `ASC`.
11206
11202
  # @param [String] sortby
11207
- # Comma-separated list of columns used to sort the final result.
11203
+ # Comma-separated list of metrics used to sort the final result.
11208
11204
  # @param [String] time_range
11209
11205
  # Required. Time interval for the interactive query. Time range is specified in
11210
11206
  # GMT as `start~end`. For example: `04/15/2017 00:00~05/15/2017 23:59`.
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-apigee_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.105.0
4
+ version: 0.106.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-04-27 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: google-apis-core
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-apigee_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.105.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.106.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-apigee_v1
62
62
  rdoc_options: []
63
63
  require_paths:
@@ -66,14 +66,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
66
66
  requirements:
67
67
  - - ">="
68
68
  - !ruby/object:Gem::Version
69
- version: '2.7'
69
+ version: '3.1'
70
70
  required_rubygems_version: !ruby/object:Gem::Requirement
71
71
  requirements:
72
72
  - - ">="
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
75
  requirements: []
76
- rubygems_version: 3.6.5
76
+ rubygems_version: 3.6.8
77
77
  specification_version: 4
78
78
  summary: Simple REST client for Apigee API V1
79
79
  test_files: []