Class ContainerRegistryClientBuilder
- All Implemented Interfaces:
com.azure.core.client.traits.ConfigurationTrait<ContainerRegistryClientBuilder>,com.azure.core.client.traits.EndpointTrait<ContainerRegistryClientBuilder>,com.azure.core.client.traits.HttpTrait<ContainerRegistryClientBuilder>,com.azure.core.client.traits.TokenCredentialTrait<ContainerRegistryClientBuilder>
ContainerRegistryClients and ContainerRegistryAsyncClients, call buildClient and buildAsyncClient respectively to construct an instance of
the desired client.
The client needs the service endpoint of the Azure Container Registry, Audience for ACR that you want to target and Azure access credentials to use for authentication.
Instantiating an asynchronous Container Registry client
ContainerRegistryAsyncClient registryAsyncClient = new ContainerRegistryClientBuilder()
.endpoint(endpoint)
.credential(credential)
.buildAsyncClient();
Instantiating a synchronous Container Registry client
ContainerRegistryClient registryAsyncClient = new ContainerRegistryClientBuilder()
.endpoint(endpoint)
.credential(credential)
.buildClient();
Another way to construct the client is using a HttpPipeline. The pipeline gives the client an
authenticated way to communicate with the service but it doesn't contain the service endpoint. Set the pipeline with
this and set the service endpoint with this. Using a
pipeline requires additional setup but allows for finer control on how the ContainerRegistryClient and ContainerRegistryAsyncClient is built.
The service does not directly support AAD credentials and as a result the clients internally depend on a policy that converts the AAD credentials to the Azure Container Registry specific service credentials. In case you use your own pipeline, you would need to provide implementation for this policy as well. For more information please see Azure Container Registry Authentication .
Instantiating an asynchronous Container Registry client using a custom pipeline
HttpPipeline pipeline = new HttpPipelineBuilder()
.policies(/* add policies */)
.build();
ContainerRegistryAsyncClient registryAsyncClient = new ContainerRegistryClientBuilder()
.pipeline(pipeline)
.endpoint(endpoint)
.credential(credential)
.buildAsyncClient();
Instantiating a synchronous Container Registry client with custom pipeline
HttpPipeline pipeline = new HttpPipelineBuilder()
.policies(/* add policies */)
.build();
ContainerRegistryClient registryAsyncClient = new ContainerRegistryClientBuilder()
.pipeline(pipeline)
.endpoint(endpoint)
.credential(credential)
.buildClient();
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionaddPolicy(com.azure.core.http.policy.HttpPipelinePolicy policy) Adds apipeline policyto apply on each request sent.audience(ContainerRegistryAudience audience) Sets the audience for the Azure Container Registry service.Creates aContainerRegistryAsyncClientbased on options set in the Builder.Creates aContainerRegistryClientbased on options set in the Builder.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 store that is used during construction of the service client.credential(com.azure.core.credential.TokenCredential credential) Sets theTokenCredentialused to authorize requests sent to the service.Sets the service endpoint for the Azure Container Registry instance.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 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 theHttpPipelinePolicythat is used to retry requests.Sets theContainerRegistryServiceVersionthat is used when making API requests.
-
Constructor Details
-
ContainerRegistryClientBuilder
public ContainerRegistryClientBuilder()
-
-
Method Details
-
endpoint
Sets the service endpoint for the Azure Container Registry instance.- Specified by:
endpointin interfacecom.azure.core.client.traits.EndpointTrait<ContainerRegistryClientBuilder>- Parameters:
endpoint- The URL of the Container Registry instance.- Returns:
- The updated
ContainerRegistryClientBuilderobject. - Throws:
IllegalArgumentException- Ifendpointis null or it cannot be parsed into a valid URL.
-
audience
Sets the audience for the Azure Container Registry service.- Parameters:
audience- ARM management scope associated with the given registry.- Returns:
- The updated
ContainerRegistryClientBuilderobject.
-
credential
public ContainerRegistryClientBuilder credential(com.azure.core.credential.TokenCredential 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 interfacecom.azure.core.client.traits.TokenCredentialTrait<ContainerRegistryClientBuilder>- Parameters:
credential-TokenCredentialused to authorize requests sent to the service.- Returns:
- The updated
ContainerRegistryClientBuilderobject.
-
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
This service takes dependency on an internal policy which converts Azure token credentials into Azure Container Registry specific service credentials. In case you use your own pipeline you will have to create your own credential policy.pipelineis set, all settings other thanendpointare ignored to buildContainerRegistryAsyncClientorContainerRegistryClient.
{For more information please see Azure Container Registry Authentication }.- Specified by:
pipelinein interfacecom.azure.core.client.traits.HttpTrait<ContainerRegistryClientBuilder>- Parameters:
httpPipeline-HttpPipelineto use for sending service requests and receiving responses.- Returns:
- The updated
ContainerRegistryClientBuilderobject.
-
serviceVersion
Sets theContainerRegistryServiceVersionthat 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 and so newer version of the client library may result in moving to a newer service version.
- Parameters:
version-ContainerRegistryServiceVersionof the service to be used when making requests.- Returns:
- The updated
ContainerRegistryClientBuilderobject.
-
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<ContainerRegistryClientBuilder>- Parameters:
httpClient- TheHttpClientto use for requests.- Returns:
- The updated
ContainerRegistryClientBuilderobject.
-
clientOptions
public ContainerRegistryClientBuilder clientOptions(com.azure.core.util.ClientOptions 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<ContainerRegistryClientBuilder>- Parameters:
clientOptions- A configured instance ofHttpClientOptions.- Returns:
- the updated
ContainerRegistryClientBuilderobject - See Also:
-
HttpClientOptions
-
configuration
public ContainerRegistryClientBuilder configuration(com.azure.core.util.Configuration configuration) Sets the configuration store that is used during construction of the service client.The default configuration store is a clone of the
global configuration store, useConfiguration.NONEto bypass using configuration settings during construction.- Specified by:
configurationin interfacecom.azure.core.client.traits.ConfigurationTrait<ContainerRegistryClientBuilder>- Parameters:
configuration- The configuration store to be used.- Returns:
- The updated
ContainerRegistryClientBuilderobject.
-
httpLogOptions
public ContainerRegistryClientBuilder 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<ContainerRegistryClientBuilder>- Parameters:
httpLogOptions- Thelogging configurationto use when sending and receiving requests to and from the service.- Returns:
- The updated
ContainerRegistryClientBuilderobject.
-
retryPolicy
public ContainerRegistryClientBuilder retryPolicy(com.azure.core.http.policy.RetryPolicy retryPolicy) Sets theHttpPipelinePolicythat is used to retry requests.The default retry policy will be used if not provided
buildAsyncClient()to buildContainerRegistryClientorContainerRegistryAsyncClient.Setting this is mutually exclusive with using
retryOptions(RetryOptions).- Parameters:
retryPolicy- TheHttpPipelinePolicythat will be used to retry requests. For example,RetryPolicycan be used to retry requests.- Returns:
- The updated ContainerRegistryClientBuilder object.
-
retryOptions
public ContainerRegistryClientBuilder 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<ContainerRegistryClientBuilder>- Parameters:
retryOptions- TheRetryOptionsto use for all the requests made through the client.- Returns:
- The updated ContainerRegistryClientBuilder object.
-
addPolicy
public ContainerRegistryClientBuilder addPolicy(com.azure.core.http.policy.HttpPipelinePolicy policy) 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<ContainerRegistryClientBuilder>- Parameters:
policy- Apipeline policy.- Returns:
- The updated ContainerRegistryClientBuilder object.
- Throws:
NullPointerException- Ifpolicyis null.
-
buildAsyncClient
Creates aContainerRegistryAsyncClientbased on options set in the Builder. Every timebuildAsyncClient()is called a new instance ofContainerRegistryAsyncClientis created.If
pipeline(HttpPipeline)pipeline} is set, then thepipelineandendpointare used to create theclient. All other builder settings are ignored.- Returns:
- A
ContainerRegistryAsyncClientwith the options set from the builder. - Throws:
NullPointerException- Ifendpointis null. You can set the values by callingendpoint(String)andaudience(ContainerRegistryAudience)respectively.IllegalStateException- If bothretryOptions(RetryOptions)andretryPolicy(RetryPolicy)have been set.
-
buildClient
Creates aContainerRegistryClientbased on options set in the Builder. Every timebuildAsyncClient()is called a new instance ofContainerRegistryClientis created.If
pipeline(HttpPipeline)pipeline} is set, then thepipelineandendpointare used to create theclient. All other builder settings are ignored.- Returns:
- A
ContainerRegistryClientwith the options set from the builder. - Throws:
NullPointerException- Ifendpointhas not been set. You can set it by callingendpoint(String).NullPointerException- Ifaudiencehas not been set. You can set it by callingaudience(ContainerRegistryAudience).IllegalStateException- If bothretryOptions(RetryOptions)andretryPolicy(RetryPolicy)have been set.
-