Class CallAutomationClientBuilder
- All Implemented Interfaces:
com.azure.core.client.traits.AzureKeyCredentialTrait<CallAutomationClientBuilder>,com.azure.core.client.traits.ConfigurationTrait<CallAutomationClientBuilder>,com.azure.core.client.traits.ConnectionStringTrait<CallAutomationClientBuilder>,com.azure.core.client.traits.EndpointTrait<CallAutomationClientBuilder>,com.azure.core.client.traits.HttpTrait<CallAutomationClientBuilder>,com.azure.core.client.traits.TokenCredentialTrait<CallAutomationClientBuilder>
Instantiating synchronous and asynchronous Calling Server Clients
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionaddPolicy(com.azure.core.http.policy.HttpPipelinePolicy customPolicy) Adds apipeline policyto apply on each request sent.Create asynchronous client applying HMACAuthenticationPolicy, UserAgentPolicy, RetryPolicy, and CookiePolicy.Create synchronous client applying HmacAuthenticationPolicy, UserAgentPolicy, RetryPolicy, and CookiePolicy.clientOptions(com.azure.core.util.ClientOptions clientOptions) Allows the user to set a variety of client-related options, such as user-agent string, headers, etc.configuration(com.azure.core.util.Configuration configuration) Sets the configuration object used to retrieve environment configuration values during building of the client.connectionString(String connectionString) Set connectionString to use.credential(com.azure.core.credential.AzureKeyCredential keyCredential) Sets theAzureKeyCredentialused to authenticate HTTP requests.credential(com.azure.core.credential.TokenCredential tokenCredential) Sets theTokenCredentialused to authorize requests sent to the service.Set endpoint of the service.httpClient(com.azure.core.http.HttpClient httpClient) Sets theHttpClientto use for sending and receiving requests to and from the service.httpLogOptions(com.azure.core.http.policy.HttpLogOptions logOptions) Sets thelogging configurationto use when sending and receiving requests to and from the service.pipeline(com.azure.core.http.HttpPipeline pipeline) Sets theHttpPipelineto use for the service client.retryOptions(com.azure.core.http.policy.RetryOptions retryOptions) Sets theRetryOptionsfor all the requests made through the client.retryPolicy(com.azure.core.http.policy.RetryPolicy retryPolicy) Sets the retry policy to use (using the RetryPolicy type).Sets theCallAutomationServiceVersionthat is used when making API requests.sourceIdentity(CommunicationUserIdentifier sourceIdentity) Set Source Identity used to create and answer call
-
Constructor Details
-
CallAutomationClientBuilder
public CallAutomationClientBuilder()Public default constructor
-
-
Method Details
-
endpoint
Set endpoint of the service.- Specified by:
endpointin interfacecom.azure.core.client.traits.EndpointTrait<CallAutomationClientBuilder>- Parameters:
endpoint- url of the service.- Returns:
- CallAutomationClientBuilder object.
-
pipeline
Sets theHttpPipelineto use for the service client.Note: It is important to understand the precedence order of the HttpTrait APIs. In particular, if a
HttpPipelineis specified, this takes precedence over all other APIs in the trait, and they will be ignored. If noHttpPipelineis specified, a HTTP pipeline will be constructed internally based on the settings provided to this trait. Additionally, there may be other APIs in types that implement this trait that are also ignored if anHttpPipelineis specified, so please be sure to refer to the documentation of types that implement this trait to understand the full set of implications.- Specified by:
pipelinein interfacecom.azure.core.client.traits.HttpTrait<CallAutomationClientBuilder>- Parameters:
pipeline-HttpPipelineto use for sending service requests and receiving responses, if a pipeline is not supplied, the credential and httpClient fields must be set.- Returns:
- CallAutomationClientBuilder object.
-
credential
public CallAutomationClientBuilder credential(com.azure.core.credential.TokenCredential tokenCredential) Sets theTokenCredentialused to authorize requests sent to the service. Refer to the Azure SDK for Java identity and authentication documentation for more details on proper usage of theTokenCredentialtype.- Specified by:
credentialin interfacecom.azure.core.client.traits.TokenCredentialTrait<CallAutomationClientBuilder>- Parameters:
tokenCredential-TokenCredentialused to authorize requests sent to the service.- Returns:
- Updated
CallAutomationClientBuilderobject. - Throws:
NullPointerException- IftokenCredentialis null.
-
credential
public CallAutomationClientBuilder credential(com.azure.core.credential.AzureKeyCredential keyCredential) Sets theAzureKeyCredentialused to authenticate HTTP requests.- Specified by:
credentialin interfacecom.azure.core.client.traits.AzureKeyCredentialTrait<CallAutomationClientBuilder>- Parameters:
keyCredential- TheAzureKeyCredentialused to authenticate HTTP requests.- Returns:
- Updated
CallAutomationClientBuilderobject. - Throws:
NullPointerException- IfkeyCredentialis null.
-
connectionString
Set connectionString to use.- Specified by:
connectionStringin interfacecom.azure.core.client.traits.ConnectionStringTrait<CallAutomationClientBuilder>- Parameters:
connectionString- connection string to set.- Returns:
- Updated
CallAutomationClientBuilderobject.
-
sourceIdentity
Set Source Identity used to create and answer call- Parameters:
sourceIdentity-CommunicationUserIdentifierto used to create and answer call.- Returns:
CallAutomationClientBuilderobject.
-
retryPolicy
Sets the retry policy to use (using the RetryPolicy type).Setting this is mutually exclusive with using
retryOptions(RetryOptions).- Parameters:
retryPolicy- object to be applied- Returns:
- Updated
CallAutomationClientBuilderobject.
-
retryOptions
public CallAutomationClientBuilder retryOptions(com.azure.core.http.policy.RetryOptions retryOptions) Sets theRetryOptionsfor all the requests made through the client.Note: It is important to understand the precedence order of the HttpTrait APIs. In particular, if a
HttpPipelineis specified, this takes precedence over all other APIs in the trait, and they will be ignored. If noHttpPipelineis specified, a HTTP pipeline will be constructed internally based on the settings provided to this trait. Additionally, there may be other APIs in types that implement this trait that are also ignored if anHttpPipelineis specified, so please be sure to refer to the documentation of types that implement this trait to understand the full set of implications.Setting this is mutually exclusive with using
retryPolicy(RetryPolicy).- Specified by:
retryOptionsin interfacecom.azure.core.client.traits.HttpTrait<CallAutomationClientBuilder>- Parameters:
retryOptions- TheRetryOptionsto use for all the requests made through the client.- Returns:
- Updated
CallAutomationClientBuilderobject.
-
configuration
Sets the configuration object used to retrieve environment configuration values during building of the client.- Specified by:
configurationin interfacecom.azure.core.client.traits.ConfigurationTrait<CallAutomationClientBuilder>- Parameters:
configuration- Configuration store used to retrieve environment configurations.- Returns:
- Updated
CallAutomationClientBuilderobject.
-
httpLogOptions
public CallAutomationClientBuilder httpLogOptions(com.azure.core.http.policy.HttpLogOptions logOptions) Sets thelogging configurationto use when sending and receiving requests to and from the service. If alogLevelis not provided, default value ofHttpLogDetailLevel.NONEis set.Note: It is important to understand the precedence order of the HttpTrait APIs. In particular, if a
HttpPipelineis specified, this takes precedence over all other APIs in the trait, and they will be ignored. If noHttpPipelineis specified, a HTTP pipeline will be constructed internally based on the settings provided to this trait. Additionally, there may be other APIs in types that implement this trait that are also ignored if anHttpPipelineis specified, so please be sure to refer to the documentation of types that implement this trait to understand the full set of implications.- Specified by:
httpLogOptionsin interfacecom.azure.core.client.traits.HttpTrait<CallAutomationClientBuilder>- Parameters:
logOptions- Thelogging configurationto use when sending and receiving requests to and from the service.- Returns:
- The updated
CallAutomationClientBuilderobject.
-
serviceVersion
Sets theCallAutomationServiceVersionthat is used when making API requests.If a service version is not provided, the service version that will be used will be the latest known service version based on the version of the client library being used. If no service version is specified, updating to a newer version of the client library will have the result of potentially moving to a newer service version.
Targeting a specific service version may also mean that the service will return an error for newer APIs.
- Parameters:
version-CallAutomationServiceVersionof the service to be used when making requests.- Returns:
- Updated CallAutomationClientBuilder object
-
httpClient
Sets theHttpClientto use for sending and receiving requests to and from the service.Note: It is important to understand the precedence order of the HttpTrait APIs. In particular, if a
HttpPipelineis specified, this takes precedence over all other APIs in the trait, and they will be ignored. If noHttpPipelineis specified, a HTTP pipeline will be constructed internally based on the settings provided to this trait. Additionally, there may be other APIs in types that implement this trait that are also ignored if anHttpPipelineis specified, so please be sure to refer to the documentation of types that implement this trait to understand the full set of implications.- Specified by:
httpClientin interfacecom.azure.core.client.traits.HttpTrait<CallAutomationClientBuilder>- Parameters:
httpClient- TheHttpClientto use for requests.- Returns:
- Updated
CallAutomationClientBuilderobject.
-
addPolicy
public CallAutomationClientBuilder addPolicy(com.azure.core.http.policy.HttpPipelinePolicy customPolicy) Adds apipeline policyto apply on each request sent.Note: It is important to understand the precedence order of the HttpTrait APIs. In particular, if a
HttpPipelineis specified, this takes precedence over all other APIs in the trait, and they will be ignored. If noHttpPipelineis specified, a HTTP pipeline will be constructed internally based on the settings provided to this trait. Additionally, there may be other APIs in types that implement this trait that are also ignored if anHttpPipelineis specified, so please be sure to refer to the documentation of types that implement this trait to understand the full set of implications.- Specified by:
addPolicyin interfacecom.azure.core.client.traits.HttpTrait<CallAutomationClientBuilder>- Parameters:
customPolicy- Apipeline policy.- Returns:
- Updated
CallAutomationClientBuilderobject. - Throws:
NullPointerException- IfpipelinePolicyisnull.
-
buildAsyncClient
Create asynchronous client applying HMACAuthenticationPolicy, UserAgentPolicy, RetryPolicy, and CookiePolicy. Additional HttpPolicies specified by additionalPolicies will be applied after them- Returns:
- The updated
CallAutomationClientBuilderobject. - Throws:
IllegalStateException- If bothretryOptions(RetryOptions)andretryPolicy(RetryPolicy)have been set.
-
buildClient
Create synchronous client applying HmacAuthenticationPolicy, UserAgentPolicy, RetryPolicy, and CookiePolicy. Additional HttpPolicies specified by additionalPolicies will be applied after them.- Returns:
- Updated
CallAutomationClientBuilderobject. - Throws:
IllegalStateException- If bothretryOptions(RetryOptions)andretryPolicy(RetryPolicy)have been set.
-
clientOptions
Allows the user to set a variety of client-related options, such as user-agent string, headers, etc.- Specified by:
clientOptionsin interfacecom.azure.core.client.traits.HttpTrait<CallAutomationClientBuilder>- Parameters:
clientOptions- object to be applied.- Returns:
- Updated
CallAutomationClientBuilderobject.
-