Skip to content

Commit b0f2673

Browse files
1 parent a36bd77 commit b0f2673

File tree

6 files changed

+186
-6
lines changed

6 files changed

+186
-6
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-rev20241017-2.0.0</version>
25+
<version>v1-rev20241116-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-rev20241017-2.0.0'
38+
implementation 'com.google.apis:google-api-services-apigee:v1-rev20241116-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,13 @@ public final class GoogleCloudApigeeV1EnvironmentConfig extends com.google.api.c
4444
@com.google.api.client.util.Key
4545
private java.lang.String arcConfigLocation;
4646

47+
/**
48+
* The algorithm to resolve IP.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private GoogleCloudApigeeV1EnvironmentConfigClientIPResolutionConfig clientIpResolutionConfig;
53+
4754
/**
4855
* Time that the environment configuration was created.
4956
* The value may be {@code null}.
@@ -253,6 +260,23 @@ public GoogleCloudApigeeV1EnvironmentConfig setArcConfigLocation(java.lang.Strin
253260
return this;
254261
}
255262

263+
/**
264+
* The algorithm to resolve IP.
265+
* @return value or {@code null} for none
266+
*/
267+
public GoogleCloudApigeeV1EnvironmentConfigClientIPResolutionConfig getClientIpResolutionConfig() {
268+
return clientIpResolutionConfig;
269+
}
270+
271+
/**
272+
* The algorithm to resolve IP.
273+
* @param clientIpResolutionConfig clientIpResolutionConfig or {@code null} for none
274+
*/
275+
public GoogleCloudApigeeV1EnvironmentConfig setClientIpResolutionConfig(GoogleCloudApigeeV1EnvironmentConfigClientIPResolutionConfig clientIpResolutionConfig) {
276+
this.clientIpResolutionConfig = clientIpResolutionConfig;
277+
return this;
278+
}
279+
256280
/**
257281
* Time that the environment configuration was created.
258282
* @return value or {@code null} for none
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.apigee.v1.model;
18+
19+
/**
20+
* Configuration for resolving the client ip.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Apigee API. For a detailed explanation see:
24+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class GoogleCloudApigeeV1EnvironmentConfigClientIPResolutionConfig extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Resolves the client ip based on a custom header.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private GoogleCloudApigeeV1EnvironmentConfigClientIPResolutionConfigHeaderIndexAlgorithm headerIndexAlgorithm;
38+
39+
/**
40+
* Resolves the client ip based on a custom header.
41+
* @return value or {@code null} for none
42+
*/
43+
public GoogleCloudApigeeV1EnvironmentConfigClientIPResolutionConfigHeaderIndexAlgorithm getHeaderIndexAlgorithm() {
44+
return headerIndexAlgorithm;
45+
}
46+
47+
/**
48+
* Resolves the client ip based on a custom header.
49+
* @param headerIndexAlgorithm headerIndexAlgorithm or {@code null} for none
50+
*/
51+
public GoogleCloudApigeeV1EnvironmentConfigClientIPResolutionConfig setHeaderIndexAlgorithm(GoogleCloudApigeeV1EnvironmentConfigClientIPResolutionConfigHeaderIndexAlgorithm headerIndexAlgorithm) {
52+
this.headerIndexAlgorithm = headerIndexAlgorithm;
53+
return this;
54+
}
55+
56+
@Override
57+
public GoogleCloudApigeeV1EnvironmentConfigClientIPResolutionConfig set(String fieldName, Object value) {
58+
return (GoogleCloudApigeeV1EnvironmentConfigClientIPResolutionConfig) super.set(fieldName, value);
59+
}
60+
61+
@Override
62+
public GoogleCloudApigeeV1EnvironmentConfigClientIPResolutionConfig clone() {
63+
return (GoogleCloudApigeeV1EnvironmentConfigClientIPResolutionConfig) super.clone();
64+
}
65+
66+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.apigee.v1.model;
18+
19+
/**
20+
* Resolves the client ip based on a custom header.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Apigee API. For a detailed explanation see:
24+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class GoogleCloudApigeeV1EnvironmentConfigClientIPResolutionConfigHeaderIndexAlgorithm extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* The index of the ip in the header. (By default, value is 0 if missing)
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.Integer ipHeaderIndex;
38+
39+
/**
40+
* The name of the header to extract the client ip from.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private java.lang.String ipHeaderName;
45+
46+
/**
47+
* The index of the ip in the header. (By default, value is 0 if missing)
48+
* @return value or {@code null} for none
49+
*/
50+
public java.lang.Integer getIpHeaderIndex() {
51+
return ipHeaderIndex;
52+
}
53+
54+
/**
55+
* The index of the ip in the header. (By default, value is 0 if missing)
56+
* @param ipHeaderIndex ipHeaderIndex or {@code null} for none
57+
*/
58+
public GoogleCloudApigeeV1EnvironmentConfigClientIPResolutionConfigHeaderIndexAlgorithm setIpHeaderIndex(java.lang.Integer ipHeaderIndex) {
59+
this.ipHeaderIndex = ipHeaderIndex;
60+
return this;
61+
}
62+
63+
/**
64+
* The name of the header to extract the client ip from.
65+
* @return value or {@code null} for none
66+
*/
67+
public java.lang.String getIpHeaderName() {
68+
return ipHeaderName;
69+
}
70+
71+
/**
72+
* The name of the header to extract the client ip from.
73+
* @param ipHeaderName ipHeaderName or {@code null} for none
74+
*/
75+
public GoogleCloudApigeeV1EnvironmentConfigClientIPResolutionConfigHeaderIndexAlgorithm setIpHeaderName(java.lang.String ipHeaderName) {
76+
this.ipHeaderName = ipHeaderName;
77+
return this;
78+
}
79+
80+
@Override
81+
public GoogleCloudApigeeV1EnvironmentConfigClientIPResolutionConfigHeaderIndexAlgorithm set(String fieldName, Object value) {
82+
return (GoogleCloudApigeeV1EnvironmentConfigClientIPResolutionConfigHeaderIndexAlgorithm) super.set(fieldName, value);
83+
}
84+
85+
@Override
86+
public GoogleCloudApigeeV1EnvironmentConfigClientIPResolutionConfigHeaderIndexAlgorithm clone() {
87+
return (GoogleCloudApigeeV1EnvironmentConfigClientIPResolutionConfigHeaderIndexAlgorithm) super.clone();
88+
}
89+
90+
}

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-rev20241017-2.0.0</version>
12-
<name>Apigee API v1-rev20241017-2.0.0</name>
11+
<version>v1-rev20241116-2.0.0</version>
12+
<name>Apigee API v1-rev20241116-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-rev20241017-2.0.0</version>
25+
<version>v1-rev20241116-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-rev20241017-2.0.0'
38+
implementation 'com.google.apis:google-api-services-apigee:v1-rev20241116-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)