Class CallingServerClientBuilder
- All Implemented Interfaces:
AzureKeyCredentialTrait<CallingServerClientBuilder>,ConfigurationTrait<CallingServerClientBuilder>,ConnectionStringTrait<CallingServerClientBuilder>,EndpointTrait<CallingServerClientBuilder>,HttpTrait<CallingServerClientBuilder>,TokenCredentialTrait<CallingServerClientBuilder>
Instantiating synchronous and asynchronous Calling Server Clients
HttpPipeline pipeline = new HttpPipelineBuilder()
.policies(/* add policies */)
.build();
CallingServerClient callingServerClient = new CallingServerClientBuilder()
.pipeline(pipeline)
.connectionString(connectionString)
.buildClient();
CallingServerAsyncClient callingServerAsyncClient = new CallingServerClientBuilder()
.pipeline(pipeline)
.connectionString(connectionString)
.buildAsyncClient();
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionaddPolicy(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(ClientOptions clientOptions) Allows the user to set a variety of client-related options, such as user-agent string, headers, etc.configuration(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(AzureKeyCredential keyCredential) Sets theAzureKeyCredentialused to authenticate HTTP requests.credential(TokenCredential tokenCredential) Sets theTokenCredentialused to authorize requests sent to the service.Set endpoint of the service.httpClient(HttpClient httpClient) Sets theHttpClientto use for sending and receiving requests to and from the service.httpLogOptions(HttpLogOptions logOptions) Sets thelogging configurationto use when sending and receiving requests to and from the service.pipeline(HttpPipeline pipeline) Sets theHttpPipelineto use for the service client.retryOptions(RetryOptions retryOptions) Sets theRetryOptionsfor all the requests made through the client.retryPolicy(RetryPolicy retryPolicy) Sets the retry policy to use (using the RetryPolicy type).Sets theCallingServerServiceVersionthat is used when making API requests.
-
Constructor Details
-
CallingServerClientBuilder
public CallingServerClientBuilder()
-
-
Method Details
-
endpoint
Set endpoint of the service.- Specified by:
endpointin interfaceEndpointTrait<CallingServerClientBuilder>- Parameters:
endpoint- url of the service.- Returns:
- CallingServerClientBuilder 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 interfaceHttpTrait<CallingServerClientBuilder>- 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:
- CallingServerClientBuilder object.
-
credential
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 interfaceTokenCredentialTrait<CallingServerClientBuilder>- Parameters:
tokenCredential-TokenCredentialused to authorize requests sent to the service.- Returns:
- Updated
CallingServerClientBuilderobject. - Throws:
NullPointerException- IftokenCredentialis null.
-
credential
Sets theAzureKeyCredentialused to authenticate HTTP requests.- Specified by:
credentialin interfaceAzureKeyCredentialTrait<CallingServerClientBuilder>- Parameters:
keyCredential- TheAzureKeyCredentialused to authenticate HTTP requests.- Returns:
- Updated
CallingServerClientBuilderobject. - Throws:
NullPointerException- IfkeyCredentialis null.
-
connectionString
Set connectionString to use.- Specified by:
connectionStringin interfaceConnectionStringTrait<CallingServerClientBuilder>- Parameters:
connectionString- connection string to set.- Returns:
- Updated
CallingServerClientBuilderobject.
-
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
CallingServerClientBuilderobject.
-
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 interfaceHttpTrait<CallingServerClientBuilder>- Parameters:
retryOptions- TheRetryOptionsto use for all the requests made through the client.- Returns:
- Updated
CallingServerClientBuilderobject.
-
configuration
Sets the configuration object used to retrieve environment configuration values during building of the client.- Specified by:
configurationin interfaceConfigurationTrait<CallingServerClientBuilder>- Parameters:
configuration- Configuration store used to retrieve environment configurations.- Returns:
- Updated
CallingServerClientBuilderobject.
-
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 interfaceHttpTrait<CallingServerClientBuilder>- Parameters:
logOptions- Thelogging configurationto use when sending and receiving requests to and from the service.- Returns:
- The updated
CallingServerClientBuilderobject.
-
serviceVersion
Sets theCallingServerServiceVersionthat 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-CallingServerServiceVersionof the service to be used when making requests.- Returns:
- Updated CallingServerClientBuilder 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 interfaceHttpTrait<CallingServerClientBuilder>- Parameters:
httpClient- TheHttpClientto use for requests.- Returns:
- Updated
CallingServerClientBuilderobject.
-
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 interfaceHttpTrait<CallingServerClientBuilder>- Parameters:
customPolicy- Apipeline policy.- Returns:
- Updated
CallingServerClientBuilderobject. - 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
CallingServerClientBuilderobject. - 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
CallingServerClientBuilderobject. - 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 interfaceHttpTrait<CallingServerClientBuilder>- Parameters:
clientOptions- object to be applied.- Returns:
- Updated
CallingServerClientBuilderobject. - See Also:
-