Class ContainerRegistryContentClientBuilder
- All Implemented Interfaces:
com.azure.core.client.traits.ConfigurationTrait<ContainerRegistryContentClientBuilder>,com.azure.core.client.traits.EndpointTrait<ContainerRegistryContentClientBuilder>,com.azure.core.client.traits.HttpTrait<ContainerRegistryContentClientBuilder>,com.azure.core.client.traits.TokenCredentialTrait<ContainerRegistryContentClientBuilder>
ContainerRegistryContentClients and ContainerRegistryContentAsyncClients, call buildClient and buildAsyncClient respectively to construct an instance of
the desired client.
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 ContainerRegistryContentClient and ContainerRegistryContentAsyncClient 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 .
-
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 aContainerRegistryContentAsyncClientbased on options set in the Builder.Creates aContainerRegistryContentClientbased 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.repositoryName(String repositoryName) Sets the repository name for the Azure Container Registry Blob instance.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
-
ContainerRegistryContentClientBuilder
public ContainerRegistryContentClientBuilder()
-
-
Method Details
-
endpoint
Sets the service endpoint for the Azure Container Registry instance.- Specified by:
endpointin interfacecom.azure.core.client.traits.EndpointTrait<ContainerRegistryContentClientBuilder>- Parameters:
endpoint- The URL of the Container Registry instance.- Returns:
- The updated
ContainerRegistryContentClientBuilderobject. - Throws:
IllegalArgumentException- Ifendpointis null or it cannot be parsed into a valid URL.
-
repositoryName
Sets the repository name for the Azure Container Registry Blob instance.- Parameters:
repositoryName- The URL of the Container Registry instance.- Returns:
- The updated
ContainerRegistryContentClientBuilderobject.
-
audience
Sets the audience for the Azure Container Registry service.- Parameters:
audience- ARM management scope associated with the given registry.- Returns:
- The updated
ContainerRegistryContentClientBuilderobject.
-
credential
public ContainerRegistryContentClientBuilder 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<ContainerRegistryContentClientBuilder>- Parameters:
credential-TokenCredentialused to authorize requests sent to the service.- Returns:
- The updated
ContainerRegistryContentClientBuilderobject.
-
pipeline
public ContainerRegistryContentClientBuilder pipeline(com.azure.core.http.HttpPipeline httpPipeline) 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 buildContainerRegistryContentClientorContainerRegistryContentAsyncClient.
{For more information please see Azure Container Registry Authentication }.- Specified by:
pipelinein interfacecom.azure.core.client.traits.HttpTrait<ContainerRegistryContentClientBuilder>- Parameters:
httpPipeline-HttpPipelineto use for sending service requests and receiving responses.- Returns:
- The updated
ContainerRegistryContentClientBuilderobject.
-
serviceVersion
public ContainerRegistryContentClientBuilder serviceVersion(ContainerRegistryServiceVersion version) 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
ContainerRegistryContentClientBuilderobject.
-
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<ContainerRegistryContentClientBuilder>- Parameters:
httpClient- TheHttpClientto use for requests.- Returns:
- The updated
ContainerRegistryContentClientBuilderobject.
-
clientOptions
public ContainerRegistryContentClientBuilder 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<ContainerRegistryContentClientBuilder>- Parameters:
clientOptions- A configured instance ofHttpClientOptions.- Returns:
- the updated
ContainerRegistryContentClientBuilderobject - See Also:
-
HttpClientOptions
-
configuration
public ContainerRegistryContentClientBuilder 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<ContainerRegistryContentClientBuilder>- Parameters:
configuration- The configuration store to be used.- Returns:
- The updated
ContainerRegistryContentClientBuilderobject.
-
httpLogOptions
public ContainerRegistryContentClientBuilder 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<ContainerRegistryContentClientBuilder>- Parameters:
httpLogOptions- Thelogging configurationto use when sending and receiving requests to and from the service.- Returns:
- The updated
ContainerRegistryContentClientBuilderobject.
-
retryPolicy
public ContainerRegistryContentClientBuilder 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 buildContainerRegistryContentAsyncClient.- Parameters:
retryPolicy- TheHttpPipelinePolicythat will be used to retry requests. For example,RetryPolicycan be used to retry requests.- Returns:
- The updated ContainerRegistryContentClientBuilder object.
-
retryOptions
public ContainerRegistryContentClientBuilder 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<ContainerRegistryContentClientBuilder>- Parameters:
retryOptions- TheRetryOptionsto use for all the requests made through the client.- Returns:
- The updated ContainerRegistryContentClientBuilder object.
-
addPolicy
public ContainerRegistryContentClientBuilder 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<ContainerRegistryContentClientBuilder>- Parameters:
policy- Apipeline policy.- Returns:
- The updated ContainerRegistryContentClientBuilder object.
- Throws:
NullPointerException- Ifpolicyis null.
-
buildAsyncClient
Creates aContainerRegistryContentAsyncClientbased on options set in the Builder. Every timebuildAsyncClient()is called a new instance ofContainerRegistryContentAsyncClientis created.If
pipeline(HttpPipeline)pipeline} is set, then thepipelineandendpointare used to create theclient. All other builder settings are ignored.- Returns:
- A
ContainerRegistryContentAsyncClientwith the options set from the builder. - Throws:
NullPointerException- Ifendpointis null. You can set the values by callingendpoint(String)andaudience(ContainerRegistryAudience)respectively.
-
buildClient
Creates aContainerRegistryContentClientbased on options set in the Builder. Every timebuildAsyncClient()is called a new instance ofContainerRegistryContentClientis created.If
pipeline(HttpPipeline)pipeline} is set, then thepipelineandendpointare used to create theclient. All other builder settings are ignored.- Returns:
- A
ContainerRegistryContentClientwith the options set from the builder. - Throws:
NullPointerException- Ifendpointoraudienceis null. You can set the values by callingendpoint(String)andaudience(ContainerRegistryAudience)respectively.
-