google-apis-apigee_v1 0.105.0 → 0.107.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 +10 -8
- data/lib/google/apis/apigee_v1/gem_version.rb +3 -3
- data/lib/google/apis/apigee_v1/service.rb +23 -24
- 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: fb5fd39b8570b125475c8584805af690bc94640529a4d0cfa1a8027987d32411
|
4
|
+
data.tar.gz: cb9d5fe93c0732573c1539ed98dd2ab5d0dc673b3ee51d40a6d46ce48ed219eb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 78d471ce38fd9bc2b25af40066385acf6576abd8e7ca5ea1ff5d505f3a8dc82f6e518cc7201e6ddfffe5ad876c5cf82eb332b7bca280fb6e992c5ba078f53042
|
7
|
+
data.tar.gz: b818e830e476850bfc95d91eece9ae6d89a368aff3250563998d97f50c88fc3b543305a8c04a77819927b0b637fd7e0fce95b392376d8508e130539a32040b80
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-apigee_v1
|
2
2
|
|
3
|
+
### v0.107.0 (2025-05-21)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250519
|
6
|
+
|
7
|
+
### v0.106.0 (2025-05-11)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250506
|
10
|
+
* Regenerated using generator version 0.17.0
|
11
|
+
|
3
12
|
### v0.105.0 (2025-04-27)
|
4
13
|
|
5
14
|
* 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
|
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 `
|
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.107.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 = "20250519"
|
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`
|
@@ -2790,10 +2790,10 @@ module Google
|
|
2790
2790
|
|
2791
2791
|
# Adds an API product to an AppGroupAppKey, enabling the app that holds the key
|
2792
2792
|
# to access the API resources bundled in the API product. In addition, you can
|
2793
|
-
# add attributes to the AppGroupAppKey. This API replaces the
|
2794
|
-
# attributes with those specified in the request. Include or exclude
|
2795
|
-
# existing attributes that you want to retain or delete, respectively. You
|
2796
|
-
# use the same key to access all API products associated with the app.
|
2793
|
+
# add attributes and scopes to the AppGroupAppKey. This API replaces the
|
2794
|
+
# existing attributes with those specified in the request. Include or exclude
|
2795
|
+
# any existing attributes that you want to retain or delete, respectively. You
|
2796
|
+
# can use the same key to access all API products associated with the app.
|
2797
2797
|
# @param [String] name
|
2798
2798
|
# Required. Name of the AppGroup app key. Use the following structure in your
|
2799
2799
|
# request: `organizations/`org`/appgroups/`app_group_name`/apps/`app`/keys/`key``
|
@@ -4213,10 +4213,13 @@ module Google
|
|
4213
4213
|
|
4214
4214
|
# Adds an API product to a developer app key, enabling the app that holds the
|
4215
4215
|
# key to access the API resources bundled in the API product. In addition, you
|
4216
|
-
# can add attributes
|
4217
|
-
#
|
4218
|
-
#
|
4219
|
-
#
|
4216
|
+
# can add attributes and scopes associated with the API product to the developer
|
4217
|
+
# app key. The status of the key can be updated via "action" Query Parameter.
|
4218
|
+
# None of the other fields can be updated via this API. This API replaces the
|
4219
|
+
# existing attributes with those specified in the request. Include or exclude
|
4220
|
+
# any existing attributes that you want to retain or delete, respectively. None
|
4221
|
+
# of the other fields can be updated. You can use the same key to access all API
|
4222
|
+
# products associated with the app.
|
4220
4223
|
# @param [String] name
|
4221
4224
|
# Name of the developer app key. Use the following structure in your request: `
|
4222
4225
|
# organizations/`org`/developers/`developer_email`/apps/`app`/keys/`key``
|
@@ -7940,8 +7943,7 @@ module Google
|
|
7940
7943
|
# @param [String] filter
|
7941
7944
|
# Filter that enables you to drill-down on specific dimension values.
|
7942
7945
|
# @param [String] limit
|
7943
|
-
# Maximum number of result items to return.
|
7944
|
-
# can be returned is 14400.
|
7946
|
+
# Maximum number of result items to return.
|
7945
7947
|
# @param [String] offset
|
7946
7948
|
# Offset value. Use `offset` with `limit` to enable pagination of results. For
|
7947
7949
|
# example, to display results 11-20, set limit to `10` and offset to `10`.
|
@@ -7956,7 +7958,7 @@ module Google
|
|
7956
7958
|
# Flag that specifies whether the sort order should be ascending or descending.
|
7957
7959
|
# Valid values include `DESC` and `ASC`.
|
7958
7960
|
# @param [String] sortby
|
7959
|
-
# Comma-separated list of
|
7961
|
+
# Comma-separated list of metrics to sort the final result.
|
7960
7962
|
# @param [String] time_range
|
7961
7963
|
# Required. Time interval for the interactive query. Time range is specified in
|
7962
7964
|
# GMT as `start~end`. For example: `04/15/2017 00:00~05/15/2017 23:59`
|
@@ -9368,8 +9370,7 @@ module Google
|
|
9368
9370
|
# @param [String] filter
|
9369
9371
|
# Filter that enables you to drill down on specific dimension values.
|
9370
9372
|
# @param [String] limit
|
9371
|
-
# Maximum number of result items to return.
|
9372
|
-
# can be returned is 14400.
|
9373
|
+
# Maximum number of result items to return.
|
9373
9374
|
# @param [String] offset
|
9374
9375
|
# Offset value. Use `offset` with `limit` to enable pagination of results. For
|
9375
9376
|
# example, to display results 11-20, set limit to `10` and offset to `10`.
|
@@ -9384,7 +9385,7 @@ module Google
|
|
9384
9385
|
# Flag that specifies whether the sort order should be ascending or descending.
|
9385
9386
|
# Valid values include: `DESC` and `ASC`.
|
9386
9387
|
# @param [String] sortby
|
9387
|
-
# Comma-separated list of
|
9388
|
+
# Comma-separated list of metrics to sort the final result.
|
9388
9389
|
# @param [String] time_range
|
9389
9390
|
# Time interval for the interactive query. Time range is specified in GMT as `
|
9390
9391
|
# start~end`. For example: `04/15/2017 00:00~05/15/2017 23:59`
|
@@ -10162,8 +10163,7 @@ module Google
|
|
10162
10163
|
# @param [String] filter
|
10163
10164
|
# Flag that enables drill-down on specific dimension values.
|
10164
10165
|
# @param [String] limit
|
10165
|
-
# Maximum number of result items to return.
|
10166
|
-
# can be returned is 14400.
|
10166
|
+
# Maximum number of result items to return.
|
10167
10167
|
# @param [String] offset
|
10168
10168
|
# Offset value. Use `offset` with `limit` to enable pagination of results. For
|
10169
10169
|
# example, to display results 11-20, set limit to `10` and offset to `10`.
|
@@ -10176,7 +10176,7 @@ module Google
|
|
10176
10176
|
# Flag that specifies if the sort order should be ascending or descending. Valid
|
10177
10177
|
# values are `DESC` and `ASC`.
|
10178
10178
|
# @param [String] sortby
|
10179
|
-
# Comma-separated list of
|
10179
|
+
# Comma-separated list of metrics to sort the final result.
|
10180
10180
|
# @param [String] time_range
|
10181
10181
|
# Time interval for the interactive query. Time range is specified in GMT as `
|
10182
10182
|
# start~end`. For example: `04/15/2017 00:00~05/15/2017 23:59`
|
@@ -11190,8 +11190,7 @@ module Google
|
|
11190
11190
|
# @param [String] filter
|
11191
11191
|
# Filter that enables you to drill-down on specific dimension values.
|
11192
11192
|
# @param [String] limit
|
11193
|
-
# Maximum number of result items to return.
|
11194
|
-
# can be returned is 14400.
|
11193
|
+
# Maximum number of result items to return.
|
11195
11194
|
# @param [String] offset
|
11196
11195
|
# Offset value. Use `offset` with `limit` to enable pagination of results. For
|
11197
11196
|
# example, to display results 11-20, set limit to `10` and offset to `10`.
|
@@ -11204,7 +11203,7 @@ module Google
|
|
11204
11203
|
# Flag that specifies whether the sort order should be ascending or descending.
|
11205
11204
|
# Valid values include `DESC` and `ASC`.
|
11206
11205
|
# @param [String] sortby
|
11207
|
-
# Comma-separated list of
|
11206
|
+
# Comma-separated list of metrics used to sort the final result.
|
11208
11207
|
# @param [String] time_range
|
11209
11208
|
# Required. Time interval for the interactive query. Time range is specified in
|
11210
11209
|
# 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.107.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.107.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.9
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for Apigee API V1
|
79
79
|
test_files: []
|