Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: [aiplatform] add RaySepc to ResourceRuntimeSpec, and add ResourceRuntime to PersistentResource #9674

Merged
merged 16 commits into from
Aug 2, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
f2fcd92
feat: ScheduleService (schedule_service.proto) creates and manages Sc…
gcf-owl-bot[bot] Jul 22, 2023
ff83527
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Jul 22, 2023
79af785
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Jul 22, 2023
217f8e4
Merge branch 'owl-bot-copy-java-aiplatform' of https://github.com/goo…
gcf-owl-bot[bot] Jul 22, 2023
2797f52
docs: enable sample generation for java-aiplatform
gcf-owl-bot[bot] Jul 27, 2023
c67afa0
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Jul 27, 2023
9350a94
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Jul 27, 2023
e77d34f
Merge branch 'owl-bot-copy-java-aiplatform' of https://github.com/goo…
gcf-owl-bot[bot] Jul 27, 2023
e44615e
feat: add `PredictionService.ServerStreamingPredict` method
gcf-owl-bot[bot] Jul 28, 2023
e55c100
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Jul 28, 2023
fc80d82
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Jul 28, 2023
5d5020a
Merge branch 'owl-bot-copy-java-aiplatform' of https://github.com/goo…
gcf-owl-bot[bot] Jul 28, 2023
2f1abdc
feat: add RaySepc to ResourceRuntimeSpec, and add ResourceRuntime to …
gcf-owl-bot[bot] Jul 28, 2023
9eda93d
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Jul 28, 2023
566c457
🦉 Updates from OwlBot post-processor
gcf-owl-bot[bot] Jul 28, 2023
2f19295
Merge branch 'owl-bot-copy-java-aiplatform' of https://github.com/goo…
gcf-owl-bot[bot] Jul 28, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Prev Previous commit
Next Next commit
🦉 Updates from OwlBot post-processor
  • Loading branch information
gcf-owl-bot[bot] committed Jul 28, 2023
commit 9eda93d189d482df4d342ca73cd34830258ba954
The diff you're trying to view is too large. We only load the first 3000 changed files.

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,292 @@
/*
* Copyright 2023 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.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 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
* 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 writeFeatureValues. */
public UnaryCallSettings<WriteFeatureValuesRequest, WriteFeatureValuesResponse>
writeFeatureValuesSettings() {
return ((FeaturestoreOnlineServingServiceStubSettings) getStubSettings())
.writeFeatureValuesSettings();
}

/** 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 writeFeatureValues. */
public UnaryCallSettings.Builder<WriteFeatureValuesRequest, WriteFeatureValuesResponse>
writeFeatureValuesSettings() {
return getStubSettingsBuilder().writeFeatureValuesSettings();
}

/** 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