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
3 changes: 2 additions & 1 deletion sdk/signalr/azure-resourcemanager-signalr/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# Release History

## 1.0.0-beta.3 (Unreleased)
## 1.0.0-beta.1 (2021-07-30)

- Azure Resource Manager SignalR client library for Java. This package contains Microsoft Azure SDK for SignalR Management SDK. REST API for Azure SignalR Service. Package tag package-2021-06-01-preview. For documentation on how to use this package, please see [Azure Management Libraries for Java](https://aka.ms/azsdk/java/mgmt).

## 1.0.0-beta.2 (2021-07-09)

Expand Down
3 changes: 1 addition & 2 deletions sdk/signalr/azure-resourcemanager-signalr/README.md
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-signalr</artifactId>
<version>1.0.0-beta.2</version>
<version>1.0.0-beta.3</version>
</dependency>
```
[//]: # ({x-version-update-end})
Expand Down Expand Up @@ -74,7 +74,6 @@ See [API design][design] for general introduction on design and key concepts on

## Examples

[Code snippets and samples](https://github.com/Azure/azure-sdk-for-java/blob/main/sdk/signalr/azure-resourcemanager-signalr/SAMPLE.md)


## Troubleshooting
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ public SignalRManager authenticate(TokenCredential credential, AzureProfile prof
.append("-")
.append("com.azure.resourcemanager.signalr")
.append("/")
.append("1.0.0-beta.2");
.append("1.0.0-beta.1");
if (!Configuration.getGlobalConfiguration().get("AZURE_TELEMETRY_DISABLED", false)) {
userAgentBuilder
.append(" (")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ public class SignalRResourceInner extends Resource {
private Boolean disableLocalAuth;

/*
* disableAadAuth
* DisableLocalAuth
* Enable or disable aad auth
* When set as true, connection with AuthType=aad won't work.
*/
Expand Down Expand Up @@ -468,7 +468,7 @@ public SignalRResourceInner withDisableLocalAuth(Boolean disableLocalAuth) {
}

/**
* Get the disableAadAuth property: disableAadAuth Enable or disable aad auth When set as true, connection with
* Get the disableAadAuth property: DisableLocalAuth Enable or disable aad auth When set as true, connection with
* AuthType=aad won't work.
*
* @return the disableAadAuth value.
Expand All @@ -478,7 +478,7 @@ public Boolean disableAadAuth() {
}

/**
* Set the disableAadAuth property: disableAadAuth Enable or disable aad auth When set as true, connection with
* Set the disableAadAuth property: DisableLocalAuth Enable or disable aad auth When set as true, connection with
* AuthType=aad won't work.
*
* @param disableAadAuth the disableAadAuth value to set.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import com.azure.core.annotation.Fluent;
import com.azure.core.util.logging.ClientLogger;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Map;

Expand All @@ -25,6 +26,7 @@ public class ManagedIdentity {
* Get or set the user assigned identities
*/
@JsonProperty(value = "userAssignedIdentities")
@JsonInclude(value = JsonInclude.Include.NON_NULL, content = JsonInclude.Include.ALWAYS)
private Map<String, UserAssignedIdentityProperty> userAssignedIdentities;

/*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import com.azure.core.annotation.Fluent;
import com.azure.core.util.logging.ClientLogger;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Map;

Expand Down Expand Up @@ -47,6 +48,7 @@ public final class SignalRFeature {
* Optional properties related to this feature.
*/
@JsonProperty(value = "properties")
@JsonInclude(value = JsonInclude.Include.NON_NULL, content = JsonInclude.Include.ALWAYS)
private Map<String, String> properties;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ public interface SignalRResource {
Boolean disableLocalAuth();

/**
* Gets the disableAadAuth property: disableAadAuth Enable or disable aad auth When set as true, connection with
* Gets the disableAadAuth property: DisableLocalAuth Enable or disable aad auth When set as true, connection with
* AuthType=aad won't work.
*
* @return the disableAadAuth value.
Expand Down Expand Up @@ -423,10 +423,10 @@ interface WithDisableLocalAuth {
/** The stage of the SignalRResource definition allowing to specify disableAadAuth. */
interface WithDisableAadAuth {
/**
* Specifies the disableAadAuth property: disableAadAuth Enable or disable aad auth When set as true,
* Specifies the disableAadAuth property: DisableLocalAuth Enable or disable aad auth When set as true,
* connection with AuthType=aad won't work..
*
* @param disableAadAuth disableAadAuth Enable or disable aad auth When set as true, connection with
* @param disableAadAuth DisableLocalAuth Enable or disable aad auth When set as true, connection with
* AuthType=aad won't work.
* @return the next definition stage.
*/
Expand Down Expand Up @@ -588,10 +588,10 @@ interface WithDisableLocalAuth {
/** The stage of the SignalRResource update allowing to specify disableAadAuth. */
interface WithDisableAadAuth {
/**
* Specifies the disableAadAuth property: disableAadAuth Enable or disable aad auth When set as true,
* Specifies the disableAadAuth property: DisableLocalAuth Enable or disable aad auth When set as true,
* connection with AuthType=aad won't work..
*
* @param disableAadAuth disableAadAuth Enable or disable aad auth When set as true, connection with
* @param disableAadAuth DisableLocalAuth Enable or disable aad auth When set as true, connection with
* AuthType=aad won't work.
* @return the next definition stage.
*/
Expand Down