Skip to content

Commit be78aeb

Browse files
chore: regenerate iap client
1 parent 38c1764 commit be78aeb

File tree

6 files changed

+97
-12
lines changed

6 files changed

+97
-12
lines changed

clients/google-api-services-iap/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-iap</artifactId>
25-
<version>v1-rev20251013-2.0.0</version>
25+
<version>v1-rev20260209-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-iap:v1-rev20251013-2.0.0'
38+
implementation 'com.google.apis:google-api-services-iap:v1-rev20260209-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-iap/v1/2.0.0/com/google/api/services/iap/v1/CloudIAP.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public class CloudIAP extends com.google.api.client.googleapis.services.json.Abs
103103
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
104104
* <li>Android: {@code newCompatibleTransport} from
105105
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
106-
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
106+
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
107107
* </li>
108108
* </ul>
109109
* @param jsonFactory JSON factory, which may be:
@@ -3266,8 +3266,7 @@ private static String chooseEndpoint(com.google.api.client.http.HttpTransport tr
32663266
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
32673267
* <li>Android: {@code newCompatibleTransport} from
32683268
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
3269-
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
3270-
* </li>
3269+
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
32713270
* </ul>
32723271
* @param jsonFactory JSON factory, which may be:
32733272
* <ul>

clients/google-api-services-iap/v1/2.0.0/com/google/api/services/iap/v1/model/OAuthSettings.java

Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,32 @@
3030
@SuppressWarnings("javadoc")
3131
public final class OAuthSettings extends com.google.api.client.json.GenericJson {
3232

33+
/**
34+
* Optional. OAuth 2.0 client ID used in the OAuth flow to generate an access token. If this field
35+
* is set, you can skip obtaining the OAuth credentials in this step:
36+
* https://developers.google.com/identity/protocols/OAuth2?hl=en_US#1.-obtain-
37+
* oauth-2.0-credentials-from-the-google-api-console. However, this could allow for client
38+
* sharing. The risks of client sharing are outlined here:
39+
* https://cloud.google.com/iap/docs/sharing-oauth-clients#risks.
40+
* The value may be {@code null}.
41+
*/
42+
@com.google.api.client.util.Key
43+
private java.lang.String clientId;
44+
45+
/**
46+
* Optional. Input only. OAuth secret paired with client ID
47+
* The value may be {@code null}.
48+
*/
49+
@com.google.api.client.util.Key
50+
private java.lang.String clientSecret;
51+
52+
/**
53+
* Output only. OAuth secret sha256 paired with client ID
54+
* The value may be {@code null}.
55+
*/
56+
@com.google.api.client.util.Key
57+
private java.lang.String clientSecretSha256;
58+
3359
/**
3460
* Domain hint to send as hd=? parameter in OAuth request flow. Enables redirect to primary IDP by
3561
* skipping Google's login screen.
@@ -48,6 +74,67 @@ public final class OAuthSettings extends com.google.api.client.json.GenericJson
4874
@com.google.api.client.util.Key
4975
private java.util.List<java.lang.String> programmaticClients;
5076

77+
/**
78+
* Optional. OAuth 2.0 client ID used in the OAuth flow to generate an access token. If this field
79+
* is set, you can skip obtaining the OAuth credentials in this step:
80+
* https://developers.google.com/identity/protocols/OAuth2?hl=en_US#1.-obtain-
81+
* oauth-2.0-credentials-from-the-google-api-console. However, this could allow for client
82+
* sharing. The risks of client sharing are outlined here:
83+
* https://cloud.google.com/iap/docs/sharing-oauth-clients#risks.
84+
* @return value or {@code null} for none
85+
*/
86+
public java.lang.String getClientId() {
87+
return clientId;
88+
}
89+
90+
/**
91+
* Optional. OAuth 2.0 client ID used in the OAuth flow to generate an access token. If this field
92+
* is set, you can skip obtaining the OAuth credentials in this step:
93+
* https://developers.google.com/identity/protocols/OAuth2?hl=en_US#1.-obtain-
94+
* oauth-2.0-credentials-from-the-google-api-console. However, this could allow for client
95+
* sharing. The risks of client sharing are outlined here:
96+
* https://cloud.google.com/iap/docs/sharing-oauth-clients#risks.
97+
* @param clientId clientId or {@code null} for none
98+
*/
99+
public OAuthSettings setClientId(java.lang.String clientId) {
100+
this.clientId = clientId;
101+
return this;
102+
}
103+
104+
/**
105+
* Optional. Input only. OAuth secret paired with client ID
106+
* @return value or {@code null} for none
107+
*/
108+
public java.lang.String getClientSecret() {
109+
return clientSecret;
110+
}
111+
112+
/**
113+
* Optional. Input only. OAuth secret paired with client ID
114+
* @param clientSecret clientSecret or {@code null} for none
115+
*/
116+
public OAuthSettings setClientSecret(java.lang.String clientSecret) {
117+
this.clientSecret = clientSecret;
118+
return this;
119+
}
120+
121+
/**
122+
* Output only. OAuth secret sha256 paired with client ID
123+
* @return value or {@code null} for none
124+
*/
125+
public java.lang.String getClientSecretSha256() {
126+
return clientSecretSha256;
127+
}
128+
129+
/**
130+
* Output only. OAuth secret sha256 paired with client ID
131+
* @param clientSecretSha256 clientSecretSha256 or {@code null} for none
132+
*/
133+
public OAuthSettings setClientSecretSha256(java.lang.String clientSecretSha256) {
134+
this.clientSecretSha256 = clientSecretSha256;
135+
return this;
136+
}
137+
51138
/**
52139
* Domain hint to send as hd=? parameter in OAuth request flow. Enables redirect to primary IDP by
53140
* skipping Google's login screen.

clients/google-api-services-iap/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-iap</artifactId>
11-
<version>v1-rev20251013-2.0.0</version>
12-
<name>Cloud Identity-Aware Proxy API v1-rev20251013-2.0.0</name>
11+
<version>v1-rev20260209-2.0.0</version>
12+
<name>Cloud Identity-Aware Proxy API v1-rev20260209-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-iap/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-iap</artifactId>
25-
<version>v1-rev20251013-2.0.0</version>
25+
<version>v1-rev20260209-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-iap:v1-rev20251013-2.0.0'
38+
implementation 'com.google.apis:google-api-services-iap:v1-rev20260209-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-iap/v1beta1/2.0.0/com/google/api/services/iap/v1beta1/CloudIAP.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public class CloudIAP extends com.google.api.client.googleapis.services.json.Abs
103103
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
104104
* <li>Android: {@code newCompatibleTransport} from
105105
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
106-
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
106+
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
107107
* </li>
108108
* </ul>
109109
* @param jsonFactory JSON factory, which may be:
@@ -639,8 +639,7 @@ private static String chooseEndpoint(com.google.api.client.http.HttpTransport tr
639639
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
640640
* <li>Android: {@code newCompatibleTransport} from
641641
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
642-
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
643-
* </li>
642+
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
644643
* </ul>
645644
* @param jsonFactory JSON factory, which may be:
646645
* <ul>

0 commit comments

Comments
 (0)