@BetaApi @Generated(value="by gapic-generator-java") public class RecaptchaEnterpriseServiceV1Beta1Client extends Object implements com.google.api.gax.core.BackgroundResource
This class provides the ability to make remote calls to the backing service through method calls that map to API methods. Sample code to get started:
try (RecaptchaEnterpriseServiceV1Beta1Client recaptchaEnterpriseServiceV1Beta1Client =
RecaptchaEnterpriseServiceV1Beta1Client.create()) {
ProjectName parent = ProjectName.of("[PROJECT]");
Assessment assessment = Assessment.newBuilder().build();
Assessment response =
recaptchaEnterpriseServiceV1Beta1Client.createAssessment(parent, assessment);
}
Note: close() needs to be called on the RecaptchaEnterpriseServiceV1Beta1Client object to clean up resources such as threads. In the example above, try-with-resources is used, which automatically calls close().
The surface of this class includes several types of Java methods for each of the API's methods:
See the individual methods for example code.
Many parameters require resource names to be formatted in a particular way. To assist with these names, this class includes a format method for each type of name, and additionally a parse method to extract the individual identifiers contained within names that are returned.
This class can be customized by passing in a custom instance of RecaptchaEnterpriseServiceV1Beta1Settings to create(). For example:
To customize credentials:
RecaptchaEnterpriseServiceV1Beta1Settings recaptchaEnterpriseServiceV1Beta1Settings =
RecaptchaEnterpriseServiceV1Beta1Settings.newBuilder()
.setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
.build();
RecaptchaEnterpriseServiceV1Beta1Client recaptchaEnterpriseServiceV1Beta1Client =
RecaptchaEnterpriseServiceV1Beta1Client.create(recaptchaEnterpriseServiceV1Beta1Settings);
To customize the endpoint:
RecaptchaEnterpriseServiceV1Beta1Settings recaptchaEnterpriseServiceV1Beta1Settings =
RecaptchaEnterpriseServiceV1Beta1Settings.newBuilder().setEndpoint(myEndpoint).build();
RecaptchaEnterpriseServiceV1Beta1Client recaptchaEnterpriseServiceV1Beta1Client =
RecaptchaEnterpriseServiceV1Beta1Client.create(recaptchaEnterpriseServiceV1Beta1Settings);
Please refer to the GitHub repository's samples for more quickstart code snippets.
| Modifier and Type | Class and Description |
|---|---|
static class |
RecaptchaEnterpriseServiceV1Beta1Client.ListKeysFixedSizeCollection |
static class |
RecaptchaEnterpriseServiceV1Beta1Client.ListKeysPage |
static class |
RecaptchaEnterpriseServiceV1Beta1Client.ListKeysPagedResponse |
| Modifier | Constructor and Description |
|---|---|
protected |
RecaptchaEnterpriseServiceV1Beta1Client(RecaptchaEnterpriseServiceV1Beta1Settings settings)
Constructs an instance of RecaptchaEnterpriseServiceV1Beta1Client, using the given settings.
|
protected |
RecaptchaEnterpriseServiceV1Beta1Client(RecaptchaEnterpriseServiceV1Beta1Stub stub) |
| Modifier and Type | Method and Description |
|---|---|
AnnotateAssessmentResponse |
annotateAssessment(AnnotateAssessmentRequest request)
Annotates a previously created Assessment to provide additional information on whether the
event turned out to be authentic or fradulent.
|
AnnotateAssessmentResponse |
annotateAssessment(AssessmentName name,
AnnotateAssessmentRequest.Annotation annotation)
Annotates a previously created Assessment to provide additional information on whether the
event turned out to be authentic or fradulent.
|
AnnotateAssessmentResponse |
annotateAssessment(String name,
AnnotateAssessmentRequest.Annotation annotation)
Annotates a previously created Assessment to provide additional information on whether the
event turned out to be authentic or fradulent.
|
com.google.api.gax.rpc.UnaryCallable<AnnotateAssessmentRequest,AnnotateAssessmentResponse> |
annotateAssessmentCallable()
Annotates a previously created Assessment to provide additional information on whether the
event turned out to be authentic or fradulent.
|
boolean |
awaitTermination(long duration,
TimeUnit unit) |
void |
close() |
static RecaptchaEnterpriseServiceV1Beta1Client |
create()
Constructs an instance of RecaptchaEnterpriseServiceV1Beta1Client with default settings.
|
static RecaptchaEnterpriseServiceV1Beta1Client |
create(RecaptchaEnterpriseServiceV1Beta1Settings settings)
Constructs an instance of RecaptchaEnterpriseServiceV1Beta1Client, using the given settings.
|
static RecaptchaEnterpriseServiceV1Beta1Client |
create(RecaptchaEnterpriseServiceV1Beta1Stub stub)
Constructs an instance of RecaptchaEnterpriseServiceV1Beta1Client, using the given stub for
making calls.
|
Assessment |
createAssessment(CreateAssessmentRequest request)
Creates an Assessment of the likelihood an event is legitimate.
|
Assessment |
createAssessment(ProjectName parent,
Assessment assessment)
Creates an Assessment of the likelihood an event is legitimate.
|
Assessment |
createAssessment(String parent,
Assessment assessment)
Creates an Assessment of the likelihood an event is legitimate.
|
com.google.api.gax.rpc.UnaryCallable<CreateAssessmentRequest,Assessment> |
createAssessmentCallable()
Creates an Assessment of the likelihood an event is legitimate.
|
Key |
createKey(CreateKeyRequest request)
Creates a new reCAPTCHA Enterprise key.
|
com.google.api.gax.rpc.UnaryCallable<CreateKeyRequest,Key> |
createKeyCallable()
Creates a new reCAPTCHA Enterprise key.
|
void |
deleteKey(DeleteKeyRequest request)
Deletes the specified key.
|
com.google.api.gax.rpc.UnaryCallable<DeleteKeyRequest,com.google.protobuf.Empty> |
deleteKeyCallable()
Deletes the specified key.
|
Key |
getKey(GetKeyRequest request)
Returns the specified key.
|
com.google.api.gax.rpc.UnaryCallable<GetKeyRequest,Key> |
getKeyCallable()
Returns the specified key.
|
RecaptchaEnterpriseServiceV1Beta1Settings |
getSettings() |
RecaptchaEnterpriseServiceV1Beta1Stub |
getStub() |
boolean |
isShutdown() |
boolean |
isTerminated() |
RecaptchaEnterpriseServiceV1Beta1Client.ListKeysPagedResponse |
listKeys(ListKeysRequest request)
Returns the list of all keys that belong to a project.
|
com.google.api.gax.rpc.UnaryCallable<ListKeysRequest,ListKeysResponse> |
listKeysCallable()
Returns the list of all keys that belong to a project.
|
com.google.api.gax.rpc.UnaryCallable<ListKeysRequest,RecaptchaEnterpriseServiceV1Beta1Client.ListKeysPagedResponse> |
listKeysPagedCallable()
Returns the list of all keys that belong to a project.
|
void |
shutdown() |
void |
shutdownNow() |
Key |
updateKey(UpdateKeyRequest request)
Updates the specified key.
|
com.google.api.gax.rpc.UnaryCallable<UpdateKeyRequest,Key> |
updateKeyCallable()
Updates the specified key.
|
protected RecaptchaEnterpriseServiceV1Beta1Client(RecaptchaEnterpriseServiceV1Beta1Settings settings) throws IOException
IOException@BetaApi(value="A restructuring of stub classes is planned, so this may break in the future") protected RecaptchaEnterpriseServiceV1Beta1Client(RecaptchaEnterpriseServiceV1Beta1Stub stub)
public static final RecaptchaEnterpriseServiceV1Beta1Client create() throws IOException
IOExceptionpublic static final RecaptchaEnterpriseServiceV1Beta1Client create(RecaptchaEnterpriseServiceV1Beta1Settings settings) throws IOException
IOException@BetaApi(value="A restructuring of stub classes is planned, so this may break in the future") public static final RecaptchaEnterpriseServiceV1Beta1Client create(RecaptchaEnterpriseServiceV1Beta1Stub stub)
public final RecaptchaEnterpriseServiceV1Beta1Settings getSettings()
@BetaApi(value="A restructuring of stub classes is planned, so this may break in the future") public RecaptchaEnterpriseServiceV1Beta1Stub getStub()
public final Assessment createAssessment(ProjectName parent, Assessment assessment)
Sample code:
try (RecaptchaEnterpriseServiceV1Beta1Client recaptchaEnterpriseServiceV1Beta1Client =
RecaptchaEnterpriseServiceV1Beta1Client.create()) {
ProjectName parent = ProjectName.of("[PROJECT]");
Assessment assessment = Assessment.newBuilder().build();
Assessment response =
recaptchaEnterpriseServiceV1Beta1Client.createAssessment(parent, assessment);
}
parent - Required. The name of the project in which the assessment will be created, in the
format "projects/{project_number}".assessment - Required. The assessment details.com.google.api.gax.rpc.ApiException - if the remote call failspublic final Assessment createAssessment(String parent, Assessment assessment)
Sample code:
try (RecaptchaEnterpriseServiceV1Beta1Client recaptchaEnterpriseServiceV1Beta1Client =
RecaptchaEnterpriseServiceV1Beta1Client.create()) {
String parent = ProjectName.of("[PROJECT]").toString();
Assessment assessment = Assessment.newBuilder().build();
Assessment response =
recaptchaEnterpriseServiceV1Beta1Client.createAssessment(parent, assessment);
}
parent - Required. The name of the project in which the assessment will be created, in the
format "projects/{project_number}".assessment - Required. The assessment details.com.google.api.gax.rpc.ApiException - if the remote call failspublic final Assessment createAssessment(CreateAssessmentRequest request)
Sample code:
try (RecaptchaEnterpriseServiceV1Beta1Client recaptchaEnterpriseServiceV1Beta1Client =
RecaptchaEnterpriseServiceV1Beta1Client.create()) {
CreateAssessmentRequest request =
CreateAssessmentRequest.newBuilder()
.setParent(ProjectName.of("[PROJECT]").toString())
.setAssessment(Assessment.newBuilder().build())
.build();
Assessment response = recaptchaEnterpriseServiceV1Beta1Client.createAssessment(request);
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<CreateAssessmentRequest,Assessment> createAssessmentCallable()
Sample code:
try (RecaptchaEnterpriseServiceV1Beta1Client recaptchaEnterpriseServiceV1Beta1Client =
RecaptchaEnterpriseServiceV1Beta1Client.create()) {
CreateAssessmentRequest request =
CreateAssessmentRequest.newBuilder()
.setParent(ProjectName.of("[PROJECT]").toString())
.setAssessment(Assessment.newBuilder().build())
.build();
ApiFuture<Assessment> future =
recaptchaEnterpriseServiceV1Beta1Client.createAssessmentCallable().futureCall(request);
// Do something.
Assessment response = future.get();
}
public final AnnotateAssessmentResponse annotateAssessment(AssessmentName name, AnnotateAssessmentRequest.Annotation annotation)
Sample code:
try (RecaptchaEnterpriseServiceV1Beta1Client recaptchaEnterpriseServiceV1Beta1Client =
RecaptchaEnterpriseServiceV1Beta1Client.create()) {
AssessmentName name = AssessmentName.of("[PROJECT]", "[ASSESSMENT]");
AnnotateAssessmentRequest.Annotation annotation =
AnnotateAssessmentRequest.Annotation.forNumber(0);
AnnotateAssessmentResponse response =
recaptchaEnterpriseServiceV1Beta1Client.annotateAssessment(name, annotation);
}
name - Required. The resource name of the Assessment, in the format
"projects/{project_number}/assessments/{assessment_id}".annotation - Required. The annotation that will be assigned to the Event.com.google.api.gax.rpc.ApiException - if the remote call failspublic final AnnotateAssessmentResponse annotateAssessment(String name, AnnotateAssessmentRequest.Annotation annotation)
Sample code:
try (RecaptchaEnterpriseServiceV1Beta1Client recaptchaEnterpriseServiceV1Beta1Client =
RecaptchaEnterpriseServiceV1Beta1Client.create()) {
String name = AssessmentName.of("[PROJECT]", "[ASSESSMENT]").toString();
AnnotateAssessmentRequest.Annotation annotation =
AnnotateAssessmentRequest.Annotation.forNumber(0);
AnnotateAssessmentResponse response =
recaptchaEnterpriseServiceV1Beta1Client.annotateAssessment(name, annotation);
}
name - Required. The resource name of the Assessment, in the format
"projects/{project_number}/assessments/{assessment_id}".annotation - Required. The annotation that will be assigned to the Event.com.google.api.gax.rpc.ApiException - if the remote call failspublic final AnnotateAssessmentResponse annotateAssessment(AnnotateAssessmentRequest request)
Sample code:
try (RecaptchaEnterpriseServiceV1Beta1Client recaptchaEnterpriseServiceV1Beta1Client =
RecaptchaEnterpriseServiceV1Beta1Client.create()) {
AnnotateAssessmentRequest request =
AnnotateAssessmentRequest.newBuilder()
.setName(AssessmentName.of("[PROJECT]", "[ASSESSMENT]").toString())
.build();
AnnotateAssessmentResponse response =
recaptchaEnterpriseServiceV1Beta1Client.annotateAssessment(request);
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<AnnotateAssessmentRequest,AnnotateAssessmentResponse> annotateAssessmentCallable()
Sample code:
try (RecaptchaEnterpriseServiceV1Beta1Client recaptchaEnterpriseServiceV1Beta1Client =
RecaptchaEnterpriseServiceV1Beta1Client.create()) {
AnnotateAssessmentRequest request =
AnnotateAssessmentRequest.newBuilder()
.setName(AssessmentName.of("[PROJECT]", "[ASSESSMENT]").toString())
.build();
ApiFuture<AnnotateAssessmentResponse> future =
recaptchaEnterpriseServiceV1Beta1Client.annotateAssessmentCallable().futureCall(request);
// Do something.
AnnotateAssessmentResponse response = future.get();
}
public final Key createKey(CreateKeyRequest request)
Sample code:
try (RecaptchaEnterpriseServiceV1Beta1Client recaptchaEnterpriseServiceV1Beta1Client =
RecaptchaEnterpriseServiceV1Beta1Client.create()) {
CreateKeyRequest request =
CreateKeyRequest.newBuilder()
.setParent(ProjectName.of("[PROJECT]").toString())
.setKey(Key.newBuilder().build())
.build();
Key response = recaptchaEnterpriseServiceV1Beta1Client.createKey(request);
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<CreateKeyRequest,Key> createKeyCallable()
Sample code:
try (RecaptchaEnterpriseServiceV1Beta1Client recaptchaEnterpriseServiceV1Beta1Client =
RecaptchaEnterpriseServiceV1Beta1Client.create()) {
CreateKeyRequest request =
CreateKeyRequest.newBuilder()
.setParent(ProjectName.of("[PROJECT]").toString())
.setKey(Key.newBuilder().build())
.build();
ApiFuture<Key> future =
recaptchaEnterpriseServiceV1Beta1Client.createKeyCallable().futureCall(request);
// Do something.
Key response = future.get();
}
public final RecaptchaEnterpriseServiceV1Beta1Client.ListKeysPagedResponse listKeys(ListKeysRequest request)
Sample code:
try (RecaptchaEnterpriseServiceV1Beta1Client recaptchaEnterpriseServiceV1Beta1Client =
RecaptchaEnterpriseServiceV1Beta1Client.create()) {
ListKeysRequest request =
ListKeysRequest.newBuilder()
.setParent(ProjectName.of("[PROJECT]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
for (Key element : recaptchaEnterpriseServiceV1Beta1Client.listKeys(request).iterateAll()) {
// doThingsWith(element);
}
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<ListKeysRequest,RecaptchaEnterpriseServiceV1Beta1Client.ListKeysPagedResponse> listKeysPagedCallable()
Sample code:
try (RecaptchaEnterpriseServiceV1Beta1Client recaptchaEnterpriseServiceV1Beta1Client =
RecaptchaEnterpriseServiceV1Beta1Client.create()) {
ListKeysRequest request =
ListKeysRequest.newBuilder()
.setParent(ProjectName.of("[PROJECT]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
ApiFuture<Key> future =
recaptchaEnterpriseServiceV1Beta1Client.listKeysPagedCallable().futureCall(request);
// Do something.
for (Key element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
public final com.google.api.gax.rpc.UnaryCallable<ListKeysRequest,ListKeysResponse> listKeysCallable()
Sample code:
try (RecaptchaEnterpriseServiceV1Beta1Client recaptchaEnterpriseServiceV1Beta1Client =
RecaptchaEnterpriseServiceV1Beta1Client.create()) {
ListKeysRequest request =
ListKeysRequest.newBuilder()
.setParent(ProjectName.of("[PROJECT]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
while (true) {
ListKeysResponse response =
recaptchaEnterpriseServiceV1Beta1Client.listKeysCallable().call(request);
for (Key element : response.getResponsesList()) {
// doThingsWith(element);
}
String nextPageToken = response.getNextPageToken();
if (!Strings.isNullOrEmpty(nextPageToken)) {
request = request.toBuilder().setPageToken(nextPageToken).build();
} else {
break;
}
}
}
public final Key getKey(GetKeyRequest request)
Sample code:
try (RecaptchaEnterpriseServiceV1Beta1Client recaptchaEnterpriseServiceV1Beta1Client =
RecaptchaEnterpriseServiceV1Beta1Client.create()) {
GetKeyRequest request =
GetKeyRequest.newBuilder().setName(KeyName.of("[PROJECT]", "[KEY]").toString()).build();
Key response = recaptchaEnterpriseServiceV1Beta1Client.getKey(request);
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<GetKeyRequest,Key> getKeyCallable()
Sample code:
try (RecaptchaEnterpriseServiceV1Beta1Client recaptchaEnterpriseServiceV1Beta1Client =
RecaptchaEnterpriseServiceV1Beta1Client.create()) {
GetKeyRequest request =
GetKeyRequest.newBuilder().setName(KeyName.of("[PROJECT]", "[KEY]").toString()).build();
ApiFuture<Key> future =
recaptchaEnterpriseServiceV1Beta1Client.getKeyCallable().futureCall(request);
// Do something.
Key response = future.get();
}
public final Key updateKey(UpdateKeyRequest request)
Sample code:
try (RecaptchaEnterpriseServiceV1Beta1Client recaptchaEnterpriseServiceV1Beta1Client =
RecaptchaEnterpriseServiceV1Beta1Client.create()) {
UpdateKeyRequest request =
UpdateKeyRequest.newBuilder()
.setKey(Key.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.build();
Key response = recaptchaEnterpriseServiceV1Beta1Client.updateKey(request);
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<UpdateKeyRequest,Key> updateKeyCallable()
Sample code:
try (RecaptchaEnterpriseServiceV1Beta1Client recaptchaEnterpriseServiceV1Beta1Client =
RecaptchaEnterpriseServiceV1Beta1Client.create()) {
UpdateKeyRequest request =
UpdateKeyRequest.newBuilder()
.setKey(Key.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.build();
ApiFuture<Key> future =
recaptchaEnterpriseServiceV1Beta1Client.updateKeyCallable().futureCall(request);
// Do something.
Key response = future.get();
}
public final void deleteKey(DeleteKeyRequest request)
Sample code:
try (RecaptchaEnterpriseServiceV1Beta1Client recaptchaEnterpriseServiceV1Beta1Client =
RecaptchaEnterpriseServiceV1Beta1Client.create()) {
DeleteKeyRequest request =
DeleteKeyRequest.newBuilder()
.setName(KeyName.of("[PROJECT]", "[KEY]").toString())
.build();
recaptchaEnterpriseServiceV1Beta1Client.deleteKey(request);
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<DeleteKeyRequest,com.google.protobuf.Empty> deleteKeyCallable()
Sample code:
try (RecaptchaEnterpriseServiceV1Beta1Client recaptchaEnterpriseServiceV1Beta1Client =
RecaptchaEnterpriseServiceV1Beta1Client.create()) {
DeleteKeyRequest request =
DeleteKeyRequest.newBuilder()
.setName(KeyName.of("[PROJECT]", "[KEY]").toString())
.build();
ApiFuture<Empty> future =
recaptchaEnterpriseServiceV1Beta1Client.deleteKeyCallable().futureCall(request);
// Do something.
future.get();
}
public final void close()
close in interface AutoCloseablepublic void shutdown()
shutdown in interface com.google.api.gax.core.BackgroundResourcepublic boolean isShutdown()
isShutdown in interface com.google.api.gax.core.BackgroundResourcepublic boolean isTerminated()
isTerminated in interface com.google.api.gax.core.BackgroundResourcepublic void shutdownNow()
shutdownNow in interface com.google.api.gax.core.BackgroundResourcepublic boolean awaitTermination(long duration,
TimeUnit unit)
throws InterruptedException
awaitTermination in interface com.google.api.gax.core.BackgroundResourceInterruptedExceptionCopyright © 2022 Google LLC. All rights reserved.