Class SipRoutingClientBuilder
- All Implemented Interfaces:
com.azure.core.client.traits.AzureKeyCredentialTrait<SipRoutingClientBuilder>,com.azure.core.client.traits.ConfigurationTrait<SipRoutingClientBuilder>,com.azure.core.client.traits.ConnectionStringTrait<SipRoutingClientBuilder>,com.azure.core.client.traits.EndpointTrait<SipRoutingClientBuilder>,com.azure.core.client.traits.HttpTrait<SipRoutingClientBuilder>,com.azure.core.client.traits.TokenCredentialTrait<SipRoutingClientBuilder>
Instantiating a SIP Routing Client Builder
SipRoutingClientBuilder builder = new SipRoutingClientBuilder();
Using a SIP Routing Client Builder to build a SIP Routing Client
SipRoutingClient sipRoutingClient = new SipRoutingClientBuilder()
.connectionString(connectionString)
.buildClient();
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionaddPolicy(com.azure.core.http.policy.HttpPipelinePolicy policy) Adds apipeline policyto apply on each request sent.Create asynchronous client applying CommunicationClientCredentialPolicy, UserAgentPolicy, RetryPolicy, and CookiePolicy.Create synchronous client applying CommunicationClientCredentialPolicy, UserAgentPolicy, RetryPolicy, and CookiePolicy.clientOptions(com.azure.core.util.ClientOptions clientOptions) Allows for setting common properties such as application ID, headers, proxy configuration, 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 the endpoint and AzureKeyCredential for authorization.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.Sets endpoint of the servicehttpClient(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 httpLogOptions) Sets thelogging configurationto use when sending and receiving requests to and from the service.pipeline(com.azure.core.http.HttpPipeline httpPipeline) 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 theRetryPolicythat is used when each request is sent.serviceVersion(SipRoutingServiceVersion version) Sets theSipRoutingServiceVersionthat is used when making API requests.
-
Constructor Details
-
SipRoutingClientBuilder
public SipRoutingClientBuilder()
-
-
Method Details
-
endpoint
Sets endpoint of the service- Specified by:
endpointin interfacecom.azure.core.client.traits.EndpointTrait<SipRoutingClientBuilder>- Parameters:
endpoint- url of the service- Returns:
- The updated
SipRoutingClientBuilderobject. - Throws:
IllegalArgumentException- Ifendpointisnullor it cannot be parsed into a valid URL.
-
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.If
pipelineis set, all other settings aside fromendpointare ignored.- Specified by:
pipelinein interfacecom.azure.core.client.traits.HttpTrait<SipRoutingClientBuilder>- Parameters:
httpPipeline-HttpPipelineto use for sending service requests and receiving responses.- Returns:
- The updated
SipRoutingClientBuilderobject.
-
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<SipRoutingClientBuilder>- Parameters:
httpClient- TheHttpClientto use for requests.- Returns:
- The updated
SipRoutingClientBuilderobject.
-
httpLogOptions
public SipRoutingClientBuilder httpLogOptions(com.azure.core.http.policy.HttpLogOptions httpLogOptions) 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<SipRoutingClientBuilder>- Parameters:
httpLogOptions- Thelogging configurationto use when sending and receiving requests to and from the service.- Returns:
- The updated
SipRoutingClientBuilderobject.
-
credential
public SipRoutingClientBuilder credential(com.azure.core.credential.AzureKeyCredential keyCredential) Sets theAzureKeyCredentialused to authenticate HTTP requests.- Specified by:
credentialin interfacecom.azure.core.client.traits.AzureKeyCredentialTrait<SipRoutingClientBuilder>- Parameters:
keyCredential- TheAzureKeyCredentialused to authenticate HTTP requests.- Returns:
- The updated
SipRoutingClientBuilderobject. - Throws:
NullPointerException- IfkeyCredentialisnull.
-
credential
public SipRoutingClientBuilder 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<SipRoutingClientBuilder>- Parameters:
tokenCredential-TokenCredentialused to authorize requests sent to the service.- Returns:
- The updated
SipRoutingClientBuilderobject. - Throws:
NullPointerException- IftokenCredentialisnull.
-
connectionString
Set the endpoint and AzureKeyCredential for authorization.- Specified by:
connectionStringin interfacecom.azure.core.client.traits.ConnectionStringTrait<SipRoutingClientBuilder>- Parameters:
connectionString- connection string in the format "endpoint={endpoint_value};accesskey={accesskey_value}"- Returns:
- The updated
SipRoutingClientBuilderobject. - Throws:
NullPointerException- IfconnectionStringisnull.
-
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<SipRoutingClientBuilder>- Parameters:
configuration- Configuration store used to retrieve environment configurations.- Returns:
- The updated
SipRoutingClientBuilderobject.
-
addPolicy
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<SipRoutingClientBuilder>- Parameters:
policy- Apipeline policy.- Returns:
- The updated
SipRoutingClientBuilderobject. - Throws:
NullPointerException- Ifpolicyisnull.
-
clientOptions
Allows for setting common properties such as application ID, headers, proxy configuration, etc. Note that it is recommended that this method be called with an instance of theHttpClientOptionsclass (a subclass of theClientOptionsbase class). The HttpClientOptions subclass provides more configuration options suitable for HTTP clients, which is applicable for any class that implements this HttpTrait interface.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:
clientOptionsin interfacecom.azure.core.client.traits.HttpTrait<SipRoutingClientBuilder>- Parameters:
clientOptions- A configured instance ofHttpClientOptions.- Returns:
- The updated
SipRoutingClientBuilderobject. - See Also:
-
HttpClientOptions
-
serviceVersion
Sets theSipRoutingServiceVersionthat 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-SipRoutingServiceVersionof the service to be used when making requests.- Returns:
- The updated
SipRoutingClientBuilderobject.
-
retryPolicy
Sets theRetryPolicythat is used when each request is sent.Setting this is mutually exclusive with using
retryOptions(RetryOptions).- Parameters:
retryPolicy- User's retry policy applied to each request.- Returns:
- The updated
SipRoutingClientBuilderobject.
-
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<SipRoutingClientBuilder>- Parameters:
retryOptions- TheRetryOptionsto use for all the requests made through the client.- Returns:
- The updated
SipRoutingClientBuilderobject.
-
buildClient
Create synchronous client applying CommunicationClientCredentialPolicy, UserAgentPolicy, RetryPolicy, and CookiePolicy. Additional HttpPolicies specified by additionalPolicies will be applied after them- Returns:
SipRoutingClientinstance.- Throws:
IllegalStateException- If bothretryOptions(RetryOptions)andretryPolicy(RetryPolicy)have been set.
-
buildAsyncClient
Create asynchronous client applying CommunicationClientCredentialPolicy, UserAgentPolicy, RetryPolicy, and CookiePolicy. Additional HttpPolicies specified by additionalPolicies will be applied after them- Returns:
SipRoutingAsyncClientinstance.- Throws:
IllegalStateException- If bothretryOptions(RetryOptions)andretryPolicy(RetryPolicy)have been set.
-