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

## 1.0.0-beta.8 (Unreleased)
## 1.0.0-beta.1 (2023-08-29)

- 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-2023-08. 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
4 changes: 2 additions & 2 deletions sdk/kusto/azure-resourcemanager-kusto/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

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

Expand Down Expand Up @@ -32,7 +32,7 @@ Various documentation is available to help you get started
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-kusto</artifactId>
<version>1.0.0-beta.7</version>
<version>1.0.0-beta.8</version>
</dependency>
```
[//]: # ({x-version-update-end})
Expand Down
326 changes: 243 additions & 83 deletions sdk/kusto/azure-resourcemanager-kusto/SAMPLE.md

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion sdk/kusto/azure-resourcemanager-kusto/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<packaging>jar</packaging>

<name>Microsoft Azure SDK for Kusto Management</name>
<description>This package contains Microsoft Azure SDK for Kusto Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. 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-2023-05.</description>
<description>This package contains Microsoft Azure SDK for Kusto Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. 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-2023-08.</description>
<url>https://github.com/Azure/azure-sdk-for-java</url>

<licenses>
Expand All @@ -45,6 +45,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jacoco.min.linecoverage>0</jacoco.min.linecoverage>
<jacoco.min.branchcoverage>0</jacoco.min.branchcoverage>
<revapi.skip>true</revapi.skip>
</properties>
<dependencies>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
import com.azure.resourcemanager.kusto.implementation.OperationsResultsLocationsImpl;
import com.azure.resourcemanager.kusto.implementation.PrivateEndpointConnectionsImpl;
import com.azure.resourcemanager.kusto.implementation.PrivateLinkResourcesImpl;
import com.azure.resourcemanager.kusto.implementation.SandboxCustomImagesImpl;
import com.azure.resourcemanager.kusto.implementation.ScriptsImpl;
import com.azure.resourcemanager.kusto.implementation.SkusImpl;
import com.azure.resourcemanager.kusto.models.AttachedDatabaseConfigurations;
Expand All @@ -53,6 +54,7 @@
import com.azure.resourcemanager.kusto.models.OperationsResultsLocations;
import com.azure.resourcemanager.kusto.models.PrivateEndpointConnections;
import com.azure.resourcemanager.kusto.models.PrivateLinkResources;
import com.azure.resourcemanager.kusto.models.SandboxCustomImages;
import com.azure.resourcemanager.kusto.models.Scripts;
import com.azure.resourcemanager.kusto.models.Skus;
import java.time.Duration;
Expand Down Expand Up @@ -86,6 +88,8 @@ public final class KustoManager {

private Scripts scripts;

private SandboxCustomImages sandboxCustomImages;

private PrivateEndpointConnections privateEndpointConnections;

private PrivateLinkResources privateLinkResources;
Expand Down Expand Up @@ -263,7 +267,7 @@ public KustoManager authenticate(TokenCredential credential, AzureProfile profil
.append("-")
.append("com.azure.resourcemanager.kusto")
.append("/")
.append("1.0.0-beta.7");
.append("1.0.0-beta.1");
if (!Configuration.getGlobalConfiguration().get("AZURE_TELEMETRY_DISABLED", false)) {
userAgentBuilder
.append(" (")
Expand Down Expand Up @@ -432,6 +436,18 @@ public Scripts scripts() {
return scripts;
}

/**
* Gets the resource collection API of SandboxCustomImages. It manages SandboxCustomImage.
*
* @return Resource collection API of SandboxCustomImages.
*/
public SandboxCustomImages sandboxCustomImages() {
if (this.sandboxCustomImages == null) {
this.sandboxCustomImages = new SandboxCustomImagesImpl(clientObject.getSandboxCustomImages(), this);
}
return sandboxCustomImages;
}

/**
* Gets the resource collection API of PrivateEndpointConnections. It manages PrivateEndpointConnection.
*
Expand Down Expand Up @@ -507,8 +523,10 @@ public OperationsResultsLocations operationsResultsLocations() {
}

/**
* @return Wrapped service client KustoManagementClient providing direct access to the underlying auto-generated API
* implementation, based on Azure REST API.
* Gets wrapped service client KustoManagementClient providing direct access to the underlying auto-generated API
* implementation, based on Azure REST API.
*
* @return Wrapped service client KustoManagementClient.
*/
public KustoManagementClient serviceClient() {
return this.clientObject;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,13 @@ public interface KustoManagementClient {
*/
ScriptsClient getScripts();

/**
* Gets the SandboxCustomImagesClient object to access its operations.
*
* @return the SandboxCustomImagesClient object.
*/
SandboxCustomImagesClient getSandboxCustomImages();

/**
* Gets the PrivateEndpointConnectionsClient object to access its operations.
*
Expand Down
Loading