Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ReleasePR @azure/arm-kusto] Track2 modify readme.go.md 3 #17444

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
8 changes: 3 additions & 5 deletions sdk/kusto/arm-kusto/README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
## Azure KustoManagementClient SDK for JavaScript

This package contains an isomorphic SDK (runs both in Node.js and in browsers) for KustoManagementClient.
This package contains an isomorphic SDK (runs both in node.js and in browsers) for KustoManagementClient.

### Currently supported environments

- [LTS versions of Node.js](https://nodejs.org/about/releases/)
- Latest versions of Safari, Chrome, Edge, and Firefox.
- Latest versions of Safari, Chrome, Edge and Firefox.

### Prerequisites

Expand All @@ -21,7 +21,6 @@ Install both packages using the below command:
```bash
npm install --save @azure/arm-kusto @azure/identity
```

> **Note**: You may have used either `@azure/ms-rest-nodeauth` or `@azure/ms-rest-browserauth` in the past. These packages are in maintenance mode receiving critical bug fixes, but no new features.
If you are on a [Node.js that has LTS status](https://nodejs.org/about/releases/), or are writing a client side browser application, we strongly encourage you to upgrade to `@azure/identity` which uses the latest versions of Azure Active Directory and MSAL APIs and provides more authentication options.

Expand All @@ -37,7 +36,6 @@ If you are on a [Node.js that has LTS status](https://nodejs.org/about/releases/

In the below samples, we pass the credential and the Azure subscription id to instantiate the client.
Once the client is created, explore the operations on it either in your favorite editor or in our [API reference documentation](https://docs.microsoft.com/javascript/api) to get started.

#### nodejs - Authentication, client creation, and get clusters as an example written in JavaScript.

##### Sample code
Expand Down Expand Up @@ -87,7 +85,7 @@ In browser applications, we recommend using the `InteractiveBrowserCredential` t
const credential = new InteractiveBrowserCredential(
{
clientId: "<client id for your Azure AD app>",
tenantId: "<optional tenant for your organization>"
tenant: "<optional tenant for your organization>"
});
const client = new Azure.ArmKusto.KustoManagementClient(creds, subscriptionId);
const resourceGroupName = "testresourceGroupName";
Expand Down
2 changes: 1 addition & 1 deletion sdk/kusto/arm-kusto/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"rollup-plugin-sourcemaps": "^0.4.2",
"uglify-js": "^3.6.0"
},
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/feature/v4/sdk/kusto/arm-kusto",
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/kusto/arm-kusto",
"repository": {
"type": "git",
"url": "https://github.com/Azure/azure-sdk-for-js.git"
Expand Down
10 changes: 8 additions & 2 deletions sdk/kusto/arm-kusto/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@ import sourcemaps from "rollup-plugin-sourcemaps";
*/
const config = {
input: "./esm/kustoManagementClient.js",
external: ["@azure/ms-rest-js", "@azure/ms-rest-azure-js"],
external: [
"@azure/ms-rest-js",
"@azure/ms-rest-azure-js"
],
output: {
file: "./dist/arm-kusto.js",
format: "umd",
Expand All @@ -25,7 +28,10 @@ const config = {
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
*/`
},
plugins: [nodeResolve({ mainFields: ["module", "main"] }), sourcemaps()]
plugins: [
nodeResolve({ mainFields: ['module', 'main'] }),
sourcemaps()
]
};

export default config;
17 changes: 10 additions & 7 deletions sdk/kusto/arm-kusto/src/kustoManagementClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,18 @@ import * as Mappers from "./models/mappers";
import * as operations from "./operations";
import { KustoManagementClientContext } from "./kustoManagementClientContext";


class KustoManagementClient extends KustoManagementClientContext {
// Operation groups
clusters: operations.Clusters;
clusterPrincipalAssignments: operations.ClusterPrincipalAssignments;
databases: operations.Databases;
attachedDatabaseConfigurations: operations.AttachedDatabaseConfigurations;
managedPrivateEndpoints: operations.ManagedPrivateEndpoints;
databasePrincipalAssignments: operations.DatabasePrincipalAssignments;
scripts: operations.Scripts;
attachedDatabaseConfigurations: operations.AttachedDatabaseConfigurations;
privateEndpointConnections: operations.PrivateEndpointConnections;
privateLinkResources: operations.PrivateLinkResources;
dataConnections: operations.DataConnections;
operations: operations.Operations;
operationsResults: operations.OperationsResults;
Expand All @@ -38,18 +42,17 @@ class KustoManagementClient extends KustoManagementClientContext {
* subscription. The subscription ID forms part of the URI for every service call.
* @param [options] The parameter options
*/
constructor(
credentials: msRest.ServiceClientCredentials | TokenCredential,
subscriptionId: string,
options?: Models.KustoManagementClientOptions
) {
constructor(credentials: msRest.ServiceClientCredentials | TokenCredential, subscriptionId: string, options?: Models.KustoManagementClientOptions) {
super(credentials, subscriptionId, options);
this.clusters = new operations.Clusters(this);
this.clusterPrincipalAssignments = new operations.ClusterPrincipalAssignments(this);
this.databases = new operations.Databases(this);
this.attachedDatabaseConfigurations = new operations.AttachedDatabaseConfigurations(this);
this.managedPrivateEndpoints = new operations.ManagedPrivateEndpoints(this);
this.databasePrincipalAssignments = new operations.DatabasePrincipalAssignments(this);
this.scripts = new operations.Scripts(this);
this.attachedDatabaseConfigurations = new operations.AttachedDatabaseConfigurations(this);
this.privateEndpointConnections = new operations.PrivateEndpointConnections(this);
this.privateLinkResources = new operations.PrivateLinkResources(this);
this.dataConnections = new operations.DataConnections(this);
this.operations = new operations.Operations(this);
this.operationsResults = new operations.OperationsResults(this);
Expand Down
21 changes: 7 additions & 14 deletions sdk/kusto/arm-kusto/src/kustoManagementClientContext.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@

import * as Models from "./models";
import * as msRest from "@azure/ms-rest-js";
import { TokenCredential } from "@azure/core-auth";
import * as msRestAzure from "@azure/ms-rest-azure-js";
import { TokenCredential } from "@azure/core-auth";

const packageName = "@azure/arm-kusto";
const packageVersion = "6.2.1";
Expand All @@ -32,16 +32,12 @@ export class KustoManagementClientContext extends msRestAzure.AzureServiceClient
* subscription. The subscription ID forms part of the URI for every service call.
* @param [options] The parameter options
*/
constructor(
credentials: msRest.ServiceClientCredentials | TokenCredential,
subscriptionId: string,
options?: Models.KustoManagementClientOptions
) {
constructor(credentials: msRest.ServiceClientCredentials | TokenCredential, subscriptionId: string, options?: Models.KustoManagementClientOptions) {
if (credentials == undefined) {
throw new Error("'credentials' cannot be null.");
throw new Error('\'credentials\' cannot be null.');
}
if (subscriptionId == undefined) {
throw new Error("'subscriptionId' cannot be null.");
throw new Error('\'subscriptionId\' cannot be null.');
}

if (!options) {
Expand All @@ -54,8 +50,8 @@ export class KustoManagementClientContext extends msRestAzure.AzureServiceClient

super(credentials, options);

this.apiVersion = "2021-01-01";
this.acceptLanguage = "en-US";
this.apiVersion = '2021-08-27';
this.acceptLanguage = 'en-US';
this.longRunningOperationRetryTimeout = 30;
this.baseUri = options.baseUri || this.baseUri || "https://management.azure.com";
this.requestContentType = "application/json; charset=utf-8";
Expand All @@ -65,10 +61,7 @@ export class KustoManagementClientContext extends msRestAzure.AzureServiceClient
if (options.acceptLanguage !== null && options.acceptLanguage !== undefined) {
this.acceptLanguage = options.acceptLanguage;
}
if (
options.longRunningOperationRetryTimeout !== null &&
options.longRunningOperationRetryTimeout !== undefined
) {
if (options.longRunningOperationRetryTimeout !== null && options.longRunningOperationRetryTimeout !== undefined) {
this.longRunningOperationRetryTimeout = options.longRunningOperationRetryTimeout;
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,14 @@

export {
discriminators,
AcceptedAudiences,
AttachedDatabaseConfiguration,
AttachedDatabaseConfigurationListResult,
AttachedDatabaseConfigurationsCheckNameRequest,
AzureEntityResource,
AzureSku,
BaseResource,
CheckNameResult,
CloudError,
Cluster,
ClusterPrincipalAssignment,
Expand All @@ -21,6 +24,8 @@ export {
DatabasePrincipalAssignment,
DatabaseStatistics,
DataConnection,
EndpointDependency,
EndpointDetail,
EventGridDataConnection,
EventHubDataConnection,
Identity,
Expand All @@ -29,7 +34,13 @@ export {
KeyVaultProperties,
LanguageExtension,
LanguageExtensionsList,
ManagedPrivateEndpoint,
OptimizedAutoscale,
OutboundNetworkDependenciesEndpoint,
PrivateEndpointConnection,
PrivateEndpointProperty,
PrivateLinkResource,
PrivateLinkServiceConnectionStateProperty,
ProxyResource,
ReadOnlyFollowingDatabase,
ReadWriteDatabase,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

export {
discriminators,
AcceptedAudiences,
AttachedDatabaseConfiguration,
AzureEntityResource,
AzureSku,
Expand All @@ -23,6 +24,8 @@ export {
DatabasePrincipalAssignment,
DatabaseStatistics,
DataConnection,
EndpointDependency,
EndpointDetail,
EventGridDataConnection,
EventHubDataConnection,
Identity,
Expand All @@ -31,7 +34,13 @@ export {
KeyVaultProperties,
LanguageExtension,
LanguageExtensionsList,
ManagedPrivateEndpoint,
OptimizedAutoscale,
OutboundNetworkDependenciesEndpoint,
PrivateEndpointConnection,
PrivateEndpointProperty,
PrivateLinkResource,
PrivateLinkServiceConnectionStateProperty,
ProxyResource,
ReadOnlyFollowingDatabase,
ReadWriteDatabase,
Expand Down
10 changes: 10 additions & 0 deletions sdk/kusto/arm-kusto/src/models/clustersMappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

export {
discriminators,
AcceptedAudiences,
AttachedDatabaseConfiguration,
AzureCapacity,
AzureEntityResource,
Expand All @@ -26,6 +27,8 @@ export {
DatabaseStatistics,
DataConnection,
DiagnoseVirtualNetworkResult,
EndpointDependency,
EndpointDetail,
EventGridDataConnection,
EventHubDataConnection,
FollowerDatabaseDefinition,
Expand All @@ -37,7 +40,14 @@ export {
LanguageExtension,
LanguageExtensionsList,
ListResourceSkusResult,
ManagedPrivateEndpoint,
OptimizedAutoscale,
OutboundNetworkDependenciesEndpoint,
OutboundNetworkDependenciesEndpointListResult,
PrivateEndpointConnection,
PrivateEndpointProperty,
PrivateLinkResource,
PrivateLinkServiceConnectionStateProperty,
ProxyResource,
ReadOnlyFollowingDatabase,
ReadWriteDatabase,
Expand Down
9 changes: 9 additions & 0 deletions sdk/kusto/arm-kusto/src/models/dataConnectionsMappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

export {
discriminators,
AcceptedAudiences,
AttachedDatabaseConfiguration,
AzureEntityResource,
AzureSku,
Expand All @@ -26,6 +27,8 @@ export {
DataConnectionValidation,
DataConnectionValidationListResult,
DataConnectionValidationResult,
EndpointDependency,
EndpointDetail,
EventGridDataConnection,
EventHubDataConnection,
Identity,
Expand All @@ -34,7 +37,13 @@ export {
KeyVaultProperties,
LanguageExtension,
LanguageExtensionsList,
ManagedPrivateEndpoint,
OptimizedAutoscale,
OutboundNetworkDependenciesEndpoint,
PrivateEndpointConnection,
PrivateEndpointProperty,
PrivateLinkResource,
PrivateLinkServiceConnectionStateProperty,
ProxyResource,
ReadOnlyFollowingDatabase,
ReadWriteDatabase,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

export {
discriminators,
AcceptedAudiences,
AttachedDatabaseConfiguration,
AzureEntityResource,
AzureSku,
Expand All @@ -23,6 +24,8 @@ export {
DatabasePrincipalAssignmentListResult,
DatabaseStatistics,
DataConnection,
EndpointDependency,
EndpointDetail,
EventGridDataConnection,
EventHubDataConnection,
Identity,
Expand All @@ -31,7 +34,13 @@ export {
KeyVaultProperties,
LanguageExtension,
LanguageExtensionsList,
ManagedPrivateEndpoint,
OptimizedAutoscale,
OutboundNetworkDependenciesEndpoint,
PrivateEndpointConnection,
PrivateEndpointProperty,
PrivateLinkResource,
PrivateLinkServiceConnectionStateProperty,
ProxyResource,
ReadOnlyFollowingDatabase,
ReadWriteDatabase,
Expand Down
9 changes: 9 additions & 0 deletions sdk/kusto/arm-kusto/src/models/databasesMappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

export {
discriminators,
AcceptedAudiences,
AttachedDatabaseConfiguration,
AzureEntityResource,
AzureSku,
Expand All @@ -26,6 +27,8 @@ export {
DatabasePrincipalListResult,
DatabaseStatistics,
DataConnection,
EndpointDependency,
EndpointDetail,
EventGridDataConnection,
EventHubDataConnection,
Identity,
Expand All @@ -34,7 +37,13 @@ export {
KeyVaultProperties,
LanguageExtension,
LanguageExtensionsList,
ManagedPrivateEndpoint,
OptimizedAutoscale,
OutboundNetworkDependenciesEndpoint,
PrivateEndpointConnection,
PrivateEndpointProperty,
PrivateLinkResource,
PrivateLinkServiceConnectionStateProperty,
ProxyResource,
ReadOnlyFollowingDatabase,
ReadWriteDatabase,
Expand Down
Loading