Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Release History

## 1.0.0-beta.2 (Unreleased)
## 1.0.0-beta.1 (2022-04-27)

- 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-05-01. For documentation on how to use this package, please see [Azure Management Libraries for Java](https://aka.ms/azsdk/java/mgmt).

### Features Added

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Various documentation is available to help you get started
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-servicelinker</artifactId>
<version>1.0.0-beta.1</version>
<version>1.0.0-beta.2</version>
</dependency>
```
[//]: # ({x-version-update-end})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,6 @@ public ServiceLinkerManagementClientBuilder serializerAdapter(SerializerAdapter
* @return an instance of ServiceLinkerManagementClientImpl.
*/
public ServiceLinkerManagementClientImpl buildClient() {
if (pipeline == null) {
this.pipeline = new HttpPipelineBuilder().policies(new UserAgentPolicy(), new RetryPolicy()).build();
}
if (endpoint == null) {
this.endpoint = "https://management.azure.com";
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
// 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.models;

import com.azure.core.util.ExpandableStringEnum;
import com.fasterxml.jackson.annotation.JsonCreator;
import java.util.Collection;

/** Defines values for AzureResourceType. */
public final class AzureResourceType extends ExpandableStringEnum<AzureResourceType> {
/** Static value KeyVault for AzureResourceType. */
public static final AzureResourceType KEY_VAULT = fromString("KeyVault");

/**
* Creates or finds a AzureResourceType from its string representation.
*
* @param name a name to look for.
* @return the corresponding AzureResourceType.
*/
@JsonCreator
public static AzureResourceType fromString(String name) {
return fromString(name, AzureResourceType.class);
}

/** @return known AzureResourceType values. */
public static Collection<AzureResourceType> values() {
return values(AzureResourceType.class);
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.

package com.azure.resourcemanager.servicelinker.models;

import com.azure.core.util.ExpandableStringEnum;
import com.fasterxml.jackson.annotation.JsonCreator;
import java.util.Collection;

/** Defines values for TargetServiceType. */
public final class TargetServiceType extends ExpandableStringEnum<TargetServiceType> {
/** Static value AzureResource for TargetServiceType. */
public static final TargetServiceType AZURE_RESOURCE = fromString("AzureResource");

/** Static value ConfluentBootstrapServer for TargetServiceType. */
public static final TargetServiceType CONFLUENT_BOOTSTRAP_SERVER = fromString("ConfluentBootstrapServer");

/** Static value ConfluentSchemaRegistry for TargetServiceType. */
public static final TargetServiceType CONFLUENT_SCHEMA_REGISTRY = fromString("ConfluentSchemaRegistry");

/**
* Creates or finds a TargetServiceType from its string representation.
*
* @param name a name to look for.
* @return the corresponding TargetServiceType.
*/
@JsonCreator
public static TargetServiceType fromString(String name) {
return fromString(name, TargetServiceType.class);
}

/** @return known TargetServiceType values. */
public static Collection<TargetServiceType> values() {
return values(TargetServiceType.class);
}
}

This file was deleted.