Skip to content

Commit 6ba1c07

Browse files
author
SDKAuto
committed
CodeGen from PR 17962 in Azure/azure-rest-api-specs
Merge 96cc8c838d3b5c48cd5adff4e9e4b2acd5a95706 into 9f48feaf684784644513d11ddb7bd0ac2e32f48e
1 parent 3b246c0 commit 6ba1c07

File tree

5 files changed

+16
-13
lines changed

5 files changed

+16
-13
lines changed

sdk/kusto/azure-resourcemanager-kusto/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.5 (Unreleased)
3+
## 1.0.0-beta.1 (2022-02-23)
4+
5+
- Azure Resource Manager Kusto client library for Java. This package contains Microsoft Azure SDK for Kusto Management SDK. The Azure Kusto management API provides a RESTful set of web services that interact with Azure Kusto services to manage your clusters and databases. The API enables you to create, update, and delete clusters and databases. Package tag package-2022-02. 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/kusto/azure-resourcemanager-kusto/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-kusto</artifactId>
35-
<version>1.0.0-beta.4</version>
35+
<version>1.0.0-beta.5</version>
3636
</dependency>
3737
```
3838
[//]: # ({x-version-update-end})

sdk/kusto/azure-resourcemanager-kusto/src/main/java/com/azure/resourcemanager/kusto/KustoManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ public KustoManager authenticate(TokenCredential credential, AzureProfile profil
224224
.append("-")
225225
.append("com.azure.resourcemanager.kusto")
226226
.append("/")
227-
.append("1.0.0-beta.4");
227+
.append("1.0.0-beta.1");
228228
if (!Configuration.getGlobalConfiguration().get("AZURE_TELEMETRY_DISABLED", false)) {
229229
userAgentBuilder
230230
.append(" (")

sdk/kusto/azure-resourcemanager-kusto/src/main/java/com/azure/resourcemanager/kusto/fluent/models/EventHubConnectionProperties.java

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,9 @@ public final class EventHubConnectionProperties {
7171
private ProvisioningState provisioningState;
7272

7373
/*
74-
* The resource ID of a managed identity (system or user assigned) to be
75-
* used to authenticate with event hub.
74+
* Empty for non-managed identity based data connection. For system
75+
* assigned identity, provide cluster resource Id. For user assigned
76+
* identity (UAI) provide the UAI resource Id.
7677
*/
7778
@JsonProperty(value = "managedIdentityResourceId")
7879
private String managedIdentityResourceId;
@@ -246,8 +247,8 @@ public ProvisioningState provisioningState() {
246247
}
247248

248249
/**
249-
* Get the managedIdentityResourceId property: The resource ID of a managed identity (system or user assigned) to be
250-
* used to authenticate with event hub.
250+
* Get the managedIdentityResourceId property: Empty for non-managed identity based data connection. For system
251+
* assigned identity, provide cluster resource Id. For user assigned identity (UAI) provide the UAI resource Id.
251252
*
252253
* @return the managedIdentityResourceId value.
253254
*/
@@ -256,8 +257,8 @@ public String managedIdentityResourceId() {
256257
}
257258

258259
/**
259-
* Set the managedIdentityResourceId property: The resource ID of a managed identity (system or user assigned) to be
260-
* used to authenticate with event hub.
260+
* Set the managedIdentityResourceId property: Empty for non-managed identity based data connection. For system
261+
* assigned identity, provide cluster resource Id. For user assigned identity (UAI) provide the UAI resource Id.
261262
*
262263
* @param managedIdentityResourceId the managedIdentityResourceId value to set.
263264
* @return the EventHubConnectionProperties object itself.

sdk/kusto/azure-resourcemanager-kusto/src/main/java/com/azure/resourcemanager/kusto/models/EventHubDataConnection.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -220,8 +220,8 @@ public ProvisioningState provisioningState() {
220220
}
221221

222222
/**
223-
* Get the managedIdentityResourceId property: The resource ID of a managed identity (system or user assigned) to be
224-
* used to authenticate with event hub.
223+
* Get the managedIdentityResourceId property: Empty for non-managed identity based data connection. For system
224+
* assigned identity, provide cluster resource Id. For user assigned identity (UAI) provide the UAI resource Id.
225225
*
226226
* @return the managedIdentityResourceId value.
227227
*/
@@ -230,8 +230,8 @@ public String managedIdentityResourceId() {
230230
}
231231

232232
/**
233-
* Set the managedIdentityResourceId property: The resource ID of a managed identity (system or user assigned) to be
234-
* used to authenticate with event hub.
233+
* Set the managedIdentityResourceId property: Empty for non-managed identity based data connection. For system
234+
* assigned identity, provide cluster resource Id. For user assigned identity (UAI) provide the UAI resource Id.
235235
*
236236
* @param managedIdentityResourceId the managedIdentityResourceId value to set.
237237
* @return the EventHubDataConnection object itself.

0 commit comments

Comments
 (0)