scopes = new ArrayList<>();
+ private RetryPolicy retryPolicy;
+ private RetryOptions retryOptions;
+ private Duration defaultPollInterval;
+
+ private Configurable() {
+ }
+
+ /**
+ * Sets the http client.
+ *
+ * @param httpClient the HTTP client.
+ * @return the configurable object itself.
+ */
+ public Configurable withHttpClient(HttpClient httpClient) {
+ this.httpClient = Objects.requireNonNull(httpClient, "'httpClient' cannot be null.");
+ return this;
+ }
+
+ /**
+ * Sets the logging options to the HTTP pipeline.
+ *
+ * @param httpLogOptions the HTTP log options.
+ * @return the configurable object itself.
+ */
+ public Configurable withLogOptions(HttpLogOptions httpLogOptions) {
+ this.httpLogOptions = Objects.requireNonNull(httpLogOptions, "'httpLogOptions' cannot be null.");
+ return this;
+ }
+
+ /**
+ * Adds the pipeline policy to the HTTP pipeline.
+ *
+ * @param policy the HTTP pipeline policy.
+ * @return the configurable object itself.
+ */
+ public Configurable withPolicy(HttpPipelinePolicy policy) {
+ this.policies.add(Objects.requireNonNull(policy, "'policy' cannot be null."));
+ return this;
+ }
+
+ /**
+ * Adds the scope to permission sets.
+ *
+ * @param scope the scope.
+ * @return the configurable object itself.
+ */
+ public Configurable withScope(String scope) {
+ this.scopes.add(Objects.requireNonNull(scope, "'scope' cannot be null."));
+ return this;
+ }
+
+ /**
+ * Sets the retry policy to the HTTP pipeline.
+ *
+ * @param retryPolicy the HTTP pipeline retry policy.
+ * @return the configurable object itself.
+ */
+ public Configurable withRetryPolicy(RetryPolicy retryPolicy) {
+ this.retryPolicy = Objects.requireNonNull(retryPolicy, "'retryPolicy' cannot be null.");
+ return this;
+ }
+
+ /**
+ * Sets the retry options for the HTTP pipeline retry policy.
+ *
+ * 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.
+ */
+ public Configurable withRetryOptions(RetryOptions retryOptions) {
+ this.retryOptions = Objects.requireNonNull(retryOptions, "'retryOptions' cannot be null.");
+ return this;
+ }
+
+ /**
+ * Sets the default poll interval, used when service does not provide "Retry-After" header.
+ *
+ * @param defaultPollInterval the default poll interval.
+ * @return the configurable object itself.
+ */
+ public Configurable withDefaultPollInterval(Duration defaultPollInterval) {
+ this.defaultPollInterval
+ = Objects.requireNonNull(defaultPollInterval, "'defaultPollInterval' cannot be null.");
+ if (this.defaultPollInterval.isNegative()) {
+ throw LOGGER
+ .logExceptionAsError(new IllegalArgumentException("'defaultPollInterval' cannot be negative"));
+ }
+ return this;
+ }
+
+ /**
+ * Creates an instance of ContainerInstance service API entry point.
+ *
+ * @param credential the credential to use.
+ * @param profile the Azure profile for client.
+ * @return the ContainerInstance service API instance.
+ */
+ public ContainerInstanceManager authenticate(TokenCredential credential, AzureProfile profile) {
+ Objects.requireNonNull(credential, "'credential' cannot be null.");
+ Objects.requireNonNull(profile, "'profile' cannot be null.");
+
+ StringBuilder userAgentBuilder = new StringBuilder();
+ userAgentBuilder.append("azsdk-java")
+ .append("-")
+ .append("com.azure.resourcemanager.containerinstance.generated")
+ .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)");
+ } else {
+ userAgentBuilder.append(" (auto-generated)");
+ }
+
+ if (scopes.isEmpty()) {
+ scopes.add(profile.getEnvironment().getManagementEndpoint() + "/.default");
+ }
+ if (retryPolicy == null) {
+ if (retryOptions != null) {
+ retryPolicy = new RetryPolicy(retryOptions);
+ } else {
+ retryPolicy = new RetryPolicy("Retry-After", ChronoUnit.SECONDS);
+ }
+ }
+ List policies = new ArrayList<>();
+ 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()));
+ 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()));
+ HttpPolicyProviders.addAfterRetryPolicies(policies);
+ policies.add(new HttpLoggingPolicy(httpLogOptions));
+ HttpPipeline httpPipeline = new HttpPipelineBuilder().httpClient(httpClient)
+ .policies(policies.toArray(new HttpPipelinePolicy[0]))
+ .build();
+ return new ContainerInstanceManager(httpPipeline, profile, defaultPollInterval);
+ }
+ }
+
+ /**
+ * Gets the resource collection API of ContainerGroups. It manages ContainerGroup.
+ *
+ * @return Resource collection API of ContainerGroups.
+ */
+ public ContainerGroups containerGroups() {
+ if (this.containerGroups == null) {
+ this.containerGroups = new ContainerGroupsImpl(clientObject.getContainerGroups(), this);
+ }
+ return containerGroups;
+ }
+
+ /**
+ * Gets the resource collection API of Operations.
+ *
+ * @return Resource collection API of Operations.
+ */
+ public Operations operations() {
+ if (this.operations == null) {
+ this.operations = new OperationsImpl(clientObject.getOperations(), this);
+ }
+ return operations;
+ }
+
+ /**
+ * Gets the resource collection API of Locations.
+ *
+ * @return Resource collection API of Locations.
+ */
+ public Locations locations() {
+ if (this.locations == null) {
+ this.locations = new LocationsImpl(clientObject.getLocations(), this);
+ }
+ return locations;
+ }
+
+ /**
+ * Gets the resource collection API of Containers.
+ *
+ * @return Resource collection API of Containers.
+ */
+ public Containers containers() {
+ if (this.containers == null) {
+ this.containers = new ContainersImpl(clientObject.getContainers(), this);
+ }
+ return containers;
+ }
+
+ /**
+ * Gets the resource collection API of SubnetServiceAssociationLinks.
+ *
+ * @return Resource collection API of SubnetServiceAssociationLinks.
+ */
+ public SubnetServiceAssociationLinks subnetServiceAssociationLinks() {
+ if (this.subnetServiceAssociationLinks == null) {
+ this.subnetServiceAssociationLinks
+ = new SubnetServiceAssociationLinksImpl(clientObject.getSubnetServiceAssociationLinks(), this);
+ }
+ return subnetServiceAssociationLinks;
+ }
+
+ /**
+ * Gets wrapped service client ContainerInstanceManagementClient providing direct access to the underlying
+ * auto-generated API implementation, based on Azure REST API.
+ *
+ * @return Wrapped service client ContainerInstanceManagementClient.
+ */
+ public ContainerInstanceManagementClient serviceClient() {
+ return this.clientObject;
+ }
+}
diff --git a/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/ContainerGroupsClient.java b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/ContainerGroupsClient.java
new file mode 100644
index 000000000000..44f68618c390
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/ContainerGroupsClient.java
@@ -0,0 +1,488 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+package com.azure.resourcemanager.containerinstance.generated.fluent;
+
+import com.azure.core.annotation.ReturnType;
+import com.azure.core.annotation.ServiceMethod;
+import com.azure.core.http.rest.PagedIterable;
+import com.azure.core.http.rest.Response;
+import com.azure.core.management.Resource;
+import com.azure.core.management.polling.PollResult;
+import com.azure.core.util.Context;
+import com.azure.core.util.polling.SyncPoller;
+import com.azure.resourcemanager.containerinstance.generated.fluent.models.ContainerGroupInner;
+import java.util.List;
+
+/**
+ * An instance of this class provides access to all the operations defined in ContainerGroupsClient.
+ */
+public interface ContainerGroupsClient {
+ /**
+ * Get a list of container groups in the specified subscription.
+ *
+ * Get a list of container groups in the specified subscription. This operation returns properties of each container
+ * group including containers, image registry credentials, restart policy, IP address type, OS type, state, and
+ * volumes.
+ *
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return a list of container groups in the specified subscription as paginated response with
+ * {@link PagedIterable}.
+ */
+ @ServiceMethod(returns = ReturnType.COLLECTION)
+ PagedIterable list();
+
+ /**
+ * Get a list of container groups in the specified subscription.
+ *
+ * Get a list of container groups in the specified subscription. This operation returns properties of each container
+ * group including containers, image registry credentials, restart policy, IP address type, OS type, state, and
+ * volumes.
+ *
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return a list of container groups in the specified subscription as paginated response with
+ * {@link PagedIterable}.
+ */
+ @ServiceMethod(returns = ReturnType.COLLECTION)
+ PagedIterable list(Context context);
+
+ /**
+ * Get a list of container groups in the specified subscription and resource group.
+ *
+ * Get a list of container groups in a specified subscription and resource group. This operation returns properties
+ * of each container group including containers, image registry credentials, restart policy, IP address type, OS
+ * type, state, and volumes.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return a list of container groups in a specified subscription and resource group as paginated response with
+ * {@link PagedIterable}.
+ */
+ @ServiceMethod(returns = ReturnType.COLLECTION)
+ PagedIterable listByResourceGroup(String resourceGroupName);
+
+ /**
+ * Get a list of container groups in the specified subscription and resource group.
+ *
+ * Get a list of container groups in a specified subscription and resource group. This operation returns properties
+ * of each container group including containers, image registry credentials, restart policy, IP address type, OS
+ * type, state, and volumes.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return a list of container groups in a specified subscription and resource group as paginated response with
+ * {@link PagedIterable}.
+ */
+ @ServiceMethod(returns = ReturnType.COLLECTION)
+ PagedIterable listByResourceGroup(String resourceGroupName, Context context);
+
+ /**
+ * Get the properties of the specified container group.
+ *
+ * Gets the properties of the specified container group in the specified subscription and resource group. The
+ * operation returns the properties of each container group including containers, image registry credentials,
+ * restart policy, IP address type, OS type, state, and volumes.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the properties of the specified container group in the specified subscription and resource group along
+ * with {@link Response}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ Response getByResourceGroupWithResponse(String resourceGroupName, String containerGroupName,
+ Context context);
+
+ /**
+ * Get the properties of the specified container group.
+ *
+ * Gets the properties of the specified container group in the specified subscription and resource group. The
+ * operation returns the properties of each container group including containers, image registry credentials,
+ * restart policy, IP address type, OS type, state, and volumes.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the properties of the specified container group in the specified subscription and resource group.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ ContainerGroupInner getByResourceGroup(String resourceGroupName, String containerGroupName);
+
+ /**
+ * Create or update container groups.
+ *
+ * Create or update container groups with specified configurations.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param containerGroup The properties of the container group to be created or updated.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request 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 a container group.
+ */
+ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
+ SyncPoller, ContainerGroupInner> beginCreateOrUpdate(String resourceGroupName,
+ String containerGroupName, ContainerGroupInner containerGroup);
+
+ /**
+ * Create or update container groups.
+ *
+ * Create or update container groups with specified configurations.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param containerGroup The properties of the container group to be created or updated.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request 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 a container group.
+ */
+ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
+ SyncPoller, ContainerGroupInner> beginCreateOrUpdate(String resourceGroupName,
+ String containerGroupName, ContainerGroupInner containerGroup, Context context);
+
+ /**
+ * Create or update container groups.
+ *
+ * Create or update container groups with specified configurations.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param containerGroup The properties of the container group to be created or updated.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return a container group.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ ContainerGroupInner createOrUpdate(String resourceGroupName, String containerGroupName,
+ ContainerGroupInner containerGroup);
+
+ /**
+ * Create or update container groups.
+ *
+ * Create or update container groups with specified configurations.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param containerGroup The properties of the container group to be created or updated.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return a container group.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ ContainerGroupInner createOrUpdate(String resourceGroupName, String containerGroupName,
+ ContainerGroupInner containerGroup, Context context);
+
+ /**
+ * Update container groups.
+ *
+ * Updates container group tags with specified values.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param resource The container group resource with just the tags to be updated.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return a container group along with {@link Response}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ Response updateWithResponse(String resourceGroupName, String containerGroupName,
+ Resource resource, Context context);
+
+ /**
+ * Update container groups.
+ *
+ * Updates container group tags with specified values.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param resource The container group resource with just the tags to be updated.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return a container group.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ ContainerGroupInner update(String resourceGroupName, String containerGroupName, Resource resource);
+
+ /**
+ * Delete the specified container group.
+ *
+ * Delete the specified container group in the specified subscription and resource group. The operation does not
+ * delete other resources provided by the user, such as volumes.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request 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 a container group.
+ */
+ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
+ SyncPoller, ContainerGroupInner> beginDelete(String resourceGroupName,
+ String containerGroupName);
+
+ /**
+ * Delete the specified container group.
+ *
+ * Delete the specified container group in the specified subscription and resource group. The operation does not
+ * delete other resources provided by the user, such as volumes.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request 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 a container group.
+ */
+ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
+ SyncPoller, ContainerGroupInner> beginDelete(String resourceGroupName,
+ String containerGroupName, Context context);
+
+ /**
+ * Delete the specified container group.
+ *
+ * Delete the specified container group in the specified subscription and resource group. The operation does not
+ * delete other resources provided by the user, such as volumes.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return a container group.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ ContainerGroupInner delete(String resourceGroupName, String containerGroupName);
+
+ /**
+ * Delete the specified container group.
+ *
+ * Delete the specified container group in the specified subscription and resource group. The operation does not
+ * delete other resources provided by the user, such as volumes.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return a container group.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ ContainerGroupInner delete(String resourceGroupName, String containerGroupName, Context context);
+
+ /**
+ * Restarts all containers in a container group.
+ *
+ * Restarts all containers in a container group in place. If container image has updates, new image will be
+ * downloaded.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request 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> beginRestart(String resourceGroupName, String containerGroupName);
+
+ /**
+ * Restarts all containers in a container group.
+ *
+ * Restarts all containers in a container group in place. If container image has updates, new image will be
+ * downloaded.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request 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> beginRestart(String resourceGroupName, String containerGroupName,
+ Context context);
+
+ /**
+ * Restarts all containers in a container group.
+ *
+ * Restarts all containers in a container group in place. If container image has updates, new image will be
+ * downloaded.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ void restart(String resourceGroupName, String containerGroupName);
+
+ /**
+ * Restarts all containers in a container group.
+ *
+ * Restarts all containers in a container group in place. If container image has updates, new image will be
+ * downloaded.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ void restart(String resourceGroupName, String containerGroupName, Context context);
+
+ /**
+ * Stops all containers in a container group.
+ *
+ * Stops all containers in a container group. Compute resources will be deallocated and billing will stop.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request 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 stopWithResponse(String resourceGroupName, String containerGroupName, Context context);
+
+ /**
+ * Stops all containers in a container group.
+ *
+ * Stops all containers in a container group. Compute resources will be deallocated and billing will stop.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ void stop(String resourceGroupName, String containerGroupName);
+
+ /**
+ * Starts all containers in a container group.
+ *
+ * Starts all containers in a container group. Compute resources will be allocated and billing will start.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request 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> beginStart(String resourceGroupName, String containerGroupName);
+
+ /**
+ * Starts all containers in a container group.
+ *
+ * Starts all containers in a container group. Compute resources will be allocated and billing will start.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request 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> beginStart(String resourceGroupName, String containerGroupName, Context context);
+
+ /**
+ * Starts all containers in a container group.
+ *
+ * Starts all containers in a container group. Compute resources will be allocated and billing will start.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ void start(String resourceGroupName, String containerGroupName);
+
+ /**
+ * Starts all containers in a container group.
+ *
+ * Starts all containers in a container group. Compute resources will be allocated and billing will start.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ void start(String resourceGroupName, String containerGroupName, Context context);
+
+ /**
+ * Get all network dependencies for container group.
+ *
+ * Gets all the network dependencies for this container group to allow complete control of network setting and
+ * configuration. For container groups, this will always be an empty list.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return all the network dependencies for this container group to allow complete control of network setting and
+ * configuration along with {@link Response}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ Response> getOutboundNetworkDependenciesEndpointsWithResponse(String resourceGroupName,
+ String containerGroupName, Context context);
+
+ /**
+ * Get all network dependencies for container group.
+ *
+ * Gets all the network dependencies for this container group to allow complete control of network setting and
+ * configuration. For container groups, this will always be an empty list.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return all the network dependencies for this container group to allow complete control of network setting and
+ * configuration.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ List getOutboundNetworkDependenciesEndpoints(String resourceGroupName, String containerGroupName);
+}
diff --git a/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/ContainerInstanceManagementClient.java b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/ContainerInstanceManagementClient.java
new file mode 100644
index 000000000000..deadebe01a41
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/ContainerInstanceManagementClient.java
@@ -0,0 +1,84 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+package com.azure.resourcemanager.containerinstance.generated.fluent;
+
+import com.azure.core.http.HttpPipeline;
+import java.time.Duration;
+
+/**
+ * The interface for ContainerInstanceManagementClient class.
+ */
+public interface ContainerInstanceManagementClient {
+ /**
+ * Gets Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms
+ * part of the URI for every service call.
+ *
+ * @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 ContainerGroupsClient object to access its operations.
+ *
+ * @return the ContainerGroupsClient object.
+ */
+ ContainerGroupsClient getContainerGroups();
+
+ /**
+ * Gets the OperationsClient object to access its operations.
+ *
+ * @return the OperationsClient object.
+ */
+ OperationsClient getOperations();
+
+ /**
+ * Gets the LocationsClient object to access its operations.
+ *
+ * @return the LocationsClient object.
+ */
+ LocationsClient getLocations();
+
+ /**
+ * Gets the ContainersClient object to access its operations.
+ *
+ * @return the ContainersClient object.
+ */
+ ContainersClient getContainers();
+
+ /**
+ * Gets the SubnetServiceAssociationLinksClient object to access its operations.
+ *
+ * @return the SubnetServiceAssociationLinksClient object.
+ */
+ SubnetServiceAssociationLinksClient getSubnetServiceAssociationLinks();
+}
diff --git a/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/ContainersClient.java b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/ContainersClient.java
new file mode 100644
index 000000000000..5c426d4fa14f
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/ContainersClient.java
@@ -0,0 +1,129 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+package com.azure.resourcemanager.containerinstance.generated.fluent;
+
+import com.azure.core.annotation.ReturnType;
+import com.azure.core.annotation.ServiceMethod;
+import com.azure.core.http.rest.Response;
+import com.azure.core.util.Context;
+import com.azure.resourcemanager.containerinstance.generated.fluent.models.ContainerAttachResponseInner;
+import com.azure.resourcemanager.containerinstance.generated.fluent.models.ContainerExecResponseInner;
+import com.azure.resourcemanager.containerinstance.generated.fluent.models.LogsInner;
+import com.azure.resourcemanager.containerinstance.generated.models.ContainerExecRequest;
+
+/**
+ * An instance of this class provides access to all the operations defined in ContainersClient.
+ */
+public interface ContainersClient {
+ /**
+ * Get the logs for a specified container instance.
+ *
+ * Get the logs for a specified container instance in a specified resource group and container group.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param containerName The name of the container instance.
+ * @param tail The number of lines to show from the tail of the container instance log. If not provided, all
+ * available logs are shown up to 4mb.
+ * @param timestamps If true, adds a timestamp at the beginning of every line of log output. If not provided,
+ * defaults to false.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the logs for a specified container instance in a specified resource group and container group along with
+ * {@link Response}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ Response listLogsWithResponse(String resourceGroupName, String containerGroupName, String containerName,
+ Integer tail, Boolean timestamps, Context context);
+
+ /**
+ * Get the logs for a specified container instance.
+ *
+ * Get the logs for a specified container instance in a specified resource group and container group.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param containerName The name of the container instance.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the logs for a specified container instance in a specified resource group and container group.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ LogsInner listLogs(String resourceGroupName, String containerGroupName, String containerName);
+
+ /**
+ * Executes a command in a specific container instance.
+ *
+ * Executes a command for a specific container instance in a specified resource group and container group.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param containerName The name of the container instance.
+ * @param containerExecRequest The request for the exec command.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the information for the container exec command along with {@link Response}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ Response executeCommandWithResponse(String resourceGroupName, String containerGroupName,
+ String containerName, ContainerExecRequest containerExecRequest, Context context);
+
+ /**
+ * Executes a command in a specific container instance.
+ *
+ * Executes a command for a specific container instance in a specified resource group and container group.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param containerName The name of the container instance.
+ * @param containerExecRequest The request for the exec command.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the information for the container exec command.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ ContainerExecResponseInner executeCommand(String resourceGroupName, String containerGroupName, String containerName,
+ ContainerExecRequest containerExecRequest);
+
+ /**
+ * Attach to the output of a specific container instance.
+ *
+ * Attach to the output stream of a specific container instance in a specified resource group and container group.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param containerName The name of the container instance.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the information for the output stream from container attach along with {@link Response}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ Response attachWithResponse(String resourceGroupName, String containerGroupName,
+ String containerName, Context context);
+
+ /**
+ * Attach to the output of a specific container instance.
+ *
+ * Attach to the output stream of a specific container instance in a specified resource group and container group.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param containerName The name of the container instance.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the information for the output stream from container attach.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ ContainerAttachResponseInner attach(String resourceGroupName, String containerGroupName, String containerName);
+}
diff --git a/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/LocationsClient.java b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/LocationsClient.java
new file mode 100644
index 000000000000..72c602c47798
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/LocationsClient.java
@@ -0,0 +1,103 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+package com.azure.resourcemanager.containerinstance.generated.fluent;
+
+import com.azure.core.annotation.ReturnType;
+import com.azure.core.annotation.ServiceMethod;
+import com.azure.core.http.rest.PagedIterable;
+import com.azure.core.util.Context;
+import com.azure.resourcemanager.containerinstance.generated.fluent.models.CachedImagesInner;
+import com.azure.resourcemanager.containerinstance.generated.fluent.models.CapabilitiesInner;
+import com.azure.resourcemanager.containerinstance.generated.fluent.models.UsageInner;
+
+/**
+ * An instance of this class provides access to all the operations defined in LocationsClient.
+ */
+public interface LocationsClient {
+ /**
+ * Get the usage for a subscription.
+ *
+ * @param location The identifier for the physical azure location.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the usage for a subscription as paginated response with {@link PagedIterable}.
+ */
+ @ServiceMethod(returns = ReturnType.COLLECTION)
+ PagedIterable listUsage(String location);
+
+ /**
+ * Get the usage for a subscription.
+ *
+ * @param location The identifier for the physical azure location.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the usage for a subscription as paginated response with {@link PagedIterable}.
+ */
+ @ServiceMethod(returns = ReturnType.COLLECTION)
+ PagedIterable listUsage(String location, Context context);
+
+ /**
+ * Get the list of cached images.
+ *
+ * Get the list of cached images on specific OS type for a subscription in a region.
+ *
+ * @param location The identifier for the physical azure location.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the list of cached images on specific OS type for a subscription in a region as paginated response with
+ * {@link PagedIterable}.
+ */
+ @ServiceMethod(returns = ReturnType.COLLECTION)
+ PagedIterable listCachedImages(String location);
+
+ /**
+ * Get the list of cached images.
+ *
+ * Get the list of cached images on specific OS type for a subscription in a region.
+ *
+ * @param location The identifier for the physical azure location.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the list of cached images on specific OS type for a subscription in a region as paginated response with
+ * {@link PagedIterable}.
+ */
+ @ServiceMethod(returns = ReturnType.COLLECTION)
+ PagedIterable listCachedImages(String location, Context context);
+
+ /**
+ * Get the list of capabilities of the location.
+ *
+ * Get the list of CPU/memory/GPU capabilities of a region.
+ *
+ * @param location The identifier for the physical azure location.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the list of CPU/memory/GPU capabilities of a region as paginated response with {@link PagedIterable}.
+ */
+ @ServiceMethod(returns = ReturnType.COLLECTION)
+ PagedIterable listCapabilities(String location);
+
+ /**
+ * Get the list of capabilities of the location.
+ *
+ * Get the list of CPU/memory/GPU capabilities of a region.
+ *
+ * @param location The identifier for the physical azure location.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the list of CPU/memory/GPU capabilities of a region as paginated response with {@link PagedIterable}.
+ */
+ @ServiceMethod(returns = ReturnType.COLLECTION)
+ PagedIterable listCapabilities(String location, Context context);
+}
diff --git a/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/OperationsClient.java b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/OperationsClient.java
new file mode 100644
index 000000000000..12dd1c015298
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/OperationsClient.java
@@ -0,0 +1,40 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+package com.azure.resourcemanager.containerinstance.generated.fluent;
+
+import com.azure.core.annotation.ReturnType;
+import com.azure.core.annotation.ServiceMethod;
+import com.azure.core.http.rest.PagedIterable;
+import com.azure.core.util.Context;
+import com.azure.resourcemanager.containerinstance.generated.fluent.models.OperationInner;
+
+/**
+ * An instance of this class provides access to all the operations defined in OperationsClient.
+ */
+public interface OperationsClient {
+ /**
+ * List the operations for Azure Container Instance service.
+ *
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the operation list response that contains all operations for Azure Container Instance service as
+ * paginated response with {@link PagedIterable}.
+ */
+ @ServiceMethod(returns = ReturnType.COLLECTION)
+ PagedIterable list();
+
+ /**
+ * List the operations for Azure Container Instance service.
+ *
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the operation list response that contains all operations for Azure Container Instance service as
+ * paginated response with {@link PagedIterable}.
+ */
+ @ServiceMethod(returns = ReturnType.COLLECTION)
+ PagedIterable list(Context context);
+}
diff --git a/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/SubnetServiceAssociationLinksClient.java b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/SubnetServiceAssociationLinksClient.java
new file mode 100644
index 000000000000..46b9fe15b5e8
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/SubnetServiceAssociationLinksClient.java
@@ -0,0 +1,86 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+package com.azure.resourcemanager.containerinstance.generated.fluent;
+
+import com.azure.core.annotation.ReturnType;
+import com.azure.core.annotation.ServiceMethod;
+import com.azure.core.management.polling.PollResult;
+import com.azure.core.util.Context;
+import com.azure.core.util.polling.SyncPoller;
+
+/**
+ * An instance of this class provides access to all the operations defined in SubnetServiceAssociationLinksClient.
+ */
+public interface SubnetServiceAssociationLinksClient {
+ /**
+ * Delete container group virtual network association links.
+ *
+ * Delete container group virtual network association links. The operation does not delete other resources provided
+ * by the user.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param virtualNetworkName The name of the virtual network.
+ * @param subnetName The name of the subnet.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request 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 virtualNetworkName,
+ String subnetName);
+
+ /**
+ * Delete container group virtual network association links.
+ *
+ * Delete container group virtual network association links. The operation does not delete other resources provided
+ * by the user.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param virtualNetworkName The name of the virtual network.
+ * @param subnetName The name of the subnet.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request 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 virtualNetworkName,
+ String subnetName, Context context);
+
+ /**
+ * Delete container group virtual network association links.
+ *
+ * Delete container group virtual network association links. The operation does not delete other resources provided
+ * by the user.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param virtualNetworkName The name of the virtual network.
+ * @param subnetName The name of the subnet.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ void delete(String resourceGroupName, String virtualNetworkName, String subnetName);
+
+ /**
+ * Delete container group virtual network association links.
+ *
+ * Delete container group virtual network association links. The operation does not delete other resources provided
+ * by the user.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param virtualNetworkName The name of the virtual network.
+ * @param subnetName The name of the subnet.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ void delete(String resourceGroupName, String virtualNetworkName, String subnetName, Context context);
+}
diff --git a/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/models/CachedImagesInner.java b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/models/CachedImagesInner.java
new file mode 100644
index 000000000000..f8d336fb0d73
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/models/CachedImagesInner.java
@@ -0,0 +1,133 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+package com.azure.resourcemanager.containerinstance.generated.fluent.models;
+
+import com.azure.core.annotation.Fluent;
+import com.azure.core.util.logging.ClientLogger;
+import com.azure.json.JsonReader;
+import com.azure.json.JsonSerializable;
+import com.azure.json.JsonToken;
+import com.azure.json.JsonWriter;
+import java.io.IOException;
+
+/**
+ * The cached image and OS type.
+ */
+@Fluent
+public final class CachedImagesInner implements JsonSerializable {
+ /*
+ * The OS type of the cached image.
+ */
+ private String osType;
+
+ /*
+ * The cached image name.
+ */
+ private String image;
+
+ /**
+ * Creates an instance of CachedImagesInner class.
+ */
+ public CachedImagesInner() {
+ }
+
+ /**
+ * Get the osType property: The OS type of the cached image.
+ *
+ * @return the osType value.
+ */
+ public String osType() {
+ return this.osType;
+ }
+
+ /**
+ * Set the osType property: The OS type of the cached image.
+ *
+ * @param osType the osType value to set.
+ * @return the CachedImagesInner object itself.
+ */
+ public CachedImagesInner withOsType(String osType) {
+ this.osType = osType;
+ return this;
+ }
+
+ /**
+ * Get the image property: The cached image name.
+ *
+ * @return the image value.
+ */
+ public String image() {
+ return this.image;
+ }
+
+ /**
+ * Set the image property: The cached image name.
+ *
+ * @param image the image value to set.
+ * @return the CachedImagesInner object itself.
+ */
+ public CachedImagesInner withImage(String image) {
+ this.image = image;
+ return this;
+ }
+
+ /**
+ * Validates the instance.
+ *
+ * @throws IllegalArgumentException thrown if the instance is not valid.
+ */
+ public void validate() {
+ if (osType() == null) {
+ throw LOGGER.atError()
+ .log(new IllegalArgumentException("Missing required property osType in model CachedImagesInner"));
+ }
+ if (image() == null) {
+ throw LOGGER.atError()
+ .log(new IllegalArgumentException("Missing required property image in model CachedImagesInner"));
+ }
+ }
+
+ private static final ClientLogger LOGGER = new ClientLogger(CachedImagesInner.class);
+
+ /**
+ * {@inheritDoc}
+ */
+ @Override
+ public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
+ jsonWriter.writeStartObject();
+ jsonWriter.writeStringField("osType", this.osType);
+ jsonWriter.writeStringField("image", this.image);
+ return jsonWriter.writeEndObject();
+ }
+
+ /**
+ * Reads an instance of CachedImagesInner from the JsonReader.
+ *
+ * @param jsonReader The JsonReader being read.
+ * @return An instance of CachedImagesInner if the JsonReader was pointing to an instance of it, or null if it was
+ * pointing to JSON null.
+ * @throws IllegalStateException If the deserialized JSON object was missing any required properties.
+ * @throws IOException If an error occurs while reading the CachedImagesInner.
+ */
+ public static CachedImagesInner fromJson(JsonReader jsonReader) throws IOException {
+ return jsonReader.readObject(reader -> {
+ CachedImagesInner deserializedCachedImagesInner = new CachedImagesInner();
+ while (reader.nextToken() != JsonToken.END_OBJECT) {
+ String fieldName = reader.getFieldName();
+ reader.nextToken();
+
+ if ("osType".equals(fieldName)) {
+ deserializedCachedImagesInner.osType = reader.getString();
+ } else if ("image".equals(fieldName)) {
+ deserializedCachedImagesInner.image = reader.getString();
+ } else {
+ reader.skipChildren();
+ }
+ }
+
+ return deserializedCachedImagesInner;
+ });
+ }
+}
diff --git a/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/models/CapabilitiesInner.java b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/models/CapabilitiesInner.java
new file mode 100644
index 000000000000..982283a9ab76
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/models/CapabilitiesInner.java
@@ -0,0 +1,165 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+package com.azure.resourcemanager.containerinstance.generated.fluent.models;
+
+import com.azure.core.annotation.Immutable;
+import com.azure.json.JsonReader;
+import com.azure.json.JsonSerializable;
+import com.azure.json.JsonToken;
+import com.azure.json.JsonWriter;
+import com.azure.resourcemanager.containerinstance.generated.models.CapabilitiesCapabilities;
+import java.io.IOException;
+
+/**
+ * The regional capabilities.
+ */
+@Immutable
+public final class CapabilitiesInner implements JsonSerializable {
+ /*
+ * The resource type that this capability describes.
+ */
+ private String resourceType;
+
+ /*
+ * The OS type that this capability describes.
+ */
+ private String osType;
+
+ /*
+ * The resource location.
+ */
+ private String location;
+
+ /*
+ * The ip address type that this capability describes.
+ */
+ private String ipAddressType;
+
+ /*
+ * The GPU sku that this capability describes.
+ */
+ private String gpu;
+
+ /*
+ * The supported capabilities.
+ */
+ private CapabilitiesCapabilities capabilities;
+
+ /**
+ * Creates an instance of CapabilitiesInner class.
+ */
+ public CapabilitiesInner() {
+ }
+
+ /**
+ * Get the resourceType property: The resource type that this capability describes.
+ *
+ * @return the resourceType value.
+ */
+ public String resourceType() {
+ return this.resourceType;
+ }
+
+ /**
+ * Get the osType property: The OS type that this capability describes.
+ *
+ * @return the osType value.
+ */
+ public String osType() {
+ return this.osType;
+ }
+
+ /**
+ * Get the location property: The resource location.
+ *
+ * @return the location value.
+ */
+ public String location() {
+ return this.location;
+ }
+
+ /**
+ * Get the ipAddressType property: The ip address type that this capability describes.
+ *
+ * @return the ipAddressType value.
+ */
+ public String ipAddressType() {
+ return this.ipAddressType;
+ }
+
+ /**
+ * Get the gpu property: The GPU sku that this capability describes.
+ *
+ * @return the gpu value.
+ */
+ public String gpu() {
+ return this.gpu;
+ }
+
+ /**
+ * Get the capabilities property: The supported capabilities.
+ *
+ * @return the capabilities value.
+ */
+ public CapabilitiesCapabilities capabilities() {
+ return this.capabilities;
+ }
+
+ /**
+ * Validates the instance.
+ *
+ * @throws IllegalArgumentException thrown if the instance is not valid.
+ */
+ public void validate() {
+ if (capabilities() != null) {
+ capabilities().validate();
+ }
+ }
+
+ /**
+ * {@inheritDoc}
+ */
+ @Override
+ public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
+ jsonWriter.writeStartObject();
+ return jsonWriter.writeEndObject();
+ }
+
+ /**
+ * Reads an instance of CapabilitiesInner from the JsonReader.
+ *
+ * @param jsonReader The JsonReader being read.
+ * @return An instance of CapabilitiesInner if the JsonReader was pointing to an instance of it, or null if it was
+ * pointing to JSON null.
+ * @throws IOException If an error occurs while reading the CapabilitiesInner.
+ */
+ public static CapabilitiesInner fromJson(JsonReader jsonReader) throws IOException {
+ return jsonReader.readObject(reader -> {
+ CapabilitiesInner deserializedCapabilitiesInner = new CapabilitiesInner();
+ while (reader.nextToken() != JsonToken.END_OBJECT) {
+ String fieldName = reader.getFieldName();
+ reader.nextToken();
+
+ if ("resourceType".equals(fieldName)) {
+ deserializedCapabilitiesInner.resourceType = reader.getString();
+ } else if ("osType".equals(fieldName)) {
+ deserializedCapabilitiesInner.osType = reader.getString();
+ } else if ("location".equals(fieldName)) {
+ deserializedCapabilitiesInner.location = reader.getString();
+ } else if ("ipAddressType".equals(fieldName)) {
+ deserializedCapabilitiesInner.ipAddressType = reader.getString();
+ } else if ("gpu".equals(fieldName)) {
+ deserializedCapabilitiesInner.gpu = reader.getString();
+ } else if ("capabilities".equals(fieldName)) {
+ deserializedCapabilitiesInner.capabilities = CapabilitiesCapabilities.fromJson(reader);
+ } else {
+ reader.skipChildren();
+ }
+ }
+
+ return deserializedCapabilitiesInner;
+ });
+ }
+}
diff --git a/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/models/ContainerAttachResponseInner.java b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/models/ContainerAttachResponseInner.java
new file mode 100644
index 000000000000..83977c0caa1f
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/models/ContainerAttachResponseInner.java
@@ -0,0 +1,124 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+package com.azure.resourcemanager.containerinstance.generated.fluent.models;
+
+import com.azure.core.annotation.Fluent;
+import com.azure.json.JsonReader;
+import com.azure.json.JsonSerializable;
+import com.azure.json.JsonToken;
+import com.azure.json.JsonWriter;
+import java.io.IOException;
+
+/**
+ * The information for the output stream from container attach.
+ */
+@Fluent
+public final class ContainerAttachResponseInner implements JsonSerializable {
+ /*
+ * The uri for the output stream from the attach.
+ */
+ private String webSocketUri;
+
+ /*
+ * The password to the output stream from the attach. Send as an Authorization header value when connecting to the
+ * websocketUri.
+ */
+ private String password;
+
+ /**
+ * Creates an instance of ContainerAttachResponseInner class.
+ */
+ public ContainerAttachResponseInner() {
+ }
+
+ /**
+ * Get the webSocketUri property: The uri for the output stream from the attach.
+ *
+ * @return the webSocketUri value.
+ */
+ public String webSocketUri() {
+ return this.webSocketUri;
+ }
+
+ /**
+ * Set the webSocketUri property: The uri for the output stream from the attach.
+ *
+ * @param webSocketUri the webSocketUri value to set.
+ * @return the ContainerAttachResponseInner object itself.
+ */
+ public ContainerAttachResponseInner withWebSocketUri(String webSocketUri) {
+ this.webSocketUri = webSocketUri;
+ return this;
+ }
+
+ /**
+ * Get the password property: The password to the output stream from the attach. Send as an Authorization header
+ * value when connecting to the websocketUri.
+ *
+ * @return the password value.
+ */
+ public String password() {
+ return this.password;
+ }
+
+ /**
+ * Set the password property: The password to the output stream from the attach. Send as an Authorization header
+ * value when connecting to the websocketUri.
+ *
+ * @param password the password value to set.
+ * @return the ContainerAttachResponseInner object itself.
+ */
+ public ContainerAttachResponseInner withPassword(String password) {
+ this.password = password;
+ return this;
+ }
+
+ /**
+ * Validates the instance.
+ *
+ * @throws IllegalArgumentException thrown if the instance is not valid.
+ */
+ public void validate() {
+ }
+
+ /**
+ * {@inheritDoc}
+ */
+ @Override
+ public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
+ jsonWriter.writeStartObject();
+ jsonWriter.writeStringField("webSocketUri", this.webSocketUri);
+ jsonWriter.writeStringField("password", this.password);
+ return jsonWriter.writeEndObject();
+ }
+
+ /**
+ * Reads an instance of ContainerAttachResponseInner from the JsonReader.
+ *
+ * @param jsonReader The JsonReader being read.
+ * @return An instance of ContainerAttachResponseInner if the JsonReader was pointing to an instance of it, or null
+ * if it was pointing to JSON null.
+ * @throws IOException If an error occurs while reading the ContainerAttachResponseInner.
+ */
+ public static ContainerAttachResponseInner fromJson(JsonReader jsonReader) throws IOException {
+ return jsonReader.readObject(reader -> {
+ ContainerAttachResponseInner deserializedContainerAttachResponseInner = new ContainerAttachResponseInner();
+ while (reader.nextToken() != JsonToken.END_OBJECT) {
+ String fieldName = reader.getFieldName();
+ reader.nextToken();
+
+ if ("webSocketUri".equals(fieldName)) {
+ deserializedContainerAttachResponseInner.webSocketUri = reader.getString();
+ } else if ("password".equals(fieldName)) {
+ deserializedContainerAttachResponseInner.password = reader.getString();
+ } else {
+ reader.skipChildren();
+ }
+ }
+
+ return deserializedContainerAttachResponseInner;
+ });
+ }
+}
diff --git a/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/models/ContainerExecResponseInner.java b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/models/ContainerExecResponseInner.java
new file mode 100644
index 000000000000..54aa86d6ffce
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/models/ContainerExecResponseInner.java
@@ -0,0 +1,121 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+package com.azure.resourcemanager.containerinstance.generated.fluent.models;
+
+import com.azure.core.annotation.Fluent;
+import com.azure.json.JsonReader;
+import com.azure.json.JsonSerializable;
+import com.azure.json.JsonToken;
+import com.azure.json.JsonWriter;
+import java.io.IOException;
+
+/**
+ * The information for the container exec command.
+ */
+@Fluent
+public final class ContainerExecResponseInner implements JsonSerializable {
+ /*
+ * The uri for the exec websocket.
+ */
+ private String webSocketUri;
+
+ /*
+ * The password to start the exec command.
+ */
+ private String password;
+
+ /**
+ * Creates an instance of ContainerExecResponseInner class.
+ */
+ public ContainerExecResponseInner() {
+ }
+
+ /**
+ * Get the webSocketUri property: The uri for the exec websocket.
+ *
+ * @return the webSocketUri value.
+ */
+ public String webSocketUri() {
+ return this.webSocketUri;
+ }
+
+ /**
+ * Set the webSocketUri property: The uri for the exec websocket.
+ *
+ * @param webSocketUri the webSocketUri value to set.
+ * @return the ContainerExecResponseInner object itself.
+ */
+ public ContainerExecResponseInner withWebSocketUri(String webSocketUri) {
+ this.webSocketUri = webSocketUri;
+ return this;
+ }
+
+ /**
+ * Get the password property: The password to start the exec command.
+ *
+ * @return the password value.
+ */
+ public String password() {
+ return this.password;
+ }
+
+ /**
+ * Set the password property: The password to start the exec command.
+ *
+ * @param password the password value to set.
+ * @return the ContainerExecResponseInner object itself.
+ */
+ public ContainerExecResponseInner withPassword(String password) {
+ this.password = password;
+ return this;
+ }
+
+ /**
+ * Validates the instance.
+ *
+ * @throws IllegalArgumentException thrown if the instance is not valid.
+ */
+ public void validate() {
+ }
+
+ /**
+ * {@inheritDoc}
+ */
+ @Override
+ public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
+ jsonWriter.writeStartObject();
+ jsonWriter.writeStringField("webSocketUri", this.webSocketUri);
+ jsonWriter.writeStringField("password", this.password);
+ return jsonWriter.writeEndObject();
+ }
+
+ /**
+ * Reads an instance of ContainerExecResponseInner from the JsonReader.
+ *
+ * @param jsonReader The JsonReader being read.
+ * @return An instance of ContainerExecResponseInner if the JsonReader was pointing to an instance of it, or null if
+ * it was pointing to JSON null.
+ * @throws IOException If an error occurs while reading the ContainerExecResponseInner.
+ */
+ public static ContainerExecResponseInner fromJson(JsonReader jsonReader) throws IOException {
+ return jsonReader.readObject(reader -> {
+ ContainerExecResponseInner deserializedContainerExecResponseInner = new ContainerExecResponseInner();
+ while (reader.nextToken() != JsonToken.END_OBJECT) {
+ String fieldName = reader.getFieldName();
+ reader.nextToken();
+
+ if ("webSocketUri".equals(fieldName)) {
+ deserializedContainerExecResponseInner.webSocketUri = reader.getString();
+ } else if ("password".equals(fieldName)) {
+ deserializedContainerExecResponseInner.password = reader.getString();
+ } else {
+ reader.skipChildren();
+ }
+ }
+
+ return deserializedContainerExecResponseInner;
+ });
+ }
+}
diff --git a/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/models/ContainerGroupInner.java b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/models/ContainerGroupInner.java
new file mode 100644
index 000000000000..49b51bcdd900
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/models/ContainerGroupInner.java
@@ -0,0 +1,681 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+package com.azure.resourcemanager.containerinstance.generated.fluent.models;
+
+import com.azure.core.annotation.Fluent;
+import com.azure.core.management.Resource;
+import com.azure.core.util.logging.ClientLogger;
+import com.azure.json.JsonReader;
+import com.azure.json.JsonToken;
+import com.azure.json.JsonWriter;
+import com.azure.resourcemanager.containerinstance.generated.models.ConfidentialComputeProperties;
+import com.azure.resourcemanager.containerinstance.generated.models.Container;
+import com.azure.resourcemanager.containerinstance.generated.models.ContainerGroupDiagnostics;
+import com.azure.resourcemanager.containerinstance.generated.models.ContainerGroupIdentity;
+import com.azure.resourcemanager.containerinstance.generated.models.ContainerGroupPriority;
+import com.azure.resourcemanager.containerinstance.generated.models.ContainerGroupProfileReferenceDefinition;
+import com.azure.resourcemanager.containerinstance.generated.models.ContainerGroupPropertiesInstanceView;
+import com.azure.resourcemanager.containerinstance.generated.models.ContainerGroupRestartPolicy;
+import com.azure.resourcemanager.containerinstance.generated.models.ContainerGroupSku;
+import com.azure.resourcemanager.containerinstance.generated.models.ContainerGroupSubnetId;
+import com.azure.resourcemanager.containerinstance.generated.models.DeploymentExtensionSpec;
+import com.azure.resourcemanager.containerinstance.generated.models.DnsConfiguration;
+import com.azure.resourcemanager.containerinstance.generated.models.EncryptionProperties;
+import com.azure.resourcemanager.containerinstance.generated.models.ImageRegistryCredential;
+import com.azure.resourcemanager.containerinstance.generated.models.InitContainerDefinition;
+import com.azure.resourcemanager.containerinstance.generated.models.IpAddress;
+import com.azure.resourcemanager.containerinstance.generated.models.OperatingSystemTypes;
+import com.azure.resourcemanager.containerinstance.generated.models.StandbyPoolProfileDefinition;
+import com.azure.resourcemanager.containerinstance.generated.models.Volume;
+import java.io.IOException;
+import java.util.List;
+import java.util.Map;
+
+/**
+ * A container group.
+ */
+@Fluent
+public final class ContainerGroupInner extends Resource {
+ /*
+ * The zones for the container group.
+ */
+ private List zones;
+
+ /*
+ * The identity of the container group, if configured.
+ */
+ private ContainerGroupIdentity identity;
+
+ /*
+ * The container group properties
+ */
+ private ContainerGroupPropertiesProperties innerProperties = new ContainerGroupPropertiesProperties();
+
+ /*
+ * Fully qualified resource Id for the resource.
+ */
+ private String id;
+
+ /*
+ * The name of the resource.
+ */
+ private String name;
+
+ /*
+ * The type of the resource.
+ */
+ private String type;
+
+ /**
+ * Creates an instance of ContainerGroupInner class.
+ */
+ public ContainerGroupInner() {
+ }
+
+ /**
+ * Get the zones property: The zones for the container group.
+ *
+ * @return the zones value.
+ */
+ public List zones() {
+ return this.zones;
+ }
+
+ /**
+ * Set the zones property: The zones for the container group.
+ *
+ * @param zones the zones value to set.
+ * @return the ContainerGroupInner object itself.
+ */
+ public ContainerGroupInner withZones(List zones) {
+ this.zones = zones;
+ return this;
+ }
+
+ /**
+ * Get the identity property: The identity of the container group, if configured.
+ *
+ * @return the identity value.
+ */
+ public ContainerGroupIdentity identity() {
+ return this.identity;
+ }
+
+ /**
+ * Set the identity property: The identity of the container group, if configured.
+ *
+ * @param identity the identity value to set.
+ * @return the ContainerGroupInner object itself.
+ */
+ public ContainerGroupInner withIdentity(ContainerGroupIdentity identity) {
+ this.identity = identity;
+ return this;
+ }
+
+ /**
+ * Get the innerProperties property: The container group properties.
+ *
+ * @return the innerProperties value.
+ */
+ private ContainerGroupPropertiesProperties innerProperties() {
+ return this.innerProperties;
+ }
+
+ /**
+ * Get the id property: Fully qualified resource Id for the resource.
+ *
+ * @return the id value.
+ */
+ @Override
+ public String id() {
+ return this.id;
+ }
+
+ /**
+ * Get the name property: The name of the resource.
+ *
+ * @return the name value.
+ */
+ @Override
+ public String name() {
+ return this.name;
+ }
+
+ /**
+ * Get the type property: The type of the resource.
+ *
+ * @return the type value.
+ */
+ @Override
+ public String type() {
+ return this.type;
+ }
+
+ /**
+ * {@inheritDoc}
+ */
+ @Override
+ public ContainerGroupInner withLocation(String location) {
+ super.withLocation(location);
+ return this;
+ }
+
+ /**
+ * {@inheritDoc}
+ */
+ @Override
+ public ContainerGroupInner withTags(Map tags) {
+ super.withTags(tags);
+ return this;
+ }
+
+ /**
+ * Get the provisioningState property: The provisioning state of the container group. This only appears in the
+ * response.
+ *
+ * @return the provisioningState value.
+ */
+ public String provisioningState() {
+ return this.innerProperties() == null ? null : this.innerProperties().provisioningState();
+ }
+
+ /**
+ * Get the containers property: The containers within the container group.
+ *
+ * @return the containers value.
+ */
+ public List containers() {
+ return this.innerProperties() == null ? null : this.innerProperties().containers();
+ }
+
+ /**
+ * Set the containers property: The containers within the container group.
+ *
+ * @param containers the containers value to set.
+ * @return the ContainerGroupInner object itself.
+ */
+ public ContainerGroupInner withContainers(List containers) {
+ if (this.innerProperties() == null) {
+ this.innerProperties = new ContainerGroupPropertiesProperties();
+ }
+ this.innerProperties().withContainers(containers);
+ return this;
+ }
+
+ /**
+ * Get the imageRegistryCredentials property: The image registry credentials by which the container group is created
+ * from.
+ *
+ * @return the imageRegistryCredentials value.
+ */
+ public List imageRegistryCredentials() {
+ return this.innerProperties() == null ? null : this.innerProperties().imageRegistryCredentials();
+ }
+
+ /**
+ * Set the imageRegistryCredentials property: The image registry credentials by which the container group is created
+ * from.
+ *
+ * @param imageRegistryCredentials the imageRegistryCredentials value to set.
+ * @return the ContainerGroupInner object itself.
+ */
+ public ContainerGroupInner withImageRegistryCredentials(List imageRegistryCredentials) {
+ if (this.innerProperties() == null) {
+ this.innerProperties = new ContainerGroupPropertiesProperties();
+ }
+ this.innerProperties().withImageRegistryCredentials(imageRegistryCredentials);
+ return this;
+ }
+
+ /**
+ * Get the restartPolicy property: Restart policy for all containers within the container group.
+ * - `Always` Always restart
+ * - `OnFailure` Restart on failure
+ * - `Never` Never restart.
+ *
+ * @return the restartPolicy value.
+ */
+ public ContainerGroupRestartPolicy restartPolicy() {
+ return this.innerProperties() == null ? null : this.innerProperties().restartPolicy();
+ }
+
+ /**
+ * Set the restartPolicy property: Restart policy for all containers within the container group.
+ * - `Always` Always restart
+ * - `OnFailure` Restart on failure
+ * - `Never` Never restart.
+ *
+ * @param restartPolicy the restartPolicy value to set.
+ * @return the ContainerGroupInner object itself.
+ */
+ public ContainerGroupInner withRestartPolicy(ContainerGroupRestartPolicy restartPolicy) {
+ if (this.innerProperties() == null) {
+ this.innerProperties = new ContainerGroupPropertiesProperties();
+ }
+ this.innerProperties().withRestartPolicy(restartPolicy);
+ return this;
+ }
+
+ /**
+ * Get the ipAddress property: The IP address type of the container group.
+ *
+ * @return the ipAddress value.
+ */
+ public IpAddress ipAddress() {
+ return this.innerProperties() == null ? null : this.innerProperties().ipAddress();
+ }
+
+ /**
+ * Set the ipAddress property: The IP address type of the container group.
+ *
+ * @param ipAddress the ipAddress value to set.
+ * @return the ContainerGroupInner object itself.
+ */
+ public ContainerGroupInner withIpAddress(IpAddress ipAddress) {
+ if (this.innerProperties() == null) {
+ this.innerProperties = new ContainerGroupPropertiesProperties();
+ }
+ this.innerProperties().withIpAddress(ipAddress);
+ return this;
+ }
+
+ /**
+ * Get the osType property: The operating system type required by the containers in the container group.
+ *
+ * @return the osType value.
+ */
+ public OperatingSystemTypes osType() {
+ return this.innerProperties() == null ? null : this.innerProperties().osType();
+ }
+
+ /**
+ * Set the osType property: The operating system type required by the containers in the container group.
+ *
+ * @param osType the osType value to set.
+ * @return the ContainerGroupInner object itself.
+ */
+ public ContainerGroupInner withOsType(OperatingSystemTypes osType) {
+ if (this.innerProperties() == null) {
+ this.innerProperties = new ContainerGroupPropertiesProperties();
+ }
+ this.innerProperties().withOsType(osType);
+ return this;
+ }
+
+ /**
+ * Get the volumes property: The list of volumes that can be mounted by containers in this container group.
+ *
+ * @return the volumes value.
+ */
+ public List volumes() {
+ return this.innerProperties() == null ? null : this.innerProperties().volumes();
+ }
+
+ /**
+ * Set the volumes property: The list of volumes that can be mounted by containers in this container group.
+ *
+ * @param volumes the volumes value to set.
+ * @return the ContainerGroupInner object itself.
+ */
+ public ContainerGroupInner withVolumes(List volumes) {
+ if (this.innerProperties() == null) {
+ this.innerProperties = new ContainerGroupPropertiesProperties();
+ }
+ this.innerProperties().withVolumes(volumes);
+ return this;
+ }
+
+ /**
+ * Get the instanceView property: The instance view of the container group. Only valid in response.
+ *
+ * @return the instanceView value.
+ */
+ public ContainerGroupPropertiesInstanceView instanceView() {
+ return this.innerProperties() == null ? null : this.innerProperties().instanceView();
+ }
+
+ /**
+ * Get the diagnostics property: The diagnostic information for a container group.
+ *
+ * @return the diagnostics value.
+ */
+ public ContainerGroupDiagnostics diagnostics() {
+ return this.innerProperties() == null ? null : this.innerProperties().diagnostics();
+ }
+
+ /**
+ * Set the diagnostics property: The diagnostic information for a container group.
+ *
+ * @param diagnostics the diagnostics value to set.
+ * @return the ContainerGroupInner object itself.
+ */
+ public ContainerGroupInner withDiagnostics(ContainerGroupDiagnostics diagnostics) {
+ if (this.innerProperties() == null) {
+ this.innerProperties = new ContainerGroupPropertiesProperties();
+ }
+ this.innerProperties().withDiagnostics(diagnostics);
+ return this;
+ }
+
+ /**
+ * Get the subnetIds property: The subnet resource IDs for a container group.
+ *
+ * @return the subnetIds value.
+ */
+ public List subnetIds() {
+ return this.innerProperties() == null ? null : this.innerProperties().subnetIds();
+ }
+
+ /**
+ * Set the subnetIds property: The subnet resource IDs for a container group.
+ *
+ * @param subnetIds the subnetIds value to set.
+ * @return the ContainerGroupInner object itself.
+ */
+ public ContainerGroupInner withSubnetIds(List subnetIds) {
+ if (this.innerProperties() == null) {
+ this.innerProperties = new ContainerGroupPropertiesProperties();
+ }
+ this.innerProperties().withSubnetIds(subnetIds);
+ return this;
+ }
+
+ /**
+ * Get the dnsConfig property: The DNS config information for a container group.
+ *
+ * @return the dnsConfig value.
+ */
+ public DnsConfiguration dnsConfig() {
+ return this.innerProperties() == null ? null : this.innerProperties().dnsConfig();
+ }
+
+ /**
+ * Set the dnsConfig property: The DNS config information for a container group.
+ *
+ * @param dnsConfig the dnsConfig value to set.
+ * @return the ContainerGroupInner object itself.
+ */
+ public ContainerGroupInner withDnsConfig(DnsConfiguration dnsConfig) {
+ if (this.innerProperties() == null) {
+ this.innerProperties = new ContainerGroupPropertiesProperties();
+ }
+ this.innerProperties().withDnsConfig(dnsConfig);
+ return this;
+ }
+
+ /**
+ * Get the sku property: The SKU for a container group.
+ *
+ * @return the sku value.
+ */
+ public ContainerGroupSku sku() {
+ return this.innerProperties() == null ? null : this.innerProperties().sku();
+ }
+
+ /**
+ * Set the sku property: The SKU for a container group.
+ *
+ * @param sku the sku value to set.
+ * @return the ContainerGroupInner object itself.
+ */
+ public ContainerGroupInner withSku(ContainerGroupSku sku) {
+ if (this.innerProperties() == null) {
+ this.innerProperties = new ContainerGroupPropertiesProperties();
+ }
+ this.innerProperties().withSku(sku);
+ return this;
+ }
+
+ /**
+ * Get the encryptionProperties property: The encryption properties for a container group.
+ *
+ * @return the encryptionProperties value.
+ */
+ public EncryptionProperties encryptionProperties() {
+ return this.innerProperties() == null ? null : this.innerProperties().encryptionProperties();
+ }
+
+ /**
+ * Set the encryptionProperties property: The encryption properties for a container group.
+ *
+ * @param encryptionProperties the encryptionProperties value to set.
+ * @return the ContainerGroupInner object itself.
+ */
+ public ContainerGroupInner withEncryptionProperties(EncryptionProperties encryptionProperties) {
+ if (this.innerProperties() == null) {
+ this.innerProperties = new ContainerGroupPropertiesProperties();
+ }
+ this.innerProperties().withEncryptionProperties(encryptionProperties);
+ return this;
+ }
+
+ /**
+ * Get the initContainers property: The init containers for a container group.
+ *
+ * @return the initContainers value.
+ */
+ public List initContainers() {
+ return this.innerProperties() == null ? null : this.innerProperties().initContainers();
+ }
+
+ /**
+ * Set the initContainers property: The init containers for a container group.
+ *
+ * @param initContainers the initContainers value to set.
+ * @return the ContainerGroupInner object itself.
+ */
+ public ContainerGroupInner withInitContainers(List initContainers) {
+ if (this.innerProperties() == null) {
+ this.innerProperties = new ContainerGroupPropertiesProperties();
+ }
+ this.innerProperties().withInitContainers(initContainers);
+ return this;
+ }
+
+ /**
+ * Get the extensions property: extensions used by virtual kubelet.
+ *
+ * @return the extensions value.
+ */
+ public List extensions() {
+ return this.innerProperties() == null ? null : this.innerProperties().extensions();
+ }
+
+ /**
+ * Set the extensions property: extensions used by virtual kubelet.
+ *
+ * @param extensions the extensions value to set.
+ * @return the ContainerGroupInner object itself.
+ */
+ public ContainerGroupInner withExtensions(List extensions) {
+ if (this.innerProperties() == null) {
+ this.innerProperties = new ContainerGroupPropertiesProperties();
+ }
+ this.innerProperties().withExtensions(extensions);
+ return this;
+ }
+
+ /**
+ * Get the confidentialComputeProperties property: The properties for confidential container group.
+ *
+ * @return the confidentialComputeProperties value.
+ */
+ public ConfidentialComputeProperties confidentialComputeProperties() {
+ return this.innerProperties() == null ? null : this.innerProperties().confidentialComputeProperties();
+ }
+
+ /**
+ * Set the confidentialComputeProperties property: The properties for confidential container group.
+ *
+ * @param confidentialComputeProperties the confidentialComputeProperties value to set.
+ * @return the ContainerGroupInner object itself.
+ */
+ public ContainerGroupInner
+ withConfidentialComputeProperties(ConfidentialComputeProperties confidentialComputeProperties) {
+ if (this.innerProperties() == null) {
+ this.innerProperties = new ContainerGroupPropertiesProperties();
+ }
+ this.innerProperties().withConfidentialComputeProperties(confidentialComputeProperties);
+ return this;
+ }
+
+ /**
+ * Get the priority property: The priority of the container group.
+ *
+ * @return the priority value.
+ */
+ public ContainerGroupPriority priority() {
+ return this.innerProperties() == null ? null : this.innerProperties().priority();
+ }
+
+ /**
+ * Set the priority property: The priority of the container group.
+ *
+ * @param priority the priority value to set.
+ * @return the ContainerGroupInner object itself.
+ */
+ public ContainerGroupInner withPriority(ContainerGroupPriority priority) {
+ if (this.innerProperties() == null) {
+ this.innerProperties = new ContainerGroupPropertiesProperties();
+ }
+ this.innerProperties().withPriority(priority);
+ return this;
+ }
+
+ /**
+ * Get the containerGroupProfile property: The reference container group profile properties.
+ *
+ * @return the containerGroupProfile value.
+ */
+ public ContainerGroupProfileReferenceDefinition containerGroupProfile() {
+ return this.innerProperties() == null ? null : this.innerProperties().containerGroupProfile();
+ }
+
+ /**
+ * Set the containerGroupProfile property: The reference container group profile properties.
+ *
+ * @param containerGroupProfile the containerGroupProfile value to set.
+ * @return the ContainerGroupInner object itself.
+ */
+ public ContainerGroupInner
+ withContainerGroupProfile(ContainerGroupProfileReferenceDefinition containerGroupProfile) {
+ if (this.innerProperties() == null) {
+ this.innerProperties = new ContainerGroupPropertiesProperties();
+ }
+ this.innerProperties().withContainerGroupProfile(containerGroupProfile);
+ return this;
+ }
+
+ /**
+ * Get the standbyPoolProfile property: The reference standby pool profile properties.
+ *
+ * @return the standbyPoolProfile value.
+ */
+ public StandbyPoolProfileDefinition standbyPoolProfile() {
+ return this.innerProperties() == null ? null : this.innerProperties().standbyPoolProfile();
+ }
+
+ /**
+ * Set the standbyPoolProfile property: The reference standby pool profile properties.
+ *
+ * @param standbyPoolProfile the standbyPoolProfile value to set.
+ * @return the ContainerGroupInner object itself.
+ */
+ public ContainerGroupInner withStandbyPoolProfile(StandbyPoolProfileDefinition standbyPoolProfile) {
+ if (this.innerProperties() == null) {
+ this.innerProperties = new ContainerGroupPropertiesProperties();
+ }
+ this.innerProperties().withStandbyPoolProfile(standbyPoolProfile);
+ return this;
+ }
+
+ /**
+ * Get the isCreatedFromStandbyPool property: The flag indicating whether the container group is created by standby
+ * pool.
+ *
+ * @return the isCreatedFromStandbyPool value.
+ */
+ public Boolean isCreatedFromStandbyPool() {
+ return this.innerProperties() == null ? null : this.innerProperties().isCreatedFromStandbyPool();
+ }
+
+ /**
+ * Validates the instance.
+ *
+ * @throws IllegalArgumentException thrown if the instance is not valid.
+ */
+ public void validate() {
+ if (identity() != null) {
+ identity().validate();
+ }
+ if (innerProperties() == null) {
+ throw LOGGER.atError()
+ .log(new IllegalArgumentException(
+ "Missing required property innerProperties in model ContainerGroupInner"));
+ } else {
+ innerProperties().validate();
+ }
+ }
+
+ private static final ClientLogger LOGGER = new ClientLogger(ContainerGroupInner.class);
+
+ /**
+ * {@inheritDoc}
+ */
+ @Override
+ public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
+ jsonWriter.writeStartObject();
+ jsonWriter.writeStringField("location", location());
+ jsonWriter.writeMapField("tags", tags(), (writer, element) -> writer.writeString(element));
+ jsonWriter.writeJsonField("properties", this.innerProperties);
+ jsonWriter.writeArrayField("zones", this.zones, (writer, element) -> writer.writeString(element));
+ jsonWriter.writeJsonField("identity", this.identity);
+ return jsonWriter.writeEndObject();
+ }
+
+ /**
+ * Reads an instance of ContainerGroupInner from the JsonReader.
+ *
+ * @param jsonReader The JsonReader being read.
+ * @return An instance of ContainerGroupInner if the JsonReader was pointing to an instance of it, or null if it was
+ * pointing to JSON null.
+ * @throws IllegalStateException If the deserialized JSON object was missing any required properties.
+ * @throws IOException If an error occurs while reading the ContainerGroupInner.
+ */
+ public static ContainerGroupInner fromJson(JsonReader jsonReader) throws IOException {
+ return jsonReader.readObject(reader -> {
+ ContainerGroupInner deserializedContainerGroupInner = new ContainerGroupInner();
+ while (reader.nextToken() != JsonToken.END_OBJECT) {
+ String fieldName = reader.getFieldName();
+ reader.nextToken();
+
+ if ("id".equals(fieldName)) {
+ deserializedContainerGroupInner.id = reader.getString();
+ } else if ("name".equals(fieldName)) {
+ deserializedContainerGroupInner.name = reader.getString();
+ } else if ("type".equals(fieldName)) {
+ deserializedContainerGroupInner.type = reader.getString();
+ } else if ("location".equals(fieldName)) {
+ deserializedContainerGroupInner.withLocation(reader.getString());
+ } else if ("tags".equals(fieldName)) {
+ Map tags = reader.readMap(reader1 -> reader1.getString());
+ deserializedContainerGroupInner.withTags(tags);
+ } else if ("properties".equals(fieldName)) {
+ deserializedContainerGroupInner.innerProperties
+ = ContainerGroupPropertiesProperties.fromJson(reader);
+ } else if ("zones".equals(fieldName)) {
+ List zones = reader.readArray(reader1 -> reader1.getString());
+ deserializedContainerGroupInner.zones = zones;
+ } else if ("identity".equals(fieldName)) {
+ deserializedContainerGroupInner.identity = ContainerGroupIdentity.fromJson(reader);
+ } else {
+ reader.skipChildren();
+ }
+ }
+
+ return deserializedContainerGroupInner;
+ });
+ }
+}
diff --git a/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/models/ContainerGroupPropertiesProperties.java b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/models/ContainerGroupPropertiesProperties.java
new file mode 100644
index 000000000000..134617593b4e
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/models/ContainerGroupPropertiesProperties.java
@@ -0,0 +1,698 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+package com.azure.resourcemanager.containerinstance.generated.fluent.models;
+
+import com.azure.core.annotation.Fluent;
+import com.azure.core.util.logging.ClientLogger;
+import com.azure.json.JsonReader;
+import com.azure.json.JsonSerializable;
+import com.azure.json.JsonToken;
+import com.azure.json.JsonWriter;
+import com.azure.resourcemanager.containerinstance.generated.models.ConfidentialComputeProperties;
+import com.azure.resourcemanager.containerinstance.generated.models.Container;
+import com.azure.resourcemanager.containerinstance.generated.models.ContainerGroupDiagnostics;
+import com.azure.resourcemanager.containerinstance.generated.models.ContainerGroupPriority;
+import com.azure.resourcemanager.containerinstance.generated.models.ContainerGroupProfileReferenceDefinition;
+import com.azure.resourcemanager.containerinstance.generated.models.ContainerGroupPropertiesInstanceView;
+import com.azure.resourcemanager.containerinstance.generated.models.ContainerGroupRestartPolicy;
+import com.azure.resourcemanager.containerinstance.generated.models.ContainerGroupSku;
+import com.azure.resourcemanager.containerinstance.generated.models.ContainerGroupSubnetId;
+import com.azure.resourcemanager.containerinstance.generated.models.DeploymentExtensionSpec;
+import com.azure.resourcemanager.containerinstance.generated.models.DnsConfiguration;
+import com.azure.resourcemanager.containerinstance.generated.models.EncryptionProperties;
+import com.azure.resourcemanager.containerinstance.generated.models.ImageRegistryCredential;
+import com.azure.resourcemanager.containerinstance.generated.models.InitContainerDefinition;
+import com.azure.resourcemanager.containerinstance.generated.models.IpAddress;
+import com.azure.resourcemanager.containerinstance.generated.models.OperatingSystemTypes;
+import com.azure.resourcemanager.containerinstance.generated.models.StandbyPoolProfileDefinition;
+import com.azure.resourcemanager.containerinstance.generated.models.Volume;
+import java.io.IOException;
+import java.util.List;
+
+/**
+ * The container group properties.
+ */
+@Fluent
+public final class ContainerGroupPropertiesProperties implements JsonSerializable {
+ /*
+ * The provisioning state of the container group. This only appears in the response.
+ */
+ private String provisioningState;
+
+ /*
+ * The containers within the container group.
+ */
+ private List containers;
+
+ /*
+ * The image registry credentials by which the container group is created from.
+ */
+ private List imageRegistryCredentials;
+
+ /*
+ * Restart policy for all containers within the container group.
+ * - `Always` Always restart
+ * - `OnFailure` Restart on failure
+ * - `Never` Never restart
+ */
+ private ContainerGroupRestartPolicy restartPolicy;
+
+ /*
+ * The IP address type of the container group.
+ */
+ private IpAddress ipAddress;
+
+ /*
+ * The operating system type required by the containers in the container group.
+ */
+ private OperatingSystemTypes osType;
+
+ /*
+ * The list of volumes that can be mounted by containers in this container group.
+ */
+ private List volumes;
+
+ /*
+ * The instance view of the container group. Only valid in response.
+ */
+ private ContainerGroupPropertiesInstanceView instanceView;
+
+ /*
+ * The diagnostic information for a container group.
+ */
+ private ContainerGroupDiagnostics diagnostics;
+
+ /*
+ * The subnet resource IDs for a container group.
+ */
+ private List subnetIds;
+
+ /*
+ * The DNS config information for a container group.
+ */
+ private DnsConfiguration dnsConfig;
+
+ /*
+ * The SKU for a container group.
+ */
+ private ContainerGroupSku sku;
+
+ /*
+ * The encryption properties for a container group.
+ */
+ private EncryptionProperties encryptionProperties;
+
+ /*
+ * The init containers for a container group.
+ */
+ private List initContainers;
+
+ /*
+ * extensions used by virtual kubelet
+ */
+ private List extensions;
+
+ /*
+ * The properties for confidential container group
+ */
+ private ConfidentialComputeProperties confidentialComputeProperties;
+
+ /*
+ * The priority of the container group.
+ */
+ private ContainerGroupPriority priority;
+
+ /*
+ * The reference container group profile properties.
+ */
+ private ContainerGroupProfileReferenceDefinition containerGroupProfile;
+
+ /*
+ * The reference standby pool profile properties.
+ */
+ private StandbyPoolProfileDefinition standbyPoolProfile;
+
+ /*
+ * The flag indicating whether the container group is created by standby pool.
+ */
+ private Boolean isCreatedFromStandbyPool;
+
+ /**
+ * Creates an instance of ContainerGroupPropertiesProperties class.
+ */
+ public ContainerGroupPropertiesProperties() {
+ }
+
+ /**
+ * Get the provisioningState property: The provisioning state of the container group. This only appears in the
+ * response.
+ *
+ * @return the provisioningState value.
+ */
+ public String provisioningState() {
+ return this.provisioningState;
+ }
+
+ /**
+ * Get the containers property: The containers within the container group.
+ *
+ * @return the containers value.
+ */
+ public List containers() {
+ return this.containers;
+ }
+
+ /**
+ * Set the containers property: The containers within the container group.
+ *
+ * @param containers the containers value to set.
+ * @return the ContainerGroupPropertiesProperties object itself.
+ */
+ public ContainerGroupPropertiesProperties withContainers(List containers) {
+ this.containers = containers;
+ return this;
+ }
+
+ /**
+ * Get the imageRegistryCredentials property: The image registry credentials by which the container group is created
+ * from.
+ *
+ * @return the imageRegistryCredentials value.
+ */
+ public List imageRegistryCredentials() {
+ return this.imageRegistryCredentials;
+ }
+
+ /**
+ * Set the imageRegistryCredentials property: The image registry credentials by which the container group is created
+ * from.
+ *
+ * @param imageRegistryCredentials the imageRegistryCredentials value to set.
+ * @return the ContainerGroupPropertiesProperties object itself.
+ */
+ public ContainerGroupPropertiesProperties
+ withImageRegistryCredentials(List imageRegistryCredentials) {
+ this.imageRegistryCredentials = imageRegistryCredentials;
+ return this;
+ }
+
+ /**
+ * Get the restartPolicy property: Restart policy for all containers within the container group.
+ * - `Always` Always restart
+ * - `OnFailure` Restart on failure
+ * - `Never` Never restart.
+ *
+ * @return the restartPolicy value.
+ */
+ public ContainerGroupRestartPolicy restartPolicy() {
+ return this.restartPolicy;
+ }
+
+ /**
+ * Set the restartPolicy property: Restart policy for all containers within the container group.
+ * - `Always` Always restart
+ * - `OnFailure` Restart on failure
+ * - `Never` Never restart.
+ *
+ * @param restartPolicy the restartPolicy value to set.
+ * @return the ContainerGroupPropertiesProperties object itself.
+ */
+ public ContainerGroupPropertiesProperties withRestartPolicy(ContainerGroupRestartPolicy restartPolicy) {
+ this.restartPolicy = restartPolicy;
+ return this;
+ }
+
+ /**
+ * Get the ipAddress property: The IP address type of the container group.
+ *
+ * @return the ipAddress value.
+ */
+ public IpAddress ipAddress() {
+ return this.ipAddress;
+ }
+
+ /**
+ * Set the ipAddress property: The IP address type of the container group.
+ *
+ * @param ipAddress the ipAddress value to set.
+ * @return the ContainerGroupPropertiesProperties object itself.
+ */
+ public ContainerGroupPropertiesProperties withIpAddress(IpAddress ipAddress) {
+ this.ipAddress = ipAddress;
+ return this;
+ }
+
+ /**
+ * Get the osType property: The operating system type required by the containers in the container group.
+ *
+ * @return the osType value.
+ */
+ public OperatingSystemTypes osType() {
+ return this.osType;
+ }
+
+ /**
+ * Set the osType property: The operating system type required by the containers in the container group.
+ *
+ * @param osType the osType value to set.
+ * @return the ContainerGroupPropertiesProperties object itself.
+ */
+ public ContainerGroupPropertiesProperties withOsType(OperatingSystemTypes osType) {
+ this.osType = osType;
+ return this;
+ }
+
+ /**
+ * Get the volumes property: The list of volumes that can be mounted by containers in this container group.
+ *
+ * @return the volumes value.
+ */
+ public List volumes() {
+ return this.volumes;
+ }
+
+ /**
+ * Set the volumes property: The list of volumes that can be mounted by containers in this container group.
+ *
+ * @param volumes the volumes value to set.
+ * @return the ContainerGroupPropertiesProperties object itself.
+ */
+ public ContainerGroupPropertiesProperties withVolumes(List volumes) {
+ this.volumes = volumes;
+ return this;
+ }
+
+ /**
+ * Get the instanceView property: The instance view of the container group. Only valid in response.
+ *
+ * @return the instanceView value.
+ */
+ public ContainerGroupPropertiesInstanceView instanceView() {
+ return this.instanceView;
+ }
+
+ /**
+ * Get the diagnostics property: The diagnostic information for a container group.
+ *
+ * @return the diagnostics value.
+ */
+ public ContainerGroupDiagnostics diagnostics() {
+ return this.diagnostics;
+ }
+
+ /**
+ * Set the diagnostics property: The diagnostic information for a container group.
+ *
+ * @param diagnostics the diagnostics value to set.
+ * @return the ContainerGroupPropertiesProperties object itself.
+ */
+ public ContainerGroupPropertiesProperties withDiagnostics(ContainerGroupDiagnostics diagnostics) {
+ this.diagnostics = diagnostics;
+ return this;
+ }
+
+ /**
+ * Get the subnetIds property: The subnet resource IDs for a container group.
+ *
+ * @return the subnetIds value.
+ */
+ public List subnetIds() {
+ return this.subnetIds;
+ }
+
+ /**
+ * Set the subnetIds property: The subnet resource IDs for a container group.
+ *
+ * @param subnetIds the subnetIds value to set.
+ * @return the ContainerGroupPropertiesProperties object itself.
+ */
+ public ContainerGroupPropertiesProperties withSubnetIds(List subnetIds) {
+ this.subnetIds = subnetIds;
+ return this;
+ }
+
+ /**
+ * Get the dnsConfig property: The DNS config information for a container group.
+ *
+ * @return the dnsConfig value.
+ */
+ public DnsConfiguration dnsConfig() {
+ return this.dnsConfig;
+ }
+
+ /**
+ * Set the dnsConfig property: The DNS config information for a container group.
+ *
+ * @param dnsConfig the dnsConfig value to set.
+ * @return the ContainerGroupPropertiesProperties object itself.
+ */
+ public ContainerGroupPropertiesProperties withDnsConfig(DnsConfiguration dnsConfig) {
+ this.dnsConfig = dnsConfig;
+ return this;
+ }
+
+ /**
+ * Get the sku property: The SKU for a container group.
+ *
+ * @return the sku value.
+ */
+ public ContainerGroupSku sku() {
+ return this.sku;
+ }
+
+ /**
+ * Set the sku property: The SKU for a container group.
+ *
+ * @param sku the sku value to set.
+ * @return the ContainerGroupPropertiesProperties object itself.
+ */
+ public ContainerGroupPropertiesProperties withSku(ContainerGroupSku sku) {
+ this.sku = sku;
+ return this;
+ }
+
+ /**
+ * Get the encryptionProperties property: The encryption properties for a container group.
+ *
+ * @return the encryptionProperties value.
+ */
+ public EncryptionProperties encryptionProperties() {
+ return this.encryptionProperties;
+ }
+
+ /**
+ * Set the encryptionProperties property: The encryption properties for a container group.
+ *
+ * @param encryptionProperties the encryptionProperties value to set.
+ * @return the ContainerGroupPropertiesProperties object itself.
+ */
+ public ContainerGroupPropertiesProperties withEncryptionProperties(EncryptionProperties encryptionProperties) {
+ this.encryptionProperties = encryptionProperties;
+ return this;
+ }
+
+ /**
+ * Get the initContainers property: The init containers for a container group.
+ *
+ * @return the initContainers value.
+ */
+ public List initContainers() {
+ return this.initContainers;
+ }
+
+ /**
+ * Set the initContainers property: The init containers for a container group.
+ *
+ * @param initContainers the initContainers value to set.
+ * @return the ContainerGroupPropertiesProperties object itself.
+ */
+ public ContainerGroupPropertiesProperties withInitContainers(List initContainers) {
+ this.initContainers = initContainers;
+ return this;
+ }
+
+ /**
+ * Get the extensions property: extensions used by virtual kubelet.
+ *
+ * @return the extensions value.
+ */
+ public List extensions() {
+ return this.extensions;
+ }
+
+ /**
+ * Set the extensions property: extensions used by virtual kubelet.
+ *
+ * @param extensions the extensions value to set.
+ * @return the ContainerGroupPropertiesProperties object itself.
+ */
+ public ContainerGroupPropertiesProperties withExtensions(List extensions) {
+ this.extensions = extensions;
+ return this;
+ }
+
+ /**
+ * Get the confidentialComputeProperties property: The properties for confidential container group.
+ *
+ * @return the confidentialComputeProperties value.
+ */
+ public ConfidentialComputeProperties confidentialComputeProperties() {
+ return this.confidentialComputeProperties;
+ }
+
+ /**
+ * Set the confidentialComputeProperties property: The properties for confidential container group.
+ *
+ * @param confidentialComputeProperties the confidentialComputeProperties value to set.
+ * @return the ContainerGroupPropertiesProperties object itself.
+ */
+ public ContainerGroupPropertiesProperties
+ withConfidentialComputeProperties(ConfidentialComputeProperties confidentialComputeProperties) {
+ this.confidentialComputeProperties = confidentialComputeProperties;
+ return this;
+ }
+
+ /**
+ * Get the priority property: The priority of the container group.
+ *
+ * @return the priority value.
+ */
+ public ContainerGroupPriority priority() {
+ return this.priority;
+ }
+
+ /**
+ * Set the priority property: The priority of the container group.
+ *
+ * @param priority the priority value to set.
+ * @return the ContainerGroupPropertiesProperties object itself.
+ */
+ public ContainerGroupPropertiesProperties withPriority(ContainerGroupPriority priority) {
+ this.priority = priority;
+ return this;
+ }
+
+ /**
+ * Get the containerGroupProfile property: The reference container group profile properties.
+ *
+ * @return the containerGroupProfile value.
+ */
+ public ContainerGroupProfileReferenceDefinition containerGroupProfile() {
+ return this.containerGroupProfile;
+ }
+
+ /**
+ * Set the containerGroupProfile property: The reference container group profile properties.
+ *
+ * @param containerGroupProfile the containerGroupProfile value to set.
+ * @return the ContainerGroupPropertiesProperties object itself.
+ */
+ public ContainerGroupPropertiesProperties
+ withContainerGroupProfile(ContainerGroupProfileReferenceDefinition containerGroupProfile) {
+ this.containerGroupProfile = containerGroupProfile;
+ return this;
+ }
+
+ /**
+ * Get the standbyPoolProfile property: The reference standby pool profile properties.
+ *
+ * @return the standbyPoolProfile value.
+ */
+ public StandbyPoolProfileDefinition standbyPoolProfile() {
+ return this.standbyPoolProfile;
+ }
+
+ /**
+ * Set the standbyPoolProfile property: The reference standby pool profile properties.
+ *
+ * @param standbyPoolProfile the standbyPoolProfile value to set.
+ * @return the ContainerGroupPropertiesProperties object itself.
+ */
+ public ContainerGroupPropertiesProperties withStandbyPoolProfile(StandbyPoolProfileDefinition standbyPoolProfile) {
+ this.standbyPoolProfile = standbyPoolProfile;
+ return this;
+ }
+
+ /**
+ * Get the isCreatedFromStandbyPool property: The flag indicating whether the container group is created by standby
+ * pool.
+ *
+ * @return the isCreatedFromStandbyPool value.
+ */
+ public Boolean isCreatedFromStandbyPool() {
+ return this.isCreatedFromStandbyPool;
+ }
+
+ /**
+ * Validates the instance.
+ *
+ * @throws IllegalArgumentException thrown if the instance is not valid.
+ */
+ public void validate() {
+ if (containers() == null) {
+ throw LOGGER.atError()
+ .log(new IllegalArgumentException(
+ "Missing required property containers in model ContainerGroupPropertiesProperties"));
+ } else {
+ containers().forEach(e -> e.validate());
+ }
+ if (imageRegistryCredentials() != null) {
+ imageRegistryCredentials().forEach(e -> e.validate());
+ }
+ if (ipAddress() != null) {
+ ipAddress().validate();
+ }
+ if (volumes() != null) {
+ volumes().forEach(e -> e.validate());
+ }
+ if (instanceView() != null) {
+ instanceView().validate();
+ }
+ if (diagnostics() != null) {
+ diagnostics().validate();
+ }
+ if (subnetIds() != null) {
+ subnetIds().forEach(e -> e.validate());
+ }
+ if (dnsConfig() != null) {
+ dnsConfig().validate();
+ }
+ if (encryptionProperties() != null) {
+ encryptionProperties().validate();
+ }
+ if (initContainers() != null) {
+ initContainers().forEach(e -> e.validate());
+ }
+ if (extensions() != null) {
+ extensions().forEach(e -> e.validate());
+ }
+ if (confidentialComputeProperties() != null) {
+ confidentialComputeProperties().validate();
+ }
+ if (containerGroupProfile() != null) {
+ containerGroupProfile().validate();
+ }
+ if (standbyPoolProfile() != null) {
+ standbyPoolProfile().validate();
+ }
+ }
+
+ private static final ClientLogger LOGGER = new ClientLogger(ContainerGroupPropertiesProperties.class);
+
+ /**
+ * {@inheritDoc}
+ */
+ @Override
+ public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
+ jsonWriter.writeStartObject();
+ jsonWriter.writeArrayField("containers", this.containers, (writer, element) -> writer.writeJson(element));
+ jsonWriter.writeArrayField("imageRegistryCredentials", this.imageRegistryCredentials,
+ (writer, element) -> writer.writeJson(element));
+ jsonWriter.writeStringField("restartPolicy", this.restartPolicy == null ? null : this.restartPolicy.toString());
+ jsonWriter.writeJsonField("ipAddress", this.ipAddress);
+ jsonWriter.writeStringField("osType", this.osType == null ? null : this.osType.toString());
+ jsonWriter.writeArrayField("volumes", this.volumes, (writer, element) -> writer.writeJson(element));
+ jsonWriter.writeJsonField("diagnostics", this.diagnostics);
+ jsonWriter.writeArrayField("subnetIds", this.subnetIds, (writer, element) -> writer.writeJson(element));
+ jsonWriter.writeJsonField("dnsConfig", this.dnsConfig);
+ jsonWriter.writeStringField("sku", this.sku == null ? null : this.sku.toString());
+ jsonWriter.writeJsonField("encryptionProperties", this.encryptionProperties);
+ jsonWriter.writeArrayField("initContainers", this.initContainers,
+ (writer, element) -> writer.writeJson(element));
+ jsonWriter.writeArrayField("extensions", this.extensions, (writer, element) -> writer.writeJson(element));
+ jsonWriter.writeJsonField("confidentialComputeProperties", this.confidentialComputeProperties);
+ jsonWriter.writeStringField("priority", this.priority == null ? null : this.priority.toString());
+ jsonWriter.writeJsonField("containerGroupProfile", this.containerGroupProfile);
+ jsonWriter.writeJsonField("standbyPoolProfile", this.standbyPoolProfile);
+ return jsonWriter.writeEndObject();
+ }
+
+ /**
+ * Reads an instance of ContainerGroupPropertiesProperties from the JsonReader.
+ *
+ * @param jsonReader The JsonReader being read.
+ * @return An instance of ContainerGroupPropertiesProperties if the JsonReader was pointing to an instance of it, or
+ * null if it was pointing to JSON null.
+ * @throws IllegalStateException If the deserialized JSON object was missing any required properties.
+ * @throws IOException If an error occurs while reading the ContainerGroupPropertiesProperties.
+ */
+ public static ContainerGroupPropertiesProperties fromJson(JsonReader jsonReader) throws IOException {
+ return jsonReader.readObject(reader -> {
+ ContainerGroupPropertiesProperties deserializedContainerGroupPropertiesProperties
+ = new ContainerGroupPropertiesProperties();
+ while (reader.nextToken() != JsonToken.END_OBJECT) {
+ String fieldName = reader.getFieldName();
+ reader.nextToken();
+
+ if ("containers".equals(fieldName)) {
+ List containers = reader.readArray(reader1 -> Container.fromJson(reader1));
+ deserializedContainerGroupPropertiesProperties.containers = containers;
+ } else if ("provisioningState".equals(fieldName)) {
+ deserializedContainerGroupPropertiesProperties.provisioningState = reader.getString();
+ } else if ("imageRegistryCredentials".equals(fieldName)) {
+ List imageRegistryCredentials
+ = reader.readArray(reader1 -> ImageRegistryCredential.fromJson(reader1));
+ deserializedContainerGroupPropertiesProperties.imageRegistryCredentials = imageRegistryCredentials;
+ } else if ("restartPolicy".equals(fieldName)) {
+ deserializedContainerGroupPropertiesProperties.restartPolicy
+ = ContainerGroupRestartPolicy.fromString(reader.getString());
+ } else if ("ipAddress".equals(fieldName)) {
+ deserializedContainerGroupPropertiesProperties.ipAddress = IpAddress.fromJson(reader);
+ } else if ("osType".equals(fieldName)) {
+ deserializedContainerGroupPropertiesProperties.osType
+ = OperatingSystemTypes.fromString(reader.getString());
+ } else if ("volumes".equals(fieldName)) {
+ List volumes = reader.readArray(reader1 -> Volume.fromJson(reader1));
+ deserializedContainerGroupPropertiesProperties.volumes = volumes;
+ } else if ("instanceView".equals(fieldName)) {
+ deserializedContainerGroupPropertiesProperties.instanceView
+ = ContainerGroupPropertiesInstanceView.fromJson(reader);
+ } else if ("diagnostics".equals(fieldName)) {
+ deserializedContainerGroupPropertiesProperties.diagnostics
+ = ContainerGroupDiagnostics.fromJson(reader);
+ } else if ("subnetIds".equals(fieldName)) {
+ List subnetIds
+ = reader.readArray(reader1 -> ContainerGroupSubnetId.fromJson(reader1));
+ deserializedContainerGroupPropertiesProperties.subnetIds = subnetIds;
+ } else if ("dnsConfig".equals(fieldName)) {
+ deserializedContainerGroupPropertiesProperties.dnsConfig = DnsConfiguration.fromJson(reader);
+ } else if ("sku".equals(fieldName)) {
+ deserializedContainerGroupPropertiesProperties.sku
+ = ContainerGroupSku.fromString(reader.getString());
+ } else if ("encryptionProperties".equals(fieldName)) {
+ deserializedContainerGroupPropertiesProperties.encryptionProperties
+ = EncryptionProperties.fromJson(reader);
+ } else if ("initContainers".equals(fieldName)) {
+ List initContainers
+ = reader.readArray(reader1 -> InitContainerDefinition.fromJson(reader1));
+ deserializedContainerGroupPropertiesProperties.initContainers = initContainers;
+ } else if ("extensions".equals(fieldName)) {
+ List extensions
+ = reader.readArray(reader1 -> DeploymentExtensionSpec.fromJson(reader1));
+ deserializedContainerGroupPropertiesProperties.extensions = extensions;
+ } else if ("confidentialComputeProperties".equals(fieldName)) {
+ deserializedContainerGroupPropertiesProperties.confidentialComputeProperties
+ = ConfidentialComputeProperties.fromJson(reader);
+ } else if ("priority".equals(fieldName)) {
+ deserializedContainerGroupPropertiesProperties.priority
+ = ContainerGroupPriority.fromString(reader.getString());
+ } else if ("containerGroupProfile".equals(fieldName)) {
+ deserializedContainerGroupPropertiesProperties.containerGroupProfile
+ = ContainerGroupProfileReferenceDefinition.fromJson(reader);
+ } else if ("standbyPoolProfile".equals(fieldName)) {
+ deserializedContainerGroupPropertiesProperties.standbyPoolProfile
+ = StandbyPoolProfileDefinition.fromJson(reader);
+ } else if ("isCreatedFromStandbyPool".equals(fieldName)) {
+ deserializedContainerGroupPropertiesProperties.isCreatedFromStandbyPool
+ = reader.getNullable(JsonReader::getBoolean);
+ } else {
+ reader.skipChildren();
+ }
+ }
+
+ return deserializedContainerGroupPropertiesProperties;
+ });
+ }
+}
diff --git a/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/models/ContainerProperties.java b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/models/ContainerProperties.java
new file mode 100644
index 000000000000..b058141adcef
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/models/ContainerProperties.java
@@ -0,0 +1,403 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+package com.azure.resourcemanager.containerinstance.generated.fluent.models;
+
+import com.azure.core.annotation.Fluent;
+import com.azure.json.JsonReader;
+import com.azure.json.JsonSerializable;
+import com.azure.json.JsonToken;
+import com.azure.json.JsonWriter;
+import com.azure.resourcemanager.containerinstance.generated.models.ConfigMap;
+import com.azure.resourcemanager.containerinstance.generated.models.ContainerPort;
+import com.azure.resourcemanager.containerinstance.generated.models.ContainerProbe;
+import com.azure.resourcemanager.containerinstance.generated.models.ContainerPropertiesInstanceView;
+import com.azure.resourcemanager.containerinstance.generated.models.EnvironmentVariable;
+import com.azure.resourcemanager.containerinstance.generated.models.ResourceRequirements;
+import com.azure.resourcemanager.containerinstance.generated.models.SecurityContextDefinition;
+import com.azure.resourcemanager.containerinstance.generated.models.VolumeMount;
+import java.io.IOException;
+import java.util.List;
+
+/**
+ * The container instance properties.
+ */
+@Fluent
+public final class ContainerProperties implements JsonSerializable {
+ /*
+ * The name of the image used to create the container instance.
+ */
+ private String image;
+
+ /*
+ * The commands to execute within the container instance in exec form.
+ */
+ private List command;
+
+ /*
+ * The exposed ports on the container instance.
+ */
+ private List ports;
+
+ /*
+ * The environment variables to set in the container instance.
+ */
+ private List environmentVariables;
+
+ /*
+ * The instance view of the container instance. Only valid in response.
+ */
+ private ContainerPropertiesInstanceView instanceView;
+
+ /*
+ * The resource requirements of the container instance.
+ */
+ private ResourceRequirements resources;
+
+ /*
+ * The volume mounts available to the container instance.
+ */
+ private List volumeMounts;
+
+ /*
+ * The liveness probe.
+ */
+ private ContainerProbe livenessProbe;
+
+ /*
+ * The readiness probe.
+ */
+ private ContainerProbe readinessProbe;
+
+ /*
+ * The container security properties.
+ */
+ private SecurityContextDefinition securityContext;
+
+ /*
+ * The config map.
+ */
+ private ConfigMap configMap;
+
+ /**
+ * Creates an instance of ContainerProperties class.
+ */
+ public ContainerProperties() {
+ }
+
+ /**
+ * Get the image property: The name of the image used to create the container instance.
+ *
+ * @return the image value.
+ */
+ public String image() {
+ return this.image;
+ }
+
+ /**
+ * Set the image property: The name of the image used to create the container instance.
+ *
+ * @param image the image value to set.
+ * @return the ContainerProperties object itself.
+ */
+ public ContainerProperties withImage(String image) {
+ this.image = image;
+ return this;
+ }
+
+ /**
+ * Get the command property: The commands to execute within the container instance in exec form.
+ *
+ * @return the command value.
+ */
+ public List command() {
+ return this.command;
+ }
+
+ /**
+ * Set the command property: The commands to execute within the container instance in exec form.
+ *
+ * @param command the command value to set.
+ * @return the ContainerProperties object itself.
+ */
+ public ContainerProperties withCommand(List command) {
+ this.command = command;
+ return this;
+ }
+
+ /**
+ * Get the ports property: The exposed ports on the container instance.
+ *
+ * @return the ports value.
+ */
+ public List ports() {
+ return this.ports;
+ }
+
+ /**
+ * Set the ports property: The exposed ports on the container instance.
+ *
+ * @param ports the ports value to set.
+ * @return the ContainerProperties object itself.
+ */
+ public ContainerProperties withPorts(List ports) {
+ this.ports = ports;
+ return this;
+ }
+
+ /**
+ * Get the environmentVariables property: The environment variables to set in the container instance.
+ *
+ * @return the environmentVariables value.
+ */
+ public List environmentVariables() {
+ return this.environmentVariables;
+ }
+
+ /**
+ * Set the environmentVariables property: The environment variables to set in the container instance.
+ *
+ * @param environmentVariables the environmentVariables value to set.
+ * @return the ContainerProperties object itself.
+ */
+ public ContainerProperties withEnvironmentVariables(List environmentVariables) {
+ this.environmentVariables = environmentVariables;
+ return this;
+ }
+
+ /**
+ * Get the instanceView property: The instance view of the container instance. Only valid in response.
+ *
+ * @return the instanceView value.
+ */
+ public ContainerPropertiesInstanceView instanceView() {
+ return this.instanceView;
+ }
+
+ /**
+ * Get the resources property: The resource requirements of the container instance.
+ *
+ * @return the resources value.
+ */
+ public ResourceRequirements resources() {
+ return this.resources;
+ }
+
+ /**
+ * Set the resources property: The resource requirements of the container instance.
+ *
+ * @param resources the resources value to set.
+ * @return the ContainerProperties object itself.
+ */
+ public ContainerProperties withResources(ResourceRequirements resources) {
+ this.resources = resources;
+ return this;
+ }
+
+ /**
+ * Get the volumeMounts property: The volume mounts available to the container instance.
+ *
+ * @return the volumeMounts value.
+ */
+ public List volumeMounts() {
+ return this.volumeMounts;
+ }
+
+ /**
+ * Set the volumeMounts property: The volume mounts available to the container instance.
+ *
+ * @param volumeMounts the volumeMounts value to set.
+ * @return the ContainerProperties object itself.
+ */
+ public ContainerProperties withVolumeMounts(List volumeMounts) {
+ this.volumeMounts = volumeMounts;
+ return this;
+ }
+
+ /**
+ * Get the livenessProbe property: The liveness probe.
+ *
+ * @return the livenessProbe value.
+ */
+ public ContainerProbe livenessProbe() {
+ return this.livenessProbe;
+ }
+
+ /**
+ * Set the livenessProbe property: The liveness probe.
+ *
+ * @param livenessProbe the livenessProbe value to set.
+ * @return the ContainerProperties object itself.
+ */
+ public ContainerProperties withLivenessProbe(ContainerProbe livenessProbe) {
+ this.livenessProbe = livenessProbe;
+ return this;
+ }
+
+ /**
+ * Get the readinessProbe property: The readiness probe.
+ *
+ * @return the readinessProbe value.
+ */
+ public ContainerProbe readinessProbe() {
+ return this.readinessProbe;
+ }
+
+ /**
+ * Set the readinessProbe property: The readiness probe.
+ *
+ * @param readinessProbe the readinessProbe value to set.
+ * @return the ContainerProperties object itself.
+ */
+ public ContainerProperties withReadinessProbe(ContainerProbe readinessProbe) {
+ this.readinessProbe = readinessProbe;
+ return this;
+ }
+
+ /**
+ * Get the securityContext property: The container security properties.
+ *
+ * @return the securityContext value.
+ */
+ public SecurityContextDefinition securityContext() {
+ return this.securityContext;
+ }
+
+ /**
+ * Set the securityContext property: The container security properties.
+ *
+ * @param securityContext the securityContext value to set.
+ * @return the ContainerProperties object itself.
+ */
+ public ContainerProperties withSecurityContext(SecurityContextDefinition securityContext) {
+ this.securityContext = securityContext;
+ return this;
+ }
+
+ /**
+ * Get the configMap property: The config map.
+ *
+ * @return the configMap value.
+ */
+ public ConfigMap configMap() {
+ return this.configMap;
+ }
+
+ /**
+ * Set the configMap property: The config map.
+ *
+ * @param configMap the configMap value to set.
+ * @return the ContainerProperties object itself.
+ */
+ public ContainerProperties withConfigMap(ConfigMap configMap) {
+ this.configMap = configMap;
+ return this;
+ }
+
+ /**
+ * Validates the instance.
+ *
+ * @throws IllegalArgumentException thrown if the instance is not valid.
+ */
+ public void validate() {
+ if (ports() != null) {
+ ports().forEach(e -> e.validate());
+ }
+ if (environmentVariables() != null) {
+ environmentVariables().forEach(e -> e.validate());
+ }
+ if (instanceView() != null) {
+ instanceView().validate();
+ }
+ if (resources() != null) {
+ resources().validate();
+ }
+ if (volumeMounts() != null) {
+ volumeMounts().forEach(e -> e.validate());
+ }
+ if (livenessProbe() != null) {
+ livenessProbe().validate();
+ }
+ if (readinessProbe() != null) {
+ readinessProbe().validate();
+ }
+ if (securityContext() != null) {
+ securityContext().validate();
+ }
+ if (configMap() != null) {
+ configMap().validate();
+ }
+ }
+
+ /**
+ * {@inheritDoc}
+ */
+ @Override
+ public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
+ jsonWriter.writeStartObject();
+ jsonWriter.writeStringField("image", this.image);
+ jsonWriter.writeArrayField("command", this.command, (writer, element) -> writer.writeString(element));
+ jsonWriter.writeArrayField("ports", this.ports, (writer, element) -> writer.writeJson(element));
+ jsonWriter.writeArrayField("environmentVariables", this.environmentVariables,
+ (writer, element) -> writer.writeJson(element));
+ jsonWriter.writeJsonField("resources", this.resources);
+ jsonWriter.writeArrayField("volumeMounts", this.volumeMounts, (writer, element) -> writer.writeJson(element));
+ jsonWriter.writeJsonField("livenessProbe", this.livenessProbe);
+ jsonWriter.writeJsonField("readinessProbe", this.readinessProbe);
+ jsonWriter.writeJsonField("securityContext", this.securityContext);
+ jsonWriter.writeJsonField("configMap", this.configMap);
+ return jsonWriter.writeEndObject();
+ }
+
+ /**
+ * Reads an instance of ContainerProperties from the JsonReader.
+ *
+ * @param jsonReader The JsonReader being read.
+ * @return An instance of ContainerProperties if the JsonReader was pointing to an instance of it, or null if it was
+ * pointing to JSON null.
+ * @throws IOException If an error occurs while reading the ContainerProperties.
+ */
+ public static ContainerProperties fromJson(JsonReader jsonReader) throws IOException {
+ return jsonReader.readObject(reader -> {
+ ContainerProperties deserializedContainerProperties = new ContainerProperties();
+ while (reader.nextToken() != JsonToken.END_OBJECT) {
+ String fieldName = reader.getFieldName();
+ reader.nextToken();
+
+ if ("image".equals(fieldName)) {
+ deserializedContainerProperties.image = reader.getString();
+ } else if ("command".equals(fieldName)) {
+ List command = reader.readArray(reader1 -> reader1.getString());
+ deserializedContainerProperties.command = command;
+ } else if ("ports".equals(fieldName)) {
+ List ports = reader.readArray(reader1 -> ContainerPort.fromJson(reader1));
+ deserializedContainerProperties.ports = ports;
+ } else if ("environmentVariables".equals(fieldName)) {
+ List environmentVariables
+ = reader.readArray(reader1 -> EnvironmentVariable.fromJson(reader1));
+ deserializedContainerProperties.environmentVariables = environmentVariables;
+ } else if ("instanceView".equals(fieldName)) {
+ deserializedContainerProperties.instanceView = ContainerPropertiesInstanceView.fromJson(reader);
+ } else if ("resources".equals(fieldName)) {
+ deserializedContainerProperties.resources = ResourceRequirements.fromJson(reader);
+ } else if ("volumeMounts".equals(fieldName)) {
+ List volumeMounts = reader.readArray(reader1 -> VolumeMount.fromJson(reader1));
+ deserializedContainerProperties.volumeMounts = volumeMounts;
+ } else if ("livenessProbe".equals(fieldName)) {
+ deserializedContainerProperties.livenessProbe = ContainerProbe.fromJson(reader);
+ } else if ("readinessProbe".equals(fieldName)) {
+ deserializedContainerProperties.readinessProbe = ContainerProbe.fromJson(reader);
+ } else if ("securityContext".equals(fieldName)) {
+ deserializedContainerProperties.securityContext = SecurityContextDefinition.fromJson(reader);
+ } else if ("configMap".equals(fieldName)) {
+ deserializedContainerProperties.configMap = ConfigMap.fromJson(reader);
+ } else {
+ reader.skipChildren();
+ }
+ }
+
+ return deserializedContainerProperties;
+ });
+ }
+}
diff --git a/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/models/DeploymentExtensionSpecProperties.java b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/models/DeploymentExtensionSpecProperties.java
new file mode 100644
index 000000000000..6f6ed928a74b
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/models/DeploymentExtensionSpecProperties.java
@@ -0,0 +1,192 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+package com.azure.resourcemanager.containerinstance.generated.fluent.models;
+
+import com.azure.core.annotation.Fluent;
+import com.azure.core.util.logging.ClientLogger;
+import com.azure.json.JsonReader;
+import com.azure.json.JsonSerializable;
+import com.azure.json.JsonToken;
+import com.azure.json.JsonWriter;
+import java.io.IOException;
+
+/**
+ * Extension specific properties.
+ */
+@Fluent
+public final class DeploymentExtensionSpecProperties implements JsonSerializable {
+ /*
+ * Type of extension to be added.
+ */
+ private String extensionType;
+
+ /*
+ * Version of the extension being used.
+ */
+ private String version;
+
+ /*
+ * Settings for the extension.
+ */
+ private Object settings;
+
+ /*
+ * Protected settings for the extension.
+ */
+ private Object protectedSettings;
+
+ /**
+ * Creates an instance of DeploymentExtensionSpecProperties class.
+ */
+ public DeploymentExtensionSpecProperties() {
+ }
+
+ /**
+ * Get the extensionType property: Type of extension to be added.
+ *
+ * @return the extensionType value.
+ */
+ public String extensionType() {
+ return this.extensionType;
+ }
+
+ /**
+ * Set the extensionType property: Type of extension to be added.
+ *
+ * @param extensionType the extensionType value to set.
+ * @return the DeploymentExtensionSpecProperties object itself.
+ */
+ public DeploymentExtensionSpecProperties withExtensionType(String extensionType) {
+ this.extensionType = extensionType;
+ return this;
+ }
+
+ /**
+ * Get the version property: Version of the extension being used.
+ *
+ * @return the version value.
+ */
+ public String version() {
+ return this.version;
+ }
+
+ /**
+ * Set the version property: Version of the extension being used.
+ *
+ * @param version the version value to set.
+ * @return the DeploymentExtensionSpecProperties object itself.
+ */
+ public DeploymentExtensionSpecProperties withVersion(String version) {
+ this.version = version;
+ return this;
+ }
+
+ /**
+ * Get the settings property: Settings for the extension.
+ *
+ * @return the settings value.
+ */
+ public Object settings() {
+ return this.settings;
+ }
+
+ /**
+ * Set the settings property: Settings for the extension.
+ *
+ * @param settings the settings value to set.
+ * @return the DeploymentExtensionSpecProperties object itself.
+ */
+ public DeploymentExtensionSpecProperties withSettings(Object settings) {
+ this.settings = settings;
+ return this;
+ }
+
+ /**
+ * Get the protectedSettings property: Protected settings for the extension.
+ *
+ * @return the protectedSettings value.
+ */
+ public Object protectedSettings() {
+ return this.protectedSettings;
+ }
+
+ /**
+ * Set the protectedSettings property: Protected settings for the extension.
+ *
+ * @param protectedSettings the protectedSettings value to set.
+ * @return the DeploymentExtensionSpecProperties object itself.
+ */
+ public DeploymentExtensionSpecProperties withProtectedSettings(Object protectedSettings) {
+ this.protectedSettings = protectedSettings;
+ return this;
+ }
+
+ /**
+ * Validates the instance.
+ *
+ * @throws IllegalArgumentException thrown if the instance is not valid.
+ */
+ public void validate() {
+ if (extensionType() == null) {
+ throw LOGGER.atError()
+ .log(new IllegalArgumentException(
+ "Missing required property extensionType in model DeploymentExtensionSpecProperties"));
+ }
+ if (version() == null) {
+ throw LOGGER.atError()
+ .log(new IllegalArgumentException(
+ "Missing required property version in model DeploymentExtensionSpecProperties"));
+ }
+ }
+
+ private static final ClientLogger LOGGER = new ClientLogger(DeploymentExtensionSpecProperties.class);
+
+ /**
+ * {@inheritDoc}
+ */
+ @Override
+ public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
+ jsonWriter.writeStartObject();
+ jsonWriter.writeStringField("extensionType", this.extensionType);
+ jsonWriter.writeStringField("version", this.version);
+ jsonWriter.writeUntypedField("settings", this.settings);
+ jsonWriter.writeUntypedField("protectedSettings", this.protectedSettings);
+ return jsonWriter.writeEndObject();
+ }
+
+ /**
+ * Reads an instance of DeploymentExtensionSpecProperties from the JsonReader.
+ *
+ * @param jsonReader The JsonReader being read.
+ * @return An instance of DeploymentExtensionSpecProperties if the JsonReader was pointing to an instance of it, or
+ * null if it was pointing to JSON null.
+ * @throws IllegalStateException If the deserialized JSON object was missing any required properties.
+ * @throws IOException If an error occurs while reading the DeploymentExtensionSpecProperties.
+ */
+ public static DeploymentExtensionSpecProperties fromJson(JsonReader jsonReader) throws IOException {
+ return jsonReader.readObject(reader -> {
+ DeploymentExtensionSpecProperties deserializedDeploymentExtensionSpecProperties
+ = new DeploymentExtensionSpecProperties();
+ while (reader.nextToken() != JsonToken.END_OBJECT) {
+ String fieldName = reader.getFieldName();
+ reader.nextToken();
+
+ if ("extensionType".equals(fieldName)) {
+ deserializedDeploymentExtensionSpecProperties.extensionType = reader.getString();
+ } else if ("version".equals(fieldName)) {
+ deserializedDeploymentExtensionSpecProperties.version = reader.getString();
+ } else if ("settings".equals(fieldName)) {
+ deserializedDeploymentExtensionSpecProperties.settings = reader.readUntyped();
+ } else if ("protectedSettings".equals(fieldName)) {
+ deserializedDeploymentExtensionSpecProperties.protectedSettings = reader.readUntyped();
+ } else {
+ reader.skipChildren();
+ }
+ }
+
+ return deserializedDeploymentExtensionSpecProperties;
+ });
+ }
+}
diff --git a/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/models/InitContainerPropertiesDefinition.java b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/models/InitContainerPropertiesDefinition.java
new file mode 100644
index 000000000000..f39379308167
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/models/InitContainerPropertiesDefinition.java
@@ -0,0 +1,246 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+package com.azure.resourcemanager.containerinstance.generated.fluent.models;
+
+import com.azure.core.annotation.Fluent;
+import com.azure.json.JsonReader;
+import com.azure.json.JsonSerializable;
+import com.azure.json.JsonToken;
+import com.azure.json.JsonWriter;
+import com.azure.resourcemanager.containerinstance.generated.models.EnvironmentVariable;
+import com.azure.resourcemanager.containerinstance.generated.models.InitContainerPropertiesDefinitionInstanceView;
+import com.azure.resourcemanager.containerinstance.generated.models.SecurityContextDefinition;
+import com.azure.resourcemanager.containerinstance.generated.models.VolumeMount;
+import java.io.IOException;
+import java.util.List;
+
+/**
+ * The init container definition properties.
+ */
+@Fluent
+public final class InitContainerPropertiesDefinition implements JsonSerializable {
+ /*
+ * The image of the init container.
+ */
+ private String image;
+
+ /*
+ * The command to execute within the init container in exec form.
+ */
+ private List command;
+
+ /*
+ * The environment variables to set in the init container.
+ */
+ private List environmentVariables;
+
+ /*
+ * The instance view of the init container. Only valid in response.
+ */
+ private InitContainerPropertiesDefinitionInstanceView instanceView;
+
+ /*
+ * The volume mounts available to the init container.
+ */
+ private List volumeMounts;
+
+ /*
+ * The container security properties.
+ */
+ private SecurityContextDefinition securityContext;
+
+ /**
+ * Creates an instance of InitContainerPropertiesDefinition class.
+ */
+ public InitContainerPropertiesDefinition() {
+ }
+
+ /**
+ * Get the image property: The image of the init container.
+ *
+ * @return the image value.
+ */
+ public String image() {
+ return this.image;
+ }
+
+ /**
+ * Set the image property: The image of the init container.
+ *
+ * @param image the image value to set.
+ * @return the InitContainerPropertiesDefinition object itself.
+ */
+ public InitContainerPropertiesDefinition withImage(String image) {
+ this.image = image;
+ return this;
+ }
+
+ /**
+ * Get the command property: The command to execute within the init container in exec form.
+ *
+ * @return the command value.
+ */
+ public List command() {
+ return this.command;
+ }
+
+ /**
+ * Set the command property: The command to execute within the init container in exec form.
+ *
+ * @param command the command value to set.
+ * @return the InitContainerPropertiesDefinition object itself.
+ */
+ public InitContainerPropertiesDefinition withCommand(List command) {
+ this.command = command;
+ return this;
+ }
+
+ /**
+ * Get the environmentVariables property: The environment variables to set in the init container.
+ *
+ * @return the environmentVariables value.
+ */
+ public List environmentVariables() {
+ return this.environmentVariables;
+ }
+
+ /**
+ * Set the environmentVariables property: The environment variables to set in the init container.
+ *
+ * @param environmentVariables the environmentVariables value to set.
+ * @return the InitContainerPropertiesDefinition object itself.
+ */
+ public InitContainerPropertiesDefinition withEnvironmentVariables(List environmentVariables) {
+ this.environmentVariables = environmentVariables;
+ return this;
+ }
+
+ /**
+ * Get the instanceView property: The instance view of the init container. Only valid in response.
+ *
+ * @return the instanceView value.
+ */
+ public InitContainerPropertiesDefinitionInstanceView instanceView() {
+ return this.instanceView;
+ }
+
+ /**
+ * Get the volumeMounts property: The volume mounts available to the init container.
+ *
+ * @return the volumeMounts value.
+ */
+ public List volumeMounts() {
+ return this.volumeMounts;
+ }
+
+ /**
+ * Set the volumeMounts property: The volume mounts available to the init container.
+ *
+ * @param volumeMounts the volumeMounts value to set.
+ * @return the InitContainerPropertiesDefinition object itself.
+ */
+ public InitContainerPropertiesDefinition withVolumeMounts(List volumeMounts) {
+ this.volumeMounts = volumeMounts;
+ return this;
+ }
+
+ /**
+ * Get the securityContext property: The container security properties.
+ *
+ * @return the securityContext value.
+ */
+ public SecurityContextDefinition securityContext() {
+ return this.securityContext;
+ }
+
+ /**
+ * Set the securityContext property: The container security properties.
+ *
+ * @param securityContext the securityContext value to set.
+ * @return the InitContainerPropertiesDefinition object itself.
+ */
+ public InitContainerPropertiesDefinition withSecurityContext(SecurityContextDefinition securityContext) {
+ this.securityContext = securityContext;
+ return this;
+ }
+
+ /**
+ * Validates the instance.
+ *
+ * @throws IllegalArgumentException thrown if the instance is not valid.
+ */
+ public void validate() {
+ if (environmentVariables() != null) {
+ environmentVariables().forEach(e -> e.validate());
+ }
+ if (instanceView() != null) {
+ instanceView().validate();
+ }
+ if (volumeMounts() != null) {
+ volumeMounts().forEach(e -> e.validate());
+ }
+ if (securityContext() != null) {
+ securityContext().validate();
+ }
+ }
+
+ /**
+ * {@inheritDoc}
+ */
+ @Override
+ public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
+ jsonWriter.writeStartObject();
+ jsonWriter.writeStringField("image", this.image);
+ jsonWriter.writeArrayField("command", this.command, (writer, element) -> writer.writeString(element));
+ jsonWriter.writeArrayField("environmentVariables", this.environmentVariables,
+ (writer, element) -> writer.writeJson(element));
+ jsonWriter.writeArrayField("volumeMounts", this.volumeMounts, (writer, element) -> writer.writeJson(element));
+ jsonWriter.writeJsonField("securityContext", this.securityContext);
+ return jsonWriter.writeEndObject();
+ }
+
+ /**
+ * Reads an instance of InitContainerPropertiesDefinition from the JsonReader.
+ *
+ * @param jsonReader The JsonReader being read.
+ * @return An instance of InitContainerPropertiesDefinition if the JsonReader was pointing to an instance of it, or
+ * null if it was pointing to JSON null.
+ * @throws IOException If an error occurs while reading the InitContainerPropertiesDefinition.
+ */
+ public static InitContainerPropertiesDefinition fromJson(JsonReader jsonReader) throws IOException {
+ return jsonReader.readObject(reader -> {
+ InitContainerPropertiesDefinition deserializedInitContainerPropertiesDefinition
+ = new InitContainerPropertiesDefinition();
+ while (reader.nextToken() != JsonToken.END_OBJECT) {
+ String fieldName = reader.getFieldName();
+ reader.nextToken();
+
+ if ("image".equals(fieldName)) {
+ deserializedInitContainerPropertiesDefinition.image = reader.getString();
+ } else if ("command".equals(fieldName)) {
+ List command = reader.readArray(reader1 -> reader1.getString());
+ deserializedInitContainerPropertiesDefinition.command = command;
+ } else if ("environmentVariables".equals(fieldName)) {
+ List environmentVariables
+ = reader.readArray(reader1 -> EnvironmentVariable.fromJson(reader1));
+ deserializedInitContainerPropertiesDefinition.environmentVariables = environmentVariables;
+ } else if ("instanceView".equals(fieldName)) {
+ deserializedInitContainerPropertiesDefinition.instanceView
+ = InitContainerPropertiesDefinitionInstanceView.fromJson(reader);
+ } else if ("volumeMounts".equals(fieldName)) {
+ List volumeMounts = reader.readArray(reader1 -> VolumeMount.fromJson(reader1));
+ deserializedInitContainerPropertiesDefinition.volumeMounts = volumeMounts;
+ } else if ("securityContext".equals(fieldName)) {
+ deserializedInitContainerPropertiesDefinition.securityContext
+ = SecurityContextDefinition.fromJson(reader);
+ } else {
+ reader.skipChildren();
+ }
+ }
+
+ return deserializedInitContainerPropertiesDefinition;
+ });
+ }
+}
diff --git a/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/models/LogsInner.java b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/models/LogsInner.java
new file mode 100644
index 000000000000..f6fb6c8884f1
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/models/LogsInner.java
@@ -0,0 +1,93 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+package com.azure.resourcemanager.containerinstance.generated.fluent.models;
+
+import com.azure.core.annotation.Fluent;
+import com.azure.json.JsonReader;
+import com.azure.json.JsonSerializable;
+import com.azure.json.JsonToken;
+import com.azure.json.JsonWriter;
+import java.io.IOException;
+
+/**
+ * The logs.
+ */
+@Fluent
+public final class LogsInner implements JsonSerializable {
+ /*
+ * The content of the log.
+ */
+ private String content;
+
+ /**
+ * Creates an instance of LogsInner class.
+ */
+ public LogsInner() {
+ }
+
+ /**
+ * Get the content property: The content of the log.
+ *
+ * @return the content value.
+ */
+ public String content() {
+ return this.content;
+ }
+
+ /**
+ * Set the content property: The content of the log.
+ *
+ * @param content the content value to set.
+ * @return the LogsInner object itself.
+ */
+ public LogsInner withContent(String content) {
+ this.content = content;
+ return this;
+ }
+
+ /**
+ * Validates the instance.
+ *
+ * @throws IllegalArgumentException thrown if the instance is not valid.
+ */
+ public void validate() {
+ }
+
+ /**
+ * {@inheritDoc}
+ */
+ @Override
+ public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
+ jsonWriter.writeStartObject();
+ jsonWriter.writeStringField("content", this.content);
+ return jsonWriter.writeEndObject();
+ }
+
+ /**
+ * Reads an instance of LogsInner from the JsonReader.
+ *
+ * @param jsonReader The JsonReader being read.
+ * @return An instance of LogsInner if the JsonReader was pointing to an instance of it, or null if it was pointing
+ * to JSON null.
+ * @throws IOException If an error occurs while reading the LogsInner.
+ */
+ public static LogsInner fromJson(JsonReader jsonReader) throws IOException {
+ return jsonReader.readObject(reader -> {
+ LogsInner deserializedLogsInner = new LogsInner();
+ while (reader.nextToken() != JsonToken.END_OBJECT) {
+ String fieldName = reader.getFieldName();
+ reader.nextToken();
+
+ if ("content".equals(fieldName)) {
+ deserializedLogsInner.content = reader.getString();
+ } else {
+ reader.skipChildren();
+ }
+ }
+
+ return deserializedLogsInner;
+ });
+ }
+}
diff --git a/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/models/OperationInner.java b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/models/OperationInner.java
new file mode 100644
index 000000000000..85cfc1837052
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/models/OperationInner.java
@@ -0,0 +1,194 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+package com.azure.resourcemanager.containerinstance.generated.fluent.models;
+
+import com.azure.core.annotation.Fluent;
+import com.azure.core.util.logging.ClientLogger;
+import com.azure.json.JsonReader;
+import com.azure.json.JsonSerializable;
+import com.azure.json.JsonToken;
+import com.azure.json.JsonWriter;
+import com.azure.resourcemanager.containerinstance.generated.models.ContainerInstanceOperationsOrigin;
+import com.azure.resourcemanager.containerinstance.generated.models.OperationDisplay;
+import java.io.IOException;
+
+/**
+ * An operation for Azure Container Instance service.
+ */
+@Fluent
+public final class OperationInner implements JsonSerializable {
+ /*
+ * The name of the operation.
+ */
+ private String name;
+
+ /*
+ * The display information of the operation.
+ */
+ private OperationDisplay display;
+
+ /*
+ * The additional properties.
+ */
+ private Object properties;
+
+ /*
+ * The intended executor of the operation.
+ */
+ private ContainerInstanceOperationsOrigin origin;
+
+ /**
+ * Creates an instance of OperationInner class.
+ */
+ public OperationInner() {
+ }
+
+ /**
+ * Get the name property: The name of the operation.
+ *
+ * @return the name value.
+ */
+ public String name() {
+ return this.name;
+ }
+
+ /**
+ * Set the name property: The name of the operation.
+ *
+ * @param name the name value to set.
+ * @return the OperationInner object itself.
+ */
+ public OperationInner withName(String name) {
+ this.name = name;
+ return this;
+ }
+
+ /**
+ * Get the display property: The display information of the operation.
+ *
+ * @return the display value.
+ */
+ public OperationDisplay display() {
+ return this.display;
+ }
+
+ /**
+ * Set the display property: The display information of the operation.
+ *
+ * @param display the display value to set.
+ * @return the OperationInner object itself.
+ */
+ public OperationInner withDisplay(OperationDisplay display) {
+ this.display = display;
+ return this;
+ }
+
+ /**
+ * Get the properties property: The additional properties.
+ *
+ * @return the properties value.
+ */
+ public Object properties() {
+ return this.properties;
+ }
+
+ /**
+ * Set the properties property: The additional properties.
+ *
+ * @param properties the properties value to set.
+ * @return the OperationInner object itself.
+ */
+ public OperationInner withProperties(Object properties) {
+ this.properties = properties;
+ return this;
+ }
+
+ /**
+ * Get the origin property: The intended executor of the operation.
+ *
+ * @return the origin value.
+ */
+ public ContainerInstanceOperationsOrigin origin() {
+ return this.origin;
+ }
+
+ /**
+ * Set the origin property: The intended executor of the operation.
+ *
+ * @param origin the origin value to set.
+ * @return the OperationInner object itself.
+ */
+ public OperationInner withOrigin(ContainerInstanceOperationsOrigin origin) {
+ this.origin = origin;
+ return this;
+ }
+
+ /**
+ * Validates the instance.
+ *
+ * @throws IllegalArgumentException thrown if the instance is not valid.
+ */
+ public void validate() {
+ if (name() == null) {
+ throw LOGGER.atError()
+ .log(new IllegalArgumentException("Missing required property name in model OperationInner"));
+ }
+ if (display() == null) {
+ throw LOGGER.atError()
+ .log(new IllegalArgumentException("Missing required property display in model OperationInner"));
+ } else {
+ display().validate();
+ }
+ }
+
+ private static final ClientLogger LOGGER = new ClientLogger(OperationInner.class);
+
+ /**
+ * {@inheritDoc}
+ */
+ @Override
+ public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
+ jsonWriter.writeStartObject();
+ jsonWriter.writeStringField("name", this.name);
+ jsonWriter.writeJsonField("display", this.display);
+ jsonWriter.writeUntypedField("properties", this.properties);
+ jsonWriter.writeStringField("origin", this.origin == null ? null : this.origin.toString());
+ return jsonWriter.writeEndObject();
+ }
+
+ /**
+ * Reads an instance of OperationInner from the JsonReader.
+ *
+ * @param jsonReader The JsonReader being read.
+ * @return An instance of OperationInner if the JsonReader was pointing to an instance of it, or null if it was
+ * pointing to JSON null.
+ * @throws IllegalStateException If the deserialized JSON object was missing any required properties.
+ * @throws IOException If an error occurs while reading the OperationInner.
+ */
+ public static OperationInner fromJson(JsonReader jsonReader) throws IOException {
+ return jsonReader.readObject(reader -> {
+ OperationInner deserializedOperationInner = new OperationInner();
+ while (reader.nextToken() != JsonToken.END_OBJECT) {
+ String fieldName = reader.getFieldName();
+ reader.nextToken();
+
+ if ("name".equals(fieldName)) {
+ deserializedOperationInner.name = reader.getString();
+ } else if ("display".equals(fieldName)) {
+ deserializedOperationInner.display = OperationDisplay.fromJson(reader);
+ } else if ("properties".equals(fieldName)) {
+ deserializedOperationInner.properties = reader.readUntyped();
+ } else if ("origin".equals(fieldName)) {
+ deserializedOperationInner.origin
+ = ContainerInstanceOperationsOrigin.fromString(reader.getString());
+ } else {
+ reader.skipChildren();
+ }
+ }
+
+ return deserializedOperationInner;
+ });
+ }
+}
diff --git a/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/models/UsageInner.java b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/models/UsageInner.java
new file mode 100644
index 000000000000..301c17f3eed8
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/models/UsageInner.java
@@ -0,0 +1,149 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+package com.azure.resourcemanager.containerinstance.generated.fluent.models;
+
+import com.azure.core.annotation.Immutable;
+import com.azure.json.JsonReader;
+import com.azure.json.JsonSerializable;
+import com.azure.json.JsonToken;
+import com.azure.json.JsonWriter;
+import com.azure.resourcemanager.containerinstance.generated.models.UsageName;
+import java.io.IOException;
+
+/**
+ * A single usage result.
+ */
+@Immutable
+public final class UsageInner implements JsonSerializable {
+ /*
+ * Id of the usage result
+ */
+ private String id;
+
+ /*
+ * Unit of the usage result
+ */
+ private String unit;
+
+ /*
+ * The current usage of the resource
+ */
+ private Integer currentValue;
+
+ /*
+ * The maximum permitted usage of the resource.
+ */
+ private Integer limit;
+
+ /*
+ * The name object of the resource
+ */
+ private UsageName name;
+
+ /**
+ * Creates an instance of UsageInner class.
+ */
+ public UsageInner() {
+ }
+
+ /**
+ * Get the id property: Id of the usage result.
+ *
+ * @return the id value.
+ */
+ public String id() {
+ return this.id;
+ }
+
+ /**
+ * Get the unit property: Unit of the usage result.
+ *
+ * @return the unit value.
+ */
+ public String unit() {
+ return this.unit;
+ }
+
+ /**
+ * Get the currentValue property: The current usage of the resource.
+ *
+ * @return the currentValue value.
+ */
+ public Integer currentValue() {
+ return this.currentValue;
+ }
+
+ /**
+ * Get the limit property: The maximum permitted usage of the resource.
+ *
+ * @return the limit value.
+ */
+ public Integer limit() {
+ return this.limit;
+ }
+
+ /**
+ * Get the name property: The name object of the resource.
+ *
+ * @return the name value.
+ */
+ public UsageName name() {
+ return this.name;
+ }
+
+ /**
+ * Validates the instance.
+ *
+ * @throws IllegalArgumentException thrown if the instance is not valid.
+ */
+ public void validate() {
+ if (name() != null) {
+ name().validate();
+ }
+ }
+
+ /**
+ * {@inheritDoc}
+ */
+ @Override
+ public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
+ jsonWriter.writeStartObject();
+ return jsonWriter.writeEndObject();
+ }
+
+ /**
+ * Reads an instance of UsageInner from the JsonReader.
+ *
+ * @param jsonReader The JsonReader being read.
+ * @return An instance of UsageInner if the JsonReader was pointing to an instance of it, or null if it was pointing
+ * to JSON null.
+ * @throws IOException If an error occurs while reading the UsageInner.
+ */
+ public static UsageInner fromJson(JsonReader jsonReader) throws IOException {
+ return jsonReader.readObject(reader -> {
+ UsageInner deserializedUsageInner = new UsageInner();
+ while (reader.nextToken() != JsonToken.END_OBJECT) {
+ String fieldName = reader.getFieldName();
+ reader.nextToken();
+
+ if ("id".equals(fieldName)) {
+ deserializedUsageInner.id = reader.getString();
+ } else if ("unit".equals(fieldName)) {
+ deserializedUsageInner.unit = reader.getString();
+ } else if ("currentValue".equals(fieldName)) {
+ deserializedUsageInner.currentValue = reader.getNullable(JsonReader::getInt);
+ } else if ("limit".equals(fieldName)) {
+ deserializedUsageInner.limit = reader.getNullable(JsonReader::getInt);
+ } else if ("name".equals(fieldName)) {
+ deserializedUsageInner.name = UsageName.fromJson(reader);
+ } else {
+ reader.skipChildren();
+ }
+ }
+
+ return deserializedUsageInner;
+ });
+ }
+}
diff --git a/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/models/package-info.java b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/models/package-info.java
new file mode 100644
index 000000000000..5deed0dfbdc1
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/models/package-info.java
@@ -0,0 +1,9 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+/**
+ * Package containing the inner data models for ContainerInstanceManagementClient.
+ * null.
+ */
+package com.azure.resourcemanager.containerinstance.generated.fluent.models;
diff --git a/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/package-info.java b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/package-info.java
new file mode 100644
index 000000000000..5143c607394b
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/package-info.java
@@ -0,0 +1,9 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+/**
+ * Package containing the service clients for ContainerInstanceManagementClient.
+ * null.
+ */
+package com.azure.resourcemanager.containerinstance.generated.fluent;
diff --git a/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/implementation/CachedImagesImpl.java b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/implementation/CachedImagesImpl.java
new file mode 100644
index 000000000000..9de395ccd789
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/implementation/CachedImagesImpl.java
@@ -0,0 +1,36 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+package com.azure.resourcemanager.containerinstance.generated.implementation;
+
+import com.azure.resourcemanager.containerinstance.generated.fluent.models.CachedImagesInner;
+import com.azure.resourcemanager.containerinstance.generated.models.CachedImages;
+
+public final class CachedImagesImpl implements CachedImages {
+ private CachedImagesInner innerObject;
+
+ private final com.azure.resourcemanager.containerinstance.generated.ContainerInstanceManager serviceManager;
+
+ CachedImagesImpl(CachedImagesInner innerObject,
+ com.azure.resourcemanager.containerinstance.generated.ContainerInstanceManager serviceManager) {
+ this.innerObject = innerObject;
+ this.serviceManager = serviceManager;
+ }
+
+ public String osType() {
+ return this.innerModel().osType();
+ }
+
+ public String image() {
+ return this.innerModel().image();
+ }
+
+ public CachedImagesInner innerModel() {
+ return this.innerObject;
+ }
+
+ private com.azure.resourcemanager.containerinstance.generated.ContainerInstanceManager manager() {
+ return this.serviceManager;
+ }
+}
diff --git a/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/implementation/CapabilitiesImpl.java b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/implementation/CapabilitiesImpl.java
new file mode 100644
index 000000000000..e8c4e5f490c5
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/implementation/CapabilitiesImpl.java
@@ -0,0 +1,53 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+package com.azure.resourcemanager.containerinstance.generated.implementation;
+
+import com.azure.resourcemanager.containerinstance.generated.fluent.models.CapabilitiesInner;
+import com.azure.resourcemanager.containerinstance.generated.models.Capabilities;
+import com.azure.resourcemanager.containerinstance.generated.models.CapabilitiesCapabilities;
+
+public final class CapabilitiesImpl implements Capabilities {
+ private CapabilitiesInner innerObject;
+
+ private final com.azure.resourcemanager.containerinstance.generated.ContainerInstanceManager serviceManager;
+
+ CapabilitiesImpl(CapabilitiesInner innerObject,
+ com.azure.resourcemanager.containerinstance.generated.ContainerInstanceManager serviceManager) {
+ this.innerObject = innerObject;
+ this.serviceManager = serviceManager;
+ }
+
+ public String resourceType() {
+ return this.innerModel().resourceType();
+ }
+
+ public String osType() {
+ return this.innerModel().osType();
+ }
+
+ public String location() {
+ return this.innerModel().location();
+ }
+
+ public String ipAddressType() {
+ return this.innerModel().ipAddressType();
+ }
+
+ public String gpu() {
+ return this.innerModel().gpu();
+ }
+
+ public CapabilitiesCapabilities capabilities() {
+ return this.innerModel().capabilities();
+ }
+
+ public CapabilitiesInner innerModel() {
+ return this.innerObject;
+ }
+
+ private com.azure.resourcemanager.containerinstance.generated.ContainerInstanceManager manager() {
+ return this.serviceManager;
+ }
+}
diff --git a/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/implementation/ContainerAttachResponseImpl.java b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/implementation/ContainerAttachResponseImpl.java
new file mode 100644
index 000000000000..6752d44f496a
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/implementation/ContainerAttachResponseImpl.java
@@ -0,0 +1,36 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+package com.azure.resourcemanager.containerinstance.generated.implementation;
+
+import com.azure.resourcemanager.containerinstance.generated.fluent.models.ContainerAttachResponseInner;
+import com.azure.resourcemanager.containerinstance.generated.models.ContainerAttachResponse;
+
+public final class ContainerAttachResponseImpl implements ContainerAttachResponse {
+ private ContainerAttachResponseInner innerObject;
+
+ private final com.azure.resourcemanager.containerinstance.generated.ContainerInstanceManager serviceManager;
+
+ ContainerAttachResponseImpl(ContainerAttachResponseInner innerObject,
+ com.azure.resourcemanager.containerinstance.generated.ContainerInstanceManager serviceManager) {
+ this.innerObject = innerObject;
+ this.serviceManager = serviceManager;
+ }
+
+ public String webSocketUri() {
+ return this.innerModel().webSocketUri();
+ }
+
+ public String password() {
+ return this.innerModel().password();
+ }
+
+ public ContainerAttachResponseInner innerModel() {
+ return this.innerObject;
+ }
+
+ private com.azure.resourcemanager.containerinstance.generated.ContainerInstanceManager manager() {
+ return this.serviceManager;
+ }
+}
diff --git a/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/implementation/ContainerExecResponseImpl.java b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/implementation/ContainerExecResponseImpl.java
new file mode 100644
index 000000000000..52b4133b4064
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/implementation/ContainerExecResponseImpl.java
@@ -0,0 +1,36 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+package com.azure.resourcemanager.containerinstance.generated.implementation;
+
+import com.azure.resourcemanager.containerinstance.generated.fluent.models.ContainerExecResponseInner;
+import com.azure.resourcemanager.containerinstance.generated.models.ContainerExecResponse;
+
+public final class ContainerExecResponseImpl implements ContainerExecResponse {
+ private ContainerExecResponseInner innerObject;
+
+ private final com.azure.resourcemanager.containerinstance.generated.ContainerInstanceManager serviceManager;
+
+ ContainerExecResponseImpl(ContainerExecResponseInner innerObject,
+ com.azure.resourcemanager.containerinstance.generated.ContainerInstanceManager serviceManager) {
+ this.innerObject = innerObject;
+ this.serviceManager = serviceManager;
+ }
+
+ public String webSocketUri() {
+ return this.innerModel().webSocketUri();
+ }
+
+ public String password() {
+ return this.innerModel().password();
+ }
+
+ public ContainerExecResponseInner innerModel() {
+ return this.innerObject;
+ }
+
+ private com.azure.resourcemanager.containerinstance.generated.ContainerInstanceManager manager() {
+ return this.serviceManager;
+ }
+}
diff --git a/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/implementation/ContainerGroupImpl.java b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/implementation/ContainerGroupImpl.java
new file mode 100644
index 000000000000..3a0160fffc52
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/implementation/ContainerGroupImpl.java
@@ -0,0 +1,415 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+package com.azure.resourcemanager.containerinstance.generated.implementation;
+
+import com.azure.core.http.rest.Response;
+import com.azure.core.management.Region;
+import com.azure.core.util.Context;
+import com.azure.resourcemanager.containerinstance.generated.fluent.models.ContainerGroupInner;
+import com.azure.resourcemanager.containerinstance.generated.models.ConfidentialComputeProperties;
+import com.azure.resourcemanager.containerinstance.generated.models.Container;
+import com.azure.resourcemanager.containerinstance.generated.models.ContainerGroup;
+import com.azure.resourcemanager.containerinstance.generated.models.ContainerGroupDiagnostics;
+import com.azure.resourcemanager.containerinstance.generated.models.ContainerGroupIdentity;
+import com.azure.resourcemanager.containerinstance.generated.models.ContainerGroupPriority;
+import com.azure.resourcemanager.containerinstance.generated.models.ContainerGroupProfileReferenceDefinition;
+import com.azure.resourcemanager.containerinstance.generated.models.ContainerGroupPropertiesInstanceView;
+import com.azure.resourcemanager.containerinstance.generated.models.ContainerGroupRestartPolicy;
+import com.azure.resourcemanager.containerinstance.generated.models.ContainerGroupSku;
+import com.azure.resourcemanager.containerinstance.generated.models.ContainerGroupSubnetId;
+import com.azure.resourcemanager.containerinstance.generated.models.DeploymentExtensionSpec;
+import com.azure.resourcemanager.containerinstance.generated.models.DnsConfiguration;
+import com.azure.resourcemanager.containerinstance.generated.models.EncryptionProperties;
+import com.azure.resourcemanager.containerinstance.generated.models.ImageRegistryCredential;
+import com.azure.resourcemanager.containerinstance.generated.models.InitContainerDefinition;
+import com.azure.resourcemanager.containerinstance.generated.models.IpAddress;
+import com.azure.resourcemanager.containerinstance.generated.models.OperatingSystemTypes;
+import com.azure.resourcemanager.containerinstance.generated.models.StandbyPoolProfileDefinition;
+import com.azure.resourcemanager.containerinstance.generated.models.Volume;
+import java.util.Collections;
+import java.util.List;
+import java.util.Map;
+
+public final class ContainerGroupImpl implements ContainerGroup, ContainerGroup.Definition, ContainerGroup.Update {
+ private ContainerGroupInner innerObject;
+
+ private final com.azure.resourcemanager.containerinstance.generated.ContainerInstanceManager serviceManager;
+
+ public String id() {
+ return this.innerModel().id();
+ }
+
+ public String name() {
+ return this.innerModel().name();
+ }
+
+ public String type() {
+ return this.innerModel().type();
+ }
+
+ public String location() {
+ return this.innerModel().location();
+ }
+
+ public Map tags() {
+ Map inner = this.innerModel().tags();
+ if (inner != null) {
+ return Collections.unmodifiableMap(inner);
+ } else {
+ return Collections.emptyMap();
+ }
+ }
+
+ public List zones() {
+ List inner = this.innerModel().zones();
+ if (inner != null) {
+ return Collections.unmodifiableList(inner);
+ } else {
+ return Collections.emptyList();
+ }
+ }
+
+ public ContainerGroupIdentity identity() {
+ return this.innerModel().identity();
+ }
+
+ public String provisioningState() {
+ return this.innerModel().provisioningState();
+ }
+
+ public List containers() {
+ List inner = this.innerModel().containers();
+ if (inner != null) {
+ return Collections.unmodifiableList(inner);
+ } else {
+ return Collections.emptyList();
+ }
+ }
+
+ public List imageRegistryCredentials() {
+ List inner = this.innerModel().imageRegistryCredentials();
+ if (inner != null) {
+ return Collections.unmodifiableList(inner);
+ } else {
+ return Collections.emptyList();
+ }
+ }
+
+ public ContainerGroupRestartPolicy restartPolicy() {
+ return this.innerModel().restartPolicy();
+ }
+
+ public IpAddress ipAddress() {
+ return this.innerModel().ipAddress();
+ }
+
+ public OperatingSystemTypes osType() {
+ return this.innerModel().osType();
+ }
+
+ public List volumes() {
+ List inner = this.innerModel().volumes();
+ if (inner != null) {
+ return Collections.unmodifiableList(inner);
+ } else {
+ return Collections.emptyList();
+ }
+ }
+
+ public ContainerGroupPropertiesInstanceView instanceView() {
+ return this.innerModel().instanceView();
+ }
+
+ public ContainerGroupDiagnostics diagnostics() {
+ return this.innerModel().diagnostics();
+ }
+
+ public List subnetIds() {
+ List inner = this.innerModel().subnetIds();
+ if (inner != null) {
+ return Collections.unmodifiableList(inner);
+ } else {
+ return Collections.emptyList();
+ }
+ }
+
+ public DnsConfiguration dnsConfig() {
+ return this.innerModel().dnsConfig();
+ }
+
+ public ContainerGroupSku sku() {
+ return this.innerModel().sku();
+ }
+
+ public EncryptionProperties encryptionProperties() {
+ return this.innerModel().encryptionProperties();
+ }
+
+ public List initContainers() {
+ List inner = this.innerModel().initContainers();
+ if (inner != null) {
+ return Collections.unmodifiableList(inner);
+ } else {
+ return Collections.emptyList();
+ }
+ }
+
+ public List extensions() {
+ List inner = this.innerModel().extensions();
+ if (inner != null) {
+ return Collections.unmodifiableList(inner);
+ } else {
+ return Collections.emptyList();
+ }
+ }
+
+ public ConfidentialComputeProperties confidentialComputeProperties() {
+ return this.innerModel().confidentialComputeProperties();
+ }
+
+ public ContainerGroupPriority priority() {
+ return this.innerModel().priority();
+ }
+
+ public ContainerGroupProfileReferenceDefinition containerGroupProfile() {
+ return this.innerModel().containerGroupProfile();
+ }
+
+ public StandbyPoolProfileDefinition standbyPoolProfile() {
+ return this.innerModel().standbyPoolProfile();
+ }
+
+ public Boolean isCreatedFromStandbyPool() {
+ return this.innerModel().isCreatedFromStandbyPool();
+ }
+
+ public Region region() {
+ return Region.fromName(this.regionName());
+ }
+
+ public String regionName() {
+ return this.location();
+ }
+
+ public String resourceGroupName() {
+ return resourceGroupName;
+ }
+
+ public ContainerGroupInner innerModel() {
+ return this.innerObject;
+ }
+
+ private com.azure.resourcemanager.containerinstance.generated.ContainerInstanceManager manager() {
+ return this.serviceManager;
+ }
+
+ private String resourceGroupName;
+
+ private String containerGroupName;
+
+ public ContainerGroupImpl withExistingResourceGroup(String resourceGroupName) {
+ this.resourceGroupName = resourceGroupName;
+ return this;
+ }
+
+ public ContainerGroup create() {
+ this.innerObject = serviceManager.serviceClient()
+ .getContainerGroups()
+ .createOrUpdate(resourceGroupName, containerGroupName, this.innerModel(), Context.NONE);
+ return this;
+ }
+
+ public ContainerGroup create(Context context) {
+ this.innerObject = serviceManager.serviceClient()
+ .getContainerGroups()
+ .createOrUpdate(resourceGroupName, containerGroupName, this.innerModel(), context);
+ return this;
+ }
+
+ ContainerGroupImpl(String name,
+ com.azure.resourcemanager.containerinstance.generated.ContainerInstanceManager serviceManager) {
+ this.innerObject = new ContainerGroupInner();
+ this.serviceManager = serviceManager;
+ this.containerGroupName = name;
+ }
+
+ public ContainerGroupImpl update() {
+ return this;
+ }
+
+ public ContainerGroup apply() {
+ this.innerObject = serviceManager.serviceClient()
+ .getContainerGroups()
+ .createOrUpdate(resourceGroupName, containerGroupName, this.innerModel(), Context.NONE);
+ return this;
+ }
+
+ public ContainerGroup apply(Context context) {
+ this.innerObject = serviceManager.serviceClient()
+ .getContainerGroups()
+ .createOrUpdate(resourceGroupName, containerGroupName, this.innerModel(), context);
+ return this;
+ }
+
+ ContainerGroupImpl(ContainerGroupInner innerObject,
+ com.azure.resourcemanager.containerinstance.generated.ContainerInstanceManager serviceManager) {
+ this.innerObject = innerObject;
+ this.serviceManager = serviceManager;
+ this.resourceGroupName = ResourceManagerUtils.getValueFromIdByName(innerObject.id(), "resourceGroups");
+ this.containerGroupName = ResourceManagerUtils.getValueFromIdByName(innerObject.id(), "containerGroups");
+ }
+
+ public ContainerGroup refresh() {
+ this.innerObject = serviceManager.serviceClient()
+ .getContainerGroups()
+ .getByResourceGroupWithResponse(resourceGroupName, containerGroupName, Context.NONE)
+ .getValue();
+ return this;
+ }
+
+ public ContainerGroup refresh(Context context) {
+ this.innerObject = serviceManager.serviceClient()
+ .getContainerGroups()
+ .getByResourceGroupWithResponse(resourceGroupName, containerGroupName, context)
+ .getValue();
+ return this;
+ }
+
+ public void restart() {
+ serviceManager.containerGroups().restart(resourceGroupName, containerGroupName);
+ }
+
+ public void restart(Context context) {
+ serviceManager.containerGroups().restart(resourceGroupName, containerGroupName, context);
+ }
+
+ public Response stopWithResponse(Context context) {
+ return serviceManager.containerGroups().stopWithResponse(resourceGroupName, containerGroupName, context);
+ }
+
+ public void stop() {
+ serviceManager.containerGroups().stop(resourceGroupName, containerGroupName);
+ }
+
+ public void start() {
+ serviceManager.containerGroups().start(resourceGroupName, containerGroupName);
+ }
+
+ public void start(Context context) {
+ serviceManager.containerGroups().start(resourceGroupName, containerGroupName, context);
+ }
+
+ public ContainerGroupImpl withRegion(Region location) {
+ this.innerModel().withLocation(location.toString());
+ return this;
+ }
+
+ public ContainerGroupImpl withRegion(String location) {
+ this.innerModel().withLocation(location);
+ return this;
+ }
+
+ public ContainerGroupImpl withContainers(List containers) {
+ this.innerModel().withContainers(containers);
+ return this;
+ }
+
+ public ContainerGroupImpl withTags(Map tags) {
+ this.innerModel().withTags(tags);
+ return this;
+ }
+
+ public ContainerGroupImpl withZones(List zones) {
+ this.innerModel().withZones(zones);
+ return this;
+ }
+
+ public ContainerGroupImpl withIdentity(ContainerGroupIdentity identity) {
+ this.innerModel().withIdentity(identity);
+ return this;
+ }
+
+ public ContainerGroupImpl withImageRegistryCredentials(List imageRegistryCredentials) {
+ this.innerModel().withImageRegistryCredentials(imageRegistryCredentials);
+ return this;
+ }
+
+ public ContainerGroupImpl withRestartPolicy(ContainerGroupRestartPolicy restartPolicy) {
+ this.innerModel().withRestartPolicy(restartPolicy);
+ return this;
+ }
+
+ public ContainerGroupImpl withIpAddress(IpAddress ipAddress) {
+ this.innerModel().withIpAddress(ipAddress);
+ return this;
+ }
+
+ public ContainerGroupImpl withOsType(OperatingSystemTypes osType) {
+ this.innerModel().withOsType(osType);
+ return this;
+ }
+
+ public ContainerGroupImpl withVolumes(List volumes) {
+ this.innerModel().withVolumes(volumes);
+ return this;
+ }
+
+ public ContainerGroupImpl withDiagnostics(ContainerGroupDiagnostics diagnostics) {
+ this.innerModel().withDiagnostics(diagnostics);
+ return this;
+ }
+
+ public ContainerGroupImpl withSubnetIds(List subnetIds) {
+ this.innerModel().withSubnetIds(subnetIds);
+ return this;
+ }
+
+ public ContainerGroupImpl withDnsConfig(DnsConfiguration dnsConfig) {
+ this.innerModel().withDnsConfig(dnsConfig);
+ return this;
+ }
+
+ public ContainerGroupImpl withSku(ContainerGroupSku sku) {
+ this.innerModel().withSku(sku);
+ return this;
+ }
+
+ public ContainerGroupImpl withEncryptionProperties(EncryptionProperties encryptionProperties) {
+ this.innerModel().withEncryptionProperties(encryptionProperties);
+ return this;
+ }
+
+ public ContainerGroupImpl withInitContainers(List initContainers) {
+ this.innerModel().withInitContainers(initContainers);
+ return this;
+ }
+
+ public ContainerGroupImpl withExtensions(List extensions) {
+ this.innerModel().withExtensions(extensions);
+ return this;
+ }
+
+ public ContainerGroupImpl
+ withConfidentialComputeProperties(ConfidentialComputeProperties confidentialComputeProperties) {
+ this.innerModel().withConfidentialComputeProperties(confidentialComputeProperties);
+ return this;
+ }
+
+ public ContainerGroupImpl withPriority(ContainerGroupPriority priority) {
+ this.innerModel().withPriority(priority);
+ return this;
+ }
+
+ public ContainerGroupImpl
+ withContainerGroupProfile(ContainerGroupProfileReferenceDefinition containerGroupProfile) {
+ this.innerModel().withContainerGroupProfile(containerGroupProfile);
+ return this;
+ }
+
+ public ContainerGroupImpl withStandbyPoolProfile(StandbyPoolProfileDefinition standbyPoolProfile) {
+ this.innerModel().withStandbyPoolProfile(standbyPoolProfile);
+ return this;
+ }
+}
diff --git a/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/implementation/ContainerGroupsClientImpl.java b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/implementation/ContainerGroupsClientImpl.java
new file mode 100644
index 000000000000..873aa9f1f07b
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/implementation/ContainerGroupsClientImpl.java
@@ -0,0 +1,2098 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+package com.azure.resourcemanager.containerinstance.generated.implementation;
+
+import com.azure.core.annotation.BodyParam;
+import com.azure.core.annotation.Delete;
+import com.azure.core.annotation.ExpectedResponses;
+import com.azure.core.annotation.Get;
+import com.azure.core.annotation.HeaderParam;
+import com.azure.core.annotation.Headers;
+import com.azure.core.annotation.Host;
+import com.azure.core.annotation.HostParam;
+import com.azure.core.annotation.Patch;
+import com.azure.core.annotation.PathParam;
+import com.azure.core.annotation.Post;
+import com.azure.core.annotation.Put;
+import com.azure.core.annotation.QueryParam;
+import com.azure.core.annotation.ReturnType;
+import com.azure.core.annotation.ServiceInterface;
+import com.azure.core.annotation.ServiceMethod;
+import com.azure.core.annotation.UnexpectedResponseExceptionType;
+import com.azure.core.http.rest.PagedFlux;
+import com.azure.core.http.rest.PagedIterable;
+import com.azure.core.http.rest.PagedResponse;
+import com.azure.core.http.rest.PagedResponseBase;
+import com.azure.core.http.rest.Response;
+import com.azure.core.http.rest.RestProxy;
+import com.azure.core.management.Resource;
+import com.azure.core.management.exception.ManagementException;
+import com.azure.core.management.polling.PollResult;
+import com.azure.core.util.Context;
+import com.azure.core.util.FluxUtil;
+import com.azure.core.util.polling.PollerFlux;
+import com.azure.core.util.polling.SyncPoller;
+import com.azure.resourcemanager.containerinstance.generated.fluent.ContainerGroupsClient;
+import com.azure.resourcemanager.containerinstance.generated.fluent.models.ContainerGroupInner;
+import com.azure.resourcemanager.containerinstance.generated.models.ContainerGroupListResult;
+import java.nio.ByteBuffer;
+import java.util.List;
+import reactor.core.publisher.Flux;
+import reactor.core.publisher.Mono;
+
+/**
+ * An instance of this class provides access to all the operations defined in ContainerGroupsClient.
+ */
+public final class ContainerGroupsClientImpl implements ContainerGroupsClient {
+ /**
+ * The proxy service used to perform REST calls.
+ */
+ private final ContainerGroupsService service;
+
+ /**
+ * The service client containing this operation class.
+ */
+ private final ContainerInstanceManagementClientImpl client;
+
+ /**
+ * Initializes an instance of ContainerGroupsClientImpl.
+ *
+ * @param client the instance of the service client containing this operation class.
+ */
+ ContainerGroupsClientImpl(ContainerInstanceManagementClientImpl client) {
+ this.service
+ = RestProxy.create(ContainerGroupsService.class, client.getHttpPipeline(), client.getSerializerAdapter());
+ this.client = client;
+ }
+
+ /**
+ * The interface defining all the services for ContainerInstanceManagementClientContainerGroups to be used by the
+ * proxy service to perform REST calls.
+ */
+ @Host("{$host}")
+ @ServiceInterface(name = "ContainerInstanceMan")
+ public interface ContainerGroupsService {
+ @Headers({ "Content-Type: application/json" })
+ @Get("/subscriptions/{subscriptionId}/providers/Microsoft.ContainerInstance/containerGroups")
+ @ExpectedResponses({ 200 })
+ @UnexpectedResponseExceptionType(ManagementException.class)
+ Mono> list(@HostParam("$host") String endpoint,
+ @PathParam("subscriptionId") String subscriptionId, @QueryParam("api-version") String apiVersion,
+ @HeaderParam("Accept") String accept, Context context);
+
+ @Headers({ "Content-Type: application/json" })
+ @Get("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerInstance/containerGroups")
+ @ExpectedResponses({ 200 })
+ @UnexpectedResponseExceptionType(ManagementException.class)
+ Mono> listByResourceGroup(@HostParam("$host") String endpoint,
+ @PathParam("subscriptionId") String subscriptionId, @QueryParam("api-version") String apiVersion,
+ @PathParam("resourceGroupName") String resourceGroupName, @HeaderParam("Accept") String accept,
+ Context context);
+
+ @Headers({ "Content-Type: application/json" })
+ @Get("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerInstance/containerGroups/{containerGroupName}")
+ @ExpectedResponses({ 200 })
+ @UnexpectedResponseExceptionType(ManagementException.class)
+ Mono> getByResourceGroup(@HostParam("$host") String endpoint,
+ @PathParam("subscriptionId") String subscriptionId, @QueryParam("api-version") String apiVersion,
+ @PathParam("resourceGroupName") String resourceGroupName,
+ @PathParam("containerGroupName") String containerGroupName, @HeaderParam("Accept") String accept,
+ Context context);
+
+ @Headers({ "Content-Type: application/json" })
+ @Put("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerInstance/containerGroups/{containerGroupName}")
+ @ExpectedResponses({ 200, 201 })
+ @UnexpectedResponseExceptionType(ManagementException.class)
+ Mono>> createOrUpdate(@HostParam("$host") String endpoint,
+ @PathParam("subscriptionId") String subscriptionId, @QueryParam("api-version") String apiVersion,
+ @PathParam("resourceGroupName") String resourceGroupName,
+ @PathParam("containerGroupName") String containerGroupName,
+ @BodyParam("application/json") ContainerGroupInner containerGroup, @HeaderParam("Accept") String accept,
+ Context context);
+
+ @Headers({ "Content-Type: application/json" })
+ @Patch("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerInstance/containerGroups/{containerGroupName}")
+ @ExpectedResponses({ 200 })
+ @UnexpectedResponseExceptionType(ManagementException.class)
+ Mono> update(@HostParam("$host") String endpoint,
+ @PathParam("subscriptionId") String subscriptionId, @QueryParam("api-version") String apiVersion,
+ @PathParam("resourceGroupName") String resourceGroupName,
+ @PathParam("containerGroupName") String containerGroupName,
+ @BodyParam("application/json") Resource resource, @HeaderParam("Accept") String accept, Context context);
+
+ @Headers({ "Content-Type: application/json" })
+ @Delete("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerInstance/containerGroups/{containerGroupName}")
+ @ExpectedResponses({ 200, 202, 204 })
+ @UnexpectedResponseExceptionType(ManagementException.class)
+ Mono>> delete(@HostParam("$host") String endpoint,
+ @PathParam("subscriptionId") String subscriptionId, @QueryParam("api-version") String apiVersion,
+ @PathParam("resourceGroupName") String resourceGroupName,
+ @PathParam("containerGroupName") String containerGroupName, @HeaderParam("Accept") String accept,
+ Context context);
+
+ @Headers({ "Content-Type: application/json" })
+ @Post("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerInstance/containerGroups/{containerGroupName}/restart")
+ @ExpectedResponses({ 204 })
+ @UnexpectedResponseExceptionType(ManagementException.class)
+ Mono>> restart(@HostParam("$host") String endpoint,
+ @PathParam("subscriptionId") String subscriptionId, @QueryParam("api-version") String apiVersion,
+ @PathParam("resourceGroupName") String resourceGroupName,
+ @PathParam("containerGroupName") String containerGroupName, @HeaderParam("Accept") String accept,
+ Context context);
+
+ @Headers({ "Content-Type: application/json" })
+ @Post("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerInstance/containerGroups/{containerGroupName}/stop")
+ @ExpectedResponses({ 204 })
+ @UnexpectedResponseExceptionType(ManagementException.class)
+ Mono> stop(@HostParam("$host") String endpoint,
+ @PathParam("subscriptionId") String subscriptionId, @QueryParam("api-version") String apiVersion,
+ @PathParam("resourceGroupName") String resourceGroupName,
+ @PathParam("containerGroupName") String containerGroupName, @HeaderParam("Accept") String accept,
+ Context context);
+
+ @Headers({ "Content-Type: application/json" })
+ @Post("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerInstance/containerGroups/{containerGroupName}/start")
+ @ExpectedResponses({ 202, 204 })
+ @UnexpectedResponseExceptionType(ManagementException.class)
+ Mono>> start(@HostParam("$host") String endpoint,
+ @PathParam("subscriptionId") String subscriptionId, @QueryParam("api-version") String apiVersion,
+ @PathParam("resourceGroupName") String resourceGroupName,
+ @PathParam("containerGroupName") String containerGroupName, @HeaderParam("Accept") String accept,
+ Context context);
+
+ @Headers({ "Content-Type: application/json" })
+ @Get("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerInstance/containerGroups/{containerGroupName}/outboundNetworkDependenciesEndpoints")
+ @ExpectedResponses({ 200 })
+ @UnexpectedResponseExceptionType(ManagementException.class)
+ Mono>> getOutboundNetworkDependenciesEndpoints(@HostParam("$host") String endpoint,
+ @PathParam("subscriptionId") String subscriptionId, @QueryParam("api-version") String apiVersion,
+ @PathParam("resourceGroupName") String resourceGroupName,
+ @PathParam("containerGroupName") String containerGroupName, @HeaderParam("Accept") String accept,
+ Context context);
+
+ @Headers({ "Content-Type: application/json" })
+ @Get("{nextLink}")
+ @ExpectedResponses({ 200 })
+ @UnexpectedResponseExceptionType(ManagementException.class)
+ Mono> listNext(
+ @PathParam(value = "nextLink", encoded = true) String nextLink, @HostParam("$host") String endpoint,
+ @HeaderParam("Accept") String accept, Context context);
+
+ @Headers({ "Content-Type: application/json" })
+ @Get("{nextLink}")
+ @ExpectedResponses({ 200 })
+ @UnexpectedResponseExceptionType(ManagementException.class)
+ Mono> listByResourceGroupNext(
+ @PathParam(value = "nextLink", encoded = true) String nextLink, @HostParam("$host") String endpoint,
+ @HeaderParam("Accept") String accept, Context context);
+ }
+
+ /**
+ * Get a list of container groups in the specified subscription.
+ *
+ * Get a list of container groups in the specified subscription. This operation returns properties of each container
+ * group including containers, image registry credentials, restart policy, IP address type, OS type, state, and
+ * volumes.
+ *
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return a list of container groups in the specified subscription along with {@link PagedResponse} on successful
+ * completion of {@link Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono> listSinglePageAsync() {
+ if (this.client.getEndpoint() == null) {
+ return Mono.error(
+ new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
+ }
+ if (this.client.getSubscriptionId() == null) {
+ return Mono.error(new IllegalArgumentException(
+ "Parameter this.client.getSubscriptionId() is required and cannot be null."));
+ }
+ final String accept = "application/json";
+ return FluxUtil
+ .withContext(context -> service.list(this.client.getEndpoint(), this.client.getSubscriptionId(),
+ this.client.getApiVersion(), accept, context))
+ .>map(res -> new PagedResponseBase<>(res.getRequest(),
+ res.getStatusCode(), res.getHeaders(), res.getValue().value(), res.getValue().nextLink(), null))
+ .contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
+ }
+
+ /**
+ * Get a list of container groups in the specified subscription.
+ *
+ * Get a list of container groups in the specified subscription. This operation returns properties of each container
+ * group including containers, image registry credentials, restart policy, IP address type, OS type, state, and
+ * volumes.
+ *
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return a list of container groups in the specified subscription along with {@link PagedResponse} on successful
+ * completion of {@link Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono> listSinglePageAsync(Context context) {
+ if (this.client.getEndpoint() == null) {
+ return Mono.error(
+ new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
+ }
+ if (this.client.getSubscriptionId() == null) {
+ return Mono.error(new IllegalArgumentException(
+ "Parameter this.client.getSubscriptionId() is required and cannot be null."));
+ }
+ final String accept = "application/json";
+ context = this.client.mergeContext(context);
+ return service
+ .list(this.client.getEndpoint(), this.client.getSubscriptionId(), this.client.getApiVersion(), accept,
+ context)
+ .map(res -> new PagedResponseBase<>(res.getRequest(), res.getStatusCode(), res.getHeaders(),
+ res.getValue().value(), res.getValue().nextLink(), null));
+ }
+
+ /**
+ * Get a list of container groups in the specified subscription.
+ *
+ * Get a list of container groups in the specified subscription. This operation returns properties of each container
+ * group including containers, image registry credentials, restart policy, IP address type, OS type, state, and
+ * volumes.
+ *
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return a list of container groups in the specified subscription as paginated response with {@link PagedFlux}.
+ */
+ @ServiceMethod(returns = ReturnType.COLLECTION)
+ private PagedFlux listAsync() {
+ return new PagedFlux<>(() -> listSinglePageAsync(), nextLink -> listNextSinglePageAsync(nextLink));
+ }
+
+ /**
+ * Get a list of container groups in the specified subscription.
+ *
+ * Get a list of container groups in the specified subscription. This operation returns properties of each container
+ * group including containers, image registry credentials, restart policy, IP address type, OS type, state, and
+ * volumes.
+ *
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return a list of container groups in the specified subscription as paginated response with {@link PagedFlux}.
+ */
+ @ServiceMethod(returns = ReturnType.COLLECTION)
+ private PagedFlux listAsync(Context context) {
+ return new PagedFlux<>(() -> listSinglePageAsync(context),
+ nextLink -> listNextSinglePageAsync(nextLink, context));
+ }
+
+ /**
+ * Get a list of container groups in the specified subscription.
+ *
+ * Get a list of container groups in the specified subscription. This operation returns properties of each container
+ * group including containers, image registry credentials, restart policy, IP address type, OS type, state, and
+ * volumes.
+ *
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return a list of container groups in the specified subscription as paginated response with
+ * {@link PagedIterable}.
+ */
+ @ServiceMethod(returns = ReturnType.COLLECTION)
+ public PagedIterable list() {
+ return new PagedIterable<>(listAsync());
+ }
+
+ /**
+ * Get a list of container groups in the specified subscription.
+ *
+ * Get a list of container groups in the specified subscription. This operation returns properties of each container
+ * group including containers, image registry credentials, restart policy, IP address type, OS type, state, and
+ * volumes.
+ *
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return a list of container groups in the specified subscription as paginated response with
+ * {@link PagedIterable}.
+ */
+ @ServiceMethod(returns = ReturnType.COLLECTION)
+ public PagedIterable list(Context context) {
+ return new PagedIterable<>(listAsync(context));
+ }
+
+ /**
+ * Get a list of container groups in the specified subscription and resource group.
+ *
+ * Get a list of container groups in a specified subscription and resource group. This operation returns properties
+ * of each container group including containers, image registry credentials, restart policy, IP address type, OS
+ * type, state, and volumes.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return a list of container groups in a specified subscription and resource group along with
+ * {@link PagedResponse} on successful completion of {@link Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono> listByResourceGroupSinglePageAsync(String resourceGroupName) {
+ if (this.client.getEndpoint() == null) {
+ return Mono.error(
+ new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
+ }
+ if (this.client.getSubscriptionId() == null) {
+ return Mono.error(new IllegalArgumentException(
+ "Parameter this.client.getSubscriptionId() is required and cannot be null."));
+ }
+ if (resourceGroupName == null) {
+ return Mono
+ .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
+ }
+ final String accept = "application/json";
+ return FluxUtil
+ .withContext(context -> service.listByResourceGroup(this.client.getEndpoint(),
+ this.client.getSubscriptionId(), this.client.getApiVersion(), resourceGroupName, accept, context))
+ .>map(res -> new PagedResponseBase<>(res.getRequest(),
+ res.getStatusCode(), res.getHeaders(), res.getValue().value(), res.getValue().nextLink(), null))
+ .contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
+ }
+
+ /**
+ * Get a list of container groups in the specified subscription and resource group.
+ *
+ * Get a list of container groups in a specified subscription and resource group. This operation returns properties
+ * of each container group including containers, image registry credentials, restart policy, IP address type, OS
+ * type, state, and volumes.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return a list of container groups in a specified subscription and resource group along with
+ * {@link PagedResponse} on successful completion of {@link Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono> listByResourceGroupSinglePageAsync(String resourceGroupName,
+ Context context) {
+ if (this.client.getEndpoint() == null) {
+ return Mono.error(
+ new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
+ }
+ if (this.client.getSubscriptionId() == null) {
+ return Mono.error(new IllegalArgumentException(
+ "Parameter this.client.getSubscriptionId() is required and cannot be null."));
+ }
+ if (resourceGroupName == null) {
+ return Mono
+ .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
+ }
+ final String accept = "application/json";
+ context = this.client.mergeContext(context);
+ return service
+ .listByResourceGroup(this.client.getEndpoint(), this.client.getSubscriptionId(),
+ this.client.getApiVersion(), resourceGroupName, accept, context)
+ .map(res -> new PagedResponseBase<>(res.getRequest(), res.getStatusCode(), res.getHeaders(),
+ res.getValue().value(), res.getValue().nextLink(), null));
+ }
+
+ /**
+ * Get a list of container groups in the specified subscription and resource group.
+ *
+ * Get a list of container groups in a specified subscription and resource group. This operation returns properties
+ * of each container group including containers, image registry credentials, restart policy, IP address type, OS
+ * type, state, and volumes.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return a list of container groups in a specified subscription and resource group as paginated response with
+ * {@link PagedFlux}.
+ */
+ @ServiceMethod(returns = ReturnType.COLLECTION)
+ private PagedFlux listByResourceGroupAsync(String resourceGroupName) {
+ return new PagedFlux<>(() -> listByResourceGroupSinglePageAsync(resourceGroupName),
+ nextLink -> listByResourceGroupNextSinglePageAsync(nextLink));
+ }
+
+ /**
+ * Get a list of container groups in the specified subscription and resource group.
+ *
+ * Get a list of container groups in a specified subscription and resource group. This operation returns properties
+ * of each container group including containers, image registry credentials, restart policy, IP address type, OS
+ * type, state, and volumes.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return a list of container groups in a specified subscription and resource group as paginated response with
+ * {@link PagedFlux}.
+ */
+ @ServiceMethod(returns = ReturnType.COLLECTION)
+ private PagedFlux listByResourceGroupAsync(String resourceGroupName, Context context) {
+ return new PagedFlux<>(() -> listByResourceGroupSinglePageAsync(resourceGroupName, context),
+ nextLink -> listByResourceGroupNextSinglePageAsync(nextLink, context));
+ }
+
+ /**
+ * Get a list of container groups in the specified subscription and resource group.
+ *
+ * Get a list of container groups in a specified subscription and resource group. This operation returns properties
+ * of each container group including containers, image registry credentials, restart policy, IP address type, OS
+ * type, state, and volumes.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return a list of container groups in a specified subscription and resource group as paginated response with
+ * {@link PagedIterable}.
+ */
+ @ServiceMethod(returns = ReturnType.COLLECTION)
+ public PagedIterable listByResourceGroup(String resourceGroupName) {
+ return new PagedIterable<>(listByResourceGroupAsync(resourceGroupName));
+ }
+
+ /**
+ * Get a list of container groups in the specified subscription and resource group.
+ *
+ * Get a list of container groups in a specified subscription and resource group. This operation returns properties
+ * of each container group including containers, image registry credentials, restart policy, IP address type, OS
+ * type, state, and volumes.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return a list of container groups in a specified subscription and resource group as paginated response with
+ * {@link PagedIterable}.
+ */
+ @ServiceMethod(returns = ReturnType.COLLECTION)
+ public PagedIterable listByResourceGroup(String resourceGroupName, Context context) {
+ return new PagedIterable<>(listByResourceGroupAsync(resourceGroupName, context));
+ }
+
+ /**
+ * Get the properties of the specified container group.
+ *
+ * Gets the properties of the specified container group in the specified subscription and resource group. The
+ * operation returns the properties of each container group including containers, image registry credentials,
+ * restart policy, IP address type, OS type, state, and volumes.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the properties of the specified container group in the specified subscription and resource group along
+ * with {@link Response} on successful completion of {@link Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono> getByResourceGroupWithResponseAsync(String resourceGroupName,
+ String containerGroupName) {
+ if (this.client.getEndpoint() == null) {
+ return Mono.error(
+ new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
+ }
+ if (this.client.getSubscriptionId() == null) {
+ return Mono.error(new IllegalArgumentException(
+ "Parameter this.client.getSubscriptionId() is required and cannot be null."));
+ }
+ if (resourceGroupName == null) {
+ return Mono
+ .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
+ }
+ if (containerGroupName == null) {
+ return Mono
+ .error(new IllegalArgumentException("Parameter containerGroupName is required and cannot be null."));
+ }
+ final String accept = "application/json";
+ return FluxUtil
+ .withContext(
+ context -> service.getByResourceGroup(this.client.getEndpoint(), this.client.getSubscriptionId(),
+ this.client.getApiVersion(), resourceGroupName, containerGroupName, accept, context))
+ .contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
+ }
+
+ /**
+ * Get the properties of the specified container group.
+ *
+ * Gets the properties of the specified container group in the specified subscription and resource group. The
+ * operation returns the properties of each container group including containers, image registry credentials,
+ * restart policy, IP address type, OS type, state, and volumes.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the properties of the specified container group in the specified subscription and resource group along
+ * with {@link Response} on successful completion of {@link Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono> getByResourceGroupWithResponseAsync(String resourceGroupName,
+ String containerGroupName, Context context) {
+ if (this.client.getEndpoint() == null) {
+ return Mono.error(
+ new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
+ }
+ if (this.client.getSubscriptionId() == null) {
+ return Mono.error(new IllegalArgumentException(
+ "Parameter this.client.getSubscriptionId() is required and cannot be null."));
+ }
+ if (resourceGroupName == null) {
+ return Mono
+ .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
+ }
+ if (containerGroupName == null) {
+ return Mono
+ .error(new IllegalArgumentException("Parameter containerGroupName is required and cannot be null."));
+ }
+ final String accept = "application/json";
+ context = this.client.mergeContext(context);
+ return service.getByResourceGroup(this.client.getEndpoint(), this.client.getSubscriptionId(),
+ this.client.getApiVersion(), resourceGroupName, containerGroupName, accept, context);
+ }
+
+ /**
+ * Get the properties of the specified container group.
+ *
+ * Gets the properties of the specified container group in the specified subscription and resource group. The
+ * operation returns the properties of each container group including containers, image registry credentials,
+ * restart policy, IP address type, OS type, state, and volumes.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the properties of the specified container group in the specified subscription and resource group on
+ * successful completion of {@link Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono getByResourceGroupAsync(String resourceGroupName, String containerGroupName) {
+ return getByResourceGroupWithResponseAsync(resourceGroupName, containerGroupName)
+ .flatMap(res -> Mono.justOrEmpty(res.getValue()));
+ }
+
+ /**
+ * Get the properties of the specified container group.
+ *
+ * Gets the properties of the specified container group in the specified subscription and resource group. The
+ * operation returns the properties of each container group including containers, image registry credentials,
+ * restart policy, IP address type, OS type, state, and volumes.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the properties of the specified container group in the specified subscription and resource group along
+ * with {@link Response}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ public Response getByResourceGroupWithResponse(String resourceGroupName,
+ String containerGroupName, Context context) {
+ return getByResourceGroupWithResponseAsync(resourceGroupName, containerGroupName, context).block();
+ }
+
+ /**
+ * Get the properties of the specified container group.
+ *
+ * Gets the properties of the specified container group in the specified subscription and resource group. The
+ * operation returns the properties of each container group including containers, image registry credentials,
+ * restart policy, IP address type, OS type, state, and volumes.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the properties of the specified container group in the specified subscription and resource group.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ public ContainerGroupInner getByResourceGroup(String resourceGroupName, String containerGroupName) {
+ return getByResourceGroupWithResponse(resourceGroupName, containerGroupName, Context.NONE).getValue();
+ }
+
+ /**
+ * Create or update container groups.
+ *
+ * Create or update container groups with specified configurations.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param containerGroup The properties of the container group to be created or updated.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return a container group along with {@link Response} on successful completion of {@link Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono>> createOrUpdateWithResponseAsync(String resourceGroupName,
+ String containerGroupName, ContainerGroupInner containerGroup) {
+ if (this.client.getEndpoint() == null) {
+ return Mono.error(
+ new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
+ }
+ if (this.client.getSubscriptionId() == null) {
+ return Mono.error(new IllegalArgumentException(
+ "Parameter this.client.getSubscriptionId() is required and cannot be null."));
+ }
+ if (resourceGroupName == null) {
+ return Mono
+ .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
+ }
+ if (containerGroupName == null) {
+ return Mono
+ .error(new IllegalArgumentException("Parameter containerGroupName is required and cannot be null."));
+ }
+ if (containerGroup == null) {
+ return Mono.error(new IllegalArgumentException("Parameter containerGroup is required and cannot be null."));
+ } else {
+ containerGroup.validate();
+ }
+ final String accept = "application/json";
+ return FluxUtil
+ .withContext(context -> service.createOrUpdate(this.client.getEndpoint(), this.client.getSubscriptionId(),
+ this.client.getApiVersion(), resourceGroupName, containerGroupName, containerGroup, accept, context))
+ .contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
+ }
+
+ /**
+ * Create or update container groups.
+ *
+ * Create or update container groups with specified configurations.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param containerGroup The properties of the container group to be created or updated.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return a container group along with {@link Response} on successful completion of {@link Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono>> createOrUpdateWithResponseAsync(String resourceGroupName,
+ String containerGroupName, ContainerGroupInner containerGroup, Context context) {
+ if (this.client.getEndpoint() == null) {
+ return Mono.error(
+ new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
+ }
+ if (this.client.getSubscriptionId() == null) {
+ return Mono.error(new IllegalArgumentException(
+ "Parameter this.client.getSubscriptionId() is required and cannot be null."));
+ }
+ if (resourceGroupName == null) {
+ return Mono
+ .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
+ }
+ if (containerGroupName == null) {
+ return Mono
+ .error(new IllegalArgumentException("Parameter containerGroupName is required and cannot be null."));
+ }
+ if (containerGroup == null) {
+ return Mono.error(new IllegalArgumentException("Parameter containerGroup is required and cannot be null."));
+ } else {
+ containerGroup.validate();
+ }
+ final String accept = "application/json";
+ context = this.client.mergeContext(context);
+ return service.createOrUpdate(this.client.getEndpoint(), this.client.getSubscriptionId(),
+ this.client.getApiVersion(), resourceGroupName, containerGroupName, containerGroup, accept, context);
+ }
+
+ /**
+ * Create or update container groups.
+ *
+ * Create or update container groups with specified configurations.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param containerGroup The properties of the container group to be created or updated.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the {@link PollerFlux} for polling of a container group.
+ */
+ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
+ private PollerFlux, ContainerGroupInner> beginCreateOrUpdateAsync(
+ String resourceGroupName, String containerGroupName, ContainerGroupInner containerGroup) {
+ Mono>> mono
+ = createOrUpdateWithResponseAsync(resourceGroupName, containerGroupName, containerGroup);
+ return this.client.getLroResult(mono, this.client.getHttpPipeline(),
+ ContainerGroupInner.class, ContainerGroupInner.class, this.client.getContext());
+ }
+
+ /**
+ * Create or update container groups.
+ *
+ * Create or update container groups with specified configurations.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param containerGroup The properties of the container group to be created or updated.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the {@link PollerFlux} for polling of a container group.
+ */
+ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
+ private PollerFlux, ContainerGroupInner> beginCreateOrUpdateAsync(
+ String resourceGroupName, String containerGroupName, ContainerGroupInner containerGroup, Context context) {
+ context = this.client.mergeContext(context);
+ Mono>> mono
+ = createOrUpdateWithResponseAsync(resourceGroupName, containerGroupName, containerGroup, context);
+ return this.client.getLroResult(mono, this.client.getHttpPipeline(),
+ ContainerGroupInner.class, ContainerGroupInner.class, context);
+ }
+
+ /**
+ * Create or update container groups.
+ *
+ * Create or update container groups with specified configurations.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param containerGroup The properties of the container group to be created or updated.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request 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 a container group.
+ */
+ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
+ public SyncPoller, ContainerGroupInner>
+ beginCreateOrUpdate(String resourceGroupName, String containerGroupName, ContainerGroupInner containerGroup) {
+ return this.beginCreateOrUpdateAsync(resourceGroupName, containerGroupName, containerGroup).getSyncPoller();
+ }
+
+ /**
+ * Create or update container groups.
+ *
+ * Create or update container groups with specified configurations.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param containerGroup The properties of the container group to be created or updated.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request 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 a container group.
+ */
+ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
+ public SyncPoller, ContainerGroupInner> beginCreateOrUpdate(
+ String resourceGroupName, String containerGroupName, ContainerGroupInner containerGroup, Context context) {
+ return this.beginCreateOrUpdateAsync(resourceGroupName, containerGroupName, containerGroup, context)
+ .getSyncPoller();
+ }
+
+ /**
+ * Create or update container groups.
+ *
+ * Create or update container groups with specified configurations.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param containerGroup The properties of the container group to be created or updated.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return a container group on successful completion of {@link Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono createOrUpdateAsync(String resourceGroupName, String containerGroupName,
+ ContainerGroupInner containerGroup) {
+ return beginCreateOrUpdateAsync(resourceGroupName, containerGroupName, containerGroup).last()
+ .flatMap(this.client::getLroFinalResultOrError);
+ }
+
+ /**
+ * Create or update container groups.
+ *
+ * Create or update container groups with specified configurations.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param containerGroup The properties of the container group to be created or updated.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return a container group on successful completion of {@link Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono createOrUpdateAsync(String resourceGroupName, String containerGroupName,
+ ContainerGroupInner containerGroup, Context context) {
+ return beginCreateOrUpdateAsync(resourceGroupName, containerGroupName, containerGroup, context).last()
+ .flatMap(this.client::getLroFinalResultOrError);
+ }
+
+ /**
+ * Create or update container groups.
+ *
+ * Create or update container groups with specified configurations.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param containerGroup The properties of the container group to be created or updated.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return a container group.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ public ContainerGroupInner createOrUpdate(String resourceGroupName, String containerGroupName,
+ ContainerGroupInner containerGroup) {
+ return createOrUpdateAsync(resourceGroupName, containerGroupName, containerGroup).block();
+ }
+
+ /**
+ * Create or update container groups.
+ *
+ * Create or update container groups with specified configurations.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param containerGroup The properties of the container group to be created or updated.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return a container group.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ public ContainerGroupInner createOrUpdate(String resourceGroupName, String containerGroupName,
+ ContainerGroupInner containerGroup, Context context) {
+ return createOrUpdateAsync(resourceGroupName, containerGroupName, containerGroup, context).block();
+ }
+
+ /**
+ * Update container groups.
+ *
+ * Updates container group tags with specified values.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param resource The container group resource with just the tags to be updated.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return a container group along with {@link Response} on successful completion of {@link Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono> updateWithResponseAsync(String resourceGroupName,
+ String containerGroupName, Resource resource) {
+ if (this.client.getEndpoint() == null) {
+ return Mono.error(
+ new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
+ }
+ if (this.client.getSubscriptionId() == null) {
+ return Mono.error(new IllegalArgumentException(
+ "Parameter this.client.getSubscriptionId() is required and cannot be null."));
+ }
+ if (resourceGroupName == null) {
+ return Mono
+ .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
+ }
+ if (containerGroupName == null) {
+ return Mono
+ .error(new IllegalArgumentException("Parameter containerGroupName is required and cannot be null."));
+ }
+ if (resource == null) {
+ return Mono.error(new IllegalArgumentException("Parameter resource is required and cannot be null."));
+ }
+ final String accept = "application/json";
+ return FluxUtil
+ .withContext(context -> service.update(this.client.getEndpoint(), this.client.getSubscriptionId(),
+ this.client.getApiVersion(), resourceGroupName, containerGroupName, resource, accept, context))
+ .contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
+ }
+
+ /**
+ * Update container groups.
+ *
+ * Updates container group tags with specified values.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param resource The container group resource with just the tags to be updated.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return a container group along with {@link Response} on successful completion of {@link Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono> updateWithResponseAsync(String resourceGroupName,
+ String containerGroupName, Resource resource, Context context) {
+ if (this.client.getEndpoint() == null) {
+ return Mono.error(
+ new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
+ }
+ if (this.client.getSubscriptionId() == null) {
+ return Mono.error(new IllegalArgumentException(
+ "Parameter this.client.getSubscriptionId() is required and cannot be null."));
+ }
+ if (resourceGroupName == null) {
+ return Mono
+ .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
+ }
+ if (containerGroupName == null) {
+ return Mono
+ .error(new IllegalArgumentException("Parameter containerGroupName is required and cannot be null."));
+ }
+ if (resource == null) {
+ return Mono.error(new IllegalArgumentException("Parameter resource is required and cannot be null."));
+ }
+ final String accept = "application/json";
+ context = this.client.mergeContext(context);
+ return service.update(this.client.getEndpoint(), this.client.getSubscriptionId(), this.client.getApiVersion(),
+ resourceGroupName, containerGroupName, resource, accept, context);
+ }
+
+ /**
+ * Update container groups.
+ *
+ * Updates container group tags with specified values.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param resource The container group resource with just the tags to be updated.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return a container group on successful completion of {@link Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono updateAsync(String resourceGroupName, String containerGroupName,
+ Resource resource) {
+ return updateWithResponseAsync(resourceGroupName, containerGroupName, resource)
+ .flatMap(res -> Mono.justOrEmpty(res.getValue()));
+ }
+
+ /**
+ * Update container groups.
+ *
+ * Updates container group tags with specified values.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param resource The container group resource with just the tags to be updated.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return a container group along with {@link Response}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ public Response updateWithResponse(String resourceGroupName, String containerGroupName,
+ Resource resource, Context context) {
+ return updateWithResponseAsync(resourceGroupName, containerGroupName, resource, context).block();
+ }
+
+ /**
+ * Update container groups.
+ *
+ * Updates container group tags with specified values.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param resource The container group resource with just the tags to be updated.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return a container group.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ public ContainerGroupInner update(String resourceGroupName, String containerGroupName, Resource resource) {
+ return updateWithResponse(resourceGroupName, containerGroupName, resource, Context.NONE).getValue();
+ }
+
+ /**
+ * Delete the specified container group.
+ *
+ * Delete the specified container group in the specified subscription and resource group. The operation does not
+ * delete other resources provided by the user, such as volumes.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return a container group along with {@link Response} on successful completion of {@link Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono>> deleteWithResponseAsync(String resourceGroupName,
+ String containerGroupName) {
+ if (this.client.getEndpoint() == null) {
+ return Mono.error(
+ new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
+ }
+ if (this.client.getSubscriptionId() == null) {
+ return Mono.error(new IllegalArgumentException(
+ "Parameter this.client.getSubscriptionId() is required and cannot be null."));
+ }
+ if (resourceGroupName == null) {
+ return Mono
+ .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
+ }
+ if (containerGroupName == null) {
+ return Mono
+ .error(new IllegalArgumentException("Parameter containerGroupName is required and cannot be null."));
+ }
+ final String accept = "application/json";
+ return FluxUtil
+ .withContext(context -> service.delete(this.client.getEndpoint(), this.client.getSubscriptionId(),
+ this.client.getApiVersion(), resourceGroupName, containerGroupName, accept, context))
+ .contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
+ }
+
+ /**
+ * Delete the specified container group.
+ *
+ * Delete the specified container group in the specified subscription and resource group. The operation does not
+ * delete other resources provided by the user, such as volumes.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return a container group along with {@link Response} on successful completion of {@link Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono>> deleteWithResponseAsync(String resourceGroupName,
+ String containerGroupName, Context context) {
+ if (this.client.getEndpoint() == null) {
+ return Mono.error(
+ new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
+ }
+ if (this.client.getSubscriptionId() == null) {
+ return Mono.error(new IllegalArgumentException(
+ "Parameter this.client.getSubscriptionId() is required and cannot be null."));
+ }
+ if (resourceGroupName == null) {
+ return Mono
+ .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
+ }
+ if (containerGroupName == null) {
+ return Mono
+ .error(new IllegalArgumentException("Parameter containerGroupName is required and cannot be null."));
+ }
+ final String accept = "application/json";
+ context = this.client.mergeContext(context);
+ return service.delete(this.client.getEndpoint(), this.client.getSubscriptionId(), this.client.getApiVersion(),
+ resourceGroupName, containerGroupName, accept, context);
+ }
+
+ /**
+ * Delete the specified container group.
+ *
+ * Delete the specified container group in the specified subscription and resource group. The operation does not
+ * delete other resources provided by the user, such as volumes.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the {@link PollerFlux} for polling of a container group.
+ */
+ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
+ private PollerFlux, ContainerGroupInner> beginDeleteAsync(String resourceGroupName,
+ String containerGroupName) {
+ Mono>> mono = deleteWithResponseAsync(resourceGroupName, containerGroupName);
+ return this.client.getLroResult(mono, this.client.getHttpPipeline(),
+ ContainerGroupInner.class, ContainerGroupInner.class, this.client.getContext());
+ }
+
+ /**
+ * Delete the specified container group.
+ *
+ * Delete the specified container group in the specified subscription and resource group. The operation does not
+ * delete other resources provided by the user, such as volumes.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the {@link PollerFlux} for polling of a container group.
+ */
+ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
+ private PollerFlux, ContainerGroupInner> beginDeleteAsync(String resourceGroupName,
+ String containerGroupName, Context context) {
+ context = this.client.mergeContext(context);
+ Mono>> mono = deleteWithResponseAsync(resourceGroupName, containerGroupName, context);
+ return this.client.getLroResult(mono, this.client.getHttpPipeline(),
+ ContainerGroupInner.class, ContainerGroupInner.class, context);
+ }
+
+ /**
+ * Delete the specified container group.
+ *
+ * Delete the specified container group in the specified subscription and resource group. The operation does not
+ * delete other resources provided by the user, such as volumes.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request 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 a container group.
+ */
+ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
+ public SyncPoller, ContainerGroupInner> beginDelete(String resourceGroupName,
+ String containerGroupName) {
+ return this.beginDeleteAsync(resourceGroupName, containerGroupName).getSyncPoller();
+ }
+
+ /**
+ * Delete the specified container group.
+ *
+ * Delete the specified container group in the specified subscription and resource group. The operation does not
+ * delete other resources provided by the user, such as volumes.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request 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 a container group.
+ */
+ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
+ public SyncPoller, ContainerGroupInner> beginDelete(String resourceGroupName,
+ String containerGroupName, Context context) {
+ return this.beginDeleteAsync(resourceGroupName, containerGroupName, context).getSyncPoller();
+ }
+
+ /**
+ * Delete the specified container group.
+ *
+ * Delete the specified container group in the specified subscription and resource group. The operation does not
+ * delete other resources provided by the user, such as volumes.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return a container group on successful completion of {@link Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono deleteAsync(String resourceGroupName, String containerGroupName) {
+ return beginDeleteAsync(resourceGroupName, containerGroupName).last()
+ .flatMap(this.client::getLroFinalResultOrError);
+ }
+
+ /**
+ * Delete the specified container group.
+ *
+ * Delete the specified container group in the specified subscription and resource group. The operation does not
+ * delete other resources provided by the user, such as volumes.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return a container group on successful completion of {@link Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono deleteAsync(String resourceGroupName, String containerGroupName,
+ Context context) {
+ return beginDeleteAsync(resourceGroupName, containerGroupName, context).last()
+ .flatMap(this.client::getLroFinalResultOrError);
+ }
+
+ /**
+ * Delete the specified container group.
+ *
+ * Delete the specified container group in the specified subscription and resource group. The operation does not
+ * delete other resources provided by the user, such as volumes.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return a container group.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ public ContainerGroupInner delete(String resourceGroupName, String containerGroupName) {
+ return deleteAsync(resourceGroupName, containerGroupName).block();
+ }
+
+ /**
+ * Delete the specified container group.
+ *
+ * Delete the specified container group in the specified subscription and resource group. The operation does not
+ * delete other resources provided by the user, such as volumes.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return a container group.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ public ContainerGroupInner delete(String resourceGroupName, String containerGroupName, Context context) {
+ return deleteAsync(resourceGroupName, containerGroupName, context).block();
+ }
+
+ /**
+ * Restarts all containers in a container group.
+ *
+ * Restarts all containers in a container group in place. If container image has updates, new image will be
+ * downloaded.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the {@link Response} on successful completion of {@link Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono>> restartWithResponseAsync(String resourceGroupName,
+ String containerGroupName) {
+ if (this.client.getEndpoint() == null) {
+ return Mono.error(
+ new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
+ }
+ if (this.client.getSubscriptionId() == null) {
+ return Mono.error(new IllegalArgumentException(
+ "Parameter this.client.getSubscriptionId() is required and cannot be null."));
+ }
+ if (resourceGroupName == null) {
+ return Mono
+ .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
+ }
+ if (containerGroupName == null) {
+ return Mono
+ .error(new IllegalArgumentException("Parameter containerGroupName is required and cannot be null."));
+ }
+ final String accept = "application/json";
+ return FluxUtil
+ .withContext(context -> service.restart(this.client.getEndpoint(), this.client.getSubscriptionId(),
+ this.client.getApiVersion(), resourceGroupName, containerGroupName, accept, context))
+ .contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
+ }
+
+ /**
+ * Restarts all containers in a container group.
+ *
+ * Restarts all containers in a container group in place. If container image has updates, new image will be
+ * downloaded.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the {@link Response} on successful completion of {@link Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono>> restartWithResponseAsync(String resourceGroupName,
+ String containerGroupName, Context context) {
+ if (this.client.getEndpoint() == null) {
+ return Mono.error(
+ new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
+ }
+ if (this.client.getSubscriptionId() == null) {
+ return Mono.error(new IllegalArgumentException(
+ "Parameter this.client.getSubscriptionId() is required and cannot be null."));
+ }
+ if (resourceGroupName == null) {
+ return Mono
+ .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
+ }
+ if (containerGroupName == null) {
+ return Mono
+ .error(new IllegalArgumentException("Parameter containerGroupName is required and cannot be null."));
+ }
+ final String accept = "application/json";
+ context = this.client.mergeContext(context);
+ return service.restart(this.client.getEndpoint(), this.client.getSubscriptionId(), this.client.getApiVersion(),
+ resourceGroupName, containerGroupName, accept, context);
+ }
+
+ /**
+ * Restarts all containers in a container group.
+ *
+ * Restarts all containers in a container group in place. If container image has updates, new image will be
+ * downloaded.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the {@link PollerFlux} for polling of long-running operation.
+ */
+ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
+ private PollerFlux, Void> beginRestartAsync(String resourceGroupName, String containerGroupName) {
+ Mono>> mono = restartWithResponseAsync(resourceGroupName, containerGroupName);
+ return this.client.getLroResult(mono, this.client.getHttpPipeline(), Void.class, Void.class,
+ this.client.getContext());
+ }
+
+ /**
+ * Restarts all containers in a container group.
+ *
+ * Restarts all containers in a container group in place. If container image has updates, new image will be
+ * downloaded.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the {@link PollerFlux} for polling of long-running operation.
+ */
+ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
+ private PollerFlux, Void> beginRestartAsync(String resourceGroupName, String containerGroupName,
+ Context context) {
+ context = this.client.mergeContext(context);
+ Mono>> mono
+ = restartWithResponseAsync(resourceGroupName, containerGroupName, context);
+ return this.client.getLroResult(mono, this.client.getHttpPipeline(), Void.class, Void.class,
+ context);
+ }
+
+ /**
+ * Restarts all containers in a container group.
+ *
+ * Restarts all containers in a container group in place. If container image has updates, new image will be
+ * downloaded.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request 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)
+ public SyncPoller, Void> beginRestart(String resourceGroupName, String containerGroupName) {
+ return this.beginRestartAsync(resourceGroupName, containerGroupName).getSyncPoller();
+ }
+
+ /**
+ * Restarts all containers in a container group.
+ *
+ * Restarts all containers in a container group in place. If container image has updates, new image will be
+ * downloaded.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request 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)
+ public SyncPoller, Void> beginRestart(String resourceGroupName, String containerGroupName,
+ Context context) {
+ return this.beginRestartAsync(resourceGroupName, containerGroupName, context).getSyncPoller();
+ }
+
+ /**
+ * Restarts all containers in a container group.
+ *
+ * Restarts all containers in a container group in place. If container image has updates, new image will be
+ * downloaded.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return A {@link Mono} that completes when a successful response is received.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono restartAsync(String resourceGroupName, String containerGroupName) {
+ return beginRestartAsync(resourceGroupName, containerGroupName).last()
+ .flatMap(this.client::getLroFinalResultOrError);
+ }
+
+ /**
+ * Restarts all containers in a container group.
+ *
+ * Restarts all containers in a container group in place. If container image has updates, new image will be
+ * downloaded.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return A {@link Mono} that completes when a successful response is received.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono restartAsync(String resourceGroupName, String containerGroupName, Context context) {
+ return beginRestartAsync(resourceGroupName, containerGroupName, context).last()
+ .flatMap(this.client::getLroFinalResultOrError);
+ }
+
+ /**
+ * Restarts all containers in a container group.
+ *
+ * Restarts all containers in a container group in place. If container image has updates, new image will be
+ * downloaded.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ public void restart(String resourceGroupName, String containerGroupName) {
+ restartAsync(resourceGroupName, containerGroupName).block();
+ }
+
+ /**
+ * Restarts all containers in a container group.
+ *
+ * Restarts all containers in a container group in place. If container image has updates, new image will be
+ * downloaded.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ public void restart(String resourceGroupName, String containerGroupName, Context context) {
+ restartAsync(resourceGroupName, containerGroupName, context).block();
+ }
+
+ /**
+ * Stops all containers in a container group.
+ *
+ * Stops all containers in a container group. Compute resources will be deallocated and billing will stop.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the {@link Response} on successful completion of {@link Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono> stopWithResponseAsync(String resourceGroupName, String containerGroupName) {
+ if (this.client.getEndpoint() == null) {
+ return Mono.error(
+ new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
+ }
+ if (this.client.getSubscriptionId() == null) {
+ return Mono.error(new IllegalArgumentException(
+ "Parameter this.client.getSubscriptionId() is required and cannot be null."));
+ }
+ if (resourceGroupName == null) {
+ return Mono
+ .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
+ }
+ if (containerGroupName == null) {
+ return Mono
+ .error(new IllegalArgumentException("Parameter containerGroupName is required and cannot be null."));
+ }
+ final String accept = "application/json";
+ return FluxUtil
+ .withContext(context -> service.stop(this.client.getEndpoint(), this.client.getSubscriptionId(),
+ this.client.getApiVersion(), resourceGroupName, containerGroupName, accept, context))
+ .contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
+ }
+
+ /**
+ * Stops all containers in a container group.
+ *
+ * Stops all containers in a container group. Compute resources will be deallocated and billing will stop.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the {@link Response} on successful completion of {@link Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono> stopWithResponseAsync(String resourceGroupName, String containerGroupName,
+ Context context) {
+ if (this.client.getEndpoint() == null) {
+ return Mono.error(
+ new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
+ }
+ if (this.client.getSubscriptionId() == null) {
+ return Mono.error(new IllegalArgumentException(
+ "Parameter this.client.getSubscriptionId() is required and cannot be null."));
+ }
+ if (resourceGroupName == null) {
+ return Mono
+ .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
+ }
+ if (containerGroupName == null) {
+ return Mono
+ .error(new IllegalArgumentException("Parameter containerGroupName is required and cannot be null."));
+ }
+ final String accept = "application/json";
+ context = this.client.mergeContext(context);
+ return service.stop(this.client.getEndpoint(), this.client.getSubscriptionId(), this.client.getApiVersion(),
+ resourceGroupName, containerGroupName, accept, context);
+ }
+
+ /**
+ * Stops all containers in a container group.
+ *
+ * Stops all containers in a container group. Compute resources will be deallocated and billing will stop.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return A {@link Mono} that completes when a successful response is received.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono stopAsync(String resourceGroupName, String containerGroupName) {
+ return stopWithResponseAsync(resourceGroupName, containerGroupName).flatMap(ignored -> Mono.empty());
+ }
+
+ /**
+ * Stops all containers in a container group.
+ *
+ * Stops all containers in a container group. Compute resources will be deallocated and billing will stop.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request 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)
+ public Response stopWithResponse(String resourceGroupName, String containerGroupName, Context context) {
+ return stopWithResponseAsync(resourceGroupName, containerGroupName, context).block();
+ }
+
+ /**
+ * Stops all containers in a container group.
+ *
+ * Stops all containers in a container group. Compute resources will be deallocated and billing will stop.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ public void stop(String resourceGroupName, String containerGroupName) {
+ stopWithResponse(resourceGroupName, containerGroupName, Context.NONE);
+ }
+
+ /**
+ * Starts all containers in a container group.
+ *
+ * Starts all containers in a container group. Compute resources will be allocated and billing will start.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the {@link Response} on successful completion of {@link Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono>> startWithResponseAsync(String resourceGroupName,
+ String containerGroupName) {
+ if (this.client.getEndpoint() == null) {
+ return Mono.error(
+ new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
+ }
+ if (this.client.getSubscriptionId() == null) {
+ return Mono.error(new IllegalArgumentException(
+ "Parameter this.client.getSubscriptionId() is required and cannot be null."));
+ }
+ if (resourceGroupName == null) {
+ return Mono
+ .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
+ }
+ if (containerGroupName == null) {
+ return Mono
+ .error(new IllegalArgumentException("Parameter containerGroupName is required and cannot be null."));
+ }
+ final String accept = "application/json";
+ return FluxUtil
+ .withContext(context -> service.start(this.client.getEndpoint(), this.client.getSubscriptionId(),
+ this.client.getApiVersion(), resourceGroupName, containerGroupName, accept, context))
+ .contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
+ }
+
+ /**
+ * Starts all containers in a container group.
+ *
+ * Starts all containers in a container group. Compute resources will be allocated and billing will start.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the {@link Response} on successful completion of {@link Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono>> startWithResponseAsync(String resourceGroupName, String containerGroupName,
+ Context context) {
+ if (this.client.getEndpoint() == null) {
+ return Mono.error(
+ new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
+ }
+ if (this.client.getSubscriptionId() == null) {
+ return Mono.error(new IllegalArgumentException(
+ "Parameter this.client.getSubscriptionId() is required and cannot be null."));
+ }
+ if (resourceGroupName == null) {
+ return Mono
+ .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
+ }
+ if (containerGroupName == null) {
+ return Mono
+ .error(new IllegalArgumentException("Parameter containerGroupName is required and cannot be null."));
+ }
+ final String accept = "application/json";
+ context = this.client.mergeContext(context);
+ return service.start(this.client.getEndpoint(), this.client.getSubscriptionId(), this.client.getApiVersion(),
+ resourceGroupName, containerGroupName, accept, context);
+ }
+
+ /**
+ * Starts all containers in a container group.
+ *
+ * Starts all containers in a container group. Compute resources will be allocated and billing will start.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the {@link PollerFlux} for polling of long-running operation.
+ */
+ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
+ private PollerFlux, Void> beginStartAsync(String resourceGroupName, String containerGroupName) {
+ Mono>> mono = startWithResponseAsync(resourceGroupName, containerGroupName);
+ return this.client.getLroResult(mono, this.client.getHttpPipeline(), Void.class, Void.class,
+ this.client.getContext());
+ }
+
+ /**
+ * Starts all containers in a container group.
+ *
+ * Starts all containers in a container group. Compute resources will be allocated and billing will start.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the {@link PollerFlux} for polling of long-running operation.
+ */
+ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
+ private PollerFlux, Void> beginStartAsync(String resourceGroupName, String containerGroupName,
+ Context context) {
+ context = this.client.mergeContext(context);
+ Mono>> mono = startWithResponseAsync(resourceGroupName, containerGroupName, context);
+ return this.client.getLroResult(mono, this.client.getHttpPipeline(), Void.class, Void.class,
+ context);
+ }
+
+ /**
+ * Starts all containers in a container group.
+ *
+ * Starts all containers in a container group. Compute resources will be allocated and billing will start.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request 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)
+ public SyncPoller, Void> beginStart(String resourceGroupName, String containerGroupName) {
+ return this.beginStartAsync(resourceGroupName, containerGroupName).getSyncPoller();
+ }
+
+ /**
+ * Starts all containers in a container group.
+ *
+ * Starts all containers in a container group. Compute resources will be allocated and billing will start.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request 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)
+ public SyncPoller, Void> beginStart(String resourceGroupName, String containerGroupName,
+ Context context) {
+ return this.beginStartAsync(resourceGroupName, containerGroupName, context).getSyncPoller();
+ }
+
+ /**
+ * Starts all containers in a container group.
+ *
+ * Starts all containers in a container group. Compute resources will be allocated and billing will start.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return A {@link Mono} that completes when a successful response is received.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono startAsync(String resourceGroupName, String containerGroupName) {
+ return beginStartAsync(resourceGroupName, containerGroupName).last()
+ .flatMap(this.client::getLroFinalResultOrError);
+ }
+
+ /**
+ * Starts all containers in a container group.
+ *
+ * Starts all containers in a container group. Compute resources will be allocated and billing will start.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return A {@link Mono} that completes when a successful response is received.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono startAsync(String resourceGroupName, String containerGroupName, Context context) {
+ return beginStartAsync(resourceGroupName, containerGroupName, context).last()
+ .flatMap(this.client::getLroFinalResultOrError);
+ }
+
+ /**
+ * Starts all containers in a container group.
+ *
+ * Starts all containers in a container group. Compute resources will be allocated and billing will start.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ public void start(String resourceGroupName, String containerGroupName) {
+ startAsync(resourceGroupName, containerGroupName).block();
+ }
+
+ /**
+ * Starts all containers in a container group.
+ *
+ * Starts all containers in a container group. Compute resources will be allocated and billing will start.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ public void start(String resourceGroupName, String containerGroupName, Context context) {
+ startAsync(resourceGroupName, containerGroupName, context).block();
+ }
+
+ /**
+ * Get all network dependencies for container group.
+ *
+ * Gets all the network dependencies for this container group to allow complete control of network setting and
+ * configuration. For container groups, this will always be an empty list.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return all the network dependencies for this container group to allow complete control of network setting and
+ * configuration along with {@link Response} on successful completion of {@link Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono>>
+ getOutboundNetworkDependenciesEndpointsWithResponseAsync(String resourceGroupName, String containerGroupName) {
+ if (this.client.getEndpoint() == null) {
+ return Mono.error(
+ new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
+ }
+ if (this.client.getSubscriptionId() == null) {
+ return Mono.error(new IllegalArgumentException(
+ "Parameter this.client.getSubscriptionId() is required and cannot be null."));
+ }
+ if (resourceGroupName == null) {
+ return Mono
+ .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
+ }
+ if (containerGroupName == null) {
+ return Mono
+ .error(new IllegalArgumentException("Parameter containerGroupName is required and cannot be null."));
+ }
+ final String accept = "application/json";
+ return FluxUtil
+ .withContext(context -> service.getOutboundNetworkDependenciesEndpoints(this.client.getEndpoint(),
+ this.client.getSubscriptionId(), this.client.getApiVersion(), resourceGroupName, containerGroupName,
+ accept, context))
+ .contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
+ }
+
+ /**
+ * Get all network dependencies for container group.
+ *
+ * Gets all the network dependencies for this container group to allow complete control of network setting and
+ * configuration. For container groups, this will always be an empty list.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return all the network dependencies for this container group to allow complete control of network setting and
+ * configuration along with {@link Response} on successful completion of {@link Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono>> getOutboundNetworkDependenciesEndpointsWithResponseAsync(
+ String resourceGroupName, String containerGroupName, Context context) {
+ if (this.client.getEndpoint() == null) {
+ return Mono.error(
+ new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
+ }
+ if (this.client.getSubscriptionId() == null) {
+ return Mono.error(new IllegalArgumentException(
+ "Parameter this.client.getSubscriptionId() is required and cannot be null."));
+ }
+ if (resourceGroupName == null) {
+ return Mono
+ .error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
+ }
+ if (containerGroupName == null) {
+ return Mono
+ .error(new IllegalArgumentException("Parameter containerGroupName is required and cannot be null."));
+ }
+ final String accept = "application/json";
+ context = this.client.mergeContext(context);
+ return service.getOutboundNetworkDependenciesEndpoints(this.client.getEndpoint(),
+ this.client.getSubscriptionId(), this.client.getApiVersion(), resourceGroupName, containerGroupName, accept,
+ context);
+ }
+
+ /**
+ * Get all network dependencies for container group.
+ *
+ * Gets all the network dependencies for this container group to allow complete control of network setting and
+ * configuration. For container groups, this will always be an empty list.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return all the network dependencies for this container group to allow complete control of network setting and
+ * configuration on successful completion of {@link Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono> getOutboundNetworkDependenciesEndpointsAsync(String resourceGroupName,
+ String containerGroupName) {
+ return getOutboundNetworkDependenciesEndpointsWithResponseAsync(resourceGroupName, containerGroupName)
+ .flatMap(res -> Mono.justOrEmpty(res.getValue()));
+ }
+
+ /**
+ * Get all network dependencies for container group.
+ *
+ * Gets all the network dependencies for this container group to allow complete control of network setting and
+ * configuration. For container groups, this will always be an empty list.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return all the network dependencies for this container group to allow complete control of network setting and
+ * configuration along with {@link Response}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ public Response> getOutboundNetworkDependenciesEndpointsWithResponse(String resourceGroupName,
+ String containerGroupName, Context context) {
+ return getOutboundNetworkDependenciesEndpointsWithResponseAsync(resourceGroupName, containerGroupName, context)
+ .block();
+ }
+
+ /**
+ * Get all network dependencies for container group.
+ *
+ * Gets all the network dependencies for this container group to allow complete control of network setting and
+ * configuration. For container groups, this will always be an empty list.
+ *
+ * @param resourceGroupName The name of the resource group.
+ * @param containerGroupName The name of the container group.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return all the network dependencies for this container group to allow complete control of network setting and
+ * configuration.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ public List getOutboundNetworkDependenciesEndpoints(String resourceGroupName, String containerGroupName) {
+ return getOutboundNetworkDependenciesEndpointsWithResponse(resourceGroupName, containerGroupName, Context.NONE)
+ .getValue();
+ }
+
+ /**
+ * Get the next page of items.
+ *
+ * @param nextLink The URL to get the next list of items.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the container group list response that contains the container group properties along with
+ * {@link PagedResponse} on successful completion of {@link Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono> listNextSinglePageAsync(String nextLink) {
+ if (nextLink == null) {
+ return Mono.error(new IllegalArgumentException("Parameter nextLink is required and cannot be null."));
+ }
+ if (this.client.getEndpoint() == null) {
+ return Mono.error(
+ new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
+ }
+ final String accept = "application/json";
+ return FluxUtil.withContext(context -> service.listNext(nextLink, this.client.getEndpoint(), accept, context))
+ .>map(res -> new PagedResponseBase<>(res.getRequest(),
+ res.getStatusCode(), res.getHeaders(), res.getValue().value(), res.getValue().nextLink(), null))
+ .contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
+ }
+
+ /**
+ * Get the next page of items.
+ *
+ * @param nextLink The URL to get the next list of items.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the container group list response that contains the container group properties along with
+ * {@link PagedResponse} on successful completion of {@link Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono> listNextSinglePageAsync(String nextLink, Context context) {
+ if (nextLink == null) {
+ return Mono.error(new IllegalArgumentException("Parameter nextLink is required and cannot be null."));
+ }
+ if (this.client.getEndpoint() == null) {
+ return Mono.error(
+ new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
+ }
+ final String accept = "application/json";
+ context = this.client.mergeContext(context);
+ return service.listNext(nextLink, this.client.getEndpoint(), accept, context)
+ .map(res -> new PagedResponseBase<>(res.getRequest(), res.getStatusCode(), res.getHeaders(),
+ res.getValue().value(), res.getValue().nextLink(), null));
+ }
+
+ /**
+ * Get the next page of items.
+ *
+ * @param nextLink The URL to get the next list of items.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the container group list response that contains the container group properties along with
+ * {@link PagedResponse} on successful completion of {@link Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono> listByResourceGroupNextSinglePageAsync(String nextLink) {
+ if (nextLink == null) {
+ return Mono.error(new IllegalArgumentException("Parameter nextLink is required and cannot be null."));
+ }
+ if (this.client.getEndpoint() == null) {
+ return Mono.error(
+ new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
+ }
+ final String accept = "application/json";
+ return FluxUtil
+ .withContext(
+ context -> service.listByResourceGroupNext(nextLink, this.client.getEndpoint(), accept, context))
+ .>map(res -> new PagedResponseBase<>(res.getRequest(),
+ res.getStatusCode(), res.getHeaders(), res.getValue().value(), res.getValue().nextLink(), null))
+ .contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
+ }
+
+ /**
+ * Get the next page of items.
+ *
+ * @param nextLink The URL to get the next list of items.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the container group list response that contains the container group properties along with
+ * {@link PagedResponse} on successful completion of {@link Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono> listByResourceGroupNextSinglePageAsync(String nextLink,
+ Context context) {
+ if (nextLink == null) {
+ return Mono.error(new IllegalArgumentException("Parameter nextLink is required and cannot be null."));
+ }
+ if (this.client.getEndpoint() == null) {
+ return Mono.error(
+ new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
+ }
+ final String accept = "application/json";
+ context = this.client.mergeContext(context);
+ return service.listByResourceGroupNext(nextLink, this.client.getEndpoint(), accept, context)
+ .map(res -> new PagedResponseBase<>(res.getRequest(), res.getStatusCode(), res.getHeaders(),
+ res.getValue().value(), res.getValue().nextLink(), null));
+ }
+}
diff --git a/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/implementation/ContainerGroupsImpl.java b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/implementation/ContainerGroupsImpl.java
new file mode 100644
index 000000000000..fa3c81d91c4a
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/implementation/ContainerGroupsImpl.java
@@ -0,0 +1,220 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+package com.azure.resourcemanager.containerinstance.generated.implementation;
+
+import com.azure.core.http.rest.PagedIterable;
+import com.azure.core.http.rest.Response;
+import com.azure.core.http.rest.SimpleResponse;
+import com.azure.core.management.Resource;
+import com.azure.core.util.Context;
+import com.azure.core.util.logging.ClientLogger;
+import com.azure.resourcemanager.containerinstance.generated.fluent.ContainerGroupsClient;
+import com.azure.resourcemanager.containerinstance.generated.fluent.models.ContainerGroupInner;
+import com.azure.resourcemanager.containerinstance.generated.models.ContainerGroup;
+import com.azure.resourcemanager.containerinstance.generated.models.ContainerGroups;
+import java.util.Collections;
+import java.util.List;
+
+public final class ContainerGroupsImpl implements ContainerGroups {
+ private static final ClientLogger LOGGER = new ClientLogger(ContainerGroupsImpl.class);
+
+ private final ContainerGroupsClient innerClient;
+
+ private final com.azure.resourcemanager.containerinstance.generated.ContainerInstanceManager serviceManager;
+
+ public ContainerGroupsImpl(ContainerGroupsClient innerClient,
+ com.azure.resourcemanager.containerinstance.generated.ContainerInstanceManager serviceManager) {
+ this.innerClient = innerClient;
+ this.serviceManager = serviceManager;
+ }
+
+ public PagedIterable list() {
+ PagedIterable inner = this.serviceClient().list();
+ return ResourceManagerUtils.mapPage(inner, inner1 -> new ContainerGroupImpl(inner1, this.manager()));
+ }
+
+ public PagedIterable list(Context context) {
+ PagedIterable inner = this.serviceClient().list(context);
+ return ResourceManagerUtils.mapPage(inner, inner1 -> new ContainerGroupImpl(inner1, this.manager()));
+ }
+
+ public PagedIterable listByResourceGroup(String resourceGroupName) {
+ PagedIterable inner = this.serviceClient().listByResourceGroup(resourceGroupName);
+ return ResourceManagerUtils.mapPage(inner, inner1 -> new ContainerGroupImpl(inner1, this.manager()));
+ }
+
+ public PagedIterable listByResourceGroup(String resourceGroupName, Context context) {
+ PagedIterable inner = this.serviceClient().listByResourceGroup(resourceGroupName, context);
+ return ResourceManagerUtils.mapPage(inner, inner1 -> new ContainerGroupImpl(inner1, this.manager()));
+ }
+
+ public Response