Skip to content

Commit

Permalink
CodeGen from PR 15815 in Azure/azure-rest-api-specs
Browse files Browse the repository at this point in the history
Merge adbbf88f36ec9a62da2f73357711d09af418b737 into 3ad2d30c9abf65d13f34c0ac423f6c2416f68b8a
  • Loading branch information
SDKAuto committed Aug 27, 2021
1 parent d0f244f commit e5643bd
Show file tree
Hide file tree
Showing 22 changed files with 2,808 additions and 2,045 deletions.
52 changes: 21 additions & 31 deletions sdk/hdinsight/arm-hdinsight/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ This package contains an isomorphic SDK (runs both in node.js and in browsers) f

### Currently supported environments

- Node.js version 8.x.x or higher
- Browser JavaScript
- [LTS versions of Node.js](https://nodejs.org/about/releases/)
- Latest versions of Safari, Chrome, Edge and Firefox.

### Prerequisites

Expand All @@ -14,18 +14,15 @@ You must have an [Azure subscription](https://azure.microsoft.com/free/).
### How to install

To use this SDK in your project, you will need to install two packages.

- `@azure/arm-hdinsight` that contains the client.
- `@azure/identity` that provides different mechanisms for the client to authenticate your requests using Azure Active Directory.

Install both packages using the below command:

```bash
npm install --save @azure/arm-hdinsight @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.
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.

### How to use

Expand All @@ -39,7 +36,6 @@ npm install --save @azure/arm-hdinsight @azure/identity

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 All @@ -55,24 +51,20 @@ const creds = new DefaultAzureCredential();
const client = new HDInsightManagementClient(creds, subscriptionId);
const resourceGroupName = "testresourceGroupName";
const clusterName = "testclusterName";
client.clusters
.get(resourceGroupName, clusterName)
.then((result) => {
console.log("The result is:");
console.log(result);
})
.catch((err) => {
console.log("An error occurred:");
console.error(err);
});
client.clusters.get(resourceGroupName, clusterName).then((result) => {
console.log("The result is:");
console.log(result);
}).catch((err) => {
console.log("An error occurred:");
console.error(err);
});
```

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

In browser applications, we recommend using the `InteractiveBrowserCredential` that interactively authenticates using the default system browser.

- See [Single-page application: App registration guide](https://docs.microsoft.com/azure/active-directory/develop/scenario-spa-app-registration) to configure your app registration for the browser.
- Note down the client Id from the previous step and use it in the browser sample below.
- See [Single-page application: App registration guide](https://docs.microsoft.com/azure/active-directory/develop/scenario-spa-app-registration) to configure your app registration for the browser.
- Note down the client Id from the previous step and use it in the browser sample below.

##### Sample code

Expand All @@ -90,23 +82,21 @@ In browser applications, we recommend using the `InteractiveBrowserCredential` t
const subscriptionId = "<Subscription_Id>";
// Create credentials using the `@azure/identity` package.
// Please note that you can also use credentials from the `@azure/ms-rest-browserauth` package instead.
const credential = new InteractiveBrowserCredential({
const credential = new InteractiveBrowserCredential(
{
clientId: "<client id for your Azure AD app>",
tenant: "<optional tenant for your organization>"
});
const client = new Azure.ArmHdinsight.HDInsightManagementClient(creds, subscriptionId);
const resourceGroupName = "testresourceGroupName";
const clusterName = "testclusterName";
client.clusters
.get(resourceGroupName, clusterName)
.then((result) => {
console.log("The result is:");
console.log(result);
})
.catch((err) => {
console.log("An error occurred:");
console.error(err);
});
client.clusters.get(resourceGroupName, clusterName).then((result) => {
console.log("The result is:");
console.log(result);
}).catch((err) => {
console.log("An error occurred:");
console.error(err);
});
</script>
</head>
<body></body>
Expand Down
2 changes: 1 addition & 1 deletion sdk/hdinsight/arm-hdinsight/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/hdinsight/arm-hdinsight",
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/hdinsight/arm-hdinsight",
"repository": {
"type": "git",
"url": "https://github.com/Azure/azure-sdk-for-js.git"
Expand Down
11 changes: 6 additions & 5 deletions sdk/hdinsight/arm-hdinsight/src/hDInsightManagementClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import * as Mappers from "./models/mappers";
import * as operations from "./operations";
import { HDInsightManagementClientContext } from "./hDInsightManagementClientContext";


class HDInsightManagementClient extends HDInsightManagementClientContext {
// Operation groups
clusters: operations.Clusters;
Expand All @@ -25,6 +26,8 @@ class HDInsightManagementClient extends HDInsightManagementClientContext {
scriptExecutionHistory: operations.ScriptExecutionHistory;
operations: operations.Operations;
virtualMachines: operations.VirtualMachines;
privateEndpointConnections: operations.PrivateEndpointConnections;
privateLinkResources: operations.PrivateLinkResources;

/**
* Initializes a new instance of the HDInsightManagementClient class.
Expand All @@ -38,11 +41,7 @@ class HDInsightManagementClient extends HDInsightManagementClientContext {
* 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.HDInsightManagementClientOptions
) {
constructor(credentials: msRest.ServiceClientCredentials | TokenCredential, subscriptionId: string, options?: Models.HDInsightManagementClientOptions) {
super(credentials, subscriptionId, options);
this.clusters = new operations.Clusters(this);
this.applications = new operations.Applications(this);
Expand All @@ -53,6 +52,8 @@ class HDInsightManagementClient extends HDInsightManagementClientContext {
this.scriptExecutionHistory = new operations.ScriptExecutionHistory(this);
this.operations = new operations.Operations(this);
this.virtualMachines = new operations.VirtualMachines(this);
this.privateEndpointConnections = new operations.PrivateEndpointConnections(this);
this.privateLinkResources = new operations.PrivateLinkResources(this);
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,12 @@ export class HDInsightManagementClientContext extends msRestAzure.AzureServiceCl
* 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.HDInsightManagementClientOptions
) {
constructor(credentials: msRest.ServiceClientCredentials | TokenCredential, subscriptionId: string, options?: Models.HDInsightManagementClientOptions) {
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 HDInsightManagementClientContext extends msRestAzure.AzureServiceCl

super(credentials, options);

this.apiVersion = "2018-06-01-preview";
this.acceptLanguage = "en-US";
this.apiVersion = '2021-06-01';
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 HDInsightManagementClientContext extends msRestAzure.AzureServiceCl
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
11 changes: 10 additions & 1 deletion sdk/hdinsight/arm-hdinsight/src/models/applicationsMappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ export {
AutoscaleRecurrence,
AutoscaleSchedule,
AutoscaleTimeAndCapacity,
AzureEntityResource,
BaseResource,
ClientGroupInfo,
Cluster,
ClusterDefinition,
ClusterGetProperties,
ClusterIdentity,
ClusterIdentityUserAssignedIdentitiesValue,
ComputeIsolationProperties,
ComputeProfile,
ConnectivityEndpoint,
Expand All @@ -35,13 +35,20 @@ export {
Errors,
ExcludedServicesConfig,
HardwareProfile,
IPConfiguration,
KafkaRestProperties,
LinuxOperatingSystemProfile,
NetworkProperties,
OsProfile,
PrivateEndpoint,
PrivateEndpointConnection,
PrivateLinkConfiguration,
PrivateLinkResource,
PrivateLinkServiceConnectionState,
ProxyResource,
QuotaInfo,
Resource,
ResourceId,
Role,
RuntimeScriptAction,
RuntimeScriptActionDetail,
Expand All @@ -52,6 +59,8 @@ export {
SshPublicKey,
StorageAccount,
StorageProfile,
SystemData,
TrackedResource,
UserAssignedIdentity,
VirtualNetworkProfile
} from "../models/mappers";
11 changes: 10 additions & 1 deletion sdk/hdinsight/arm-hdinsight/src/models/clustersMappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ export {
AutoscaleRecurrence,
AutoscaleSchedule,
AutoscaleTimeAndCapacity,
AzureEntityResource,
BaseResource,
ClientGroupInfo,
Cluster,
Expand All @@ -28,7 +29,6 @@ export {
ClusterDiskEncryptionParameters,
ClusterGetProperties,
ClusterIdentity,
ClusterIdentityUserAssignedIdentitiesValue,
ClusterListResult,
ClusterPatchParameters,
ClusterResizeParameters,
Expand All @@ -44,13 +44,20 @@ export {
ExecuteScriptActionParameters,
GatewaySettings,
HardwareProfile,
IPConfiguration,
KafkaRestProperties,
LinuxOperatingSystemProfile,
NetworkProperties,
OsProfile,
PrivateEndpoint,
PrivateEndpointConnection,
PrivateLinkConfiguration,
PrivateLinkResource,
PrivateLinkServiceConnectionState,
ProxyResource,
QuotaInfo,
Resource,
ResourceId,
Role,
RuntimeScriptAction,
RuntimeScriptActionDetail,
Expand All @@ -61,8 +68,10 @@ export {
SshPublicKey,
StorageAccount,
StorageProfile,
SystemData,
TrackedResource,
UpdateClusterIdentityCertificateParameters,
UpdateGatewaySettingsParameters,
UserAssignedIdentity,
VirtualNetworkProfile
} from "../models/mappers";
Loading

0 comments on commit e5643bd

Please sign in to comment.