Skip to content

Commit

Permalink
feat: add model_monitoring_stats_anomalies,model_monitoring_status to…
Browse files Browse the repository at this point in the history
… BatchPredictionJob in aiplatform v1beta1 batch_prediction_job.proto

PiperOrigin-RevId: 470845818

Source-Link: googleapis/googleapis@284389e

Source-Link: googleapis/googleapis-gen@29deb79
Copy-Tag: eyJwIjoiamF2YS1haXBsYXRmb3JtLy5Pd2xCb3QueWFtbCIsImgiOiIyOWRlYjc5YjA0YWVhMTY5YTU2OGU3YzU0NDg2ODI0M2Q1MTYxZGRlIn0=
  • Loading branch information
gcf-owl-bot[bot] committed Aug 30, 2022
1 parent e0f0725 commit cdbfb69
Show file tree
Hide file tree
Showing 2,869 changed files with 1,785,218 additions and 0 deletions.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,277 @@
/*
* Copyright 2022 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.google.cloud.aiplatform.v1;

import static com.google.cloud.aiplatform.v1.FeaturestoreOnlineServingServiceClient.ListLocationsPagedResponse;

import com.google.api.core.ApiFunction;
import com.google.api.core.BetaApi;
import com.google.api.gax.core.GoogleCredentialsProvider;
import com.google.api.gax.core.InstantiatingExecutorProvider;
import com.google.api.gax.grpc.InstantiatingGrpcChannelProvider;
import com.google.api.gax.rpc.ApiClientHeaderProvider;
import com.google.api.gax.rpc.ClientContext;
import com.google.api.gax.rpc.ClientSettings;
import com.google.api.gax.rpc.PagedCallSettings;
import com.google.api.gax.rpc.ServerStreamingCallSettings;
import com.google.api.gax.rpc.StubSettings;
import com.google.api.gax.rpc.TransportChannelProvider;
import com.google.api.gax.rpc.UnaryCallSettings;
import com.google.cloud.aiplatform.v1.stub.FeaturestoreOnlineServingServiceStubSettings;
import com.google.cloud.location.GetLocationRequest;
import com.google.cloud.location.ListLocationsRequest;
import com.google.cloud.location.ListLocationsResponse;
import com.google.cloud.location.Location;
import com.google.iam.v1.GetIamPolicyRequest;
import com.google.iam.v1.Policy;
import com.google.iam.v1.SetIamPolicyRequest;
import com.google.iam.v1.TestIamPermissionsRequest;
import com.google.iam.v1.TestIamPermissionsResponse;
import java.io.IOException;
import java.util.List;
import javax.annotation.Generated;

// AUTO-GENERATED DOCUMENTATION AND CLASS.
/**
* Settings class to configure an instance of {@link FeaturestoreOnlineServingServiceClient}.
*
* <p>The default instance has everything set to sensible defaults:
*
* <ul>
* <li> The default service address (aiplatform.googleapis.com) and default port (443) are used.
* <li> Credentials are acquired automatically through Application Default Credentials.
* <li> Retries are configured for idempotent methods but not for non-idempotent methods.
* </ul>
*
* <p>The builder of this class is recursive, so contained classes are themselves builders. When
* build() is called, the tree of builders is called to create the complete settings object.
*
* <p>For example, to set the total timeout of readFeatureValues to 30 seconds:
*
* <pre>{@code
* // This snippet has been automatically generated for illustrative purposes only.
* // It may require modifications to work in your environment.
* FeaturestoreOnlineServingServiceSettings.Builder
* featurestoreOnlineServingServiceSettingsBuilder =
* FeaturestoreOnlineServingServiceSettings.newBuilder();
* featurestoreOnlineServingServiceSettingsBuilder
* .readFeatureValuesSettings()
* .setRetrySettings(
* featurestoreOnlineServingServiceSettingsBuilder
* .readFeatureValuesSettings()
* .getRetrySettings()
* .toBuilder()
* .setTotalTimeout(Duration.ofSeconds(30))
* .build());
* FeaturestoreOnlineServingServiceSettings featurestoreOnlineServingServiceSettings =
* featurestoreOnlineServingServiceSettingsBuilder.build();
* }</pre>
*/
@Generated("by gapic-generator-java")
public class FeaturestoreOnlineServingServiceSettings
extends ClientSettings<FeaturestoreOnlineServingServiceSettings> {

/** Returns the object with the settings used for calls to readFeatureValues. */
public UnaryCallSettings<ReadFeatureValuesRequest, ReadFeatureValuesResponse>
readFeatureValuesSettings() {
return ((FeaturestoreOnlineServingServiceStubSettings) getStubSettings())
.readFeatureValuesSettings();
}

/** Returns the object with the settings used for calls to streamingReadFeatureValues. */
public ServerStreamingCallSettings<StreamingReadFeatureValuesRequest, ReadFeatureValuesResponse>
streamingReadFeatureValuesSettings() {
return ((FeaturestoreOnlineServingServiceStubSettings) getStubSettings())
.streamingReadFeatureValuesSettings();
}

/** Returns the object with the settings used for calls to listLocations. */
public PagedCallSettings<ListLocationsRequest, ListLocationsResponse, ListLocationsPagedResponse>
listLocationsSettings() {
return ((FeaturestoreOnlineServingServiceStubSettings) getStubSettings())
.listLocationsSettings();
}

/** Returns the object with the settings used for calls to getLocation. */
public UnaryCallSettings<GetLocationRequest, Location> getLocationSettings() {
return ((FeaturestoreOnlineServingServiceStubSettings) getStubSettings()).getLocationSettings();
}

/** Returns the object with the settings used for calls to setIamPolicy. */
public UnaryCallSettings<SetIamPolicyRequest, Policy> setIamPolicySettings() {
return ((FeaturestoreOnlineServingServiceStubSettings) getStubSettings())
.setIamPolicySettings();
}

/** Returns the object with the settings used for calls to getIamPolicy. */
public UnaryCallSettings<GetIamPolicyRequest, Policy> getIamPolicySettings() {
return ((FeaturestoreOnlineServingServiceStubSettings) getStubSettings())
.getIamPolicySettings();
}

/** Returns the object with the settings used for calls to testIamPermissions. */
public UnaryCallSettings<TestIamPermissionsRequest, TestIamPermissionsResponse>
testIamPermissionsSettings() {
return ((FeaturestoreOnlineServingServiceStubSettings) getStubSettings())
.testIamPermissionsSettings();
}

public static final FeaturestoreOnlineServingServiceSettings create(
FeaturestoreOnlineServingServiceStubSettings stub) throws IOException {
return new FeaturestoreOnlineServingServiceSettings.Builder(stub.toBuilder()).build();
}

/** Returns a builder for the default ExecutorProvider for this service. */
public static InstantiatingExecutorProvider.Builder defaultExecutorProviderBuilder() {
return FeaturestoreOnlineServingServiceStubSettings.defaultExecutorProviderBuilder();
}

/** Returns the default service endpoint. */
public static String getDefaultEndpoint() {
return FeaturestoreOnlineServingServiceStubSettings.getDefaultEndpoint();
}

/** Returns the default service scopes. */
public static List<String> getDefaultServiceScopes() {
return FeaturestoreOnlineServingServiceStubSettings.getDefaultServiceScopes();
}

/** Returns a builder for the default credentials for this service. */
public static GoogleCredentialsProvider.Builder defaultCredentialsProviderBuilder() {
return FeaturestoreOnlineServingServiceStubSettings.defaultCredentialsProviderBuilder();
}

/** Returns a builder for the default ChannelProvider for this service. */
public static InstantiatingGrpcChannelProvider.Builder defaultGrpcTransportProviderBuilder() {
return FeaturestoreOnlineServingServiceStubSettings.defaultGrpcTransportProviderBuilder();
}

public static TransportChannelProvider defaultTransportChannelProvider() {
return FeaturestoreOnlineServingServiceStubSettings.defaultTransportChannelProvider();
}

@BetaApi("The surface for customizing headers is not stable yet and may change in the future.")
public static ApiClientHeaderProvider.Builder defaultApiClientHeaderProviderBuilder() {
return FeaturestoreOnlineServingServiceStubSettings.defaultApiClientHeaderProviderBuilder();
}

/** Returns a new builder for this class. */
public static Builder newBuilder() {
return Builder.createDefault();
}

/** Returns a new builder for this class. */
public static Builder newBuilder(ClientContext clientContext) {
return new Builder(clientContext);
}

/** Returns a builder containing all the values of this settings class. */
public Builder toBuilder() {
return new Builder(this);
}

protected FeaturestoreOnlineServingServiceSettings(Builder settingsBuilder) throws IOException {
super(settingsBuilder);
}

/** Builder for FeaturestoreOnlineServingServiceSettings. */
public static class Builder
extends ClientSettings.Builder<FeaturestoreOnlineServingServiceSettings, Builder> {

protected Builder() throws IOException {
this(((ClientContext) null));
}

protected Builder(ClientContext clientContext) {
super(FeaturestoreOnlineServingServiceStubSettings.newBuilder(clientContext));
}

protected Builder(FeaturestoreOnlineServingServiceSettings settings) {
super(settings.getStubSettings().toBuilder());
}

protected Builder(FeaturestoreOnlineServingServiceStubSettings.Builder stubSettings) {
super(stubSettings);
}

private static Builder createDefault() {
return new Builder(FeaturestoreOnlineServingServiceStubSettings.newBuilder());
}

public FeaturestoreOnlineServingServiceStubSettings.Builder getStubSettingsBuilder() {
return ((FeaturestoreOnlineServingServiceStubSettings.Builder) getStubSettings());
}

/**
* Applies the given settings updater function to all of the unary API methods in this service.
*
* <p>Note: This method does not support applying settings to streaming methods.
*/
public Builder applyToAllUnaryMethods(
ApiFunction<UnaryCallSettings.Builder<?, ?>, Void> settingsUpdater) {
super.applyToAllUnaryMethods(
getStubSettingsBuilder().unaryMethodSettingsBuilders(), settingsUpdater);
return this;
}

/** Returns the builder for the settings used for calls to readFeatureValues. */
public UnaryCallSettings.Builder<ReadFeatureValuesRequest, ReadFeatureValuesResponse>
readFeatureValuesSettings() {
return getStubSettingsBuilder().readFeatureValuesSettings();
}

/** Returns the builder for the settings used for calls to streamingReadFeatureValues. */
public ServerStreamingCallSettings.Builder<
StreamingReadFeatureValuesRequest, ReadFeatureValuesResponse>
streamingReadFeatureValuesSettings() {
return getStubSettingsBuilder().streamingReadFeatureValuesSettings();
}

/** Returns the builder for the settings used for calls to listLocations. */
public PagedCallSettings.Builder<
ListLocationsRequest, ListLocationsResponse, ListLocationsPagedResponse>
listLocationsSettings() {
return getStubSettingsBuilder().listLocationsSettings();
}

/** Returns the builder for the settings used for calls to getLocation. */
public UnaryCallSettings.Builder<GetLocationRequest, Location> getLocationSettings() {
return getStubSettingsBuilder().getLocationSettings();
}

/** Returns the builder for the settings used for calls to setIamPolicy. */
public UnaryCallSettings.Builder<SetIamPolicyRequest, Policy> setIamPolicySettings() {
return getStubSettingsBuilder().setIamPolicySettings();
}

/** Returns the builder for the settings used for calls to getIamPolicy. */
public UnaryCallSettings.Builder<GetIamPolicyRequest, Policy> getIamPolicySettings() {
return getStubSettingsBuilder().getIamPolicySettings();
}

/** Returns the builder for the settings used for calls to testIamPermissions. */
public UnaryCallSettings.Builder<TestIamPermissionsRequest, TestIamPermissionsResponse>
testIamPermissionsSettings() {
return getStubSettingsBuilder().testIamPermissionsSettings();
}

@Override
public FeaturestoreOnlineServingServiceSettings build() throws IOException {
return new FeaturestoreOnlineServingServiceSettings(this);
}
}
}
Loading

0 comments on commit cdbfb69

Please sign in to comment.