net.bytebuddy
byte-buddy
diff --git a/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/ContainerAppsApiManager.java b/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/ContainerAppsApiManager.java
index a9b1dd45c81e..3cb62daea48e 100644
--- a/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/ContainerAppsApiManager.java
+++ b/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/ContainerAppsApiManager.java
@@ -80,7 +80,9 @@
import java.util.Objects;
import java.util.stream.Collectors;
-/** Entry point to ContainerAppsApiManager. */
+/**
+ * Entry point to ContainerAppsApiManager.
+ */
public final class ContainerAppsApiManager {
private ContainerAppsAuthConfigs containerAppsAuthConfigs;
@@ -135,18 +137,14 @@ public final class ContainerAppsApiManager {
private ContainerAppsApiManager(HttpPipeline httpPipeline, AzureProfile profile, Duration defaultPollInterval) {
Objects.requireNonNull(httpPipeline, "'httpPipeline' cannot be null.");
Objects.requireNonNull(profile, "'profile' cannot be null.");
- this.clientObject =
- new ContainerAppsApiClientBuilder()
- .pipeline(httpPipeline)
- .endpoint(profile.getEnvironment().getResourceManagerEndpoint())
- .subscriptionId(profile.getSubscriptionId())
- .defaultPollInterval(defaultPollInterval)
- .buildClient();
+ this.clientObject = new ContainerAppsApiClientBuilder().pipeline(httpPipeline)
+ .endpoint(profile.getEnvironment().getResourceManagerEndpoint()).subscriptionId(profile.getSubscriptionId())
+ .defaultPollInterval(defaultPollInterval).buildClient();
}
/**
* Creates an instance of ContainerAppsApi service API entry point.
- *
+ *
* @param credential the credential to use.
* @param profile the Azure profile for client.
* @return the ContainerAppsApi service API instance.
@@ -159,7 +157,7 @@ public static ContainerAppsApiManager authenticate(TokenCredential credential, A
/**
* Creates an instance of ContainerAppsApi service API entry point.
- *
+ *
* @param httpPipeline the {@link HttpPipeline} configured with Azure authentication credential.
* @param profile the Azure profile for client.
* @return the ContainerAppsApi service API instance.
@@ -172,14 +170,16 @@ public static ContainerAppsApiManager authenticate(HttpPipeline httpPipeline, Az
/**
* Gets a Configurable instance that can be used to create ContainerAppsApiManager with optional configuration.
- *
+ *
* @return the Configurable instance allowing configurations.
*/
public static Configurable configure() {
return new ContainerAppsApiManager.Configurable();
}
- /** The Configurable allowing configurations to be set. */
+ /**
+ * The Configurable allowing configurations to be set.
+ */
public static final class Configurable {
private static final ClientLogger LOGGER = new ClientLogger(Configurable.class);
@@ -251,8 +251,8 @@ public Configurable withRetryPolicy(RetryPolicy retryPolicy) {
/**
* Sets the retry options for the HTTP pipeline retry policy.
- *
- * This setting has no effect, if retry policy is set via {@link #withRetryPolicy(RetryPolicy)}.
+ *
+ * This setting has no effect, if retry policy is set via {@link #withRetryPolicy(RetryPolicy)}.
*
* @param retryOptions the retry options for the HTTP pipeline retry policy.
* @return the configurable object itself.
@@ -269,8 +269,8 @@ public Configurable withRetryOptions(RetryOptions retryOptions) {
* @return the configurable object itself.
*/
public Configurable withDefaultPollInterval(Duration defaultPollInterval) {
- this.defaultPollInterval =
- Objects.requireNonNull(defaultPollInterval, "'defaultPollInterval' cannot be null.");
+ this.defaultPollInterval
+ = Objects.requireNonNull(defaultPollInterval, "'defaultPollInterval' cannot be null.");
if (this.defaultPollInterval.isNegative()) {
throw LOGGER
.logExceptionAsError(new IllegalArgumentException("'defaultPollInterval' cannot be negative"));
@@ -290,21 +290,12 @@ public ContainerAppsApiManager authenticate(TokenCredential credential, AzurePro
Objects.requireNonNull(profile, "'profile' cannot be null.");
StringBuilder userAgentBuilder = new StringBuilder();
- userAgentBuilder
- .append("azsdk-java")
- .append("-")
- .append("com.azure.resourcemanager.appcontainers")
- .append("/")
- .append("1.0.0-beta.6");
+ userAgentBuilder.append("azsdk-java").append("-").append("com.azure.resourcemanager.appcontainers")
+ .append("/").append("1.0.0-beta.1");
if (!Configuration.getGlobalConfiguration().get("AZURE_TELEMETRY_DISABLED", false)) {
- userAgentBuilder
- .append(" (")
- .append(Configuration.getGlobalConfiguration().get("java.version"))
- .append("; ")
- .append(Configuration.getGlobalConfiguration().get("os.name"))
- .append("; ")
- .append(Configuration.getGlobalConfiguration().get("os.version"))
- .append("; auto-generated)");
+ userAgentBuilder.append(" (").append(Configuration.getGlobalConfiguration().get("java.version"))
+ .append("; ").append(Configuration.getGlobalConfiguration().get("os.name")).append("; ")
+ .append(Configuration.getGlobalConfiguration().get("os.version")).append("; auto-generated)");
} else {
userAgentBuilder.append(" (auto-generated)");
}
@@ -323,64 +314,51 @@ public ContainerAppsApiManager authenticate(TokenCredential credential, AzurePro
policies.add(new UserAgentPolicy(userAgentBuilder.toString()));
policies.add(new AddHeadersFromContextPolicy());
policies.add(new RequestIdPolicy());
- policies
- .addAll(
- this
- .policies
- .stream()
- .filter(p -> p.getPipelinePosition() == HttpPipelinePosition.PER_CALL)
- .collect(Collectors.toList()));
+ policies.addAll(this.policies.stream().filter(p -> p.getPipelinePosition() == HttpPipelinePosition.PER_CALL)
+ .collect(Collectors.toList()));
HttpPolicyProviders.addBeforeRetryPolicies(policies);
policies.add(retryPolicy);
policies.add(new AddDatePolicy());
policies.add(new ArmChallengeAuthenticationPolicy(credential, scopes.toArray(new String[0])));
- policies
- .addAll(
- this
- .policies
- .stream()
- .filter(p -> p.getPipelinePosition() == HttpPipelinePosition.PER_RETRY)
- .collect(Collectors.toList()));
+ policies.addAll(this.policies.stream()
+ .filter(p -> p.getPipelinePosition() == HttpPipelinePosition.PER_RETRY).collect(Collectors.toList()));
HttpPolicyProviders.addAfterRetryPolicies(policies);
policies.add(new HttpLoggingPolicy(httpLogOptions));
- HttpPipeline httpPipeline =
- new HttpPipelineBuilder()
- .httpClient(httpClient)
- .policies(policies.toArray(new HttpPipelinePolicy[0]))
- .build();
+ HttpPipeline httpPipeline = new HttpPipelineBuilder().httpClient(httpClient)
+ .policies(policies.toArray(new HttpPipelinePolicy[0])).build();
return new ContainerAppsApiManager(httpPipeline, profile, defaultPollInterval);
}
}
/**
* Gets the resource collection API of ContainerAppsAuthConfigs. It manages AuthConfig.
- *
+ *
* @return Resource collection API of ContainerAppsAuthConfigs.
*/
public ContainerAppsAuthConfigs containerAppsAuthConfigs() {
if (this.containerAppsAuthConfigs == null) {
- this.containerAppsAuthConfigs =
- new ContainerAppsAuthConfigsImpl(clientObject.getContainerAppsAuthConfigs(), this);
+ this.containerAppsAuthConfigs
+ = new ContainerAppsAuthConfigsImpl(clientObject.getContainerAppsAuthConfigs(), this);
}
return containerAppsAuthConfigs;
}
/**
* Gets the resource collection API of AvailableWorkloadProfiles.
- *
+ *
* @return Resource collection API of AvailableWorkloadProfiles.
*/
public AvailableWorkloadProfiles availableWorkloadProfiles() {
if (this.availableWorkloadProfiles == null) {
- this.availableWorkloadProfiles =
- new AvailableWorkloadProfilesImpl(clientObject.getAvailableWorkloadProfiles(), this);
+ this.availableWorkloadProfiles
+ = new AvailableWorkloadProfilesImpl(clientObject.getAvailableWorkloadProfiles(), this);
}
return availableWorkloadProfiles;
}
/**
* Gets the resource collection API of BillingMeters.
- *
+ *
* @return Resource collection API of BillingMeters.
*/
public BillingMeters billingMeters() {
@@ -392,7 +370,7 @@ public BillingMeters billingMeters() {
/**
* Gets the resource collection API of ConnectedEnvironments. It manages ConnectedEnvironment.
- *
+ *
* @return Resource collection API of ConnectedEnvironments.
*/
public ConnectedEnvironments connectedEnvironments() {
@@ -404,47 +382,46 @@ public ConnectedEnvironments connectedEnvironments() {
/**
* Gets the resource collection API of ConnectedEnvironmentsCertificates. It manages Certificate.
- *
+ *
* @return Resource collection API of ConnectedEnvironmentsCertificates.
*/
public ConnectedEnvironmentsCertificates connectedEnvironmentsCertificates() {
if (this.connectedEnvironmentsCertificates == null) {
- this.connectedEnvironmentsCertificates =
- new ConnectedEnvironmentsCertificatesImpl(clientObject.getConnectedEnvironmentsCertificates(), this);
+ this.connectedEnvironmentsCertificates
+ = new ConnectedEnvironmentsCertificatesImpl(clientObject.getConnectedEnvironmentsCertificates(), this);
}
return connectedEnvironmentsCertificates;
}
/**
* Gets the resource collection API of ConnectedEnvironmentsDaprComponents. It manages DaprComponent.
- *
+ *
* @return Resource collection API of ConnectedEnvironmentsDaprComponents.
*/
public ConnectedEnvironmentsDaprComponents connectedEnvironmentsDaprComponents() {
if (this.connectedEnvironmentsDaprComponents == null) {
- this.connectedEnvironmentsDaprComponents =
- new ConnectedEnvironmentsDaprComponentsImpl(
- clientObject.getConnectedEnvironmentsDaprComponents(), this);
+ this.connectedEnvironmentsDaprComponents = new ConnectedEnvironmentsDaprComponentsImpl(
+ clientObject.getConnectedEnvironmentsDaprComponents(), this);
}
return connectedEnvironmentsDaprComponents;
}
/**
* Gets the resource collection API of ConnectedEnvironmentsStorages. It manages ConnectedEnvironmentStorage.
- *
+ *
* @return Resource collection API of ConnectedEnvironmentsStorages.
*/
public ConnectedEnvironmentsStorages connectedEnvironmentsStorages() {
if (this.connectedEnvironmentsStorages == null) {
- this.connectedEnvironmentsStorages =
- new ConnectedEnvironmentsStoragesImpl(clientObject.getConnectedEnvironmentsStorages(), this);
+ this.connectedEnvironmentsStorages
+ = new ConnectedEnvironmentsStoragesImpl(clientObject.getConnectedEnvironmentsStorages(), this);
}
return connectedEnvironmentsStorages;
}
/**
* Gets the resource collection API of ContainerApps. It manages ContainerApp.
- *
+ *
* @return Resource collection API of ContainerApps.
*/
public ContainerApps containerApps() {
@@ -456,72 +433,72 @@ public ContainerApps containerApps() {
/**
* Gets the resource collection API of ContainerAppsRevisions.
- *
+ *
* @return Resource collection API of ContainerAppsRevisions.
*/
public ContainerAppsRevisions containerAppsRevisions() {
if (this.containerAppsRevisions == null) {
- this.containerAppsRevisions =
- new ContainerAppsRevisionsImpl(clientObject.getContainerAppsRevisions(), this);
+ this.containerAppsRevisions
+ = new ContainerAppsRevisionsImpl(clientObject.getContainerAppsRevisions(), this);
}
return containerAppsRevisions;
}
/**
* Gets the resource collection API of ContainerAppsRevisionReplicas.
- *
+ *
* @return Resource collection API of ContainerAppsRevisionReplicas.
*/
public ContainerAppsRevisionReplicas containerAppsRevisionReplicas() {
if (this.containerAppsRevisionReplicas == null) {
- this.containerAppsRevisionReplicas =
- new ContainerAppsRevisionReplicasImpl(clientObject.getContainerAppsRevisionReplicas(), this);
+ this.containerAppsRevisionReplicas
+ = new ContainerAppsRevisionReplicasImpl(clientObject.getContainerAppsRevisionReplicas(), this);
}
return containerAppsRevisionReplicas;
}
/**
* Gets the resource collection API of ContainerAppsDiagnostics.
- *
+ *
* @return Resource collection API of ContainerAppsDiagnostics.
*/
public ContainerAppsDiagnostics containerAppsDiagnostics() {
if (this.containerAppsDiagnostics == null) {
- this.containerAppsDiagnostics =
- new ContainerAppsDiagnosticsImpl(clientObject.getContainerAppsDiagnostics(), this);
+ this.containerAppsDiagnostics
+ = new ContainerAppsDiagnosticsImpl(clientObject.getContainerAppsDiagnostics(), this);
}
return containerAppsDiagnostics;
}
/**
* Gets the resource collection API of ManagedEnvironmentDiagnostics.
- *
+ *
* @return Resource collection API of ManagedEnvironmentDiagnostics.
*/
public ManagedEnvironmentDiagnostics managedEnvironmentDiagnostics() {
if (this.managedEnvironmentDiagnostics == null) {
- this.managedEnvironmentDiagnostics =
- new ManagedEnvironmentDiagnosticsImpl(clientObject.getManagedEnvironmentDiagnostics(), this);
+ this.managedEnvironmentDiagnostics
+ = new ManagedEnvironmentDiagnosticsImpl(clientObject.getManagedEnvironmentDiagnostics(), this);
}
return managedEnvironmentDiagnostics;
}
/**
* Gets the resource collection API of ManagedEnvironmentsDiagnostics.
- *
+ *
* @return Resource collection API of ManagedEnvironmentsDiagnostics.
*/
public ManagedEnvironmentsDiagnostics managedEnvironmentsDiagnostics() {
if (this.managedEnvironmentsDiagnostics == null) {
- this.managedEnvironmentsDiagnostics =
- new ManagedEnvironmentsDiagnosticsImpl(clientObject.getManagedEnvironmentsDiagnostics(), this);
+ this.managedEnvironmentsDiagnostics
+ = new ManagedEnvironmentsDiagnosticsImpl(clientObject.getManagedEnvironmentsDiagnostics(), this);
}
return managedEnvironmentsDiagnostics;
}
/**
* Gets the resource collection API of Operations.
- *
+ *
* @return Resource collection API of Operations.
*/
public Operations operations() {
@@ -533,7 +510,7 @@ public Operations operations() {
/**
* Gets the resource collection API of Jobs. It manages Job.
- *
+ *
* @return Resource collection API of Jobs.
*/
public Jobs jobs() {
@@ -545,7 +522,7 @@ public Jobs jobs() {
/**
* Gets the resource collection API of JobsExecutions.
- *
+ *
* @return Resource collection API of JobsExecutions.
*/
public JobsExecutions jobsExecutions() {
@@ -557,7 +534,7 @@ public JobsExecutions jobsExecutions() {
/**
* Gets the resource collection API of ResourceProviders.
- *
+ *
* @return Resource collection API of ResourceProviders.
*/
public ResourceProviders resourceProviders() {
@@ -569,7 +546,7 @@ public ResourceProviders resourceProviders() {
/**
* Gets the resource collection API of ManagedEnvironments. It manages ManagedEnvironment.
- *
+ *
* @return Resource collection API of ManagedEnvironments.
*/
public ManagedEnvironments managedEnvironments() {
@@ -581,7 +558,7 @@ public ManagedEnvironments managedEnvironments() {
/**
* Gets the resource collection API of Certificates.
- *
+ *
* @return Resource collection API of Certificates.
*/
public Certificates certificates() {
@@ -593,7 +570,7 @@ public Certificates certificates() {
/**
* Gets the resource collection API of ManagedCertificates. It manages ManagedCertificate.
- *
+ *
* @return Resource collection API of ManagedCertificates.
*/
public ManagedCertificates managedCertificates() {
@@ -605,7 +582,7 @@ public ManagedCertificates managedCertificates() {
/**
* Gets the resource collection API of Namespaces.
- *
+ *
* @return Resource collection API of Namespaces.
*/
public Namespaces namespaces() {
@@ -617,7 +594,7 @@ public Namespaces namespaces() {
/**
* Gets the resource collection API of DaprComponents.
- *
+ *
* @return Resource collection API of DaprComponents.
*/
public DaprComponents daprComponents() {
@@ -629,26 +606,26 @@ public DaprComponents daprComponents() {
/**
* Gets the resource collection API of ManagedEnvironmentsStorages. It manages ManagedEnvironmentStorage.
- *
+ *
* @return Resource collection API of ManagedEnvironmentsStorages.
*/
public ManagedEnvironmentsStorages managedEnvironmentsStorages() {
if (this.managedEnvironmentsStorages == null) {
- this.managedEnvironmentsStorages =
- new ManagedEnvironmentsStoragesImpl(clientObject.getManagedEnvironmentsStorages(), this);
+ this.managedEnvironmentsStorages
+ = new ManagedEnvironmentsStoragesImpl(clientObject.getManagedEnvironmentsStorages(), this);
}
return managedEnvironmentsStorages;
}
/**
* Gets the resource collection API of ContainerAppsSourceControls. It manages SourceControl.
- *
+ *
* @return Resource collection API of ContainerAppsSourceControls.
*/
public ContainerAppsSourceControls containerAppsSourceControls() {
if (this.containerAppsSourceControls == null) {
- this.containerAppsSourceControls =
- new ContainerAppsSourceControlsImpl(clientObject.getContainerAppsSourceControls(), this);
+ this.containerAppsSourceControls
+ = new ContainerAppsSourceControlsImpl(clientObject.getContainerAppsSourceControls(), this);
}
return containerAppsSourceControls;
}
@@ -656,7 +633,7 @@ public ContainerAppsSourceControls containerAppsSourceControls() {
/**
* Gets wrapped service client ContainerAppsApiClient providing direct access to the underlying auto-generated API
* implementation, based on Azure REST API.
- *
+ *
* @return Wrapped service client ContainerAppsApiClient.
*/
public ContainerAppsApiClient serviceClient() {
diff --git a/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/AvailableWorkloadProfilesClient.java b/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/AvailableWorkloadProfilesClient.java
index 1c4ae5157f86..07b54b046db8 100644
--- a/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/AvailableWorkloadProfilesClient.java
+++ b/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/AvailableWorkloadProfilesClient.java
@@ -10,13 +10,15 @@
import com.azure.core.util.Context;
import com.azure.resourcemanager.appcontainers.fluent.models.AvailableWorkloadProfileInner;
-/** An instance of this class provides access to all the operations defined in AvailableWorkloadProfilesClient. */
+/**
+ * An instance of this class provides access to all the operations defined in AvailableWorkloadProfilesClient.
+ */
public interface AvailableWorkloadProfilesClient {
/**
* Get available workload profiles by location.
- *
- *
Get all available workload profiles for a location.
- *
+ *
+ * Get all available workload profiles for a location.
+ *
* @param location The name of Azure region.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
@@ -28,9 +30,9 @@ public interface AvailableWorkloadProfilesClient {
/**
* Get available workload profiles by location.
- *
- *
Get all available workload profiles for a location.
- *
+ *
+ * Get all available workload profiles for a location.
+ *
* @param location The name of Azure region.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
diff --git a/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/BillingMetersClient.java b/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/BillingMetersClient.java
index b6877f2b5e11..114cdeccd72f 100644
--- a/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/BillingMetersClient.java
+++ b/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/BillingMetersClient.java
@@ -10,18 +10,20 @@
import com.azure.core.util.Context;
import com.azure.resourcemanager.appcontainers.fluent.models.BillingMeterCollectionInner;
-/** An instance of this class provides access to all the operations defined in BillingMetersClient. */
+/**
+ * An instance of this class provides access to all the operations defined in BillingMetersClient.
+ */
public interface BillingMetersClient {
/**
* Get billing meters by location.
- *
- *
Get all billingMeters for a location.
- *
+ *
+ * Get all billingMeters for a location.
+ *
* @param location The name of Azure region.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return all billingMeters for a location along with {@link Response}.
*/
@@ -30,13 +32,13 @@ public interface BillingMetersClient {
/**
* Get billing meters by location.
- *
- *
Get all billingMeters for a location.
- *
+ *
+ * Get all billingMeters for a location.
+ *
* @param location The name of Azure region.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return all billingMeters for a location.
*/
diff --git a/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/CertificatesClient.java b/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/CertificatesClient.java
index 1e66f7dd0665..5963e2aaa823 100644
--- a/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/CertificatesClient.java
+++ b/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/CertificatesClient.java
@@ -12,16 +12,18 @@
import com.azure.resourcemanager.appcontainers.fluent.models.CertificateInner;
import com.azure.resourcemanager.appcontainers.models.CertificatePatch;
-/** An instance of this class provides access to all the operations defined in CertificatesClient. */
+/**
+ * An instance of this class provides access to all the operations defined in CertificatesClient.
+ */
public interface CertificatesClient {
/**
* Get the Certificates in a given managed environment.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param environmentName Name of the Managed Environment.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the Certificates in a given managed environment as paginated response with {@link PagedIterable}.
*/
@@ -30,13 +32,13 @@ public interface CertificatesClient {
/**
* Get the Certificates in a given managed environment.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param environmentName Name of the Managed Environment.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the Certificates in a given managed environment as paginated response with {@link PagedIterable}.
*/
@@ -45,30 +47,30 @@ public interface CertificatesClient {
/**
* Get the specified Certificate.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param environmentName Name of the Managed Environment.
* @param certificateName Name of the Certificate.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the specified Certificate along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response getWithResponse(
- String resourceGroupName, String environmentName, String certificateName, Context context);
+ Response getWithResponse(String resourceGroupName, String environmentName, String certificateName,
+ Context context);
/**
* Get the specified Certificate.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param environmentName Name of the Managed Environment.
* @param certificateName Name of the Certificate.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the specified Certificate.
*/
@@ -77,7 +79,7 @@ Response getWithResponse(
/**
* Create or Update a Certificate.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param environmentName Name of the Managed Environment.
* @param certificateName Name of the Certificate.
@@ -85,28 +87,24 @@ Response getWithResponse(
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
- * @return certificate used for Custom Domain bindings of Container Apps in a Managed Environment along with {@link
- * Response}.
+ * @return certificate used for Custom Domain bindings of Container Apps in a Managed Environment along with
+ * {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response createOrUpdateWithResponse(
- String resourceGroupName,
- String environmentName,
- String certificateName,
- CertificateInner certificateEnvelope,
- Context context);
+ Response createOrUpdateWithResponse(String resourceGroupName, String environmentName,
+ String certificateName, CertificateInner certificateEnvelope, Context context);
/**
* Create or Update a Certificate.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param environmentName Name of the Managed Environment.
* @param certificateName Name of the Certificate.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return certificate used for Custom Domain bindings of Container Apps in a Managed Environment.
*/
@@ -115,30 +113,30 @@ Response createOrUpdateWithResponse(
/**
* Deletes the specified Certificate.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param environmentName Name of the Managed Environment.
* @param certificateName Name of the Certificate.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response deleteWithResponse(
- String resourceGroupName, String environmentName, String certificateName, Context context);
+ Response deleteWithResponse(String resourceGroupName, String environmentName, String certificateName,
+ Context context);
/**
* Deletes the specified Certificate.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param environmentName Name of the Managed Environment.
* @param certificateName Name of the Certificate.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
@@ -146,9 +144,9 @@ Response deleteWithResponse(
/**
* Update properties of a certificate
- *
- * Patches a certificate. Currently only patching of tags is supported.
- *
+ *
+ * Patches a certificate. Currently only patching of tags is supported.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param environmentName Name of the Managed Environment.
* @param certificateName Name of the Certificate.
@@ -156,35 +154,31 @@ Response deleteWithResponse(
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
- * @return certificate used for Custom Domain bindings of Container Apps in a Managed Environment along with {@link
- * Response}.
+ * @return certificate used for Custom Domain bindings of Container Apps in a Managed Environment along with
+ * {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response updateWithResponse(
- String resourceGroupName,
- String environmentName,
- String certificateName,
- CertificatePatch certificateEnvelope,
- Context context);
+ Response updateWithResponse(String resourceGroupName, String environmentName,
+ String certificateName, CertificatePatch certificateEnvelope, Context context);
/**
* Update properties of a certificate
- *
- * Patches a certificate. Currently only patching of tags is supported.
- *
+ *
+ * Patches a certificate. Currently only patching of tags is supported.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param environmentName Name of the Managed Environment.
* @param certificateName Name of the Certificate.
* @param certificateEnvelope Properties of a certificate that need to be updated.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return certificate used for Custom Domain bindings of Container Apps in a Managed Environment.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- CertificateInner update(
- String resourceGroupName, String environmentName, String certificateName, CertificatePatch certificateEnvelope);
+ CertificateInner update(String resourceGroupName, String environmentName, String certificateName,
+ CertificatePatch certificateEnvelope);
}
diff --git a/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ConnectedEnvironmentsCertificatesClient.java b/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ConnectedEnvironmentsCertificatesClient.java
index 3924eac328c3..b40e6779b501 100644
--- a/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ConnectedEnvironmentsCertificatesClient.java
+++ b/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ConnectedEnvironmentsCertificatesClient.java
@@ -18,12 +18,12 @@
public interface ConnectedEnvironmentsCertificatesClient {
/**
* Get the Certificates in a given connected environment.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param connectedEnvironmentName Name of the Connected Environment.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the Certificates in a given connected environment as paginated response with {@link PagedIterable}.
*/
@@ -32,13 +32,13 @@ public interface ConnectedEnvironmentsCertificatesClient {
/**
* Get the Certificates in a given connected environment.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param connectedEnvironmentName Name of the Connected Environment.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the Certificates in a given connected environment as paginated response with {@link PagedIterable}.
*/
@@ -47,30 +47,30 @@ public interface ConnectedEnvironmentsCertificatesClient {
/**
* Get the specified Certificate.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param connectedEnvironmentName Name of the Connected Environment.
* @param certificateName Name of the Certificate.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the specified Certificate along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response getWithResponse(
- String resourceGroupName, String connectedEnvironmentName, String certificateName, Context context);
+ Response getWithResponse(String resourceGroupName, String connectedEnvironmentName,
+ String certificateName, Context context);
/**
* Get the specified Certificate.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param connectedEnvironmentName Name of the Connected Environment.
* @param certificateName Name of the Certificate.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the specified Certificate.
*/
@@ -79,7 +79,7 @@ Response getWithResponse(
/**
* Create or Update a Certificate.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param connectedEnvironmentName Name of the Connected Environment.
* @param certificateName Name of the Certificate.
@@ -87,28 +87,24 @@ Response getWithResponse(
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
- * @return certificate used for Custom Domain bindings of Container Apps in a Managed Environment along with {@link
- * Response}.
+ * @return certificate used for Custom Domain bindings of Container Apps in a Managed Environment along with
+ * {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response createOrUpdateWithResponse(
- String resourceGroupName,
- String connectedEnvironmentName,
- String certificateName,
- CertificateInner certificateEnvelope,
- Context context);
+ Response createOrUpdateWithResponse(String resourceGroupName, String connectedEnvironmentName,
+ String certificateName, CertificateInner certificateEnvelope, Context context);
/**
* Create or Update a Certificate.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param connectedEnvironmentName Name of the Connected Environment.
* @param certificateName Name of the Certificate.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return certificate used for Custom Domain bindings of Container Apps in a Managed Environment.
*/
@@ -117,30 +113,30 @@ Response createOrUpdateWithResponse(
/**
* Deletes the specified Certificate.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param connectedEnvironmentName Name of the Connected Environment.
* @param certificateName Name of the Certificate.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response deleteWithResponse(
- String resourceGroupName, String connectedEnvironmentName, String certificateName, Context context);
+ Response deleteWithResponse(String resourceGroupName, String connectedEnvironmentName, String certificateName,
+ Context context);
/**
* Deletes the specified Certificate.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param connectedEnvironmentName Name of the Connected Environment.
* @param certificateName Name of the Certificate.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
@@ -148,9 +144,9 @@ Response deleteWithResponse(
/**
* Update properties of a certificate
- *
- * Patches a certificate. Currently only patching of tags is supported.
- *
+ *
+ * Patches a certificate. Currently only patching of tags is supported.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param connectedEnvironmentName Name of the Connected Environment.
* @param certificateName Name of the Certificate.
@@ -158,38 +154,31 @@ Response deleteWithResponse(
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
- * @return certificate used for Custom Domain bindings of Container Apps in a Managed Environment along with {@link
- * Response}.
+ * @return certificate used for Custom Domain bindings of Container Apps in a Managed Environment along with
+ * {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response updateWithResponse(
- String resourceGroupName,
- String connectedEnvironmentName,
- String certificateName,
- CertificatePatch certificateEnvelope,
- Context context);
+ Response updateWithResponse(String resourceGroupName, String connectedEnvironmentName,
+ String certificateName, CertificatePatch certificateEnvelope, Context context);
/**
* Update properties of a certificate
- *
- * Patches a certificate. Currently only patching of tags is supported.
- *
+ *
+ * Patches a certificate. Currently only patching of tags is supported.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param connectedEnvironmentName Name of the Connected Environment.
* @param certificateName Name of the Certificate.
* @param certificateEnvelope Properties of a certificate that need to be updated.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return certificate used for Custom Domain bindings of Container Apps in a Managed Environment.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- CertificateInner update(
- String resourceGroupName,
- String connectedEnvironmentName,
- String certificateName,
+ CertificateInner update(String resourceGroupName, String connectedEnvironmentName, String certificateName,
CertificatePatch certificateEnvelope);
}
diff --git a/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ConnectedEnvironmentsClient.java b/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ConnectedEnvironmentsClient.java
index efa280c81bfa..bf40789c9771 100644
--- a/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ConnectedEnvironmentsClient.java
+++ b/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ConnectedEnvironmentsClient.java
@@ -15,13 +15,15 @@
import com.azure.resourcemanager.appcontainers.fluent.models.ConnectedEnvironmentInner;
import com.azure.resourcemanager.appcontainers.models.CheckNameAvailabilityRequest;
-/** An instance of this class provides access to all the operations defined in ConnectedEnvironmentsClient. */
+/**
+ * An instance of this class provides access to all the operations defined in ConnectedEnvironmentsClient.
+ */
public interface ConnectedEnvironmentsClient {
/**
* Get all connectedEnvironments for a subscription.
- *
+ *
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return all connectedEnvironments for a subscription as paginated response with {@link PagedIterable}.
*/
@@ -30,11 +32,11 @@ public interface ConnectedEnvironmentsClient {
/**
* Get all connectedEnvironments for a subscription.
- *
+ *
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return all connectedEnvironments for a subscription as paginated response with {@link PagedIterable}.
*/
@@ -43,11 +45,11 @@ public interface ConnectedEnvironmentsClient {
/**
* Get all connectedEnvironments in a resource group.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return all connectedEnvironments in a resource group as paginated response with {@link PagedIterable}.
*/
@@ -56,12 +58,12 @@ public interface ConnectedEnvironmentsClient {
/**
* Get all connectedEnvironments in a resource group.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return all connectedEnvironments in a resource group as paginated response with {@link PagedIterable}.
*/
@@ -70,28 +72,28 @@ public interface ConnectedEnvironmentsClient {
/**
* Get the properties of an connectedEnvironment.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param connectedEnvironmentName Name of the connectedEnvironment.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the properties of an connectedEnvironment along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response getByResourceGroupWithResponse(
- String resourceGroupName, String connectedEnvironmentName, Context context);
+ Response getByResourceGroupWithResponse(String resourceGroupName,
+ String connectedEnvironmentName, Context context);
/**
* Get the properties of an connectedEnvironment.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param connectedEnvironmentName Name of the connectedEnvironment.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the properties of an connectedEnvironment.
*/
@@ -100,16 +102,16 @@ Response getByResourceGroupWithResponse(
/**
* Creates or updates an connectedEnvironment.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param connectedEnvironmentName Name of the connectedEnvironment.
* @param environmentEnvelope Configuration details of the connectedEnvironment.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link SyncPoller} for polling of an environment for Kubernetes cluster specialized for web workloads
- * by Azure App Service.
+ * by Azure App Service.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
SyncPoller, ConnectedEnvironmentInner> beginCreateOrUpdate(
@@ -117,69 +119,64 @@ SyncPoller, ConnectedEnvironmentInner> beg
/**
* Creates or updates an connectedEnvironment.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param connectedEnvironmentName Name of the connectedEnvironment.
* @param environmentEnvelope Configuration details of the connectedEnvironment.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link SyncPoller} for polling of an environment for Kubernetes cluster specialized for web workloads
- * by Azure App Service.
+ * by Azure App Service.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
SyncPoller, ConnectedEnvironmentInner> beginCreateOrUpdate(
- String resourceGroupName,
- String connectedEnvironmentName,
- ConnectedEnvironmentInner environmentEnvelope,
+ String resourceGroupName, String connectedEnvironmentName, ConnectedEnvironmentInner environmentEnvelope,
Context context);
/**
* Creates or updates an connectedEnvironment.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param connectedEnvironmentName Name of the connectedEnvironment.
* @param environmentEnvelope Configuration details of the connectedEnvironment.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return an environment for Kubernetes cluster specialized for web workloads by Azure App Service.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- ConnectedEnvironmentInner createOrUpdate(
- String resourceGroupName, String connectedEnvironmentName, ConnectedEnvironmentInner environmentEnvelope);
+ ConnectedEnvironmentInner createOrUpdate(String resourceGroupName, String connectedEnvironmentName,
+ ConnectedEnvironmentInner environmentEnvelope);
/**
* Creates or updates an connectedEnvironment.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param connectedEnvironmentName Name of the connectedEnvironment.
* @param environmentEnvelope Configuration details of the connectedEnvironment.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return an environment for Kubernetes cluster specialized for web workloads by Azure App Service.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- ConnectedEnvironmentInner createOrUpdate(
- String resourceGroupName,
- String connectedEnvironmentName,
- ConnectedEnvironmentInner environmentEnvelope,
- Context context);
+ ConnectedEnvironmentInner createOrUpdate(String resourceGroupName, String connectedEnvironmentName,
+ ConnectedEnvironmentInner environmentEnvelope, Context context);
/**
* Delete an connectedEnvironment.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param connectedEnvironmentName Name of the connectedEnvironment.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link SyncPoller} for polling of long-running operation.
*/
@@ -188,28 +185,28 @@ ConnectedEnvironmentInner createOrUpdate(
/**
* Delete an connectedEnvironment.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param connectedEnvironmentName Name of the connectedEnvironment.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link SyncPoller} for polling of long-running operation.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
- SyncPoller, Void> beginDelete(
- String resourceGroupName, String connectedEnvironmentName, Context context);
+ SyncPoller, Void> beginDelete(String resourceGroupName, String connectedEnvironmentName,
+ Context context);
/**
* Delete an connectedEnvironment.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param connectedEnvironmentName Name of the connectedEnvironment.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
@@ -217,13 +214,13 @@ SyncPoller, Void> beginDelete(
/**
* Delete an connectedEnvironment.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param connectedEnvironmentName Name of the connectedEnvironment.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
@@ -231,33 +228,33 @@ SyncPoller, Void> beginDelete(
/**
* Update connected Environment's properties.
- *
- * Patches a Managed Environment. Only patching of tags is supported currently.
- *
+ *
+ * Patches a Managed Environment. Only patching of tags is supported currently.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param connectedEnvironmentName Name of the connectedEnvironment.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return an environment for Kubernetes cluster specialized for web workloads by Azure App Service along with
- * {@link Response}.
+ * {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response updateWithResponse(
- String resourceGroupName, String connectedEnvironmentName, Context context);
+ Response updateWithResponse(String resourceGroupName, String connectedEnvironmentName,
+ Context context);
/**
* Update connected Environment's properties.
- *
- * Patches a Managed Environment. Only patching of tags is supported currently.
- *
+ *
+ * Patches a Managed Environment. Only patching of tags is supported currently.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param connectedEnvironmentName Name of the connectedEnvironment.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return an environment for Kubernetes cluster specialized for web workloads by Azure App Service.
*/
@@ -266,43 +263,38 @@ Response updateWithResponse(
/**
* Checks the resource connectedEnvironmentName availability.
- *
- * Checks if resource connectedEnvironmentName is available.
- *
+ *
+ * Checks if resource connectedEnvironmentName is available.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param connectedEnvironmentName Name of the Managed Environment.
* @param checkNameAvailabilityRequest The check connectedEnvironmentName availability request.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the check availability result along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response checkNameAvailabilityWithResponse(
- String resourceGroupName,
- String connectedEnvironmentName,
- CheckNameAvailabilityRequest checkNameAvailabilityRequest,
- Context context);
+ Response checkNameAvailabilityWithResponse(String resourceGroupName,
+ String connectedEnvironmentName, CheckNameAvailabilityRequest checkNameAvailabilityRequest, Context context);
/**
* Checks the resource connectedEnvironmentName availability.
- *
- * Checks if resource connectedEnvironmentName is available.
- *
+ *
+ * Checks if resource connectedEnvironmentName is available.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param connectedEnvironmentName Name of the Managed Environment.
* @param checkNameAvailabilityRequest The check connectedEnvironmentName availability request.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the check availability result.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- CheckNameAvailabilityResponseInner checkNameAvailability(
- String resourceGroupName,
- String connectedEnvironmentName,
+ CheckNameAvailabilityResponseInner checkNameAvailability(String resourceGroupName, String connectedEnvironmentName,
CheckNameAvailabilityRequest checkNameAvailabilityRequest);
}
diff --git a/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ConnectedEnvironmentsDaprComponentsClient.java b/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ConnectedEnvironmentsDaprComponentsClient.java
index f137979cc9f8..b0839ec31463 100644
--- a/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ConnectedEnvironmentsDaprComponentsClient.java
+++ b/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ConnectedEnvironmentsDaprComponentsClient.java
@@ -13,17 +13,18 @@
import com.azure.resourcemanager.appcontainers.fluent.models.DaprSecretsCollectionInner;
/**
- * An instance of this class provides access to all the operations defined in ConnectedEnvironmentsDaprComponentsClient.
+ * An instance of this class provides access to all the operations defined in
+ * ConnectedEnvironmentsDaprComponentsClient.
*/
public interface ConnectedEnvironmentsDaprComponentsClient {
/**
* Get the Dapr Components for a connected environment.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param connectedEnvironmentName Name of the connected environment.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the Dapr Components for a connected environment as paginated response with {@link PagedIterable}.
*/
@@ -32,13 +33,13 @@ public interface ConnectedEnvironmentsDaprComponentsClient {
/**
* Get the Dapr Components for a connected environment.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param connectedEnvironmentName Name of the connected environment.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the Dapr Components for a connected environment as paginated response with {@link PagedIterable}.
*/
@@ -47,30 +48,30 @@ public interface ConnectedEnvironmentsDaprComponentsClient {
/**
* Get a dapr component.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param connectedEnvironmentName Name of the connected environment.
* @param componentName Name of the Dapr Component.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return a dapr component along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response getWithResponse(
- String resourceGroupName, String connectedEnvironmentName, String componentName, Context context);
+ Response getWithResponse(String resourceGroupName, String connectedEnvironmentName,
+ String componentName, Context context);
/**
* Get a dapr component.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param connectedEnvironmentName Name of the connected environment.
* @param componentName Name of the Dapr Component.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return a dapr component.
*/
@@ -79,9 +80,9 @@ Response getWithResponse(
/**
* Creates or updates a Dapr Component.
- *
- * Creates or updates a Dapr Component in a connected environment.
- *
+ *
+ * Creates or updates a Dapr Component in a connected environment.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param connectedEnvironmentName Name of the connected environment.
* @param componentName Name of the Dapr Component.
@@ -89,70 +90,63 @@ Response getWithResponse(
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return dapr Component along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response createOrUpdateWithResponse(
- String resourceGroupName,
- String connectedEnvironmentName,
- String componentName,
- DaprComponentInner daprComponentEnvelope,
- Context context);
+ Response createOrUpdateWithResponse(String resourceGroupName, String connectedEnvironmentName,
+ String componentName, DaprComponentInner daprComponentEnvelope, Context context);
/**
* Creates or updates a Dapr Component.
- *
- * Creates or updates a Dapr Component in a connected environment.
- *
+ *
+ * Creates or updates a Dapr Component in a connected environment.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param connectedEnvironmentName Name of the connected environment.
* @param componentName Name of the Dapr Component.
* @param daprComponentEnvelope Configuration details of the Dapr Component.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return dapr Component.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- DaprComponentInner createOrUpdate(
- String resourceGroupName,
- String connectedEnvironmentName,
- String componentName,
+ DaprComponentInner createOrUpdate(String resourceGroupName, String connectedEnvironmentName, String componentName,
DaprComponentInner daprComponentEnvelope);
/**
* Delete a Dapr Component.
- *
- *
Delete a Dapr Component from a connected environment.
- *
+ *
+ * Delete a Dapr Component from a connected environment.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param connectedEnvironmentName Name of the connected environment.
* @param componentName Name of the Dapr Component.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response deleteWithResponse(
- String resourceGroupName, String connectedEnvironmentName, String componentName, Context context);
+ Response deleteWithResponse(String resourceGroupName, String connectedEnvironmentName, String componentName,
+ Context context);
/**
* Delete a Dapr Component.
- *
- * Delete a Dapr Component from a connected environment.
- *
+ *
+ * Delete a Dapr Component from a connected environment.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param connectedEnvironmentName Name of the connected environment.
* @param componentName Name of the Dapr Component.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
@@ -160,34 +154,34 @@ Response deleteWithResponse(
/**
* List secrets for a dapr component.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param connectedEnvironmentName Name of the connected environment.
* @param componentName Name of the Dapr Component.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return dapr component Secrets Collection for ListSecrets Action along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response listSecretsWithResponse(
- String resourceGroupName, String connectedEnvironmentName, String componentName, Context context);
+ Response listSecretsWithResponse(String resourceGroupName,
+ String connectedEnvironmentName, String componentName, Context context);
/**
* List secrets for a dapr component.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param connectedEnvironmentName Name of the connected environment.
* @param componentName Name of the Dapr Component.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return dapr component Secrets Collection for ListSecrets Action.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- DaprSecretsCollectionInner listSecrets(
- String resourceGroupName, String connectedEnvironmentName, String componentName);
+ DaprSecretsCollectionInner listSecrets(String resourceGroupName, String connectedEnvironmentName,
+ String componentName);
}
diff --git a/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ConnectedEnvironmentsStoragesClient.java b/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ConnectedEnvironmentsStoragesClient.java
index 2718921f835d..877de407b477 100644
--- a/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ConnectedEnvironmentsStoragesClient.java
+++ b/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ConnectedEnvironmentsStoragesClient.java
@@ -11,32 +11,34 @@
import com.azure.resourcemanager.appcontainers.fluent.models.ConnectedEnvironmentStorageInner;
import com.azure.resourcemanager.appcontainers.fluent.models.ConnectedEnvironmentStoragesCollectionInner;
-/** An instance of this class provides access to all the operations defined in ConnectedEnvironmentsStoragesClient. */
+/**
+ * An instance of this class provides access to all the operations defined in ConnectedEnvironmentsStoragesClient.
+ */
public interface ConnectedEnvironmentsStoragesClient {
/**
* Get all storages for a connectedEnvironment.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param connectedEnvironmentName Name of the Environment.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return all storages for a connectedEnvironment along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response listWithResponse(
- String resourceGroupName, String connectedEnvironmentName, Context context);
+ Response listWithResponse(String resourceGroupName,
+ String connectedEnvironmentName, Context context);
/**
* Get all storages for a connectedEnvironment.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param connectedEnvironmentName Name of the Environment.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return all storages for a connectedEnvironment.
*/
@@ -45,30 +47,30 @@ Response listWithResponse(
/**
* Get storage for a connectedEnvironment.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param connectedEnvironmentName Name of the Environment.
* @param storageName Name of the storage.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return storage for a connectedEnvironment along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response getWithResponse(
- String resourceGroupName, String connectedEnvironmentName, String storageName, Context context);
+ Response getWithResponse(String resourceGroupName,
+ String connectedEnvironmentName, String storageName, Context context);
/**
* Get storage for a connectedEnvironment.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param connectedEnvironmentName Name of the Environment.
* @param storageName Name of the storage.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return storage for a connectedEnvironment.
*/
@@ -77,7 +79,7 @@ Response getWithResponse(
/**
* Create or update storage for a connectedEnvironment.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param connectedEnvironmentName Name of the Environment.
* @param storageName Name of the storage.
@@ -85,64 +87,58 @@ Response getWithResponse(
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return storage resource for connectedEnvironment along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response createOrUpdateWithResponse(
- String resourceGroupName,
- String connectedEnvironmentName,
- String storageName,
- ConnectedEnvironmentStorageInner storageEnvelope,
+ Response createOrUpdateWithResponse(String resourceGroupName,
+ String connectedEnvironmentName, String storageName, ConnectedEnvironmentStorageInner storageEnvelope,
Context context);
/**
* Create or update storage for a connectedEnvironment.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param connectedEnvironmentName Name of the Environment.
* @param storageName Name of the storage.
* @param storageEnvelope Configuration details of storage.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return storage resource for connectedEnvironment.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- ConnectedEnvironmentStorageInner createOrUpdate(
- String resourceGroupName,
- String connectedEnvironmentName,
- String storageName,
- ConnectedEnvironmentStorageInner storageEnvelope);
+ ConnectedEnvironmentStorageInner createOrUpdate(String resourceGroupName, String connectedEnvironmentName,
+ String storageName, ConnectedEnvironmentStorageInner storageEnvelope);
/**
* Delete storage for a connectedEnvironment.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param connectedEnvironmentName Name of the Environment.
* @param storageName Name of the storage.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response deleteWithResponse(
- String resourceGroupName, String connectedEnvironmentName, String storageName, Context context);
+ Response deleteWithResponse(String resourceGroupName, String connectedEnvironmentName, String storageName,
+ Context context);
/**
* Delete storage for a connectedEnvironment.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param connectedEnvironmentName Name of the Environment.
* @param storageName Name of the storage.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
diff --git a/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ContainerAppsApiClient.java b/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ContainerAppsApiClient.java
index 03bef3cfa47b..2fc24b133e73 100644
--- a/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ContainerAppsApiClient.java
+++ b/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ContainerAppsApiClient.java
@@ -7,207 +7,209 @@
import com.azure.core.http.HttpPipeline;
import java.time.Duration;
-/** The interface for ContainerAppsApiClient class. */
+/**
+ * The interface for ContainerAppsApiClient class.
+ */
public interface ContainerAppsApiClient {
/**
* Gets The ID of the target subscription.
- *
+ *
* @return the subscriptionId value.
*/
String getSubscriptionId();
/**
* Gets server parameter.
- *
+ *
* @return the endpoint value.
*/
String getEndpoint();
/**
* Gets Api Version.
- *
+ *
* @return the apiVersion value.
*/
String getApiVersion();
/**
* Gets The HTTP pipeline to send requests through.
- *
+ *
* @return the httpPipeline value.
*/
HttpPipeline getHttpPipeline();
/**
* Gets The default poll interval for long-running operation.
- *
+ *
* @return the defaultPollInterval value.
*/
Duration getDefaultPollInterval();
/**
* Gets the ContainerAppsAuthConfigsClient object to access its operations.
- *
+ *
* @return the ContainerAppsAuthConfigsClient object.
*/
ContainerAppsAuthConfigsClient getContainerAppsAuthConfigs();
/**
* Gets the AvailableWorkloadProfilesClient object to access its operations.
- *
+ *
* @return the AvailableWorkloadProfilesClient object.
*/
AvailableWorkloadProfilesClient getAvailableWorkloadProfiles();
/**
* Gets the BillingMetersClient object to access its operations.
- *
+ *
* @return the BillingMetersClient object.
*/
BillingMetersClient getBillingMeters();
/**
* Gets the ConnectedEnvironmentsClient object to access its operations.
- *
+ *
* @return the ConnectedEnvironmentsClient object.
*/
ConnectedEnvironmentsClient getConnectedEnvironments();
/**
* Gets the ConnectedEnvironmentsCertificatesClient object to access its operations.
- *
+ *
* @return the ConnectedEnvironmentsCertificatesClient object.
*/
ConnectedEnvironmentsCertificatesClient getConnectedEnvironmentsCertificates();
/**
* Gets the ConnectedEnvironmentsDaprComponentsClient object to access its operations.
- *
+ *
* @return the ConnectedEnvironmentsDaprComponentsClient object.
*/
ConnectedEnvironmentsDaprComponentsClient getConnectedEnvironmentsDaprComponents();
/**
* Gets the ConnectedEnvironmentsStoragesClient object to access its operations.
- *
+ *
* @return the ConnectedEnvironmentsStoragesClient object.
*/
ConnectedEnvironmentsStoragesClient getConnectedEnvironmentsStorages();
/**
* Gets the ContainerAppsClient object to access its operations.
- *
+ *
* @return the ContainerAppsClient object.
*/
ContainerAppsClient getContainerApps();
/**
* Gets the ContainerAppsRevisionsClient object to access its operations.
- *
+ *
* @return the ContainerAppsRevisionsClient object.
*/
ContainerAppsRevisionsClient getContainerAppsRevisions();
/**
* Gets the ContainerAppsRevisionReplicasClient object to access its operations.
- *
+ *
* @return the ContainerAppsRevisionReplicasClient object.
*/
ContainerAppsRevisionReplicasClient getContainerAppsRevisionReplicas();
/**
* Gets the ContainerAppsDiagnosticsClient object to access its operations.
- *
+ *
* @return the ContainerAppsDiagnosticsClient object.
*/
ContainerAppsDiagnosticsClient getContainerAppsDiagnostics();
/**
* Gets the ManagedEnvironmentDiagnosticsClient object to access its operations.
- *
+ *
* @return the ManagedEnvironmentDiagnosticsClient object.
*/
ManagedEnvironmentDiagnosticsClient getManagedEnvironmentDiagnostics();
/**
* Gets the ManagedEnvironmentsDiagnosticsClient object to access its operations.
- *
+ *
* @return the ManagedEnvironmentsDiagnosticsClient object.
*/
ManagedEnvironmentsDiagnosticsClient getManagedEnvironmentsDiagnostics();
/**
* Gets the OperationsClient object to access its operations.
- *
+ *
* @return the OperationsClient object.
*/
OperationsClient getOperations();
/**
* Gets the JobsClient object to access its operations.
- *
+ *
* @return the JobsClient object.
*/
JobsClient getJobs();
/**
* Gets the JobsExecutionsClient object to access its operations.
- *
+ *
* @return the JobsExecutionsClient object.
*/
JobsExecutionsClient getJobsExecutions();
/**
* Gets the ResourceProvidersClient object to access its operations.
- *
+ *
* @return the ResourceProvidersClient object.
*/
ResourceProvidersClient getResourceProviders();
/**
* Gets the ManagedEnvironmentsClient object to access its operations.
- *
+ *
* @return the ManagedEnvironmentsClient object.
*/
ManagedEnvironmentsClient getManagedEnvironments();
/**
* Gets the CertificatesClient object to access its operations.
- *
+ *
* @return the CertificatesClient object.
*/
CertificatesClient getCertificates();
/**
* Gets the ManagedCertificatesClient object to access its operations.
- *
+ *
* @return the ManagedCertificatesClient object.
*/
ManagedCertificatesClient getManagedCertificates();
/**
* Gets the NamespacesClient object to access its operations.
- *
+ *
* @return the NamespacesClient object.
*/
NamespacesClient getNamespaces();
/**
* Gets the DaprComponentsClient object to access its operations.
- *
+ *
* @return the DaprComponentsClient object.
*/
DaprComponentsClient getDaprComponents();
/**
* Gets the ManagedEnvironmentsStoragesClient object to access its operations.
- *
+ *
* @return the ManagedEnvironmentsStoragesClient object.
*/
ManagedEnvironmentsStoragesClient getManagedEnvironmentsStorages();
/**
* Gets the ContainerAppsSourceControlsClient object to access its operations.
- *
+ *
* @return the ContainerAppsSourceControlsClient object.
*/
ContainerAppsSourceControlsClient getContainerAppsSourceControls();
diff --git a/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ContainerAppsAuthConfigsClient.java b/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ContainerAppsAuthConfigsClient.java
index 9b742d9945c5..c28af17f98d3 100644
--- a/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ContainerAppsAuthConfigsClient.java
+++ b/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ContainerAppsAuthConfigsClient.java
@@ -11,16 +11,18 @@
import com.azure.core.util.Context;
import com.azure.resourcemanager.appcontainers.fluent.models.AuthConfigInner;
-/** An instance of this class provides access to all the operations defined in ContainerAppsAuthConfigsClient. */
+/**
+ * An instance of this class provides access to all the operations defined in ContainerAppsAuthConfigsClient.
+ */
public interface ContainerAppsAuthConfigsClient {
/**
* Get the Container App AuthConfigs in a given resource group.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the Container App AuthConfigs in a given resource group as paginated response with {@link PagedIterable}.
*/
@@ -29,46 +31,46 @@ public interface ContainerAppsAuthConfigsClient {
/**
* Get the Container App AuthConfigs in a given resource group.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the Container App AuthConfigs in a given resource group as paginated response with {@link PagedIterable}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
- PagedIterable listByContainerApp(
- String resourceGroupName, String containerAppName, Context context);
+ PagedIterable listByContainerApp(String resourceGroupName, String containerAppName,
+ Context context);
/**
* Get a AuthConfig of a Container App.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @param authConfigName Name of the Container App AuthConfig.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return a AuthConfig of a Container App along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response getWithResponse(
- String resourceGroupName, String containerAppName, String authConfigName, Context context);
+ Response getWithResponse(String resourceGroupName, String containerAppName, String authConfigName,
+ Context context);
/**
* Get a AuthConfig of a Container App.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @param authConfigName Name of the Container App AuthConfig.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return a AuthConfig of a Container App.
*/
@@ -77,7 +79,7 @@ Response getWithResponse(
/**
* Create or update the AuthConfig for a Container App.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @param authConfigName Name of the Container App AuthConfig.
@@ -85,62 +87,58 @@ Response getWithResponse(
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return configuration settings for the Azure ContainerApp Service Authentication / Authorization feature along
- * with {@link Response}.
+ * with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response createOrUpdateWithResponse(
- String resourceGroupName,
- String containerAppName,
- String authConfigName,
- AuthConfigInner authConfigEnvelope,
- Context context);
+ Response createOrUpdateWithResponse(String resourceGroupName, String containerAppName,
+ String authConfigName, AuthConfigInner authConfigEnvelope, Context context);
/**
* Create or update the AuthConfig for a Container App.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @param authConfigName Name of the Container App AuthConfig.
* @param authConfigEnvelope Properties used to create a Container App AuthConfig.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return configuration settings for the Azure ContainerApp Service Authentication / Authorization feature.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- AuthConfigInner createOrUpdate(
- String resourceGroupName, String containerAppName, String authConfigName, AuthConfigInner authConfigEnvelope);
+ AuthConfigInner createOrUpdate(String resourceGroupName, String containerAppName, String authConfigName,
+ AuthConfigInner authConfigEnvelope);
/**
* Delete a Container App AuthConfig.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @param authConfigName Name of the Container App AuthConfig.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response deleteWithResponse(
- String resourceGroupName, String containerAppName, String authConfigName, Context context);
+ Response deleteWithResponse(String resourceGroupName, String containerAppName, String authConfigName,
+ Context context);
/**
* Delete a Container App AuthConfig.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @param authConfigName Name of the Container App AuthConfig.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
diff --git a/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ContainerAppsClient.java b/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ContainerAppsClient.java
index 42624e5ff627..88af33e45a93 100644
--- a/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ContainerAppsClient.java
+++ b/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ContainerAppsClient.java
@@ -16,13 +16,15 @@
import com.azure.resourcemanager.appcontainers.fluent.models.CustomHostnameAnalysisResultInner;
import com.azure.resourcemanager.appcontainers.fluent.models.SecretsCollectionInner;
-/** An instance of this class provides access to all the operations defined in ContainerAppsClient. */
+/**
+ * An instance of this class provides access to all the operations defined in ContainerAppsClient.
+ */
public interface ContainerAppsClient {
/**
* Get the Container Apps in a given subscription.
- *
+ *
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the Container Apps in a given subscription as paginated response with {@link PagedIterable}.
*/
@@ -31,11 +33,11 @@ public interface ContainerAppsClient {
/**
* Get the Container Apps in a given subscription.
- *
+ *
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the Container Apps in a given subscription as paginated response with {@link PagedIterable}.
*/
@@ -44,11 +46,11 @@ public interface ContainerAppsClient {
/**
* Get the Container Apps in a given resource group.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the Container Apps in a given resource group as paginated response with {@link PagedIterable}.
*/
@@ -57,12 +59,12 @@ public interface ContainerAppsClient {
/**
* Get the Container Apps in a given resource group.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the Container Apps in a given resource group as paginated response with {@link PagedIterable}.
*/
@@ -71,32 +73,32 @@ public interface ContainerAppsClient {
/**
* Get the properties of a Container App.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server on
- * status code 404.
+ * status code 404.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the properties of a Container App along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response getByResourceGroupWithResponse(
- String resourceGroupName, String containerAppName, Context context);
+ Response getByResourceGroupWithResponse(String resourceGroupName, String containerAppName,
+ Context context);
/**
* Get the properties of a Container App.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server on
- * status code 404.
+ * status code 404.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the properties of a Container App.
*/
@@ -105,78 +107,78 @@ Response getByResourceGroupWithResponse(
/**
* Create or update a Container App.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @param containerAppEnvelope Properties used to create a container app.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link SyncPoller} for polling of container App.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
- SyncPoller, ContainerAppInner> beginCreateOrUpdate(
- String resourceGroupName, String containerAppName, ContainerAppInner containerAppEnvelope);
+ SyncPoller, ContainerAppInner> beginCreateOrUpdate(String resourceGroupName,
+ String containerAppName, ContainerAppInner containerAppEnvelope);
/**
* Create or update a Container App.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @param containerAppEnvelope Properties used to create a container app.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link SyncPoller} for polling of container App.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
- SyncPoller, ContainerAppInner> beginCreateOrUpdate(
- String resourceGroupName, String containerAppName, ContainerAppInner containerAppEnvelope, Context context);
+ SyncPoller, ContainerAppInner> beginCreateOrUpdate(String resourceGroupName,
+ String containerAppName, ContainerAppInner containerAppEnvelope, Context context);
/**
* Create or update a Container App.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @param containerAppEnvelope Properties used to create a container app.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return container App.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- ContainerAppInner createOrUpdate(
- String resourceGroupName, String containerAppName, ContainerAppInner containerAppEnvelope);
+ ContainerAppInner createOrUpdate(String resourceGroupName, String containerAppName,
+ ContainerAppInner containerAppEnvelope);
/**
* Create or update a Container App.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @param containerAppEnvelope Properties used to create a container app.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return container App.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- ContainerAppInner createOrUpdate(
- String resourceGroupName, String containerAppName, ContainerAppInner containerAppEnvelope, Context context);
+ ContainerAppInner createOrUpdate(String resourceGroupName, String containerAppName,
+ ContainerAppInner containerAppEnvelope, Context context);
/**
* Delete a Container App.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link SyncPoller} for polling of long-running operation.
*/
@@ -185,13 +187,13 @@ ContainerAppInner createOrUpdate(
/**
* Delete a Container App.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link SyncPoller} for polling of long-running operation.
*/
@@ -200,12 +202,12 @@ ContainerAppInner createOrUpdate(
/**
* Delete a Container App.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
@@ -213,13 +215,13 @@ ContainerAppInner createOrUpdate(
/**
* Delete a Container App.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
@@ -227,52 +229,52 @@ ContainerAppInner createOrUpdate(
/**
* Update properties of a Container App
- *
- * Patches a Container App using JSON Merge Patch.
- *
+ *
+ * Patches a Container App using JSON Merge Patch.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @param containerAppEnvelope Properties of a Container App that need to be updated.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link SyncPoller} for polling of container App.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
- SyncPoller, ContainerAppInner> beginUpdate(
- String resourceGroupName, String containerAppName, ContainerAppInner containerAppEnvelope);
+ SyncPoller, ContainerAppInner> beginUpdate(String resourceGroupName,
+ String containerAppName, ContainerAppInner containerAppEnvelope);
/**
* Update properties of a Container App
- *
- * Patches a Container App using JSON Merge Patch.
- *
+ *
+ * Patches a Container App using JSON Merge Patch.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @param containerAppEnvelope Properties of a Container App that need to be updated.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link SyncPoller} for polling of container App.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
- SyncPoller, ContainerAppInner> beginUpdate(
- String resourceGroupName, String containerAppName, ContainerAppInner containerAppEnvelope, Context context);
+ SyncPoller, ContainerAppInner> beginUpdate(String resourceGroupName,
+ String containerAppName, ContainerAppInner containerAppEnvelope, Context context);
/**
* Update properties of a Container App
- *
- * Patches a Container App using JSON Merge Patch.
- *
+ *
+ * Patches a Container App using JSON Merge Patch.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @param containerAppEnvelope Properties of a Container App that need to be updated.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return container App.
*/
@@ -281,48 +283,48 @@ SyncPoller, ContainerAppInner> beginUpdate(
/**
* Update properties of a Container App
- *
- * Patches a Container App using JSON Merge Patch.
- *
+ *
+ * Patches a Container App using JSON Merge Patch.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @param containerAppEnvelope Properties of a Container App that need to be updated.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return container App.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- ContainerAppInner update(
- String resourceGroupName, String containerAppName, ContainerAppInner containerAppEnvelope, Context context);
+ ContainerAppInner update(String resourceGroupName, String containerAppName, ContainerAppInner containerAppEnvelope,
+ Context context);
/**
* Analyzes a custom hostname for a Container App.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @param customHostname Custom hostname.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return custom domain analysis along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response listCustomHostnameAnalysisWithResponse(
- String resourceGroupName, String containerAppName, String customHostname, Context context);
+ Response listCustomHostnameAnalysisWithResponse(String resourceGroupName,
+ String containerAppName, String customHostname, Context context);
/**
* Analyzes a custom hostname for a Container App.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return custom domain analysis.
*/
@@ -331,28 +333,28 @@ Response listCustomHostnameAnalysisWithRespon
/**
* List secrets for a container app.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return container App Secrets Collection ARM resource along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response listSecretsWithResponse(
- String resourceGroupName, String containerAppName, Context context);
+ Response listSecretsWithResponse(String resourceGroupName, String containerAppName,
+ Context context);
/**
* List secrets for a container app.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return container App Secrets Collection ARM resource.
*/
@@ -361,32 +363,32 @@ Response listSecretsWithResponse(
/**
* Get auth token for a container app.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server on
- * status code 404.
+ * status code 404.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return auth token for a container app along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response getAuthTokenWithResponse(
- String resourceGroupName, String containerAppName, Context context);
+ Response getAuthTokenWithResponse(String resourceGroupName, String containerAppName,
+ Context context);
/**
* Get auth token for a container app.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server on
- * status code 404.
+ * status code 404.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return auth token for a container app.
*/
@@ -395,43 +397,43 @@ Response getAuthTokenWithResponse(
/**
* Start a container app.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link SyncPoller} for polling of container App.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
- SyncPoller, ContainerAppInner> beginStart(
- String resourceGroupName, String containerAppName);
+ SyncPoller, ContainerAppInner> beginStart(String resourceGroupName,
+ String containerAppName);
/**
* Start a container app.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link SyncPoller} for polling of container App.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
- SyncPoller, ContainerAppInner> beginStart(
- String resourceGroupName, String containerAppName, Context context);
+ SyncPoller, ContainerAppInner> beginStart(String resourceGroupName,
+ String containerAppName, Context context);
/**
* Start a container app.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return container App.
*/
@@ -440,13 +442,13 @@ SyncPoller, ContainerAppInner> beginStart(
/**
* Start a container app.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return container App.
*/
@@ -455,43 +457,43 @@ SyncPoller, ContainerAppInner> beginStart(
/**
* Stop a container app.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link SyncPoller} for polling of container App.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
- SyncPoller, ContainerAppInner> beginStop(
- String resourceGroupName, String containerAppName);
+ SyncPoller, ContainerAppInner> beginStop(String resourceGroupName,
+ String containerAppName);
/**
* Stop a container app.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link SyncPoller} for polling of container App.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
- SyncPoller, ContainerAppInner> beginStop(
- String resourceGroupName, String containerAppName, Context context);
+ SyncPoller, ContainerAppInner> beginStop(String resourceGroupName,
+ String containerAppName, Context context);
/**
* Stop a container app.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return container App.
*/
@@ -500,13 +502,13 @@ SyncPoller, ContainerAppInner> beginStop(
/**
* Stop a container app.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return container App.
*/
diff --git a/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ContainerAppsDiagnosticsClient.java b/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ContainerAppsDiagnosticsClient.java
index ed4321095d88..6460fb251e7a 100644
--- a/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ContainerAppsDiagnosticsClient.java
+++ b/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ContainerAppsDiagnosticsClient.java
@@ -13,16 +13,18 @@
import com.azure.resourcemanager.appcontainers.fluent.models.DiagnosticsInner;
import com.azure.resourcemanager.appcontainers.fluent.models.RevisionInner;
-/** An instance of this class provides access to all the operations defined in ContainerAppsDiagnosticsClient. */
+/**
+ * An instance of this class provides access to all the operations defined in ContainerAppsDiagnosticsClient.
+ */
public interface ContainerAppsDiagnosticsClient {
/**
* Get the list of diagnostics for a given Container App.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App for which detector info is needed.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the list of diagnostics for a given Container App as paginated response with {@link PagedIterable}.
*/
@@ -31,13 +33,13 @@ public interface ContainerAppsDiagnosticsClient {
/**
* Get the list of diagnostics for a given Container App.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App for which detector info is needed.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the list of diagnostics for a given Container App as paginated response with {@link PagedIterable}.
*/
@@ -46,30 +48,30 @@ public interface ContainerAppsDiagnosticsClient {
/**
* Get a diagnostics result of a Container App.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @param detectorName Name of the Container App Detector.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return a diagnostics result of a Container App along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response getDetectorWithResponse(
- String resourceGroupName, String containerAppName, String detectorName, Context context);
+ Response getDetectorWithResponse(String resourceGroupName, String containerAppName,
+ String detectorName, Context context);
/**
* Get a diagnostics result of a Container App.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @param detectorName Name of the Container App Detector.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return a diagnostics result of a Container App.
*/
@@ -78,12 +80,12 @@ Response getDetectorWithResponse(
/**
* Get the Revisions for a given Container App.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App for which Revisions are needed.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the Revisions for a given Container App as paginated response with {@link PagedIterable}.
*/
@@ -92,47 +94,47 @@ Response getDetectorWithResponse(
/**
* Get the Revisions for a given Container App.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App for which Revisions are needed.
* @param filter The filter to apply on the operation.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the Revisions for a given Container App as paginated response with {@link PagedIterable}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
- PagedIterable listRevisions(
- String resourceGroupName, String containerAppName, String filter, Context context);
+ PagedIterable listRevisions(String resourceGroupName, String containerAppName, String filter,
+ Context context);
/**
* Get a revision of a Container App.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @param revisionName Name of the Container App Revision.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return a revision of a Container App along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response getRevisionWithResponse(
- String resourceGroupName, String containerAppName, String revisionName, Context context);
+ Response getRevisionWithResponse(String resourceGroupName, String containerAppName,
+ String revisionName, Context context);
/**
* Get a revision of a Container App.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @param revisionName Name of the Container App Revision.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return a revision of a Container App.
*/
@@ -141,15 +143,15 @@ Response getRevisionWithResponse(
/**
* Get the properties of a Container App.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server on
- * status code 404.
+ * status code 404.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the properties of a Container App along with {@link Response}.
*/
@@ -158,14 +160,14 @@ Response getRevisionWithResponse(
/**
* Get the properties of a Container App.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server on
- * status code 404.
+ * status code 404.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the properties of a Container App.
*/
diff --git a/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ContainerAppsRevisionReplicasClient.java b/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ContainerAppsRevisionReplicasClient.java
index 79ad30876622..05a7e08c569a 100644
--- a/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ContainerAppsRevisionReplicasClient.java
+++ b/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ContainerAppsRevisionReplicasClient.java
@@ -11,11 +11,13 @@
import com.azure.resourcemanager.appcontainers.fluent.models.ReplicaCollectionInner;
import com.azure.resourcemanager.appcontainers.fluent.models.ReplicaInner;
-/** An instance of this class provides access to all the operations defined in ContainerAppsRevisionReplicasClient. */
+/**
+ * An instance of this class provides access to all the operations defined in ContainerAppsRevisionReplicasClient.
+ */
public interface ContainerAppsRevisionReplicasClient {
/**
* Get a replica for a Container App Revision.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @param revisionName Name of the Container App Revision.
@@ -23,24 +25,24 @@ public interface ContainerAppsRevisionReplicasClient {
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return a replica for a Container App Revision along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response getReplicaWithResponse(
- String resourceGroupName, String containerAppName, String revisionName, String replicaName, Context context);
+ Response getReplicaWithResponse(String resourceGroupName, String containerAppName,
+ String revisionName, String replicaName, Context context);
/**
* Get a replica for a Container App Revision.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @param revisionName Name of the Container App Revision.
* @param replicaName Name of the Container App Revision Replica.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return a replica for a Container App Revision.
*/
@@ -49,30 +51,30 @@ Response getReplicaWithResponse(
/**
* List replicas for a Container App Revision.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @param revisionName Name of the Container App Revision.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return container App Revision Replicas collection ARM resource along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response listReplicasWithResponse(
- String resourceGroupName, String containerAppName, String revisionName, Context context);
+ Response listReplicasWithResponse(String resourceGroupName, String containerAppName,
+ String revisionName, Context context);
/**
* List replicas for a Container App Revision.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @param revisionName Name of the Container App Revision.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return container App Revision Replicas collection ARM resource.
*/
diff --git a/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ContainerAppsRevisionsClient.java b/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ContainerAppsRevisionsClient.java
index fc706efbed30..c8079e70967d 100644
--- a/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ContainerAppsRevisionsClient.java
+++ b/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ContainerAppsRevisionsClient.java
@@ -11,16 +11,18 @@
import com.azure.core.util.Context;
import com.azure.resourcemanager.appcontainers.fluent.models.RevisionInner;
-/** An instance of this class provides access to all the operations defined in ContainerAppsRevisionsClient. */
+/**
+ * An instance of this class provides access to all the operations defined in ContainerAppsRevisionsClient.
+ */
public interface ContainerAppsRevisionsClient {
/**
* Get the Revisions for a given Container App.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App for which Revisions are needed.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the Revisions for a given Container App as paginated response with {@link PagedIterable}.
*/
@@ -29,47 +31,47 @@ public interface ContainerAppsRevisionsClient {
/**
* Get the Revisions for a given Container App.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App for which Revisions are needed.
* @param filter The filter to apply on the operation.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the Revisions for a given Container App as paginated response with {@link PagedIterable}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
- PagedIterable listRevisions(
- String resourceGroupName, String containerAppName, String filter, Context context);
+ PagedIterable listRevisions(String resourceGroupName, String containerAppName, String filter,
+ Context context);
/**
* Get a revision of a Container App.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @param revisionName Name of the Container App Revision.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return a revision of a Container App along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response getRevisionWithResponse(
- String resourceGroupName, String containerAppName, String revisionName, Context context);
+ Response getRevisionWithResponse(String resourceGroupName, String containerAppName,
+ String revisionName, Context context);
/**
* Get a revision of a Container App.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @param revisionName Name of the Container App Revision.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return a revision of a Container App.
*/
@@ -78,30 +80,30 @@ Response getRevisionWithResponse(
/**
* Activates a revision for a Container App.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @param revisionName Name of the Container App Revision.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response activateRevisionWithResponse(
- String resourceGroupName, String containerAppName, String revisionName, Context context);
+ Response activateRevisionWithResponse(String resourceGroupName, String containerAppName, String revisionName,
+ Context context);
/**
* Activates a revision for a Container App.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @param revisionName Name of the Container App Revision.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
@@ -109,30 +111,30 @@ Response activateRevisionWithResponse(
/**
* Deactivates a revision for a Container App.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @param revisionName Name of the Container App Revision.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response deactivateRevisionWithResponse(
- String resourceGroupName, String containerAppName, String revisionName, Context context);
+ Response deactivateRevisionWithResponse(String resourceGroupName, String containerAppName,
+ String revisionName, Context context);
/**
* Deactivates a revision for a Container App.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @param revisionName Name of the Container App Revision.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
@@ -140,30 +142,30 @@ Response deactivateRevisionWithResponse(
/**
* Restarts a revision for a Container App.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @param revisionName Name of the Container App Revision.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response restartRevisionWithResponse(
- String resourceGroupName, String containerAppName, String revisionName, Context context);
+ Response restartRevisionWithResponse(String resourceGroupName, String containerAppName, String revisionName,
+ Context context);
/**
* Restarts a revision for a Container App.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @param revisionName Name of the Container App Revision.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
diff --git a/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ContainerAppsSourceControlsClient.java b/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ContainerAppsSourceControlsClient.java
index 52444e4f6782..1d972a062004 100644
--- a/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ContainerAppsSourceControlsClient.java
+++ b/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ContainerAppsSourceControlsClient.java
@@ -13,66 +13,68 @@
import com.azure.core.util.polling.SyncPoller;
import com.azure.resourcemanager.appcontainers.fluent.models.SourceControlInner;
-/** An instance of this class provides access to all the operations defined in ContainerAppsSourceControlsClient. */
+/**
+ * An instance of this class provides access to all the operations defined in ContainerAppsSourceControlsClient.
+ */
public interface ContainerAppsSourceControlsClient {
/**
* Get the Container App SourceControls in a given resource group.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
- * @return the Container App SourceControls in a given resource group as paginated response with {@link
- * PagedIterable}.
+ * @return the Container App SourceControls in a given resource group as paginated response with
+ * {@link PagedIterable}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
PagedIterable listByContainerApp(String resourceGroupName, String containerAppName);
/**
* Get the Container App SourceControls in a given resource group.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
- * @return the Container App SourceControls in a given resource group as paginated response with {@link
- * PagedIterable}.
+ * @return the Container App SourceControls in a given resource group as paginated response with
+ * {@link PagedIterable}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
- PagedIterable listByContainerApp(
- String resourceGroupName, String containerAppName, Context context);
+ PagedIterable listByContainerApp(String resourceGroupName, String containerAppName,
+ Context context);
/**
* Get a SourceControl of a Container App.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @param sourceControlName Name of the Container App SourceControl.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return a SourceControl of a Container App along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response getWithResponse(
- String resourceGroupName, String containerAppName, String sourceControlName, Context context);
+ Response getWithResponse(String resourceGroupName, String containerAppName,
+ String sourceControlName, Context context);
/**
* Get a SourceControl of a Container App.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @param sourceControlName Name of the Container App SourceControl.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return a SourceControl of a Container App.
*/
@@ -81,27 +83,24 @@ Response getWithResponse(
/**
* Create or update the SourceControl for a Container App.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @param sourceControlName Name of the Container App SourceControl.
* @param sourceControlEnvelope Properties used to create a Container App SourceControl.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link SyncPoller} for polling of container App SourceControl.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
- SyncPoller, SourceControlInner> beginCreateOrUpdate(
- String resourceGroupName,
- String containerAppName,
- String sourceControlName,
- SourceControlInner sourceControlEnvelope);
+ SyncPoller, SourceControlInner> beginCreateOrUpdate(String resourceGroupName,
+ String containerAppName, String sourceControlName, SourceControlInner sourceControlEnvelope);
/**
* Create or update the SourceControl for a Container App.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @param sourceControlName Name of the Container App SourceControl.
@@ -109,41 +108,34 @@ SyncPoller, SourceControlInner> beginCreateOrUpda
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link SyncPoller} for polling of container App SourceControl.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
- SyncPoller, SourceControlInner> beginCreateOrUpdate(
- String resourceGroupName,
- String containerAppName,
- String sourceControlName,
- SourceControlInner sourceControlEnvelope,
- Context context);
+ SyncPoller, SourceControlInner> beginCreateOrUpdate(String resourceGroupName,
+ String containerAppName, String sourceControlName, SourceControlInner sourceControlEnvelope, Context context);
/**
* Create or update the SourceControl for a Container App.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @param sourceControlName Name of the Container App SourceControl.
* @param sourceControlEnvelope Properties used to create a Container App SourceControl.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return container App SourceControl.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- SourceControlInner createOrUpdate(
- String resourceGroupName,
- String containerAppName,
- String sourceControlName,
+ SourceControlInner createOrUpdate(String resourceGroupName, String containerAppName, String sourceControlName,
SourceControlInner sourceControlEnvelope);
/**
* Create or update the SourceControl for a Container App.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @param sourceControlName Name of the Container App SourceControl.
@@ -151,60 +143,56 @@ SourceControlInner createOrUpdate(
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return container App SourceControl.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- SourceControlInner createOrUpdate(
- String resourceGroupName,
- String containerAppName,
- String sourceControlName,
- SourceControlInner sourceControlEnvelope,
- Context context);
+ SourceControlInner createOrUpdate(String resourceGroupName, String containerAppName, String sourceControlName,
+ SourceControlInner sourceControlEnvelope, Context context);
/**
* Delete a Container App SourceControl.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @param sourceControlName Name of the Container App SourceControl.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link SyncPoller} for polling of long-running operation.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
- SyncPoller, Void> beginDelete(
- String resourceGroupName, String containerAppName, String sourceControlName);
+ SyncPoller, Void> beginDelete(String resourceGroupName, String containerAppName,
+ String sourceControlName);
/**
* Delete a Container App SourceControl.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @param sourceControlName Name of the Container App SourceControl.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link SyncPoller} for polling of long-running operation.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
- SyncPoller, Void> beginDelete(
- String resourceGroupName, String containerAppName, String sourceControlName, Context context);
+ SyncPoller, Void> beginDelete(String resourceGroupName, String containerAppName,
+ String sourceControlName, Context context);
/**
* Delete a Container App SourceControl.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @param sourceControlName Name of the Container App SourceControl.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
@@ -212,14 +200,14 @@ SyncPoller, Void> beginDelete(
/**
* Delete a Container App SourceControl.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param containerAppName Name of the Container App.
* @param sourceControlName Name of the Container App SourceControl.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
diff --git a/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/DaprComponentsClient.java b/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/DaprComponentsClient.java
index 62358a5fc62a..cac5b28a2004 100644
--- a/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/DaprComponentsClient.java
+++ b/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/DaprComponentsClient.java
@@ -12,16 +12,18 @@
import com.azure.resourcemanager.appcontainers.fluent.models.DaprComponentInner;
import com.azure.resourcemanager.appcontainers.fluent.models.DaprSecretsCollectionInner;
-/** An instance of this class provides access to all the operations defined in DaprComponentsClient. */
+/**
+ * An instance of this class provides access to all the operations defined in DaprComponentsClient.
+ */
public interface DaprComponentsClient {
/**
* Get the Dapr Components for a managed environment.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param environmentName Name of the Managed Environment.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the Dapr Components for a managed environment as paginated response with {@link PagedIterable}.
*/
@@ -30,13 +32,13 @@ public interface DaprComponentsClient {
/**
* Get the Dapr Components for a managed environment.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param environmentName Name of the Managed Environment.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the Dapr Components for a managed environment as paginated response with {@link PagedIterable}.
*/
@@ -45,30 +47,30 @@ public interface DaprComponentsClient {
/**
* Get a dapr component.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param environmentName Name of the Managed Environment.
* @param componentName Name of the Dapr Component.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return a dapr component along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response getWithResponse(
- String resourceGroupName, String environmentName, String componentName, Context context);
+ Response getWithResponse(String resourceGroupName, String environmentName, String componentName,
+ Context context);
/**
* Get a dapr component.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param environmentName Name of the Managed Environment.
* @param componentName Name of the Dapr Component.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return a dapr component.
*/
@@ -77,9 +79,9 @@ Response getWithResponse(
/**
* Creates or updates a Dapr Component.
- *
- * Creates or updates a Dapr Component in a Managed Environment.
- *
+ *
+ * Creates or updates a Dapr Component in a Managed Environment.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param environmentName Name of the Managed Environment.
* @param componentName Name of the Dapr Component.
@@ -87,70 +89,63 @@ Response getWithResponse(
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return dapr Component along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response createOrUpdateWithResponse(
- String resourceGroupName,
- String environmentName,
- String componentName,
- DaprComponentInner daprComponentEnvelope,
- Context context);
+ Response createOrUpdateWithResponse(String resourceGroupName, String environmentName,
+ String componentName, DaprComponentInner daprComponentEnvelope, Context context);
/**
* Creates or updates a Dapr Component.
- *
- * Creates or updates a Dapr Component in a Managed Environment.
- *
+ *
+ * Creates or updates a Dapr Component in a Managed Environment.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param environmentName Name of the Managed Environment.
* @param componentName Name of the Dapr Component.
* @param daprComponentEnvelope Configuration details of the Dapr Component.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return dapr Component.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- DaprComponentInner createOrUpdate(
- String resourceGroupName,
- String environmentName,
- String componentName,
+ DaprComponentInner createOrUpdate(String resourceGroupName, String environmentName, String componentName,
DaprComponentInner daprComponentEnvelope);
/**
* Delete a Dapr Component.
- *
- *
Delete a Dapr Component from a Managed Environment.
- *
+ *
+ * Delete a Dapr Component from a Managed Environment.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param environmentName Name of the Managed Environment.
* @param componentName Name of the Dapr Component.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response deleteWithResponse(
- String resourceGroupName, String environmentName, String componentName, Context context);
+ Response deleteWithResponse(String resourceGroupName, String environmentName, String componentName,
+ Context context);
/**
* Delete a Dapr Component.
- *
- * Delete a Dapr Component from a Managed Environment.
- *
+ *
+ * Delete a Dapr Component from a Managed Environment.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param environmentName Name of the Managed Environment.
* @param componentName Name of the Dapr Component.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
@@ -158,30 +153,30 @@ Response deleteWithResponse(
/**
* List secrets for a dapr component.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param environmentName Name of the Managed Environment.
* @param componentName Name of the Dapr Component.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return dapr component Secrets Collection for ListSecrets Action along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response listSecretsWithResponse(
- String resourceGroupName, String environmentName, String componentName, Context context);
+ Response listSecretsWithResponse(String resourceGroupName, String environmentName,
+ String componentName, Context context);
/**
* List secrets for a dapr component.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param environmentName Name of the Managed Environment.
* @param componentName Name of the Dapr Component.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return dapr component Secrets Collection for ListSecrets Action.
*/
diff --git a/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/JobsClient.java b/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/JobsClient.java
index 934466bbe8ec..916dd44ae48d 100644
--- a/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/JobsClient.java
+++ b/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/JobsClient.java
@@ -18,13 +18,15 @@
import com.azure.resourcemanager.appcontainers.models.JobExecutionTemplate;
import com.azure.resourcemanager.appcontainers.models.JobPatchProperties;
-/** An instance of this class provides access to all the operations defined in JobsClient. */
+/**
+ * An instance of this class provides access to all the operations defined in JobsClient.
+ */
public interface JobsClient {
/**
* Get the Container Apps Jobs in a given subscription.
- *
+ *
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the Container Apps Jobs in a given subscription as paginated response with {@link PagedIterable}.
*/
@@ -33,11 +35,11 @@ public interface JobsClient {
/**
* Get the Container Apps Jobs in a given subscription.
- *
+ *
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the Container Apps Jobs in a given subscription as paginated response with {@link PagedIterable}.
*/
@@ -46,11 +48,11 @@ public interface JobsClient {
/**
* Get the Container Apps Jobs in a given resource group.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the Container Apps Jobs in a given resource group as paginated response with {@link PagedIterable}.
*/
@@ -59,12 +61,12 @@ public interface JobsClient {
/**
* Get the Container Apps Jobs in a given resource group.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the Container Apps Jobs in a given resource group as paginated response with {@link PagedIterable}.
*/
@@ -73,13 +75,13 @@ public interface JobsClient {
/**
* Get the properties of a Container Apps Job.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param jobName Job Name.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the properties of a Container Apps Job along with {@link Response}.
*/
@@ -88,12 +90,12 @@ public interface JobsClient {
/**
* Get the properties of a Container Apps Job.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param jobName Job Name.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the properties of a Container Apps Job.
*/
@@ -102,46 +104,46 @@ public interface JobsClient {
/**
* Create or Update a Container Apps Job.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param jobName Job Name.
* @param jobEnvelope Properties used to create a container apps job.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link SyncPoller} for polling of container App Job.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
- SyncPoller, JobInner> beginCreateOrUpdate(
- String resourceGroupName, String jobName, JobInner jobEnvelope);
+ SyncPoller, JobInner> beginCreateOrUpdate(String resourceGroupName, String jobName,
+ JobInner jobEnvelope);
/**
* Create or Update a Container Apps Job.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param jobName Job Name.
* @param jobEnvelope Properties used to create a container apps job.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link SyncPoller} for polling of container App Job.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
- SyncPoller, JobInner> beginCreateOrUpdate(
- String resourceGroupName, String jobName, JobInner jobEnvelope, Context context);
+ SyncPoller, JobInner> beginCreateOrUpdate(String resourceGroupName, String jobName,
+ JobInner jobEnvelope, Context context);
/**
* Create or Update a Container Apps Job.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param jobName Job Name.
* @param jobEnvelope Properties used to create a container apps job.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return container App Job.
*/
@@ -150,14 +152,14 @@ SyncPoller, JobInner> beginCreateOrUpdate(
/**
* Create or Update a Container Apps Job.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param jobName Job Name.
* @param jobEnvelope Properties used to create a container apps job.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return container App Job.
*/
@@ -166,12 +168,12 @@ SyncPoller, JobInner> beginCreateOrUpdate(
/**
* Delete a Container Apps Job.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param jobName Job Name.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link SyncPoller} for polling of long-running operation.
*/
@@ -180,13 +182,13 @@ SyncPoller, JobInner> beginCreateOrUpdate(
/**
* Delete a Container Apps Job.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param jobName Job Name.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link SyncPoller} for polling of long-running operation.
*/
@@ -195,12 +197,12 @@ SyncPoller, JobInner> beginCreateOrUpdate(
/**
* Delete a Container Apps Job.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param jobName Job Name.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
@@ -208,13 +210,13 @@ SyncPoller, JobInner> beginCreateOrUpdate(
/**
* Delete a Container Apps Job.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param jobName Job Name.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
@@ -222,52 +224,52 @@ SyncPoller, JobInner> beginCreateOrUpdate(
/**
* Update properties of a Container Apps Job
- *
- * Patches a Container Apps Job using JSON Merge Patch.
- *
+ *
+ * Patches a Container Apps Job using JSON Merge Patch.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param jobName Job Name.
* @param jobEnvelope Properties used to create a container apps job.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link SyncPoller} for polling of container App Job.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
- SyncPoller, JobInner> beginUpdate(
- String resourceGroupName, String jobName, JobPatchProperties jobEnvelope);
+ SyncPoller, JobInner> beginUpdate(String resourceGroupName, String jobName,
+ JobPatchProperties jobEnvelope);
/**
* Update properties of a Container Apps Job
- *
- * Patches a Container Apps Job using JSON Merge Patch.
- *
+ *
+ * Patches a Container Apps Job using JSON Merge Patch.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param jobName Job Name.
* @param jobEnvelope Properties used to create a container apps job.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link SyncPoller} for polling of container App Job.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
- SyncPoller, JobInner> beginUpdate(
- String resourceGroupName, String jobName, JobPatchProperties jobEnvelope, Context context);
+ SyncPoller, JobInner> beginUpdate(String resourceGroupName, String jobName,
+ JobPatchProperties jobEnvelope, Context context);
/**
* Update properties of a Container Apps Job
- *
- * Patches a Container Apps Job using JSON Merge Patch.
- *
+ *
+ * Patches a Container Apps Job using JSON Merge Patch.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param jobName Job Name.
* @param jobEnvelope Properties used to create a container apps job.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return container App Job.
*/
@@ -276,16 +278,16 @@ SyncPoller, JobInner> beginUpdate(
/**
* Update properties of a Container Apps Job
- *
- * Patches a Container Apps Job using JSON Merge Patch.
- *
+ *
+ * Patches a Container Apps Job using JSON Merge Patch.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param jobName Job Name.
* @param jobEnvelope Properties used to create a container apps job.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return container App Job.
*/
@@ -294,44 +296,44 @@ SyncPoller, JobInner> beginUpdate(
/**
* Start a Container Apps Job.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param jobName Job Name.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link SyncPoller} for polling of container App's Job execution name.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
- SyncPoller, JobExecutionBaseInner> beginStart(
- String resourceGroupName, String jobName);
+ SyncPoller, JobExecutionBaseInner> beginStart(String resourceGroupName,
+ String jobName);
/**
* Start a Container Apps Job.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param jobName Job Name.
* @param template Properties used to start a job execution.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link SyncPoller} for polling of container App's Job execution name.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
- SyncPoller, JobExecutionBaseInner> beginStart(
- String resourceGroupName, String jobName, JobExecutionTemplate template, Context context);
+ SyncPoller, JobExecutionBaseInner> beginStart(String resourceGroupName,
+ String jobName, JobExecutionTemplate template, Context context);
/**
* Start a Container Apps Job.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param jobName Job Name.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return container App's Job execution name.
*/
@@ -340,63 +342,63 @@ SyncPoller, JobExecutionBaseInner> beginStart(
/**
* Start a Container Apps Job.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param jobName Job Name.
* @param template Properties used to start a job execution.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return container App's Job execution name.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- JobExecutionBaseInner start(
- String resourceGroupName, String jobName, JobExecutionTemplate template, Context context);
+ JobExecutionBaseInner start(String resourceGroupName, String jobName, JobExecutionTemplate template,
+ Context context);
/**
* Terminates execution of a running container apps job.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param jobName Job Name.
* @param jobExecutionName Job execution name.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link SyncPoller} for polling of long-running operation.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
- SyncPoller, Void> beginStopExecution(
- String resourceGroupName, String jobName, String jobExecutionName);
+ SyncPoller, Void> beginStopExecution(String resourceGroupName, String jobName,
+ String jobExecutionName);
/**
* Terminates execution of a running container apps job.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param jobName Job Name.
* @param jobExecutionName Job execution name.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link SyncPoller} for polling of long-running operation.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
- SyncPoller, Void> beginStopExecution(
- String resourceGroupName, String jobName, String jobExecutionName, Context context);
+ SyncPoller, Void> beginStopExecution(String resourceGroupName, String jobName,
+ String jobExecutionName, Context context);
/**
* Terminates execution of a running container apps job.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param jobName Job Name.
* @param jobExecutionName Job execution name.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
@@ -404,14 +406,14 @@ SyncPoller, Void> beginStopExecution(
/**
* Terminates execution of a running container apps job.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param jobName Job Name.
* @param jobExecutionName Job execution name.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
@@ -419,43 +421,43 @@ SyncPoller, Void> beginStopExecution(
/**
* Terminates execution of a running container apps job.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param jobName Job Name.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link SyncPoller} for polling of container App executions collection ARM resource.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
- SyncPoller, ContainerAppJobExecutionsInner> beginStopMultipleExecutions(
- String resourceGroupName, String jobName);
+ SyncPoller, ContainerAppJobExecutionsInner>
+ beginStopMultipleExecutions(String resourceGroupName, String jobName);
/**
* Terminates execution of a running container apps job.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param jobName Job Name.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link SyncPoller} for polling of container App executions collection ARM resource.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
- SyncPoller, ContainerAppJobExecutionsInner> beginStopMultipleExecutions(
- String resourceGroupName, String jobName, Context context);
+ SyncPoller, ContainerAppJobExecutionsInner>
+ beginStopMultipleExecutions(String resourceGroupName, String jobName, Context context);
/**
* Terminates execution of a running container apps job.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param jobName Job Name.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return container App executions collection ARM resource.
*/
@@ -464,13 +466,13 @@ SyncPoller, ContainerAppJobExecutions
/**
* Terminates execution of a running container apps job.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param jobName Job Name.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return container App executions collection ARM resource.
*/
@@ -479,28 +481,28 @@ SyncPoller, ContainerAppJobExecutions
/**
* List secrets for a container apps job.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param jobName Job Name.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return container Apps Job Secrets Collection ARM resource along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response listSecretsWithResponse(
- String resourceGroupName, String jobName, Context context);
+ Response listSecretsWithResponse(String resourceGroupName, String jobName,
+ Context context);
/**
* List secrets for a container apps job.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param jobName Job Name.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return container Apps Job Secrets Collection ARM resource.
*/
diff --git a/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/JobsExecutionsClient.java b/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/JobsExecutionsClient.java
index 402658e9be84..d9c95e6f4a71 100644
--- a/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/JobsExecutionsClient.java
+++ b/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/JobsExecutionsClient.java
@@ -10,16 +10,18 @@
import com.azure.core.util.Context;
import com.azure.resourcemanager.appcontainers.fluent.models.JobExecutionInner;
-/** An instance of this class provides access to all the operations defined in JobsExecutionsClient. */
+/**
+ * An instance of this class provides access to all the operations defined in JobsExecutionsClient.
+ */
public interface JobsExecutionsClient {
/**
* Get a Container Apps Job's executions.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param jobName Job Name.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return a Container Apps Job's executions as paginated response with {@link PagedIterable}.
*/
@@ -28,14 +30,14 @@ public interface JobsExecutionsClient {
/**
* Get a Container Apps Job's executions.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param jobName Job Name.
* @param filter The filter to apply on the operation.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return a Container Apps Job's executions as paginated response with {@link PagedIterable}.
*/
diff --git a/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ManagedCertificatesClient.java b/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ManagedCertificatesClient.java
index 30113c809f0d..37406c086470 100644
--- a/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ManagedCertificatesClient.java
+++ b/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ManagedCertificatesClient.java
@@ -14,34 +14,36 @@
import com.azure.resourcemanager.appcontainers.fluent.models.ManagedCertificateInner;
import com.azure.resourcemanager.appcontainers.models.ManagedCertificatePatch;
-/** An instance of this class provides access to all the operations defined in ManagedCertificatesClient. */
+/**
+ * An instance of this class provides access to all the operations defined in ManagedCertificatesClient.
+ */
public interface ManagedCertificatesClient {
/**
* Get the specified Managed Certificate.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param environmentName Name of the Managed Environment.
* @param managedCertificateName Name of the Managed Certificate.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the specified Managed Certificate along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response getWithResponse(
- String resourceGroupName, String environmentName, String managedCertificateName, Context context);
+ Response getWithResponse(String resourceGroupName, String environmentName,
+ String managedCertificateName, Context context);
/**
* Get the specified Managed Certificate.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param environmentName Name of the Managed Environment.
* @param managedCertificateName Name of the Managed Certificate.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the specified Managed Certificate.
*/
@@ -50,26 +52,26 @@ Response getWithResponse(
/**
* Create or Update a Managed Certificate.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param environmentName Name of the Managed Environment.
* @param managedCertificateName Name of the Managed Certificate.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server on
- * status code 400.
+ * status code 400.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link SyncPoller} for polling of managed certificates used for Custom Domain bindings of Container
- * Apps in a Managed Environment.
+ * Apps in a Managed Environment.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
- SyncPoller, ManagedCertificateInner> beginCreateOrUpdate(
- String resourceGroupName, String environmentName, String managedCertificateName);
+ SyncPoller, ManagedCertificateInner>
+ beginCreateOrUpdate(String resourceGroupName, String environmentName, String managedCertificateName);
/**
* Create or Update a Managed Certificate.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param environmentName Name of the Managed Environment.
* @param managedCertificateName Name of the Managed Certificate.
@@ -77,42 +79,39 @@ SyncPoller, ManagedCertificateInner> beginCr
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server on
- * status code 400.
+ * status code 400.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link SyncPoller} for polling of managed certificates used for Custom Domain bindings of Container
- * Apps in a Managed Environment.
+ * Apps in a Managed Environment.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
SyncPoller, ManagedCertificateInner> beginCreateOrUpdate(
- String resourceGroupName,
- String environmentName,
- String managedCertificateName,
- ManagedCertificateInner managedCertificateEnvelope,
- Context context);
+ String resourceGroupName, String environmentName, String managedCertificateName,
+ ManagedCertificateInner managedCertificateEnvelope, Context context);
/**
* Create or Update a Managed Certificate.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param environmentName Name of the Managed Environment.
* @param managedCertificateName Name of the Managed Certificate.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server on
- * status code 400.
+ * status code 400.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return managed certificates used for Custom Domain bindings of Container Apps in a Managed Environment.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- ManagedCertificateInner createOrUpdate(
- String resourceGroupName, String environmentName, String managedCertificateName);
+ ManagedCertificateInner createOrUpdate(String resourceGroupName, String environmentName,
+ String managedCertificateName);
/**
* Create or Update a Managed Certificate.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param environmentName Name of the Managed Environment.
* @param managedCertificateName Name of the Managed Certificate.
@@ -120,46 +119,42 @@ ManagedCertificateInner createOrUpdate(
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server on
- * status code 400.
+ * status code 400.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return managed certificates used for Custom Domain bindings of Container Apps in a Managed Environment.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- ManagedCertificateInner createOrUpdate(
- String resourceGroupName,
- String environmentName,
- String managedCertificateName,
- ManagedCertificateInner managedCertificateEnvelope,
- Context context);
+ ManagedCertificateInner createOrUpdate(String resourceGroupName, String environmentName,
+ String managedCertificateName, ManagedCertificateInner managedCertificateEnvelope, Context context);
/**
* Deletes the specified Managed Certificate.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param environmentName Name of the Managed Environment.
* @param managedCertificateName Name of the Managed Certificate.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response deleteWithResponse(
- String resourceGroupName, String environmentName, String managedCertificateName, Context context);
+ Response deleteWithResponse(String resourceGroupName, String environmentName, String managedCertificateName,
+ Context context);
/**
* Deletes the specified Managed Certificate.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param environmentName Name of the Managed Environment.
* @param managedCertificateName Name of the Managed Certificate.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
@@ -167,9 +162,9 @@ Response deleteWithResponse(
/**
* Update tags of a managed certificate
- *
- * Patches a managed certificate. Oly patching of tags is supported.
- *
+ *
+ * Patches a managed certificate. Oly patching of tags is supported.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param environmentName Name of the Managed Environment.
* @param managedCertificateName Name of the Managed Certificate.
@@ -177,49 +172,42 @@ Response deleteWithResponse(
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return managed certificates used for Custom Domain bindings of Container Apps in a Managed Environment along
- * with {@link Response}.
+ * with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response updateWithResponse(
- String resourceGroupName,
- String environmentName,
- String managedCertificateName,
- ManagedCertificatePatch managedCertificateEnvelope,
- Context context);
+ Response updateWithResponse(String resourceGroupName, String environmentName,
+ String managedCertificateName, ManagedCertificatePatch managedCertificateEnvelope, Context context);
/**
* Update tags of a managed certificate
- *
- * Patches a managed certificate. Oly patching of tags is supported.
- *
+ *
+ * Patches a managed certificate. Oly patching of tags is supported.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param environmentName Name of the Managed Environment.
* @param managedCertificateName Name of the Managed Certificate.
* @param managedCertificateEnvelope Properties of a managed certificate that need to be updated.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return managed certificates used for Custom Domain bindings of Container Apps in a Managed Environment.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- ManagedCertificateInner update(
- String resourceGroupName,
- String environmentName,
- String managedCertificateName,
+ ManagedCertificateInner update(String resourceGroupName, String environmentName, String managedCertificateName,
ManagedCertificatePatch managedCertificateEnvelope);
/**
* Get the Managed Certificates in a given managed environment.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param environmentName Name of the Managed Environment.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the Managed Certificates in a given managed environment as paginated response with {@link PagedIterable}.
*/
@@ -228,13 +216,13 @@ ManagedCertificateInner update(
/**
* Get the Managed Certificates in a given managed environment.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param environmentName Name of the Managed Environment.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the Managed Certificates in a given managed environment as paginated response with {@link PagedIterable}.
*/
diff --git a/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ManagedEnvironmentDiagnosticsClient.java b/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ManagedEnvironmentDiagnosticsClient.java
index e42f15fa36a0..9969602d4353 100644
--- a/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ManagedEnvironmentDiagnosticsClient.java
+++ b/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ManagedEnvironmentDiagnosticsClient.java
@@ -11,37 +11,39 @@
import com.azure.resourcemanager.appcontainers.fluent.models.DiagnosticsCollectionInner;
import com.azure.resourcemanager.appcontainers.fluent.models.DiagnosticsInner;
-/** An instance of this class provides access to all the operations defined in ManagedEnvironmentDiagnosticsClient. */
+/**
+ * An instance of this class provides access to all the operations defined in ManagedEnvironmentDiagnosticsClient.
+ */
public interface ManagedEnvironmentDiagnosticsClient {
/**
* Get the list of diagnostics for a given Managed Environment.
- *
- *
Get the list of diagnostics for a Managed Environment used to host container apps.
- *
+ *
+ * Get the list of diagnostics for a Managed Environment used to host container apps.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param environmentName Name of the Environment.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
- * @return the list of diagnostics for a Managed Environment used to host container apps along with {@link
- * Response}.
+ * @return the list of diagnostics for a Managed Environment used to host container apps along with
+ * {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response listDetectorsWithResponse(
- String resourceGroupName, String environmentName, Context context);
+ Response listDetectorsWithResponse(String resourceGroupName, String environmentName,
+ Context context);
/**
* Get the list of diagnostics for a given Managed Environment.
- *
- * Get the list of diagnostics for a Managed Environment used to host container apps.
- *
+ *
+ * Get the list of diagnostics for a Managed Environment used to host container apps.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param environmentName Name of the Environment.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the list of diagnostics for a Managed Environment used to host container apps.
*/
@@ -50,34 +52,34 @@ Response listDetectorsWithResponse(
/**
* Get the diagnostics data for a given Managed Environment.
- *
- * Get the diagnostics data for a Managed Environment used to host container apps.
- *
+ *
+ * Get the diagnostics data for a Managed Environment used to host container apps.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param environmentName Name of the Environment.
* @param detectorName Name of the Managed Environment detector.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the diagnostics data for a Managed Environment used to host container apps along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response getDetectorWithResponse(
- String resourceGroupName, String environmentName, String detectorName, Context context);
+ Response getDetectorWithResponse(String resourceGroupName, String environmentName,
+ String detectorName, Context context);
/**
* Get the diagnostics data for a given Managed Environment.
- *
- * Get the diagnostics data for a Managed Environment used to host container apps.
- *
+ *
+ * Get the diagnostics data for a Managed Environment used to host container apps.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param environmentName Name of the Environment.
* @param detectorName Name of the Managed Environment detector.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the diagnostics data for a Managed Environment used to host container apps.
*/
diff --git a/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ManagedEnvironmentsClient.java b/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ManagedEnvironmentsClient.java
index 9631d1323e22..115d58555ac3 100644
--- a/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ManagedEnvironmentsClient.java
+++ b/sdk/appcontainers/azure-resourcemanager-appcontainers/src/main/java/com/azure/resourcemanager/appcontainers/fluent/ManagedEnvironmentsClient.java
@@ -15,15 +15,17 @@
import com.azure.resourcemanager.appcontainers.fluent.models.ManagedEnvironmentInner;
import com.azure.resourcemanager.appcontainers.fluent.models.WorkloadProfileStatesInner;
-/** An instance of this class provides access to all the operations defined in ManagedEnvironmentsClient. */
+/**
+ * An instance of this class provides access to all the operations defined in ManagedEnvironmentsClient.
+ */
public interface ManagedEnvironmentsClient {
/**
* Get all Environments for a subscription.
- *
- *
Get all Managed Environments for a subscription.
- *
+ *
+ * Get all Managed Environments for a subscription.
+ *
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return all Managed Environments for a subscription as paginated response with {@link PagedIterable}.
*/
@@ -32,13 +34,13 @@ public interface ManagedEnvironmentsClient {
/**
* Get all Environments for a subscription.
- *
- *
Get all Managed Environments for a subscription.
- *
+ *
+ * Get all Managed Environments for a subscription.
+ *
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return all Managed Environments for a subscription as paginated response with {@link PagedIterable}.
*/
@@ -47,13 +49,13 @@ public interface ManagedEnvironmentsClient {
/**
* Get all the Environments in a resource group.
- *
- *
Get all the Managed Environments in a resource group.
- *
+ *
+ * Get all the Managed Environments in a resource group.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return all the Managed Environments in a resource group as paginated response with {@link PagedIterable}.
*/
@@ -62,14 +64,14 @@ public interface ManagedEnvironmentsClient {
/**
* Get all the Environments in a resource group.
- *
- *
Get all the Managed Environments in a resource group.
- *
+ *
+ * Get all the Managed Environments in a resource group.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return all the Managed Environments in a resource group as paginated response with {@link PagedIterable}.
*/
@@ -78,32 +80,32 @@ public interface ManagedEnvironmentsClient {
/**
* Get the properties of a Managed Environment.
- *
- *
Get the properties of a Managed Environment used to host container apps.
- *
+ *
+ * Get the properties of a Managed Environment used to host container apps.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param environmentName Name of the Environment.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
- * is rejected by server.
+ * is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the properties of a Managed Environment used to host container apps along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response getByResourceGroupWithResponse(
- String resourceGroupName, String environmentName, Context context);
+ Response