@Generated(value="by gapic-generator-java")
See: Description
| Class | Description |
|---|---|
| AutoMlClient |
Service Description: AutoML Server API.
|
| AutoMlClient.ListDatasetsFixedSizeCollection | |
| AutoMlClient.ListDatasetsPage | |
| AutoMlClient.ListDatasetsPagedResponse | |
| AutoMlClient.ListModelEvaluationsFixedSizeCollection | |
| AutoMlClient.ListModelEvaluationsPage | |
| AutoMlClient.ListModelEvaluationsPagedResponse | |
| AutoMlClient.ListModelsFixedSizeCollection | |
| AutoMlClient.ListModelsPage | |
| AutoMlClient.ListModelsPagedResponse | |
| AutoMlSettings |
Settings class to configure an instance of
AutoMlClient. |
| AutoMlSettings.Builder |
Builder for AutoMlSettings.
|
| PredictionServiceClient |
Service Description: AutoML Prediction API.
|
| PredictionServiceSettings |
Settings class to configure an instance of
PredictionServiceClient. |
| PredictionServiceSettings.Builder |
Builder for PredictionServiceSettings.
|
======================= PredictionServiceClient =======================
Service Description: AutoML Prediction API.
On any input that is documented to expect a string parameter in snake_case or dash-case, either of those cases is accepted.
Sample for PredictionServiceClient:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (PredictionServiceClient predictionServiceClient = PredictionServiceClient.create()) {
ModelName name = ModelName.of("[PROJECT]", "[LOCATION]", "[MODEL]");
ExamplePayload payload = ExamplePayload.newBuilder().build();
Map<String, String> params = new HashMap<>();
PredictResponse response = predictionServiceClient.predict(name, payload, params);
}
======================= AutoMlClient =======================
Service Description: AutoML Server API.
The resource names are assigned by the server. The server never reuses names that it has created after the resources with those names are deleted.
An ID of a resource is the last element of the item's resource name. For `projects/{project_id}/locations/{location_id}/datasets/{dataset_id}`, then the id for the item is `{dataset_id}`.
Currently the only supported `location_id` is "us-central1".
On any input that is documented to expect a string parameter in snake_case or dash-case, either of those cases is accepted.
Sample for AutoMlClient:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (AutoMlClient autoMlClient = AutoMlClient.create()) {
DatasetName name = DatasetName.of("[PROJECT]", "[LOCATION]", "[DATASET]");
Dataset response = autoMlClient.getDataset(name);
}
Copyright © 2022 Google LLC. All rights reserved.