diff --git a/eng/versioning/version_client.txt b/eng/versioning/version_client.txt
index 3fe719778a20..a527ba930e75 100644
--- a/eng/versioning/version_client.txt
+++ b/eng/versioning/version_client.txt
@@ -285,6 +285,7 @@ com.azure.resourcemanager:azure-resourcemanager-labservices;1.0.0-beta.1;1.0.0-b
com.azure.resourcemanager:azure-resourcemanager-vmwarecloudsimple;1.0.0-beta.1;1.0.0-beta.2
com.azure.resourcemanager:azure-resourcemanager-managedapplications;1.0.0-beta.1;1.0.0-beta.2
com.azure.resourcemanager:azure-resourcemanager-videoanalyzer;1.0.0-beta.1;1.0.0-beta.2
+com.azure.resourcemanager:azure-resourcemanager-agfood;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 f3c7ab9c53b7..8279f5283503 100644
--- a/pom.xml
+++ b/pom.xml
@@ -668,6 +668,7 @@
eng/code-quality-reportseng/jacoco-test-coveragesdk/advisor
+ sdk/agfoodsdk/anomalydetectorsdk/apimanagementsdk/appconfiguration
diff --git a/sdk/agfood/azure-resourcemanager-agfood/CHANGELOG.md b/sdk/agfood/azure-resourcemanager-agfood/CHANGELOG.md
new file mode 100644
index 000000000000..83cd11347155
--- /dev/null
+++ b/sdk/agfood/azure-resourcemanager-agfood/CHANGELOG.md
@@ -0,0 +1,5 @@
+# Release History
+
+## 1.0.0-beta.1 (2021-05-07)
+
+- Azure Resource Manager Agfood client library for Java. This package contains Microsoft Azure SDK for Agfood Management SDK. APIs documentation for Azure AgFoodPlatform Resource Provider Service. Package tag package-2020-05-12-preview. 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/agfood/azure-resourcemanager-agfood/README.md b/sdk/agfood/azure-resourcemanager-agfood/README.md
new file mode 100644
index 000000000000..dc16e79c80d3
--- /dev/null
+++ b/sdk/agfood/azure-resourcemanager-agfood/README.md
@@ -0,0 +1,99 @@
+# Azure Resource Manager Agfood client library for Java
+
+Azure Resource Manager Agfood client library for Java.
+
+This package contains Microsoft Azure SDK for Agfood Management SDK. APIs documentation for Azure AgFoodPlatform Resource Provider Service. Package tag package-2020-05-12-preview. 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-agfood;current})
+```xml
+
+ com.azure.resourcemanager
+ azure-resourcemanager-agfood
+ 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();
+AgfoodManager manager = AgfoodManager
+ .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
+
+## Troubleshooting
+
+## Next steps
+
+## Contributing
+
+For details on contributing to this repository, see the [contributing guide](https://github.com/Azure/azure-sdk-for-java/blob/master/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/master/sdk/identity/azure-identity
+[azure_core_http_netty]: https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/core/azure-core-http-netty
+[authenticate]: https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/resourcemanager/docs/AUTH.md
+[design]: https://github.com/Azure/azure-sdk-for-java/blob/master/sdk/resourcemanager/docs/DESIGN.md
diff --git a/sdk/agfood/azure-resourcemanager-agfood/pom.xml b/sdk/agfood/azure-resourcemanager-agfood/pom.xml
new file mode 100644
index 000000000000..166a55ee51d8
--- /dev/null
+++ b/sdk/agfood/azure-resourcemanager-agfood/pom.xml
@@ -0,0 +1,67 @@
+
+ 4.0.0
+
+ com.azure
+ azure-client-sdk-parent
+ 1.7.0
+ ../../parents/azure-client-sdk-parent
+
+
+ com.azure.resourcemanager
+ azure-resourcemanager-agfood
+ 1.0.0-beta.1
+ jar
+
+ Microsoft Azure SDK for Agfood Management
+ This package contains Microsoft Azure SDK for Agfood Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. APIs documentation for Azure AgFoodPlatform Resource Provider Service. Package tag package-2020-05-12-preview.
+ 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.15.0
+
+
+ com.azure
+ azure-core-management
+ 1.2.1
+
+
+
+
+
+ org.jacoco
+ jacoco-maven-plugin
+ 0.8.5
+
+ true
+
+
+
+
+
diff --git a/sdk/agfood/azure-resourcemanager-agfood/src/main/java/com/azure/resourcemanager/agfood/AgfoodManager.java b/sdk/agfood/azure-resourcemanager-agfood/src/main/java/com/azure/resourcemanager/agfood/AgfoodManager.java
new file mode 100644
index 000000000000..bece40f9f484
--- /dev/null
+++ b/sdk/agfood/azure-resourcemanager-agfood/src/main/java/com/azure/resourcemanager/agfood/AgfoodManager.java
@@ -0,0 +1,251 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+package com.azure.resourcemanager.agfood;
+
+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.BearerTokenAuthenticationPolicy;
+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.profile.AzureProfile;
+import com.azure.core.util.Configuration;
+import com.azure.core.util.logging.ClientLogger;
+import com.azure.resourcemanager.agfood.fluent.AzureAgFoodPlatformRPService;
+import com.azure.resourcemanager.agfood.implementation.AzureAgFoodPlatformRPServiceBuilder;
+import com.azure.resourcemanager.agfood.implementation.ExtensionsImpl;
+import com.azure.resourcemanager.agfood.implementation.FarmBeatsModelsImpl;
+import com.azure.resourcemanager.agfood.implementation.LocationsImpl;
+import com.azure.resourcemanager.agfood.implementation.OperationsImpl;
+import com.azure.resourcemanager.agfood.models.Extensions;
+import com.azure.resourcemanager.agfood.models.FarmBeatsModels;
+import com.azure.resourcemanager.agfood.models.Locations;
+import com.azure.resourcemanager.agfood.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 AgfoodManager. APIs documentation for Azure AgFoodPlatform Resource Provider Service. */
+public final class AgfoodManager {
+ private Extensions extensions;
+
+ private FarmBeatsModels farmBeatsModels;
+
+ private Locations locations;
+
+ private Operations operations;
+
+ private final AzureAgFoodPlatformRPService clientObject;
+
+ private AgfoodManager(HttpPipeline httpPipeline, AzureProfile profile, Duration defaultPollInterval) {
+ Objects.requireNonNull(httpPipeline, "'httpPipeline' cannot be null.");
+ Objects.requireNonNull(profile, "'profile' cannot be null.");
+ this.clientObject =
+ new AzureAgFoodPlatformRPServiceBuilder()
+ .pipeline(httpPipeline)
+ .endpoint(profile.getEnvironment().getResourceManagerEndpoint())
+ .subscriptionId(profile.getSubscriptionId())
+ .defaultPollInterval(defaultPollInterval)
+ .buildClient();
+ }
+
+ /**
+ * Creates an instance of Agfood service API entry point.
+ *
+ * @param credential the credential to use.
+ * @param profile the Azure profile for client.
+ * @return the Agfood service API instance.
+ */
+ public static AgfoodManager 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 AgfoodManager with optional configuration.
+ *
+ * @return the Configurable instance allowing configurations.
+ */
+ public static Configurable configure() {
+ return new AgfoodManager.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 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;
+ }
+
+ /**
+ * 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 Agfood service API entry point.
+ *
+ * @param credential the credential to use.
+ * @param profile the Azure profile for client.
+ * @return the Agfood service API instance.
+ */
+ public AgfoodManager 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.agfood")
+ .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 (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 BearerTokenAuthenticationPolicy(
+ credential, profile.getEnvironment().getManagementEndpoint() + "/.default"));
+ 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 AgfoodManager(httpPipeline, profile, defaultPollInterval);
+ }
+ }
+
+ /** @return Resource collection API of Extensions. */
+ public Extensions extensions() {
+ if (this.extensions == null) {
+ this.extensions = new ExtensionsImpl(clientObject.getExtensions(), this);
+ }
+ return extensions;
+ }
+
+ /** @return Resource collection API of FarmBeatsModels. */
+ public FarmBeatsModels farmBeatsModels() {
+ if (this.farmBeatsModels == null) {
+ this.farmBeatsModels = new FarmBeatsModelsImpl(clientObject.getFarmBeatsModels(), this);
+ }
+ return farmBeatsModels;
+ }
+
+ /** @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 Operations. */
+ public Operations operations() {
+ if (this.operations == null) {
+ this.operations = new OperationsImpl(clientObject.getOperations(), this);
+ }
+ return operations;
+ }
+
+ /**
+ * @return Wrapped service client AzureAgFoodPlatformRPService providing direct access to the underlying
+ * auto-generated API implementation, based on Azure REST API.
+ */
+ public AzureAgFoodPlatformRPService serviceClient() {
+ return this.clientObject;
+ }
+}
diff --git a/sdk/agfood/azure-resourcemanager-agfood/src/main/java/com/azure/resourcemanager/agfood/fluent/AzureAgFoodPlatformRPService.java b/sdk/agfood/azure-resourcemanager-agfood/src/main/java/com/azure/resourcemanager/agfood/fluent/AzureAgFoodPlatformRPService.java
new file mode 100644
index 000000000000..1f4a832f73b9
--- /dev/null
+++ b/sdk/agfood/azure-resourcemanager-agfood/src/main/java/com/azure/resourcemanager/agfood/fluent/AzureAgFoodPlatformRPService.java
@@ -0,0 +1,74 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+package com.azure.resourcemanager.agfood.fluent;
+
+import com.azure.core.http.HttpPipeline;
+import java.time.Duration;
+
+/** The interface for AzureAgFoodPlatformRPService class. */
+public interface AzureAgFoodPlatformRPService {
+ /**
+ * Gets The ID of the target subscription.
+ *
+ * @return the subscriptionId value.
+ */
+ String getSubscriptionId();
+
+ /**
+ * Gets server parameter.
+ *
+ * @return the endpoint value.
+ */
+ String getEndpoint();
+
+ /**
+ * Gets Api Version.
+ *
+ * @return the apiVersion value.
+ */
+ String getApiVersion();
+
+ /**
+ * Gets The HTTP pipeline to send requests through.
+ *
+ * @return the httpPipeline value.
+ */
+ HttpPipeline getHttpPipeline();
+
+ /**
+ * Gets The default poll interval for long-running operation.
+ *
+ * @return the defaultPollInterval value.
+ */
+ Duration getDefaultPollInterval();
+
+ /**
+ * Gets the ExtensionsClient object to access its operations.
+ *
+ * @return the ExtensionsClient object.
+ */
+ ExtensionsClient getExtensions();
+
+ /**
+ * Gets the FarmBeatsModelsClient object to access its operations.
+ *
+ * @return the FarmBeatsModelsClient object.
+ */
+ FarmBeatsModelsClient getFarmBeatsModels();
+
+ /**
+ * Gets the LocationsClient object to access its operations.
+ *
+ * @return the LocationsClient object.
+ */
+ LocationsClient getLocations();
+
+ /**
+ * Gets the OperationsClient object to access its operations.
+ *
+ * @return the OperationsClient object.
+ */
+ OperationsClient getOperations();
+}
diff --git a/sdk/agfood/azure-resourcemanager-agfood/src/main/java/com/azure/resourcemanager/agfood/fluent/ExtensionsClient.java b/sdk/agfood/azure-resourcemanager-agfood/src/main/java/com/azure/resourcemanager/agfood/fluent/ExtensionsClient.java
new file mode 100644
index 000000000000..ca1db3af4262
--- /dev/null
+++ b/sdk/agfood/azure-resourcemanager-agfood/src/main/java/com/azure/resourcemanager/agfood/fluent/ExtensionsClient.java
@@ -0,0 +1,172 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+package com.azure.resourcemanager.agfood.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.util.Context;
+import com.azure.resourcemanager.agfood.fluent.models.ExtensionInner;
+
+/** An instance of this class provides access to all the operations defined in ExtensionsClient. */
+public interface ExtensionsClient {
+ /**
+ * Install extension.
+ *
+ * @param extensionId Id of extension resource.
+ * @param farmBeatsResourceName FarmBeats resource name.
+ * @param resourceGroupName The name of the resource group. The name is case insensitive.
+ * @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 extension resource.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ ExtensionInner create(String extensionId, String farmBeatsResourceName, String resourceGroupName);
+
+ /**
+ * Install extension.
+ *
+ * @param extensionId Id of extension resource.
+ * @param farmBeatsResourceName FarmBeats resource name.
+ * @param resourceGroupName The name of the resource group. The name is case insensitive.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.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 extension resource.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ Response createWithResponse(
+ String extensionId, String farmBeatsResourceName, String resourceGroupName, Context context);
+
+ /**
+ * Get installed extension details by extension id.
+ *
+ * @param extensionId Id of extension resource.
+ * @param farmBeatsResourceName FarmBeats resource name.
+ * @param resourceGroupName The name of the resource group. The name is case insensitive.
+ * @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 installed extension details by extension id.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ ExtensionInner get(String extensionId, String farmBeatsResourceName, String resourceGroupName);
+
+ /**
+ * Get installed extension details by extension id.
+ *
+ * @param extensionId Id of extension resource.
+ * @param farmBeatsResourceName FarmBeats resource name.
+ * @param resourceGroupName The name of the resource group. The name is case insensitive.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.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 installed extension details by extension id.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ Response getWithResponse(
+ String extensionId, String farmBeatsResourceName, String resourceGroupName, Context context);
+
+ /**
+ * Upgrade to latest extension.
+ *
+ * @param extensionId Id of extension resource.
+ * @param farmBeatsResourceName FarmBeats resource name.
+ * @param resourceGroupName The name of the resource group. The name is case insensitive.
+ * @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 extension resource.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ ExtensionInner update(String extensionId, String farmBeatsResourceName, String resourceGroupName);
+
+ /**
+ * Upgrade to latest extension.
+ *
+ * @param extensionId Id of extension resource.
+ * @param farmBeatsResourceName FarmBeats resource name.
+ * @param resourceGroupName The name of the resource group. The name is case insensitive.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.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 extension resource.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ Response updateWithResponse(
+ String extensionId, String farmBeatsResourceName, String resourceGroupName, Context context);
+
+ /**
+ * Uninstall extension.
+ *
+ * @param extensionId Id of extension resource.
+ * @param farmBeatsResourceName FarmBeats resource name.
+ * @param resourceGroupName The name of the resource group. The name is case insensitive.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ void delete(String extensionId, String farmBeatsResourceName, String resourceGroupName);
+
+ /**
+ * Uninstall extension.
+ *
+ * @param extensionId Id of extension resource.
+ * @param farmBeatsResourceName FarmBeats resource name.
+ * @param resourceGroupName The name of the resource group. The name is case insensitive.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.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 deleteWithResponse(
+ String extensionId, String farmBeatsResourceName, String resourceGroupName, Context context);
+
+ /**
+ * Get installed extensions details.
+ *
+ * @param resourceGroupName The name of the resource group. The name is case insensitive.
+ * @param farmBeatsResourceName FarmBeats resource name.
+ * @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 installed extensions details.
+ */
+ @ServiceMethod(returns = ReturnType.COLLECTION)
+ PagedIterable listByFarmBeats(String resourceGroupName, String farmBeatsResourceName);
+
+ /**
+ * Get installed extensions details.
+ *
+ * @param resourceGroupName The name of the resource group. The name is case insensitive.
+ * @param farmBeatsResourceName FarmBeats resource name.
+ * @param extensionId Id of extension resource.
+ * @param extensionCategory Category of extension (weather/sensor/satellite etc.).
+ * @param maxPageSize Maximum number of items needed (inclusive). Minimum = 10, Maximum = 1000, Default value = 50.
+ * @param skipToken Skip token for getting next set of results.
+ * @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 installed extensions details.
+ */
+ @ServiceMethod(returns = ReturnType.COLLECTION)
+ PagedIterable listByFarmBeats(
+ String resourceGroupName,
+ String farmBeatsResourceName,
+ String extensionId,
+ String extensionCategory,
+ Integer maxPageSize,
+ String skipToken,
+ Context context);
+}
diff --git a/sdk/agfood/azure-resourcemanager-agfood/src/main/java/com/azure/resourcemanager/agfood/fluent/FarmBeatsModelsClient.java b/sdk/agfood/azure-resourcemanager-agfood/src/main/java/com/azure/resourcemanager/agfood/fluent/FarmBeatsModelsClient.java
new file mode 100644
index 000000000000..50ecfa61d204
--- /dev/null
+++ b/sdk/agfood/azure-resourcemanager-agfood/src/main/java/com/azure/resourcemanager/agfood/fluent/FarmBeatsModelsClient.java
@@ -0,0 +1,182 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+package com.azure.resourcemanager.agfood.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.util.Context;
+import com.azure.resourcemanager.agfood.fluent.models.FarmBeatsInner;
+import com.azure.resourcemanager.agfood.models.FarmBeatsUpdateRequestModel;
+
+/** An instance of this class provides access to all the operations defined in FarmBeatsModelsClient. */
+public interface FarmBeatsModelsClient {
+ /**
+ * Get FarmBeats resource.
+ *
+ * @param resourceGroupName The name of the resource group. The name is case insensitive.
+ * @param farmBeatsResourceName FarmBeats resource name.
+ * @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 farmBeats resource.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ FarmBeatsInner getByResourceGroup(String resourceGroupName, String farmBeatsResourceName);
+
+ /**
+ * Get FarmBeats resource.
+ *
+ * @param resourceGroupName The name of the resource group. The name is case insensitive.
+ * @param farmBeatsResourceName FarmBeats resource name.
+ * @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 farmBeats resource.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ Response getByResourceGroupWithResponse(
+ String resourceGroupName, String farmBeatsResourceName, Context context);
+
+ /**
+ * Create or update FarmBeats resource.
+ *
+ * @param farmBeatsResourceName FarmBeats resource name.
+ * @param resourceGroupName The name of the resource group. The name is case insensitive.
+ * @param body FarmBeats resource create or update request object.
+ * @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 farmBeats ARM Resource.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ FarmBeatsInner createOrUpdate(String farmBeatsResourceName, String resourceGroupName, FarmBeatsInner body);
+
+ /**
+ * Create or update FarmBeats resource.
+ *
+ * @param farmBeatsResourceName FarmBeats resource name.
+ * @param resourceGroupName The name of the resource group. The name is case insensitive.
+ * @param body FarmBeats resource create or update request object.
+ * @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 farmBeats ARM Resource.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ Response createOrUpdateWithResponse(
+ String farmBeatsResourceName, String resourceGroupName, FarmBeatsInner body, Context context);
+
+ /**
+ * Update a FarmBeats resource.
+ *
+ * @param farmBeatsResourceName FarmBeats resource name.
+ * @param resourceGroupName The name of the resource group. The name is case insensitive.
+ * @param body Request object.
+ * @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 farmBeats ARM Resource.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ FarmBeatsInner update(String farmBeatsResourceName, String resourceGroupName, FarmBeatsUpdateRequestModel body);
+
+ /**
+ * Update a FarmBeats resource.
+ *
+ * @param farmBeatsResourceName FarmBeats resource name.
+ * @param resourceGroupName The name of the resource group. The name is case insensitive.
+ * @param body Request object.
+ * @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 farmBeats ARM Resource.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ Response updateWithResponse(
+ String farmBeatsResourceName, String resourceGroupName, FarmBeatsUpdateRequestModel body, Context context);
+
+ /**
+ * Delete a FarmBeats resource.
+ *
+ * @param resourceGroupName The name of the resource group. The name is case insensitive.
+ * @param farmBeatsResourceName FarmBeats resource name.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ void delete(String resourceGroupName, String farmBeatsResourceName);
+
+ /**
+ * Delete a FarmBeats resource.
+ *
+ * @param resourceGroupName The name of the resource group. The name is case insensitive.
+ * @param farmBeatsResourceName FarmBeats resource name.
+ * @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 deleteWithResponse(String resourceGroupName, String farmBeatsResourceName, Context context);
+
+ /**
+ * Lists the FarmBeats instances for a subscription.
+ *
+ * @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 paged response contains list of requested objects and a URL link to get the next set of results.
+ */
+ @ServiceMethod(returns = ReturnType.COLLECTION)
+ PagedIterable list();
+
+ /**
+ * Lists the FarmBeats instances for a subscription.
+ *
+ * @param maxPageSize Maximum number of items needed (inclusive). Minimum = 10, Maximum = 1000, Default value = 50.
+ * @param skipToken Skip token for getting next set of results.
+ * @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 paged response contains list of requested objects and a URL link to get the next set of results.
+ */
+ @ServiceMethod(returns = ReturnType.COLLECTION)
+ PagedIterable list(Integer maxPageSize, String skipToken, Context context);
+
+ /**
+ * Lists the FarmBeats instances for a resource group.
+ *
+ * @param resourceGroupName The name of the resource group. The name is case insensitive.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.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 paged response contains list of requested objects and a URL link to get the next set of results.
+ */
+ @ServiceMethod(returns = ReturnType.COLLECTION)
+ PagedIterable listByResourceGroup(String resourceGroupName);
+
+ /**
+ * Lists the FarmBeats instances for a resource group.
+ *
+ * @param resourceGroupName The name of the resource group. The name is case insensitive.
+ * @param maxPageSize Maximum number of items needed (inclusive). Minimum = 10, Maximum = 1000, Default value = 50.
+ * @param skipToken Continuation token for getting next set of results.
+ * @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 paged response contains list of requested objects and a URL link to get the next set of results.
+ */
+ @ServiceMethod(returns = ReturnType.COLLECTION)
+ PagedIterable listByResourceGroup(
+ String resourceGroupName, Integer maxPageSize, String skipToken, Context context);
+}
diff --git a/sdk/agfood/azure-resourcemanager-agfood/src/main/java/com/azure/resourcemanager/agfood/fluent/LocationsClient.java b/sdk/agfood/azure-resourcemanager-agfood/src/main/java/com/azure/resourcemanager/agfood/fluent/LocationsClient.java
new file mode 100644
index 000000000000..c2df4d5340e6
--- /dev/null
+++ b/sdk/agfood/azure-resourcemanager-agfood/src/main/java/com/azure/resourcemanager/agfood/fluent/LocationsClient.java
@@ -0,0 +1,41 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+package com.azure.resourcemanager.agfood.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.agfood.fluent.models.CheckNameAvailabilityResponseInner;
+import com.azure.resourcemanager.agfood.models.CheckNameAvailabilityRequest;
+
+/** An instance of this class provides access to all the operations defined in LocationsClient. */
+public interface LocationsClient {
+ /**
+ * Checks the name availability of the resource with requested resource name.
+ *
+ * @param body NameAvailabilityRequest object.
+ * @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 check availability result.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ CheckNameAvailabilityResponseInner checkNameAvailability(CheckNameAvailabilityRequest body);
+
+ /**
+ * Checks the name availability of the resource with requested resource name.
+ *
+ * @param body NameAvailabilityRequest object.
+ * @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 check availability result.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ Response checkNameAvailabilityWithResponse(
+ CheckNameAvailabilityRequest body, Context context);
+}
diff --git a/sdk/agfood/azure-resourcemanager-agfood/src/main/java/com/azure/resourcemanager/agfood/fluent/OperationsClient.java b/sdk/agfood/azure-resourcemanager-agfood/src/main/java/com/azure/resourcemanager/agfood/fluent/OperationsClient.java
new file mode 100644
index 000000000000..53587a96b1e7
--- /dev/null
+++ b/sdk/agfood/azure-resourcemanager-agfood/src/main/java/com/azure/resourcemanager/agfood/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.agfood.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.agfood.fluent.models.OperationInner;
+
+/** An instance of this class provides access to all the operations defined in OperationsClient. */
+public interface OperationsClient {
+ /**
+ * Lists the available operations of Microsoft.AgFoodPlatform resource provider.
+ *
+ * @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 REST API operations supported by an Azure Resource Provider.
+ */
+ @ServiceMethod(returns = ReturnType.COLLECTION)
+ PagedIterable list();
+
+ /**
+ * Lists the available operations of Microsoft.AgFoodPlatform resource provider.
+ *
+ * @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 REST API operations supported by an Azure Resource Provider.
+ */
+ @ServiceMethod(returns = ReturnType.COLLECTION)
+ PagedIterable list(Context context);
+}
diff --git a/sdk/agfood/azure-resourcemanager-agfood/src/main/java/com/azure/resourcemanager/agfood/fluent/models/CheckNameAvailabilityResponseInner.java b/sdk/agfood/azure-resourcemanager-agfood/src/main/java/com/azure/resourcemanager/agfood/fluent/models/CheckNameAvailabilityResponseInner.java
new file mode 100644
index 000000000000..c2e6a6230037
--- /dev/null
+++ b/sdk/agfood/azure-resourcemanager-agfood/src/main/java/com/azure/resourcemanager/agfood/fluent/models/CheckNameAvailabilityResponseInner.java
@@ -0,0 +1,103 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+package com.azure.resourcemanager.agfood.fluent.models;
+
+import com.azure.core.annotation.Fluent;
+import com.azure.core.util.logging.ClientLogger;
+import com.azure.resourcemanager.agfood.models.CheckNameAvailabilityReason;
+import com.fasterxml.jackson.annotation.JsonIgnore;
+import com.fasterxml.jackson.annotation.JsonProperty;
+
+/** The check availability result. */
+@Fluent
+public final class CheckNameAvailabilityResponseInner {
+ @JsonIgnore private final ClientLogger logger = new ClientLogger(CheckNameAvailabilityResponseInner.class);
+
+ /*
+ * Indicates if the resource name is available.
+ */
+ @JsonProperty(value = "nameAvailable")
+ private Boolean nameAvailable;
+
+ /*
+ * The reason why the given name is not available.
+ */
+ @JsonProperty(value = "reason")
+ private CheckNameAvailabilityReason reason;
+
+ /*
+ * Detailed reason why the given name is available.
+ */
+ @JsonProperty(value = "message")
+ private String message;
+
+ /**
+ * Get the nameAvailable property: Indicates if the resource name is available.
+ *
+ * @return the nameAvailable value.
+ */
+ public Boolean nameAvailable() {
+ return this.nameAvailable;
+ }
+
+ /**
+ * Set the nameAvailable property: Indicates if the resource name is available.
+ *
+ * @param nameAvailable the nameAvailable value to set.
+ * @return the CheckNameAvailabilityResponseInner object itself.
+ */
+ public CheckNameAvailabilityResponseInner withNameAvailable(Boolean nameAvailable) {
+ this.nameAvailable = nameAvailable;
+ return this;
+ }
+
+ /**
+ * Get the reason property: The reason why the given name is not available.
+ *
+ * @return the reason value.
+ */
+ public CheckNameAvailabilityReason reason() {
+ return this.reason;
+ }
+
+ /**
+ * Set the reason property: The reason why the given name is not available.
+ *
+ * @param reason the reason value to set.
+ * @return the CheckNameAvailabilityResponseInner object itself.
+ */
+ public CheckNameAvailabilityResponseInner withReason(CheckNameAvailabilityReason reason) {
+ this.reason = reason;
+ return this;
+ }
+
+ /**
+ * Get the message property: Detailed reason why the given name is available.
+ *
+ * @return the message value.
+ */
+ public String message() {
+ return this.message;
+ }
+
+ /**
+ * Set the message property: Detailed reason why the given name is available.
+ *
+ * @param message the message value to set.
+ * @return the CheckNameAvailabilityResponseInner object itself.
+ */
+ public CheckNameAvailabilityResponseInner withMessage(String message) {
+ this.message = message;
+ return this;
+ }
+
+ /**
+ * Validates the instance.
+ *
+ * @throws IllegalArgumentException thrown if the instance is not valid.
+ */
+ public void validate() {
+ }
+}
diff --git a/sdk/agfood/azure-resourcemanager-agfood/src/main/java/com/azure/resourcemanager/agfood/fluent/models/ExtensionInner.java b/sdk/agfood/azure-resourcemanager-agfood/src/main/java/com/azure/resourcemanager/agfood/fluent/models/ExtensionInner.java
new file mode 100644
index 000000000000..fba4ae1bb09e
--- /dev/null
+++ b/sdk/agfood/azure-resourcemanager-agfood/src/main/java/com/azure/resourcemanager/agfood/fluent/models/ExtensionInner.java
@@ -0,0 +1,133 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+package com.azure.resourcemanager.agfood.fluent.models;
+
+import com.azure.core.annotation.Immutable;
+import com.azure.core.annotation.JsonFlatten;
+import com.azure.core.management.ProxyResource;
+import com.azure.core.management.SystemData;
+import com.azure.core.util.logging.ClientLogger;
+import com.fasterxml.jackson.annotation.JsonIgnore;
+import com.fasterxml.jackson.annotation.JsonProperty;
+
+/** Extension resource. */
+@JsonFlatten
+@Immutable
+public class ExtensionInner extends ProxyResource {
+ @JsonIgnore private final ClientLogger logger = new ClientLogger(ExtensionInner.class);
+
+ /*
+ * Metadata pertaining to creation and last modification of the resource.
+ */
+ @JsonProperty(value = "systemData", access = JsonProperty.Access.WRITE_ONLY)
+ private SystemData systemData;
+
+ /*
+ * The ETag value to implement optimistic concurrency.
+ */
+ @JsonProperty(value = "eTag", access = JsonProperty.Access.WRITE_ONLY)
+ private String etag;
+
+ /*
+ * Extension Id.
+ */
+ @JsonProperty(value = "properties.extensionId", access = JsonProperty.Access.WRITE_ONLY)
+ private String extensionId;
+
+ /*
+ * Extension category. e.g. weather/sensor/satellite.
+ */
+ @JsonProperty(value = "properties.extensionCategory", access = JsonProperty.Access.WRITE_ONLY)
+ private String extensionCategory;
+
+ /*
+ * Installed extension version.
+ */
+ @JsonProperty(value = "properties.installedExtensionVersion", access = JsonProperty.Access.WRITE_ONLY)
+ private String installedExtensionVersion;
+
+ /*
+ * Extension auth link.
+ */
+ @JsonProperty(value = "properties.extensionAuthLink", access = JsonProperty.Access.WRITE_ONLY)
+ private String extensionAuthLink;
+
+ /*
+ * Extension api docs link.
+ */
+ @JsonProperty(value = "properties.extensionApiDocsLink", access = JsonProperty.Access.WRITE_ONLY)
+ private String extensionApiDocsLink;
+
+ /**
+ * Get the systemData property: Metadata pertaining to creation and last modification of the resource.
+ *
+ * @return the systemData value.
+ */
+ public SystemData systemData() {
+ return this.systemData;
+ }
+
+ /**
+ * Get the etag property: The ETag value to implement optimistic concurrency.
+ *
+ * @return the etag value.
+ */
+ public String etag() {
+ return this.etag;
+ }
+
+ /**
+ * Get the extensionId property: Extension Id.
+ *
+ * @return the extensionId value.
+ */
+ public String extensionId() {
+ return this.extensionId;
+ }
+
+ /**
+ * Get the extensionCategory property: Extension category. e.g. weather/sensor/satellite.
+ *
+ * @return the extensionCategory value.
+ */
+ public String extensionCategory() {
+ return this.extensionCategory;
+ }
+
+ /**
+ * Get the installedExtensionVersion property: Installed extension version.
+ *
+ * @return the installedExtensionVersion value.
+ */
+ public String installedExtensionVersion() {
+ return this.installedExtensionVersion;
+ }
+
+ /**
+ * Get the extensionAuthLink property: Extension auth link.
+ *
+ * @return the extensionAuthLink value.
+ */
+ public String extensionAuthLink() {
+ return this.extensionAuthLink;
+ }
+
+ /**
+ * Get the extensionApiDocsLink property: Extension api docs link.
+ *
+ * @return the extensionApiDocsLink value.
+ */
+ public String extensionApiDocsLink() {
+ return this.extensionApiDocsLink;
+ }
+
+ /**
+ * Validates the instance.
+ *
+ * @throws IllegalArgumentException thrown if the instance is not valid.
+ */
+ public void validate() {
+ }
+}
diff --git a/sdk/agfood/azure-resourcemanager-agfood/src/main/java/com/azure/resourcemanager/agfood/fluent/models/FarmBeatsInner.java b/sdk/agfood/azure-resourcemanager-agfood/src/main/java/com/azure/resourcemanager/agfood/fluent/models/FarmBeatsInner.java
new file mode 100644
index 000000000000..e45eeaedb545
--- /dev/null
+++ b/sdk/agfood/azure-resourcemanager-agfood/src/main/java/com/azure/resourcemanager/agfood/fluent/models/FarmBeatsInner.java
@@ -0,0 +1,89 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+package com.azure.resourcemanager.agfood.fluent.models;
+
+import com.azure.core.annotation.Immutable;
+import com.azure.core.annotation.JsonFlatten;
+import com.azure.core.management.Resource;
+import com.azure.core.management.SystemData;
+import com.azure.core.util.logging.ClientLogger;
+import com.azure.resourcemanager.agfood.models.ProvisioningState;
+import com.fasterxml.jackson.annotation.JsonIgnore;
+import com.fasterxml.jackson.annotation.JsonProperty;
+import java.util.Map;
+
+/** FarmBeats ARM Resource. */
+@JsonFlatten
+@Immutable
+public class FarmBeatsInner extends Resource {
+ @JsonIgnore private final ClientLogger logger = new ClientLogger(FarmBeatsInner.class);
+
+ /*
+ * Metadata pertaining to creation and last modification of the resource.
+ */
+ @JsonProperty(value = "systemData", access = JsonProperty.Access.WRITE_ONLY)
+ private SystemData systemData;
+
+ /*
+ * Uri of the FarmBeats instance.
+ */
+ @JsonProperty(value = "properties.instanceUri", access = JsonProperty.Access.WRITE_ONLY)
+ private String instanceUri;
+
+ /*
+ * FarmBeats instance provisioning state.
+ */
+ @JsonProperty(value = "properties.provisioningState", access = JsonProperty.Access.WRITE_ONLY)
+ private ProvisioningState provisioningState;
+
+ /**
+ * Get the systemData property: Metadata pertaining to creation and last modification of the resource.
+ *
+ * @return the systemData value.
+ */
+ public SystemData systemData() {
+ return this.systemData;
+ }
+
+ /**
+ * Get the instanceUri property: Uri of the FarmBeats instance.
+ *
+ * @return the instanceUri value.
+ */
+ public String instanceUri() {
+ return this.instanceUri;
+ }
+
+ /**
+ * Get the provisioningState property: FarmBeats instance provisioning state.
+ *
+ * @return the provisioningState value.
+ */
+ public ProvisioningState provisioningState() {
+ return this.provisioningState;
+ }
+
+ /** {@inheritDoc} */
+ @Override
+ public FarmBeatsInner withLocation(String location) {
+ super.withLocation(location);
+ return this;
+ }
+
+ /** {@inheritDoc} */
+ @Override
+ public FarmBeatsInner withTags(Map tags) {
+ super.withTags(tags);
+ return this;
+ }
+
+ /**
+ * Validates the instance.
+ *
+ * @throws IllegalArgumentException thrown if the instance is not valid.
+ */
+ public void validate() {
+ }
+}
diff --git a/sdk/agfood/azure-resourcemanager-agfood/src/main/java/com/azure/resourcemanager/agfood/fluent/models/OperationInner.java b/sdk/agfood/azure-resourcemanager-agfood/src/main/java/com/azure/resourcemanager/agfood/fluent/models/OperationInner.java
new file mode 100644
index 000000000000..a6797a26b74f
--- /dev/null
+++ b/sdk/agfood/azure-resourcemanager-agfood/src/main/java/com/azure/resourcemanager/agfood/fluent/models/OperationInner.java
@@ -0,0 +1,125 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+package com.azure.resourcemanager.agfood.fluent.models;
+
+import com.azure.core.annotation.Fluent;
+import com.azure.core.util.logging.ClientLogger;
+import com.azure.resourcemanager.agfood.models.ActionType;
+import com.azure.resourcemanager.agfood.models.OperationDisplay;
+import com.azure.resourcemanager.agfood.models.Origin;
+import com.fasterxml.jackson.annotation.JsonIgnore;
+import com.fasterxml.jackson.annotation.JsonProperty;
+
+/** Details of a REST API operation, returned from the Resource Provider Operations API. */
+@Fluent
+public final class OperationInner {
+ @JsonIgnore private final ClientLogger logger = new ClientLogger(OperationInner.class);
+
+ /*
+ * The name of the operation, as per Resource-Based Access Control (RBAC).
+ * Examples: "Microsoft.Compute/virtualMachines/write",
+ * "Microsoft.Compute/virtualMachines/capture/action"
+ */
+ @JsonProperty(value = "name", access = JsonProperty.Access.WRITE_ONLY)
+ private String name;
+
+ /*
+ * Whether the operation applies to data-plane. This is "true" for
+ * data-plane operations and "false" for ARM/control-plane operations.
+ */
+ @JsonProperty(value = "isDataAction", access = JsonProperty.Access.WRITE_ONLY)
+ private Boolean isDataAction;
+
+ /*
+ * Localized display information for this particular operation.
+ */
+ @JsonProperty(value = "display")
+ private OperationDisplay display;
+
+ /*
+ * The intended executor of the operation; as in Resource Based Access
+ * Control (RBAC) and audit logs UX. Default value is "user,system"
+ */
+ @JsonProperty(value = "origin", access = JsonProperty.Access.WRITE_ONLY)
+ private Origin origin;
+
+ /*
+ * Enum. Indicates the action type. "Internal" refers to actions that are
+ * for internal only APIs.
+ */
+ @JsonProperty(value = "actionType", access = JsonProperty.Access.WRITE_ONLY)
+ private ActionType actionType;
+
+ /**
+ * Get the name property: The name of the operation, as per Resource-Based Access Control (RBAC). Examples:
+ * "Microsoft.Compute/virtualMachines/write", "Microsoft.Compute/virtualMachines/capture/action".
+ *
+ * @return the name value.
+ */
+ public String name() {
+ return this.name;
+ }
+
+ /**
+ * Get the isDataAction property: Whether the operation applies to data-plane. This is "true" for data-plane
+ * operations and "false" for ARM/control-plane operations.
+ *
+ * @return the isDataAction value.
+ */
+ public Boolean isDataAction() {
+ return this.isDataAction;
+ }
+
+ /**
+ * Get the display property: Localized display information for this particular operation.
+ *
+ * @return the display value.
+ */
+ public OperationDisplay display() {
+ return this.display;
+ }
+
+ /**
+ * Set the display property: Localized display information for this particular 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 origin property: The intended executor of the operation; as in Resource Based Access Control (RBAC) and
+ * audit logs UX. Default value is "user,system".
+ *
+ * @return the origin value.
+ */
+ public Origin origin() {
+ return this.origin;
+ }
+
+ /**
+ * Get the actionType property: Enum. Indicates the action type. "Internal" refers to actions that are for internal
+ * only APIs.
+ *
+ * @return the actionType value.
+ */
+ public ActionType actionType() {
+ return this.actionType;
+ }
+
+ /**
+ * Validates the instance.
+ *
+ * @throws IllegalArgumentException thrown if the instance is not valid.
+ */
+ public void validate() {
+ if (display() != null) {
+ display().validate();
+ }
+ }
+}
diff --git a/sdk/agfood/azure-resourcemanager-agfood/src/main/java/com/azure/resourcemanager/agfood/fluent/models/package-info.java b/sdk/agfood/azure-resourcemanager-agfood/src/main/java/com/azure/resourcemanager/agfood/fluent/models/package-info.java
new file mode 100644
index 000000000000..3719d8a5d44e
--- /dev/null
+++ b/sdk/agfood/azure-resourcemanager-agfood/src/main/java/com/azure/resourcemanager/agfood/fluent/models/package-info.java
@@ -0,0 +1,9 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+/**
+ * Package containing the inner data models for AzureAgFoodPlatformRPService. APIs documentation for Azure
+ * AgFoodPlatform Resource Provider Service.
+ */
+package com.azure.resourcemanager.agfood.fluent.models;
diff --git a/sdk/agfood/azure-resourcemanager-agfood/src/main/java/com/azure/resourcemanager/agfood/fluent/package-info.java b/sdk/agfood/azure-resourcemanager-agfood/src/main/java/com/azure/resourcemanager/agfood/fluent/package-info.java
new file mode 100644
index 000000000000..9d5536c11562
--- /dev/null
+++ b/sdk/agfood/azure-resourcemanager-agfood/src/main/java/com/azure/resourcemanager/agfood/fluent/package-info.java
@@ -0,0 +1,9 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+/**
+ * Package containing the service clients for AzureAgFoodPlatformRPService. APIs documentation for Azure AgFoodPlatform
+ * Resource Provider Service.
+ */
+package com.azure.resourcemanager.agfood.fluent;
diff --git a/sdk/agfood/azure-resourcemanager-agfood/src/main/java/com/azure/resourcemanager/agfood/implementation/AzureAgFoodPlatformRPServiceBuilder.java b/sdk/agfood/azure-resourcemanager-agfood/src/main/java/com/azure/resourcemanager/agfood/implementation/AzureAgFoodPlatformRPServiceBuilder.java
new file mode 100644
index 000000000000..ee9e1f866241
--- /dev/null
+++ b/sdk/agfood/azure-resourcemanager-agfood/src/main/java/com/azure/resourcemanager/agfood/implementation/AzureAgFoodPlatformRPServiceBuilder.java
@@ -0,0 +1,146 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+package com.azure.resourcemanager.agfood.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 AzureAgFoodPlatformRPServiceImpl type. */
+@ServiceClientBuilder(serviceClients = {AzureAgFoodPlatformRPServiceImpl.class})
+public final class AzureAgFoodPlatformRPServiceBuilder {
+ /*
+ * The ID of the target subscription.
+ */
+ private String subscriptionId;
+
+ /**
+ * Sets The ID of the target subscription.
+ *
+ * @param subscriptionId the subscriptionId value.
+ * @return the AzureAgFoodPlatformRPServiceBuilder.
+ */
+ public AzureAgFoodPlatformRPServiceBuilder subscriptionId(String subscriptionId) {
+ this.subscriptionId = subscriptionId;
+ return this;
+ }
+
+ /*
+ * server parameter
+ */
+ private String endpoint;
+
+ /**
+ * Sets server parameter.
+ *
+ * @param endpoint the endpoint value.
+ * @return the AzureAgFoodPlatformRPServiceBuilder.
+ */
+ public AzureAgFoodPlatformRPServiceBuilder 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 AzureAgFoodPlatformRPServiceBuilder.
+ */
+ public AzureAgFoodPlatformRPServiceBuilder 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 AzureAgFoodPlatformRPServiceBuilder.
+ */
+ public AzureAgFoodPlatformRPServiceBuilder 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 AzureAgFoodPlatformRPServiceBuilder.
+ */
+ public AzureAgFoodPlatformRPServiceBuilder 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 AzureAgFoodPlatformRPServiceBuilder.
+ */
+ public AzureAgFoodPlatformRPServiceBuilder serializerAdapter(SerializerAdapter serializerAdapter) {
+ this.serializerAdapter = serializerAdapter;
+ return this;
+ }
+
+ /**
+ * Builds an instance of AzureAgFoodPlatformRPServiceImpl with the provided parameters.
+ *
+ * @return an instance of AzureAgFoodPlatformRPServiceImpl.
+ */
+ public AzureAgFoodPlatformRPServiceImpl 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();
+ }
+ AzureAgFoodPlatformRPServiceImpl client =
+ new AzureAgFoodPlatformRPServiceImpl(
+ pipeline, serializerAdapter, defaultPollInterval, environment, subscriptionId, endpoint);
+ return client;
+ }
+}
diff --git a/sdk/agfood/azure-resourcemanager-agfood/src/main/java/com/azure/resourcemanager/agfood/implementation/AzureAgFoodPlatformRPServiceImpl.java b/sdk/agfood/azure-resourcemanager-agfood/src/main/java/com/azure/resourcemanager/agfood/implementation/AzureAgFoodPlatformRPServiceImpl.java
new file mode 100644
index 000000000000..fd134eecd124
--- /dev/null
+++ b/sdk/agfood/azure-resourcemanager-agfood/src/main/java/com/azure/resourcemanager/agfood/implementation/AzureAgFoodPlatformRPServiceImpl.java
@@ -0,0 +1,335 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+package com.azure.resourcemanager.agfood.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.agfood.fluent.AzureAgFoodPlatformRPService;
+import com.azure.resourcemanager.agfood.fluent.ExtensionsClient;
+import com.azure.resourcemanager.agfood.fluent.FarmBeatsModelsClient;
+import com.azure.resourcemanager.agfood.fluent.LocationsClient;
+import com.azure.resourcemanager.agfood.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 AzureAgFoodPlatformRPServiceImpl type. */
+@ServiceClient(builder = AzureAgFoodPlatformRPServiceBuilder.class)
+public final class AzureAgFoodPlatformRPServiceImpl implements AzureAgFoodPlatformRPService {
+ private final ClientLogger logger = new ClientLogger(AzureAgFoodPlatformRPServiceImpl.class);
+
+ /** The ID of the target subscription. */
+ private final String subscriptionId;
+
+ /**
+ * Gets The ID of the target subscription.
+ *
+ * @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 ExtensionsClient object to access its operations. */
+ private final ExtensionsClient extensions;
+
+ /**
+ * Gets the ExtensionsClient object to access its operations.
+ *
+ * @return the ExtensionsClient object.
+ */
+ public ExtensionsClient getExtensions() {
+ return this.extensions;
+ }
+
+ /** The FarmBeatsModelsClient object to access its operations. */
+ private final FarmBeatsModelsClient farmBeatsModels;
+
+ /**
+ * Gets the FarmBeatsModelsClient object to access its operations.
+ *
+ * @return the FarmBeatsModelsClient object.
+ */
+ public FarmBeatsModelsClient getFarmBeatsModels() {
+ return this.farmBeatsModels;
+ }
+
+ /** 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 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;
+ }
+
+ /**
+ * Initializes an instance of AzureAgFoodPlatformRPService 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 The ID of the target subscription.
+ * @param endpoint server parameter.
+ */
+ AzureAgFoodPlatformRPServiceImpl(
+ 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 = "2020-05-12-preview";
+ this.extensions = new ExtensionsClientImpl(this);
+ this.farmBeatsModels = new FarmBeatsModelsClientImpl(this);
+ this.locations = new LocationsClientImpl(this);
+ this.operations = new OperationsClientImpl(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