Skip to content

Commit 37dfdfe

Browse files
1 parent 54b32c6 commit 37dfdfe

File tree

5 files changed

+27
-24
lines changed

5 files changed

+27
-24
lines changed

clients/google-api-services-apigee/v1/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-apigee</artifactId>
25-
<version>v1-rev20250425-2.0.0</version>
25+
<version>v1-rev20250506-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-apigee:v1-rev20250425-2.0.0'
38+
implementation 'com.google.apis:google-api-services-apigee:v1-rev20250506-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-apigee/v1/2.0.0/com/google/api/services/apigee/v1/Apigee.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11672,7 +11672,7 @@ public class Keys {
1167211672
* are allowed. To avoid service disruptions, a consumer key and secret should not exceed 2 KBs
1167311673
* each. **Note**: When creating the consumer key and secret, an association to API products will
1167411674
* not be made. Therefore, you should not specify the associated API products in your request.
11675-
* Instead, use the ProductizeAppGroupAppKey API to make the association after the consumer key and
11675+
* Instead, use the UpdateAppGroupAppKey API to make the association after the consumer key and
1167611676
* secret are created. If a consumer key and secret already exist, you can keep them or delete them
1167711677
* using the DeleteAppGroupAppKey API.
1167811678
*
@@ -11706,8 +11706,8 @@ public class Create extends ApigeeRequest<com.google.api.services.apigee.v1.mode
1170611706
* are allowed. To avoid service disruptions, a consumer key and secret should not exceed 2 KBs
1170711707
* each. **Note**: When creating the consumer key and secret, an association to API products will
1170811708
* not be made. Therefore, you should not specify the associated API products in your request.
11709-
* Instead, use the ProductizeAppGroupAppKey API to make the association after the consumer key
11710-
* and secret are created. If a consumer key and secret already exist, you can keep them or delete
11709+
* Instead, use the UpdateAppGroupAppKey API to make the association after the consumer key and
11710+
* secret are created. If a consumer key and secret already exist, you can keep them or delete
1171111711
* them using the DeleteAppGroupAppKey API.
1171211712
*
1171311713
* Create a request for the method "keys.create".

clients/google-api-services-apigee/v1/2.0.0/com/google/api/services/apigee/v1/model/GoogleCloudApigeeV1RatePlan.java

