diff --git a/eng/versioning/version_client.txt b/eng/versioning/version_client.txt
index 27be5c0477dd..674b5fe8b28e 100644
--- a/eng/versioning/version_client.txt
+++ b/eng/versioning/version_client.txt
@@ -320,6 +320,7 @@ com.azure.resourcemanager:azure-resourcemanager-quota;1.0.0-beta.1;1.0.0-beta.2
com.azure.resourcemanager:azure-resourcemanager-extendedlocation;1.0.0-beta.1;1.0.0-beta.2
com.azure.resourcemanager:azure-resourcemanager-logz;1.0.0-beta.1;1.0.0-beta.2
com.azure.resourcemanager:azure-resourcemanager-storagepool;1.0.0-beta.1;1.0.0-beta.1
+com.azure.resourcemanager:azure-resourcemanager-containerinstance-generated;1.0.0-beta.1;1.0.0-beta.1
# Unreleased dependencies: Copy the entry from above, prepend "unreleased_" and remove the current
# version. Unreleased dependencies are only valid for dependency versions.
diff --git a/pom.xml b/pom.xml
index c48350b9b837..dfc5d9e42f71 100644
--- a/pom.xml
+++ b/pom.xml
@@ -738,6 +738,7 @@
sdk/confidentialledgersdk/confluentsdk/consumption
+ sdk/containerinstancesdk/containerregistrysdk/coresdk/cosmos
diff --git a/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/CHANGELOG.md b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/CHANGELOG.md
new file mode 100644
index 000000000000..c34da87a19b2
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/CHANGELOG.md
@@ -0,0 +1,5 @@
+# Release History
+
+## 1.0.0-beta.1 (2021-10-14)
+
+- Azure Resource Manager ContainerInstance client library for Java. This package contains Microsoft Azure SDK for ContainerInstance Management SDK. Package tag package-2021-09. For documentation on how to use this package, please see [Azure Management Libraries for Java](https://aka.ms/azsdk/java/mgmt).
diff --git a/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/README.md b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/README.md
new file mode 100644
index 000000000000..9a60a3bab330
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/README.md
@@ -0,0 +1,102 @@
+# Azure Resource Manager ContainerInstance client library for Java
+
+Azure Resource Manager ContainerInstance client library for Java.
+
+This package contains Microsoft Azure SDK for ContainerInstance Management SDK. Package tag package-2021-09. For documentation on how to use this package, please see [Azure Management Libraries for Java](https://aka.ms/azsdk/java/mgmt).
+
+## We'd love to hear your feedback
+
+We're always working on improving our products and the way we communicate with our users. So we'd love to learn what's working and how we can do better.
+
+If you haven't already, please take a few minutes to [complete this short survey][survey] we have put together.
+
+Thank you in advance for your collaboration. We really appreciate your time!
+
+## Documentation
+
+Various documentation is available to help you get started
+
+- [API reference documentation][docs]
+
+## Getting started
+
+### Prerequisites
+
+- [Java Development Kit (JDK)][jdk] with version 8 or above
+- [Azure Subscription][azure_subscription]
+
+### Adding the package to your product
+
+[//]: # ({x-version-update-start;com.azure.resourcemanager:azure-resourcemanager-containerinstance-generated;current})
+```xml
+
+ com.azure.resourcemanager
+ azure-resourcemanager-containerinstance-generated
+ 1.0.0-beta.1
+
+```
+[//]: # ({x-version-update-end})
+
+### Include the recommended packages
+
+Azure Management Libraries require a `TokenCredential` implementation for authentication and an `HttpClient` implementation for HTTP client.
+
+[Azure Identity][azure_identity] package and [Azure Core Netty HTTP][azure_core_http_netty] package provide the default implementation.
+
+### Authentication
+
+By default, Azure Active Directory token authentication depends on correct configure of following environment variables.
+
+- `AZURE_CLIENT_ID` for Azure client ID.
+- `AZURE_TENANT_ID` for Azure tenant ID.
+- `AZURE_CLIENT_SECRET` or `AZURE_CLIENT_CERTIFICATE_PATH` for client secret or client certificate.
+
+In addition, Azure subscription ID can be configured via environment variable `AZURE_SUBSCRIPTION_ID`.
+
+With above configuration, `azure` client can be authenticated by following code:
+
+```java
+AzureProfile profile = new AzureProfile(AzureEnvironment.AZURE);
+TokenCredential credential = new DefaultAzureCredentialBuilder()
+ .authorityHost(profile.getEnvironment().getActiveDirectoryEndpoint())
+ .build();
+ContainerInstanceManager manager = ContainerInstanceManager
+ .authenticate(credential, profile);
+```
+
+The sample code assumes global Azure. Please change `AzureEnvironment.AZURE` variable if otherwise.
+
+See [Authentication][authenticate] for more options.
+
+## Key concepts
+
+See [API design][design] for general introduction on design and key concepts on Azure Management Libraries.
+
+## Examples
+
+[Code snippets and samples](https://github.com/Azure/azure-sdk-for-java/blob/main/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/SAMPLE.md)
+
+
+## Troubleshooting
+
+## Next steps
+
+## Contributing
+
+For details on contributing to this repository, see the [contributing guide](https://github.com/Azure/azure-sdk-for-java/blob/main/CONTRIBUTING.md).
+
+1. Fork it
+1. Create your feature branch (`git checkout -b my-new-feature`)
+1. Commit your changes (`git commit -am 'Add some feature'`)
+1. Push to the branch (`git push origin my-new-feature`)
+1. Create new Pull Request
+
+
+[survey]: https://microsoft.qualtrics.com/jfe/form/SV_ehN0lIk2FKEBkwd?Q_CHL=DOCS
+[docs]: https://azure.github.io/azure-sdk-for-java/
+[jdk]: https://docs.microsoft.com/java/azure/jdk/
+[azure_subscription]: https://azure.microsoft.com/free/
+[azure_identity]: https://github.com/Azure/azure-sdk-for-java/blob/main/sdk/identity/azure-identity
+[azure_core_http_netty]: https://github.com/Azure/azure-sdk-for-java/blob/main/sdk/core/azure-core-http-netty
+[authenticate]: https://github.com/Azure/azure-sdk-for-java/blob/main/sdk/resourcemanager/docs/AUTH.md
+[design]: https://github.com/Azure/azure-sdk-for-java/blob/main/sdk/resourcemanager/docs/DESIGN.md
diff --git a/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/SAMPLE.md b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/SAMPLE.md
new file mode 100644
index 000000000000..3781a54ee7bb
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/SAMPLE.md
@@ -0,0 +1,556 @@
+# Code snippets and samples
+
+
+## ContainerGroups
+
+- [CreateOrUpdate](#containergroups_createorupdate)
+- [Delete](#containergroups_delete)
+- [GetByResourceGroup](#containergroups_getbyresourcegroup)
+- [List](#containergroups_list)
+- [ListByResourceGroup](#containergroups_listbyresourcegroup)
+- [Restart](#containergroups_restart)
+- [Start](#containergroups_start)
+- [Stop](#containergroups_stop)
+- [Update](#containergroups_update)
+
+## Containers
+
+- [Attach](#containers_attach)
+- [ExecuteCommand](#containers_executecommand)
+- [ListLogs](#containers_listlogs)
+
+## Location
+
+- [ListCachedImages](#location_listcachedimages)
+- [ListCapabilities](#location_listcapabilities)
+- [ListUsage](#location_listusage)
+
+## Operations
+
+- [List](#operations_list)
+### ContainerGroups_CreateOrUpdate
+
+```java
+import com.azure.core.management.serializer.SerializerFactory;
+import com.azure.core.util.serializer.SerializerEncoding;
+import com.azure.resourcemanager.containerinstance.generated.models.AzureFileVolume;
+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.ContainerGroupIdentityUserAssignedIdentities;
+import com.azure.resourcemanager.containerinstance.generated.models.ContainerGroupIpAddressType;
+import com.azure.resourcemanager.containerinstance.generated.models.ContainerGroupNetworkProtocol;
+import com.azure.resourcemanager.containerinstance.generated.models.ContainerGroupSubnetId;
+import com.azure.resourcemanager.containerinstance.generated.models.ContainerPort;
+import com.azure.resourcemanager.containerinstance.generated.models.DnsConfiguration;
+import com.azure.resourcemanager.containerinstance.generated.models.GpuResource;
+import com.azure.resourcemanager.containerinstance.generated.models.GpuSku;
+import com.azure.resourcemanager.containerinstance.generated.models.IpAddress;
+import com.azure.resourcemanager.containerinstance.generated.models.LogAnalytics;
+import com.azure.resourcemanager.containerinstance.generated.models.LogAnalyticsLogType;
+import com.azure.resourcemanager.containerinstance.generated.models.OperatingSystemTypes;
+import com.azure.resourcemanager.containerinstance.generated.models.Port;
+import com.azure.resourcemanager.containerinstance.generated.models.ResourceIdentityType;
+import com.azure.resourcemanager.containerinstance.generated.models.ResourceRequests;
+import com.azure.resourcemanager.containerinstance.generated.models.ResourceRequirements;
+import com.azure.resourcemanager.containerinstance.generated.models.Volume;
+import com.azure.resourcemanager.containerinstance.generated.models.VolumeMount;
+import java.io.IOException;
+import java.util.Arrays;
+import java.util.HashMap;
+import java.util.Map;
+
+/** Samples for ContainerGroups CreateOrUpdate. */
+public final class ContainerGroupsCreateOrUpdateSamples {
+ /*
+ * x-ms-original-file: specification/containerinstance/resource-manager/Microsoft.ContainerInstance/stable/2021-09-01/examples/ContainerGroupsCreateOrUpdate.json
+ */
+ /**
+ * Sample code: ContainerGroupsCreateOrUpdate.
+ *
+ * @param manager Entry point to ContainerInstanceManager.
+ */
+ public static void containerGroupsCreateOrUpdate(
+ com.azure.resourcemanager.containerinstance.generated.ContainerInstanceManager manager) throws IOException {
+ manager
+ .containerGroups()
+ .define("demo1")
+ .withRegion("west us")
+ .withExistingResourceGroup("demo")
+ .withContainers(
+ Arrays
+ .asList(
+ new Container()
+ .withName("demo1")
+ .withImage("nginx")
+ .withCommand(Arrays.asList())
+ .withPorts(Arrays.asList(new ContainerPort().withPort(80)))
+ .withEnvironmentVariables(Arrays.asList())
+ .withResources(
+ new ResourceRequirements()
+ .withRequests(
+ new ResourceRequests()
+ .withMemoryInGB(1.5)
+ .withCpu(1.0)
+ .withGpu(new GpuResource().withCount(1).withSku(GpuSku.K80))))
+ .withVolumeMounts(
+ Arrays
+ .asList(
+ new VolumeMount()
+ .withName("volume1")
+ .withMountPath("/mnt/volume1")
+ .withReadOnly(false),
+ new VolumeMount()
+ .withName("volume2")
+ .withMountPath("/mnt/volume2")
+ .withReadOnly(false),
+ new VolumeMount()
+ .withName("volume3")
+ .withMountPath("/mnt/volume3")
+ .withReadOnly(true)))))
+ .withOsType(OperatingSystemTypes.LINUX)
+ .withIdentity(
+ new ContainerGroupIdentity()
+ .withType(ResourceIdentityType.SYSTEM_ASSIGNED_USER_ASSIGNED)
+ .withUserAssignedIdentities(
+ mapOf(
+ "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity-name",
+ new ContainerGroupIdentityUserAssignedIdentities())))
+ .withImageRegistryCredentials(Arrays.asList())
+ .withIpAddress(
+ new IpAddress()
+ .withPorts(Arrays.asList(new Port().withProtocol(ContainerGroupNetworkProtocol.TCP).withPort(80)))
+ .withType(ContainerGroupIpAddressType.PUBLIC)
+ .withDnsNameLabel("dnsnamelabel1"))
+ .withVolumes(
+ Arrays
+ .asList(
+ new Volume()
+ .withName("volume1")
+ .withAzureFile(
+ new AzureFileVolume()
+ .withShareName("shareName")
+ .withStorageAccountName("accountName")
+ .withStorageAccountKey("accountKey")),
+ new Volume()
+ .withName("volume2")
+ .withEmptyDir(
+ SerializerFactory
+ .createDefaultManagementSerializerAdapter()
+ .deserialize("{}", Object.class, SerializerEncoding.JSON)),
+ new Volume()
+ .withName("volume3")
+ .withSecret(
+ mapOf("secretKey1", "SecretValue1InBase64", "secretKey2", "SecretValue2InBase64"))))
+ .withDiagnostics(
+ new ContainerGroupDiagnostics()
+ .withLogAnalytics(
+ new LogAnalytics()
+ .withWorkspaceId("workspaceid")
+ .withWorkspaceKey("workspaceKey")
+ .withLogType(LogAnalyticsLogType.CONTAINER_INSIGHTS)
+ .withMetadata(mapOf("test-key", "test-metadata-value"))
+ .withWorkspaceResourceId(
+ "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg/providers/microsoft.operationalinsights/workspaces/workspace")))
+ .withSubnetIds(
+ Arrays
+ .asList(
+ new ContainerGroupSubnetId()
+ .withId(
+ "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('vnetName'),"
+ + " parameters('subnetName'))]")))
+ .withDnsConfig(
+ new DnsConfiguration()
+ .withNameServers(Arrays.asList("1.1.1.1"))
+ .withSearchDomains("cluster.local svc.cluster.local")
+ .withOptions("ndots:2"))
+ .create();
+ }
+
+ @SuppressWarnings("unchecked")
+ private static Map mapOf(Object... inputs) {
+ Map map = new HashMap<>();
+ for (int i = 0; i < inputs.length; i += 2) {
+ String key = (String) inputs[i];
+ T value = (T) inputs[i + 1];
+ map.put(key, value);
+ }
+ return map;
+ }
+}
+```
+
+### ContainerGroups_Delete
+
+```java
+import com.azure.core.util.Context;
+
+/** Samples for ContainerGroups Delete. */
+public final class ContainerGroupsDeleteSamples {
+ /*
+ * x-ms-original-file: specification/containerinstance/resource-manager/Microsoft.ContainerInstance/stable/2021-09-01/examples/ContainerGroupsDelete.json
+ */
+ /**
+ * Sample code: ContainerGroupsDelete.
+ *
+ * @param manager Entry point to ContainerInstanceManager.
+ */
+ public static void containerGroupsDelete(
+ com.azure.resourcemanager.containerinstance.generated.ContainerInstanceManager manager) {
+ manager.containerGroups().delete("demo", "demo1", Context.NONE);
+ }
+}
+```
+
+### ContainerGroups_GetByResourceGroup
+
+```java
+import com.azure.core.util.Context;
+
+/** Samples for ContainerGroups GetByResourceGroup. */
+public final class ContainerGroupsGetByResourceGroupSamples {
+ /*
+ * x-ms-original-file: specification/containerinstance/resource-manager/Microsoft.ContainerInstance/stable/2021-09-01/examples/ContainerGroupsGet_Succeeded.json
+ */
+ /**
+ * Sample code: ContainerGroupsGet_Succeeded.
+ *
+ * @param manager Entry point to ContainerInstanceManager.
+ */
+ public static void containerGroupsGetSucceeded(
+ com.azure.resourcemanager.containerinstance.generated.ContainerInstanceManager manager) {
+ manager.containerGroups().getByResourceGroupWithResponse("demo", "demo1", Context.NONE);
+ }
+
+ /*
+ * x-ms-original-file: specification/containerinstance/resource-manager/Microsoft.ContainerInstance/stable/2021-09-01/examples/ContainerGroupsGet_Failed.json
+ */
+ /**
+ * Sample code: ContainerGroupsGet_Failed.
+ *
+ * @param manager Entry point to ContainerInstanceManager.
+ */
+ public static void containerGroupsGetFailed(
+ com.azure.resourcemanager.containerinstance.generated.ContainerInstanceManager manager) {
+ manager.containerGroups().getByResourceGroupWithResponse("demo", "demo1", Context.NONE);
+ }
+}
+```
+
+### ContainerGroups_List
+
+```java
+import com.azure.core.util.Context;
+
+/** Samples for ContainerGroups List. */
+public final class ContainerGroupsListSamples {
+ /*
+ * x-ms-original-file: specification/containerinstance/resource-manager/Microsoft.ContainerInstance/stable/2021-09-01/examples/ContainerGroupsList.json
+ */
+ /**
+ * Sample code: ContainerGroupsList.
+ *
+ * @param manager Entry point to ContainerInstanceManager.
+ */
+ public static void containerGroupsList(
+ com.azure.resourcemanager.containerinstance.generated.ContainerInstanceManager manager) {
+ manager.containerGroups().list(Context.NONE);
+ }
+}
+```
+
+### ContainerGroups_ListByResourceGroup
+
+```java
+import com.azure.core.util.Context;
+
+/** Samples for ContainerGroups ListByResourceGroup. */
+public final class ContainerGroupsListByResourceGroupSamples {
+ /*
+ * x-ms-original-file: specification/containerinstance/resource-manager/Microsoft.ContainerInstance/stable/2021-09-01/examples/ContainerGroupsListByResourceGroup.json
+ */
+ /**
+ * Sample code: ContainerGroupsListByResourceGroup.
+ *
+ * @param manager Entry point to ContainerInstanceManager.
+ */
+ public static void containerGroupsListByResourceGroup(
+ com.azure.resourcemanager.containerinstance.generated.ContainerInstanceManager manager) {
+ manager.containerGroups().listByResourceGroup("demo", Context.NONE);
+ }
+}
+```
+
+### ContainerGroups_Restart
+
+```java
+import com.azure.core.util.Context;
+
+/** Samples for ContainerGroups Restart. */
+public final class ContainerGroupsRestartSamples {
+ /*
+ * x-ms-original-file: specification/containerinstance/resource-manager/Microsoft.ContainerInstance/stable/2021-09-01/examples/ContainerGroupsRestart.json
+ */
+ /**
+ * Sample code: ContainerRestart.
+ *
+ * @param manager Entry point to ContainerInstanceManager.
+ */
+ public static void containerRestart(
+ com.azure.resourcemanager.containerinstance.generated.ContainerInstanceManager manager) {
+ manager.containerGroups().restart("demo", "demo1", Context.NONE);
+ }
+}
+```
+
+### ContainerGroups_Start
+
+```java
+import com.azure.core.util.Context;
+
+/** Samples for ContainerGroups Start. */
+public final class ContainerGroupsStartSamples {
+ /*
+ * x-ms-original-file: specification/containerinstance/resource-manager/Microsoft.ContainerInstance/stable/2021-09-01/examples/ContainerGroupsStart.json
+ */
+ /**
+ * Sample code: ContainerStart.
+ *
+ * @param manager Entry point to ContainerInstanceManager.
+ */
+ public static void containerStart(
+ com.azure.resourcemanager.containerinstance.generated.ContainerInstanceManager manager) {
+ manager.containerGroups().start("demo", "demo1", Context.NONE);
+ }
+}
+```
+
+### ContainerGroups_Stop
+
+```java
+import com.azure.core.util.Context;
+
+/** Samples for ContainerGroups Stop. */
+public final class ContainerGroupsStopSamples {
+ /*
+ * x-ms-original-file: specification/containerinstance/resource-manager/Microsoft.ContainerInstance/stable/2021-09-01/examples/ContainerGroupsStop.json
+ */
+ /**
+ * Sample code: ContainerStop.
+ *
+ * @param manager Entry point to ContainerInstanceManager.
+ */
+ public static void containerStop(
+ com.azure.resourcemanager.containerinstance.generated.ContainerInstanceManager manager) {
+ manager.containerGroups().stopWithResponse("demo", "demo1", Context.NONE);
+ }
+}
+```
+
+### ContainerGroups_Update
+
+```java
+import com.azure.core.management.Resource;
+import com.azure.core.util.Context;
+import java.util.HashMap;
+import java.util.Map;
+
+/** Samples for ContainerGroups Update. */
+public final class ContainerGroupsUpdateSamples {
+ /*
+ * x-ms-original-file: specification/containerinstance/resource-manager/Microsoft.ContainerInstance/stable/2021-09-01/examples/ContainerGroupsUpdate.json
+ */
+ /**
+ * Sample code: ContainerGroupsUpdate.
+ *
+ * @param manager Entry point to ContainerInstanceManager.
+ */
+ public static void containerGroupsUpdate(
+ com.azure.resourcemanager.containerinstance.generated.ContainerInstanceManager manager) {
+ manager
+ .containerGroups()
+ .updateWithResponse(
+ "demoResource",
+ "demo1",
+ new Resource().withTags(mapOf("tag1key", "tag1Value", "tag2key", "tag2Value")),
+ Context.NONE);
+ }
+
+ @SuppressWarnings("unchecked")
+ private static Map mapOf(Object... inputs) {
+ Map map = new HashMap<>();
+ for (int i = 0; i < inputs.length; i += 2) {
+ String key = (String) inputs[i];
+ T value = (T) inputs[i + 1];
+ map.put(key, value);
+ }
+ return map;
+ }
+}
+```
+
+### Containers_Attach
+
+```java
+import com.azure.core.util.Context;
+
+/** Samples for Containers Attach. */
+public final class ContainersAttachSamples {
+ /*
+ * x-ms-original-file: specification/containerinstance/resource-manager/Microsoft.ContainerInstance/stable/2021-09-01/examples/ContainerAttach.json
+ */
+ /**
+ * Sample code: ContainerAttach.
+ *
+ * @param manager Entry point to ContainerInstanceManager.
+ */
+ public static void containerAttach(
+ com.azure.resourcemanager.containerinstance.generated.ContainerInstanceManager manager) {
+ manager.containers().attachWithResponse("demo", "demo1", "container1", Context.NONE);
+ }
+}
+```
+
+### Containers_ExecuteCommand
+
+```java
+import com.azure.core.util.Context;
+import com.azure.resourcemanager.containerinstance.generated.models.ContainerExecRequest;
+import com.azure.resourcemanager.containerinstance.generated.models.ContainerExecRequestTerminalSize;
+
+/** Samples for Containers ExecuteCommand. */
+public final class ContainersExecuteCommandSamples {
+ /*
+ * x-ms-original-file: specification/containerinstance/resource-manager/Microsoft.ContainerInstance/stable/2021-09-01/examples/ContainerExec.json
+ */
+ /**
+ * Sample code: ContainerExec.
+ *
+ * @param manager Entry point to ContainerInstanceManager.
+ */
+ public static void containerExec(
+ com.azure.resourcemanager.containerinstance.generated.ContainerInstanceManager manager) {
+ manager
+ .containers()
+ .executeCommandWithResponse(
+ "demo",
+ "demo1",
+ "container1",
+ new ContainerExecRequest()
+ .withCommand("/bin/bash")
+ .withTerminalSize(new ContainerExecRequestTerminalSize().withRows(12).withCols(12)),
+ Context.NONE);
+ }
+}
+```
+
+### Containers_ListLogs
+
+```java
+import com.azure.core.util.Context;
+
+/** Samples for Containers ListLogs. */
+public final class ContainersListLogsSamples {
+ /*
+ * x-ms-original-file: specification/containerinstance/resource-manager/Microsoft.ContainerInstance/stable/2021-09-01/examples/ContainerListLogs.json
+ */
+ /**
+ * Sample code: ContainerListLogs.
+ *
+ * @param manager Entry point to ContainerInstanceManager.
+ */
+ public static void containerListLogs(
+ com.azure.resourcemanager.containerinstance.generated.ContainerInstanceManager manager) {
+ manager.containers().listLogsWithResponse("demo", "demo1", "container1", 10, null, Context.NONE);
+ }
+}
+```
+
+### Location_ListCachedImages
+
+```java
+import com.azure.core.util.Context;
+
+/** Samples for Location ListCachedImages. */
+public final class LocationListCachedImagesSamples {
+ /*
+ * x-ms-original-file: specification/containerinstance/resource-manager/Microsoft.ContainerInstance/stable/2021-09-01/examples/CachedImagesList.json
+ */
+ /**
+ * Sample code: CachedImages.
+ *
+ * @param manager Entry point to ContainerInstanceManager.
+ */
+ public static void cachedImages(
+ com.azure.resourcemanager.containerinstance.generated.ContainerInstanceManager manager) {
+ manager.locations().listCachedImages("westcentralus", Context.NONE);
+ }
+}
+```
+
+### Location_ListCapabilities
+
+```java
+import com.azure.core.util.Context;
+
+/** Samples for Location ListCapabilities. */
+public final class LocationListCapabilitiesSamples {
+ /*
+ * x-ms-original-file: specification/containerinstance/resource-manager/Microsoft.ContainerInstance/stable/2021-09-01/examples/CapabilitiesList.json
+ */
+ /**
+ * Sample code: GetCapabilities.
+ *
+ * @param manager Entry point to ContainerInstanceManager.
+ */
+ public static void getCapabilities(
+ com.azure.resourcemanager.containerinstance.generated.ContainerInstanceManager manager) {
+ manager.locations().listCapabilities("westus", Context.NONE);
+ }
+}
+```
+
+### Location_ListUsage
+
+```java
+import com.azure.core.util.Context;
+
+/** Samples for Location ListUsage. */
+public final class LocationListUsageSamples {
+ /*
+ * x-ms-original-file: specification/containerinstance/resource-manager/Microsoft.ContainerInstance/stable/2021-09-01/examples/ContainerGroupUsage.json
+ */
+ /**
+ * Sample code: ContainerUsage.
+ *
+ * @param manager Entry point to ContainerInstanceManager.
+ */
+ public static void containerUsage(
+ com.azure.resourcemanager.containerinstance.generated.ContainerInstanceManager manager) {
+ manager.locations().listUsage("westcentralus", Context.NONE);
+ }
+}
+```
+
+### Operations_List
+
+```java
+import com.azure.core.util.Context;
+
+/** Samples for Operations List. */
+public final class OperationsListSamples {
+ /*
+ * x-ms-original-file: specification/containerinstance/resource-manager/Microsoft.ContainerInstance/stable/2021-09-01/examples/OperationsList.json
+ */
+ /**
+ * Sample code: OperationsList.
+ *
+ * @param manager Entry point to ContainerInstanceManager.
+ */
+ public static void operationsList(
+ com.azure.resourcemanager.containerinstance.generated.ContainerInstanceManager manager) {
+ manager.operations().list(Context.NONE);
+ }
+}
+```
+
diff --git a/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/pom.xml b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/pom.xml
new file mode 100644
index 000000000000..28033b17c14b
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/pom.xml
@@ -0,0 +1,86 @@
+
+ 4.0.0
+
+ com.azure
+ azure-client-sdk-parent
+ 1.7.0
+ ../../parents/azure-client-sdk-parent
+
+
+ com.azure.resourcemanager
+ azure-resourcemanager-containerinstance-generated
+ 1.0.0-beta.1
+ jar
+
+ Microsoft Azure SDK for ContainerInstance Management
+ This package contains Microsoft Azure SDK for ContainerInstance Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Package tag package-2021-09.
+ https://github.com/Azure/azure-sdk-for-java
+
+
+
+ The MIT License (MIT)
+ http://opensource.org/licenses/MIT
+ repo
+
+
+
+
+ https://github.com/Azure/azure-sdk-for-java
+ scm:git:git@github.com:Azure/azure-sdk-for-java.git
+ scm:git:git@github.com:Azure/azure-sdk-for-java.git
+ HEAD
+
+
+
+ microsoft
+ Microsoft
+
+
+
+ UTF-8
+
+
+
+
+ com.azure
+ azure-core
+ 1.21.0
+
+
+ com.azure
+ azure-core-management
+ 1.4.2
+
+
+
+
+
+ org.jacoco
+ jacoco-maven-plugin
+ 0.8.7
+
+ true
+
+
+
+ org.revapi
+ revapi-maven-plugin
+ 0.11.2
+
+
+
+
+ java.method.addedToInterface
+
+
+ true
+ .*
+ com\.azure\.resourcemanager(\.[^.]+)+\.fluent(\.[^.]+)*
+
+
+
+
+
+
+
+
diff --git a/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/ContainerInstanceManager.java b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/ContainerInstanceManager.java
new file mode 100644
index 000000000000..6653eb318082
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/ContainerInstanceManager.java
@@ -0,0 +1,263 @@
+// 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;
+
+import com.azure.core.credential.TokenCredential;
+import com.azure.core.http.HttpClient;
+import com.azure.core.http.HttpPipeline;
+import com.azure.core.http.HttpPipelineBuilder;
+import com.azure.core.http.policy.AddDatePolicy;
+import com.azure.core.http.policy.HttpLogOptions;
+import com.azure.core.http.policy.HttpLoggingPolicy;
+import com.azure.core.http.policy.HttpPipelinePolicy;
+import com.azure.core.http.policy.HttpPolicyProviders;
+import com.azure.core.http.policy.RequestIdPolicy;
+import com.azure.core.http.policy.RetryPolicy;
+import com.azure.core.http.policy.UserAgentPolicy;
+import com.azure.core.management.http.policy.ArmChallengeAuthenticationPolicy;
+import com.azure.core.management.profile.AzureProfile;
+import com.azure.core.util.Configuration;
+import com.azure.core.util.logging.ClientLogger;
+import com.azure.resourcemanager.containerinstance.generated.fluent.ContainerInstanceManagementClient;
+import com.azure.resourcemanager.containerinstance.generated.implementation.ContainerGroupsImpl;
+import com.azure.resourcemanager.containerinstance.generated.implementation.ContainerInstanceManagementClientBuilder;
+import com.azure.resourcemanager.containerinstance.generated.implementation.ContainersImpl;
+import com.azure.resourcemanager.containerinstance.generated.implementation.LocationsImpl;
+import com.azure.resourcemanager.containerinstance.generated.implementation.OperationsImpl;
+import com.azure.resourcemanager.containerinstance.generated.models.ContainerGroups;
+import com.azure.resourcemanager.containerinstance.generated.models.Containers;
+import com.azure.resourcemanager.containerinstance.generated.models.Locations;
+import com.azure.resourcemanager.containerinstance.generated.models.Operations;
+import java.time.Duration;
+import java.time.temporal.ChronoUnit;
+import java.util.ArrayList;
+import java.util.List;
+import java.util.Objects;
+
+/** Entry point to ContainerInstanceManager. */
+public final class ContainerInstanceManager {
+ private ContainerGroups containerGroups;
+
+ private Operations operations;
+
+ private Locations locations;
+
+ private Containers containers;
+
+ private final ContainerInstanceManagementClient clientObject;
+
+ private ContainerInstanceManager(HttpPipeline httpPipeline, AzureProfile profile, Duration defaultPollInterval) {
+ Objects.requireNonNull(httpPipeline, "'httpPipeline' cannot be null.");
+ Objects.requireNonNull(profile, "'profile' cannot be null.");
+ this.clientObject =
+ new ContainerInstanceManagementClientBuilder()
+ .pipeline(httpPipeline)
+ .endpoint(profile.getEnvironment().getResourceManagerEndpoint())
+ .subscriptionId(profile.getSubscriptionId())
+ .defaultPollInterval(defaultPollInterval)
+ .buildClient();
+ }
+
+ /**
+ * 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 static ContainerInstanceManager authenticate(TokenCredential credential, AzureProfile profile) {
+ Objects.requireNonNull(credential, "'credential' cannot be null.");
+ Objects.requireNonNull(profile, "'profile' cannot be null.");
+ return configure().authenticate(credential, profile);
+ }
+
+ /**
+ * Gets a Configurable instance that can be used to create ContainerInstanceManager with optional configuration.
+ *
+ * @return the Configurable instance allowing configurations.
+ */
+ public static Configurable configure() {
+ return new ContainerInstanceManager.Configurable();
+ }
+
+ /** The Configurable allowing configurations to be set. */
+ public static final class Configurable {
+ private final ClientLogger logger = new ClientLogger(Configurable.class);
+
+ private HttpClient httpClient;
+ private HttpLogOptions httpLogOptions;
+ private final List policies = new ArrayList<>();
+ private final List scopes = new ArrayList<>();
+ private RetryPolicy retryPolicy;
+ 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 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, "'retryPolicy' cannot be null.");
+ if (this.defaultPollInterval.isNegative()) {
+ throw logger.logExceptionAsError(new IllegalArgumentException("'httpPipeline' 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) {
+ retryPolicy = new RetryPolicy("Retry-After", ChronoUnit.SECONDS);
+ }
+ List policies = new ArrayList<>();
+ policies.add(new UserAgentPolicy(userAgentBuilder.toString()));
+ policies.add(new RequestIdPolicy());
+ HttpPolicyProviders.addBeforeRetryPolicies(policies);
+ policies.add(retryPolicy);
+ policies.add(new AddDatePolicy());
+ policies.add(new ArmChallengeAuthenticationPolicy(credential, scopes.toArray(new String[0])));
+ policies.addAll(this.policies);
+ 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);
+ }
+ }
+
+ /** @return Resource collection API of ContainerGroups. */
+ public ContainerGroups containerGroups() {
+ if (this.containerGroups == null) {
+ this.containerGroups = new ContainerGroupsImpl(clientObject.getContainerGroups(), this);
+ }
+ return containerGroups;
+ }
+
+ /** @return Resource collection API of Operations. */
+ public Operations operations() {
+ if (this.operations == null) {
+ this.operations = new OperationsImpl(clientObject.getOperations(), this);
+ }
+ return operations;
+ }
+
+ /** @return Resource collection API of Locations. */
+ public Locations locations() {
+ if (this.locations == null) {
+ this.locations = new LocationsImpl(clientObject.getLocations(), this);
+ }
+ return locations;
+ }
+
+ /** @return Resource collection API of Containers. */
+ public Containers containers() {
+ if (this.containers == null) {
+ this.containers = new ContainersImpl(clientObject.getContainers(), this);
+ }
+ return containers;
+ }
+
+ /**
+ * @return Wrapped service client ContainerInstanceManagementClient providing direct access to the underlying
+ * auto-generated API implementation, based on Azure REST API.
+ */
+ 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..d51b5b1bf46b
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/ContainerGroupsClient.java
@@ -0,0 +1,425 @@
+// 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. 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.
+ */
+ @ServiceMethod(returns = ReturnType.COLLECTION)
+ PagedIterable list();
+
+ /**
+ * 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.
+ */
+ @ServiceMethod(returns = ReturnType.COLLECTION)
+ PagedIterable list(Context context);
+
+ /**
+ * 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.
+ */
+ @ServiceMethod(returns = ReturnType.COLLECTION)
+ PagedIterable listByResourceGroup(String resourceGroupName);
+
+ /**
+ * 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.
+ */
+ @ServiceMethod(returns = ReturnType.COLLECTION)
+ PagedIterable listByResourceGroup(String resourceGroupName, Context context);
+
+ /**
+ * 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);
+
+ /**
+ * 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.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ Response getByResourceGroupWithResponse(
+ String resourceGroupName, String containerGroupName, Context context);
+
+ /**
+ * 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.LONG_RUNNING_OPERATION)
+ SyncPoller, ContainerGroupInner> beginCreateOrUpdate(
+ String resourceGroupName, String containerGroupName, ContainerGroupInner containerGroup);
+
+ /**
+ * 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.LONG_RUNNING_OPERATION)
+ SyncPoller, ContainerGroupInner> beginCreateOrUpdate(
+ String resourceGroupName, String containerGroupName, ContainerGroupInner containerGroup, Context context);
+
+ /**
+ * 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 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);
+
+ /**
+ * 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);
+
+ /**
+ * 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.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ Response updateWithResponse(
+ String resourceGroupName, String containerGroupName, Resource resource, Context context);
+
+ /**
+ * 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.LONG_RUNNING_OPERATION)
+ SyncPoller, ContainerGroupInner> beginDelete(
+ String resourceGroupName, String containerGroupName);
+
+ /**
+ * 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.LONG_RUNNING_OPERATION)
+ SyncPoller, ContainerGroupInner> beginDelete(
+ String resourceGroupName, String containerGroupName, Context context);
+
+ /**
+ * 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 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 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 completion.
+ */
+ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
+ SyncPoller, Void> beginRestart(String resourceGroupName, String containerGroupName);
+
+ /**
+ * 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 completion.
+ */
+ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
+ SyncPoller, Void> beginRestart(
+ String resourceGroupName, String containerGroupName, Context context);
+
+ /**
+ * 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 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. 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);
+
+ /**
+ * 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 response.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ Response stopWithResponse(String resourceGroupName, String containerGroupName, Context context);
+
+ /**
+ * 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 completion.
+ */
+ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
+ SyncPoller, Void> beginStart(String resourceGroupName, String containerGroupName);
+
+ /**
+ * 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 completion.
+ */
+ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
+ SyncPoller, Void> beginStart(String resourceGroupName, String containerGroupName, Context context);
+
+ /**
+ * 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. 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);
+
+ /**
+ * 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);
+
+ /**
+ * 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.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ Response> getOutboundNetworkDependenciesEndpointsWithResponse(
+ String resourceGroupName, String containerGroupName, Context context);
+}
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..9a9963764399
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/ContainerInstanceManagementClient.java
@@ -0,0 +1,75 @@
+// 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();
+}
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..79f103725e77
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/ContainersClient.java
@@ -0,0 +1,126 @@
+// 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 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);
+
+ /**
+ * 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.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ Response listLogsWithResponse(
+ String resourceGroupName,
+ String containerGroupName,
+ String containerName,
+ Integer tail,
+ Boolean timestamps,
+ Context context);
+
+ /**
+ * 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);
+
+ /**
+ * 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.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ Response executeCommandWithResponse(
+ String resourceGroupName,
+ String containerGroupName,
+ String containerName,
+ ContainerExecRequest containerExecRequest,
+ Context context);
+
+ /**
+ * 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);
+
+ /**
+ * 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.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ Response attachWithResponse(
+ String resourceGroupName, String containerGroupName, String containerName, Context context);
+}
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..140c40392908
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/LocationsClient.java
@@ -0,0 +1,91 @@
+// 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.
+ */
+ @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.
+ */
+ @ServiceMethod(returns = ReturnType.COLLECTION)
+ PagedIterable listUsage(String location, Context context);
+
+ /**
+ * 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.
+ */
+ @ServiceMethod(returns = ReturnType.COLLECTION)
+ PagedIterable listCachedImages(String location);
+
+ /**
+ * 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.
+ */
+ @ServiceMethod(returns = ReturnType.COLLECTION)
+ PagedIterable listCachedImages(String location, Context context);
+
+ /**
+ * 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.
+ */
+ @ServiceMethod(returns = ReturnType.COLLECTION)
+ PagedIterable listCapabilities(String 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.
+ */
+ @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..1ddd67ded3de
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/OperationsClient.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.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.
+ */
+ @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.
+ */
+ @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/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..5ed2a6712a3e
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/models/CachedImagesInner.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.models;
+
+import com.azure.core.annotation.Fluent;
+import com.azure.core.util.logging.ClientLogger;
+import com.fasterxml.jackson.annotation.JsonIgnore;
+import com.fasterxml.jackson.annotation.JsonProperty;
+
+/** The cached image and OS type. */
+@Fluent
+public final class CachedImagesInner {
+ @JsonIgnore private final ClientLogger logger = new ClientLogger(CachedImagesInner.class);
+
+ /*
+ * The OS type of the cached image.
+ */
+ @JsonProperty(value = "osType", required = true)
+ private String osType;
+
+ /*
+ * The cached image name.
+ */
+ @JsonProperty(value = "image", required = true)
+ private String image;
+
+ /**
+ * 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
+ .logExceptionAsError(
+ new IllegalArgumentException("Missing required property osType in model CachedImagesInner"));
+ }
+ if (image() == null) {
+ throw logger
+ .logExceptionAsError(
+ new IllegalArgumentException("Missing required property image in model CachedImagesInner"));
+ }
+ }
+}
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..c8cc08d30390
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/models/CapabilitiesInner.java
@@ -0,0 +1,118 @@
+// 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.core.util.logging.ClientLogger;
+import com.azure.resourcemanager.containerinstance.generated.models.CapabilitiesCapabilities;
+import com.fasterxml.jackson.annotation.JsonIgnore;
+import com.fasterxml.jackson.annotation.JsonProperty;
+
+/** The regional capabilities. */
+@Immutable
+public final class CapabilitiesInner {
+ @JsonIgnore private final ClientLogger logger = new ClientLogger(CapabilitiesInner.class);
+
+ /*
+ * The resource type that this capability describes.
+ */
+ @JsonProperty(value = "resourceType", access = JsonProperty.Access.WRITE_ONLY)
+ private String resourceType;
+
+ /*
+ * The OS type that this capability describes.
+ */
+ @JsonProperty(value = "osType", access = JsonProperty.Access.WRITE_ONLY)
+ private String osType;
+
+ /*
+ * The resource location.
+ */
+ @JsonProperty(value = "location", access = JsonProperty.Access.WRITE_ONLY)
+ private String location;
+
+ /*
+ * The ip address type that this capability describes.
+ */
+ @JsonProperty(value = "ipAddressType", access = JsonProperty.Access.WRITE_ONLY)
+ private String ipAddressType;
+
+ /*
+ * The GPU sku that this capability describes.
+ */
+ @JsonProperty(value = "gpu", access = JsonProperty.Access.WRITE_ONLY)
+ private String gpu;
+
+ /*
+ * The supported capabilities.
+ */
+ @JsonProperty(value = "capabilities", access = JsonProperty.Access.WRITE_ONLY)
+ private CapabilitiesCapabilities capabilities;
+
+ /**
+ * 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();
+ }
+ }
+}
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..4d10b3a88e10
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/models/ContainerAttachResponseInner.java
@@ -0,0 +1,79 @@
+// 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.fasterxml.jackson.annotation.JsonIgnore;
+import com.fasterxml.jackson.annotation.JsonProperty;
+
+/** The information for the output stream from container attach. */
+@Fluent
+public final class ContainerAttachResponseInner {
+ @JsonIgnore private final ClientLogger logger = new ClientLogger(ContainerAttachResponseInner.class);
+
+ /*
+ * The uri for the output stream from the attach.
+ */
+ @JsonProperty(value = "webSocketUri")
+ private String webSocketUri;
+
+ /*
+ * The password to the output stream from the attach. Send as an
+ * Authorization header value when connecting to the websocketUri.
+ */
+ @JsonProperty(value = "password")
+ private String password;
+
+ /**
+ * 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() {
+ }
+}
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..a7f34a740f2a
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/models/ContainerExecResponseInner.java
@@ -0,0 +1,76 @@
+// 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.fasterxml.jackson.annotation.JsonIgnore;
+import com.fasterxml.jackson.annotation.JsonProperty;
+
+/** The information for the container exec command. */
+@Fluent
+public final class ContainerExecResponseInner {
+ @JsonIgnore private final ClientLogger logger = new ClientLogger(ContainerExecResponseInner.class);
+
+ /*
+ * The uri for the exec websocket.
+ */
+ @JsonProperty(value = "webSocketUri")
+ private String webSocketUri;
+
+ /*
+ * The password to start the exec command.
+ */
+ @JsonProperty(value = "password")
+ private String password;
+
+ /**
+ * 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() {
+ }
+}
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..4f5cd82b53f5
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/models/ContainerGroupInner.java
@@ -0,0 +1,432 @@
+// 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.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.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.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.Volume;
+import com.fasterxml.jackson.annotation.JsonIgnore;
+import com.fasterxml.jackson.annotation.JsonProperty;
+import java.util.List;
+import java.util.Map;
+
+/** A container group. */
+@Fluent
+public final class ContainerGroupInner extends Resource {
+ @JsonIgnore private final ClientLogger logger = new ClientLogger(ContainerGroupInner.class);
+
+ /*
+ * The identity of the container group, if configured.
+ */
+ @JsonProperty(value = "identity")
+ private ContainerGroupIdentity identity;
+
+ /*
+ * The container group properties
+ */
+ @JsonProperty(value = "properties", required = true)
+ private ContainerGroupProperties innerProperties = new ContainerGroupProperties();
+
+ /*
+ * The zones for the container group.
+ */
+ @JsonProperty(value = "zones")
+ private List zones;
+
+ /**
+ * 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 ContainerGroupProperties innerProperties() {
+ return this.innerProperties;
+ }
+
+ /**
+ * 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;
+ }
+
+ /** {@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 ContainerGroupProperties();
+ }
+ 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 ContainerGroupProperties();
+ }
+ 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 ContainerGroupProperties();
+ }
+ 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 ContainerGroupProperties();
+ }
+ 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 ContainerGroupProperties();
+ }
+ 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 ContainerGroupProperties();
+ }
+ 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 ContainerGroupProperties();
+ }
+ 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 ContainerGroupProperties();
+ }
+ 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 ContainerGroupProperties();
+ }
+ 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 ContainerGroupProperties();
+ }
+ 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 ContainerGroupProperties();
+ }
+ 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 ContainerGroupProperties();
+ }
+ this.innerProperties().withInitContainers(initContainers);
+ return this;
+ }
+
+ /**
+ * 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
+ .logExceptionAsError(
+ new IllegalArgumentException(
+ "Missing required property innerProperties in model ContainerGroupInner"));
+ } else {
+ innerProperties().validate();
+ }
+ }
+}
diff --git a/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/models/ContainerGroupProperties.java b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/models/ContainerGroupProperties.java
new file mode 100644
index 000000000000..1264da095153
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/models/ContainerGroupProperties.java
@@ -0,0 +1,434 @@
+// 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.resourcemanager.containerinstance.generated.models.Container;
+import com.azure.resourcemanager.containerinstance.generated.models.ContainerGroupDiagnostics;
+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.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.Volume;
+import com.fasterxml.jackson.annotation.JsonIgnore;
+import com.fasterxml.jackson.annotation.JsonProperty;
+import java.util.List;
+
+/** The container group properties. */
+@Fluent
+public final class ContainerGroupProperties {
+ @JsonIgnore private final ClientLogger logger = new ClientLogger(ContainerGroupProperties.class);
+
+ /*
+ * The provisioning state of the container group. This only appears in the
+ * response.
+ */
+ @JsonProperty(value = "provisioningState", access = JsonProperty.Access.WRITE_ONLY)
+ private String provisioningState;
+
+ /*
+ * The containers within the container group.
+ */
+ @JsonProperty(value = "containers", required = true)
+ private List containers;
+
+ /*
+ * The image registry credentials by which the container group is created
+ * from.
+ */
+ @JsonProperty(value = "imageRegistryCredentials")
+ private List imageRegistryCredentials;
+
+ /*
+ * Restart policy for all containers within the container group.
+ * - `Always` Always restart
+ * - `OnFailure` Restart on failure
+ * - `Never` Never restart
+ *
+ */
+ @JsonProperty(value = "restartPolicy")
+ private ContainerGroupRestartPolicy restartPolicy;
+
+ /*
+ * The IP address type of the container group.
+ */
+ @JsonProperty(value = "ipAddress")
+ private IpAddress ipAddress;
+
+ /*
+ * The operating system type required by the containers in the container
+ * group.
+ */
+ @JsonProperty(value = "osType", required = true)
+ private OperatingSystemTypes osType;
+
+ /*
+ * The list of volumes that can be mounted by containers in this container
+ * group.
+ */
+ @JsonProperty(value = "volumes")
+ private List volumes;
+
+ /*
+ * The instance view of the container group. Only valid in response.
+ */
+ @JsonProperty(value = "instanceView", access = JsonProperty.Access.WRITE_ONLY)
+ private ContainerGroupPropertiesInstanceView instanceView;
+
+ /*
+ * The diagnostic information for a container group.
+ */
+ @JsonProperty(value = "diagnostics")
+ private ContainerGroupDiagnostics diagnostics;
+
+ /*
+ * The subnet resource IDs for a container group.
+ */
+ @JsonProperty(value = "subnetIds")
+ private List subnetIds;
+
+ /*
+ * The DNS config information for a container group.
+ */
+ @JsonProperty(value = "dnsConfig")
+ private DnsConfiguration dnsConfig;
+
+ /*
+ * The SKU for a container group.
+ */
+ @JsonProperty(value = "sku")
+ private ContainerGroupSku sku;
+
+ /*
+ * The encryption properties for a container group.
+ */
+ @JsonProperty(value = "encryptionProperties")
+ private EncryptionProperties encryptionProperties;
+
+ /*
+ * The init containers for a container group.
+ */
+ @JsonProperty(value = "initContainers")
+ private List initContainers;
+
+ /**
+ * 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 ContainerGroupProperties object itself.
+ */
+ public ContainerGroupProperties 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 ContainerGroupProperties object itself.
+ */
+ public ContainerGroupProperties 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 ContainerGroupProperties object itself.
+ */
+ public ContainerGroupProperties 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 ContainerGroupProperties object itself.
+ */
+ public ContainerGroupProperties 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 ContainerGroupProperties object itself.
+ */
+ public ContainerGroupProperties 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 ContainerGroupProperties object itself.
+ */
+ public ContainerGroupProperties 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 ContainerGroupProperties object itself.
+ */
+ public ContainerGroupProperties 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 ContainerGroupProperties object itself.
+ */
+ public ContainerGroupProperties 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 ContainerGroupProperties object itself.
+ */
+ public ContainerGroupProperties 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 ContainerGroupProperties object itself.
+ */
+ public ContainerGroupProperties 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 ContainerGroupProperties object itself.
+ */
+ public ContainerGroupProperties 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 ContainerGroupProperties object itself.
+ */
+ public ContainerGroupProperties withInitContainers(List initContainers) {
+ this.initContainers = initContainers;
+ return this;
+ }
+
+ /**
+ * Validates the instance.
+ *
+ * @throws IllegalArgumentException thrown if the instance is not valid.
+ */
+ public void validate() {
+ if (containers() == null) {
+ throw logger
+ .logExceptionAsError(
+ new IllegalArgumentException(
+ "Missing required property containers in model ContainerGroupProperties"));
+ } else {
+ containers().forEach(e -> e.validate());
+ }
+ if (imageRegistryCredentials() != null) {
+ imageRegistryCredentials().forEach(e -> e.validate());
+ }
+ if (ipAddress() != null) {
+ ipAddress().validate();
+ }
+ if (osType() == null) {
+ throw logger
+ .logExceptionAsError(
+ new IllegalArgumentException("Missing required property osType in model ContainerGroupProperties"));
+ }
+ 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());
+ }
+ }
+}
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..aa01f09e8a25
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/models/ContainerProperties.java
@@ -0,0 +1,284 @@
+// 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.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.VolumeMount;
+import com.fasterxml.jackson.annotation.JsonIgnore;
+import com.fasterxml.jackson.annotation.JsonProperty;
+import java.util.List;
+
+/** The container instance properties. */
+@Fluent
+public final class ContainerProperties {
+ @JsonIgnore private final ClientLogger logger = new ClientLogger(ContainerProperties.class);
+
+ /*
+ * The name of the image used to create the container instance.
+ */
+ @JsonProperty(value = "image", required = true)
+ private String image;
+
+ /*
+ * The commands to execute within the container instance in exec form.
+ */
+ @JsonProperty(value = "command")
+ private List command;
+
+ /*
+ * The exposed ports on the container instance.
+ */
+ @JsonProperty(value = "ports")
+ private List ports;
+
+ /*
+ * The environment variables to set in the container instance.
+ */
+ @JsonProperty(value = "environmentVariables")
+ private List environmentVariables;
+
+ /*
+ * The instance view of the container instance. Only valid in response.
+ */
+ @JsonProperty(value = "instanceView", access = JsonProperty.Access.WRITE_ONLY)
+ private ContainerPropertiesInstanceView instanceView;
+
+ /*
+ * The resource requirements of the container instance.
+ */
+ @JsonProperty(value = "resources", required = true)
+ private ResourceRequirements resources;
+
+ /*
+ * The volume mounts available to the container instance.
+ */
+ @JsonProperty(value = "volumeMounts")
+ private List volumeMounts;
+
+ /*
+ * The liveness probe.
+ */
+ @JsonProperty(value = "livenessProbe")
+ private ContainerProbe livenessProbe;
+
+ /*
+ * The readiness probe.
+ */
+ @JsonProperty(value = "readinessProbe")
+ private ContainerProbe readinessProbe;
+
+ /**
+ * 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;
+ }
+
+ /**
+ * Validates the instance.
+ *
+ * @throws IllegalArgumentException thrown if the instance is not valid.
+ */
+ public void validate() {
+ if (image() == null) {
+ throw logger
+ .logExceptionAsError(
+ new IllegalArgumentException("Missing required property image in model ContainerProperties"));
+ }
+ if (ports() != null) {
+ ports().forEach(e -> e.validate());
+ }
+ if (environmentVariables() != null) {
+ environmentVariables().forEach(e -> e.validate());
+ }
+ if (instanceView() != null) {
+ instanceView().validate();
+ }
+ if (resources() == null) {
+ throw logger
+ .logExceptionAsError(
+ new IllegalArgumentException("Missing required property resources in model ContainerProperties"));
+ } else {
+ resources().validate();
+ }
+ if (volumeMounts() != null) {
+ volumeMounts().forEach(e -> e.validate());
+ }
+ if (livenessProbe() != null) {
+ livenessProbe().validate();
+ }
+ if (readinessProbe() != null) {
+ readinessProbe().validate();
+ }
+ }
+}
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..612916cb6c09
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/models/InitContainerPropertiesDefinition.java
@@ -0,0 +1,156 @@
+// 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.resourcemanager.containerinstance.generated.models.EnvironmentVariable;
+import com.azure.resourcemanager.containerinstance.generated.models.InitContainerPropertiesDefinitionInstanceView;
+import com.azure.resourcemanager.containerinstance.generated.models.VolumeMount;
+import com.fasterxml.jackson.annotation.JsonIgnore;
+import com.fasterxml.jackson.annotation.JsonProperty;
+import java.util.List;
+
+/** The init container definition properties. */
+@Fluent
+public final class InitContainerPropertiesDefinition {
+ @JsonIgnore private final ClientLogger logger = new ClientLogger(InitContainerPropertiesDefinition.class);
+
+ /*
+ * The image of the init container.
+ */
+ @JsonProperty(value = "image")
+ private String image;
+
+ /*
+ * The command to execute within the init container in exec form.
+ */
+ @JsonProperty(value = "command")
+ private List command;
+
+ /*
+ * The environment variables to set in the init container.
+ */
+ @JsonProperty(value = "environmentVariables")
+ private List environmentVariables;
+
+ /*
+ * The instance view of the init container. Only valid in response.
+ */
+ @JsonProperty(value = "instanceView", access = JsonProperty.Access.WRITE_ONLY)
+ private InitContainerPropertiesDefinitionInstanceView instanceView;
+
+ /*
+ * The volume mounts available to the init container.
+ */
+ @JsonProperty(value = "volumeMounts")
+ private List volumeMounts;
+
+ /**
+ * 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;
+ }
+
+ /**
+ * 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());
+ }
+ }
+}
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..64670d3a40f2
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/models/LogsInner.java
@@ -0,0 +1,50 @@
+// 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.fasterxml.jackson.annotation.JsonIgnore;
+import com.fasterxml.jackson.annotation.JsonProperty;
+
+/** The logs. */
+@Fluent
+public final class LogsInner {
+ @JsonIgnore private final ClientLogger logger = new ClientLogger(LogsInner.class);
+
+ /*
+ * The content of the log.
+ */
+ @JsonProperty(value = "content")
+ private String content;
+
+ /**
+ * 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() {
+ }
+}
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..17d21d4c4e1e
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/models/OperationInner.java
@@ -0,0 +1,142 @@
+// 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.resourcemanager.containerinstance.generated.models.ContainerInstanceOperationsOrigin;
+import com.azure.resourcemanager.containerinstance.generated.models.OperationDisplay;
+import com.fasterxml.jackson.annotation.JsonIgnore;
+import com.fasterxml.jackson.annotation.JsonProperty;
+
+/** An operation for Azure Container Instance service. */
+@Fluent
+public final class OperationInner {
+ @JsonIgnore private final ClientLogger logger = new ClientLogger(OperationInner.class);
+
+ /*
+ * The name of the operation.
+ */
+ @JsonProperty(value = "name", required = true)
+ private String name;
+
+ /*
+ * The display information of the operation.
+ */
+ @JsonProperty(value = "display", required = true)
+ private OperationDisplay display;
+
+ /*
+ * The additional properties.
+ */
+ @JsonProperty(value = "properties")
+ private Object properties;
+
+ /*
+ * The intended executor of the operation.
+ */
+ @JsonProperty(value = "origin")
+ private ContainerInstanceOperationsOrigin origin;
+
+ /**
+ * 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
+ .logExceptionAsError(
+ new IllegalArgumentException("Missing required property name in model OperationInner"));
+ }
+ if (display() == null) {
+ throw logger
+ .logExceptionAsError(
+ new IllegalArgumentException("Missing required property display in model OperationInner"));
+ } else {
+ display().validate();
+ }
+ }
+}
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..cc9c9f204a31
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/models/UsageInner.java
@@ -0,0 +1,88 @@
+// 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.core.util.logging.ClientLogger;
+import com.azure.resourcemanager.containerinstance.generated.models.UsageName;
+import com.fasterxml.jackson.annotation.JsonIgnore;
+import com.fasterxml.jackson.annotation.JsonProperty;
+
+/** A single usage result. */
+@Immutable
+public final class UsageInner {
+ @JsonIgnore private final ClientLogger logger = new ClientLogger(UsageInner.class);
+
+ /*
+ * Unit of the usage result
+ */
+ @JsonProperty(value = "unit", access = JsonProperty.Access.WRITE_ONLY)
+ private String unit;
+
+ /*
+ * The current usage of the resource
+ */
+ @JsonProperty(value = "currentValue", access = JsonProperty.Access.WRITE_ONLY)
+ private Integer currentValue;
+
+ /*
+ * The maximum permitted usage of the resource.
+ */
+ @JsonProperty(value = "limit", access = JsonProperty.Access.WRITE_ONLY)
+ private Integer limit;
+
+ /*
+ * The name object of the resource
+ */
+ @JsonProperty(value = "name", access = JsonProperty.Access.WRITE_ONLY)
+ private UsageName name;
+
+ /**
+ * 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();
+ }
+ }
+}
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..bb018aa296a5
--- /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,6 @@
+// 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..57d35f85a895
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/fluent/package-info.java
@@ -0,0 +1,6 @@
+// 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..0c571d4df632
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/implementation/CachedImagesImpl.java
@@ -0,0 +1,37 @@
+// 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..fe9402098c09
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/implementation/CapabilitiesImpl.java
@@ -0,0 +1,54 @@
+// 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..8ed6def34bc8
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/implementation/ContainerAttachResponseImpl.java
@@ -0,0 +1,37 @@
+// 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..7a8f27caf675
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/implementation/ContainerExecResponseImpl.java
@@ -0,0 +1,37 @@
+// 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..8c03281f7f73
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/implementation/ContainerGroupImpl.java
@@ -0,0 +1,339 @@
+// 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.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.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.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.Volume;
+import java.util.Collections;
+import java.util.List;
+import java.util.Map;
+
+public final class ContainerGroupImpl implements ContainerGroup, ContainerGroup.Definition {
+ private ContainerGroupInner innerObject;
+
+ private final com.azure.resourcemanager.containerinstance.generated.ContainerInstanceManager serviceManager;
+
+ ContainerGroupImpl(
+ ContainerGroupInner innerObject,
+ com.azure.resourcemanager.containerinstance.generated.ContainerInstanceManager serviceManager) {
+ this.innerObject = innerObject;
+ this.serviceManager = 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 ContainerGroupIdentity identity() {
+ return this.innerModel().identity();
+ }
+
+ public List zones() {
+ List inner = this.innerModel().zones();
+ if (inner != null) {
+ return Collections.unmodifiableList(inner);
+ } else {
+ return Collections.emptyList();
+ }
+ }
+
+ 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 Region region() {
+ return Region.fromName(this.regionName());
+ }
+
+ public String regionName() {
+ return this.location();
+ }
+
+ 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 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 void stop() {
+ serviceManager.containerGroups().stop(resourceGroupName, containerGroupName);
+ }
+
+ public Response stopWithResponse(Context context) {
+ return serviceManager.containerGroups().stopWithResponse(resourceGroupName, containerGroupName, context);
+ }
+
+ 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 withOsType(OperatingSystemTypes osType) {
+ this.innerModel().withOsType(osType);
+ return this;
+ }
+
+ public ContainerGroupImpl withTags(Map tags) {
+ this.innerModel().withTags(tags);
+ return this;
+ }
+
+ public ContainerGroupImpl withIdentity(ContainerGroupIdentity identity) {
+ this.innerModel().withIdentity(identity);
+ return this;
+ }
+
+ public ContainerGroupImpl withZones(List zones) {
+ this.innerModel().withZones(zones);
+ 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 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;
+ }
+}
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..e2cf7d992e52
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/implementation/ContainerGroupsClientImpl.java
@@ -0,0 +1,2336 @@
+// 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.logging.ClientLogger;
+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 {
+ private final ClientLogger logger = new ClientLogger(ContainerGroupsClientImpl.class);
+
+ /** 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")
+ private 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})
+ @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. 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.
+ */
+ @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. 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.
+ */
+ @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. 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.
+ */
+ @ServiceMethod(returns = ReturnType.COLLECTION)
+ private PagedFlux listAsync() {
+ return new PagedFlux<>(() -> listSinglePageAsync(), nextLink -> listNextSinglePageAsync(nextLink));
+ }
+
+ /**
+ * 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.
+ */
+ @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. 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.
+ */
+ @ServiceMethod(returns = ReturnType.COLLECTION)
+ public PagedIterable list() {
+ return new PagedIterable<>(listAsync());
+ }
+
+ /**
+ * 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.
+ */
+ @ServiceMethod(returns = ReturnType.COLLECTION)
+ public PagedIterable list(Context context) {
+ return new PagedIterable<>(listAsync(context));
+ }
+
+ /**
+ * 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.
+ */
+ @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 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.
+ */
+ @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 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.
+ */
+ @ServiceMethod(returns = ReturnType.COLLECTION)
+ private PagedFlux listByResourceGroupAsync(String resourceGroupName) {
+ return new PagedFlux<>(
+ () -> listByResourceGroupSinglePageAsync(resourceGroupName),
+ nextLink -> listByResourceGroupNextSinglePageAsync(nextLink));
+ }
+
+ /**
+ * 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.
+ */
+ @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 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.
+ */
+ @ServiceMethod(returns = ReturnType.COLLECTION)
+ public PagedIterable listByResourceGroup(String resourceGroupName) {
+ return new PagedIterable<>(listByResourceGroupAsync(resourceGroupName));
+ }
+
+ /**
+ * 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.
+ */
+ @ServiceMethod(returns = ReturnType.COLLECTION)
+ public PagedIterable listByResourceGroup(String resourceGroupName, Context context) {
+ return new PagedIterable<>(listByResourceGroupAsync(resourceGroupName, context));
+ }
+
+ /**
+ * 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)
+ 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()));
+ }
+
+ /**
+ * 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.
+ */
+ @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);
+ }
+
+ /**
+ * 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)
+ private Mono getByResourceGroupAsync(String resourceGroupName, String containerGroupName) {
+ return getByResourceGroupWithResponseAsync(resourceGroupName, containerGroupName)
+ .flatMap(
+ (Response res) -> {
+ if (res.getValue() != null) {
+ return Mono.just(res.getValue());
+ } else {
+ return Mono.empty();
+ }
+ });
+ }
+
+ /**
+ * 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 getByResourceGroupAsync(resourceGroupName, containerGroupName).block();
+ }
+
+ /**
+ * 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.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ public Response getByResourceGroupWithResponse(
+ String resourceGroupName, String containerGroupName, Context context) {
+ return getByResourceGroupWithResponseAsync(resourceGroupName, containerGroupName, context).block();
+ }
+
+ /**
+ * 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)
+ 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 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)
+ 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 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.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,
+ Context.NONE);
+ }
+
+ /**
+ * 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.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 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.LONG_RUNNING_OPERATION)
+ public SyncPoller, ContainerGroupInner> beginCreateOrUpdate(
+ String resourceGroupName, String containerGroupName, ContainerGroupInner containerGroup) {
+ return beginCreateOrUpdateAsync(resourceGroupName, containerGroupName, containerGroup).getSyncPoller();
+ }
+
+ /**
+ * 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.LONG_RUNNING_OPERATION)
+ public SyncPoller, ContainerGroupInner> beginCreateOrUpdate(
+ String resourceGroupName, String containerGroupName, ContainerGroupInner containerGroup, Context context) {
+ return beginCreateOrUpdateAsync(resourceGroupName, containerGroupName, containerGroup, context).getSyncPoller();
+ }
+
+ /**
+ * 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)
+ private Mono createOrUpdateAsync(
+ String resourceGroupName, String containerGroupName, ContainerGroupInner containerGroup) {
+ return beginCreateOrUpdateAsync(resourceGroupName, containerGroupName, containerGroup)
+ .last()
+ .flatMap(this.client::getLroFinalResultOrError);
+ }
+
+ /**
+ * 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)
+ 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 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 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();
+ }
+
+ /**
+ * 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)
+ 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()));
+ }
+
+ /**
+ * 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.
+ */
+ @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);
+ }
+
+ /**
+ * 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)
+ private Mono updateAsync(
+ String resourceGroupName, String containerGroupName, Resource resource) {
+ return updateWithResponseAsync(resourceGroupName, containerGroupName, resource)
+ .flatMap(
+ (Response res) -> {
+ if (res.getValue() != null) {
+ return Mono.just(res.getValue());
+ } else {
+ return Mono.empty();
+ }
+ });
+ }
+
+ /**
+ * 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 updateAsync(resourceGroupName, containerGroupName, resource).block();
+ }
+
+ /**
+ * 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.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ public Response updateWithResponse(
+ String resourceGroupName, String containerGroupName, Resource resource, Context context) {
+ return updateWithResponseAsync(resourceGroupName, containerGroupName, resource, context).block();
+ }
+
+ /**
+ * 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)
+ 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 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)
+ 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 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.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,
+ Context.NONE);
+ }
+
+ /**
+ * 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.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 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.LONG_RUNNING_OPERATION)
+ public SyncPoller, ContainerGroupInner> beginDelete(
+ String resourceGroupName, String containerGroupName) {
+ return beginDeleteAsync(resourceGroupName, containerGroupName).getSyncPoller();
+ }
+
+ /**
+ * 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.LONG_RUNNING_OPERATION)
+ public SyncPoller, ContainerGroupInner> beginDelete(
+ String resourceGroupName, String containerGroupName, Context context) {
+ return beginDeleteAsync(resourceGroupName, containerGroupName, context).getSyncPoller();
+ }
+
+ /**
+ * 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)
+ private Mono deleteAsync(String resourceGroupName, String containerGroupName) {
+ return beginDeleteAsync(resourceGroupName, containerGroupName)
+ .last()
+ .flatMap(this.client::getLroFinalResultOrError);
+ }
+
+ /**
+ * 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)
+ private Mono deleteAsync(
+ String resourceGroupName, String containerGroupName, Context context) {
+ return beginDeleteAsync(resourceGroupName, containerGroupName, context)
+ .last()
+ .flatMap(this.client::getLroFinalResultOrError);
+ }
+
+ /**
+ * 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 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 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 completion.
+ */
+ @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 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 completion.
+ */
+ @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 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 completion.
+ */
+ @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, Context.NONE);
+ }
+
+ /**
+ * 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 completion.
+ */
+ @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 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 completion.
+ */
+ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
+ public SyncPoller, Void> beginRestart(String resourceGroupName, String containerGroupName) {
+ return beginRestartAsync(resourceGroupName, containerGroupName).getSyncPoller();
+ }
+
+ /**
+ * 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 completion.
+ */
+ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
+ public SyncPoller, Void> beginRestart(
+ String resourceGroupName, String containerGroupName, Context context) {
+ return beginRestartAsync(resourceGroupName, containerGroupName, context).getSyncPoller();
+ }
+
+ /**
+ * 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 completion.
+ */
+ @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 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 completion.
+ */
+ @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 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 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. 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 completion.
+ */
+ @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. 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 completion.
+ */
+ @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. 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 completion.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono stopAsync(String resourceGroupName, String containerGroupName) {
+ return stopWithResponseAsync(resourceGroupName, containerGroupName)
+ .flatMap((Response res) -> Mono.empty());
+ }
+
+ /**
+ * 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) {
+ stopAsync(resourceGroupName, containerGroupName).block();
+ }
+
+ /**
+ * 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 response.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ public Response stopWithResponse(String resourceGroupName, String containerGroupName, Context context) {
+ return stopWithResponseAsync(resourceGroupName, containerGroupName, context).block();
+ }
+
+ /**
+ * 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 completion.
+ */
+ @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. 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 completion.
+ */
+ @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. 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 completion.
+ */
+ @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, Context.NONE);
+ }
+
+ /**
+ * 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 completion.
+ */
+ @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. 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 completion.
+ */
+ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
+ public SyncPoller, Void> beginStart(String resourceGroupName, String containerGroupName) {
+ return beginStartAsync(resourceGroupName, containerGroupName).getSyncPoller();
+ }
+
+ /**
+ * 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 completion.
+ */
+ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
+ public SyncPoller, Void> beginStart(
+ String resourceGroupName, String containerGroupName, Context context) {
+ return beginStartAsync(resourceGroupName, containerGroupName, context).getSyncPoller();
+ }
+
+ /**
+ * 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 completion.
+ */
+ @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. 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 completion.
+ */
+ @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. 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. 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();
+ }
+
+ /**
+ * 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)
+ 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()));
+ }
+
+ /**
+ * 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.
+ */
+ @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);
+ }
+
+ /**
+ * 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)
+ private Mono> getOutboundNetworkDependenciesEndpointsAsync(
+ String resourceGroupName, String containerGroupName) {
+ return getOutboundNetworkDependenciesEndpointsWithResponseAsync(resourceGroupName, containerGroupName)
+ .flatMap(
+ (Response> res) -> {
+ if (res.getValue() != null) {
+ return Mono.just(res.getValue());
+ } else {
+ return Mono.empty();
+ }
+ });
+ }
+
+ /**
+ * 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 getOutboundNetworkDependenciesEndpointsAsync(resourceGroupName, containerGroupName).block();
+ }
+
+ /**
+ * 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.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ public Response> getOutboundNetworkDependenciesEndpointsWithResponse(
+ String resourceGroupName, String containerGroupName, Context context) {
+ return getOutboundNetworkDependenciesEndpointsWithResponseAsync(resourceGroupName, containerGroupName, context)
+ .block();
+ }
+
+ /**
+ * Get the next page of items.
+ *
+ * @param nextLink The nextLink parameter.
+ * @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.
+ */
+ @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 nextLink parameter.
+ * @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.
+ */
+ @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 nextLink parameter.
+ * @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.
+ */
+ @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 nextLink parameter.
+ * @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.
+ */
+ @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..a2bf7787e81c
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/implementation/ContainerGroupsImpl.java
@@ -0,0 +1,253 @@
+// 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 com.fasterxml.jackson.annotation.JsonIgnore;
+import java.util.Collections;
+import java.util.List;
+
+public final class ContainerGroupsImpl implements ContainerGroups {
+ @JsonIgnore private 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 Utils.mapPage(inner, inner1 -> new ContainerGroupImpl(inner1, this.manager()));
+ }
+
+ public PagedIterable list(Context context) {
+ PagedIterable inner = this.serviceClient().list(context);
+ return Utils.mapPage(inner, inner1 -> new ContainerGroupImpl(inner1, this.manager()));
+ }
+
+ public PagedIterable listByResourceGroup(String resourceGroupName) {
+ PagedIterable inner = this.serviceClient().listByResourceGroup(resourceGroupName);
+ return Utils.mapPage(inner, inner1 -> new ContainerGroupImpl(inner1, this.manager()));
+ }
+
+ public PagedIterable listByResourceGroup(String resourceGroupName, Context context) {
+ PagedIterable inner = this.serviceClient().listByResourceGroup(resourceGroupName, context);
+ return Utils.mapPage(inner, inner1 -> new ContainerGroupImpl(inner1, this.manager()));
+ }
+
+ public ContainerGroup getByResourceGroup(String resourceGroupName, String containerGroupName) {
+ ContainerGroupInner inner = this.serviceClient().getByResourceGroup(resourceGroupName, containerGroupName);
+ if (inner != null) {
+ return new ContainerGroupImpl(inner, this.manager());
+ } else {
+ return null;
+ }
+ }
+
+ public Response getByResourceGroupWithResponse(
+ String resourceGroupName, String containerGroupName, Context context) {
+ Response inner =
+ this.serviceClient().getByResourceGroupWithResponse(resourceGroupName, containerGroupName, context);
+ if (inner != null) {
+ return new SimpleResponse<>(
+ inner.getRequest(),
+ inner.getStatusCode(),
+ inner.getHeaders(),
+ new ContainerGroupImpl(inner.getValue(), this.manager()));
+ } else {
+ return null;
+ }
+ }
+
+ public ContainerGroup update(String resourceGroupName, String containerGroupName, Resource resource) {
+ ContainerGroupInner inner = this.serviceClient().update(resourceGroupName, containerGroupName, resource);
+ if (inner != null) {
+ return new ContainerGroupImpl(inner, this.manager());
+ } else {
+ return null;
+ }
+ }
+
+ public Response updateWithResponse(
+ String resourceGroupName, String containerGroupName, Resource resource, Context context) {
+ Response inner =
+ this.serviceClient().updateWithResponse(resourceGroupName, containerGroupName, resource, context);
+ if (inner != null) {
+ return new SimpleResponse<>(
+ inner.getRequest(),
+ inner.getStatusCode(),
+ inner.getHeaders(),
+ new ContainerGroupImpl(inner.getValue(), this.manager()));
+ } else {
+ return null;
+ }
+ }
+
+ public ContainerGroup deleteByResourceGroup(String resourceGroupName, String containerGroupName) {
+ ContainerGroupInner inner = this.serviceClient().delete(resourceGroupName, containerGroupName);
+ if (inner != null) {
+ return new ContainerGroupImpl(inner, this.manager());
+ } else {
+ return null;
+ }
+ }
+
+ public ContainerGroup delete(String resourceGroupName, String containerGroupName, Context context) {
+ ContainerGroupInner inner = this.serviceClient().delete(resourceGroupName, containerGroupName, context);
+ if (inner != null) {
+ return new ContainerGroupImpl(inner, this.manager());
+ } else {
+ return null;
+ }
+ }
+
+ public void restart(String resourceGroupName, String containerGroupName) {
+ this.serviceClient().restart(resourceGroupName, containerGroupName);
+ }
+
+ public void restart(String resourceGroupName, String containerGroupName, Context context) {
+ this.serviceClient().restart(resourceGroupName, containerGroupName, context);
+ }
+
+ public void stop(String resourceGroupName, String containerGroupName) {
+ this.serviceClient().stop(resourceGroupName, containerGroupName);
+ }
+
+ public Response stopWithResponse(String resourceGroupName, String containerGroupName, Context context) {
+ return this.serviceClient().stopWithResponse(resourceGroupName, containerGroupName, context);
+ }
+
+ public void start(String resourceGroupName, String containerGroupName) {
+ this.serviceClient().start(resourceGroupName, containerGroupName);
+ }
+
+ public void start(String resourceGroupName, String containerGroupName, Context context) {
+ this.serviceClient().start(resourceGroupName, containerGroupName, context);
+ }
+
+ public List getOutboundNetworkDependenciesEndpoints(String resourceGroupName, String containerGroupName) {
+ List inner =
+ this.serviceClient().getOutboundNetworkDependenciesEndpoints(resourceGroupName, containerGroupName);
+ if (inner != null) {
+ return Collections.unmodifiableList(inner);
+ } else {
+ return Collections.emptyList();
+ }
+ }
+
+ public Response> getOutboundNetworkDependenciesEndpointsWithResponse(
+ String resourceGroupName, String containerGroupName, Context context) {
+ return this
+ .serviceClient()
+ .getOutboundNetworkDependenciesEndpointsWithResponse(resourceGroupName, containerGroupName, context);
+ }
+
+ public ContainerGroup getById(String id) {
+ String resourceGroupName = Utils.getValueFromIdByName(id, "resourceGroups");
+ if (resourceGroupName == null) {
+ throw logger
+ .logExceptionAsError(
+ new IllegalArgumentException(
+ String
+ .format("The resource ID '%s' is not valid. Missing path segment 'resourceGroups'.", id)));
+ }
+ String containerGroupName = Utils.getValueFromIdByName(id, "containerGroups");
+ if (containerGroupName == null) {
+ throw logger
+ .logExceptionAsError(
+ new IllegalArgumentException(
+ String
+ .format("The resource ID '%s' is not valid. Missing path segment 'containerGroups'.", id)));
+ }
+ return this.getByResourceGroupWithResponse(resourceGroupName, containerGroupName, Context.NONE).getValue();
+ }
+
+ public Response getByIdWithResponse(String id, Context context) {
+ String resourceGroupName = Utils.getValueFromIdByName(id, "resourceGroups");
+ if (resourceGroupName == null) {
+ throw logger
+ .logExceptionAsError(
+ new IllegalArgumentException(
+ String
+ .format("The resource ID '%s' is not valid. Missing path segment 'resourceGroups'.", id)));
+ }
+ String containerGroupName = Utils.getValueFromIdByName(id, "containerGroups");
+ if (containerGroupName == null) {
+ throw logger
+ .logExceptionAsError(
+ new IllegalArgumentException(
+ String
+ .format("The resource ID '%s' is not valid. Missing path segment 'containerGroups'.", id)));
+ }
+ return this.getByResourceGroupWithResponse(resourceGroupName, containerGroupName, context);
+ }
+
+ public ContainerGroup deleteById(String id) {
+ String resourceGroupName = Utils.getValueFromIdByName(id, "resourceGroups");
+ if (resourceGroupName == null) {
+ throw logger
+ .logExceptionAsError(
+ new IllegalArgumentException(
+ String
+ .format("The resource ID '%s' is not valid. Missing path segment 'resourceGroups'.", id)));
+ }
+ String containerGroupName = Utils.getValueFromIdByName(id, "containerGroups");
+ if (containerGroupName == null) {
+ throw logger
+ .logExceptionAsError(
+ new IllegalArgumentException(
+ String
+ .format("The resource ID '%s' is not valid. Missing path segment 'containerGroups'.", id)));
+ }
+ return this.delete(resourceGroupName, containerGroupName, Context.NONE);
+ }
+
+ public ContainerGroup deleteByIdWithResponse(String id, Context context) {
+ String resourceGroupName = Utils.getValueFromIdByName(id, "resourceGroups");
+ if (resourceGroupName == null) {
+ throw logger
+ .logExceptionAsError(
+ new IllegalArgumentException(
+ String
+ .format("The resource ID '%s' is not valid. Missing path segment 'resourceGroups'.", id)));
+ }
+ String containerGroupName = Utils.getValueFromIdByName(id, "containerGroups");
+ if (containerGroupName == null) {
+ throw logger
+ .logExceptionAsError(
+ new IllegalArgumentException(
+ String
+ .format("The resource ID '%s' is not valid. Missing path segment 'containerGroups'.", id)));
+ }
+ return this.delete(resourceGroupName, containerGroupName, context);
+ }
+
+ private ContainerGroupsClient serviceClient() {
+ return this.innerClient;
+ }
+
+ private com.azure.resourcemanager.containerinstance.generated.ContainerInstanceManager manager() {
+ return this.serviceManager;
+ }
+
+ public ContainerGroupImpl define(String name) {
+ return new ContainerGroupImpl(name, this.manager());
+ }
+}
diff --git a/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/implementation/ContainerInstanceManagementClientBuilder.java b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/implementation/ContainerInstanceManagementClientBuilder.java
new file mode 100644
index 000000000000..d3749f7fdb80
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/implementation/ContainerInstanceManagementClientBuilder.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.implementation;
+
+import com.azure.core.annotation.ServiceClientBuilder;
+import com.azure.core.http.HttpPipeline;
+import com.azure.core.http.HttpPipelineBuilder;
+import com.azure.core.http.policy.CookiePolicy;
+import com.azure.core.http.policy.RetryPolicy;
+import com.azure.core.http.policy.UserAgentPolicy;
+import com.azure.core.management.AzureEnvironment;
+import com.azure.core.management.serializer.SerializerFactory;
+import com.azure.core.util.serializer.SerializerAdapter;
+import java.time.Duration;
+
+/** A builder for creating a new instance of the ContainerInstanceManagementClientImpl type. */
+@ServiceClientBuilder(serviceClients = {ContainerInstanceManagementClientImpl.class})
+public final class ContainerInstanceManagementClientBuilder {
+ /*
+ * Subscription credentials which uniquely identify Microsoft Azure
+ * subscription. The subscription ID forms part of the URI for every
+ * service call.
+ */
+ private String subscriptionId;
+
+ /**
+ * Sets Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms
+ * part of the URI for every service call.
+ *
+ * @param subscriptionId the subscriptionId value.
+ * @return the ContainerInstanceManagementClientBuilder.
+ */
+ public ContainerInstanceManagementClientBuilder subscriptionId(String subscriptionId) {
+ this.subscriptionId = subscriptionId;
+ return this;
+ }
+
+ /*
+ * server parameter
+ */
+ private String endpoint;
+
+ /**
+ * Sets server parameter.
+ *
+ * @param endpoint the endpoint value.
+ * @return the ContainerInstanceManagementClientBuilder.
+ */
+ public ContainerInstanceManagementClientBuilder endpoint(String endpoint) {
+ this.endpoint = endpoint;
+ return this;
+ }
+
+ /*
+ * The environment to connect to
+ */
+ private AzureEnvironment environment;
+
+ /**
+ * Sets The environment to connect to.
+ *
+ * @param environment the environment value.
+ * @return the ContainerInstanceManagementClientBuilder.
+ */
+ public ContainerInstanceManagementClientBuilder environment(AzureEnvironment environment) {
+ this.environment = environment;
+ return this;
+ }
+
+ /*
+ * The default poll interval for long-running operation
+ */
+ private Duration defaultPollInterval;
+
+ /**
+ * Sets The default poll interval for long-running operation.
+ *
+ * @param defaultPollInterval the defaultPollInterval value.
+ * @return the ContainerInstanceManagementClientBuilder.
+ */
+ public ContainerInstanceManagementClientBuilder defaultPollInterval(Duration defaultPollInterval) {
+ this.defaultPollInterval = defaultPollInterval;
+ return this;
+ }
+
+ /*
+ * The HTTP pipeline to send requests through
+ */
+ private HttpPipeline pipeline;
+
+ /**
+ * Sets The HTTP pipeline to send requests through.
+ *
+ * @param pipeline the pipeline value.
+ * @return the ContainerInstanceManagementClientBuilder.
+ */
+ public ContainerInstanceManagementClientBuilder pipeline(HttpPipeline pipeline) {
+ this.pipeline = pipeline;
+ return this;
+ }
+
+ /*
+ * The serializer to serialize an object into a string
+ */
+ private SerializerAdapter serializerAdapter;
+
+ /**
+ * Sets The serializer to serialize an object into a string.
+ *
+ * @param serializerAdapter the serializerAdapter value.
+ * @return the ContainerInstanceManagementClientBuilder.
+ */
+ public ContainerInstanceManagementClientBuilder serializerAdapter(SerializerAdapter serializerAdapter) {
+ this.serializerAdapter = serializerAdapter;
+ return this;
+ }
+
+ /**
+ * Builds an instance of ContainerInstanceManagementClientImpl with the provided parameters.
+ *
+ * @return an instance of ContainerInstanceManagementClientImpl.
+ */
+ public ContainerInstanceManagementClientImpl buildClient() {
+ if (endpoint == null) {
+ this.endpoint = "https://management.azure.com";
+ }
+ if (environment == null) {
+ this.environment = AzureEnvironment.AZURE;
+ }
+ if (defaultPollInterval == null) {
+ this.defaultPollInterval = Duration.ofSeconds(30);
+ }
+ if (pipeline == null) {
+ this.pipeline =
+ new HttpPipelineBuilder()
+ .policies(new UserAgentPolicy(), new RetryPolicy(), new CookiePolicy())
+ .build();
+ }
+ if (serializerAdapter == null) {
+ this.serializerAdapter = SerializerFactory.createDefaultManagementSerializerAdapter();
+ }
+ ContainerInstanceManagementClientImpl client =
+ new ContainerInstanceManagementClientImpl(
+ pipeline, serializerAdapter, defaultPollInterval, environment, subscriptionId, endpoint);
+ return client;
+ }
+}
diff --git a/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/implementation/ContainerInstanceManagementClientImpl.java b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/implementation/ContainerInstanceManagementClientImpl.java
new file mode 100644
index 000000000000..08611aea44a7
--- /dev/null
+++ b/sdk/containerinstance/azure-resourcemanager-containerinstance-generated/src/main/java/com/azure/resourcemanager/containerinstance/generated/implementation/ContainerInstanceManagementClientImpl.java
@@ -0,0 +1,340 @@
+// 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.ServiceClient;
+import com.azure.core.http.HttpHeaders;
+import com.azure.core.http.HttpPipeline;
+import com.azure.core.http.HttpResponse;
+import com.azure.core.http.rest.Response;
+import com.azure.core.management.AzureEnvironment;
+import com.azure.core.management.exception.ManagementError;
+import com.azure.core.management.exception.ManagementException;
+import com.azure.core.management.polling.PollResult;
+import com.azure.core.management.polling.PollerFactory;
+import com.azure.core.util.Context;
+import com.azure.core.util.logging.ClientLogger;
+import com.azure.core.util.polling.AsyncPollResponse;
+import com.azure.core.util.polling.LongRunningOperationStatus;
+import com.azure.core.util.polling.PollerFlux;
+import com.azure.core.util.serializer.SerializerAdapter;
+import com.azure.core.util.serializer.SerializerEncoding;
+import com.azure.resourcemanager.containerinstance.generated.fluent.ContainerGroupsClient;
+import com.azure.resourcemanager.containerinstance.generated.fluent.ContainerInstanceManagementClient;
+import com.azure.resourcemanager.containerinstance.generated.fluent.ContainersClient;
+import com.azure.resourcemanager.containerinstance.generated.fluent.LocationsClient;
+import com.azure.resourcemanager.containerinstance.generated.fluent.OperationsClient;
+import java.io.IOException;
+import java.lang.reflect.Type;
+import java.nio.ByteBuffer;
+import java.nio.charset.Charset;
+import java.nio.charset.StandardCharsets;
+import java.time.Duration;
+import java.util.Map;
+import reactor.core.publisher.Flux;
+import reactor.core.publisher.Mono;
+
+/** Initializes a new instance of the ContainerInstanceManagementClientImpl type. */
+@ServiceClient(builder = ContainerInstanceManagementClientBuilder.class)
+public final class ContainerInstanceManagementClientImpl implements ContainerInstanceManagementClient {
+ private final ClientLogger logger = new ClientLogger(ContainerInstanceManagementClientImpl.class);
+
+ /**
+ * Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of
+ * the URI for every service call.
+ */
+ private final String subscriptionId;
+
+ /**
+ * 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.
+ */
+ public String getSubscriptionId() {
+ return this.subscriptionId;
+ }
+
+ /** server parameter. */
+ private final String endpoint;
+
+ /**
+ * Gets server parameter.
+ *
+ * @return the endpoint value.
+ */
+ public String getEndpoint() {
+ return this.endpoint;
+ }
+
+ /** Api Version. */
+ private final String apiVersion;
+
+ /**
+ * Gets Api Version.
+ *
+ * @return the apiVersion value.
+ */
+ public String getApiVersion() {
+ return this.apiVersion;
+ }
+
+ /** The HTTP pipeline to send requests through. */
+ private final HttpPipeline httpPipeline;
+
+ /**
+ * Gets The HTTP pipeline to send requests through.
+ *
+ * @return the httpPipeline value.
+ */
+ public HttpPipeline getHttpPipeline() {
+ return this.httpPipeline;
+ }
+
+ /** The serializer to serialize an object into a string. */
+ private final SerializerAdapter serializerAdapter;
+
+ /**
+ * Gets The serializer to serialize an object into a string.
+ *
+ * @return the serializerAdapter value.
+ */
+ SerializerAdapter getSerializerAdapter() {
+ return this.serializerAdapter;
+ }
+
+ /** The default poll interval for long-running operation. */
+ private final Duration defaultPollInterval;
+
+ /**
+ * Gets The default poll interval for long-running operation.
+ *
+ * @return the defaultPollInterval value.
+ */
+ public Duration getDefaultPollInterval() {
+ return this.defaultPollInterval;
+ }
+
+ /** The ContainerGroupsClient object to access its operations. */
+ private final ContainerGroupsClient containerGroups;
+
+ /**
+ * Gets the ContainerGroupsClient object to access its operations.
+ *
+ * @return the ContainerGroupsClient object.
+ */
+ public ContainerGroupsClient getContainerGroups() {
+ return this.containerGroups;
+ }
+
+ /** The OperationsClient object to access its operations. */
+ private final OperationsClient operations;
+
+ /**
+ * Gets the OperationsClient object to access its operations.
+ *
+ * @return the OperationsClient object.
+ */
+ public OperationsClient getOperations() {
+ return this.operations;
+ }
+
+ /** The LocationsClient object to access its operations. */
+ private final LocationsClient locations;
+
+ /**
+ * Gets the LocationsClient object to access its operations.
+ *
+ * @return the LocationsClient object.
+ */
+ public LocationsClient getLocations() {
+ return this.locations;
+ }
+
+ /** The ContainersClient object to access its operations. */
+ private final ContainersClient containers;
+
+ /**
+ * Gets the ContainersClient object to access its operations.
+ *
+ * @return the ContainersClient object.
+ */
+ public ContainersClient getContainers() {
+ return this.containers;
+ }
+
+ /**
+ * Initializes an instance of ContainerInstanceManagementClient client.
+ *
+ * @param httpPipeline The HTTP pipeline to send requests through.
+ * @param serializerAdapter The serializer to serialize an object into a string.
+ * @param defaultPollInterval The default poll interval for long-running operation.
+ * @param environment The Azure environment.
+ * @param subscriptionId Subscription credentials which uniquely identify Microsoft Azure subscription. The
+ * subscription ID forms part of the URI for every service call.
+ * @param endpoint server parameter.
+ */
+ ContainerInstanceManagementClientImpl(
+ HttpPipeline httpPipeline,
+ SerializerAdapter serializerAdapter,
+ Duration defaultPollInterval,
+ AzureEnvironment environment,
+ String subscriptionId,
+ String endpoint) {
+ this.httpPipeline = httpPipeline;
+ this.serializerAdapter = serializerAdapter;
+ this.defaultPollInterval = defaultPollInterval;
+ this.subscriptionId = subscriptionId;
+ this.endpoint = endpoint;
+ this.apiVersion = "2021-09-01";
+ this.containerGroups = new ContainerGroupsClientImpl(this);
+ this.operations = new OperationsClientImpl(this);
+ this.locations = new LocationsClientImpl(this);
+ this.containers = new ContainersClientImpl(this);
+ }
+
+ /**
+ * Gets default client context.
+ *
+ * @return the default client context.
+ */
+ public Context getContext() {
+ return Context.NONE;
+ }
+
+ /**
+ * Merges default client context with provided context.
+ *
+ * @param context the context to be merged with default client context.
+ * @return the merged context.
+ */
+ public Context mergeContext(Context context) {
+ for (Map.Entry