Skip to content
Open
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
9 changes: 4 additions & 5 deletions sdk/avs/arm-avs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ npm install @azure/arm-avs

### 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 { AvsClient, AvsModels, AvsMappers } from "@azure/arm-avs";
const msRestNodeAuth = require("@azure/ms-rest-nodeauth");
const { AvsClient } = require("@azure/arm-avs");
const subscriptionId = process.env["AZURE_SUBSCRIPTION_ID"];

msRestNodeAuth.interactiveLogin().then((creds) => {
Expand Down
2 changes: 1 addition & 1 deletion sdk/avs/arm-avs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@azure/arm-avs",
"author": "Microsoft Corporation",
"description": "AvsClient Library with typescript type definitions for node.js and browser.",
"version": "1.0.0",
"version": "0.1.0",
"dependencies": {
"@azure/ms-rest-azure-js": "^2.0.1",
"@azure/ms-rest-js": "^2.0.4",
Expand Down
4 changes: 2 additions & 2 deletions sdk/avs/arm-avs/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
5 changes: 2 additions & 3 deletions sdk/avs/arm-avs/src/avsClient.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
13 changes: 6 additions & 7 deletions sdk/avs/arm-avs/src/avsClientContext.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 @@ -13,7 +12,7 @@ import * as msRest from "@azure/ms-rest-js";
import * as msRestAzure from "@azure/ms-rest-azure-js";

const packageName = "@azure/arm-avs";
const packageVersion = "1.0.0";
const packageVersion = "0.1.0";

export class AvsClientContext extends msRestAzure.AzureServiceClient {
credentials: msRest.ServiceClientCredentials;
Expand All @@ -37,7 +36,7 @@ export class AvsClientContext extends msRestAzure.AzureServiceClient {
if (!options) {
options = {};
}
if (!options.userAgent) {
if(!options.userAgent) {
const defaultUserAgent = msRestAzure.getDefaultUserAgentValue();
options.userAgent = `${packageName}/${packageVersion} ${defaultUserAgent}`;
}
Expand All @@ -52,10 +51,10 @@ export class AvsClientContext extends msRestAzure.AzureServiceClient {
this.credentials = credentials;
this.subscriptionId = subscriptionId;

if (options.acceptLanguage !== null && options.acceptLanguage !== undefined) {
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
4 changes: 2 additions & 2 deletions sdk/avs/arm-avs/src/models/authorizationsMappers.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
4 changes: 2 additions & 2 deletions sdk/avs/arm-avs/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
4 changes: 2 additions & 2 deletions sdk/avs/arm-avs/src/models/hcxEnterpriseSitesMappers.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
168 changes: 151 additions & 17 deletions sdk/avs/arm-avs/src/models/index.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 @@ -95,7 +95,9 @@ export interface ErrorAdditionalInfo {
}

/**
* The resource management error response.
* Common error response for all Azure Resource Manager APIs to return error details for failed
* operations. (This also follows the OData error response format.)
* @summary Error Response
*/
export interface ErrorResponse {
/**
Expand Down Expand Up @@ -151,6 +153,122 @@ export interface OperationDisplay {
readonly description?: string;
}

/**
* Specifications of the Log for Azure Monitoring
*/
export interface LogSpecification {
/**
* Name of the log
*/
name?: string;
/**
* Localized friendly display name of the log
*/
displayName?: string;
/**
* Blob duration of the log
*/
blobDuration?: string;
}

/**
* Specifications of the Dimension of metrics
*/
export interface MetricDimension {
/**
* Name of the dimension
*/
name?: string;
/**
* Localized friendly display name of the dimension
*/
displayName?: string;
}

/**
* Specifications of the Metrics for Azure Monitoring
*/
export interface MetricSpecification {
/**
* Name of the metric
*/
name?: string;
/**
* Localized friendly display name of the metric
*/
displayName?: string;
/**
* Localized friendly description of the metric
*/
displayDescription?: string;
/**
* Unit that makes sense for the metric
*/
unit?: string;
/**
* Name of the metric category that the metric belongs to. A metric can only belong to a single
* category.
*/
category?: string;
/**
* Only provide one value for this field. Valid values: Average, Minimum, Maximum, Total, Count.
*/
aggregationType?: string;
/**
* Supported aggregation types
*/
supportedAggregationTypes?: string[];
/**
* Supported time grain types
*/
supportedTimeGrainTypes?: string[];
/**
* Optional. If set to true, then zero will be returned for time duration where no metric is
* emitted/published.
*/
fillGapWithZero?: boolean;
/**
* Dimensions of the metric
*/
dimensions?: MetricDimension[];
/**
* Whether or not the service is using regional MDM accounts.
*/
enableRegionalMdmAccount?: string;
/**
* The name of the MDM account.
*/
sourceMdmAccount?: string;
/**
* The name of the MDM namespace.
*/
sourceMdmNamespace?: string;
}

/**
* Service specification payload
*/
export interface ServiceSpecification {
/**
* Specifications of the Log for Azure Monitoring
*/
logSpecifications?: LogSpecification[];
/**
* Specifications of the Metrics for Azure Monitoring
*/
metricSpecifications?: MetricSpecification[];
}

/**
* Extra Operation properties
*/
export interface OperationProperties {
/**
* Service specifications of the operation
*/
serviceSpecification?: ServiceSpecification;
}

/**
* A REST API operation
*/
Expand All @@ -165,6 +283,18 @@ export interface Operation {
* **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly display?: OperationDisplay;
/**
* Gets or sets a value indicating whether the operation is a data action or not
*/
isDataAction?: boolean;
/**
* Origin of the operation
*/
origin?: string;
/**
* Properties of the operation
*/
properties?: OperationProperties;
}

/**
Expand Down Expand Up @@ -309,7 +439,7 @@ export interface PrivateCloud extends TrackedResource {
managementCluster?: ManagementCluster;
/**
* Connectivity to internet is enabled or disabled. Possible values include: 'Enabled',
* 'Disabled'
* 'Disabled'. Default value: 'Disabled'.
*/
internet?: InternetEnum;
/**
Expand Down Expand Up @@ -386,6 +516,11 @@ export interface ClusterUpdateProperties {
* The properties of a default cluster
*/
export interface ManagementCluster extends ClusterUpdateProperties {
/**
* The state of the cluster provisioning. Possible values include: 'Succeeded', 'Failed',
* 'Cancelled', 'Deleting', 'Updating'
*/
provisioningState?: ClusterProvisioningState;
/**
* The identity
* **NOTE: This property will not be serialized. It can only be populated by the server.**
Expand All @@ -412,7 +547,7 @@ export interface PrivateCloudUpdate {
managementCluster?: ManagementCluster;
/**
* Connectivity to internet is enabled or disabled. Possible values include: 'Enabled',
* 'Disabled'
* 'Disabled'. Default value: 'Disabled'.
*/
internet?: InternetEnum;
/**
Expand All @@ -433,6 +568,11 @@ export interface Cluster extends Resource {
* The cluster size
*/
clusterSize?: number;
/**
* The state of the cluster provisioning. Possible values include: 'Succeeded', 'Failed',
* 'Cancelled', 'Deleting', 'Updating'
*/
provisioningState?: ClusterProvisioningState;
/**
* The identity
* **NOTE: This property will not be serialized. It can only be populated by the server.**
Expand All @@ -443,12 +583,6 @@ export interface Cluster extends Resource {
* **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly hosts?: string[];
/**
* The state of the cluster provisioning. Possible values include: 'Succeeded', 'Failed',
* 'Cancelled', 'Deleting', 'Updating'
* **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly provisioningState?: ClusterProvisioningState;
}

/**
Expand Down Expand Up @@ -638,20 +772,20 @@ export type SslEnum = 'Enabled' | 'Disabled';
export type PrivateCloudProvisioningState = 'Succeeded' | 'Failed' | 'Cancelled' | 'Pending' | 'Building' | 'Deleting' | 'Updating';

/**
* Defines values for InternetEnum.
* Possible values include: 'Enabled', 'Disabled'
* Defines values for ClusterProvisioningState.
* Possible values include: 'Succeeded', 'Failed', 'Cancelled', 'Deleting', 'Updating'
* @readonly
* @enum {string}
*/
export type InternetEnum = 'Enabled' | 'Disabled';
export type ClusterProvisioningState = 'Succeeded' | 'Failed' | 'Cancelled' | 'Deleting' | 'Updating';

/**
* Defines values for ClusterProvisioningState.
* Possible values include: 'Succeeded', 'Failed', 'Cancelled', 'Deleting', 'Updating'
* Defines values for InternetEnum.
* Possible values include: 'Enabled', 'Disabled'
* @readonly
* @enum {string}
*/
export type ClusterProvisioningState = 'Succeeded' | 'Failed' | 'Cancelled' | 'Deleting' | 'Updating';
export type InternetEnum = 'Enabled' | 'Disabled';

/**
* Defines values for HcxEnterpriseSiteStatus.
Expand Down
4 changes: 2 additions & 2 deletions sdk/avs/arm-avs/src/models/locationsMappers.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
Loading