Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-recaptchaenterprise</artifactId>
<version>v1-rev20260719-2.0.0</version>
<version>v1-rev20260825-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-recaptchaenterprise:v1-rev20260719-2.0.0'
implementation 'com.google.apis:google-api-services-recaptchaenterprise:v1-rev20260825-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,14 @@ public final class GoogleCloudRecaptchaenterpriseV1TokenProperties extends com.g
@com.google.api.client.util.Key
private java.lang.String androidPackageName;

/**
* Output only. Indicates a failure collecting reCAPTCHA signals at token generation. This might
* be a transient condition, or persistent for a user’s environment.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Boolean clientSignalsFailed;

/**
* Output only. The timestamp corresponding to the generation of the token.
* The value may be {@code null}.
Expand Down Expand Up @@ -118,6 +126,25 @@ public GoogleCloudRecaptchaenterpriseV1TokenProperties setAndroidPackageName(jav
return this;
}

/**
* Output only. Indicates a failure collecting reCAPTCHA signals at token generation. This might
* be a transient condition, or persistent for a user’s environment.
* @return value or {@code null} for none
*/
public java.lang.Boolean getClientSignalsFailed() {
return clientSignalsFailed;
}

/**
* Output only. Indicates a failure collecting reCAPTCHA signals at token generation. This might
* be a transient condition, or persistent for a user’s environment.
* @param clientSignalsFailed clientSignalsFailed or {@code null} for none
*/
public GoogleCloudRecaptchaenterpriseV1TokenProperties setClientSignalsFailed(java.lang.Boolean clientSignalsFailed) {
this.clientSignalsFailed = clientSignalsFailed;
return this;
}

/**
* Output only. The timestamp corresponding to the generation of the token.
* @return value or {@code null} for none
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ public final class GoogleCloudRecaptchaenterpriseV1WebKeySettings extends com.go

/**
* Optional. Settings for the frequency and difficulty at which this key triggers captcha
* challenges. This should only be specified for `IntegrationType` CHECKBOX, INVISIBLE or
* POLICY_BASED_CHALLENGE.
* challenges. This should only be specified for `IntegrationType` CHECKBOX (defaults to BALANCE),
* INVISIBLE (defaults to USABILITY), or POLICY_BASED_CHALLENGE (defaults to USABILITY).
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
Expand Down Expand Up @@ -148,8 +148,8 @@ public GoogleCloudRecaptchaenterpriseV1WebKeySettings setAllowedDomains(java.uti

/**
* Optional. Settings for the frequency and difficulty at which this key triggers captcha
* challenges. This should only be specified for `IntegrationType` CHECKBOX, INVISIBLE or
* POLICY_BASED_CHALLENGE.
* challenges. This should only be specified for `IntegrationType` CHECKBOX (defaults to BALANCE),
* INVISIBLE (defaults to USABILITY), or POLICY_BASED_CHALLENGE (defaults to USABILITY).
* @return value or {@code null} for none
*/
public java.lang.String getChallengeSecurityPreference() {
Expand All @@ -158,8 +158,8 @@ public java.lang.String getChallengeSecurityPreference() {

/**
* Optional. Settings for the frequency and difficulty at which this key triggers captcha
* challenges. This should only be specified for `IntegrationType` CHECKBOX, INVISIBLE or
* POLICY_BASED_CHALLENGE.
* challenges. This should only be specified for `IntegrationType` CHECKBOX (defaults to BALANCE),
* INVISIBLE (defaults to USABILITY), or POLICY_BASED_CHALLENGE (defaults to USABILITY).
* @param challengeSecurityPreference challengeSecurityPreference or {@code null} for none
*/
public GoogleCloudRecaptchaenterpriseV1WebKeySettings setChallengeSecurityPreference(java.lang.String challengeSecurityPreference) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<groupId>com.google.apis</groupId>
<artifactId>google-api-services-recaptchaenterprise</artifactId>
<version>v1-rev20260719-2.0.0</version>
<name>reCAPTCHA Enterprise API v1-rev20260719-2.0.0</name>
<version>v1-rev20260825-2.0.0</version>
<name>reCAPTCHA Enterprise API v1-rev20260825-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-recaptchaenterprise</artifactId>
<version>v1-rev20260719-2.0.0</version>
<version>v1-rev20260825-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-recaptchaenterprise:v1-rev20260719-2.0.0'
implementation 'com.google.apis:google-api-services-recaptchaenterprise:v1-rev20260825-2.0.0'
}
```

Expand Down
Loading