Java Code Examples for com.microsoft.azure.management.apigeneration.Beta.SinceVersion#V1_4_0

The following examples show how to use com.microsoft.azure.management.apigeneration.Beta.SinceVersion#V1_4_0 . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: Registry.java    From azure-libraries-for-java with MIT License 4 votes vote down vote up
/**
 * @return the login credentials for the specified container registry
 */
@Beta(SinceVersion.V1_4_0)
@Method
RegistryCredentials getCredentials();
 
Example 2
Source File: Azure.java    From azure-libraries-for-java with MIT License 4 votes vote down vote up
/**
 * @return entry point to managing Kubernetes clusters.
 */
@Beta(SinceVersion.V1_4_0)
public KubernetesClusters kubernetesClusters() {
    return containerServiceManager.kubernetesClusters();
}
 
Example 3
Source File: ApplicationGatewayRequestRoutingRule.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Associates the specified redirect configuration with this request routing rule.
 * @param name the name of a redirect configuration on this application gateway
 * @return the next stage of the definition
 */
@Beta(SinceVersion.V1_4_0)
WithAttach<ParentT> withRedirectConfiguration(String name);
 
Example 4
Source File: ApplicationGatewayProbe.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Specifies the ranges of the backend's HTTP response status codes that are to be considered healthy.
 * @param ranges number ranges expressed in the format "###-###", for example "200-399", which is the default
 * @return the next stage of the definition
 */
@Beta(SinceVersion.V1_4_0)
WithAttach<ReturnT> withHealthyHttpResponseStatusCodeRanges(Set<String> ranges);
 
Example 5
Source File: Registries.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Gets the login credentials for the specified container registry.
 *
 * @param resourceGroupName the resource group name
 * @param registryName the registry name
 * @return a representation of the future computation of this call, returning the container registry's login credentials
 */
@Beta(SinceVersion.V1_4_0)
Observable<RegistryCredentials> getCredentialsAsync(String resourceGroupName, String registryName);
 
Example 6
Source File: ApplicationGatewayBackendHttpConfiguration.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * @return the path, if any, used as a prefix for all HTTP requests
 */
@Beta(SinceVersion.V1_4_0)
String path();
 
Example 7
Source File: Registry.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Updates the current container registry to a 'managed' registry with a 'Premium' SKU type.
 * @return the next stage of the definition
 */
@Beta(SinceVersion.V1_4_0)
Update withPremiumSku();
 
Example 8
Source File: ApplicationGatewayBackendHttpConfiguration.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Associates a new, automatically named certificate with this HTTP backend configuration based on the specified data.
 * <p>
 * Multiple calls to this method will add additional certificate references.
 * @param derData the DER-encoded data of an X.509 certificate
 * @return the next stage of the update
 */
@Beta(SinceVersion.V1_4_0)
Update withAuthenticationCertificateFromBytes(byte[] derData);
 
Example 9
Source File: ApplicationGateway.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Begins the definition of a new application gateway authentication certificate to be attached to the gateway for use by the backends.
 * @param name a unique name for the certificate
 * @return the first stage of the certificate definition
 */
@Beta(SinceVersion.V1_4_0)
ApplicationGatewayAuthenticationCertificate.UpdateDefinitionStages.Blank<Update> defineAuthenticationCertificate(String name);
 
Example 10
Source File: Registries.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Deletes a webhook from the container registry.
 *
 * @param resourceGroupName the resource group name
 * @param registryName the registry name
 * @param webhookName the name of the webhook
 * @return a representation of the future computation of this call
 */
@Beta(SinceVersion.V1_4_0)
Completable deleteAsync(String resourceGroupName, String registryName, String webhookName);
 
Example 11
Source File: ApplicationGatewayRequestRoutingRule.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Adds the specified IP addresses to the backend associated with this rule.
 * @param ipAddresses IP addresses to add
 * @return the next stage of the definition
 */
@Beta(SinceVersion.V1_4_0)
WithBackendAddressOrAttach<ParentT> toBackendIPAddresses(String...ipAddresses);
 
Example 12
Source File: NicIPConfiguration.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Specifies the application gateway backend to associate this IP configuration with.
 * @param appGateway an existing application gateway
 * @param backendName the name of an existing backend on the application gateway
 * @return the next stage of the update
 */
@Beta(SinceVersion.V1_4_0)
Update withExistingApplicationGatewayBackend(ApplicationGateway appGateway, String backendName);
 
Example 13
Source File: ApplicationGatewayBackendHttpConfiguration.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Associates a new, automatically named certificate with this HTTP backend configuration loaded from the specified file.
 * <p>
 * Multiple calls to this method will add additional certificate references.
 * @param certificateFile a file containing the DER format representation of an X.509 certificate
 * @return the next stage of the definition
 * @throws IOException when there are issues reading from the specified file
 */
@Beta(SinceVersion.V1_4_0)
WithAttachAndAuthCert<ReturnT> withAuthenticationCertificateFromFile(File certificateFile) throws IOException;
 
Example 14
Source File: ApplicationGatewayBackendHttpConfiguration.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Specifies the name for the affinity cookie.
 * @param name a name
 * @return the next stage of the definition
 */
@Beta(SinceVersion.V1_4_0)
WithAttach<ReturnT> withAffinityCookieName(String name);
 
Example 15
Source File: ApplicationGatewayBackendHttpConfiguration.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * @return authentication certificates associated with this backend HTTPS configuration
 */
@Beta(SinceVersion.V1_4_0)
Map<String, ApplicationGatewayAuthenticationCertificate> authenticationCertificates();
 
Example 16
Source File: ApplicationGatewayBackendHttpConfiguration.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Associates a new, automatically named certificate with this HTTP backend configuration based on the specified data.
 * <p>
 * Multiple calls to this method will add additional certificate references.
 * @param derData the DER-encoded data of an X.509 certificate
 * @return the next stage of the definition
 */
@Beta(SinceVersion.V1_4_0)
WithAttachAndAuthCert<ReturnT> withAuthenticationCertificateFromBytes(byte[] derData);
 
Example 17
Source File: ApplicationGatewayProbe.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Specifies the content, if any, to look for in the body of an HTTP response to a probe to determine the health status of the backend.
 * @param text contents to look for
 * @return the next stage of the definition
 */
@Beta(SinceVersion.V1_4_0)
WithAttach<ReturnT> withHealthyHttpResponseBodyContents(String text);
 
Example 18
Source File: NicIPConfiguration.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Specifies the application gateway backend to associate this IP configuration with.
 * @param appGateway an existing application gateway
 * @param backendName the name of an existing backend on the application gateway
 * @return the next stage of the definition
 */
@Beta(SinceVersion.V1_4_0)
WithAttach<ParentT> withExistingApplicationGatewayBackend(ApplicationGateway appGateway, String backendName);
 
Example 19
Source File: NicIPConfiguration.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Removes all existing associations with application gateway backends.
 * @return the next stage of the update
 */
@Beta(SinceVersion.V1_4_0)
Update withoutApplicationGatewayBackends();
 
Example 20
Source File: Registry.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * @return the ID of the storage account for the container registry; 'null' if container register SKU a managed tier
 */
@Beta(SinceVersion.V1_4_0)
String storageAccountId();