Skip to content

Commit cf75709

Browse files
author
SDKAuto
committed
CodeGen from PR 17323 in Azure/azure-rest-api-specs
Merge 18d807f0735c14235135cf3da5e126df6c31ed87 into 8e4746332979ed6ff3577bdc97dd2065a7577598
1 parent 3cfe389 commit cf75709

26 files changed

+173
-177
lines changed

sdk/signalr/azure-resourcemanager-signalr/CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Release History
22

3-
## 1.0.0-beta.4 (Unreleased)
3+
## 1.0.0-beta.1 (2022-01-13)
4+
5+
- 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-10-01. For documentation on how to use this package, please see [Azure Management Libraries for Java](https://aka.ms/azsdk/java/mgmt).
46

57
### Features Added
68

sdk/signalr/azure-resourcemanager-signalr/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Various documentation is available to help you get started
3232
<dependency>
3333
<groupId>com.azure.resourcemanager</groupId>
3434
<artifactId>azure-resourcemanager-signalr</artifactId>
35-
<version>1.0.0-beta.3</version>
35+
<version>1.0.0-beta.4</version>
3636
</dependency>
3737
```
3838
[//]: # ({x-version-update-end})

sdk/signalr/azure-resourcemanager-signalr/pom.xml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,4 +55,27 @@
5555
<version>1.5.1</version> <!-- {x-version-update;com.azure:azure-core-management;dependency} -->
5656
</dependency>
5757
</dependencies>
58+
<build>
59+
<plugins>
60+
<plugin>
61+
<groupId>org.revapi</groupId>
62+
<artifactId>revapi-maven-plugin</artifactId>
63+
<version>0.14.6</version> <!-- {x-version-update;org.revapi:revapi-maven-plugin;external_dependency} -->
64+
<configuration>
65+
<analysisConfiguration>
66+
<revapi.ignore>
67+
<item>
68+
<code>java.method.addedToInterface</code>
69+
</item>
70+
<item>
71+
<regex>true</regex>
72+
<code>.*</code>
73+
<package>com\.azure\.resourcemanager(\.[^.]+)+\.fluent(\.[^.]+)*</package>
74+
</item>
75+
</revapi.ignore>
76+
</analysisConfiguration>
77+
</configuration>
78+
</plugin>
79+
</plugins>
80+
</build>
5881
</project>

sdk/signalr/azure-resourcemanager-signalr/src/main/java/com/azure/resourcemanager/signalr/SignalRManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ public SignalRManager authenticate(TokenCredential credential, AzureProfile prof
192192
.append("-")
193193
.append("com.azure.resourcemanager.signalr")
194194
.append("/")
195-
.append("1.0.0-beta.3");
195+
.append("1.0.0-beta.1");
196196
if (!Configuration.getGlobalConfiguration().get("AZURE_TELEMETRY_DISABLED", false)) {
197197
userAgentBuilder
198198
.append(" (")

sdk/signalr/azure-resourcemanager-signalr/src/main/java/com/azure/resourcemanager/signalr/fluent/models/OperationInner.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public final class OperationInner {
2929
private Boolean isDataAction;
3030

3131
/*
32-
* The object that describes the operation.
32+
* The object that describes a operation.
3333
*/
3434
@JsonProperty(value = "display")
3535
private OperationDisplay display;
@@ -42,7 +42,7 @@ public final class OperationInner {
4242
private String origin;
4343

4444
/*
45-
* Extra properties for the operation.
45+
* Extra Operation properties.
4646
*/
4747
@JsonProperty(value = "properties")
4848
private OperationProperties properties;
@@ -88,7 +88,7 @@ public OperationInner withIsDataAction(Boolean isDataAction) {
8888
}
8989

9090
/**
91-
* Get the display property: The object that describes the operation.
91+
* Get the display property: The object that describes a operation.
9292
*
9393
* @return the display value.
9494
*/
@@ -97,7 +97,7 @@ public OperationDisplay display() {
9797
}
9898

9999
/**
100-
* Set the display property: The object that describes the operation.
100+
* Set the display property: The object that describes a operation.
101101
*
102102
* @param display the display value to set.
103103
* @return the OperationInner object itself.
@@ -130,7 +130,7 @@ public OperationInner withOrigin(String origin) {
130130
}
131131

132132
/**
133-
* Get the properties property: Extra properties for the operation.
133+
* Get the properties property: Extra Operation properties.
134134
*
135135
* @return the properties value.
136136
*/
@@ -139,7 +139,7 @@ public OperationProperties properties() {
139139
}
140140

141141
/**
142-
* Set the properties property: Extra properties for the operation.
142+
* Set the properties property: Extra Operation properties.
143143
*
144144
* @param properties the properties value to set.
145145
* @return the OperationInner object itself.

sdk/signalr/azure-resourcemanager-signalr/src/main/java/com/azure/resourcemanager/signalr/fluent/models/PrivateEndpointConnectionInner.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public final class PrivateEndpointConnectionInner extends ProxyResource {
2727
private SystemData systemData;
2828

2929
/*
30-
* Properties of the private endpoint connection
30+
* Private endpoint connection properties
3131
*/
3232
@JsonProperty(value = "properties")
3333
private PrivateEndpointConnectionProperties innerProperties;
@@ -42,7 +42,7 @@ public SystemData systemData() {
4242
}
4343

4444
/**
45-
* Get the innerProperties property: Properties of the private endpoint connection.
45+
* Get the innerProperties property: Private endpoint connection properties.
4646
*
4747
* @return the innerProperties value.
4848
*/
@@ -51,7 +51,7 @@ private PrivateEndpointConnectionProperties innerProperties() {
5151
}
5252

5353
/**
54-
* Get the provisioningState property: Provisioning state of the private endpoint connection.
54+
* Get the provisioningState property: Provisioning state of the resource.
5555
*
5656
* @return the provisioningState value.
5757
*/
@@ -60,7 +60,7 @@ public ProvisioningState provisioningState() {
6060
}
6161

6262
/**
63-
* Get the privateEndpoint property: Private endpoint associated with the private endpoint connection.
63+
* Get the privateEndpoint property: Private endpoint.
6464
*
6565
* @return the privateEndpoint value.
6666
*/
@@ -69,7 +69,7 @@ public PrivateEndpoint privateEndpoint() {
6969
}
7070

7171
/**
72-
* Set the privateEndpoint property: Private endpoint associated with the private endpoint connection.
72+
* Set the privateEndpoint property: Private endpoint.
7373
*
7474
* @param privateEndpoint the privateEndpoint value to set.
7575
* @return the PrivateEndpointConnectionInner object itself.
@@ -92,7 +92,7 @@ public List<String> groupIds() {
9292
}
9393

9494
/**
95-
* Get the privateLinkServiceConnectionState property: Connection state.
95+
* Get the privateLinkServiceConnectionState property: Connection state of the private endpoint connection.
9696
*
9797
* @return the privateLinkServiceConnectionState value.
9898
*/
@@ -101,7 +101,7 @@ public PrivateLinkServiceConnectionState privateLinkServiceConnectionState() {
101101
}
102102

103103
/**
104-
* Set the privateLinkServiceConnectionState property: Connection state.
104+
* Set the privateLinkServiceConnectionState property: Connection state of the private endpoint connection.
105105
*
106106
* @param privateLinkServiceConnectionState the privateLinkServiceConnectionState value to set.
107107
* @return the PrivateEndpointConnectionInner object itself.

sdk/signalr/azure-resourcemanager-signalr/src/main/java/com/azure/resourcemanager/signalr/fluent/models/PrivateEndpointConnectionProperties.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ public final class PrivateEndpointConnectionProperties {
1919
@JsonIgnore private final ClientLogger logger = new ClientLogger(PrivateEndpointConnectionProperties.class);
2020

2121
/*
22-
* Provisioning state of the private endpoint connection
22+
* Provisioning state of the resource.
2323
*/
2424
@JsonProperty(value = "provisioningState", access = JsonProperty.Access.WRITE_ONLY)
2525
private ProvisioningState provisioningState;
2626

2727
/*
28-
* Private endpoint associated with the private endpoint connection
28+
* Private endpoint
2929
*/
3030
@JsonProperty(value = "privateEndpoint")
3131
private PrivateEndpoint privateEndpoint;
@@ -37,13 +37,13 @@ public final class PrivateEndpointConnectionProperties {
3737
private List<String> groupIds;
3838

3939
/*
40-
* Connection state
40+
* Connection state of the private endpoint connection
4141
*/
4242
@JsonProperty(value = "privateLinkServiceConnectionState")
4343
private PrivateLinkServiceConnectionState privateLinkServiceConnectionState;
4444

4545
/**
46-
* Get the provisioningState property: Provisioning state of the private endpoint connection.
46+
* Get the provisioningState property: Provisioning state of the resource.
4747
*
4848
* @return the provisioningState value.
4949
*/
@@ -52,7 +52,7 @@ public ProvisioningState provisioningState() {
5252
}
5353

5454
/**
55-
* Get the privateEndpoint property: Private endpoint associated with the private endpoint connection.
55+
* Get the privateEndpoint property: Private endpoint.
5656
*
5757
* @return the privateEndpoint value.
5858
*/
@@ -61,7 +61,7 @@ public PrivateEndpoint privateEndpoint() {
6161
}
6262

6363
/**
64-
* Set the privateEndpoint property: Private endpoint associated with the private endpoint connection.
64+
* Set the privateEndpoint property: Private endpoint.
6565
*
6666
* @param privateEndpoint the privateEndpoint value to set.
6767
* @return the PrivateEndpointConnectionProperties object itself.
@@ -81,7 +81,7 @@ public List<String> groupIds() {
8181
}
8282

8383
/**
84-
* Get the privateLinkServiceConnectionState property: Connection state.
84+
* Get the privateLinkServiceConnectionState property: Connection state of the private endpoint connection.
8585
*
8686
* @return the privateLinkServiceConnectionState value.
8787
*/
@@ -90,7 +90,7 @@ public PrivateLinkServiceConnectionState privateLinkServiceConnectionState() {
9090
}
9191

9292
/**
93-
* Set the privateLinkServiceConnectionState property: Connection state.
93+
* Set the privateLinkServiceConnectionState property: Connection state of the private endpoint connection.
9494
*
9595
* @param privateLinkServiceConnectionState the privateLinkServiceConnectionState value to set.
9696
* @return the PrivateEndpointConnectionProperties object itself.

sdk/signalr/azure-resourcemanager-signalr/src/main/java/com/azure/resourcemanager/signalr/fluent/models/PrivateLinkResourceInner.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ public final class PrivateLinkResourceInner extends ProxyResource {
1818
@JsonIgnore private final ClientLogger logger = new ClientLogger(PrivateLinkResourceInner.class);
1919

2020
/*
21-
* Properties of a private link resource
21+
* Private link resource properties
2222
*/
2323
@JsonProperty(value = "properties")
2424
private PrivateLinkResourceProperties innerProperties;
2525

2626
/**
27-
* Get the innerProperties property: Properties of a private link resource.
27+
* Get the innerProperties property: Private link resource properties.
2828
*
2929
* @return the innerProperties value.
3030
*/

sdk/signalr/azure-resourcemanager-signalr/src/main/java/com/azure/resourcemanager/signalr/fluent/models/SharedPrivateLinkResourceInner.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public final class SharedPrivateLinkResourceInner extends ProxyResource {
2525
private SystemData systemData;
2626

2727
/*
28-
* Describes the properties of a Shared Private Link Resource
28+
* Describes the properties of an existing Shared Private Link Resource
2929
*/
3030
@JsonProperty(value = "properties")
3131
private SharedPrivateLinkResourceProperties innerProperties;
@@ -40,7 +40,7 @@ public SystemData systemData() {
4040
}
4141

4242
/**
43-
* Get the innerProperties property: Describes the properties of a Shared Private Link Resource.
43+
* Get the innerProperties property: Describes the properties of an existing Shared Private Link Resource.
4444
*
4545
* @return the innerProperties value.
4646
*/
@@ -95,7 +95,7 @@ public SharedPrivateLinkResourceInner withPrivateLinkResourceId(String privateLi
9595
}
9696

9797
/**
98-
* Get the provisioningState property: Provisioning state of the shared private link resource.
98+
* Get the provisioningState property: Provisioning state of the resource.
9999
*
100100
* @return the provisioningState value.
101101
*/

sdk/signalr/azure-resourcemanager-signalr/src/main/java/com/azure/resourcemanager/signalr/fluent/models/SharedPrivateLinkResourceProperties.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public final class SharedPrivateLinkResourceProperties {
3030
private String privateLinkResourceId;
3131

3232
/*
33-
* Provisioning state of the shared private link resource
33+
* Provisioning state of the resource.
3434
*/
3535
@JsonProperty(value = "provisioningState", access = JsonProperty.Access.WRITE_ONLY)
3636
private ProvisioningState provisioningState;
@@ -89,7 +89,7 @@ public SharedPrivateLinkResourceProperties withPrivateLinkResourceId(String priv
8989
}
9090

9191
/**
92-
* Get the provisioningState property: Provisioning state of the shared private link resource.
92+
* Get the provisioningState property: Provisioning state of the resource.
9393
*
9494
* @return the provisioningState value.
9595
*/

0 commit comments

Comments
 (0)