diff --git a/eng/versioning/version_client.txt b/eng/versioning/version_client.txt
index 7f1506e5dae80..7240179ef9747 100644
--- a/eng/versioning/version_client.txt
+++ b/eng/versioning/version_client.txt
@@ -339,6 +339,7 @@ com.azure.resourcemanager:azure-resourcemanager-securityinsights;1.0.0-beta.1;1.
com.azure.resourcemanager:azure-resourcemanager-oep;1.0.0-beta.1;1.0.0-beta.2
com.azure.resourcemanager:azure-resourcemanager-dnsresolver;1.0.0-beta.1;1.0.0-beta.2
com.azure.resourcemanager:azure-resourcemanager-mobilenetwork;1.0.0-beta.1;1.0.0-beta.2
+com.azure.resourcemanager:azure-resourcemanager-servicelinker;1.0.0-beta.1;1.0.0-beta.1
com.azure.tools:azure-sdk-archetype;1.0.0;1.0.0
com.azure.tools:azure-sdk-build-tool;1.0.0-beta.1;1.0.0-beta.1
diff --git a/pom.xml b/pom.xml
index 0ce586ceb6e74..8bb0ccc7a5ccb 100644
--- a/pom.xml
+++ b/pom.xml
@@ -957,6 +957,7 @@
sdk/securityinsights
sdk/servicebus
sdk/servicefabric
+ sdk/servicelinker
sdk/signalr
sdk/spring
sdk/sqlvirtualmachine
diff --git a/sdk/servicelinker/azure-resourcemanager-servicelinker/CHANGELOG.md b/sdk/servicelinker/azure-resourcemanager-servicelinker/CHANGELOG.md
new file mode 100644
index 0000000000000..e48ca993cbcca
--- /dev/null
+++ b/sdk/servicelinker/azure-resourcemanager-servicelinker/CHANGELOG.md
@@ -0,0 +1,5 @@
+# Release History
+
+## 1.0.0-beta.1 (2022-03-14)
+
+- Azure Resource Manager servicelinker client library for Java. This package contains Microsoft Azure SDK for servicelinker Management SDK. Microsoft.ServiceLinker provider. Package tag package-2022-01-01-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/servicelinker/azure-resourcemanager-servicelinker/README.md b/sdk/servicelinker/azure-resourcemanager-servicelinker/README.md
new file mode 100644
index 0000000000000..94096a8321ad9
--- /dev/null
+++ b/sdk/servicelinker/azure-resourcemanager-servicelinker/README.md
@@ -0,0 +1,102 @@
+# Azure Resource Manager servicelinker client library for Java
+
+Azure Resource Manager servicelinker client library for Java.
+
+This package contains Microsoft Azure SDK for servicelinker Management SDK. Microsoft.ServiceLinker provider. Package tag package-2022-01-01-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-servicelinker;current})
+```xml
+
+ com.azure.resourcemanager
+ azure-resourcemanager-servicelinker
+ 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();
+ServicelinkerManager manager = ServicelinkerManager
+ .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/servicelinker/azure-resourcemanager-servicelinker/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/servicelinker/azure-resourcemanager-servicelinker/SAMPLE.md b/sdk/servicelinker/azure-resourcemanager-servicelinker/SAMPLE.md
new file mode 100644
index 0000000000000..ddb35cfcd0e1d
--- /dev/null
+++ b/sdk/servicelinker/azure-resourcemanager-servicelinker/SAMPLE.md
@@ -0,0 +1,269 @@
+# Code snippets and samples
+
+
+## Linker
+
+- [CreateOrUpdate](#linker_createorupdate)
+- [Delete](#linker_delete)
+- [Get](#linker_get)
+- [List](#linker_list)
+- [ListConfigurations](#linker_listconfigurations)
+- [Update](#linker_update)
+- [Validate](#linker_validate)
+
+## Operations
+
+- [List](#operations_list)
+### Linker_CreateOrUpdate
+
+```java
+import com.azure.resourcemanager.servicelinker.models.AzureResource;
+import com.azure.resourcemanager.servicelinker.models.SecretAuthInfo;
+import com.azure.resourcemanager.servicelinker.models.SecretStore;
+import com.azure.resourcemanager.servicelinker.models.VNetSolution;
+import com.azure.resourcemanager.servicelinker.models.VNetSolutionType;
+
+/** Samples for Linker CreateOrUpdate. */
+public final class LinkerCreateOrUpdateSamples {
+ /*
+ * x-ms-original-file: specification/servicelinker/resource-manager/Microsoft.ServiceLinker/preview/2022-01-01-preview/examples/PutLinkWithServiceEndpoint.json
+ */
+ /**
+ * Sample code: PutLinkWithServiceEndpoint.
+ *
+ * @param manager Entry point to ServicelinkerManager.
+ */
+ public static void putLinkWithServiceEndpoint(
+ com.azure.resourcemanager.servicelinker.ServicelinkerManager manager) {
+ manager
+ .linkers()
+ .define("linkName")
+ .withExistingResourceUri(
+ "subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Web/sites/test-app")
+ .withTargetService(
+ new AzureResource()
+ .withId(
+ "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.DocumentDb/databaseAccounts/test-acc/mongodbDatabases/test-db"))
+ .withAuthInfo(new SecretAuthInfo().withName("name").withSecret("secret"))
+ .withVNetSolution(new VNetSolution().withType(VNetSolutionType.SERVICE_ENDPOINT))
+ .withSecretStore(
+ new SecretStore()
+ .withKeyVaultId(
+ "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.KeyVault/vaults/test-kv"))
+ .create();
+ }
+
+ /*
+ * x-ms-original-file: specification/servicelinker/resource-manager/Microsoft.ServiceLinker/preview/2022-01-01-preview/examples/PutLink.json
+ */
+ /**
+ * Sample code: PutLink.
+ *
+ * @param manager Entry point to ServicelinkerManager.
+ */
+ public static void putLink(com.azure.resourcemanager.servicelinker.ServicelinkerManager manager) {
+ manager
+ .linkers()
+ .define("linkName")
+ .withExistingResourceUri(
+ "subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Web/sites/test-app")
+ .withTargetService(
+ new AzureResource()
+ .withId(
+ "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.DocumentDb/databaseAccounts/test-acc/mongodbDatabases/test-db"))
+ .withAuthInfo(new SecretAuthInfo().withName("name").withSecret("secret"))
+ .create();
+ }
+}
+```
+
+### Linker_Delete
+
+```java
+import com.azure.core.util.Context;
+
+/** Samples for Linker Delete. */
+public final class LinkerDeleteSamples {
+ /*
+ * x-ms-original-file: specification/servicelinker/resource-manager/Microsoft.ServiceLinker/preview/2022-01-01-preview/examples/DeleteLink.json
+ */
+ /**
+ * Sample code: DeleteLink.
+ *
+ * @param manager Entry point to ServicelinkerManager.
+ */
+ public static void deleteLink(com.azure.resourcemanager.servicelinker.ServicelinkerManager manager) {
+ manager
+ .linkers()
+ .delete(
+ "subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Web/sites/test-app",
+ "linkName",
+ Context.NONE);
+ }
+}
+```
+
+### Linker_Get
+
+```java
+import com.azure.core.util.Context;
+
+/** Samples for Linker Get. */
+public final class LinkerGetSamples {
+ /*
+ * x-ms-original-file: specification/servicelinker/resource-manager/Microsoft.ServiceLinker/preview/2022-01-01-preview/examples/Link.json
+ */
+ /**
+ * Sample code: Link.
+ *
+ * @param manager Entry point to ServicelinkerManager.
+ */
+ public static void link(com.azure.resourcemanager.servicelinker.ServicelinkerManager manager) {
+ manager
+ .linkers()
+ .getWithResponse(
+ "subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Web/sites/test-app",
+ "linkName",
+ Context.NONE);
+ }
+}
+```
+
+### Linker_List
+
+```java
+import com.azure.core.util.Context;
+
+/** Samples for Linker List. */
+public final class LinkerListSamples {
+ /*
+ * x-ms-original-file: specification/servicelinker/resource-manager/Microsoft.ServiceLinker/preview/2022-01-01-preview/examples/LinkList.json
+ */
+ /**
+ * Sample code: LinkList.
+ *
+ * @param manager Entry point to ServicelinkerManager.
+ */
+ public static void linkList(com.azure.resourcemanager.servicelinker.ServicelinkerManager manager) {
+ manager
+ .linkers()
+ .list(
+ "subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Web/sites/test-app",
+ Context.NONE);
+ }
+}
+```
+
+### Linker_ListConfigurations
+
+```java
+import com.azure.core.util.Context;
+
+/** Samples for Linker ListConfigurations. */
+public final class LinkerListConfigurationsSamples {
+ /*
+ * x-ms-original-file: specification/servicelinker/resource-manager/Microsoft.ServiceLinker/preview/2022-01-01-preview/examples/GetConfigurations.json
+ */
+ /**
+ * Sample code: GetConfiguration.
+ *
+ * @param manager Entry point to ServicelinkerManager.
+ */
+ public static void getConfiguration(com.azure.resourcemanager.servicelinker.ServicelinkerManager manager) {
+ manager
+ .linkers()
+ .listConfigurationsWithResponse(
+ "subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Web/sites/test-app",
+ "linkName",
+ Context.NONE);
+ }
+}
+```
+
+### Linker_Update
+
+```java
+import com.azure.core.util.Context;
+import com.azure.resourcemanager.servicelinker.models.AzureResource;
+import com.azure.resourcemanager.servicelinker.models.LinkerResource;
+import com.azure.resourcemanager.servicelinker.models.ServicePrincipalSecretAuthInfo;
+
+/** Samples for Linker Update. */
+public final class LinkerUpdateSamples {
+ /*
+ * x-ms-original-file: specification/servicelinker/resource-manager/Microsoft.ServiceLinker/preview/2022-01-01-preview/examples/PatchLink.json
+ */
+ /**
+ * Sample code: PatchLink.
+ *
+ * @param manager Entry point to ServicelinkerManager.
+ */
+ public static void patchLink(com.azure.resourcemanager.servicelinker.ServicelinkerManager manager) {
+ LinkerResource resource =
+ manager
+ .linkers()
+ .getWithResponse(
+ "subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Web/sites/test-app",
+ "linkName",
+ Context.NONE)
+ .getValue();
+ resource
+ .update()
+ .withTargetService(
+ new AzureResource()
+ .withId(
+ "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.DocumentDb/databaseAccounts/test-acc/mongodbDatabases/test-db"))
+ .withAuthInfo(
+ new ServicePrincipalSecretAuthInfo().withClientId("name").withPrincipalId("id").withSecret("secret"))
+ .apply();
+ }
+}
+```
+
+### Linker_Validate
+
+```java
+import com.azure.core.util.Context;
+
+/** Samples for Linker Validate. */
+public final class LinkerValidateSamples {
+ /*
+ * x-ms-original-file: specification/servicelinker/resource-manager/Microsoft.ServiceLinker/preview/2022-01-01-preview/examples/ValidateLinkSuccess.json
+ */
+ /**
+ * Sample code: ValidateLinkSuccess.
+ *
+ * @param manager Entry point to ServicelinkerManager.
+ */
+ public static void validateLinkSuccess(com.azure.resourcemanager.servicelinker.ServicelinkerManager manager) {
+ manager
+ .linkers()
+ .validate(
+ "subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Microsoft.Web/sites/test-app",
+ "linkName",
+ Context.NONE);
+ }
+}
+```
+
+### Operations_List
+
+```java
+import com.azure.core.util.Context;
+
+/** Samples for Operations List. */
+public final class OperationsListSamples {
+ /*
+ * x-ms-original-file: specification/servicelinker/resource-manager/Microsoft.ServiceLinker/preview/2022-01-01-preview/examples/OperationsList.json
+ */
+ /**
+ * Sample code: GetConfiguration.
+ *
+ * @param manager Entry point to ServicelinkerManager.
+ */
+ public static void getConfiguration(com.azure.resourcemanager.servicelinker.ServicelinkerManager manager) {
+ manager.operations().list(Context.NONE);
+ }
+}
+```
+
diff --git a/sdk/servicelinker/azure-resourcemanager-servicelinker/pom.xml b/sdk/servicelinker/azure-resourcemanager-servicelinker/pom.xml
new file mode 100644
index 0000000000000..a7bebfe9c4acf
--- /dev/null
+++ b/sdk/servicelinker/azure-resourcemanager-servicelinker/pom.xml
@@ -0,0 +1,55 @@
+
+ 4.0.0
+
+ com.azure
+ azure-client-sdk-parent
+ 1.7.0
+ ../../parents/azure-client-sdk-parent
+
+
+ com.azure.resourcemanager
+ azure-resourcemanager-servicelinker
+ 1.0.0-beta.1
+ jar
+
+ Microsoft Azure SDK for servicelinker Management
+ This package contains Microsoft Azure SDK for servicelinker Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Microsoft.ServiceLinker provider. Package tag package-2022-01-01-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
+ true
+
+
+
+ com.azure
+ azure-core
+ 1.26.0
+
+
+ com.azure
+ azure-core-management
+ 1.5.3
+
+
+
diff --git a/sdk/servicelinker/azure-resourcemanager-servicelinker/src/main/java/com/azure/resourcemanager/servicelinker/ServicelinkerManager.java b/sdk/servicelinker/azure-resourcemanager-servicelinker/src/main/java/com/azure/resourcemanager/servicelinker/ServicelinkerManager.java
new file mode 100644
index 0000000000000..a66579dd998e7
--- /dev/null
+++ b/sdk/servicelinker/azure-resourcemanager-servicelinker/src/main/java/com/azure/resourcemanager/servicelinker/ServicelinkerManager.java
@@ -0,0 +1,255 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+package com.azure.resourcemanager.servicelinker;
+
+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.HttpPipelinePosition;
+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.servicelinker.fluent.MicrosoftServiceLinker;
+import com.azure.resourcemanager.servicelinker.implementation.LinkersImpl;
+import com.azure.resourcemanager.servicelinker.implementation.MicrosoftServiceLinkerBuilder;
+import com.azure.resourcemanager.servicelinker.implementation.OperationsImpl;
+import com.azure.resourcemanager.servicelinker.models.Linkers;
+import com.azure.resourcemanager.servicelinker.models.Operations;
+import java.time.Duration;
+import java.time.temporal.ChronoUnit;
+import java.util.ArrayList;
+import java.util.List;
+import java.util.Objects;
+import java.util.stream.Collectors;
+
+/** Entry point to ServicelinkerManager. Microsoft.ServiceLinker provider. */
+public final class ServicelinkerManager {
+ private Linkers linkers;
+
+ private Operations operations;
+
+ private final MicrosoftServiceLinker clientObject;
+
+ private ServicelinkerManager(HttpPipeline httpPipeline, AzureProfile profile, Duration defaultPollInterval) {
+ Objects.requireNonNull(httpPipeline, "'httpPipeline' cannot be null.");
+ Objects.requireNonNull(profile, "'profile' cannot be null.");
+ this.clientObject =
+ new MicrosoftServiceLinkerBuilder()
+ .pipeline(httpPipeline)
+ .endpoint(profile.getEnvironment().getResourceManagerEndpoint())
+ .defaultPollInterval(defaultPollInterval)
+ .buildClient();
+ }
+
+ /**
+ * Creates an instance of servicelinker service API entry point.
+ *
+ * @param credential the credential to use.
+ * @param profile the Azure profile for client.
+ * @return the servicelinker service API instance.
+ */
+ public static ServicelinkerManager 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 ServicelinkerManager with optional configuration.
+ *
+ * @return the Configurable instance allowing configurations.
+ */
+ public static Configurable configure() {
+ return new ServicelinkerManager.Configurable();
+ }
+
+ /** The Configurable allowing configurations to be set. */
+ public static final class Configurable {
+ private static 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, "'defaultPollInterval' cannot be null.");
+ if (this.defaultPollInterval.isNegative()) {
+ throw LOGGER
+ .logExceptionAsError(new IllegalArgumentException("'defaultPollInterval' cannot be negative"));
+ }
+ return this;
+ }
+
+ /**
+ * Creates an instance of servicelinker service API entry point.
+ *
+ * @param credential the credential to use.
+ * @param profile the Azure profile for client.
+ * @return the servicelinker service API instance.
+ */
+ public ServicelinkerManager 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.servicelinker")
+ .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());
+ policies
+ .addAll(
+ this
+ .policies
+ .stream()
+ .filter(p -> p.getPipelinePosition() == HttpPipelinePosition.PER_CALL)
+ .collect(Collectors.toList()));
+ HttpPolicyProviders.addBeforeRetryPolicies(policies);
+ policies.add(retryPolicy);
+ policies.add(new AddDatePolicy());
+ policies.add(new ArmChallengeAuthenticationPolicy(credential, scopes.toArray(new String[0])));
+ policies
+ .addAll(
+ this
+ .policies
+ .stream()
+ .filter(p -> p.getPipelinePosition() == HttpPipelinePosition.PER_RETRY)
+ .collect(Collectors.toList()));
+ HttpPolicyProviders.addAfterRetryPolicies(policies);
+ policies.add(new HttpLoggingPolicy(httpLogOptions));
+ HttpPipeline httpPipeline =
+ new HttpPipelineBuilder()
+ .httpClient(httpClient)
+ .policies(policies.toArray(new HttpPipelinePolicy[0]))
+ .build();
+ return new ServicelinkerManager(httpPipeline, profile, defaultPollInterval);
+ }
+ }
+
+ /** @return Resource collection API of Linkers. */
+ public Linkers linkers() {
+ if (this.linkers == null) {
+ this.linkers = new LinkersImpl(clientObject.getLinkers(), this);
+ }
+ return linkers;
+ }
+
+ /** @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 MicrosoftServiceLinker providing direct access to the underlying auto-generated
+ * API implementation, based on Azure REST API.
+ */
+ public MicrosoftServiceLinker serviceClient() {
+ return this.clientObject;
+ }
+}
diff --git a/sdk/servicelinker/azure-resourcemanager-servicelinker/src/main/java/com/azure/resourcemanager/servicelinker/fluent/LinkersClient.java b/sdk/servicelinker/azure-resourcemanager-servicelinker/src/main/java/com/azure/resourcemanager/servicelinker/fluent/LinkersClient.java
new file mode 100644
index 0000000000000..9b5b2e97cd6d8
--- /dev/null
+++ b/sdk/servicelinker/azure-resourcemanager-servicelinker/src/main/java/com/azure/resourcemanager/servicelinker/fluent/LinkersClient.java
@@ -0,0 +1,330 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+package com.azure.resourcemanager.servicelinker.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.polling.PollResult;
+import com.azure.core.util.Context;
+import com.azure.core.util.polling.SyncPoller;
+import com.azure.resourcemanager.servicelinker.fluent.models.LinkerResourceInner;
+import com.azure.resourcemanager.servicelinker.fluent.models.SourceConfigurationResultInner;
+import com.azure.resourcemanager.servicelinker.fluent.models.ValidateResultInner;
+import com.azure.resourcemanager.servicelinker.models.LinkerPatch;
+
+/** An instance of this class provides access to all the operations defined in LinkersClient. */
+public interface LinkersClient {
+ /**
+ * Returns list of Linkers which connects to the resource.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @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 Linker as paginated response with {@link PagedIterable}.
+ */
+ @ServiceMethod(returns = ReturnType.COLLECTION)
+ PagedIterable list(String resourceUri);
+
+ /**
+ * Returns list of Linkers which connects to the resource.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @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 Linker as paginated response with {@link PagedIterable}.
+ */
+ @ServiceMethod(returns = ReturnType.COLLECTION)
+ PagedIterable list(String resourceUri, Context context);
+
+ /**
+ * Returns Linker resource for a given name.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @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 linker of source and target resource.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ LinkerResourceInner get(String resourceUri, String linkerName);
+
+ /**
+ * Returns Linker resource for a given name.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @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 linker of source and target resource along with {@link Response}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ Response getWithResponse(String resourceUri, String linkerName, Context context);
+
+ /**
+ * Create or update linker resource.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @param parameters Linker details.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the {@link SyncPoller} for polling of linker of source and target resource.
+ */
+ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
+ SyncPoller, LinkerResourceInner> beginCreateOrUpdate(
+ String resourceUri, String linkerName, LinkerResourceInner parameters);
+
+ /**
+ * Create or update linker resource.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @param parameters Linker details.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the {@link SyncPoller} for polling of linker of source and target resource.
+ */
+ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
+ SyncPoller, LinkerResourceInner> beginCreateOrUpdate(
+ String resourceUri, String linkerName, LinkerResourceInner parameters, Context context);
+
+ /**
+ * Create or update linker resource.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @param parameters Linker details.
+ * @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 linker of source and target resource.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ LinkerResourceInner createOrUpdate(String resourceUri, String linkerName, LinkerResourceInner parameters);
+
+ /**
+ * Create or update linker resource.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @param parameters Linker details.
+ * @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 linker of source and target resource.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ LinkerResourceInner createOrUpdate(
+ String resourceUri, String linkerName, LinkerResourceInner parameters, Context context);
+
+ /**
+ * Delete a link.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the {@link SyncPoller} for polling of long-running operation.
+ */
+ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
+ SyncPoller, Void> beginDelete(String resourceUri, String linkerName);
+
+ /**
+ * Delete a link.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the {@link SyncPoller} for polling of long-running operation.
+ */
+ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
+ SyncPoller, Void> beginDelete(String resourceUri, String linkerName, Context context);
+
+ /**
+ * Delete a link.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @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 resourceUri, String linkerName);
+
+ /**
+ * Delete a link.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ void delete(String resourceUri, String linkerName, Context context);
+
+ /**
+ * Operation to update an existing link.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @param parameters Linker details.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the {@link SyncPoller} for polling of linker of source and target resource.
+ */
+ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
+ SyncPoller, LinkerResourceInner> beginUpdate(
+ String resourceUri, String linkerName, LinkerPatch parameters);
+
+ /**
+ * Operation to update an existing link.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @param parameters Linker details.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the {@link SyncPoller} for polling of linker of source and target resource.
+ */
+ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
+ SyncPoller, LinkerResourceInner> beginUpdate(
+ String resourceUri, String linkerName, LinkerPatch parameters, Context context);
+
+ /**
+ * Operation to update an existing link.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @param parameters Linker details.
+ * @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 linker of source and target resource.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ LinkerResourceInner update(String resourceUri, String linkerName, LinkerPatch parameters);
+
+ /**
+ * Operation to update an existing link.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @param parameters Linker details.
+ * @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 linker of source and target resource.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ LinkerResourceInner update(String resourceUri, String linkerName, LinkerPatch parameters, Context context);
+
+ /**
+ * Validate a link.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the {@link SyncPoller} for polling of the validation result for a linker.
+ */
+ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
+ SyncPoller, ValidateResultInner> beginValidate(
+ String resourceUri, String linkerName);
+
+ /**
+ * Validate a link.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the {@link SyncPoller} for polling of the validation result for a linker.
+ */
+ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
+ SyncPoller, ValidateResultInner> beginValidate(
+ String resourceUri, String linkerName, Context context);
+
+ /**
+ * Validate a link.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @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 validation result for a linker.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ ValidateResultInner validate(String resourceUri, String linkerName);
+
+ /**
+ * Validate a link.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @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 validation result for a linker.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ ValidateResultInner validate(String resourceUri, String linkerName, Context context);
+
+ /**
+ * list source configurations for a linker.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @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 configurations for source resource, include appSettings, connectionString and serviceBindings.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ SourceConfigurationResultInner listConfigurations(String resourceUri, String linkerName);
+
+ /**
+ * list source configurations for a linker.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @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 configurations for source resource, include appSettings, connectionString and serviceBindings along with
+ * {@link Response}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ Response listConfigurationsWithResponse(
+ String resourceUri, String linkerName, Context context);
+}
diff --git a/sdk/servicelinker/azure-resourcemanager-servicelinker/src/main/java/com/azure/resourcemanager/servicelinker/fluent/MicrosoftServiceLinker.java b/sdk/servicelinker/azure-resourcemanager-servicelinker/src/main/java/com/azure/resourcemanager/servicelinker/fluent/MicrosoftServiceLinker.java
new file mode 100644
index 0000000000000..4d6d24de48feb
--- /dev/null
+++ b/sdk/servicelinker/azure-resourcemanager-servicelinker/src/main/java/com/azure/resourcemanager/servicelinker/fluent/MicrosoftServiceLinker.java
@@ -0,0 +1,53 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+package com.azure.resourcemanager.servicelinker.fluent;
+
+import com.azure.core.http.HttpPipeline;
+import java.time.Duration;
+
+/** The interface for MicrosoftServiceLinker class. */
+public interface MicrosoftServiceLinker {
+ /**
+ * 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 LinkersClient object to access its operations.
+ *
+ * @return the LinkersClient object.
+ */
+ LinkersClient getLinkers();
+
+ /**
+ * Gets the OperationsClient object to access its operations.
+ *
+ * @return the OperationsClient object.
+ */
+ OperationsClient getOperations();
+}
diff --git a/sdk/servicelinker/azure-resourcemanager-servicelinker/src/main/java/com/azure/resourcemanager/servicelinker/fluent/OperationsClient.java b/sdk/servicelinker/azure-resourcemanager-servicelinker/src/main/java/com/azure/resourcemanager/servicelinker/fluent/OperationsClient.java
new file mode 100644
index 0000000000000..3ab76039aba2e
--- /dev/null
+++ b/sdk/servicelinker/azure-resourcemanager-servicelinker/src/main/java/com/azure/resourcemanager/servicelinker/fluent/OperationsClient.java
@@ -0,0 +1,38 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+package com.azure.resourcemanager.servicelinker.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.servicelinker.fluent.models.OperationInner;
+
+/** An instance of this class provides access to all the operations defined in OperationsClient. */
+public interface OperationsClient {
+ /**
+ * Lists the available ServiceLinker REST API operations.
+ *
+ * @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 as paginated response with {@link
+ * PagedIterable}.
+ */
+ @ServiceMethod(returns = ReturnType.COLLECTION)
+ PagedIterable list();
+
+ /**
+ * Lists the available ServiceLinker REST API operations.
+ *
+ * @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 as paginated response with {@link
+ * PagedIterable}.
+ */
+ @ServiceMethod(returns = ReturnType.COLLECTION)
+ PagedIterable list(Context context);
+}
diff --git a/sdk/servicelinker/azure-resourcemanager-servicelinker/src/main/java/com/azure/resourcemanager/servicelinker/fluent/models/LinkerProperties.java b/sdk/servicelinker/azure-resourcemanager-servicelinker/src/main/java/com/azure/resourcemanager/servicelinker/fluent/models/LinkerProperties.java
new file mode 100644
index 0000000000000..44ef47e9ee44d
--- /dev/null
+++ b/sdk/servicelinker/azure-resourcemanager-servicelinker/src/main/java/com/azure/resourcemanager/servicelinker/fluent/models/LinkerProperties.java
@@ -0,0 +1,208 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+package com.azure.resourcemanager.servicelinker.fluent.models;
+
+import com.azure.core.annotation.Fluent;
+import com.azure.resourcemanager.servicelinker.models.AuthInfoBase;
+import com.azure.resourcemanager.servicelinker.models.ClientType;
+import com.azure.resourcemanager.servicelinker.models.SecretStore;
+import com.azure.resourcemanager.servicelinker.models.TargetServiceBase;
+import com.azure.resourcemanager.servicelinker.models.VNetSolution;
+import com.fasterxml.jackson.annotation.JsonProperty;
+
+/** The properties of the linker. */
+@Fluent
+public final class LinkerProperties {
+ /*
+ * The target service properties
+ */
+ @JsonProperty(value = "targetService")
+ private TargetServiceBase targetService;
+
+ /*
+ * The authentication type.
+ */
+ @JsonProperty(value = "authInfo")
+ private AuthInfoBase authInfo;
+
+ /*
+ * The application client type
+ */
+ @JsonProperty(value = "clientType")
+ private ClientType clientType;
+
+ /*
+ * The provisioning state.
+ */
+ @JsonProperty(value = "provisioningState", access = JsonProperty.Access.WRITE_ONLY)
+ private String provisioningState;
+
+ /*
+ * The VNet solution.
+ */
+ @JsonProperty(value = "vNetSolution")
+ private VNetSolution vNetSolution;
+
+ /*
+ * An option to store secret value in secure place
+ */
+ @JsonProperty(value = "secretStore")
+ private SecretStore secretStore;
+
+ /*
+ * connection scope in source service.
+ */
+ @JsonProperty(value = "scope")
+ private String scope;
+
+ /**
+ * Get the targetService property: The target service properties.
+ *
+ * @return the targetService value.
+ */
+ public TargetServiceBase targetService() {
+ return this.targetService;
+ }
+
+ /**
+ * Set the targetService property: The target service properties.
+ *
+ * @param targetService the targetService value to set.
+ * @return the LinkerProperties object itself.
+ */
+ public LinkerProperties withTargetService(TargetServiceBase targetService) {
+ this.targetService = targetService;
+ return this;
+ }
+
+ /**
+ * Get the authInfo property: The authentication type.
+ *
+ * @return the authInfo value.
+ */
+ public AuthInfoBase authInfo() {
+ return this.authInfo;
+ }
+
+ /**
+ * Set the authInfo property: The authentication type.
+ *
+ * @param authInfo the authInfo value to set.
+ * @return the LinkerProperties object itself.
+ */
+ public LinkerProperties withAuthInfo(AuthInfoBase authInfo) {
+ this.authInfo = authInfo;
+ return this;
+ }
+
+ /**
+ * Get the clientType property: The application client type.
+ *
+ * @return the clientType value.
+ */
+ public ClientType clientType() {
+ return this.clientType;
+ }
+
+ /**
+ * Set the clientType property: The application client type.
+ *
+ * @param clientType the clientType value to set.
+ * @return the LinkerProperties object itself.
+ */
+ public LinkerProperties withClientType(ClientType clientType) {
+ this.clientType = clientType;
+ return this;
+ }
+
+ /**
+ * Get the provisioningState property: The provisioning state.
+ *
+ * @return the provisioningState value.
+ */
+ public String provisioningState() {
+ return this.provisioningState;
+ }
+
+ /**
+ * Get the vNetSolution property: The VNet solution.
+ *
+ * @return the vNetSolution value.
+ */
+ public VNetSolution vNetSolution() {
+ return this.vNetSolution;
+ }
+
+ /**
+ * Set the vNetSolution property: The VNet solution.
+ *
+ * @param vNetSolution the vNetSolution value to set.
+ * @return the LinkerProperties object itself.
+ */
+ public LinkerProperties withVNetSolution(VNetSolution vNetSolution) {
+ this.vNetSolution = vNetSolution;
+ return this;
+ }
+
+ /**
+ * Get the secretStore property: An option to store secret value in secure place.
+ *
+ * @return the secretStore value.
+ */
+ public SecretStore secretStore() {
+ return this.secretStore;
+ }
+
+ /**
+ * Set the secretStore property: An option to store secret value in secure place.
+ *
+ * @param secretStore the secretStore value to set.
+ * @return the LinkerProperties object itself.
+ */
+ public LinkerProperties withSecretStore(SecretStore secretStore) {
+ this.secretStore = secretStore;
+ return this;
+ }
+
+ /**
+ * Get the scope property: connection scope in source service.
+ *
+ * @return the scope value.
+ */
+ public String scope() {
+ return this.scope;
+ }
+
+ /**
+ * Set the scope property: connection scope in source service.
+ *
+ * @param scope the scope value to set.
+ * @return the LinkerProperties object itself.
+ */
+ public LinkerProperties withScope(String scope) {
+ this.scope = scope;
+ return this;
+ }
+
+ /**
+ * Validates the instance.
+ *
+ * @throws IllegalArgumentException thrown if the instance is not valid.
+ */
+ public void validate() {
+ if (targetService() != null) {
+ targetService().validate();
+ }
+ if (authInfo() != null) {
+ authInfo().validate();
+ }
+ if (vNetSolution() != null) {
+ vNetSolution().validate();
+ }
+ if (secretStore() != null) {
+ secretStore().validate();
+ }
+ }
+}
diff --git a/sdk/servicelinker/azure-resourcemanager-servicelinker/src/main/java/com/azure/resourcemanager/servicelinker/fluent/models/LinkerResourceInner.java b/sdk/servicelinker/azure-resourcemanager-servicelinker/src/main/java/com/azure/resourcemanager/servicelinker/fluent/models/LinkerResourceInner.java
new file mode 100644
index 0000000000000..44f17614df63e
--- /dev/null
+++ b/sdk/servicelinker/azure-resourcemanager-servicelinker/src/main/java/com/azure/resourcemanager/servicelinker/fluent/models/LinkerResourceInner.java
@@ -0,0 +1,215 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+package com.azure.resourcemanager.servicelinker.fluent.models;
+
+import com.azure.core.annotation.Fluent;
+import com.azure.core.management.ProxyResource;
+import com.azure.core.management.SystemData;
+import com.azure.core.util.logging.ClientLogger;
+import com.azure.resourcemanager.servicelinker.models.AuthInfoBase;
+import com.azure.resourcemanager.servicelinker.models.ClientType;
+import com.azure.resourcemanager.servicelinker.models.SecretStore;
+import com.azure.resourcemanager.servicelinker.models.TargetServiceBase;
+import com.azure.resourcemanager.servicelinker.models.VNetSolution;
+import com.fasterxml.jackson.annotation.JsonProperty;
+
+/** Linker of source and target resource. */
+@Fluent
+public final class LinkerResourceInner extends ProxyResource {
+ /*
+ * The properties of the linker.
+ */
+ @JsonProperty(value = "properties", required = true)
+ private LinkerProperties innerProperties = new LinkerProperties();
+
+ /*
+ * The system data.
+ */
+ @JsonProperty(value = "systemData", access = JsonProperty.Access.WRITE_ONLY)
+ private SystemData systemData;
+
+ /**
+ * Get the innerProperties property: The properties of the linker.
+ *
+ * @return the innerProperties value.
+ */
+ private LinkerProperties innerProperties() {
+ return this.innerProperties;
+ }
+
+ /**
+ * Get the systemData property: The system data.
+ *
+ * @return the systemData value.
+ */
+ public SystemData systemData() {
+ return this.systemData;
+ }
+
+ /**
+ * Get the targetService property: The target service properties.
+ *
+ * @return the targetService value.
+ */
+ public TargetServiceBase targetService() {
+ return this.innerProperties() == null ? null : this.innerProperties().targetService();
+ }
+
+ /**
+ * Set the targetService property: The target service properties.
+ *
+ * @param targetService the targetService value to set.
+ * @return the LinkerResourceInner object itself.
+ */
+ public LinkerResourceInner withTargetService(TargetServiceBase targetService) {
+ if (this.innerProperties() == null) {
+ this.innerProperties = new LinkerProperties();
+ }
+ this.innerProperties().withTargetService(targetService);
+ return this;
+ }
+
+ /**
+ * Get the authInfo property: The authentication type.
+ *
+ * @return the authInfo value.
+ */
+ public AuthInfoBase authInfo() {
+ return this.innerProperties() == null ? null : this.innerProperties().authInfo();
+ }
+
+ /**
+ * Set the authInfo property: The authentication type.
+ *
+ * @param authInfo the authInfo value to set.
+ * @return the LinkerResourceInner object itself.
+ */
+ public LinkerResourceInner withAuthInfo(AuthInfoBase authInfo) {
+ if (this.innerProperties() == null) {
+ this.innerProperties = new LinkerProperties();
+ }
+ this.innerProperties().withAuthInfo(authInfo);
+ return this;
+ }
+
+ /**
+ * Get the clientType property: The application client type.
+ *
+ * @return the clientType value.
+ */
+ public ClientType clientType() {
+ return this.innerProperties() == null ? null : this.innerProperties().clientType();
+ }
+
+ /**
+ * Set the clientType property: The application client type.
+ *
+ * @param clientType the clientType value to set.
+ * @return the LinkerResourceInner object itself.
+ */
+ public LinkerResourceInner withClientType(ClientType clientType) {
+ if (this.innerProperties() == null) {
+ this.innerProperties = new LinkerProperties();
+ }
+ this.innerProperties().withClientType(clientType);
+ return this;
+ }
+
+ /**
+ * Get the provisioningState property: The provisioning state.
+ *
+ * @return the provisioningState value.
+ */
+ public String provisioningState() {
+ return this.innerProperties() == null ? null : this.innerProperties().provisioningState();
+ }
+
+ /**
+ * Get the vNetSolution property: The VNet solution.
+ *
+ * @return the vNetSolution value.
+ */
+ public VNetSolution vNetSolution() {
+ return this.innerProperties() == null ? null : this.innerProperties().vNetSolution();
+ }
+
+ /**
+ * Set the vNetSolution property: The VNet solution.
+ *
+ * @param vNetSolution the vNetSolution value to set.
+ * @return the LinkerResourceInner object itself.
+ */
+ public LinkerResourceInner withVNetSolution(VNetSolution vNetSolution) {
+ if (this.innerProperties() == null) {
+ this.innerProperties = new LinkerProperties();
+ }
+ this.innerProperties().withVNetSolution(vNetSolution);
+ return this;
+ }
+
+ /**
+ * Get the secretStore property: An option to store secret value in secure place.
+ *
+ * @return the secretStore value.
+ */
+ public SecretStore secretStore() {
+ return this.innerProperties() == null ? null : this.innerProperties().secretStore();
+ }
+
+ /**
+ * Set the secretStore property: An option to store secret value in secure place.
+ *
+ * @param secretStore the secretStore value to set.
+ * @return the LinkerResourceInner object itself.
+ */
+ public LinkerResourceInner withSecretStore(SecretStore secretStore) {
+ if (this.innerProperties() == null) {
+ this.innerProperties = new LinkerProperties();
+ }
+ this.innerProperties().withSecretStore(secretStore);
+ return this;
+ }
+
+ /**
+ * Get the scope property: connection scope in source service.
+ *
+ * @return the scope value.
+ */
+ public String scope() {
+ return this.innerProperties() == null ? null : this.innerProperties().scope();
+ }
+
+ /**
+ * Set the scope property: connection scope in source service.
+ *
+ * @param scope the scope value to set.
+ * @return the LinkerResourceInner object itself.
+ */
+ public LinkerResourceInner withScope(String scope) {
+ if (this.innerProperties() == null) {
+ this.innerProperties = new LinkerProperties();
+ }
+ this.innerProperties().withScope(scope);
+ return this;
+ }
+
+ /**
+ * Validates the instance.
+ *
+ * @throws IllegalArgumentException thrown if the instance is not valid.
+ */
+ public void validate() {
+ if (innerProperties() == null) {
+ throw LOGGER
+ .logExceptionAsError(
+ new IllegalArgumentException(
+ "Missing required property innerProperties in model LinkerResourceInner"));
+ } else {
+ innerProperties().validate();
+ }
+ }
+
+ private static final ClientLogger LOGGER = new ClientLogger(LinkerResourceInner.class);
+}
diff --git a/sdk/servicelinker/azure-resourcemanager-servicelinker/src/main/java/com/azure/resourcemanager/servicelinker/fluent/models/OperationInner.java b/sdk/servicelinker/azure-resourcemanager-servicelinker/src/main/java/com/azure/resourcemanager/servicelinker/fluent/models/OperationInner.java
new file mode 100644
index 0000000000000..3d520cb77233f
--- /dev/null
+++ b/sdk/servicelinker/azure-resourcemanager-servicelinker/src/main/java/com/azure/resourcemanager/servicelinker/fluent/models/OperationInner.java
@@ -0,0 +1,121 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+package com.azure.resourcemanager.servicelinker.fluent.models;
+
+import com.azure.core.annotation.Fluent;
+import com.azure.resourcemanager.servicelinker.models.ActionType;
+import com.azure.resourcemanager.servicelinker.models.OperationDisplay;
+import com.azure.resourcemanager.servicelinker.models.Origin;
+import com.fasterxml.jackson.annotation.JsonProperty;
+
+/** REST API Operation Details of a REST API operation, returned from the Resource Provider Operations API. */
+@Fluent
+public final class OperationInner {
+ /*
+ * 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/servicelinker/azure-resourcemanager-servicelinker/src/main/java/com/azure/resourcemanager/servicelinker/fluent/models/SourceConfigurationResultInner.java b/sdk/servicelinker/azure-resourcemanager-servicelinker/src/main/java/com/azure/resourcemanager/servicelinker/fluent/models/SourceConfigurationResultInner.java
new file mode 100644
index 0000000000000..aa517497546a6
--- /dev/null
+++ b/sdk/servicelinker/azure-resourcemanager-servicelinker/src/main/java/com/azure/resourcemanager/servicelinker/fluent/models/SourceConfigurationResultInner.java
@@ -0,0 +1,51 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+package com.azure.resourcemanager.servicelinker.fluent.models;
+
+import com.azure.core.annotation.Fluent;
+import com.azure.resourcemanager.servicelinker.models.SourceConfiguration;
+import com.fasterxml.jackson.annotation.JsonProperty;
+import java.util.List;
+
+/** Configurations for source resource, include appSettings, connectionString and serviceBindings. */
+@Fluent
+public final class SourceConfigurationResultInner {
+ /*
+ * The configuration properties for source resource.
+ */
+ @JsonProperty(value = "configurations")
+ private List configurations;
+
+ /**
+ * Get the configurations property: The configuration properties for source resource.
+ *
+ * @return the configurations value.
+ */
+ public List configurations() {
+ return this.configurations;
+ }
+
+ /**
+ * Set the configurations property: The configuration properties for source resource.
+ *
+ * @param configurations the configurations value to set.
+ * @return the SourceConfigurationResultInner object itself.
+ */
+ public SourceConfigurationResultInner withConfigurations(List configurations) {
+ this.configurations = configurations;
+ return this;
+ }
+
+ /**
+ * Validates the instance.
+ *
+ * @throws IllegalArgumentException thrown if the instance is not valid.
+ */
+ public void validate() {
+ if (configurations() != null) {
+ configurations().forEach(e -> e.validate());
+ }
+ }
+}
diff --git a/sdk/servicelinker/azure-resourcemanager-servicelinker/src/main/java/com/azure/resourcemanager/servicelinker/fluent/models/ValidateResultInner.java b/sdk/servicelinker/azure-resourcemanager-servicelinker/src/main/java/com/azure/resourcemanager/servicelinker/fluent/models/ValidateResultInner.java
new file mode 100644
index 0000000000000..608ee2d746039
--- /dev/null
+++ b/sdk/servicelinker/azure-resourcemanager-servicelinker/src/main/java/com/azure/resourcemanager/servicelinker/fluent/models/ValidateResultInner.java
@@ -0,0 +1,235 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+package com.azure.resourcemanager.servicelinker.fluent.models;
+
+import com.azure.core.annotation.Fluent;
+import com.azure.resourcemanager.servicelinker.models.AuthType;
+import com.azure.resourcemanager.servicelinker.models.ValidationResultItem;
+import com.fasterxml.jackson.annotation.JsonProperty;
+import java.time.OffsetDateTime;
+import java.util.List;
+
+/** The validation result for a linker. */
+@Fluent
+public final class ValidateResultInner {
+ /*
+ * The linker name.
+ */
+ @JsonProperty(value = "linkerName")
+ private String linkerName;
+
+ /*
+ * A boolean value indicating whether the connection is available or not
+ */
+ @JsonProperty(value = "isConnectionAvailable")
+ private Boolean isConnectionAvailable;
+
+ /*
+ * The start time of the validation report.
+ */
+ @JsonProperty(value = "reportStartTimeUtc")
+ private OffsetDateTime reportStartTimeUtc;
+
+ /*
+ * The end time of the validation report.
+ */
+ @JsonProperty(value = "reportEndTimeUtc")
+ private OffsetDateTime reportEndTimeUtc;
+
+ /*
+ * The resource id of the linker source application.
+ */
+ @JsonProperty(value = "sourceId")
+ private String sourceId;
+
+ /*
+ * The resource Id of target service.
+ */
+ @JsonProperty(value = "targetId")
+ private String targetId;
+
+ /*
+ * The authentication type.
+ */
+ @JsonProperty(value = "authType")
+ private AuthType authType;
+
+ /*
+ * The detail of validation result
+ */
+ @JsonProperty(value = "validationDetail")
+ private List validationDetail;
+
+ /**
+ * Get the linkerName property: The linker name.
+ *
+ * @return the linkerName value.
+ */
+ public String linkerName() {
+ return this.linkerName;
+ }
+
+ /**
+ * Set the linkerName property: The linker name.
+ *
+ * @param linkerName the linkerName value to set.
+ * @return the ValidateResultInner object itself.
+ */
+ public ValidateResultInner withLinkerName(String linkerName) {
+ this.linkerName = linkerName;
+ return this;
+ }
+
+ /**
+ * Get the isConnectionAvailable property: A boolean value indicating whether the connection is available or not.
+ *
+ * @return the isConnectionAvailable value.
+ */
+ public Boolean isConnectionAvailable() {
+ return this.isConnectionAvailable;
+ }
+
+ /**
+ * Set the isConnectionAvailable property: A boolean value indicating whether the connection is available or not.
+ *
+ * @param isConnectionAvailable the isConnectionAvailable value to set.
+ * @return the ValidateResultInner object itself.
+ */
+ public ValidateResultInner withIsConnectionAvailable(Boolean isConnectionAvailable) {
+ this.isConnectionAvailable = isConnectionAvailable;
+ return this;
+ }
+
+ /**
+ * Get the reportStartTimeUtc property: The start time of the validation report.
+ *
+ * @return the reportStartTimeUtc value.
+ */
+ public OffsetDateTime reportStartTimeUtc() {
+ return this.reportStartTimeUtc;
+ }
+
+ /**
+ * Set the reportStartTimeUtc property: The start time of the validation report.
+ *
+ * @param reportStartTimeUtc the reportStartTimeUtc value to set.
+ * @return the ValidateResultInner object itself.
+ */
+ public ValidateResultInner withReportStartTimeUtc(OffsetDateTime reportStartTimeUtc) {
+ this.reportStartTimeUtc = reportStartTimeUtc;
+ return this;
+ }
+
+ /**
+ * Get the reportEndTimeUtc property: The end time of the validation report.
+ *
+ * @return the reportEndTimeUtc value.
+ */
+ public OffsetDateTime reportEndTimeUtc() {
+ return this.reportEndTimeUtc;
+ }
+
+ /**
+ * Set the reportEndTimeUtc property: The end time of the validation report.
+ *
+ * @param reportEndTimeUtc the reportEndTimeUtc value to set.
+ * @return the ValidateResultInner object itself.
+ */
+ public ValidateResultInner withReportEndTimeUtc(OffsetDateTime reportEndTimeUtc) {
+ this.reportEndTimeUtc = reportEndTimeUtc;
+ return this;
+ }
+
+ /**
+ * Get the sourceId property: The resource id of the linker source application.
+ *
+ * @return the sourceId value.
+ */
+ public String sourceId() {
+ return this.sourceId;
+ }
+
+ /**
+ * Set the sourceId property: The resource id of the linker source application.
+ *
+ * @param sourceId the sourceId value to set.
+ * @return the ValidateResultInner object itself.
+ */
+ public ValidateResultInner withSourceId(String sourceId) {
+ this.sourceId = sourceId;
+ return this;
+ }
+
+ /**
+ * Get the targetId property: The resource Id of target service.
+ *
+ * @return the targetId value.
+ */
+ public String targetId() {
+ return this.targetId;
+ }
+
+ /**
+ * Set the targetId property: The resource Id of target service.
+ *
+ * @param targetId the targetId value to set.
+ * @return the ValidateResultInner object itself.
+ */
+ public ValidateResultInner withTargetId(String targetId) {
+ this.targetId = targetId;
+ return this;
+ }
+
+ /**
+ * Get the authType property: The authentication type.
+ *
+ * @return the authType value.
+ */
+ public AuthType authType() {
+ return this.authType;
+ }
+
+ /**
+ * Set the authType property: The authentication type.
+ *
+ * @param authType the authType value to set.
+ * @return the ValidateResultInner object itself.
+ */
+ public ValidateResultInner withAuthType(AuthType authType) {
+ this.authType = authType;
+ return this;
+ }
+
+ /**
+ * Get the validationDetail property: The detail of validation result.
+ *
+ * @return the validationDetail value.
+ */
+ public List validationDetail() {
+ return this.validationDetail;
+ }
+
+ /**
+ * Set the validationDetail property: The detail of validation result.
+ *
+ * @param validationDetail the validationDetail value to set.
+ * @return the ValidateResultInner object itself.
+ */
+ public ValidateResultInner withValidationDetail(List validationDetail) {
+ this.validationDetail = validationDetail;
+ return this;
+ }
+
+ /**
+ * Validates the instance.
+ *
+ * @throws IllegalArgumentException thrown if the instance is not valid.
+ */
+ public void validate() {
+ if (validationDetail() != null) {
+ validationDetail().forEach(e -> e.validate());
+ }
+ }
+}
diff --git a/sdk/servicelinker/azure-resourcemanager-servicelinker/src/main/java/com/azure/resourcemanager/servicelinker/fluent/models/package-info.java b/sdk/servicelinker/azure-resourcemanager-servicelinker/src/main/java/com/azure/resourcemanager/servicelinker/fluent/models/package-info.java
new file mode 100644
index 0000000000000..090e6c401c63c
--- /dev/null
+++ b/sdk/servicelinker/azure-resourcemanager-servicelinker/src/main/java/com/azure/resourcemanager/servicelinker/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 MicrosoftServiceLinker. Microsoft.ServiceLinker provider. */
+package com.azure.resourcemanager.servicelinker.fluent.models;
diff --git a/sdk/servicelinker/azure-resourcemanager-servicelinker/src/main/java/com/azure/resourcemanager/servicelinker/fluent/package-info.java b/sdk/servicelinker/azure-resourcemanager-servicelinker/src/main/java/com/azure/resourcemanager/servicelinker/fluent/package-info.java
new file mode 100644
index 0000000000000..f9fa8019b5cd2
--- /dev/null
+++ b/sdk/servicelinker/azure-resourcemanager-servicelinker/src/main/java/com/azure/resourcemanager/servicelinker/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 MicrosoftServiceLinker. Microsoft.ServiceLinker provider. */
+package com.azure.resourcemanager.servicelinker.fluent;
diff --git a/sdk/servicelinker/azure-resourcemanager-servicelinker/src/main/java/com/azure/resourcemanager/servicelinker/implementation/LinkerResourceImpl.java b/sdk/servicelinker/azure-resourcemanager-servicelinker/src/main/java/com/azure/resourcemanager/servicelinker/implementation/LinkerResourceImpl.java
new file mode 100644
index 0000000000000..a90ad16451b50
--- /dev/null
+++ b/sdk/servicelinker/azure-resourcemanager-servicelinker/src/main/java/com/azure/resourcemanager/servicelinker/implementation/LinkerResourceImpl.java
@@ -0,0 +1,243 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+package com.azure.resourcemanager.servicelinker.implementation;
+
+import com.azure.core.http.rest.Response;
+import com.azure.core.management.SystemData;
+import com.azure.core.util.Context;
+import com.azure.resourcemanager.servicelinker.fluent.models.LinkerResourceInner;
+import com.azure.resourcemanager.servicelinker.models.AuthInfoBase;
+import com.azure.resourcemanager.servicelinker.models.ClientType;
+import com.azure.resourcemanager.servicelinker.models.LinkerPatch;
+import com.azure.resourcemanager.servicelinker.models.LinkerResource;
+import com.azure.resourcemanager.servicelinker.models.SecretStore;
+import com.azure.resourcemanager.servicelinker.models.SourceConfigurationResult;
+import com.azure.resourcemanager.servicelinker.models.TargetServiceBase;
+import com.azure.resourcemanager.servicelinker.models.VNetSolution;
+import com.azure.resourcemanager.servicelinker.models.ValidateResult;
+
+public final class LinkerResourceImpl implements LinkerResource, LinkerResource.Definition, LinkerResource.Update {
+ private LinkerResourceInner innerObject;
+
+ private final com.azure.resourcemanager.servicelinker.ServicelinkerManager serviceManager;
+
+ public String id() {
+ return this.innerModel().id();
+ }
+
+ public String name() {
+ return this.innerModel().name();
+ }
+
+ public String type() {
+ return this.innerModel().type();
+ }
+
+ public SystemData systemData() {
+ return this.innerModel().systemData();
+ }
+
+ public TargetServiceBase targetService() {
+ return this.innerModel().targetService();
+ }
+
+ public AuthInfoBase authInfo() {
+ return this.innerModel().authInfo();
+ }
+
+ public ClientType clientType() {
+ return this.innerModel().clientType();
+ }
+
+ public String provisioningState() {
+ return this.innerModel().provisioningState();
+ }
+
+ public VNetSolution vNetSolution() {
+ return this.innerModel().vNetSolution();
+ }
+
+ public SecretStore secretStore() {
+ return this.innerModel().secretStore();
+ }
+
+ public String scope() {
+ return this.innerModel().scope();
+ }
+
+ public LinkerResourceInner innerModel() {
+ return this.innerObject;
+ }
+
+ private com.azure.resourcemanager.servicelinker.ServicelinkerManager manager() {
+ return this.serviceManager;
+ }
+
+ private String resourceUri;
+
+ private String linkerName;
+
+ private LinkerPatch updateParameters;
+
+ public LinkerResourceImpl withExistingResourceUri(String resourceUri) {
+ this.resourceUri = resourceUri;
+ return this;
+ }
+
+ public LinkerResource create() {
+ this.innerObject =
+ serviceManager
+ .serviceClient()
+ .getLinkers()
+ .createOrUpdate(resourceUri, linkerName, this.innerModel(), Context.NONE);
+ return this;
+ }
+
+ public LinkerResource create(Context context) {
+ this.innerObject =
+ serviceManager
+ .serviceClient()
+ .getLinkers()
+ .createOrUpdate(resourceUri, linkerName, this.innerModel(), context);
+ return this;
+ }
+
+ LinkerResourceImpl(String name, com.azure.resourcemanager.servicelinker.ServicelinkerManager serviceManager) {
+ this.innerObject = new LinkerResourceInner();
+ this.serviceManager = serviceManager;
+ this.linkerName = name;
+ }
+
+ public LinkerResourceImpl update() {
+ this.updateParameters = new LinkerPatch();
+ return this;
+ }
+
+ public LinkerResource apply() {
+ this.innerObject =
+ serviceManager.serviceClient().getLinkers().update(resourceUri, linkerName, updateParameters, Context.NONE);
+ return this;
+ }
+
+ public LinkerResource apply(Context context) {
+ this.innerObject =
+ serviceManager.serviceClient().getLinkers().update(resourceUri, linkerName, updateParameters, context);
+ return this;
+ }
+
+ LinkerResourceImpl(
+ LinkerResourceInner innerObject, com.azure.resourcemanager.servicelinker.ServicelinkerManager serviceManager) {
+ this.innerObject = innerObject;
+ this.serviceManager = serviceManager;
+ this.resourceUri =
+ Utils
+ .getValueFromIdByParameterName(
+ innerObject.id(),
+ "/{resourceUri}/providers/Microsoft.ServiceLinker/linkers/{linkerName}",
+ "resourceUri");
+ this.linkerName =
+ Utils
+ .getValueFromIdByParameterName(
+ innerObject.id(),
+ "/{resourceUri}/providers/Microsoft.ServiceLinker/linkers/{linkerName}",
+ "linkerName");
+ }
+
+ public LinkerResource refresh() {
+ this.innerObject =
+ serviceManager
+ .serviceClient()
+ .getLinkers()
+ .getWithResponse(resourceUri, linkerName, Context.NONE)
+ .getValue();
+ return this;
+ }
+
+ public LinkerResource refresh(Context context) {
+ this.innerObject =
+ serviceManager.serviceClient().getLinkers().getWithResponse(resourceUri, linkerName, context).getValue();
+ return this;
+ }
+
+ public ValidateResult validate() {
+ return serviceManager.linkers().validate(resourceUri, linkerName);
+ }
+
+ public ValidateResult validate(Context context) {
+ return serviceManager.linkers().validate(resourceUri, linkerName, context);
+ }
+
+ public SourceConfigurationResult listConfigurations() {
+ return serviceManager.linkers().listConfigurations(resourceUri, linkerName);
+ }
+
+ public Response listConfigurationsWithResponse(Context context) {
+ return serviceManager.linkers().listConfigurationsWithResponse(resourceUri, linkerName, context);
+ }
+
+ public LinkerResourceImpl withTargetService(TargetServiceBase targetService) {
+ if (isInCreateMode()) {
+ this.innerModel().withTargetService(targetService);
+ return this;
+ } else {
+ this.updateParameters.withTargetService(targetService);
+ return this;
+ }
+ }
+
+ public LinkerResourceImpl withAuthInfo(AuthInfoBase authInfo) {
+ if (isInCreateMode()) {
+ this.innerModel().withAuthInfo(authInfo);
+ return this;
+ } else {
+ this.updateParameters.withAuthInfo(authInfo);
+ return this;
+ }
+ }
+
+ public LinkerResourceImpl withClientType(ClientType clientType) {
+ if (isInCreateMode()) {
+ this.innerModel().withClientType(clientType);
+ return this;
+ } else {
+ this.updateParameters.withClientType(clientType);
+ return this;
+ }
+ }
+
+ public LinkerResourceImpl withVNetSolution(VNetSolution vNetSolution) {
+ if (isInCreateMode()) {
+ this.innerModel().withVNetSolution(vNetSolution);
+ return this;
+ } else {
+ this.updateParameters.withVNetSolution(vNetSolution);
+ return this;
+ }
+ }
+
+ public LinkerResourceImpl withSecretStore(SecretStore secretStore) {
+ if (isInCreateMode()) {
+ this.innerModel().withSecretStore(secretStore);
+ return this;
+ } else {
+ this.updateParameters.withSecretStore(secretStore);
+ return this;
+ }
+ }
+
+ public LinkerResourceImpl withScope(String scope) {
+ if (isInCreateMode()) {
+ this.innerModel().withScope(scope);
+ return this;
+ } else {
+ this.updateParameters.withScope(scope);
+ return this;
+ }
+ }
+
+ private boolean isInCreateMode() {
+ return this.innerModel().id() == null;
+ }
+}
diff --git a/sdk/servicelinker/azure-resourcemanager-servicelinker/src/main/java/com/azure/resourcemanager/servicelinker/implementation/LinkersClientImpl.java b/sdk/servicelinker/azure-resourcemanager-servicelinker/src/main/java/com/azure/resourcemanager/servicelinker/implementation/LinkersClientImpl.java
new file mode 100644
index 0000000000000..433adc6d99ed3
--- /dev/null
+++ b/sdk/servicelinker/azure-resourcemanager-servicelinker/src/main/java/com/azure/resourcemanager/servicelinker/implementation/LinkersClientImpl.java
@@ -0,0 +1,1543 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+package com.azure.resourcemanager.servicelinker.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.exception.ManagementException;
+import com.azure.core.management.polling.PollResult;
+import com.azure.core.util.Context;
+import com.azure.core.util.FluxUtil;
+import com.azure.core.util.polling.PollerFlux;
+import com.azure.core.util.polling.SyncPoller;
+import com.azure.resourcemanager.servicelinker.fluent.LinkersClient;
+import com.azure.resourcemanager.servicelinker.fluent.models.LinkerResourceInner;
+import com.azure.resourcemanager.servicelinker.fluent.models.SourceConfigurationResultInner;
+import com.azure.resourcemanager.servicelinker.fluent.models.ValidateResultInner;
+import com.azure.resourcemanager.servicelinker.models.LinkerList;
+import com.azure.resourcemanager.servicelinker.models.LinkerPatch;
+import java.nio.ByteBuffer;
+import reactor.core.publisher.Flux;
+import reactor.core.publisher.Mono;
+
+/** An instance of this class provides access to all the operations defined in LinkersClient. */
+public final class LinkersClientImpl implements LinkersClient {
+ /** The proxy service used to perform REST calls. */
+ private final LinkersService service;
+
+ /** The service client containing this operation class. */
+ private final MicrosoftServiceLinkerImpl client;
+
+ /**
+ * Initializes an instance of LinkersClientImpl.
+ *
+ * @param client the instance of the service client containing this operation class.
+ */
+ LinkersClientImpl(MicrosoftServiceLinkerImpl client) {
+ this.service = RestProxy.create(LinkersService.class, client.getHttpPipeline(), client.getSerializerAdapter());
+ this.client = client;
+ }
+
+ /**
+ * The interface defining all the services for MicrosoftServiceLinkerLinkers to be used by the proxy service to
+ * perform REST calls.
+ */
+ @Host("{$host}")
+ @ServiceInterface(name = "MicrosoftServiceLink")
+ private interface LinkersService {
+ @Headers({"Content-Type: application/json"})
+ @Get("/{resourceUri}/providers/Microsoft.ServiceLinker/linkers")
+ @ExpectedResponses({200})
+ @UnexpectedResponseExceptionType(ManagementException.class)
+ Mono> list(
+ @HostParam("$host") String endpoint,
+ @PathParam(value = "resourceUri", encoded = true) String resourceUri,
+ @QueryParam("api-version") String apiVersion,
+ @HeaderParam("Accept") String accept,
+ Context context);
+
+ @Headers({"Content-Type: application/json"})
+ @Get("/{resourceUri}/providers/Microsoft.ServiceLinker/linkers/{linkerName}")
+ @ExpectedResponses({200})
+ @UnexpectedResponseExceptionType(ManagementException.class)
+ Mono> get(
+ @HostParam("$host") String endpoint,
+ @PathParam(value = "resourceUri", encoded = true) String resourceUri,
+ @QueryParam("api-version") String apiVersion,
+ @PathParam("linkerName") String linkerName,
+ @HeaderParam("Accept") String accept,
+ Context context);
+
+ @Headers({"Content-Type: application/json"})
+ @Put("/{resourceUri}/providers/Microsoft.ServiceLinker/linkers/{linkerName}")
+ @ExpectedResponses({200, 201})
+ @UnexpectedResponseExceptionType(ManagementException.class)
+ Mono>> createOrUpdate(
+ @HostParam("$host") String endpoint,
+ @PathParam(value = "resourceUri", encoded = true) String resourceUri,
+ @QueryParam("api-version") String apiVersion,
+ @PathParam("linkerName") String linkerName,
+ @BodyParam("application/json") LinkerResourceInner parameters,
+ @HeaderParam("Accept") String accept,
+ Context context);
+
+ @Headers({"Content-Type: application/json"})
+ @Delete("/{resourceUri}/providers/Microsoft.ServiceLinker/linkers/{linkerName}")
+ @ExpectedResponses({200, 202, 204})
+ @UnexpectedResponseExceptionType(ManagementException.class)
+ Mono>> delete(
+ @HostParam("$host") String endpoint,
+ @PathParam(value = "resourceUri", encoded = true) String resourceUri,
+ @QueryParam("api-version") String apiVersion,
+ @PathParam("linkerName") String linkerName,
+ @HeaderParam("Accept") String accept,
+ Context context);
+
+ @Headers({"Content-Type: application/json"})
+ @Patch("/{resourceUri}/providers/Microsoft.ServiceLinker/linkers/{linkerName}")
+ @ExpectedResponses({200, 201})
+ @UnexpectedResponseExceptionType(ManagementException.class)
+ Mono>> update(
+ @HostParam("$host") String endpoint,
+ @PathParam(value = "resourceUri", encoded = true) String resourceUri,
+ @QueryParam("api-version") String apiVersion,
+ @PathParam("linkerName") String linkerName,
+ @BodyParam("application/json") LinkerPatch parameters,
+ @HeaderParam("Accept") String accept,
+ Context context);
+
+ @Headers({"Content-Type: application/json"})
+ @Post("/{resourceUri}/providers/Microsoft.ServiceLinker/linkers/{linkerName}/validateLinker")
+ @ExpectedResponses({200, 202})
+ @UnexpectedResponseExceptionType(ManagementException.class)
+ Mono>> validate(
+ @HostParam("$host") String endpoint,
+ @PathParam(value = "resourceUri", encoded = true) String resourceUri,
+ @QueryParam("api-version") String apiVersion,
+ @PathParam("linkerName") String linkerName,
+ @HeaderParam("Accept") String accept,
+ Context context);
+
+ @Headers({"Content-Type: application/json"})
+ @Post("/{resourceUri}/providers/Microsoft.ServiceLinker/linkers/{linkerName}/listConfigurations")
+ @ExpectedResponses({200})
+ @UnexpectedResponseExceptionType(ManagementException.class)
+ Mono> listConfigurations(
+ @HostParam("$host") String endpoint,
+ @PathParam(value = "resourceUri", encoded = true) String resourceUri,
+ @QueryParam("api-version") String apiVersion,
+ @PathParam("linkerName") String linkerName,
+ @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);
+ }
+
+ /**
+ * Returns list of Linkers which connects to the resource.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @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 list of Linker along with {@link PagedResponse} on successful completion of {@link Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono> listSinglePageAsync(String resourceUri) {
+ if (this.client.getEndpoint() == null) {
+ return Mono
+ .error(
+ new IllegalArgumentException(
+ "Parameter this.client.getEndpoint() is required and cannot be null."));
+ }
+ if (resourceUri == null) {
+ return Mono.error(new IllegalArgumentException("Parameter resourceUri is required and cannot be null."));
+ }
+ final String accept = "application/json";
+ return FluxUtil
+ .withContext(
+ context ->
+ service.list(this.client.getEndpoint(), resourceUri, 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()));
+ }
+
+ /**
+ * Returns list of Linkers which connects to the resource.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @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 list of Linker along with {@link PagedResponse} on successful completion of {@link Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono> listSinglePageAsync(String resourceUri, Context context) {
+ if (this.client.getEndpoint() == null) {
+ return Mono
+ .error(
+ new IllegalArgumentException(
+ "Parameter this.client.getEndpoint() is required and cannot be null."));
+ }
+ if (resourceUri == null) {
+ return Mono.error(new IllegalArgumentException("Parameter resourceUri is required and cannot be null."));
+ }
+ final String accept = "application/json";
+ context = this.client.mergeContext(context);
+ return service
+ .list(this.client.getEndpoint(), resourceUri, this.client.getApiVersion(), accept, context)
+ .map(
+ res ->
+ new PagedResponseBase<>(
+ res.getRequest(),
+ res.getStatusCode(),
+ res.getHeaders(),
+ res.getValue().value(),
+ res.getValue().nextLink(),
+ null));
+ }
+
+ /**
+ * Returns list of Linkers which connects to the resource.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @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 list of Linker as paginated response with {@link PagedFlux}.
+ */
+ @ServiceMethod(returns = ReturnType.COLLECTION)
+ private PagedFlux listAsync(String resourceUri) {
+ return new PagedFlux<>(() -> listSinglePageAsync(resourceUri), nextLink -> listNextSinglePageAsync(nextLink));
+ }
+
+ /**
+ * Returns list of Linkers which connects to the resource.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @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 list of Linker as paginated response with {@link PagedFlux}.
+ */
+ @ServiceMethod(returns = ReturnType.COLLECTION)
+ private PagedFlux listAsync(String resourceUri, Context context) {
+ return new PagedFlux<>(
+ () -> listSinglePageAsync(resourceUri, context), nextLink -> listNextSinglePageAsync(nextLink, context));
+ }
+
+ /**
+ * Returns list of Linkers which connects to the resource.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @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 list of Linker as paginated response with {@link PagedIterable}.
+ */
+ @ServiceMethod(returns = ReturnType.COLLECTION)
+ public PagedIterable list(String resourceUri) {
+ return new PagedIterable<>(listAsync(resourceUri));
+ }
+
+ /**
+ * Returns list of Linkers which connects to the resource.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @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 list of Linker as paginated response with {@link PagedIterable}.
+ */
+ @ServiceMethod(returns = ReturnType.COLLECTION)
+ public PagedIterable list(String resourceUri, Context context) {
+ return new PagedIterable<>(listAsync(resourceUri, context));
+ }
+
+ /**
+ * Returns Linker resource for a given name.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @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 linker of source and target resource along with {@link Response} on successful completion of {@link
+ * Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono> getWithResponseAsync(String resourceUri, String linkerName) {
+ if (this.client.getEndpoint() == null) {
+ return Mono
+ .error(
+ new IllegalArgumentException(
+ "Parameter this.client.getEndpoint() is required and cannot be null."));
+ }
+ if (resourceUri == null) {
+ return Mono.error(new IllegalArgumentException("Parameter resourceUri is required and cannot be null."));
+ }
+ if (linkerName == null) {
+ return Mono.error(new IllegalArgumentException("Parameter linkerName is required and cannot be null."));
+ }
+ final String accept = "application/json";
+ return FluxUtil
+ .withContext(
+ context ->
+ service
+ .get(
+ this.client.getEndpoint(),
+ resourceUri,
+ this.client.getApiVersion(),
+ linkerName,
+ accept,
+ context))
+ .contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
+ }
+
+ /**
+ * Returns Linker resource for a given name.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @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 linker of source and target resource along with {@link Response} on successful completion of {@link
+ * Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono> getWithResponseAsync(
+ String resourceUri, String linkerName, Context context) {
+ if (this.client.getEndpoint() == null) {
+ return Mono
+ .error(
+ new IllegalArgumentException(
+ "Parameter this.client.getEndpoint() is required and cannot be null."));
+ }
+ if (resourceUri == null) {
+ return Mono.error(new IllegalArgumentException("Parameter resourceUri is required and cannot be null."));
+ }
+ if (linkerName == null) {
+ return Mono.error(new IllegalArgumentException("Parameter linkerName is required and cannot be null."));
+ }
+ final String accept = "application/json";
+ context = this.client.mergeContext(context);
+ return service
+ .get(this.client.getEndpoint(), resourceUri, this.client.getApiVersion(), linkerName, accept, context);
+ }
+
+ /**
+ * Returns Linker resource for a given name.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @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 linker of source and target resource on successful completion of {@link Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono getAsync(String resourceUri, String linkerName) {
+ return getWithResponseAsync(resourceUri, linkerName)
+ .flatMap(
+ (Response res) -> {
+ if (res.getValue() != null) {
+ return Mono.just(res.getValue());
+ } else {
+ return Mono.empty();
+ }
+ });
+ }
+
+ /**
+ * Returns Linker resource for a given name.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @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 linker of source and target resource.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ public LinkerResourceInner get(String resourceUri, String linkerName) {
+ return getAsync(resourceUri, linkerName).block();
+ }
+
+ /**
+ * Returns Linker resource for a given name.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @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 linker of source and target resource along with {@link Response}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ public Response getWithResponse(String resourceUri, String linkerName, Context context) {
+ return getWithResponseAsync(resourceUri, linkerName, context).block();
+ }
+
+ /**
+ * Create or update linker resource.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @param parameters Linker details.
+ * @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 linker of source and target resource along with {@link Response} on successful completion of {@link
+ * Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono>> createOrUpdateWithResponseAsync(
+ String resourceUri, String linkerName, LinkerResourceInner parameters) {
+ if (this.client.getEndpoint() == null) {
+ return Mono
+ .error(
+ new IllegalArgumentException(
+ "Parameter this.client.getEndpoint() is required and cannot be null."));
+ }
+ if (resourceUri == null) {
+ return Mono.error(new IllegalArgumentException("Parameter resourceUri is required and cannot be null."));
+ }
+ if (linkerName == null) {
+ return Mono.error(new IllegalArgumentException("Parameter linkerName is required and cannot be null."));
+ }
+ if (parameters == null) {
+ return Mono.error(new IllegalArgumentException("Parameter parameters is required and cannot be null."));
+ } else {
+ parameters.validate();
+ }
+ final String accept = "application/json";
+ return FluxUtil
+ .withContext(
+ context ->
+ service
+ .createOrUpdate(
+ this.client.getEndpoint(),
+ resourceUri,
+ this.client.getApiVersion(),
+ linkerName,
+ parameters,
+ accept,
+ context))
+ .contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
+ }
+
+ /**
+ * Create or update linker resource.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @param parameters Linker details.
+ * @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 linker of source and target resource along with {@link Response} on successful completion of {@link
+ * Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono>> createOrUpdateWithResponseAsync(
+ String resourceUri, String linkerName, LinkerResourceInner parameters, Context context) {
+ if (this.client.getEndpoint() == null) {
+ return Mono
+ .error(
+ new IllegalArgumentException(
+ "Parameter this.client.getEndpoint() is required and cannot be null."));
+ }
+ if (resourceUri == null) {
+ return Mono.error(new IllegalArgumentException("Parameter resourceUri is required and cannot be null."));
+ }
+ if (linkerName == null) {
+ return Mono.error(new IllegalArgumentException("Parameter linkerName is required and cannot be null."));
+ }
+ if (parameters == null) {
+ return Mono.error(new IllegalArgumentException("Parameter parameters is required and cannot be null."));
+ } else {
+ parameters.validate();
+ }
+ final String accept = "application/json";
+ context = this.client.mergeContext(context);
+ return service
+ .createOrUpdate(
+ this.client.getEndpoint(),
+ resourceUri,
+ this.client.getApiVersion(),
+ linkerName,
+ parameters,
+ accept,
+ context);
+ }
+
+ /**
+ * Create or update linker resource.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @param parameters Linker details.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the {@link PollerFlux} for polling of linker of source and target resource.
+ */
+ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
+ private PollerFlux, LinkerResourceInner> beginCreateOrUpdateAsync(
+ String resourceUri, String linkerName, LinkerResourceInner parameters) {
+ Mono>> mono = createOrUpdateWithResponseAsync(resourceUri, linkerName, parameters);
+ return this
+ .client
+ .getLroResult(
+ mono,
+ this.client.getHttpPipeline(),
+ LinkerResourceInner.class,
+ LinkerResourceInner.class,
+ this.client.getContext());
+ }
+
+ /**
+ * Create or update linker resource.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @param parameters Linker details.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the {@link PollerFlux} for polling of linker of source and target resource.
+ */
+ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
+ private PollerFlux, LinkerResourceInner> beginCreateOrUpdateAsync(
+ String resourceUri, String linkerName, LinkerResourceInner parameters, Context context) {
+ context = this.client.mergeContext(context);
+ Mono>> mono =
+ createOrUpdateWithResponseAsync(resourceUri, linkerName, parameters, context);
+ return this
+ .client
+ .getLroResult(
+ mono, this.client.getHttpPipeline(), LinkerResourceInner.class, LinkerResourceInner.class, context);
+ }
+
+ /**
+ * Create or update linker resource.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @param parameters Linker details.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the {@link SyncPoller} for polling of linker of source and target resource.
+ */
+ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
+ public SyncPoller, LinkerResourceInner> beginCreateOrUpdate(
+ String resourceUri, String linkerName, LinkerResourceInner parameters) {
+ return beginCreateOrUpdateAsync(resourceUri, linkerName, parameters).getSyncPoller();
+ }
+
+ /**
+ * Create or update linker resource.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @param parameters Linker details.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the {@link SyncPoller} for polling of linker of source and target resource.
+ */
+ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
+ public SyncPoller, LinkerResourceInner> beginCreateOrUpdate(
+ String resourceUri, String linkerName, LinkerResourceInner parameters, Context context) {
+ return beginCreateOrUpdateAsync(resourceUri, linkerName, parameters, context).getSyncPoller();
+ }
+
+ /**
+ * Create or update linker resource.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @param parameters Linker details.
+ * @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 linker of source and target resource on successful completion of {@link Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono createOrUpdateAsync(
+ String resourceUri, String linkerName, LinkerResourceInner parameters) {
+ return beginCreateOrUpdateAsync(resourceUri, linkerName, parameters)
+ .last()
+ .flatMap(this.client::getLroFinalResultOrError);
+ }
+
+ /**
+ * Create or update linker resource.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @param parameters Linker details.
+ * @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 linker of source and target resource on successful completion of {@link Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono createOrUpdateAsync(
+ String resourceUri, String linkerName, LinkerResourceInner parameters, Context context) {
+ return beginCreateOrUpdateAsync(resourceUri, linkerName, parameters, context)
+ .last()
+ .flatMap(this.client::getLroFinalResultOrError);
+ }
+
+ /**
+ * Create or update linker resource.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @param parameters Linker details.
+ * @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 linker of source and target resource.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ public LinkerResourceInner createOrUpdate(String resourceUri, String linkerName, LinkerResourceInner parameters) {
+ return createOrUpdateAsync(resourceUri, linkerName, parameters).block();
+ }
+
+ /**
+ * Create or update linker resource.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @param parameters Linker details.
+ * @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 linker of source and target resource.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ public LinkerResourceInner createOrUpdate(
+ String resourceUri, String linkerName, LinkerResourceInner parameters, Context context) {
+ return createOrUpdateAsync(resourceUri, linkerName, parameters, context).block();
+ }
+
+ /**
+ * Delete a link.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the {@link Response} on successful completion of {@link Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono>> deleteWithResponseAsync(String resourceUri, String linkerName) {
+ if (this.client.getEndpoint() == null) {
+ return Mono
+ .error(
+ new IllegalArgumentException(
+ "Parameter this.client.getEndpoint() is required and cannot be null."));
+ }
+ if (resourceUri == null) {
+ return Mono.error(new IllegalArgumentException("Parameter resourceUri is required and cannot be null."));
+ }
+ if (linkerName == null) {
+ return Mono.error(new IllegalArgumentException("Parameter linkerName is required and cannot be null."));
+ }
+ final String accept = "application/json";
+ return FluxUtil
+ .withContext(
+ context ->
+ service
+ .delete(
+ this.client.getEndpoint(),
+ resourceUri,
+ this.client.getApiVersion(),
+ linkerName,
+ accept,
+ context))
+ .contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
+ }
+
+ /**
+ * Delete a link.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the {@link Response} on successful completion of {@link Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono>> deleteWithResponseAsync(
+ String resourceUri, String linkerName, Context context) {
+ if (this.client.getEndpoint() == null) {
+ return Mono
+ .error(
+ new IllegalArgumentException(
+ "Parameter this.client.getEndpoint() is required and cannot be null."));
+ }
+ if (resourceUri == null) {
+ return Mono.error(new IllegalArgumentException("Parameter resourceUri is required and cannot be null."));
+ }
+ if (linkerName == null) {
+ return Mono.error(new IllegalArgumentException("Parameter linkerName is required and cannot be null."));
+ }
+ final String accept = "application/json";
+ context = this.client.mergeContext(context);
+ return service
+ .delete(this.client.getEndpoint(), resourceUri, this.client.getApiVersion(), linkerName, accept, context);
+ }
+
+ /**
+ * Delete a link.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the {@link PollerFlux} for polling of long-running operation.
+ */
+ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
+ private PollerFlux, Void> beginDeleteAsync(String resourceUri, String linkerName) {
+ Mono>> mono = deleteWithResponseAsync(resourceUri, linkerName);
+ return this
+ .client
+ .getLroResult(
+ mono, this.client.getHttpPipeline(), Void.class, Void.class, this.client.getContext());
+ }
+
+ /**
+ * Delete a link.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the {@link PollerFlux} for polling of long-running operation.
+ */
+ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
+ private PollerFlux, Void> beginDeleteAsync(
+ String resourceUri, String linkerName, Context context) {
+ context = this.client.mergeContext(context);
+ Mono>> mono = deleteWithResponseAsync(resourceUri, linkerName, context);
+ return this
+ .client
+ .getLroResult(mono, this.client.getHttpPipeline(), Void.class, Void.class, context);
+ }
+
+ /**
+ * Delete a link.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the {@link SyncPoller} for polling of long-running operation.
+ */
+ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
+ public SyncPoller, Void> beginDelete(String resourceUri, String linkerName) {
+ return beginDeleteAsync(resourceUri, linkerName).getSyncPoller();
+ }
+
+ /**
+ * Delete a link.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the {@link SyncPoller} for polling of long-running operation.
+ */
+ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
+ public SyncPoller, Void> beginDelete(String resourceUri, String linkerName, Context context) {
+ return beginDeleteAsync(resourceUri, linkerName, context).getSyncPoller();
+ }
+
+ /**
+ * Delete a link.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return A {@link Mono} that completes when a successful response is received.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono deleteAsync(String resourceUri, String linkerName) {
+ return beginDeleteAsync(resourceUri, linkerName).last().flatMap(this.client::getLroFinalResultOrError);
+ }
+
+ /**
+ * Delete a link.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return A {@link Mono} that completes when a successful response is received.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono deleteAsync(String resourceUri, String linkerName, Context context) {
+ return beginDeleteAsync(resourceUri, linkerName, context).last().flatMap(this.client::getLroFinalResultOrError);
+ }
+
+ /**
+ * Delete a link.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @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 delete(String resourceUri, String linkerName) {
+ deleteAsync(resourceUri, linkerName).block();
+ }
+
+ /**
+ * Delete a link.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @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 delete(String resourceUri, String linkerName, Context context) {
+ deleteAsync(resourceUri, linkerName, context).block();
+ }
+
+ /**
+ * Operation to update an existing link.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @param parameters Linker details.
+ * @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 linker of source and target resource along with {@link Response} on successful completion of {@link
+ * Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono>> updateWithResponseAsync(
+ String resourceUri, String linkerName, LinkerPatch parameters) {
+ if (this.client.getEndpoint() == null) {
+ return Mono
+ .error(
+ new IllegalArgumentException(
+ "Parameter this.client.getEndpoint() is required and cannot be null."));
+ }
+ if (resourceUri == null) {
+ return Mono.error(new IllegalArgumentException("Parameter resourceUri is required and cannot be null."));
+ }
+ if (linkerName == null) {
+ return Mono.error(new IllegalArgumentException("Parameter linkerName is required and cannot be null."));
+ }
+ if (parameters == null) {
+ return Mono.error(new IllegalArgumentException("Parameter parameters is required and cannot be null."));
+ } else {
+ parameters.validate();
+ }
+ final String accept = "application/json";
+ return FluxUtil
+ .withContext(
+ context ->
+ service
+ .update(
+ this.client.getEndpoint(),
+ resourceUri,
+ this.client.getApiVersion(),
+ linkerName,
+ parameters,
+ accept,
+ context))
+ .contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
+ }
+
+ /**
+ * Operation to update an existing link.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @param parameters Linker details.
+ * @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 linker of source and target resource along with {@link Response} on successful completion of {@link
+ * Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono>> updateWithResponseAsync(
+ String resourceUri, String linkerName, LinkerPatch parameters, Context context) {
+ if (this.client.getEndpoint() == null) {
+ return Mono
+ .error(
+ new IllegalArgumentException(
+ "Parameter this.client.getEndpoint() is required and cannot be null."));
+ }
+ if (resourceUri == null) {
+ return Mono.error(new IllegalArgumentException("Parameter resourceUri is required and cannot be null."));
+ }
+ if (linkerName == null) {
+ return Mono.error(new IllegalArgumentException("Parameter linkerName is required and cannot be null."));
+ }
+ if (parameters == null) {
+ return Mono.error(new IllegalArgumentException("Parameter parameters is required and cannot be null."));
+ } else {
+ parameters.validate();
+ }
+ final String accept = "application/json";
+ context = this.client.mergeContext(context);
+ return service
+ .update(
+ this.client.getEndpoint(),
+ resourceUri,
+ this.client.getApiVersion(),
+ linkerName,
+ parameters,
+ accept,
+ context);
+ }
+
+ /**
+ * Operation to update an existing link.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @param parameters Linker details.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the {@link PollerFlux} for polling of linker of source and target resource.
+ */
+ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
+ private PollerFlux, LinkerResourceInner> beginUpdateAsync(
+ String resourceUri, String linkerName, LinkerPatch parameters) {
+ Mono>> mono = updateWithResponseAsync(resourceUri, linkerName, parameters);
+ return this
+ .client
+ .getLroResult(
+ mono,
+ this.client.getHttpPipeline(),
+ LinkerResourceInner.class,
+ LinkerResourceInner.class,
+ this.client.getContext());
+ }
+
+ /**
+ * Operation to update an existing link.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @param parameters Linker details.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the {@link PollerFlux} for polling of linker of source and target resource.
+ */
+ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
+ private PollerFlux, LinkerResourceInner> beginUpdateAsync(
+ String resourceUri, String linkerName, LinkerPatch parameters, Context context) {
+ context = this.client.mergeContext(context);
+ Mono>> mono = updateWithResponseAsync(resourceUri, linkerName, parameters, context);
+ return this
+ .client
+ .getLroResult(
+ mono, this.client.getHttpPipeline(), LinkerResourceInner.class, LinkerResourceInner.class, context);
+ }
+
+ /**
+ * Operation to update an existing link.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @param parameters Linker details.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the {@link SyncPoller} for polling of linker of source and target resource.
+ */
+ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
+ public SyncPoller, LinkerResourceInner> beginUpdate(
+ String resourceUri, String linkerName, LinkerPatch parameters) {
+ return beginUpdateAsync(resourceUri, linkerName, parameters).getSyncPoller();
+ }
+
+ /**
+ * Operation to update an existing link.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @param parameters Linker details.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the {@link SyncPoller} for polling of linker of source and target resource.
+ */
+ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
+ public SyncPoller, LinkerResourceInner> beginUpdate(
+ String resourceUri, String linkerName, LinkerPatch parameters, Context context) {
+ return beginUpdateAsync(resourceUri, linkerName, parameters, context).getSyncPoller();
+ }
+
+ /**
+ * Operation to update an existing link.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @param parameters Linker details.
+ * @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 linker of source and target resource on successful completion of {@link Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono updateAsync(String resourceUri, String linkerName, LinkerPatch parameters) {
+ return beginUpdateAsync(resourceUri, linkerName, parameters)
+ .last()
+ .flatMap(this.client::getLroFinalResultOrError);
+ }
+
+ /**
+ * Operation to update an existing link.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @param parameters Linker details.
+ * @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 linker of source and target resource on successful completion of {@link Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono updateAsync(
+ String resourceUri, String linkerName, LinkerPatch parameters, Context context) {
+ return beginUpdateAsync(resourceUri, linkerName, parameters, context)
+ .last()
+ .flatMap(this.client::getLroFinalResultOrError);
+ }
+
+ /**
+ * Operation to update an existing link.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @param parameters Linker details.
+ * @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 linker of source and target resource.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ public LinkerResourceInner update(String resourceUri, String linkerName, LinkerPatch parameters) {
+ return updateAsync(resourceUri, linkerName, parameters).block();
+ }
+
+ /**
+ * Operation to update an existing link.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @param parameters Linker details.
+ * @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 linker of source and target resource.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ public LinkerResourceInner update(String resourceUri, String linkerName, LinkerPatch parameters, Context context) {
+ return updateAsync(resourceUri, linkerName, parameters, context).block();
+ }
+
+ /**
+ * Validate a link.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @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 validation result for a linker along with {@link Response} on successful completion of {@link Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono>> validateWithResponseAsync(String resourceUri, String linkerName) {
+ if (this.client.getEndpoint() == null) {
+ return Mono
+ .error(
+ new IllegalArgumentException(
+ "Parameter this.client.getEndpoint() is required and cannot be null."));
+ }
+ if (resourceUri == null) {
+ return Mono.error(new IllegalArgumentException("Parameter resourceUri is required and cannot be null."));
+ }
+ if (linkerName == null) {
+ return Mono.error(new IllegalArgumentException("Parameter linkerName is required and cannot be null."));
+ }
+ final String accept = "application/json";
+ return FluxUtil
+ .withContext(
+ context ->
+ service
+ .validate(
+ this.client.getEndpoint(),
+ resourceUri,
+ this.client.getApiVersion(),
+ linkerName,
+ accept,
+ context))
+ .contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
+ }
+
+ /**
+ * Validate a link.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @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 validation result for a linker along with {@link Response} on successful completion of {@link Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono>> validateWithResponseAsync(
+ String resourceUri, String linkerName, Context context) {
+ if (this.client.getEndpoint() == null) {
+ return Mono
+ .error(
+ new IllegalArgumentException(
+ "Parameter this.client.getEndpoint() is required and cannot be null."));
+ }
+ if (resourceUri == null) {
+ return Mono.error(new IllegalArgumentException("Parameter resourceUri is required and cannot be null."));
+ }
+ if (linkerName == null) {
+ return Mono.error(new IllegalArgumentException("Parameter linkerName is required and cannot be null."));
+ }
+ final String accept = "application/json";
+ context = this.client.mergeContext(context);
+ return service
+ .validate(this.client.getEndpoint(), resourceUri, this.client.getApiVersion(), linkerName, accept, context);
+ }
+
+ /**
+ * Validate a link.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the {@link PollerFlux} for polling of the validation result for a linker.
+ */
+ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
+ private PollerFlux, ValidateResultInner> beginValidateAsync(
+ String resourceUri, String linkerName) {
+ Mono>> mono = validateWithResponseAsync(resourceUri, linkerName);
+ return this
+ .client
+ .getLroResult(
+ mono,
+ this.client.getHttpPipeline(),
+ ValidateResultInner.class,
+ ValidateResultInner.class,
+ this.client.getContext());
+ }
+
+ /**
+ * Validate a link.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the {@link PollerFlux} for polling of the validation result for a linker.
+ */
+ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
+ private PollerFlux, ValidateResultInner> beginValidateAsync(
+ String resourceUri, String linkerName, Context context) {
+ context = this.client.mergeContext(context);
+ Mono>> mono = validateWithResponseAsync(resourceUri, linkerName, context);
+ return this
+ .client
+ .getLroResult(
+ mono, this.client.getHttpPipeline(), ValidateResultInner.class, ValidateResultInner.class, context);
+ }
+
+ /**
+ * Validate a link.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the {@link SyncPoller} for polling of the validation result for a linker.
+ */
+ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
+ public SyncPoller, ValidateResultInner> beginValidate(
+ String resourceUri, String linkerName) {
+ return beginValidateAsync(resourceUri, linkerName).getSyncPoller();
+ }
+
+ /**
+ * Validate a link.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @param context The context to associate with this operation.
+ * @throws IllegalArgumentException thrown if parameters fail the validation.
+ * @throws ManagementException thrown if the request is rejected by server.
+ * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
+ * @return the {@link SyncPoller} for polling of the validation result for a linker.
+ */
+ @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
+ public SyncPoller, ValidateResultInner> beginValidate(
+ String resourceUri, String linkerName, Context context) {
+ return beginValidateAsync(resourceUri, linkerName, context).getSyncPoller();
+ }
+
+ /**
+ * Validate a link.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @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 validation result for a linker on successful completion of {@link Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono validateAsync(String resourceUri, String linkerName) {
+ return beginValidateAsync(resourceUri, linkerName).last().flatMap(this.client::getLroFinalResultOrError);
+ }
+
+ /**
+ * Validate a link.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @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 validation result for a linker on successful completion of {@link Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono validateAsync(String resourceUri, String linkerName, Context context) {
+ return beginValidateAsync(resourceUri, linkerName, context)
+ .last()
+ .flatMap(this.client::getLroFinalResultOrError);
+ }
+
+ /**
+ * Validate a link.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @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 validation result for a linker.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ public ValidateResultInner validate(String resourceUri, String linkerName) {
+ return validateAsync(resourceUri, linkerName).block();
+ }
+
+ /**
+ * Validate a link.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @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 validation result for a linker.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ public ValidateResultInner validate(String resourceUri, String linkerName, Context context) {
+ return validateAsync(resourceUri, linkerName, context).block();
+ }
+
+ /**
+ * list source configurations for a linker.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @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 configurations for source resource, include appSettings, connectionString and serviceBindings along with
+ * {@link Response} on successful completion of {@link Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono> listConfigurationsWithResponseAsync(
+ String resourceUri, String linkerName) {
+ if (this.client.getEndpoint() == null) {
+ return Mono
+ .error(
+ new IllegalArgumentException(
+ "Parameter this.client.getEndpoint() is required and cannot be null."));
+ }
+ if (resourceUri == null) {
+ return Mono.error(new IllegalArgumentException("Parameter resourceUri is required and cannot be null."));
+ }
+ if (linkerName == null) {
+ return Mono.error(new IllegalArgumentException("Parameter linkerName is required and cannot be null."));
+ }
+ final String accept = "application/json";
+ return FluxUtil
+ .withContext(
+ context ->
+ service
+ .listConfigurations(
+ this.client.getEndpoint(),
+ resourceUri,
+ this.client.getApiVersion(),
+ linkerName,
+ accept,
+ context))
+ .contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
+ }
+
+ /**
+ * list source configurations for a linker.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @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 configurations for source resource, include appSettings, connectionString and serviceBindings along with
+ * {@link Response} on successful completion of {@link Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono> listConfigurationsWithResponseAsync(
+ String resourceUri, String linkerName, Context context) {
+ if (this.client.getEndpoint() == null) {
+ return Mono
+ .error(
+ new IllegalArgumentException(
+ "Parameter this.client.getEndpoint() is required and cannot be null."));
+ }
+ if (resourceUri == null) {
+ return Mono.error(new IllegalArgumentException("Parameter resourceUri is required and cannot be null."));
+ }
+ if (linkerName == null) {
+ return Mono.error(new IllegalArgumentException("Parameter linkerName is required and cannot be null."));
+ }
+ final String accept = "application/json";
+ context = this.client.mergeContext(context);
+ return service
+ .listConfigurations(
+ this.client.getEndpoint(), resourceUri, this.client.getApiVersion(), linkerName, accept, context);
+ }
+
+ /**
+ * list source configurations for a linker.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @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 configurations for source resource, include appSettings, connectionString and serviceBindings on
+ * successful completion of {@link Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono listConfigurationsAsync(String resourceUri, String linkerName) {
+ return listConfigurationsWithResponseAsync(resourceUri, linkerName)
+ .flatMap(
+ (Response res) -> {
+ if (res.getValue() != null) {
+ return Mono.just(res.getValue());
+ } else {
+ return Mono.empty();
+ }
+ });
+ }
+
+ /**
+ * list source configurations for a linker.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @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 configurations for source resource, include appSettings, connectionString and serviceBindings.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ public SourceConfigurationResultInner listConfigurations(String resourceUri, String linkerName) {
+ return listConfigurationsAsync(resourceUri, linkerName).block();
+ }
+
+ /**
+ * list source configurations for a linker.
+ *
+ * @param resourceUri The fully qualified Azure Resource manager identifier of the resource to be connected.
+ * @param linkerName The name Linker resource.
+ * @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 configurations for source resource, include appSettings, connectionString and serviceBindings along with
+ * {@link Response}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ public Response listConfigurationsWithResponse(
+ String resourceUri, String linkerName, Context context) {
+ return listConfigurationsWithResponseAsync(resourceUri, linkerName, 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 list of Linker along with {@link PagedResponse} on successful completion of {@link Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono> listNextSinglePageAsync(String nextLink) {
+ if (nextLink == null) {
+ return Mono.error(new IllegalArgumentException("Parameter nextLink is required and cannot be null."));
+ }
+ if (this.client.getEndpoint() == null) {
+ return Mono
+ .error(
+ new IllegalArgumentException(
+ "Parameter this.client.getEndpoint() is required and cannot be null."));
+ }
+ final String accept = "application/json";
+ return FluxUtil
+ .withContext(context -> service.listNext(nextLink, this.client.getEndpoint(), accept, context))
+ .>map(
+ res ->
+ new PagedResponseBase<>(
+ res.getRequest(),
+ res.getStatusCode(),
+ res.getHeaders(),
+ res.getValue().value(),
+ res.getValue().nextLink(),
+ null))
+ .contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
+ }
+
+ /**
+ * Get the next page of items.
+ *
+ * @param nextLink The 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 list of Linker along with {@link PagedResponse} on successful completion of {@link Mono}.
+ */
+ @ServiceMethod(returns = ReturnType.SINGLE)
+ private Mono> listNextSinglePageAsync(String nextLink, Context context) {
+ if (nextLink == null) {
+ return Mono.error(new IllegalArgumentException("Parameter nextLink is required and cannot be null."));
+ }
+ if (this.client.getEndpoint() == null) {
+ return Mono
+ .error(
+ new IllegalArgumentException(
+ "Parameter this.client.getEndpoint() is required and cannot be null."));
+ }
+ final String accept = "application/json";
+ context = this.client.mergeContext(context);
+ return service
+ .listNext(nextLink, this.client.getEndpoint(), accept, context)
+ .map(
+ res ->
+ new PagedResponseBase<>(
+ res.getRequest(),
+ res.getStatusCode(),
+ res.getHeaders(),
+ res.getValue().value(),
+ res.getValue().nextLink(),
+ null));
+ }
+}
diff --git a/sdk/servicelinker/azure-resourcemanager-servicelinker/src/main/java/com/azure/resourcemanager/servicelinker/implementation/LinkersImpl.java b/sdk/servicelinker/azure-resourcemanager-servicelinker/src/main/java/com/azure/resourcemanager/servicelinker/implementation/LinkersImpl.java
new file mode 100644
index 0000000000000..89ec255383d65
--- /dev/null
+++ b/sdk/servicelinker/azure-resourcemanager-servicelinker/src/main/java/com/azure/resourcemanager/servicelinker/implementation/LinkersImpl.java
@@ -0,0 +1,223 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+package com.azure.resourcemanager.servicelinker.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.util.Context;
+import com.azure.core.util.logging.ClientLogger;
+import com.azure.resourcemanager.servicelinker.fluent.LinkersClient;
+import com.azure.resourcemanager.servicelinker.fluent.models.LinkerResourceInner;
+import com.azure.resourcemanager.servicelinker.fluent.models.SourceConfigurationResultInner;
+import com.azure.resourcemanager.servicelinker.fluent.models.ValidateResultInner;
+import com.azure.resourcemanager.servicelinker.models.LinkerResource;
+import com.azure.resourcemanager.servicelinker.models.Linkers;
+import com.azure.resourcemanager.servicelinker.models.SourceConfigurationResult;
+import com.azure.resourcemanager.servicelinker.models.ValidateResult;
+
+public final class LinkersImpl implements Linkers {
+ private static final ClientLogger LOGGER = new ClientLogger(LinkersImpl.class);
+
+ private final LinkersClient innerClient;
+
+ private final com.azure.resourcemanager.servicelinker.ServicelinkerManager serviceManager;
+
+ public LinkersImpl(
+ LinkersClient innerClient, com.azure.resourcemanager.servicelinker.ServicelinkerManager serviceManager) {
+ this.innerClient = innerClient;
+ this.serviceManager = serviceManager;
+ }
+
+ public PagedIterable list(String resourceUri) {
+ PagedIterable inner = this.serviceClient().list(resourceUri);
+ return Utils.mapPage(inner, inner1 -> new LinkerResourceImpl(inner1, this.manager()));
+ }
+
+ public PagedIterable list(String resourceUri, Context context) {
+ PagedIterable inner = this.serviceClient().list(resourceUri, context);
+ return Utils.mapPage(inner, inner1 -> new LinkerResourceImpl(inner1, this.manager()));
+ }
+
+ public LinkerResource get(String resourceUri, String linkerName) {
+ LinkerResourceInner inner = this.serviceClient().get(resourceUri, linkerName);
+ if (inner != null) {
+ return new LinkerResourceImpl(inner, this.manager());
+ } else {
+ return null;
+ }
+ }
+
+ public Response getWithResponse(String resourceUri, String linkerName, Context context) {
+ Response inner = this.serviceClient().getWithResponse(resourceUri, linkerName, context);
+ if (inner != null) {
+ return new SimpleResponse<>(
+ inner.getRequest(),
+ inner.getStatusCode(),
+ inner.getHeaders(),
+ new LinkerResourceImpl(inner.getValue(), this.manager()));
+ } else {
+ return null;
+ }
+ }
+
+ public void deleteByResourceGroup(String resourceUri, String linkerName) {
+ this.serviceClient().delete(resourceUri, linkerName);
+ }
+
+ public void delete(String resourceUri, String linkerName, Context context) {
+ this.serviceClient().delete(resourceUri, linkerName, context);
+ }
+
+ public ValidateResult validate(String resourceUri, String linkerName) {
+ ValidateResultInner inner = this.serviceClient().validate(resourceUri, linkerName);
+ if (inner != null) {
+ return new ValidateResultImpl(inner, this.manager());
+ } else {
+ return null;
+ }
+ }
+
+ public ValidateResult validate(String resourceUri, String linkerName, Context context) {
+ ValidateResultInner inner = this.serviceClient().validate(resourceUri, linkerName, context);
+ if (inner != null) {
+ return new ValidateResultImpl(inner, this.manager());
+ } else {
+ return null;
+ }
+ }
+
+ public SourceConfigurationResult listConfigurations(String resourceUri, String linkerName) {
+ SourceConfigurationResultInner inner = this.serviceClient().listConfigurations(resourceUri, linkerName);
+ if (inner != null) {
+ return new SourceConfigurationResultImpl(inner, this.manager());
+ } else {
+ return null;
+ }
+ }
+
+ public Response listConfigurationsWithResponse(
+ String resourceUri, String linkerName, Context context) {
+ Response inner =
+ this.serviceClient().listConfigurationsWithResponse(resourceUri, linkerName, context);
+ if (inner != null) {
+ return new SimpleResponse<>(
+ inner.getRequest(),
+ inner.getStatusCode(),
+ inner.getHeaders(),
+ new SourceConfigurationResultImpl(inner.getValue(), this.manager()));
+ } else {
+ return null;
+ }
+ }
+
+ public LinkerResource getById(String id) {
+ String resourceUri =
+ Utils
+ .getValueFromIdByParameterName(
+ id, "/{resourceUri}/providers/Microsoft.ServiceLinker/linkers/{linkerName}", "resourceUri");
+ if (resourceUri == null) {
+ throw LOGGER
+ .logExceptionAsError(
+ new IllegalArgumentException(
+ String.format("The resource ID '%s' is not valid. Missing path segment 'resourceUri'.", id)));
+ }
+ String linkerName =
+ Utils
+ .getValueFromIdByParameterName(
+ id, "/{resourceUri}/providers/Microsoft.ServiceLinker/linkers/{linkerName}", "linkerName");
+ if (linkerName == null) {
+ throw LOGGER
+ .logExceptionAsError(
+ new IllegalArgumentException(
+ String.format("The resource ID '%s' is not valid. Missing path segment 'linkers'.", id)));
+ }
+ return this.getWithResponse(resourceUri, linkerName, Context.NONE).getValue();
+ }
+
+ public Response getByIdWithResponse(String id, Context context) {
+ String resourceUri =
+ Utils
+ .getValueFromIdByParameterName(
+ id, "/{resourceUri}/providers/Microsoft.ServiceLinker/linkers/{linkerName}", "resourceUri");
+ if (resourceUri == null) {
+ throw LOGGER
+ .logExceptionAsError(
+ new IllegalArgumentException(
+ String.format("The resource ID '%s' is not valid. Missing path segment 'resourceUri'.", id)));
+ }
+ String linkerName =
+ Utils
+ .getValueFromIdByParameterName(
+ id, "/{resourceUri}/providers/Microsoft.ServiceLinker/linkers/{linkerName}", "linkerName");
+ if (linkerName == null) {
+ throw LOGGER
+ .logExceptionAsError(
+ new IllegalArgumentException(
+ String.format("The resource ID '%s' is not valid. Missing path segment 'linkers'.", id)));
+ }
+ return this.getWithResponse(resourceUri, linkerName, context);
+ }
+
+ public void deleteById(String id) {
+ String resourceUri =
+ Utils
+ .getValueFromIdByParameterName(
+ id, "/{resourceUri}/providers/Microsoft.ServiceLinker/linkers/{linkerName}", "resourceUri");
+ if (resourceUri == null) {
+ throw LOGGER
+ .logExceptionAsError(
+ new IllegalArgumentException(
+ String.format("The resource ID '%s' is not valid. Missing path segment 'resourceUri'.", id)));
+ }
+ String linkerName =
+ Utils
+ .getValueFromIdByParameterName(
+ id, "/{resourceUri}/providers/Microsoft.ServiceLinker/linkers/{linkerName}", "linkerName");
+ if (linkerName == null) {
+ throw LOGGER
+ .logExceptionAsError(
+ new IllegalArgumentException(
+ String.format("The resource ID '%s' is not valid. Missing path segment 'linkers'.", id)));
+ }
+ this.delete(resourceUri, linkerName, Context.NONE);
+ }
+
+ public void deleteByIdWithResponse(String id, Context context) {
+ String resourceUri =
+ Utils
+ .getValueFromIdByParameterName(
+ id, "/{resourceUri}/providers/Microsoft.ServiceLinker/linkers/{linkerName}", "resourceUri");
+ if (resourceUri == null) {
+ throw LOGGER
+ .logExceptionAsError(
+ new IllegalArgumentException(
+ String.format("The resource ID '%s' is not valid. Missing path segment 'resourceUri'.", id)));
+ }
+ String linkerName =
+ Utils
+ .getValueFromIdByParameterName(
+ id, "/{resourceUri}/providers/Microsoft.ServiceLinker/linkers/{linkerName}", "linkerName");
+ if (linkerName == null) {
+ throw LOGGER
+ .logExceptionAsError(
+ new IllegalArgumentException(
+ String.format("The resource ID '%s' is not valid. Missing path segment 'linkers'.", id)));
+ }
+ this.delete(resourceUri, linkerName, context);
+ }
+
+ private LinkersClient serviceClient() {
+ return this.innerClient;
+ }
+
+ private com.azure.resourcemanager.servicelinker.ServicelinkerManager manager() {
+ return this.serviceManager;
+ }
+
+ public LinkerResourceImpl define(String name) {
+ return new LinkerResourceImpl(name, this.manager());
+ }
+}
diff --git a/sdk/servicelinker/azure-resourcemanager-servicelinker/src/main/java/com/azure/resourcemanager/servicelinker/implementation/MicrosoftServiceLinkerBuilder.java b/sdk/servicelinker/azure-resourcemanager-servicelinker/src/main/java/com/azure/resourcemanager/servicelinker/implementation/MicrosoftServiceLinkerBuilder.java
new file mode 100644
index 0000000000000..88ae7cd2f1f21
--- /dev/null
+++ b/sdk/servicelinker/azure-resourcemanager-servicelinker/src/main/java/com/azure/resourcemanager/servicelinker/implementation/MicrosoftServiceLinkerBuilder.java
@@ -0,0 +1,129 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+package com.azure.resourcemanager.servicelinker.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 MicrosoftServiceLinkerImpl type. */
+@ServiceClientBuilder(serviceClients = {MicrosoftServiceLinkerImpl.class})
+public final class MicrosoftServiceLinkerBuilder {
+ /*
+ * server parameter
+ */
+ private String endpoint;
+
+ /**
+ * Sets server parameter.
+ *
+ * @param endpoint the endpoint value.
+ * @return the MicrosoftServiceLinkerBuilder.
+ */
+ public MicrosoftServiceLinkerBuilder 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 MicrosoftServiceLinkerBuilder.
+ */
+ public MicrosoftServiceLinkerBuilder 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 MicrosoftServiceLinkerBuilder.
+ */
+ public MicrosoftServiceLinkerBuilder 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 MicrosoftServiceLinkerBuilder.
+ */
+ public MicrosoftServiceLinkerBuilder 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 MicrosoftServiceLinkerBuilder.
+ */
+ public MicrosoftServiceLinkerBuilder serializerAdapter(SerializerAdapter serializerAdapter) {
+ this.serializerAdapter = serializerAdapter;
+ return this;
+ }
+
+ /**
+ * Builds an instance of MicrosoftServiceLinkerImpl with the provided parameters.
+ *
+ * @return an instance of MicrosoftServiceLinkerImpl.
+ */
+ public MicrosoftServiceLinkerImpl 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();
+ }
+ MicrosoftServiceLinkerImpl client =
+ new MicrosoftServiceLinkerImpl(pipeline, serializerAdapter, defaultPollInterval, environment, endpoint);
+ return client;
+ }
+}
diff --git a/sdk/servicelinker/azure-resourcemanager-servicelinker/src/main/java/com/azure/resourcemanager/servicelinker/implementation/MicrosoftServiceLinkerImpl.java b/sdk/servicelinker/azure-resourcemanager-servicelinker/src/main/java/com/azure/resourcemanager/servicelinker/implementation/MicrosoftServiceLinkerImpl.java
new file mode 100644
index 0000000000000..0f9728cf5c4de
--- /dev/null
+++ b/sdk/servicelinker/azure-resourcemanager-servicelinker/src/main/java/com/azure/resourcemanager/servicelinker/implementation/MicrosoftServiceLinkerImpl.java
@@ -0,0 +1,292 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+// Code generated by Microsoft (R) AutoRest Code Generator.
+
+package com.azure.resourcemanager.servicelinker.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.servicelinker.fluent.LinkersClient;
+import com.azure.resourcemanager.servicelinker.fluent.MicrosoftServiceLinker;
+import com.azure.resourcemanager.servicelinker.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 MicrosoftServiceLinkerImpl type. */
+@ServiceClient(builder = MicrosoftServiceLinkerBuilder.class)
+public final class MicrosoftServiceLinkerImpl implements MicrosoftServiceLinker {
+ /** 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 LinkersClient object to access its operations. */
+ private final LinkersClient linkers;
+
+ /**
+ * Gets the LinkersClient object to access its operations.
+ *
+ * @return the LinkersClient object.
+ */
+ public LinkersClient getLinkers() {
+ return this.linkers;
+ }
+
+ /** 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 MicrosoftServiceLinker 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 endpoint server parameter.
+ */
+ MicrosoftServiceLinkerImpl(
+ HttpPipeline httpPipeline,
+ SerializerAdapter serializerAdapter,
+ Duration defaultPollInterval,
+ AzureEnvironment environment,
+ String endpoint) {
+ this.httpPipeline = httpPipeline;
+ this.serializerAdapter = serializerAdapter;
+ this.defaultPollInterval = defaultPollInterval;
+ this.endpoint = endpoint;
+ this.apiVersion = "2022-01-01-preview";
+ this.linkers = new LinkersClientImpl(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