Skip to content
This repository was archived by the owner on May 5, 2023. It is now read-only.
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@

'use strict';

const models = require('./index');

/**
* Profile for diagnostics on the container service cluster.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@

'use strict';

const models = require('./index');

/**
* Profile for Linux VMs in the container service cluster.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@

'use strict';

const models = require('./index');

/**
* Information about a service principal identity for the cluster to use for
* manipulating Azure APIs. Either secret or keyVaultSecretRef must be
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@

'use strict';

const models = require('./index');

/**
* SSH configuration for Linux-based VMs running on Azure.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@

'use strict';

const models = require('./index');

/**
* The list of credential result response.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -732,7 +732,8 @@ export interface ManagedClusterAADProfile {
* @member {string} [dnsPrefix] DNS prefix specified when creating the managed
* cluster.
* @member {string} [fqdn] FDQN for the master pool.
* @member {array} [agentPoolProfiles] Properties of the agent pool.
* @member {array} [agentPoolProfiles] Properties of the agent pool. Currently
* only one agent pool can exist.
* @member {object} [linuxProfile] Profile for Linux VMs in the container
* service cluster.
* @member {string} [linuxProfile.adminUsername] The administrator username to
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ class ManagedCluster extends models['Resource'] {
* managed cluster.
* @member {string} [fqdn] FDQN for the master pool.
* @member {array} [agentPoolProfiles] Properties of the agent pool.
* Currently only one agent pool can exist.
* @member {object} [linuxProfile] Profile for Linux VMs in the container
* service cluster.
* @member {string} [linuxProfile.adminUsername] The administrator username
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@

'use strict';

const models = require('./index');

/**
* The list of available upgrades for compute pools.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@

'use strict';

const models = require('./index');

/**
* The profile of an orchestrator and its available versions.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@

'use strict';

const models = require('./index');

/**
* The list of versions for supported orchestrators.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1886,6 +1886,7 @@ export interface ManagedClusters {
* the managed cluster.
*
* @param {array} [parameters.agentPoolProfiles] Properties of the agent pool.
* Currently only one agent pool can exist.
*
* @param {object} [parameters.linuxProfile] Profile for Linux VMs in the
* container service cluster.
Expand Down Expand Up @@ -1994,6 +1995,7 @@ export interface ManagedClusters {
* the managed cluster.
*
* @param {array} [parameters.agentPoolProfiles] Properties of the agent pool.
* Currently only one agent pool can exist.
*
* @param {object} [parameters.linuxProfile] Profile for Linux VMs in the
* container service cluster.
Expand Down Expand Up @@ -2256,6 +2258,7 @@ export interface ManagedClusters {
* the managed cluster.
*
* @param {array} [parameters.agentPoolProfiles] Properties of the agent pool.
* Currently only one agent pool can exist.
*
* @param {object} [parameters.linuxProfile] Profile for Linux VMs in the
* container service cluster.
Expand Down Expand Up @@ -2364,6 +2367,7 @@ export interface ManagedClusters {
* the managed cluster.
*
* @param {array} [parameters.agentPoolProfiles] Properties of the agent pool.
* Currently only one agent pool can exist.
*
* @param {object} [parameters.linuxProfile] Profile for Linux VMs in the
* container service cluster.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1051,6 +1051,7 @@ function _get(resourceGroupName, resourceName, options, callback) {
* the managed cluster.
*
* @param {array} [parameters.agentPoolProfiles] Properties of the agent pool.
* Currently only one agent pool can exist.
*
* @param {object} [parameters.linuxProfile] Profile for Linux VMs in the
* container service cluster.
Expand Down Expand Up @@ -1366,6 +1367,7 @@ function _deleteMethod(resourceGroupName, resourceName, options, callback) {
* the managed cluster.
*
* @param {array} [parameters.agentPoolProfiles] Properties of the agent pool.
* Currently only one agent pool can exist.
*
* @param {object} [parameters.linuxProfile] Profile for Linux VMs in the
* container service cluster.
Expand Down Expand Up @@ -2857,6 +2859,7 @@ class ManagedClusters {
* the managed cluster.
*
* @param {array} [parameters.agentPoolProfiles] Properties of the agent pool.
* Currently only one agent pool can exist.
*
* @param {object} [parameters.linuxProfile] Profile for Linux VMs in the
* container service cluster.
Expand Down Expand Up @@ -2977,6 +2980,7 @@ class ManagedClusters {
* the managed cluster.
*
* @param {array} [parameters.agentPoolProfiles] Properties of the agent pool.
* Currently only one agent pool can exist.
*
* @param {object} [parameters.linuxProfile] Profile for Linux VMs in the
* container service cluster.
Expand Down Expand Up @@ -3308,6 +3312,7 @@ class ManagedClusters {
* the managed cluster.
*
* @param {array} [parameters.agentPoolProfiles] Properties of the agent pool.
* Currently only one agent pool can exist.
*
* @param {object} [parameters.linuxProfile] Profile for Linux VMs in the
* container service cluster.
Expand Down Expand Up @@ -3428,6 +3433,7 @@ class ManagedClusters {
* the managed cluster.
*
* @param {array} [parameters.agentPoolProfiles] Properties of the agent pool.
* Currently only one agent pool can exist.
*
* @param {object} [parameters.linuxProfile] Profile for Linux VMs in the
* container service cluster.
Expand Down
4 changes: 2 additions & 2 deletions lib/services/containerservicesManagement/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "azure-arm-containerservice",
"author": "Microsoft Corporation",
"description": "ContainerServiceClient Library with typescript type definitions for node",
"version": "5.0.0",
"version": "",
"dependencies": {
"ms-rest": "^2.3.3",
"ms-rest-azure": "^2.5.5"
Expand All @@ -14,7 +14,7 @@
"license": "MIT",
"main": "./lib/containerServiceClient.js",
"types": "./lib/containerServiceClient.d.ts",
"homepage": "https://github.com/azure/azure-sdk-for-node/tree/master/lib/services/containerservicesManagement",
"homepage": "https://github.com/azure/azure-sdk-for-node",
"repository": {
"type": "git",
"url": "https://github.com/azure/azure-sdk-for-node.git"
Expand Down