Skip to content
This repository has been archived by the owner on Dec 15, 2023. It is now read-only.

Commit

Permalink
docs: Update client libraries for v1p1beta1 api (#882)
Browse files Browse the repository at this point in the history
* feat: Add adaptation proto for v1 api

PiperOrigin-RevId: 447561222

Source-Link: googleapis/googleapis@ec9193e

Source-Link: googleapis/googleapis-gen@cd279b0
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiY2QyNzliMDAzZTQ0NTVjOWI4MDVmMjJmYzNiOTk3NmFkODYzOWVlNiJ9

* 🦉 Updates from OwlBot post-processor

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

* docs: Update client libraries for v1p1beta1 api

PiperOrigin-RevId: 447572837

Source-Link: googleapis/googleapis@10c88bb

Source-Link: googleapis/googleapis-gen@8a8244e
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiOGE4MjQ0ZWRiNWNmYzNmNjI1MzA0MWRlOGZlMGIxZTdjOTg2M2RlZSJ9

* 🦉 Updates from OwlBot post-processor

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

* chore: fix dependencies

* 🦉 Updates from OwlBot post-processor

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
Co-authored-by: Neenu1995 <neenushaji@google.com>
  • Loading branch information
3 people committed May 20, 2022
1 parent 0f18fdd commit e36e650
Show file tree
Hide file tree
Showing 85 changed files with 20,791 additions and 789 deletions.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,285 @@
/*
* 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.speech.v1;

import static com.google.cloud.speech.v1.AdaptationClient.ListCustomClassesPagedResponse;
import static com.google.cloud.speech.v1.AdaptationClient.ListPhraseSetPagedResponse;

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.TransportChannelProvider;
import com.google.api.gax.rpc.UnaryCallSettings;
import com.google.cloud.speech.v1.stub.AdaptationStubSettings;
import com.google.protobuf.Empty;
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 AdaptationClient}.
*
* <p>The default instance has everything set to sensible defaults:
*
* <ul>
* <li>The default service address (speech.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 createPhraseSet to 30 seconds:
*
* <pre>{@code
* // This snippet has been automatically generated for illustrative purposes only.
* // It may require modifications to work in your environment.
* AdaptationSettings.Builder adaptationSettingsBuilder = AdaptationSettings.newBuilder();
* adaptationSettingsBuilder
* .createPhraseSetSettings()
* .setRetrySettings(
* adaptationSettingsBuilder
* .createPhraseSetSettings()
* .getRetrySettings()
* .toBuilder()
* .setTotalTimeout(Duration.ofSeconds(30))
* .build());
* AdaptationSettings adaptationSettings = adaptationSettingsBuilder.build();
* }</pre>
*/
@Generated("by gapic-generator-java")
public class AdaptationSettings extends ClientSettings<AdaptationSettings> {

/** Returns the object with the settings used for calls to createPhraseSet. */
public UnaryCallSettings<CreatePhraseSetRequest, PhraseSet> createPhraseSetSettings() {
return ((AdaptationStubSettings) getStubSettings()).createPhraseSetSettings();
}

/** Returns the object with the settings used for calls to getPhraseSet. */
public UnaryCallSettings<GetPhraseSetRequest, PhraseSet> getPhraseSetSettings() {
return ((AdaptationStubSettings) getStubSettings()).getPhraseSetSettings();
}

/** Returns the object with the settings used for calls to listPhraseSet. */
public PagedCallSettings<ListPhraseSetRequest, ListPhraseSetResponse, ListPhraseSetPagedResponse>
listPhraseSetSettings() {
return ((AdaptationStubSettings) getStubSettings()).listPhraseSetSettings();
}

/** Returns the object with the settings used for calls to updatePhraseSet. */
public UnaryCallSettings<UpdatePhraseSetRequest, PhraseSet> updatePhraseSetSettings() {
return ((AdaptationStubSettings) getStubSettings()).updatePhraseSetSettings();
}

/** Returns the object with the settings used for calls to deletePhraseSet. */
public UnaryCallSettings<DeletePhraseSetRequest, Empty> deletePhraseSetSettings() {
return ((AdaptationStubSettings) getStubSettings()).deletePhraseSetSettings();
}

/** Returns the object with the settings used for calls to createCustomClass. */
public UnaryCallSettings<CreateCustomClassRequest, CustomClass> createCustomClassSettings() {
return ((AdaptationStubSettings) getStubSettings()).createCustomClassSettings();
}

/** Returns the object with the settings used for calls to getCustomClass. */
public UnaryCallSettings<GetCustomClassRequest, CustomClass> getCustomClassSettings() {
return ((AdaptationStubSettings) getStubSettings()).getCustomClassSettings();
}

/** Returns the object with the settings used for calls to listCustomClasses. */
public PagedCallSettings<
ListCustomClassesRequest, ListCustomClassesResponse, ListCustomClassesPagedResponse>
listCustomClassesSettings() {
return ((AdaptationStubSettings) getStubSettings()).listCustomClassesSettings();
}

/** Returns the object with the settings used for calls to updateCustomClass. */
public UnaryCallSettings<UpdateCustomClassRequest, CustomClass> updateCustomClassSettings() {
return ((AdaptationStubSettings) getStubSettings()).updateCustomClassSettings();
}

/** Returns the object with the settings used for calls to deleteCustomClass. */
public UnaryCallSettings<DeleteCustomClassRequest, Empty> deleteCustomClassSettings() {
return ((AdaptationStubSettings) getStubSettings()).deleteCustomClassSettings();
}

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

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

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

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

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

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

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

@BetaApi("The surface for customizing headers is not stable yet and may change in the future.")
public static ApiClientHeaderProvider.Builder defaultApiClientHeaderProviderBuilder() {
return AdaptationStubSettings.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 AdaptationSettings(Builder settingsBuilder) throws IOException {
super(settingsBuilder);
}

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

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

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

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

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

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

public AdaptationStubSettings.Builder getStubSettingsBuilder() {
return ((AdaptationStubSettings.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 createPhraseSet. */
public UnaryCallSettings.Builder<CreatePhraseSetRequest, PhraseSet> createPhraseSetSettings() {
return getStubSettingsBuilder().createPhraseSetSettings();
}

/** Returns the builder for the settings used for calls to getPhraseSet. */
public UnaryCallSettings.Builder<GetPhraseSetRequest, PhraseSet> getPhraseSetSettings() {
return getStubSettingsBuilder().getPhraseSetSettings();
}

/** Returns the builder for the settings used for calls to listPhraseSet. */
public PagedCallSettings.Builder<
ListPhraseSetRequest, ListPhraseSetResponse, ListPhraseSetPagedResponse>
listPhraseSetSettings() {
return getStubSettingsBuilder().listPhraseSetSettings();
}

/** Returns the builder for the settings used for calls to updatePhraseSet. */
public UnaryCallSettings.Builder<UpdatePhraseSetRequest, PhraseSet> updatePhraseSetSettings() {
return getStubSettingsBuilder().updatePhraseSetSettings();
}

/** Returns the builder for the settings used for calls to deletePhraseSet. */
public UnaryCallSettings.Builder<DeletePhraseSetRequest, Empty> deletePhraseSetSettings() {
return getStubSettingsBuilder().deletePhraseSetSettings();
}

/** Returns the builder for the settings used for calls to createCustomClass. */
public UnaryCallSettings.Builder<CreateCustomClassRequest, CustomClass>
createCustomClassSettings() {
return getStubSettingsBuilder().createCustomClassSettings();
}

/** Returns the builder for the settings used for calls to getCustomClass. */
public UnaryCallSettings.Builder<GetCustomClassRequest, CustomClass> getCustomClassSettings() {
return getStubSettingsBuilder().getCustomClassSettings();
}

/** Returns the builder for the settings used for calls to listCustomClasses. */
public PagedCallSettings.Builder<
ListCustomClassesRequest, ListCustomClassesResponse, ListCustomClassesPagedResponse>
listCustomClassesSettings() {
return getStubSettingsBuilder().listCustomClassesSettings();
}

/** Returns the builder for the settings used for calls to updateCustomClass. */
public UnaryCallSettings.Builder<UpdateCustomClassRequest, CustomClass>
updateCustomClassSettings() {
return getStubSettingsBuilder().updateCustomClassSettings();
}

/** Returns the builder for the settings used for calls to deleteCustomClass. */
public UnaryCallSettings.Builder<DeleteCustomClassRequest, Empty> deleteCustomClassSettings() {
return getStubSettingsBuilder().deleteCustomClassSettings();
}

@Override
public AdaptationSettings build() throws IOException {
return new AdaptationSettings(this);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,45 @@
}
}
}
},
"Adaptation": {
"clients": {
"grpc": {
"libraryClient": "AdaptationClient",
"rpcs": {
"CreateCustomClass": {
"methods": ["createCustomClass", "createCustomClass", "createCustomClass", "createCustomClassCallable"]
},
"CreatePhraseSet": {
"methods": ["createPhraseSet", "createPhraseSet", "createPhraseSet", "createPhraseSetCallable"]
},
"DeleteCustomClass": {
"methods": ["deleteCustomClass", "deleteCustomClass", "deleteCustomClass", "deleteCustomClassCallable"]
},
"DeletePhraseSet": {
"methods": ["deletePhraseSet", "deletePhraseSet", "deletePhraseSet", "deletePhraseSetCallable"]
},
"GetCustomClass": {
"methods": ["getCustomClass", "getCustomClass", "getCustomClass", "getCustomClassCallable"]
},
"GetPhraseSet": {
"methods": ["getPhraseSet", "getPhraseSet", "getPhraseSet", "getPhraseSetCallable"]
},
"ListCustomClasses": {
"methods": ["listCustomClasses", "listCustomClasses", "listCustomClasses", "listCustomClassesPagedCallable", "listCustomClassesCallable"]
},
"ListPhraseSet": {
"methods": ["listPhraseSet", "listPhraseSet", "listPhraseSet", "listPhraseSetPagedCallable", "listPhraseSetCallable"]
},
"UpdateCustomClass": {
"methods": ["updateCustomClass", "updateCustomClass", "updateCustomClassCallable"]
},
"UpdatePhraseSet": {
"methods": ["updatePhraseSet", "updatePhraseSet", "updatePhraseSetCallable"]
}
}
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,23 @@
* RecognizeResponse response = speechClient.recognize(config, audio);
* }
* }</pre>
*
* <p>======================= AdaptationClient =======================
*
* <p>Service Description: Service that implements Google Cloud Speech Adaptation API.
*
* <p>Sample for AdaptationClient:
*
* <pre>{@code
* // This snippet has been automatically generated for illustrative purposes only.
* // It may require modifications to work in your environment.
* try (AdaptationClient adaptationClient = AdaptationClient.create()) {
* LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
* PhraseSet phraseSet = PhraseSet.newBuilder().build();
* String phraseSetId = "phraseSetId959902180";
* PhraseSet response = adaptationClient.createPhraseSet(parent, phraseSet, phraseSetId);
* }
* }</pre>
*/
@Generated("by gapic-generator-java")
package com.google.cloud.speech.v1;
Expand Down
Loading

0 comments on commit e36e650

Please sign in to comment.