Skip to content

Commit

Permalink
CodeGen from PR 13306 in Azure/azure-rest-api-specs
Browse files Browse the repository at this point in the history
Merge d6f7028b498c5faccd8de258dea7eb5acbed5ee6 into 5c2185adda8aa915a391ae182c1f02cc587f4f79
  • Loading branch information
SDKAuto committed Mar 23, 2021
1 parent 380f433 commit 965899b
Show file tree
Hide file tree
Showing 27 changed files with 1,500 additions and 136 deletions.
2 changes: 1 addition & 1 deletion sdk/kusto/arm-kusto/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2020 Microsoft
Copyright (c) 2021 Microsoft

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
9 changes: 4 additions & 5 deletions sdk/kusto/arm-kusto/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ npm install @azure/arm-kusto

### How to use

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

##### Install @azure/ms-rest-nodeauth

Expand All @@ -26,11 +26,10 @@ npm install @azure/ms-rest-nodeauth@"^3.0.0"

##### Sample code

While the below sample uses the interactive login, other authentication options can be found in the [README.md file of @azure/ms-rest-nodeauth](https://www.npmjs.com/package/@azure/ms-rest-nodeauth) package
```typescript
import * as msRest from "@azure/ms-rest-js";
import * as msRestAzure from "@azure/ms-rest-azure-js";
import * as msRestNodeAuth from "@azure/ms-rest-nodeauth";
import { KustoManagementClient, KustoManagementModels, KustoManagementMappers } from "@azure/arm-kusto";
const msRestNodeAuth = require("@azure/ms-rest-nodeauth");
const { KustoManagementClient } = require("@azure/arm-kusto");
const subscriptionId = process.env["AZURE_SUBSCRIPTION_ID"];

msRestNodeAuth.interactiveLogin().then((creds) => {
Expand Down
4 changes: 2 additions & 2 deletions sdk/kusto/arm-kusto/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ const config = {
"@azure/ms-rest-azure-js": "msRestAzure"
},
banner: `/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
* Copyright (c) Microsoft Corporation.
* Licensed under the MIT License.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
Expand Down
9 changes: 6 additions & 3 deletions sdk/kusto/arm-kusto/src/kustoManagementClient.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
* Copyright (c) Microsoft Corporation.
* Licensed under the MIT License.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
* Changes may cause incorrect behavior and will be lost if the code is
Expand All @@ -21,9 +20,11 @@ class KustoManagementClient extends KustoManagementClientContext {
clusterPrincipalAssignments: operations.ClusterPrincipalAssignments;
databases: operations.Databases;
databasePrincipalAssignments: operations.DatabasePrincipalAssignments;
scripts: operations.Scripts;
attachedDatabaseConfigurations: operations.AttachedDatabaseConfigurations;
dataConnections: operations.DataConnections;
operations: operations.Operations;
operationsResults: operations.OperationsResults;

/**
* Initializes a new instance of the KustoManagementClient class.
Expand All @@ -38,9 +39,11 @@ class KustoManagementClient extends KustoManagementClientContext {
this.clusterPrincipalAssignments = new operations.ClusterPrincipalAssignments(this);
this.databases = new operations.Databases(this);
this.databasePrincipalAssignments = new operations.DatabasePrincipalAssignments(this);
this.scripts = new operations.Scripts(this);
this.attachedDatabaseConfigurations = new operations.AttachedDatabaseConfigurations(this);
this.dataConnections = new operations.DataConnections(this);
this.operations = new operations.Operations(this);
this.operationsResults = new operations.OperationsResults(this);
}
}

Expand Down
7 changes: 3 additions & 4 deletions sdk/kusto/arm-kusto/src/kustoManagementClientContext.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
* Copyright (c) Microsoft Corporation.
* Licensed under the MIT License.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
* Changes may cause incorrect behavior and will be lost if the code is
Expand Down Expand Up @@ -45,7 +44,7 @@ export class KustoManagementClientContext extends msRestAzure.AzureServiceClient

super(credentials, options);

this.apiVersion = '2020-09-18';
this.apiVersion = '2021-01-01';
this.acceptLanguage = 'en-US';
this.longRunningOperationRetryTimeout = 30;
this.baseUri = options.baseUri || this.baseUri || "https://management.azure.com";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
* Copyright (c) Microsoft Corporation.
* Licensed under the MIT License.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
Expand Down Expand Up @@ -34,6 +34,9 @@ export {
ReadOnlyFollowingDatabase,
ReadWriteDatabase,
Resource,
Script,
SystemData,
TableLevelSharingProperties,
TrackedResource,
TrustedExternalTenant,
VirtualNetworkConfiguration
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
* Copyright (c) Microsoft Corporation.
* Licensed under the MIT License.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
Expand Down Expand Up @@ -36,6 +36,9 @@ export {
ReadOnlyFollowingDatabase,
ReadWriteDatabase,
Resource,
Script,
SystemData,
TableLevelSharingProperties,
TrackedResource,
TrustedExternalTenant,
VirtualNetworkConfiguration
Expand Down
7 changes: 5 additions & 2 deletions sdk/kusto/arm-kusto/src/models/clustersMappers.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
* Copyright (c) Microsoft Corporation.
* Licensed under the MIT License.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
Expand Down Expand Up @@ -42,9 +42,12 @@ export {
ReadOnlyFollowingDatabase,
ReadWriteDatabase,
Resource,
Script,
SkuDescription,
SkuDescriptionList,
SkuLocationInfoItem,
SystemData,
TableLevelSharingProperties,
TrackedResource,
TrustedExternalTenant,
VirtualNetworkConfiguration
Expand Down
7 changes: 5 additions & 2 deletions sdk/kusto/arm-kusto/src/models/dataConnectionsMappers.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
* Copyright (c) Microsoft Corporation.
* Licensed under the MIT License.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
Expand Down Expand Up @@ -39,6 +39,9 @@ export {
ReadOnlyFollowingDatabase,
ReadWriteDatabase,
Resource,
Script,
SystemData,
TableLevelSharingProperties,
TrackedResource,
TrustedExternalTenant,
VirtualNetworkConfiguration
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
* Copyright (c) Microsoft Corporation.
* Licensed under the MIT License.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
Expand Down Expand Up @@ -36,6 +36,9 @@ export {
ReadOnlyFollowingDatabase,
ReadWriteDatabase,
Resource,
Script,
SystemData,
TableLevelSharingProperties,
TrackedResource,
TrustedExternalTenant,
VirtualNetworkConfiguration
Expand Down
7 changes: 5 additions & 2 deletions sdk/kusto/arm-kusto/src/models/databasesMappers.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
* Copyright (c) Microsoft Corporation.
* Licensed under the MIT License.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
Expand Down Expand Up @@ -39,6 +39,9 @@ export {
ReadOnlyFollowingDatabase,
ReadWriteDatabase,
Resource,
Script,
SystemData,
TableLevelSharingProperties,
TrackedResource,
TrustedExternalTenant,
VirtualNetworkConfiguration
Expand Down
Loading

0 comments on commit 965899b

Please sign in to comment.