google-apis-apigee_v1 0.104.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 +4 -4
- data/CHANGELOG.md +9 -0
- data/OVERVIEW.md +1 -1
- data/lib/google/apis/apigee_v1/classes.rb +11 -9
- data/lib/google/apis/apigee_v1/gem_version.rb +3 -3
- data/lib/google/apis/apigee_v1/service.rb +12 -16
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 23a894ba7e4bae7592c48e4084bda2580bda606d2651adb2e5be1b92a3dfe142
|
4
|
+
data.tar.gz: 258c42cc10432924df25c3ebdd88e5ca25eae6d97e9b8992c1fa5c2a15277985
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f50e3a6b73afe98a8de1ceb14e8a1ea1fc983954b1b3ca642338f08e4cde07f052d25eb28278c71df44eb906f1909197edd13dee16ec420eee11a0244342dfd5
|
7
|
+
data.tar.gz: 1b3d4536470a5a24f5132ed5799a792c3e6e6f643e64e5902b039291f5ed6983f6ff20e405483c692ed15d77fb66bd67a24d458a9035bd26c5e7268263437442
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
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
|
+
|
8
|
+
### v0.105.0 (2025-04-27)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20250421
|
11
|
+
|
3
12
|
### v0.104.0 (2025-04-20)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20250414
|
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
|
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
|
|
@@ -1377,7 +1377,7 @@ module Google
|
|
1377
1377
|
attr_accessor :enabled
|
1378
1378
|
alias_method :enabled?, :enabled
|
1379
1379
|
|
1380
|
-
# Output only. Time at which the API Security add-on expires in
|
1380
|
+
# Output only. Time at which the API Security add-on expires in milliseconds
|
1381
1381
|
# since epoch. If unspecified, the add-on will never expire.
|
1382
1382
|
# Corresponds to the JSON property `expiresAt`
|
1383
1383
|
# @return [Fixnum]
|
@@ -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 `
|
8646
|
-
#
|
8647
|
-
#
|
8648
|
-
# would be charged based on the total number of
|
8649
|
-
# selected is `USD`): *
|
8650
|
-
# 100
|
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.
|
19
|
+
GEM_VERSION = "0.106.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.17.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
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
|
-
#
|
2692
|
-
#
|
2693
|
-
#
|
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.
|
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
|
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.
|
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
|
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.
|
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
|
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.
|
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
|
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.
|
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:
|
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.
|
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: '
|
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.
|
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: []
|