Class SpeechSpringAutoConfiguration
java.lang.Object
com.google.cloud.speech.v2.spring.SpeechSpringAutoConfiguration
@Generated("by google-cloud-spring-generator")
@BetaApi("Autogenerated Spring autoconfiguration is not yet stable")
@AutoConfiguration
@AutoConfigureAfter(GcpContextAutoConfiguration.class)
@ConditionalOnClass(com.google.cloud.speech.v2.SpeechClient.class)
@ConditionalOnProperty(value="com.google.cloud.speech.v2.speech.enabled",
matchIfMissing=true)
@EnableConfigurationProperties(SpeechSpringProperties.class)
public class SpeechSpringAutoConfiguration
extends Object
Auto-configuration for
SpeechClient
.
Provides auto-configuration for Spring Boot
The default instance has everything set to sensible defaults:
- The default transport provider is used.
- Credentials are acquired automatically through Application Default Credentials.
- Retries are configured for idempotent methods but not for non-idempotent methods.
-
Constructor Summary
ModifierConstructorDescriptionprotected
SpeechSpringAutoConfiguration
(SpeechSpringProperties clientProperties, com.google.api.gax.core.CredentialsProvider credentialsProvider) -
Method Summary
Modifier and TypeMethodDescriptioncom.google.api.gax.rpc.TransportChannelProvider
Provides a default transport channel provider bean, corresponding to the client library's default transport channel provider.com.google.cloud.speech.v2.SpeechClient
speechClient
(com.google.cloud.speech.v2.SpeechSettings speechSettings) Provides a SpeechClient bean configured with SpeechSettings.com.google.cloud.speech.v2.SpeechSettings
speechSettings
(com.google.api.gax.rpc.TransportChannelProvider defaultTransportChannelProvider) Provides a SpeechSettings bean configured to use a DefaultCredentialsProvider and the client library's default transport channel provider (defaultSpeechTransportChannelProvider()).
-
Constructor Details
-
SpeechSpringAutoConfiguration
protected SpeechSpringAutoConfiguration(SpeechSpringProperties clientProperties, com.google.api.gax.core.CredentialsProvider credentialsProvider) throws IOException - Throws:
IOException
-
-
Method Details
-
defaultSpeechTransportChannelProvider
@Bean @ConditionalOnMissingBean(name="defaultSpeechTransportChannelProvider") public com.google.api.gax.rpc.TransportChannelProvider defaultSpeechTransportChannelProvider()Provides a default transport channel provider bean, corresponding to the client library's default transport channel provider. If the library supports both GRPC and REST transport, and the useRest property is configured, the HTTP/JSON transport provider will be used instead of GRPC.- Returns:
- a default transport channel provider.
-
speechSettings
@Bean @ConditionalOnMissingBean public com.google.cloud.speech.v2.SpeechSettings speechSettings(@Qualifier("defaultSpeechTransportChannelProvider") com.google.api.gax.rpc.TransportChannelProvider defaultTransportChannelProvider) throws IOException Provides a SpeechSettings bean configured to use a DefaultCredentialsProvider and the client library's default transport channel provider (defaultSpeechTransportChannelProvider()). It also configures the quota project ID and executor thread count, if provided through properties.Retry settings are also configured from service-level and method-level properties specified in SpeechSpringProperties. Method-level properties will take precedence over service-level properties if available, and client library defaults will be used if neither are specified.
- Parameters:
defaultTransportChannelProvider
- TransportChannelProvider to use in the settings.- Returns:
- a
SpeechSettings
bean configured withTransportChannelProvider
bean. - Throws:
IOException
-
speechClient
@Bean @ConditionalOnMissingBean public com.google.cloud.speech.v2.SpeechClient speechClient(com.google.cloud.speech.v2.SpeechSettings speechSettings) throws IOException Provides a SpeechClient bean configured with SpeechSettings.- Parameters:
speechSettings
- settings to configure an instance of client bean.- Returns:
- a
SpeechClient
bean configured withSpeechSettings
- Throws:
IOException
-