Skip to content

Commit

Permalink
CodeGen from PR 13024 in Azure/azure-rest-api-specs
Browse files Browse the repository at this point in the history
Merge cb62270a0f195a8b267c725cdc266a6ab4a29702 into a8c959366fec1621befcbbd333c05581c21a5cda
  • Loading branch information
SDKAuto committed Feb 19, 2021
1 parent 43d9c79 commit e0305f5
Show file tree
Hide file tree
Showing 15 changed files with 583 additions and 235 deletions.
2 changes: 1 addition & 1 deletion sdk/communication/arm-communication/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/communication/arm-communication/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ npm install @azure/arm-communication

### How to use

#### nodejs - Authentication, client creation and list operations as an example written in TypeScript.
#### nodejs - client creation and list operations 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 { CommunicationServiceManagementClient, CommunicationServiceManagementModels, CommunicationServiceManagementMappers } from "@azure/arm-communication";
const msRestNodeAuth = require("@azure/ms-rest-nodeauth");
const { CommunicationServiceManagementClient } = require("@azure/arm-communication");
const subscriptionId = process.env["AZURE_SUBSCRIPTION_ID"];

msRestNodeAuth.interactiveLogin().then((creds) => {
Expand Down
4 changes: 2 additions & 2 deletions sdk/communication/arm-communication/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
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 @@ -24,8 +23,7 @@ class CommunicationServiceManagementClient extends CommunicationServiceManagemen
/**
* Initializes a new instance of the CommunicationServiceManagementClient class.
* @param credentials Credentials needed for the client to connect to Azure.
* @param subscriptionId Gets subscription ID which uniquely identifies the Microsoft Azure
* subscription. The subscription ID forms part of the URI for every service call.
* @param subscriptionId The ID of the target subscription.
* @param [options] The parameter options
*/
constructor(credentials: msRest.ServiceClientCredentials, subscriptionId: string, options?: Models.CommunicationServiceManagementClientOptions) {
Expand Down
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 @@ -17,14 +16,13 @@ const packageVersion = "1.0.0";

export class CommunicationServiceManagementClientContext extends msRestAzure.AzureServiceClient {
credentials: msRest.ServiceClientCredentials;
apiVersion?: string;
subscriptionId: string;
apiVersion?: string;

/**
* Initializes a new instance of the CommunicationServiceManagementClient class.
* @param credentials Credentials needed for the client to connect to Azure.
* @param subscriptionId Gets subscription ID which uniquely identifies the Microsoft Azure
* subscription. The subscription ID forms part of the URI for every service call.
* @param subscriptionId The ID of the target subscription.
* @param [options] The parameter options
*/
constructor(credentials: msRest.ServiceClientCredentials, subscriptionId: string, options?: Models.CommunicationServiceManagementClientOptions) {
Expand All @@ -45,7 +43,7 @@ export class CommunicationServiceManagementClientContext extends msRestAzure.Azu

super(credentials, options);

this.apiVersion = '2020-08-20-preview';
this.apiVersion = '2020-08-20';
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 All @@ -12,10 +12,13 @@ export {
CommunicationServiceKeys,
CommunicationServiceResource,
CommunicationServiceResourceList,
ErrorAdditionalInfo,
ErrorDetail,
ErrorResponse,
ErrorResponseError,
LinkedNotificationHub,
LinkNotificationHubParameters,
NameAvailability,
NameAvailabilityParameters,
RegenerateKeyParameters,
TaggedResource
} from "../models/mappers";
Loading

0 comments on commit e0305f5

Please sign in to comment.