Class PhoneNumbersClientBuilder
- All Implemented Interfaces:
com.azure.core.client.traits.AzureKeyCredentialTrait<PhoneNumbersClientBuilder>,com.azure.core.client.traits.ConfigurationTrait<PhoneNumbersClientBuilder>,com.azure.core.client.traits.ConnectionStringTrait<PhoneNumbersClientBuilder>,com.azure.core.client.traits.EndpointTrait<PhoneNumbersClientBuilder>,com.azure.core.client.traits.HttpTrait<PhoneNumbersClientBuilder>,com.azure.core.client.traits.TokenCredentialTrait<PhoneNumbersClientBuilder>
Instantiating a Phone Numbers Client Builder
PhoneNumbersClientBuilder builder = new PhoneNumbersClientBuilder();
Using a Phone Numbers Client Builder to build a Phone Numbers Client
PhoneNumbersClient phoneNumberClient = new PhoneNumbersClientBuilder()
.endpoint(endpoint)
.credential(keyCredential)
.httpClient(httpClient)
.buildClient();
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionacceptLanguage(String acceptLanguage) Sets the accepted language to be used in the client.addPolicy(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 authorizationcredential(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 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 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 theRetryPolicythat is used when each request is sent.serviceVersion(PhoneNumbersServiceVersion version) Sets thePhoneNumbersServiceVersionthat is used when making API requests.
-
Constructor Details
-
PhoneNumbersClientBuilder
public PhoneNumbersClientBuilder()
-
-
Method Details
-
endpoint
Set endpoint of the service- Specified by:
endpointin interfacecom.azure.core.client.traits.EndpointTrait<PhoneNumbersClientBuilder>- Parameters:
endpoint- url of the service- Returns:
- The updated
PhoneNumbersClientBuilderobject. - Throws:
NullPointerException- Ifendpointisnull.
-
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<PhoneNumbersClientBuilder>- Parameters:
pipeline-HttpPipelineto use for sending service requests and receiving responses.- Returns:
- The updated
PhoneNumbersClientBuilderobject.
-
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<PhoneNumbersClientBuilder>- Parameters:
httpClient- TheHttpClientto use for requests.- Returns:
- The updated
PhoneNumbersClientBuilderobject.
-
httpLogOptions
public PhoneNumbersClientBuilder 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<PhoneNumbersClientBuilder>- Parameters:
httpLogOptions- Thelogging configurationto use when sending and receiving requests to and from the service.- Returns:
- the updated
PhoneNumbersClientBuilderobject.
-
credential
public PhoneNumbersClientBuilder credential(com.azure.core.credential.AzureKeyCredential keyCredential) Sets theAzureKeyCredentialused to authenticate HTTP requests.- Specified by:
credentialin interfacecom.azure.core.client.traits.AzureKeyCredentialTrait<PhoneNumbersClientBuilder>- Parameters:
keyCredential- TheAzureKeyCredentialused to authenticate HTTP requests.- Returns:
- The updated
PhoneNumbersClientBuilderobject. - Throws:
NullPointerException- IfkeyCredentialis null.
-
credential
public PhoneNumbersClientBuilder 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<PhoneNumbersClientBuilder>- Parameters:
tokenCredential-TokenCredentialused to authorize requests sent to the service.- Returns:
- The updated
PhoneNumbersClientBuilderobject. - Throws:
NullPointerException- IftokenCredentialis null.
-
connectionString
Set the endpoint and AzureKeyCredential for authorization- Specified by:
connectionStringin interfacecom.azure.core.client.traits.ConnectionStringTrait<PhoneNumbersClientBuilder>- Parameters:
connectionString- connection string for setting endpoint and initalizing AzureKeyCredential- Returns:
- The updated
PhoneNumbersClientBuilderobject. - 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<PhoneNumbersClientBuilder>- Parameters:
configuration- Configuration store used to retrieve environment configurations.- Returns:
- The updated
PhoneNumbersClientBuilderobject.
-
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<PhoneNumbersClientBuilder>- Parameters:
policy- Apipeline policy.- Returns:
- The updated
PhoneNumbersClientBuilderobject. - 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<PhoneNumbersClientBuilder>- Parameters:
clientOptions- A configured instance ofHttpClientOptions.- Returns:
- The updated
PhoneNumbersClientBuilderobject. - Throws:
NullPointerException- IfclientOptionsisnull.- See Also:
-
HttpClientOptions
-
serviceVersion
Sets thePhoneNumbersServiceVersionthat 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 the client library will have the result of potentially moving to a newer service version.
- Parameters:
version-PhoneNumbersServiceVersionof the service to be used when making requests.- Returns:
- The updated
PhoneNumbersClientBuilderobject.
-
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
PhoneNumbersClientBuilderobject.
-
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<PhoneNumbersClientBuilder>- Parameters:
retryOptions- TheRetryOptionsto use for all the requests made through the client.- Returns:
- The updated
PhoneNumbersClientBuilderobject.
-
acceptLanguage
Sets the accepted language to be used in the client.- Parameters:
acceptLanguage- The locale to be used in the client. E.g. "en-US"- Returns:
- The updated
PhoneNumbersClientBuilderobject.
-
buildClient
Create synchronous client applying CommunicationClientCredentialPolicy, UserAgentPolicy, RetryPolicy, and CookiePolicy. Additional HttpPolicies specified by additionalPolicies will be applied after them- Returns:
PhoneNumbersClientinstance- 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:
PhoneNumbersAsyncClientinstance- Throws:
IllegalStateException- If bothretryOptions(RetryOptions)andretryPolicy(RetryPolicy)have been set.
-