Lines changed: 18 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,12 @@ public final class GoogleCloudApigeeV1RatePlan extends com.google.api.client.jso
4646
/**
4747
* API call volume ranges and the fees charged when the total number of API calls is within a
4848
* given range. The method used to calculate the final fee depends on the selected pricing model.
49-
* For example, if the pricing model is `STAIRSTEP` and the ranges are defined as follows: ``` {
50-
* "start": 1, "end": 100, "fee": 75 }, { "start": 101, "end": 200, "fee": 100 }, } ``` Then the
51-
* following fees would be charged based on the total number of API calls (assuming the currency
52-
* selected is `USD`): * 1 call costs $75 * 50 calls cost $75 * 150 calls cost $100 The number of
53-
* API calls cannot exceed 200.
49+
* For example, if the pricing model is `BANDED` and the ranges are defined as follows: ``` {
50+
* "start": 1, "end": 100, "fee": 2 }, { "start": 101, "end": 200, "fee": 1.50 }, { "start": 201,
51+
* "end": 0, "fee": 1 }, } ``` Then the following fees would be charged based on the total number
52+
* of API calls (assuming the currency selected is `USD`): * 50 calls cost 50 x $2 = $100 * 150
53+
* calls cost 100 x $2 + 50 x $1.5 = $275 * 250 calls cost 100 x $2 + 100 x $1.5 + 50 x $1 = $400
54+
* * 500 calls cost 100 x $2 + 100 x $1.5 + 300 x $1 = $650
5455
* The value may be {@code null}.
5556
*/
5657
@com.google.api.client.util.Key
@@ -211,11 +212,12 @@ public GoogleCloudApigeeV1RatePlan setBillingPeriod(java.lang.String billingPeri
211212
/**
212213
* API call volume ranges and the fees charged when the total number of API calls is within a
213214
* given range. The method used to calculate the final fee depends on the selected pricing model.
214-
* For example, if the pricing model is `STAIRSTEP` and the ranges are defined as follows: ``` {
215-
* "start": 1, "end": 100, "fee": 75 }, { "start": 101, "end": 200, "fee": 100 }, } ``` Then the
216-
* following fees would be charged based on the total number of API calls (assuming the currency
217-
* selected is `USD`): * 1 call costs $75 * 50 calls cost $75 * 150 calls cost $100 The number of
218-
* API calls cannot exceed 200.
215+
* For example, if the pricing model is `BANDED` and the ranges are defined as follows: ``` {
216+
* "start": 1, "end": 100, "fee": 2 }, { "start": 101, "end": 200, "fee": 1.50 }, { "start": 201,
217+
* "end": 0, "fee": 1 }, } ``` Then the following fees would be charged based on the total number
218+
* of API calls (assuming the currency selected is `USD`): * 50 calls cost 50 x $2 = $100 * 150
219+
* calls cost 100 x $2 + 50 x $1.5 = $275 * 250 calls cost 100 x $2 + 100 x $1.5 + 50 x $1 = $400
220+
* * 500 calls cost 100 x $2 + 100 x $1.5 + 300 x $1 = $650
219221
* @return value or {@code null} for none
220222
*/
221223
public java.util.List<GoogleCloudApigeeV1RateRange> getConsumptionPricingRates() {
@@ -225,11 +227,12 @@ public java.util.List<GoogleCloudApigeeV1RateRange> getConsumptionPricingRates()
225227
/**
226228
* API call volume ranges and the fees charged when the total number of API calls is within a
227229
* given range. The method used to calculate the final fee depends on the selected pricing model.
228-
* For example, if the pricing model is `STAIRSTEP` and the ranges are defined as follows: ``` {
229-
* "start": 1, "end": 100, "fee": 75 }, { "start": 101, "end": 200, "fee": 100 }, } ``` Then the
230-
* following fees would be charged based on the total number of API calls (assuming the currency
231-
* selected is `USD`): * 1 call costs $75 * 50 calls cost $75 * 150 calls cost $100 The number of
232-
* API calls cannot exceed 200.
230+
* For example, if the pricing model is `BANDED` and the ranges are defined as follows: ``` {
231+
* "start": 1, "end": 100, "fee": 2 }, { "start": 101, "end": 200, "fee": 1.50 }, { "start": 201,
232+
* "end": 0, "fee": 1 }, } ``` Then the following fees would be charged based on the total number
233+
* of API calls (assuming the currency selected is `USD`): * 50 calls cost 50 x $2 = $100 * 150
234+
* calls cost 100 x $2 + 50 x $1.5 = $275 * 250 calls cost 100 x $2 + 100 x $1.5 + 50 x $1 = $400
235+
* * 500 calls cost 100 x $2 + 100 x $1.5 + 300 x $1 = $650
233236
* @param consumptionPricingRates consumptionPricingRates or {@code null} for none
234237
*/
235238
public GoogleCloudApigeeV1RatePlan setConsumptionPricingRates(java.util.List<GoogleCloudApigeeV1RateRange> consumptionPricingRates) {

clients/google-api-services-apigee/v1/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-apigee</artifactId>
11-
<version>v1-rev20250425-2.0.0</version>
12-
<name>Apigee API v1-rev20250425-2.0.0</name>
11+
<version>v1-rev20250506-2.0.0</version>
12+
<name>Apigee API v1-rev20250506-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-apigee/v1/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-apigee</artifactId>
25-
<version>v1-rev20250425-2.0.0</version>
25+
<version>v1-rev20250506-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-apigee:v1-rev20250425-2.0.0'
38+
implementation 'com.google.apis:google-api-services-apigee:v1-rev20250506-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)