Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See License.txt in the project root for license information.
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. */
package com.microsoft.azure.management.dns.implementation; import com.microsoft.azure.AzureEnvironment; import com.microsoft.azure.AzureResponseBuilder; import com.microsoft.azure.credentials.AzureTokenCredentials; import com.microsoft.azure.management.dns.DnsZones; import com.microsoft.azure.management.resources.fluentcore.arm.AzureConfigurable; import com.microsoft.azure.management.resources.fluentcore.arm.implementation.AzureConfigurableImpl; import com.microsoft.azure.management.resources.fluentcore.arm.implementation.Manager; import com.microsoft.azure.management.resources.fluentcore.utils.ProviderRegistrationInterceptor; import com.microsoft.azure.management.resources.fluentcore.utils.ResourceManagerThrottlingInterceptor; import com.microsoft.azure.serializer.AzureJacksonAdapter; import com.microsoft.rest.RestClient;
Entry point to Azure DNS zone management.
/** * Entry point to Azure DNS zone management. */
public final class DnsZoneManager extends Manager<DnsZoneManager, DnsManagementClientImpl> { // Collections private DnsZones zones;
Get a Configurable instance that can be used to create DnsZoneManager with optional configuration.
Returns:the instance allowing configurations
/** * Get a Configurable instance that can be used to create {@link DnsZoneManager} * with optional configuration. * * @return the instance allowing configurations */
public static Configurable configure() { return new DnsZoneManager.ConfigurableImpl(); }
Creates an instance of DnsZoneManager that exposes DNS zone management API entry points.
Params:
  • credentials – the credentials to use
  • subscriptionId – the subscription UUID
Returns:the DnsZoneManager
/** * Creates an instance of DnsZoneManager that exposes DNS zone management API entry points. * * @param credentials the credentials to use * @param subscriptionId the subscription UUID * @return the DnsZoneManager */
public static DnsZoneManager authenticate(AzureTokenCredentials credentials, String subscriptionId) { return new DnsZoneManager(new RestClient.Builder() .withBaseUrl(credentials.environment(), AzureEnvironment.Endpoint.RESOURCE_MANAGER) .withCredentials(credentials) .withSerializerAdapter(new AzureJacksonAdapter()) .withResponseBuilderFactory(new AzureResponseBuilder.Factory()) .withInterceptor(new ProviderRegistrationInterceptor(credentials)) .withInterceptor(new ResourceManagerThrottlingInterceptor()) .build(), subscriptionId); }
Creates an instance of DnsZoneManager that exposes DNS zone management API entry points.
Params:
  • restClient – the RestClient to be used for API calls.
  • subscriptionId – the subscription UUID
Returns:the DnsZoneManager
/** * Creates an instance of DnsZoneManager that exposes DNS zone management API entry points. * * @param restClient the RestClient to be used for API calls. * @param subscriptionId the subscription UUID * @return the DnsZoneManager */
public static DnsZoneManager authenticate(RestClient restClient, String subscriptionId) { return new DnsZoneManager(restClient, subscriptionId); }
The interface allowing configurations to be set.
/** * The interface allowing configurations to be set. */
public interface Configurable extends AzureConfigurable<Configurable> {
Creates an instance of DnsZoneManager that exposes DNS zone API entry points.
Params:
  • credentials – the credentials to use
  • subscriptionId – the subscription UUID
Returns:the interface exposing DNS zone management API entry points that work across subscriptions
/** * Creates an instance of DnsZoneManager that exposes DNS zone API entry points. * * @param credentials the credentials to use * @param subscriptionId the subscription UUID * @return the interface exposing DNS zone management API entry points that work across subscriptions */
DnsZoneManager authenticate(AzureTokenCredentials credentials, String subscriptionId); }
The implementation for Configurable interface.
/** * The implementation for Configurable interface. */
private static class ConfigurableImpl extends AzureConfigurableImpl<Configurable> implements Configurable { public DnsZoneManager authenticate(AzureTokenCredentials credentials, String subscriptionId) { return DnsZoneManager.authenticate(buildRestClient(credentials), subscriptionId); } } private DnsZoneManager(RestClient restClient, String subscriptionId) { super(restClient, subscriptionId, new DnsManagementClientImpl(restClient).withSubscriptionId(subscriptionId)); }
Returns:entry point to DNS zone manager zone management
/** * @return entry point to DNS zone manager zone management */
public DnsZones zones() { if (this.zones == null) { this.zones = new DnsZonesImpl(this); } return this.zones; } }